-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
220 lines (203 loc) · 3.89 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
width: 100%;
height: 100%;
background: #222329;
background: -webkit-linear-gradient(#222329, #151721);
background: -o-linear-gradient(#222329, #151721);
background: -moz-linear-gradient(#222329, #151721);
background: linear-gradient(#222329, #151721);
overflow-x: hidden;
overflow-y: scroll;
}
body {
width: 100%;
height: 100%;
font-family: 'Helvetica Neue', sans-serif;
overflow-x: hidden;
overflow-y: scroll;
}
h1 {
background-color: rgba(12, 252, 255, .35);
color: rgba(231, 245, 244, .75);
font-size: 28px;
font-weight: 200;
letter-spacing: 1.2px;
line-height: 1;
padding: 4px 8px;
text-transform: uppercase;
}
.wrapper {
margin: 0 auto;
padding: 64px 16px;
width: 640px;
}
/* Drop Zone */
.dropZoneBox {
background-color: rgba(87, 184, 208, .4);
border: 1px solid rgba(138, 255, 247, .5);
margin-top: 16px;
padding: 16px;
}
#editor-tabs {
/* border: 2px dashed #bbb; */
background-color: rgba(87, 184, 208, .1);
color: rgba(255, 255, 255, .5);
font: 200 18px/18px 'Helvetica Neue';
letter-spacing: 1.5px;
padding: 138px 16px;
text-align: center;
text-transform: uppercase;
}
#dropZone:hover {
background-color: rgba(255, 150, 0, .2);
color: rgba(255, 255, 255, .6);
}
#dropZone.dragover {
background-color: rgba(255, 150, 0, .6);
color: rgba(255, 255, 255, .8);
}
/* Progress Area */
h6 {
color: rgba(255, 255, 255, .8);
font: 300 11px/11px 'Helvetica Neue';
letter-spacing: 1px;
margin-top: 12px;
position: relative;
text-transform: uppercase;
}
h6:after {
background-color: rgba(255, 255, 255, .4);
content: '';
display: block;
position: absolute;
height: 1px;
left: 100px;
right: 0;
top: 6px;
}
#progressTable {
margin-top: 2px;
width: 100%;
}
#progressTable th {
text-align: left;
width: 82px;
}
#progressTable td {
padding: 2px 0;
position: relative;
text-align: left;
}
b {
color: rgba(255, 255, 255, .8);
font: 400 30px/30px 'Helvetica Neue';
letter-spacing: .5px;
position: relative;
left: -3px;
text-transform: uppercase;
}
.progressBar {
background-color: rgba(255, 255, 255, .1);
width: 100%;
height: 26px;
}
#progressBar {
background-color: rgba(87, 184, 208, .5);
content: '';
width: 0;
height: 26px;
}
button#abortButton {
width: 16px;
height: 16px;
background-color: transparent;
border: 1px solid #fff;
border-radius: 50%;
cursor: pointer;
opacity: .4;
position: absolute;
top: 7px;
right: 4px;
z-index: 10;
}
button#abortButton:hover {
opacity: .8;
}
button#abortButton:focus {
outline: none;
}
button#abortButton > span {
width: 6px;
height: 6px;
background-color: #fff;
display: block;
margin: 0 auto;
}
/* Output ( Uploaded files) */
#output {
color: white;
}
@keyframes fadeIn {
from {opacity: 0;}
to {opacity: 1;}
}
@keyframes displayPicture {
0% {
opacity: 0;
-webkit-transform: translate(32px, 32px);
transform: translate(32px, 32px);
}
40% {
opacity: 1;
-webkit-transform: translate(32px, 32px);
transform: translate(32px, 32px);
}
60% {
opacity: 1;
-webkit-transform: translate(32px, 32px);
transform: translate(32px, 32px);
}
100% {
opacity: 1;
-webkit-transform: translate(32px, 32px);
transform: translate(0, 0);
}
}
.file {
background-color: rgba(87, 184, 208, .2);
border: 1px solid rgba(138, 255, 247, .2);
margin: 16px 16px 0 0;
padding: 8px;
width: calc(20% - 16px);
}
picture {
background-color: #4a6369;
display: block;
opacity: 0;
overflow: hidden;
padding-bottom: 100%;
position: relative;
width: 100%;
-webkit-transform: translate(32px, 32px);
transform: translate(32px, 32px);
-webkit-animation: displayPicture .8s ease-in;
animation: displayPicture .8s ease-in;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
}
.thumb {
position: absolute;
min-width:100%;
min-height:100%;
left: 0;
top: 0;
background-position: center center;
background-size: cover;
display: block;
opacity: .5;
}