-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.css
60 lines (52 loc) · 998 Bytes
/
ui.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
/* CSS */
.btn {
background-color: rgba(51, 51, 51, 0.05);
border-radius: 8px;
border: 1px solid rgba(51, 51, 51, 0.05);
color: #333333;
cursor: pointer;
display: inline-block;
font-size: 14px;
font-weight: 500;
line-height: 20px;
margin: 0;
padding: 10px 12px;
text-align: center;
white-space: nowrap;
}
.btn.primary {
background-color: rgba(51, 51, 51, 0.9);
border-color: #000000;
color: white;
}
.btn:active {
border: 1px solid black;
}
.input {
background-color: rgba(51, 51, 51, 0.05);
border-radius: 8px;
border: 1px solid rgba(51, 51, 51, 0.05);
color: #333333;
display: inline-block;
font-size: 14px;
font-weight: 500;
line-height: 20px;
margin: 0;
padding: 10px 12px;
white-space: nowrap;
}
.input[disabled] {
background-color: rgba(51, 51, 51, 0.2);
}
.btn[disabled] {
background-color: rgba(51, 51, 51, 0.2);
}
.to-high {
background: #ff7979;
}
.to-low {
background: #18dcff;
}
.correct {
background: #32ff7e;
}