diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/index.html | 10 | ||||
-rw-r--r-- | public/style/master.css | 20 |
2 files changed, 17 insertions, 13 deletions
diff --git a/public/index.html b/public/index.html index 1ab2bee..ded060a 100644 --- a/public/index.html +++ b/public/index.html @@ -7,8 +7,14 @@ <script defer async type="module" src="/bundle.js"></script> <link rel="stylesheet" href="/style/master.css" /> - <title>keks webrtc meeting</title> + <title>keks-meet</title> </head> - <body></body> + <body> + <p> + keks-meet needs evil javascript to enabled. Don't be afraid though, all + the code is free (AGPL-3.0-only)! Look at it on + <a href="https://codeberg.org/metamuffin/keks-meet">codeberg</a> + </p> + </body> </html> diff --git a/public/style/master.css b/public/style/master.css index 89c0e4a..f148d06 100644 --- a/public/style/master.css +++ b/public/style/master.css @@ -85,17 +85,6 @@ input[type="text"] { 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 { max-height: 30vh; width: auto; @@ -116,3 +105,12 @@ input[type="text"] { margin: 0.5em; font-size: 32px; } + +.menu-overlay { + position: absolute; + bottom: 0px; + right: 0px; + display: block; + text-align: right; +} + |