blob: 3d7db195431d485a431f1fc51e7bbf9e901cc38d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet)
which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
Copyright (C) 2023 metamuffin <metamuffin.org>
*/
.room-watches-listing {
list-style: none;
}
.room-watches-listing a {
color: white;
display: inline-block;
width: 100%;
margin: 0.5em;
border-radius: 4px;
padding: 0.5em;
background-color: var(--bg-light);
}
.room-watches-listing .current-room {
background-color: var(--ac-dark);
}
.room-watches-listing .users {
float: right;
}
.room-watches-listing .users div {
margin: 0.25em;
display: inline-block;
width: 1em;
height: 1em;
border-radius: 3px;
background-color: var(--green);
}
.room-watches-listing .users span {
display: inline-block;
color: var(--textgrey);
}
|