-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmobile.css
66 lines (59 loc) · 1.01 KB
/
mobile.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
body {
background-color: #00ADEE;
margin: 0;
padding: 0;
overflow: hidden;
overflow-x: hidden;
}
#shark {
width: 300px;
position: absolute;
bottom: -40px;
right: 20px;
}
#sammy {
bottom: -85px;
right: 20px;
width:300px;
position: absolute;
z-index: 1;
}
.buttons {
position: absolute;
top: 50%;
margin-top: -40px;
left: 50%;
margin-left: -90px;
width: 100%;
}
.social {
position: relative;
width: 40px;
padding: 20px;
text-decoration: none;
}
a {
text-decoration: none;
cursor: auto;
}
@media screen and (max-width: 480px) {
.box {
position: absolute;
bottom: 81px;
right: 88px;
width: 63px;
z-index: 2;
-webkit-animation-name: rotate;
-webkit-animation-duration: 1s;
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
}
@-webkit-keyframes rotate {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}