libregamingspaces/main.css

43 lines
590 B
CSS
Raw Normal View History

2022-04-18 00:09:18 +02:00
.room {
2022-04-17 22:29:17 +02:00
margin-left: 2em;
}
2022-04-18 00:09:18 +02:00
.info {
2022-04-17 23:16:18 +02:00
align-items: center;
display:flex;
2022-01-15 14:40:52 +01:00
}
2022-04-18 00:19:31 +02:00
summary {
display:flex;
}
2022-04-18 01:01:00 +02:00
.arrow-right {
width: 0;
height: 0;
border-top: 6px solid transparent;
border-bottom: 6px solid transparent;
border-left: 6px solid black;
margin: 0.5em;
2022-01-15 14:40:52 +01:00
}
2022-06-11 20:07:50 +02:00
.roomAvatar {
2022-04-17 23:16:18 +02:00
height: 36px;
2022-06-11 20:07:50 +02:00
width: 36px;
2022-04-18 01:01:00 +02:00
margin: 0.5em;
2022-01-15 14:40:52 +01:00
}
.topic {
font-size: smaller;
color: DarkSlateGrey;
margin-left: 2em;
width: 40em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.topic:hover {
overflow: visible;
}