-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (40 loc) · 932 Bytes
/
style.css
File metadata and controls
45 lines (40 loc) · 932 Bytes
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
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap");
body {
font-family: Outfit, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
font-size: 15px;
color: var(--gblue);
background-color: var(--lgray);
font-weight: 400;
text-align: center;
margin: 0;
height: 100vh;
display: grid;
place-items: center;
/* Variables */
--width: 288px;
--lgray: hsl(212, 45%, 89%);
--gblue: hsl(220, 15%, 55%);
--dblue: hsl(218, 44%, 22%);
}
article {
background-color: white;
width: var(--width);
border-radius: 20px;
padding: 16px;
margin: auto;
box-shadow: 0px 2px 56px 0px rgba(0, 0, 0, 0.1);
}
img {
width: var(--width);
border-radius: 12px;
}
h1 {
font-size: 22px;
font-weight: 700;
color: var(--dblue);
margin-block: 20px;
}
p {
margin: 4pt 4pt 16pt 4pt;
}