forked from heyitsolivia/secretpuppies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.css
75 lines (66 loc) · 1.19 KB
/
application.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
67
68
69
70
71
72
73
74
75
@import('normalize.css');
body {
background: #000000;
height: 100%;
margin: 0;
overflow: hidden;
position: absolute;
width: 100%;
font-family: 'Noto Sans', Helvetica, sans-serif;
}
video {
height: 100%;
width: 100%;
transform: scale(1.2);
-webkit-transform: scale(1.2);
}
#puppygif {
position: fixed;
top: 50%;
left: 50%;
cursor: pointer;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@media all and (orientation:portrait) {
#puppygif {
width: 100%;
}
}
@media all and (orientation:landscape) {
#puppygif {
height: 100%;
}
}
.footer {
position: fixed;
bottom: 0;
width: 100%;
height: 25px;
background-color: #000;
}
.footer a {
float: left;
padding: 5px 10px;
color: #aaa;
font-size: 10px;
text-decoration: none;
background-color: #000;
opacity: 0.5;
transition: background 200ms;
}
.footer a.right {
float: right;
}
.footer a:hover {
background-color: #fff;
opacity: 0.5;
color: #444;
}
.geomicon {
fill: #999;
}
.geomicon:hover {
fill: #000;
}