-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (84 loc) · 1.72 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
:root {
--color1: #3177E1;
--color1-dark: #2962b8;
--color2: #3D3D3D;
}
* {
margin: 0;
padding: 0;
font-family: 'Open Sans', arial, sans-serif;
}
h1 {
font-family: museo-sans, Arial, Helvetica, sans-serif;
font-weight: 700;
font-size: 36px;
text-align: center;
color: white;
margin-bottom: 20px;
}
label {
font-family: museo-sans, Arial, Helvetica, sans-serif;
font-weight: 300;
font-size: 14px;
color: white;
margin-bottom: 5px;
}
input[type=text], input[type=number], select {
height: 30px;
border: 0px solid #FFFFFF;
border-radius: 3px;
padding-left: 10px;
}
input[type=submit] {
background-color: var(--color1);
font-family: museo-sans, Arial, Helvetica, sans-serif;
font-weight: 700;
font-size: 17px;
text-align: center;
color: white;
border: 0;
align-items: center;
border-radius: 3px;
width: 260px;
height: 45px;
}
input[type=submit]:hover {
background-color: var(--color1-dark);
color: #cfcfcf;
}
.container {
background-size: cover;
height: 100vh;
background: url(img/background.png) center center;
align-items: center;
justify-content: center;
display: flex;
flex-direction: column;
}
.content {
background-color: var(--color2);
padding: 35px 60px 35px 60px;
box-shadow: 0px 15px 16px #0000002E;
border-radius: 6px;
}
.row {
display: flex;
}
.form-content {
display: flex;
justify-content: flex-start;
flex-direction: column;
text-align: start;
padding: 10px;
}
.filename, .filesize {
flex-grow: 20;
}
.fileext, .sizeunit {
flex-grow: 1;
}
.submit {
margin-top: 33px;
display: flex;
justify-content: center;
}