misuzu/assets/less/mio/classes/forum/listing.less

93 lines
1.8 KiB
Text
Raw Normal View History

2018-03-22 02:56:41 +00:00
@mio-forum-listing-mobile: 500px;
2018-04-16 00:33:54 +00:00
.forum__listing {
2018-03-22 02:56:41 +00:00
&__forums {
2018-05-20 01:16:29 +00:00
margin: 2px;
2018-03-22 02:56:41 +00:00
}
2018-05-18 01:20:27 +00:00
&__none {
2018-05-20 01:16:29 +00:00
margin: 0 3px;
2018-05-18 01:20:27 +00:00
}
2018-03-22 02:56:41 +00:00
&__entry {
display: flex;
align-items: center;
&:not(:last-child) {
border-bottom: 1px solid #9475b2;
2018-05-20 01:16:29 +00:00
margin-bottom: 2px;
padding-bottom: 2px;
2018-03-22 02:56:41 +00:00
}
&__icon {
flex-shrink: 0;
2018-05-20 01:16:29 +00:00
flex-grow: 0;
2018-05-19 00:51:31 +00:00
align-self: flex-start;
2018-03-22 02:56:41 +00:00
}
&__info {
flex-grow: 1;
flex-shrink: 1;
2018-05-18 01:20:27 +00:00
padding-left: 6px;
2018-03-22 02:56:41 +00:00
}
&__title {
font-size: 1.2em;
line-height: 1.5em;
color: #306;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
2018-05-19 00:51:31 +00:00
&__description,
&__subforums {
2018-03-22 02:56:41 +00:00
font-size: .8em;
line-height: 1.3em;
}
2018-05-19 00:51:31 +00:00
&__subforum {
content: inherit;
text-decoration: none;
&:hover {
text-decoration: underline;
}
}
2018-03-22 02:56:41 +00:00
&__stats {
2018-05-20 20:12:45 +00:00
text-align: center;
2018-03-22 02:56:41 +00:00
flex-grow: 0;
flex-shrink: 0;
@media (max-width: @mio-forum-listing-mobile) {
display: none;
}
}
&__topics {
font-size: 1.5em;
color: #222;
}
&__posts {
font-size: .9em;
color: #555;
}
&__activity {
flex-grow: 0;
flex-shrink: 0;
text-align: right;
margin: 0 10px;
width: 220px;
@media (max-width: @mio-forum-listing-mobile) {
display: none;
}
}
}
}