-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
122 lines (98 loc) · 1.75 KB
/
main.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
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
119
120
121
122
body {
background-color: #5ea2a5;
}
.container {
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
}
.header {
display: flex;
justify-content: space-around;
font-family: 'Nunito', sans-serif;
font-size: 50px;
color: #cbcbcb;
text-align: center;
}
.scoreboard-content[current-play="true"] {
border-bottom: 5px solid white;
color: #fff;
}
.badge {
margin-right: 20px;
}
.scoreboard-score {
color: #fff;
margin-bottom: 0;
}
.replay {
visibility: hidden;
margin-top: 40px;
color: #fff;
cursor: pointer;
}
.replay.show {
visibility: visible;
}
.board {
display: flex;
flex-direction: column;
align-items: center;
}
.row {
flex: 0 0 auto;
display: flex;
}
.entry {
width: 150px;
height: 150px;
cursor: pointer;
}
.entry[is-played="true"] {
cursor: default;
}
.entry:hover:not([is-played="true"]) {
background-color: #95bcbd;
}
.entry--highlighted span {
color: greenyellow;
}
.row .entry {
display: flex;
justify-content: center;
align-items: center;
border-radius: 2px;
border-bottom: 8px solid #fff;
border-right: 8px solid #fff;
user-select: none;
}
/* Remove right borders for the right squares of each row */
.row .entry:last-of-type {
border-right: none;
}
/* Remove bottom borders for the bottom squares */
.row:last-of-type .entry {
border-bottom: none;
}
.elements {
display: none;
}
.option {
font-family: 'Nunito', sans-serif;
font-size: 100px;
color: #fff;
user-select: none;
}
@media(max-width: 768px) {
.scoreboard {
font-size: 20px;
}
.entry {
width: 75px;
height: 75px;
}
.option {
font-size: 40px;
}
}