aboutsummaryrefslogtreecommitdiff
path: root/client-web/style/watches.css
diff options
context:
space:
mode:
Diffstat (limited to 'client-web/style/watches.css')
-rw-r--r--client-web/style/watches.css36
1 files changed, 36 insertions, 0 deletions
diff --git a/client-web/style/watches.css b/client-web/style/watches.css
new file mode 100644
index 0000000..3d7db19
--- /dev/null
+++ b/client-web/style/watches.css
@@ -0,0 +1,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);
+}