-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
73 lines (62 loc) · 1.04 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
61
62
63
64
65
66
67
68
69
70
71
72
73
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #af4c91;
color: white;
padding: 1em 0;
text-align: center;
}
.logoAndName {
display: flex;
align-items: center;
justify-content: center;
gap: 1rem;
}
header h1 {
margin: 0;
}
nav ul {
list-style: none;
padding: 0;
display: flex;
flex-direction: row;
justify-content: center;
}
nav ul li {
display: inline;
margin: 0 1em;
}
nav ul li a {
color: white;
text-decoration: none;
}
nav ul li a::after {
content: '';
display: block;
width: 0;
height: 2px;
background: white;
transition: width .3s;
}
nav ul li a:hover::after {
width: 100%;
}
section {
padding: 2em;
margin: 1em 0;
background-color: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
padding: 1em 0;
background-color: #12153d;
color: white;
width: 100%;
}