-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
123 lines (89 loc) · 1.83 KB
/
Copy pathstyle.css
File metadata and controls
123 lines (89 loc) · 1.83 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#body {
background-color: #F3F0EA;
margin: 0;
}
.text {
font-family: 'Varela Round', sans-serif;
user-select: none;
color: #F3F0EA;
}
#grid {
width: fit-content;
height: auto;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(3, 150px);
grid-column-gap: 5px;
grid-template-rows: repeat(3, 150px);
grid-row-gap: 5px;
background-color: #2E2E2E;
border: solid;
border-radius: 6px;
border-color: #2E2E2E;
border-width: 5px;
}
#grid > div {
background-color: #F8F6F4;
border-radius: 6px;
font-size: 6.5em;
line-height: 1.35em;
font-family: 'Varela Round', sans-serif;
text-align: center;
user-select: none;
}
#grid > div:hover {
background-color: #E1E1E1;
}
#radiocontainer {
margin: 0 auto 10px auto ;
width: fit-content;
}
#radiocontainer > label {
font-family: 'Varela Round', sans-serif;
user-select: none;
font-size: 1.5em;
}
#banner {
border-bottom: 3px solid black;
background-color: #2E2E2E;
}
#choosetext {
font-size: 1.5em;
margin: 0 auto 10px auto ;
width: fit-content;
}
#title {
width: fit-content;
margin: 0 auto;
font-size: 7em;
}
#status {
height: 33px;
width: fit-content;
margin: 30px auto;
font-family: 'Varela Round', sans-serif;
user-select: none;
font-size: 1.8em;
font-weight: bold;
color: #232323;
}
#resetbtn {
width: 250px;
height: 100px;
color: #F8F6F4;
font-family: 'Varela Round', sans-serif;
user-select: none;
font-size: 3em;
margin: 20px auto 10px auto;
text-align: center;
line-height: 2em;
border-radius: 6px;
border-color: #353131;
background-color: #2E2E2E;
}
#resetbtn:active {
transform: scale(0.99);
}
#resetbtn:hover {
background-color: #3d3d3d;
}