-
Notifications
You must be signed in to change notification settings - Fork 16
/
submit.css
67 lines (56 loc) · 866 Bytes
/
submit.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
body {
background-color: #f2f2f2;
}
h1 {
font-size: 3em;
}
label, button, p {
font-size: 2.5em;
}
input[type=text], select, textarea {
font-size: 2em;
width: 30em;
padding: 0.5em;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
resize: vertical;
}
label {
width: 8em;
padding: 0.5em;
display: inline-block;
}
input[type=file] {
opacity: 0;
width: 0px;
}
#submit {
font-size: 2em;
background-color: #4CAF50;
color: white;
width: 10em;
padding: 12px 20px;
border: none;
border-radius: 4px;
cursor: pointer;
margin-top: 1em;
}
#file_list div * {
margin: 1em 0.5em;
display: inline-block;
}
#form {
width: 90%;
border-radius: 5px;
background-color: #f2f2f2;
padding: 0em 2em 2em 2em;
}
#form div:after {
content: "";
display: table;
clear: both;
}
a {
color: inherit;
}