-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
64 lines (50 loc) · 851 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
54
55
56
57
58
59
60
61
62
63
64
html,
body {
margin: 0;
padding: 0;
}
canvas {
display: block;
}
@font-face {
font-family: kanit;
src: url("assets/fonts/Kanit-SemiBold.ttf");
}
@import url('https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap');
button {
padding: 12px;
width: 120px;
font-family: "Inter", sans-serif;
font-size: large;
font-weight: bold;
border-radius: 12px;
border-color: red;
border-style: solid;
transition-duration: 0.2s;
}
button:hover {
background-color: rgb(173, 173, 173);
}
button:active {
background-color: gray;
transition-duration: 0s;
}
.selected {
background-color: rgb(173, 173, 173);
}
h1 {
font-family: kanit;
}
p {
font-family: kanit;
}
.inter {
font-family: "Inter", sans-serif;
}
#beta-disclaimer {
padding: 12px;
}
body {
background-color: black;
color: white;
}