-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
117 lines (103 loc) · 2.09 KB
/
styles.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
112
113
114
115
116
117
html
{
background-color: black;
}
h1 { color: #ffffff; font-family: 'Raleway',sans-serif; font-size: 62px; font-weight: 800; line-height: 72px; margin: 0 0 24px; text-transform: uppercase; }
input, .fileList, .startButton, p { color: #ffffff; font-family: 'Raleway',sans-serif; font-size: 20px; font-weight: 800; }
p { color: #ffffff; font-family: 'Raleway',sans-serif; font-size: 24px; font-weight: 400; }
.mainCanvas
{
min-height: 100%;
height: auto;
height: 100%;
margin: 0 0 0 0;
}
.hiddenDiv
{
display: none;
}
.startButton, input {
background-color: silver;
border: none;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
}
.tile
{
display: inline-block;
}
.playButton
{
max-width: 30vw;
min-width: 30vw;
min-height: 30vw;
display: inline-table;
border-color: dark-gray;
border-width: 0.2vw;
border-style: solid;
border-radius: 15.2vw;
text-align: center;
margin: 5px 5px 5px 5px;
font-family: 'Helvetica Neue', sans-serif;
font-size: 16px;
font-weight: bold;
line-height: 1;
padding: 10px 10px 10px 10px;
}
.playButton span
{
vertical-align:middle;
display: table-cell;
}
.isFinishing
{
-webkit-animation: flash 10s linear;
animation: flash 1s linear;
-webkit-animation-iteration-count: 1000;
animation-iteration-count: 1000;
}
.timeDisplay
{
position: relative;
left: 14.5vw;
top: -5vw;
color: inherit;
font-family: 'Helvetica Neue', sans-serif;
font-size: 12px;
}
.nowPlaying
{
border-color: white;
border-width: 1vw;
border-radius: 17vw;
-webkit-animation: spin-360 10s linear;
animation: spin-360 10s linear;
-webkit-animation-iteration-count: 1000;
animation-iteration-count: 1000;
}
.nextPlaying
{
border-color: silver;
border-width: 1vw;
border-radius: 17vw;
-webkit-animation: flash 1s linear;
animation: flash 1s linear;
-webkit-animation-iteration-count: 2;
animation-iteration-count: 2;
}
@-webkit-keyframes spin-360
{
100% {
transform: rotate(360deg);
}
}
@-webkit-keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}