-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
159 lines (138 loc) · 3.05 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
body {
flex-direction: column;
display: flex;
justify-content: space-around;
align-items: center;
gap: 20px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
background-color: black;
color: rgb(0, 52, 149);
text-shadow: 10px 10px 10px rgba(255, 0, 93, 0.5);
}
.gameArea {
width: 500px;
height: 500px;
background-color: rgb(0, 52, 149);
display: flex;
justify-content: space-between;
align-content: space-between;
flex-wrap: wrap;
border: 3px solid rgb(0, 52, 149);
box-shadow: 10px 10px 10px rgba(255, 0, 93, 0.5);
}
.cell {
width: 33%;
height: 33%;
background-color: rgb(0, 0, 0);
font-size: 180px;
display: flex;
justify-content: center;
align-items: center;
}
.modal {
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.9);
position: fixed;
display: flex;
justify-content: center;
align-items: center;
/* display: none; */
}
.panel {
width: 300px;
height: 200px;
background-color: black;
box-shadow: 10px 10px 10px rgba(255, 0, 93, 0.5);
border: 3px solid rgb(0, 52, 149);
border-bottom: 0;
border-right: 0;
display: flex;
justify-content: center;
align-items: center;
/* display: none; */
}
form {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
gap: 20px;
margin-top: 10px;
}
::placeholder {
color: rgb(255, 28, 111);
}
input {
width: 95%;
height: 35px;
color: rgb(255, 28, 111);
background-color: rgb(0, 0, 0);
border: 3px solid rgba(255, 0, 93, 0.5);
padding-left: 10px;
font-size: 18px;
outline: none;
}
.toggle>input[type="radio"] {
display: none;
}
.toggle>#choice1:checked~.choice1 {
border: solid 3px rgb(255, 0, 93);
}
.toggle>#choice2:checked~.choice2 {
border: solid 3px rgb(0, 52, 149);
}
.toggle>label {
display: inline-block;
padding: 10px;
font-size: 24px;
text-align: center;
cursor: pointer;
}
.choice1 {
width: 90px;
color: rgb(255, 0, 93);
}
.choice2 {
width: 90px;
color: rgb(0, 52, 149);
}
.status {
width: 300px;
height: 200px;
font-size: 30px;
background-color: black;
box-shadow: 10px 10px 10px rgba(255, 0, 93, 0.5);
border: 3px solid rgb(0, 52, 149);
border-bottom: 0;
border-right: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
display: none;
}
.statusHeader {
text-align: center;
font-size: 38px;
margin: 05px 15px 30px 15px;
}
button {
width: 80%;
height: 40px;
background-color: black;
color: rgb(255, 0, 93);
outline: none;
/* box-shadow: 10px 10px 10px rgba(255, 0, 93, 0.5); */
border: 3px solid rgb(0, 52, 149);
font-size: 24px;
}
@media only screen and (max-width: 400px) {
.gameArea {
width: 300px;
height: 300px;
}
.cell {
font-size: 90px;
}
}