-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (71 loc) · 1.11 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
html, body {
font-family: 'Montserrat', sans-serif;
width: 100%;
}
body {
padding: 24px;
}
* {
box-sizing: border-box;
}
.departement {
box-sizing: border-box;
width: 100%;
padding: 16px 0;
}
form {
box-sizing: border-box;
display: flex;
flex-flow: row wrap;
width: 100%;
padding: 0;
}
form fieldset {
border: 1px solid lightgrey;
box-sizing: border-box;
margin-bottom: .5rem;
padding: 1rem;
flex: 1 1 40%;
}
form fieldset legend {
font-weight: bold;
}
label {
display: block;
margin: 0;
padding: 0;
padding-bottom: 0.5rem;
}
label span {
display: block;
font-weight: 500;
font-size: 0.875rem;
padding-bottom: 0.25rem;
}
input {
width: 100%;
margin: 0;
}
canvas {
display: none;
}
.download {
text-align: center;
margin: 24px 0;
}
#previews {
margin: 24px 0;
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: stretch;
height: 500px;
}
#previews div {
display: block;
flex: 1 1 auto;
border: 1px solid lightgrey;
background-repeat: no-repeat;
background-size: contain;
background-position: top center;
}