-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckers.css
More file actions
118 lines (100 loc) · 1.76 KB
/
Copy pathCheckers.css
File metadata and controls
118 lines (100 loc) · 1.76 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
html {
background-color: rgb(0,0,0,0.8);
font-family: Verdana;
}
body {
background-size: cover;
background-repeat: no-repeat;
background-position: center;
height: 100vh;
}
.whole_page {
display: flex;
position: absolute;
flex-direction: column;
align-items: center;
background-color: rgb(0,0,0,0.5);
color: white;
}
.grid_container {
align-items: center;
width: 50%;
margin: 0 10%;
}
.grid {
width: 100%;
}
.timer {
text-align: center;
padding: 10px 0px;
background-color: rgb(0,0,0,0.8);
}
td {
height: 80px;
}
table {
table-layout: fixed;
border-collapse: collapse;
}
.box {
border: 1px white solid;
text-align: center;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
font-size: 25px;
}
.even {
background-color: black;
}
.option_available {
background-color: #f0f;
opacity: 0.5;
border-radius: 50%;
}
.box_selected {
background-color: transparent;
border-radius: 50%;
box-shadow: 0 0 20px 10px #f0f;
}
.miscellany {
background-color: rgb(0,0,0,0.7);
width: 48%;
padding: 1%;
margin-top: 1%;
display: flex;
flex-direction: column;
margin-bottom: 50px; /* for the credits to avoid overflow */
}
.settings {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
}
.actions {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.howtoplay {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
button {
height: 50px;
width: 100px;
}
.credits {
position: absolute;
bottom: 0%;
right: 1%;
font-size: 15px;
}
@media screen and (max-width: 500px) {
.grid_container {
width: 95%;
margin: 0 2.5%;
}
}