misuzu/assets/less/classes/index.less

43 lines
731 B
Text
Raw Normal View History

.index {
display: flex;
flex-direction: row-reverse;
@media (max-width: @site-mobile-width) {
2018-07-21 15:37:35 +00:00
flex-direction: column-reverse;
}
2018-10-22 21:10:38 +00:00
&__container {
margin-bottom: 2px;
}
&__sidebar {
width: 300px;
margin-left: 2px;
2018-07-15 02:15:12 +00:00
flex: 0 0 auto;
2018-07-21 15:37:35 +00:00
@media (max-width: @site-mobile-width) {
2018-07-21 15:37:35 +00:00
width: 100%;
margin-left: 0;
}
}
&__main {
flex: 1 1 auto;
}
&__stats {
&__emphasis {
font-weight: 700;
}
&__link {
2018-09-23 14:42:15 +00:00
color: var(--user-colour);
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
}
}