-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
60 lines (44 loc) · 1.03 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400&display=swap');
/* ------------------------------- Styling voor opdracht 1 en 2 -------------------------------- */
/* Schrijf hier jouw CSS... */
body {
color: white;
}
/* ------------------------------- Base Styles: don't change this! -------------------------------- */
* {
margin: 0;
padding: 0;
}
body {
background-color: hsl(212, 36%, 90%);
color: hsl(210, 93%, 29%);
text-align: center;
font-family: 'Roboto Slab', Arial, serif;
font-weight: 300;
}
h1 {
margin: 32px;
}
#compliment-container {
display: flex;
justify-content: space-around;
padding: 32px;
}
.compliment {
background-color: hsl(212, 43%, 65%);
flex-basis: 200px;
color: white;
padding: 32px;
}
.highlight {
color: hsl(210, 93%, 19%);
font-weight: 400;
}
footer {
background-color: hsl(29, 100%, 47%);
color: white;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
}