-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
78 lines (68 loc) · 1.57 KB
/
index.css
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
/* Taken from getting started guide at: https://leafletjs.com/examples/quick-start/ */
@import "https://unpkg.com/leaflet@1.9.4/dist/leaflet.css";
@import "https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&display=swap";
/* These CSS variables are global, so they are available in all CSS modules */
:root {
--color-brand--1: #ffb545;
--color-brand--2: #00c46a;
--color-dark--0: #242a2e;
--color-dark--1: #2d3439;
--color-dark--2: #42484d;
--color-light--1: #aaa;
--color-light--2: #ececec;
--color-light--3: #d6dee0;
}
* {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-size: 62.5%;
box-sizing: border-box;
}
body {
font-family: "Manrope", sans-serif;
color: var(--color-light--2);
font-weight: 400;
line-height: 1.6;
}
label {
font-size: 1.6rem;
font-weight: 600;
}
input,
textarea {
width: 100%;
padding: 0.8rem 1.2rem;
font-family: inherit;
font-size: 1.6rem;
border: none;
border-radius: 5px;
background-color: var(--color-light--3);
transition: all 0.2s;
}
input:focus {
outline: none;
background-color: #fff;
}
.cta:link,
.cta:visited {
display: inline-block;
background-color: var(--color-brand--2);
color: var(--color-dark--1);
text-transform: uppercase;
text-decoration: none;
font-size: 1.6rem;
font-weight: 600;
padding: 1rem 3rem;
border-radius: 5px;
}
/*
"importCSSModule": {
"prefix": "csm",
"scope": "javascript,typescript,javascriptreact",
"body": ["import styles from './${TM_FILENAME_BASE}.module.css'"],
"description": "Import CSS Module as `styles`"
},
*/