-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (42 loc) · 712 Bytes
/
style.css
File metadata and controls
51 lines (42 loc) · 712 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,400;0,700;1,400&display=swap');
html {
font-family: 'Source Sans Pro', sans-serif;
height: 100%;
width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
body {
max-width: 600px;
}
header {
width: 100%;
display: flex;
justify-content: space-between;
padding-bottom: 20px;
border-bottom: 2px solid grey;
}
h1 {
font-weight: bold;
}
h2 {
margin-bottom: 10px;
}
ul {
margin-top: 10px;
}
.content {
font-style: italic;
margin-right: 50px;
}
.profile {
height: 150px;
width: 150px;
border-radius: 50%;
object-fit: cover;
}
#title {
width: 150px;
height: 75px;
}