-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
135 lines (109 loc) · 1.96 KB
/
index.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
html, body {
position: relative;
height: 100%;
}
body {
font-family: sans-serif;
font-weight: 300;
display: flex;
flex-direction: column;
max-width: 700px;
margin: 0 auto;
text-align: center;
}
#content {
display: none;
}
#browser-warning-screen {
display: none;
position: absolute;
width: 100%;
height: 100%;
z-index: 1000;
background: white;
}
#browser-warning-msg {
position: relative;
top: 50%;
transform: translateY(-50%);
}
/* header */
#header {
margin-top: 40px;
}
#header-text {
font-weight: 300;
letter-spacing: 2px;
}
#description {
font-size: 12px;
margin-bottom: 0;
}
#divider {
border-bottom: 1px solid black;
margin: 20px auto;
width: 10px;
}
/* upload container */
#upload-container {
margin-bottom: 20px;
}
#upload-header {
font-weight: 300;
font-size: 20px;
}
#upload-btn {
border: 1px solid black;
width: 113px;
margin: 0 auto;
letter-spacing: 2px;
padding: 5px 0px;
font-size: 12px;
cursor: pointer;
transition: 0.5s;
}
#upload-btn:hover {
border-color: transparent;
}
#video-file {
display: none;
}
/* upload params */
#range-inputs {
margin-bottom: 10px;
}
.range-input-container {
display: block;
margin: 0 auto;
width: 140px;
}
#frame-rate-range-input-container {
margin-top: 7px;
}
.range-input-label {
display: block;
font-size: 12px;
margin-bottom: 5px;
}
#gif {
margin-top: 20px;
}
/* progress container */
#progress-container {
display: none;
font-size: 12px;
margin-bottom: 20px;
}
#progress-indicator {
margin-bottom: 10px;
}
.rotating-smiley {
display: inline-block;
margin: auto 10px;
-webkit-animation:spin 2s linear infinite;
-moz-animation:spin 2s linear infinite;
animation:spin 2s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotateY(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotateY(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotateY(360deg); transform:rotateY(360deg); } }