-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
53 lines (53 loc) · 982 Bytes
/
style.css
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
:root {
--background: #151515;
--text: #fafafa;
--card: #313131;
--input: #515151;
--accent: #167b65;
--font: "Work Sans", sans-serif;
}
body {
padding: 10px;
background-color: var(--background);
color: var(--text);
font-family: var(--font);
}
.card {
padding: 15px 10px;
background-color: var(--card);
border-radius: 8px;
}
.flex {
display: flex;
}
.hcenter {
align-items: center;
}
.gap {
gap: 10px;
}
button, input, select {
background-color: var(--accent);
border: 1px solid var(--text);
border-radius: 8px;
font-family: var(--font);
transition: filter 0.2s ease-in-out;
width: 100%;
width: -webkit-fill-available;
width: -moz-available;
color: var(--text);
padding: 10px;
}
button:hover {
cursor: pointer;
filter: brightness(125%);
}
button:active {
filter: brightness(150%);
}
input, select {
background-color: var(--input);
}
a {
color: var(--text);
}