aboutsummaryrefslogtreecommitdiff
path: root/client-web/public/assets/style/room.css
blob: 2722aa65d29cc20157a1cab847f0af330bb6cf75 (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
37
38
39
40
41
/*
    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) 2022 metamuffin <metamuffin@disroot.org>
*/
.room {
    overflow-y: scroll;
}

.user {
    background-color: var(--bg);
    border: 0px solid transparent;
    border-radius: 5px;
    padding: 1em;
    vertical-align: baseline;
    min-width: 10em;
    margin: 0.5em;
}

.user .info .name {
    font-weight: 400;
}
.user.local .info .name {
    text-decoration: underline;
}
.user .info {
    margin-bottom: 1em;
}

.media {
    max-height: 30vh;
    border: 0px solid transparent;
    border-radius: 5px;
}

.local-controls {
    display: inline;
}
.local-controls::before {
    content: "|";
}