blob: cbe8d1c963a86a08e667022bc3c4335dbd50f120 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
|
@import url("nav.css");
@import url("footer.css");
:root {
--width: 750px;
--bg: #dddddd;
--bg-alt: #ffffff;
--fg: #000000;
--fg-alt: #111111;
}
body, html {
background-color: var(--bg);
color: var(--fg);
margin: 0;
font-family: "Inter", "Neue Haas Grotesk", "Helvetica", "Helvetica Neue", -apple-system, BlinkMacSystemFont, sans-serif;
}
.limwidth {
margin: 0 auto;
max-width: var(--width);
padding: 0 12px;
}
.nolinkstyle {
text-decoration: none !important;
color: currentColor;
}
.main {
margin-top: 2rem;
}
.price::before {
content: "\20ac";
margin-right: 0.3ex;
font-size: 80%;
}
.button,
.buttonstyle {
margin-bottom: 16px;
padding: 9px 12px;
border-radius: 8px;
border: none;
background-color: var(--bg-alt);
}
.button {
cursor: pointer;
}
.button.dashed,
.buttonstyle.dashed {
padding: 7px 10px;
border: 2px dashed currentColor;
}
.button.filled,
.buttonstyle.filled {
background-color: canvastext;
color: canvas;
font-weight: bold;
cursor: pointer;
}
|