-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (51 loc) · 984 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#gridContainer {
display: flex;
flex-wrap: wrap;
max-width: 600px;
max-height: 600px;
flex-grow: 0;
}
#topLevel {
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
gap: 15px;
}
#buttonContainer {
display: flex;
flex-direction: column;
max-width: 600px;
gap: 10px;
justify-content: space-evenly;
align-items: center;
flex-basis: 1;
}
.darkMode {
filter: brightness(50%);
}
.lightMode {
filter: brightness(150%);
}
#inverse {
display: none;
}
#specialButtons button {
align-items: center;
justify-content: center;
margin: 5px;
text-align: center;
}
button:hover {
filter: brightness(85%);
}
.grids {
background-color: rgb(154, 145, 170);
filter: brightness(1);
/* applies brightness filter to be modified */
}
#gameTitle {
font-size: 64px;
font-family: Arial, Helvetica, sans-serif;
margin: auto;
}