aboutsummaryrefslogtreecommitdiffstats
path: root/public/style.css
blob: 97049007b827791e8a32c9465b582c864ec2a8ee (plain)
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
html {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: #222222;
}

body {
    max-width: 1000px;
    margin: auto;
    padding: 1rem;
}

.container {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0 -1rem;
}

.column {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    margin: 0 1rem;
    flex: 1;
}

input[type="file"], button {
    margin: 0 0 0.5rem;
}

textarea {
    width: 100%;
    min-height: 10rem;
}