-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (77 loc) · 1.2 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
body {
background: rgb(28, 27, 34);
color: whitesmoke;
width: 100vw;
height: 100vh;
display: grid;
justify-content: center;
align-content: center;
}
.opponentPicking {
display: grid;
justify-items: center;
}
.oponentbtn {
display: grid;
grid-template-columns: auto auto;
gap: 20px;
}
.hide {
display: none;
}
.alert {
border: 2px solid red;
}
.playersNames {
display: none;
gap: 25px;
}
form.active {
display: grid;
gap: 25px;
grid-template-columns: 154px 155px;
}
input:invalid {
border: 1px solid red;
}
.error {
width: 100%;
padding: 0;
font-size: 80%;
color: white;
background-color: #900;
border-radius: 0 0 5px 5px;
box-sizing: border-box;
position: relative;
left: 91px;
}
.gameboard {
display: grid;
grid-template-columns: auto auto auto;
}
.gameboard > div {
display: none;
width: 111px;
height: 111px;
border: 1px solid blue;
padding: 0;
justify-content: center;
align-content: center;
font-size: 4em;
}
.scoore {
display: grid;
grid-template-columns: auto auto;
justify-content: space-between;
gap: 24px;
}
.winner {
position: absolute;
top: 5%;
left: 41%;
color: #900;
}
.restart {
display: none;
justify-self: center;
}