summaryrefslogtreecommitdiff
path: root/style.css
blob: a927dd1f384c658fffe77e18bcada21d4255b9fc (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
html {
    box-sizing: border-box;
    font-size: 16px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

div {
    margin: 5px;
}

td, th {
    padding: 5px;
}

table {
    width: 100%;
}

select {
    overflow-y: auto;
}

.container {
    min-width: 25em;
    width: 80%;
    max-width: 60em;
    margin: 5px auto;
}

#input {
    width: 100%;
    font-size: 1.3em;
}

#link-container {
    text-align: center;
}

#link {
    font-size: 1.4em;
}

#error {
    color: #d7191c;
}

#warning {
    color: #a6611a;
}