diff options
author | metamuffin <metamuffin@disroot.org> | 2025-03-22 13:02:32 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-03-22 13:03:31 +0100 |
commit | 2f5d47d21dfc308c1b930cf45e13b34445d3a8e5 (patch) | |
tree | 1efa38bb95a2bc55132c0f8751727647906bb5dd /client-web/style/side.css | |
parent | aee091c28ad99862f8d94665a1efc65288a17d52 (diff) | |
download | keks-meet-2f5d47d21dfc308c1b930cf45e13b34445d3a8e5.tar keks-meet-2f5d47d21dfc308c1b930cf45e13b34445d3a8e5.tar.bz2 keks-meet-2f5d47d21dfc308c1b930cf45e13b34445d3a8e5.tar.zst |
Convert sass to css
Diffstat (limited to 'client-web/style/side.css')
-rw-r--r-- | client-web/style/side.css | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/client-web/style/side.css b/client-web/style/side.css new file mode 100644 index 0000000..a0c8514 --- /dev/null +++ b/client-web/style/side.css @@ -0,0 +1,63 @@ +/* + 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> +*/ + +.side-ui { + flex: 0; + z-index: 99; +} +.side-ui .side-tray { + height: 100%; + padding: 1em; + box-sizing: border-box; + overflow-y: auto; + background-color: var(--bg); +} +.side-ui > .animate-in { + animation-name: side-slide-in; + animation-duration: 0.2s; +} +.side-ui > .animate-out { + animation-name: side-slide-out; + animation-duration: 0.2s; + transform: translateX(100%); +} + +@keyframes side-slide-in { + from { + transform: translateX(100%); + } + to { + transform: translateX(0%); + } +} +@keyframes side-slide-out { + from { + transform: translateX(0%); + } + to { + transform: translateX(100%); + } +} + +.main { + flex: 1; + display: flex; + flex-flow: row; + overflow: hidden; +} +.control-bar { + flex: 0; +} +.preferences { + width: min(50em, 100vw); + height: 100%; +} +.chat { + width: min(30em, 100vw); +} +.room-watches { + width: min(30em, 100vw); +} |