-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (88 loc) · 1.69 KB
/
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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500&display=swap');
* {
font-family: 'Nunito', sans-serif;
border-radius: 3px;
padding: 5px;
border: none;
color:rgb(241, 241, 241);
}
body {
background-color: rgb(18, 18, 20);
}
input {
background-color: rgb(43, 43, 43);
}
input::placeholder {
color:rgb(138, 138, 138);
}
select {
background-color: rgb(43, 43, 43);
border: none;
outline: none;
}
option {
border: none;
outline: none;
}
button {
background-color: rgb(93, 129, 93);
text-align: center;
line-height: 1;
font-size: 1.06rem;
}
button:disabled {
background-color: rgb(31, 31, 31);
color: rgb(54, 54, 54);
}
#main {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
visibility: hidden;
}
p {
font-size: 40pt;
}
#score {
font-size: 60pt;
}
#widget-link {
position: fixed;
bottom: 10px;
}
#mode-info {
background-color: rgb(37, 37, 37);
position: absolute;
pointer-events: none;
width: 40%;
height: fit-content;
left: 30%;
top: 10%;
display: none;
}
.new-score {
position: absolute;
font-size: 2rem;
animation: newscore 1s linear 1 forwards;
}
@keyframes newscore {
0% {
opacity: 0;
transform: translateY(0px);
}
20% {
transform: translateY(12px);
opacity: 1;
}
100% {
transform: translateY(60px);
opacity: 0;
}
}
#obs-widget {
position: absolute;
bottom: 10px;
left:10px;
font-size: 1.125rem;
}