misuzu/assets/less/classes/index.less

39 lines
677 B
Text
Raw Normal View History

.index {
display: flex;
flex-direction: row-reverse;
@media (max-width: @site-mobile-width) {
2018-07-21 17:37:35 +02:00
flex-direction: column-reverse;
}
&__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
@media (max-width: @site-mobile-width) {
2018-07-21 17:37:35 +02:00
width: 100%;
margin-left: 0;
}
}
&__main {
flex: 1 1 auto;
}
&__stats {
&__emphasis {
font-weight: 700;
}
&__link {
2018-09-23 16:42:15 +02:00
color: var(--user-colour);
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
}