forked from florinpop17/10-projects-10-hours
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
52 lines (44 loc) · 818 Bytes
/
style.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
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600&display=swap");
* {
box-sizing: border-box;
}
body {
background-color: rebeccapurple;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: "Poppins", sans-serif;
margin: 0 0 3rem;
min-height: 100vh;
}
h3 {
color: #fff;
font-size: 1.8rem;
margin-bottom: 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 0.5rem 0;
text-align: center;
}
li a {
color: #fff;
font-size: 1.2rem;
text-decoration: none;
}
footer {
background-color: rgb(119, 65, 173);
color: #f5f5f5;
padding: 1rem;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}
footer a {
color: #f5f5f5;
}