-
Notifications
You must be signed in to change notification settings - Fork 13
/
Game.css
51 lines (49 loc) · 788 Bytes
/
Game.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
body {
background: #2C5364;
height: 100vh;
}
button{
position: relative;
top: 5%;
border: initial;
background:initial;
float: left;
align-items: center;
}
img{
position: relative;
border-radius: 10%;
width: auto;
cursor: pointer;
height: 166px;
}
.spam {
position: static;
float: left;
cursor: pointer;
font-size: 75px;
z-index: 10;
top: 0%;
}
.each {
position: relative;
padding: 1vh;
padding-top: 4vh;
transition-duration: 0.3s;
-webkit-transform: scale(1.1);
transform: scale(1.1);
background-color: transparent;
float: left;
vertical-align: middle;
}
.each:hover{
-webkit-transform: scale(2.2);
transform: scale(1.2);
}
.layout{
position: relative;
width: 100%;
height: 100%;
float: left;
align-items: center;
}