-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
77 lines (67 loc) · 1.08 KB
/
styles.css
File metadata and controls
77 lines (67 loc) · 1.08 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
77
/* Body */
body {
background-color: #ffe0dc;
color: #333;
line-height: 1.6;
padding: 20px;
font-family: "Nunito Sans", sans-serif;
}
/* Heading */
h1 {
font-size: 2.5em;
color: black;
margin-bottom: 10px;
text-align: center;
font-family: "Poppins", sans-serif;
font-weight: bold;
}
h2 {
font-size: 2em;
color: black;
margin-top: 20px;
margin-bottom: 10px;
text-align: center;
font-family: "Poppins", sans-serif;
font-weight: bold;
margin-top: 50px;
}
/* Paragraph */
.container {
display: flex;
justify-content: center;
align-items: center;
}
p {
font-size: 1.1em;
text-align: center;
max-width: 600px;
}
/* List */
ul {
list-style-type: none;
padding: 0;
text-align: center;
}
ul li {
margin: 10px 0;
font-size: 1.1em;
}
.list {
font-weight: bold;
}
/* Link */
a {
text-decoration: none;
color: #d29494;
transition: color 0.3s;
}
a:hover {
color: #ff6b6b;
text-decoration: underline;
}
/*
colors:
#dca1a1
#6b8e23 : muted olive
#ff6b6b : soft coral
*/