diff options
| author | metamuffin <metamuffin@disroot.org> | 2023-09-08 00:24:58 +0200 | 
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2023-09-08 00:24:58 +0200 | 
| commit | 3f62287bc7052d81778a6c8b3a0b5682c18c4f62 (patch) | |
| tree | e307bf9efeae3848242509ec3b97040aee8932a4 /client-web/style | |
| parent | f5fa4f7d58344c2dc722d1f37c1d7a008f6ee9b3 (diff) | |
| download | keks-meet-3f62287bc7052d81778a6c8b3a0b5682c18c4f62.tar keks-meet-3f62287bc7052d81778a6c8b3a0b5682c18c4f62.tar.bz2 keks-meet-3f62287bc7052d81778a6c8b3a0b5682c18c4f62.tar.zst | |
room watches
Diffstat (limited to 'client-web/style')
| -rw-r--r-- | client-web/style/master.sass | 1 | ||||
| -rw-r--r-- | client-web/style/watches.sass | 26 | 
2 files changed, 27 insertions, 0 deletions
| diff --git a/client-web/style/master.sass b/client-web/style/master.sass index 6a26b67..0863129 100644 --- a/client-web/style/master.sass +++ b/client-web/style/master.sass @@ -9,6 +9,7 @@  @use 'side'  @use 'menu'  @use 'start' +@use 'watches'  @import url("/assets/font/include.css")  @import url("/overrides.css") diff --git a/client-web/style/watches.sass b/client-web/style/watches.sass new file mode 100644 index 0000000..ee45f5d --- /dev/null +++ b/client-web/style/watches.sass @@ -0,0 +1,26 @@ +.room-watches-listing +    list-style: none +    a +        display: inline-block +        width: 100% +        margin: 0.5em +        border-radius: 4px +        padding: 0.5em +        background-color: var(--bg-light) +     +    .current-room +        background-color: var(--ac-dark) + +    .users +        float: right +        display: inline-block +        div +            margin: 0.25em +            display: inline-block +            width: 1em +            height: 1em +            border-radius: 3px +            background-color: rgb(146, 243, 73) +        span +            display: inline-block +            color: #bbbbbb | 
