-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
76 lines (52 loc) · 1.46 KB
/
Copy pathstyles.css
File metadata and controls
76 lines (52 loc) · 1.46 KB
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
/* Remember; this is a comment */
/* Import Poppins font family here from Google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500&display=swap');
/* Typography */
/* BONUS: Hex color #535865 for the text color to be converted to HSl: (223, 10%, 36%) */
p, li {
font-family: 'Poppins', sans-serif;
font-weight: 300;
color: hsl(223, 10%, 36%);
}
/* BONUS: Hex color #865B9A for the contrast color (for titles, etc) to be converted to HSl: (281, 26%, 48%) */
h1, h2, h3, h4, h5, h6 {
font-family: 'Poppins', sans-serif;
font-weight: 500;
color: hsl(281, 26%, 48%);
}
/* Making the introduction part of the text bold */
#introduction {
font-family: 'Poppins', sans-serif;
font-weight: 500;
}
/* BONUS: Hex color #DFD9E2 for the background to be converted to HSl: (280, 13%, 87%) */
body {
background-color: hsl(280, 13%, 87%);
}
/* Underlining H1 titel */
h1 {
text-decoration: underline;
}
/* TO DO NEXT: */
/* gezonde fruitsoort spaced letters */
h2 {
text-transform: uppercase;
letter-spacing: 8px;
}
/* centering of h1 & "gezonde fruitsoort" oftewel h2 */
h1, h2 {
text-align: center;
}
/* Button style changes, purple background, poppins font etc */
button {
background-color: hsl(281, 26%, 48%);
color: white;
font-size: 24px;
}
button:hover {
background-color: crimson;
}
/* Make listed items have a square instead of a circle bullet */
ul {
list-style: square;
}