-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
111 lines (101 loc) · 2.14 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@font-face {
font-family: 'icomoon';
src:url('assets/icomoon.eot?-6db9w4');
src:url('assets/icomoon.eot?#iefix-6db9w4') format('embedded-opentype'),
url('assets/icomoon.ttf?-6db9w4') format('truetype'),
url('assets/icomoon.woff?-6db9w4') format('woff'),
url('assets/icomoon.svg?-6db9w4#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
font-family: 'icomoon';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-video-camera:before {
content: "\e914";
}
.icon-zoom-out:before {
content: "\e988";
}
.icon-link:before {
content: "\e9cb";
}
.icon-play2:before {
content: "\ea15";
}
.icon-shuffle:before {
content: "\ea30";
}
body {
overflow: hidden;
background: rgb(40, 40, 40);
padding: 0;
margin: 0;
}
#buttons {
position: absolute;
text-align: center;
bottom: 0;
font-size: 24px;
left: 0;
width: 100%;
}
#buttons > .button {
display: inline-block;
background: rgba(0,0,0,0.75);
cursor: pointer;
opacity: 0.8;
border-radius: 5%;
color: rgb(230,230,230);
border: 2px solid transparent;
padding: 10px;
box-sizing: border-box;
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
-o-transition: all 0.1s ease-out;
-ms-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
}
#link {
color: inherit;
display: inline-block;
text-decoration: none;
}
#loading {
font-family: monospace;
font-size: 12px;
position: absolute;
top: 40%;
left: 0;
right: 0;
bottom: 0;
margin: auto;
text-align: center;
color: white;
}
#twitter {
position: absolute;
bottom: 30px;
right: 30px;
color: white;
display: none;
}
#buttons > .button:hover {
opacity: 1.0;
border: 2px solid rgb(70, 70, 70);
border-radius: 15%;
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
-o-transition: all 0.1s ease-out;
-ms-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
}