-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
148 lines (118 loc) · 2.17 KB
/
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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
*{
color: white;
font-family: sans-serif;
transition: 0.2s ease-in-out;
overflow: hidden;
margin: 0;
padding: 0;
font-size: 62.5%;
}
body{
background-color: #252A34;
width: 100%;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 3rem;
}
.welcome-container, .choice-container{
display: none;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 3rem;
}
.welcome-container h1, .choice-container h1{
font-size: 4rem;
}
.welcome-container .ask-choice, .choice-container .ask-choice{
display: flex;
align-items: center;
justify-content: center;
flex-direction: row;
gap: 5rem;
}
.welcome-container .ask-choice div, .choice-container .ask-choice div{
text-align: center;
cursor: pointer;
user-select: none;
background: #ffbb00;
color: #000;
padding: 1rem;
border-radius: .5rem;
font-size: 2.5rem;
font-weight: 600;
width: 12rem;
}
.game-container{
display: none;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 3rem;
}
.game-container h1{
font-size: 5rem;
}
.active-display{
display: flex;
}
table{
user-select: none;
border: 4px solid #000;
}
td {
border: 2px solid #000;
height: 100px;
width: 100px;
text-align: center;
vertical-align: middle;
font-family: "Comic Sans MS";
font-size: 7rem;
cursor: pointer;
}
td:hover{
background-color: #ffbb00;
}
table {
border-collapse: collapse;
}
table tr:first-child td {
border-top: 0;
}
table tr:last-child td {
border-bottom: 0;
}
table tr td:first-child {
border-left: 0;
}
table tr td:last-child {
border-right: 0;
}
.endgame {
display: block;
width: 20rem;
}
.endgame .text{
text-align: center;
color: white;
font-size: 3rem;
}
button{
user-select: none;
background-color: #ffbb00;
padding: 10px 25px;
border: none;
color: black;
font-size: 2rem;
font-weight: 600;
border-radius: 5px;
cursor: pointer;
}
button:hover{
padding: 10px 40px;
background-color: #08D9D6;
color: #000;
}