-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
78 lines (63 loc) · 929 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
html body {
background-color: #f9fafb;
}
h1 {
text-align: center;
}
.remain {
font-size: 1.3em;
font-weight: bold;
padding-top: 10px;
}
#btn-container {
text-align: center;
justify-content: center;
padding-bottom: 20px;
}
.gameCard {
height: 100%;
width: 100%;
border: solid 1px black;
text-align: center;
border-radius: 10px;
background-color: white;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.unselected {
cursor: pointer;
}
.setHint {
outline: solid 5px blueviolet;
}
.selected-border {
outline: solid 5px gold;
}
.bi {
font-size: 50px;
padding: 0.2em;
}
.red {
color: red;
}
.blue {
color: blue;
}
.green {
color: green;
}
.white {
color: white;
}
.col-3 {
height: 120px;
}
@media only screen and (min-width: 765px) and (max-width: 991px) {
.col-3 {
height: 170px;
}
}
@media only screen and (max-width: 765px) {
.col-3 {
height: 250px;
}
}