summaryrefslogtreecommitdiff
path: root/client-web/style/master.sass
blob: 0863129fcbc2127004ea6f7d117c25825b60a6af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/*
 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@disroot.org>

@use 'chat'
@use 'logger'
@use 'room'
@use 'side'
@use 'menu'
@use 'start'
@use 'watches'

@import url("/assets/font/include.css")
@import url("/overrides.css")

*
    font-family: "Ubuntu", sans-serif
    font-weight: 300
    color: white
    margin: 0px
    padding: 0px

body.start
    background-image: linear-gradient(var(--ac-dark-transparent), black 150%), url("/assets/tile-backdrop.svg")
    background-attachment: fixed
    background-size: cover, 750px
    background-color: var(--ac-dark)
    position: absolute
    inset: 0
    display: flex
    place-content: center
    align-items: center
    overflow: hidden

body
    height: 100vh
    width: 100vw
    overflow: hidden
    background-color: var(--bg-dark)
    display: flex
    flex-direction: column

h1
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.75)
    font-size: 5em
    font-weight: 700
    text-align: center
    margin-bottom: 0.1em

input[type="button"],
button,
.side-ui-control
    padding: 0.5em
    margin: 0.25em
    background-color: var(--ac)
    border: 0px solid transparent
    border-radius: 3px
    font-size: small
    font-weight: 400
    cursor: pointer

input[type="button"]:hover,
button:hover,
.side-ui-control:hover
    filter: brightness(130%)

input[type="button"].active,
button.active,
.side-ui-control:active
    filter: hue-rotate(20deg)

input[type="text"],
select,
input[type="number"]
    background-color: var(--bg-dark)
    border: 1px solid var(--ac-light)

button.leave
    left: 0px
    background-color: #9a2020

input:disabled,
button:disabled,
.side-ui-control:disabled
    filter: sepia(90%)

.side-ui-control input
    display: none