-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
82 lines (70 loc) · 1.3 KB
/
styles.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
81
82
/* Font Family - Popping (regular, semibold) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
* {
font-family: 'Poppins', sans-serif;
}
.header {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 1vh;
}
.rules {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 5vh;
}
.main {
/* outline: 1px solid; */
display: flex;
justify-content: center;
padding-top: 5vh;
}
.gamebox {
display: flex;
flex-direction: column;
gap: 6px;
}
.row {
display: flex;
gap: 6px;
}
.box {
/* background-color: black; */
width: 4em;
height: 4em;
border-style: solid;
border-width: 2px;
border-color: #d3d6da;
border-radius: 5px;
display: flex;
justify-content: center;
align-items: center;
}
.yellow {
background-color: #c9b458;
color: white;
border-color: #c9b458;
}
.green {
background-color: #6aaa64;
color: white;
border-color: #6aaa64;
}
.grey {
background-color: #86888a;
color: white;
border-color: #86888a;
}
.letter {
text-transform: uppercase;
font-size: 2.5em;
font-weight: 600;
}
@media screen and (max-width: 320px) {
.box {
width: 3em;
height: 3em;
}
}