-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (94 loc) · 1.91 KB
/
style.css
File metadata and controls
106 lines (94 loc) · 1.91 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
position: relative;
height: 100vh;
font-size: 30px;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.tittle {
display: flex;
justify-content: center;
align-items: center;
text-transform: uppercase;
font-size: 1.5em;
}
.game-center {
margin-top: 50px;
display: flex;
justify-content: center;
align-items: center;
}
.game-wrapper {
width: 450px;
height: 450px;
display: flex;
flex-wrap: wrap;
}
.game-cell{
width: 150px;
height: 150px;
border: 1px solid black;
display: flex;
justify-content: center;
align-items: center;
font-size: 2em;
cursor: pointer;
}
.button {
margin-top: 50px;
display: flex;
justify-content: center;
align-items: center;
}
.button button {
display: inline-block;
color: white;
font-weight: 900;
background: rgb(64,199,129);
text-decoration: none;
user-select: none;
padding: .5em 2em;
outline: none;
border: 2px solid;
border-radius: 1px;
transition: 0.2s;
cursor: pointesr;
}
.button button:hover {
background: rgba(56, 197, 103, 0.61);
color: rgb(248, 72, 72);
}
.table {
position: absolute;
display: flex;
flex-direction: column;
justify-content: space-around;
height: 300px;
width: 250px;
border: 1px solid black;
right: 0;
top: 50%;
transform: translate(0, -50%);
}
.table p {
margin-left: 10px;
font-weight: bold;
}
.win-wrapper {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
height: 400px;
width: 400px;
left: 0;
top: 50%;
transform: translate(0, -50%);
font-size: 3em;
text-transform: capitalize;
color: rgb(65, 177, 230);
}