-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (58 loc) · 877 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
53
54
55
56
57
58
59
60
61
62
63
64
65
body {
font-family: sans-serif, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
box-sizing: border-box;
background-color: black;
color: white;
/* background-color:white;
color: black; */
max-width: 712px;
margin: 0 auto 0 auto;
padding: 16px;
}
header {
display: flex;
justify-content: flex-start;
align-items: center;
line-height: 1;
gap: 16px;
margin-bottom: 24px;
}
nav{
display: flex;
width: 100%;
align-items: center;
gap: 16px;
}
header img {
border-radius: 50%;
}
h1 {
font-size: 24px;
line-height: 0;
}
a{
color: blue;
font-style: italic;
text-decoration: none;
transition: all 1s ease-in;
}
a:hover{
text-decoration: underline;
}
section {
line-height: 1.4;
margin: 24px 0;
}
ul {
list-style: none;
padding: 0;
}
ul li {
margin: 0.5rem 0;
}
ul li span {
color: blue;
}