blob: 82dc4464608b359d4c68acb31e3481dbcc56804d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
@import url("nav.css");
@import url("footer.css");
:root {
--width: 750px;
}
body, html {
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;
}
|