2017-10-12 03:24:14 +00:00
|
|
|
:root {
|
|
|
|
--header-border-color: hsl(0,0%,85%);
|
|
|
|
--element-border-color: hsl(0,0%,90%);
|
|
|
|
--element-background-color: white;
|
2017-10-21 00:27:47 +00:00
|
|
|
--replies-lang-string: " replies";
|
|
|
|
--topics-lang-string: " topics";
|
|
|
|
--likes-lang-string: " likes";
|
|
|
|
--primary-link-color: hsl(0,0%,40%);
|
2017-10-12 03:24:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
-moz-box-sizing: border-box;
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2017-10-21 00:27:47 +00:00
|
|
|
@font-face {
|
|
|
|
font-family: 'FontAwesome';
|
|
|
|
src: url('../font-awesome-4.7.0/fonts/fontawesome-webfont.eot?v=4.7.0');
|
|
|
|
src: url('../font-awesome-4.7.0/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../font-awesome-4.7.0/fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../font-awesome-4.7.0/fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../font-awesome-4.7.0/fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../font-awesome-4.7.0/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');
|
|
|
|
font-weight: normal;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
2017-10-12 03:24:14 +00:00
|
|
|
body {
|
|
|
|
font-size: 16px;
|
|
|
|
font-family: arial;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
2017-10-21 00:27:47 +00:00
|
|
|
color: var(--primary-link-color);
|
2017-10-12 03:24:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#back {
|
|
|
|
padding: 8px;
|
|
|
|
padding-top: 14px;
|
|
|
|
display: flex;
|
|
|
|
/*background-color: hsl(0,0%,97%);*/
|
|
|
|
}
|
|
|
|
|
|
|
|
#main {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
width: 200px;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.nav {
|
|
|
|
border-bottom: 1px solid var(--header-border-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
margin-right: 12px;
|
|
|
|
}
|
|
|
|
.menu_left a:after {
|
|
|
|
content: "|";
|
|
|
|
margin-left: 12px;
|
|
|
|
color: var(--header-border-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu_overview {
|
|
|
|
font-size: 22px;
|
|
|
|
margin-right: 12px;
|
2017-10-21 00:27:47 +00:00
|
|
|
letter-spacing: 1px;
|
2017-10-12 03:24:14 +00:00
|
|
|
}
|
|
|
|
.menu_overview a:after {
|
2017-10-21 00:27:47 +00:00
|
|
|
margin-left: 13px;
|
|
|
|
margin-right: 5px;
|
2017-10-12 03:24:14 +00:00
|
|
|
position: relative;
|
|
|
|
top: -3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.menu_forums a:before {
|
|
|
|
content: "\f03a";
|
|
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
.menu_topics a:before {
|
|
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
|
|
margin-right: 4px;
|
|
|
|
content: "\f27b";
|
|
|
|
position: relative;
|
|
|
|
top: -2px;
|
|
|
|
}
|
|
|
|
.menu_alerts {
|
2017-10-21 00:27:47 +00:00
|
|
|
color: hsl(0,0%,40%);
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.alert_bell:before {
|
|
|
|
content: "\f01c";
|
|
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
|
|
}
|
|
|
|
.menu_alerts:not(.has_alerts) .alert_counter {
|
2017-10-12 03:24:14 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2017-10-21 00:27:47 +00:00
|
|
|
.alert_counter {
|
|
|
|
width: 4px;
|
|
|
|
height: 4px;
|
|
|
|
overflow: hidden;
|
|
|
|
background-color: red;
|
|
|
|
opacity: 0.7;
|
|
|
|
border-radius: 30px;
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
left: -1px;
|
|
|
|
}
|
|
|
|
.alert_aftercounter:before {
|
|
|
|
content: "Alerts";
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
.alert_aftercounter:after {
|
|
|
|
content: "|";
|
|
|
|
margin-left: 12px;
|
|
|
|
color: var(--header-border-color);
|
|
|
|
}
|
|
|
|
|
2017-10-12 03:24:14 +00:00
|
|
|
.menu_account a:before {
|
|
|
|
content: "\f2c3";
|
|
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
.menu_profile a:before {
|
|
|
|
content: "\f2c0";
|
|
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
|
|
margin-right: 5px;
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
.menu_panel a:before {
|
|
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
|
|
margin-right: 6px;
|
|
|
|
content: "\f108";
|
|
|
|
}
|
|
|
|
.menu_logout a:before {
|
|
|
|
content: "\f08b";
|
|
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
|
|
margin-right: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
ul {
|
|
|
|
display: flex;
|
|
|
|
list-style-type: none;
|
|
|
|
padding: 0px;
|
|
|
|
margin-left: 14px;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.alertList {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rowblock {
|
|
|
|
margin-bottom: 12px;
|
|
|
|
border: 1px solid var(--header-border-color);
|
|
|
|
border-bottom: 2px solid var(--header-border-color);
|
|
|
|
background-color: var(--element-background-color);
|
2017-10-21 00:27:47 +00:00
|
|
|
margin-left: 12px;
|
|
|
|
margin-right: 12px;
|
2017-10-12 03:24:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.rowhead {
|
|
|
|
padding: 13px;
|
|
|
|
padding-top: 14px;
|
|
|
|
padding-bottom: 14px;
|
|
|
|
}
|
|
|
|
.rowhead h1 {
|
|
|
|
font-size: 20px;
|
|
|
|
font-weight: normal;
|
|
|
|
color: hsl(0,0%,10%);
|
|
|
|
-webkit-margin-before: 0;
|
|
|
|
-webkit-margin-after: 0;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2017-10-21 00:27:47 +00:00
|
|
|
.topic_list_title_block {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.mod_opt {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
.mod_opt .moderate_link {
|
|
|
|
border-left: 1px solid var(--element-border-color);
|
|
|
|
padding-left: 12px;
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
.mod_opt .moderate_link:before {
|
|
|
|
content: "\f0e3";
|
|
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
|
|
font-size: 18px;
|
|
|
|
}
|
|
|
|
|
2017-10-12 03:24:14 +00:00
|
|
|
.topic_list {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
.topic_list .topic_row {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic_left, .topic_right {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
padding: 4px;
|
|
|
|
display: flex;
|
|
|
|
border: 1px solid var(--element-border-color);
|
|
|
|
border-bottom: 2px solid var(--element-border-color);
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic_list .rowtopic {
|
2017-10-21 00:27:47 +00:00
|
|
|
font-size: 17px;
|
|
|
|
color: hsl(0,0%,30%);
|
|
|
|
margin-right: 1px;
|
|
|
|
white-space: nowrap;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
.topic_list .rowtopic span {
|
|
|
|
max-width: 112px;
|
2017-10-12 03:24:14 +00:00
|
|
|
overflow: hidden;
|
2017-10-21 00:27:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.topic_list .rowsmall {
|
|
|
|
font-size: 15px;
|
2017-10-12 03:24:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.topic_list .rowsmall.starter:before {
|
2017-10-21 00:27:47 +00:00
|
|
|
content: "\f007";
|
|
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
|
|
margin-right: 5px;
|
|
|
|
font-size: 15px;
|
2017-10-12 03:24:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.topic_list .rowsmall.starter:before {
|
2017-10-21 00:27:47 +00:00
|
|
|
content: "\f007";
|
|
|
|
font: normal normal normal 14px/1 FontAwesome;
|
|
|
|
margin-right: 5px;
|
|
|
|
font-size: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic_list .lastReplyAt {
|
|
|
|
font-size: 14px;
|
2017-10-12 03:24:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.topic_list .topic_status_e {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic_left {
|
2017-10-21 00:27:47 +00:00
|
|
|
flex: 1 1 calc(100% - 380px);
|
2017-10-12 03:24:14 +00:00
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic_inner_right {
|
2017-10-21 00:27:47 +00:00
|
|
|
margin-left: 15%;
|
|
|
|
margin-right: auto;
|
2017-10-12 03:24:14 +00:00
|
|
|
font-size: 17px;
|
2017-10-21 00:27:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.topic_inner_right.rowsmall {
|
|
|
|
font-size: 14px;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Experimenting here */
|
|
|
|
.topic_inner_right {
|
2017-10-12 03:24:14 +00:00
|
|
|
margin-top: 12px;
|
|
|
|
}
|
|
|
|
|
2017-10-21 00:27:47 +00:00
|
|
|
.topic_inner_right span {
|
|
|
|
/*font-size: 15px;*/
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic_inner_right span:after {
|
|
|
|
font-size: 13.5px;
|
|
|
|
}
|
|
|
|
/* End Experiment */
|
|
|
|
|
|
|
|
.topic_inner_right .replyCount:after {
|
|
|
|
content: var(--replies-lang-string);
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic_inner_right .topicCount:after {
|
|
|
|
content: var(--topics-lang-string);
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic_inner_right .likeCount:after {
|
|
|
|
content: var(--likes-lang-string);
|
|
|
|
}
|
|
|
|
|
2017-10-12 03:24:14 +00:00
|
|
|
.topic_right {
|
2017-10-21 00:27:47 +00:00
|
|
|
flex: 1 1 0px; /*150px*/
|
2017-10-12 03:24:14 +00:00
|
|
|
border-left: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic_left img {
|
|
|
|
border-radius: 30px;
|
|
|
|
height: 48px;
|
|
|
|
width: 48px;
|
|
|
|
margin-top: 8px;
|
|
|
|
margin-left: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic_right img {
|
|
|
|
border-radius: 30px;
|
2017-10-21 00:27:47 +00:00
|
|
|
height: 42px;
|
|
|
|
width: 42px;
|
|
|
|
margin-top: 10px;
|
2017-10-12 03:24:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.topic_left .topic_inner_left {
|
|
|
|
margin-top: 12px;
|
|
|
|
margin-left: 8px;
|
|
|
|
margin-bottom: 14px;
|
2017-10-21 00:27:47 +00:00
|
|
|
width: 240px;
|
2017-10-12 03:24:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.topic_right > span {
|
|
|
|
margin-top: 12px;
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.topic_sticky {
|
2017-10-21 00:27:47 +00:00
|
|
|
border-bottom: 2px solid hsl(51, 60%, 70%);
|
2017-10-12 03:24:14 +00:00
|
|
|
}
|
|
|
|
|
2017-10-21 00:27:47 +00:00
|
|
|
@element .topic_left .rowtopic and (min-width: 110px) {
|
|
|
|
$this, $this span, $this + .parent_forum {
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
$this + .parent_forum {
|
|
|
|
margin: 2px;
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
|
|
|
$this:after {
|
|
|
|
content: "...";
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
}
|
2017-10-12 03:24:14 +00:00
|
|
|
|
|
|
|
@media(max-width: 670px) {
|
|
|
|
.topic_inner_right {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|