-
Notifications
You must be signed in to change notification settings - Fork 0
/
tictactoestyle.css
59 lines (58 loc) · 1023 Bytes
/
tictactoestyle.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
*{
/* margin: 10px; */
background-color: bisque;
/* overflow: hidden; */
}
.window{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
width: 100%;
height: 100%;
}
.btns{
width: 10vw;
height: 10vw;
background-color: aqua;
cursor: pointer;
box-shadow: 2px 2px rgba(0, 3, 0, 0.5);
font-size: 4vw;
font-weight: bolder;
text-align: center;
color: green;
display: inline-block;
vertical-align: middle;
}
.name{
font-size: 3vmax;
font-weight: bolder;
}
.resetbtn{
width: 12vmax;
height: 6vmax;
font-size: 2vmax;
background-color: red;
color: white;
cursor: pointer;
margin: 20px;
}
.result{
font-size: 2vmax;
font-weight: bolder;
visibility: hidden;
margin: 20px;
}
.winning{
visibility: visible;
}
.gameSpace{
display: flex;
justify-content: center;
align-items: center;
width: 50vw;
}
.box{
display: flex;
flex-direction: column;
}