-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (80 loc) · 1.39 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
*{
margin: 0;
padding: 0;
}
nav{
background-color: rgb(96, 224, 233);
color: rgb(255, 255, 255);
height: 80px;
font-size: 50px;
display: flex;
align-items: center;
padding: 0 12px;
}
nav ul{
list-style-type:none;
}
.gameContainer{
display: flex;
justify-content: center;
margin-top: 50px;
}
.container{
display: grid;
grid-template-columns: repeat(3,10vw);
grid-template-rows: repeat(3,10vw);
}
.box{
border: 2px solid rgb(241, 233, 7);
font-size: 8vw;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
font-family: 'Kalam', cursive;
}
.box:hover{
background-color:rgb(249, 245, 241) ;
}
.gameInfo{
display: flex;
flex-direction: column;
align-items: center;
padding: 0 30px;
font-family: 'Baloo Da 2', cursive;
}
.imgbox img{
width: 0px;
}
.br-0{
border-right: 0;
}
.bl-0{
border-left: 0;
}
.bt-0{
border-top: 0;
}
.bb-0{
border-bottom: 0;
}
#reset{
margin: 2px;
padding: 2px 10px;
background-color: rgb(245, 209, 185);
border: 1px solid rgb(207, 180, 250);
border-radius: 5px;
font-size: 15px;
cursor: pointer;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.info{
padding: 10px;
font-size: 20px;
}
@media screen and (max-width: 1000px)
{
.gameContainer{
flex-wrap: wrap;
}
}