misuzu/assets/less/classes/forum/topic.less

33 lines
824 B
Text
Raw Normal View History

2018-05-23 01:41:57 +00:00
.forum__topic {
&__locked {
2018-09-09 22:44:10 +00:00
border: 1px solid var(--accent-colour);
2018-05-23 01:41:57 +00:00
display: flex;
align-items: center;
min-height: 40px;
margin-bottom: 2px;
2018-09-09 22:44:10 +00:00
box-shadow: 0 1px 2px var(--accent-colour);
2018-05-23 01:41:57 +00:00
&__icon {
height: 40px;
width: 40px;
background-size: 35px;
background-image: url('https://static.flash.moe/images/topic-icons/topic-locked-read.png');
background-position: center;
background-repeat: no-repeat;
2018-09-09 22:44:10 +00:00
background-color: var(--accent-colour);
2018-05-23 01:41:57 +00:00
flex-grow: 0;
flex-shrink: 0;
}
&__text {
margin: 0 10px;
flex-grow: 1;
flex-shrink: 1;
}
&__time {
font-weight: 700;
}
}
}