-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
43 lines (37 loc) · 791 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
:root {
--dark-color: rgb(49, 49, 92);
--light-color: rgb(205, 219, 241);
--selected-color:rgb(129, 134, 199);
--primary: var(--light-color);
--secondary: var(--dark-color);
}
body {
background-color: var(--primary);
}
h1 {
font-style: italic;
color: var(--secondary);
}
button {
background-color: var(--secondary);
color: var(--primary);
margin-bottom: 2em;
text-align: center;
border: none;
padding: 12px 18px;
font-size: 18px;
}
.block {
display: inline-block;
min-width: 30px;
border: solid 1px var(--secondary);
margin: 0.2em;
padding: 40px;
text-align: center;
font-size: 20px;
border-radius: 5px;
color: var(--secondary);
}
.selected {
background-color: var(--selected-color);
}