forked from heyitsolivia/secretpuppies
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapplication.css
54 lines (47 loc) · 819 Bytes
/
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
@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);
}
.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;
}