-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaster.css
39 lines (29 loc) · 804 Bytes
/
master.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
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');
@import url(./styles/card.css);
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
:root {
font-size: 10px;
--clr-soft-blue: hsl(215, 51%, 70%);
--clr-cyan: hsl(178, 100%, 50%);
--clr-main-bg: hsl(217, 54%, 11%);
--clr-card-bg: hsl(216, 50%, 16%);
--clr-line: hsl(215, 32%, 27%);
--clr-white: hsl(0, 0%, 100%);
--font-size-p: 1.8rem;
--font-weight-bold: 600;
--font-weight-medium: 400;
--font-weight-normal: 300;
}
body {
font-family: 'Outfit', Arial, Helvetica, sans-serif;
background-color: var(--clr-main-bg);
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}