aboutsummaryrefslogtreecommitdiff
path: root/public/style
diff options
context:
space:
mode:
authormetamuffin <metamuffin@yandex.com>2022-01-23 14:06:14 +0100
committermetamuffin <metamuffin@yandex.com>2022-01-23 14:06:14 +0100
commita383c334a2e4ccb246a4a1092b1d053ccad19bd7 (patch)
treec747e39e25b94944da077df0a3ea20a2465540a8 /public/style
parent16fa95ac191287fe7f82b9f37c31342fe3b4b65a (diff)
downloadkeks-meet-a383c334a2e4ccb246a4a1092b1d053ccad19bd7.tar
keks-meet-a383c334a2e4ccb246a4a1092b1d053ccad19bd7.tar.bz2
keks-meet-a383c334a2e4ccb246a4a1092b1d053ccad19bd7.tar.zst
ported everything to deno! yay
Diffstat (limited to 'public/style')
-rw-r--r--public/style/master.css125
1 files changed, 125 insertions, 0 deletions
diff --git a/public/style/master.css b/public/style/master.css
new file mode 100644
index 0000000..794eb43
--- /dev/null
+++ b/public/style/master.css
@@ -0,0 +1,125 @@
+@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;700&display=swap");
+
+* {
+ font-family: "Ubuntu", sans-serif;
+ font-weight: 300;
+ color: white;
+}
+
+:root {
+ --bg: #263238;
+ --bg-dark: #000a12;
+ --bg-light: #354b58;
+ --bg-lighter: #4f5b62;
+ --bg-disabled: #720000;
+ --bg-enabled: #097200;
+ --ac: #4a148c;
+ --ac-light: #7c43bd;
+ --ac-dark: #12005e;
+}
+
+body {
+ background-color: var(--bg-dark);
+}
+
+h2 {
+ font-weight: 700;
+ margin: 1em;
+}
+
+input[type="button"] {
+ padding: 0.5em;
+ margin: 0.25em;
+ background-color: var(--bg-light);
+ border: 0px solid transparent;
+ border-radius: 3px;
+}
+input[type="button"]:hover {
+ background-color: var(--bg-lighter);
+}
+input[type="button"].enabled {
+ background-color: var(--bg-enabled);
+}
+input[type="text"] {
+ background-color: var(--bg-dark);
+ border: 1px solid var(--ac-light);
+}
+
+.local-controls {
+ background-color: var(--bg);
+ padding: 0.5em;
+ position: absolute;
+ bottom: 0.5em;
+ border: 0px solid transparent;
+ border-radius: 5px;
+ left: 50%;
+ transform: translateX(-50%);
+ z-index: 100;
+}
+
+.room {
+ width: 100vw;
+ height: 100vh;
+ display: flex;
+ justify-content: center;
+}
+
+.user {
+ background-color: var(--bg);
+ border: 0px soly transparent;
+ border-radius: 5px;
+ padding: 1em;
+ vertical-align: baseline;
+ height: 15em;
+ min-width: 10em;
+ margin: 0.5em;
+}
+
+.user .info .name {
+ font-weight: 400;
+}
+.user.local .info .name {
+ text-decoration: underline;
+}
+
+.info .status {
+ background-color: var(--bg-disabled);
+ padding: 0.25em;
+ margin: 0.1em;
+ border: 0px solid transparent;
+ border-radius: 10px;
+}
+.info .status.enabled {
+ background-color: var(--bg-enabled);
+}
+
+.media {
+ height: 100%;
+ width: auto;
+ border: 0px solid transparent;
+ border-radius: 5px;
+}
+
+.media.maximized {
+ position: absolute;
+ top: 50vh;
+ left: 50vw;
+ width: 100vw;
+ height: 100vh;
+ z-index: 1000;
+ transform: translate(-50%, -50%);
+}
+
+.start-box {
+ position: absolute;
+ top: 50vh;
+ left: 50vw;
+ transform: translate(-50%, -50%);
+}
+.start-box p {
+ margin-bottom: 0.5em;
+}
+.start-box input[type="text"] {
+ margin: 0.5em;
+ font-size: 32px;
+}