-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
45 lines (45 loc) · 960 Bytes
/
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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-size: 22px;
font-family: sans-serif;
}
.game{
display: grid;
grid-template-columns: 33% 33% 33%;
padding: 10px;
width: 500px;
margin: auto auto;
}
.title{
color: rgb(255, 191, 0);
}
.tit{
background-color: rgb(222, 49, 99);
margin: 80px auto 5px;
width: 470px;
padding: 5px 0;
text-align: center;
}
.grid-item {
width: 90%;
padding: 15px;
height: 100px;
font-size: 50px;
margin: 5px ;
text-align: center;
color: #fff;
background-color: rgb(222, 49, 99);
cursor: pointer ;
}
.grid-item:hover{
background-color: #000;
}
@media only screen and (max-width: 800px) {
.tit{
width : 300px;
}
.game {
width: 330px;
}}