-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (89 loc) · 1.47 KB
/
style.css
File metadata and controls
94 lines (89 loc) · 1.47 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
*{
margin: 0;
padding: 0;
}
nav{
background-color: rgb(69, 7, 75);
color:blanchedalmond;
height: 75px;
font-size: 27px;
display: flex;
align-items: center;
padding: 0 12px;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
nav ul{
list-style: none;
}
.gameContainer{
background-color:#83836b;
display: flex;
justify-content: center;
margin-top: 50px;
}
.container{
display: grid;
grid-template-rows: repeat(3,9vw);
grid-template-columns: repeat(3,9vw);
position: relative;
}
.container{
/* border: 2px solid black; */
font-size: 8vw;
}
.box{
border: 2px solid black;
font-size: 8vw;
cursor: pointer;
}
.box:hover{
background-color: rgba(13, 90, 10, 0.685);
}
.gameInfo{
padding:0 34px;
}
.br-0{
border-right: 0;
}
.bl-0{
border-left: 0;
}
.bt-0{
border-top: 0;
}
.bb-0{
border-bottom: 0;
}
.imgbox img{
width:0;
transition: width is ease-in-out;
}
#Reset{
margin-top: 68px;
padding: 6px 14px;
border-radius: 6px;
cursor: pointer;
background-color: rgb(146, 54, 165);
}
.info{
font-size: 25px;
}
@media screen and (max-width:950px)
{
.gameContainer{
flex-wrap:wrap;
}
.gameInfo{
margin-top:34px;
}
.gameInfo h1{
font-size: 1.5rem;
}
}
.line{
background-color: black;
width: 30vh;
height: 3px;
position: absolute;
transition: width 1s ease-in-out;
}