-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload.css
108 lines (98 loc) · 1.71 KB
/
upload.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
/*
CSS for upload.html
*/
/*font declration*/
@font-face{
font-family: "DINOT-Bold";
src: url(DINOT-Bold.otf);
}
@font-face{
font-family: "DINOT-BoldItalic";
src: url(DINOT-BoldItalic.otf);
}
@font-face{
font-family: "DINOT-CondMediIta";
src: url(DINOT-CondMediIta.otf);
}
@font-face{
font-family: "DINOT-Italic";
src: url(DINOT-Italic.otf);
}
@font-face{
font-family: "DINOT-LightItalic";
src: url(DINOT-LightItalic.otf);
}
@font-face{
font-family: "DINOT";
src: url(DINOT.otf);
}
html {
font-family: "DINOT-Bold", "DINOT-BoldItalic", "DINOT-CondMediIta", "DINOT-Italic", "DINOT-LightItalic", "DINOT";
}
body {
overflow:hidden;
background-color: #FFFFFF;
font-family: "DINOT";
font-size:1.8em;
}
nav {
background-color:#000000;
font-family: "DINOT-Bold";
/*transform: skewX(-20deg);*/
margin: 0 50px;
margin-top:1vh;
}
.nav-wrapper{
margin-left:1.4vh;
}
nav .brand-logo{
font-size:1.7em;
}
label {
color: #333;
font-weight: 500;
font-size: 1.5rem;
margin-top: 1rem;
line-height: 1rem;
}
label span {
font-size: 1rem;
font-weight: 800;
color: #666;
}
form#dropzone-input {
margin:1vh 0;
height:45vh;
border-style:dashed !important;
border-width:0.4vh !important;
border-color:#000000 !important;
}
progress{
width:100%;
background-color:black;
}
.dropzone .dz-message{
margin:0.2vh !important;
}
#submit-button {
height: 10vh;
background-color: #009BDF;
font-size: 3rem;
}
#submit-button i {
font-size: 2.25rem;
}
#preview {
text-align: center;
height: 100%;
overflow: hidden;
}
#preview img{
margin:2% 0;
max-width:100%;
max-height: 90%;
}
#preview video{
max-width:100%;
max-height: 38vh;
}