2018-07-11 23:48:41 +02:00
|
|
|
.index {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row-reverse;
|
|
|
|
|
2018-08-15 15:59:34 +02:00
|
|
|
@media (max-width: @site-mobile-width) {
|
2018-07-21 17:37:35 +02:00
|
|
|
flex-direction: column-reverse;
|
|
|
|
}
|
|
|
|
|
2018-10-22 23:10:38 +02:00
|
|
|
&__container {
|
|
|
|
margin-bottom: 2px;
|
|
|
|
}
|
|
|
|
|
2018-07-11 23:48:41 +02:00
|
|
|
&__sidebar {
|
|
|
|
width: 300px;
|
|
|
|
margin-left: 2px;
|
2018-07-15 04:15:12 +02:00
|
|
|
flex: 0 0 auto;
|
2018-07-21 17:37:35 +02:00
|
|
|
|
2018-08-15 15:59:34 +02:00
|
|
|
@media (max-width: @site-mobile-width) {
|
2018-07-21 17:37:35 +02:00
|
|
|
width: 100%;
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2018-07-11 23:48:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
&__main {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__stats {
|
|
|
|
&__emphasis {
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__link {
|
2018-09-23 16:42:15 +02:00
|
|
|
color: var(--user-colour);
|
2018-07-11 23:48:41 +02:00
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-11-17 23:44:58 +01:00
|
|
|
|
|
|
|
&__online {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
&__user {
|
|
|
|
color: var(--user-colour);
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 0;
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
background-image: var(--avatar-url);
|
|
|
|
margin: 2px;
|
|
|
|
transition: box-shadow .2s;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
box-shadow: 0 1px 4px var(--user-colour);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-07-11 23:48:41 +02:00
|
|
|
}
|