-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
66 lines (59 loc) · 1.34 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
div{
margin: 0;
padding: 0;
}
#container{
position: relative;
display: grid;
/*grid-auto-rows: minmax(100px,auto);*/
grid-template-columns: repeat(4,1fr);
max-width: 49%;
left: 25%;
top: 100px;
grid-template-rows: repeat(3,minmax(158px,auto));
}
#container1{
position: relative;
display: grid;
/*grid-auto-rows: minmax(100px,auto);*/
grid-template-columns: repeat(4,1fr);
max-width: 49%;
top:115%;
left: 25%;
grid-template-rows: repeat(3,minmax(158px,auto));
animation: up ease-in forwards 1s 1.5s ;
}
@keyframes up{
100%{ top: -375px;
;}
}
#container div{
padding: 25px;
background: #7c8589;
border: white solid 2px;}
#container1 div{
border: white solid 2px;
padding: 25px;
background:blueviolet;}
.win{
position: absolute;
width: 100%;
opacity: 0.8;
display: grid;
font-size: 100px;
height: 100%;
place-items: center;
background: antiquewhite;
left: 0;
top: 0;
}
@media(max-width:500px){
#container1{
max-width: 100%;
left:0;
}
#container{
left: 0%;
max-width: 100%;
}
}