-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathstyle.css
106 lines (94 loc) · 1.79 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
html {
border: 0;
margin: 0;
padding: 0;
overflow: hidden;
}
body {
border: 0;
margin: 0;
padding: 0;
overflow: hidden;
}
canvas {
width: 100%;
height: 100%;
border: 0;
}
.login {
position: absolute;
right: 10px;
top: 10px;
font: 8pt Arial;
color: rgba(255,255,255,0.33);
}
.biglogin {
display: none;
position: absolute;
top: 50%;
width: 100%;
text-align: center;
}
.biglogin a {
margin: 0 auto;
font: 18pt "Helvetica Neue", "Helvetica", Arial;
padding: 20px 40px;
border-radius: 100px;
background-color: rgb(30,200,20);
box-shadow: 0 0 100px rgba(30,230,20,0.9);
color: #fff;
display: inline-block;
text-align: center;;
cursor: pointer;
transition: all 0.1s ease-in-out;
}
.biglogin a:hover {
transform: scale(1.1);
}
div.toast {
background-color: rgba(0,0,0,0.5);
position: absolute;
left: 0;
bottom: 0;
right: 0;
text-align: center;
padding: 40px;
transform: translateY(100px);
transition: all 1.0s ease-in-out;
opacity: 0.0;
}
div.toast.visible {
transform: translateY(0);
opacity: 1.0;
}
div.toast #text {
display: block;
font-size: 25pt;
font-family: "Helvetica Neue", Helvetica;
font-weight: 100;
color: #fff;
}
div.toast #text2 {
display: block;
font-size: 15pt;
font-family: "Helvetica Neue", Helvetica;
font-weight: 100;
color: #ccc;
}
div.trackposition {
position: absolute;
left: 10px;
bottom: 10px;
right: 10px;
height: 5px;
background-color: rgba(0,0,0,0.4);
border-radius: 10px;
}
div.trackposition div.fill {
transition: width 0.1s ease-in-out;
background-color: #1ed660;
position: absolute;
left: 0;
height: 5px;
border-radius: 10px;
}