summaryrefslogtreecommitdiff
path: root/styles.css
blob: 7defa334cf2b3d18c34f70baaaeb0027285a7a71 (plain) (blame)
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
:root {
    --background-surface: #EFEFEF;
    --primaryColor: #43281C;
    --secondaryColor: #333D29;
    --color3: #7F4F24;
    --color4: #B08968;
    --color5: #DDB892;
    --color6: #EDE0D4;
    --highlight: #FBF2C6;
}

body {
    padding: 0;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}

body>header {
    position: fixed;
    width: 100%;
    top: 0;
}

body>main {
    margin: auto;
    margin-top: 60px;
    max-width: 500px;
}

h1 {
    background-color: var(--primaryColor);
    color: white;
    margin: 0;
    text-align: center;
    padding: 10px 0 5px 0;
    font-size: 20px;
    font-weight: normal;
}

ul {
    display: none;
    padding: 0;
}

a.navlink {
    color: var(--highlight);
    padding: 8px;
    text-decoration: none;
}

#linkHome {
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
}

#linkOrder {
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
}

section.page {
    display: none;
}

#badge {
    padding: 4px;
    background-color: red;
    border-radius: 15px;
    width: 10px;
    text-align: center;
    font-size: x-small;
    color: white;
    position: absolute;
    right: 5px;
    top: 6px;
}