-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
72 lines (63 loc) · 1.15 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
* {
font-family: 'Press Start 2P', cursive;
}
.grid {
display: grid;
grid-template-columns: 320px 200px;
text-align: center;
left: 30%;
top: 5%;
width: 50%;
margin: 0 auto;
position: absolute;
color: #FF7F50;
}
.right-column {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.game-board {
border: solid 2px;
}
.play-button {
text-align: center;
background-color: #4caf50;
font-size: 16px;
padding: 15px 30px;
cursor: pointer;
}
.next {
border: solid 2px;
position: relative;
top: 40px;
}
.popup {
background: rgb(0, 255, 255);
border-radius: 8px;
position: absolute;
top: 25%;
left: 105%;
font-size: 15px;
transform: translate(-50%, -25%);
text-align: center;
padding: 0 30px 30px;
color: #333;
}
.background {
position: absolute;
width: 100%;
height: 100%;
}
.main_back {
position: absolute;
width: 100%;
height: 100%;
}
.registr {
width: 50%;
left: 40%;
top: 20%;
margin: 0 auto;
position: absolute
}