-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
94 lines (74 loc) · 1.31 KB
/
styles.css
File metadata and controls
94 lines (74 loc) · 1.31 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
body {
display: flex;
flex-direction: column;
margin: 0;
padding: 0;
font-family: Georgia, 'Times New Roman', Times, serif;
}
ul {
list-style: none;
margin: 0;
padding: 0;
}
.header {
background-color: #1f2937;
color: white;
font-size: 24px;
padding: 8px;
display: flex;
justify-content: space-between;
}
.header a {
text-decoration: none;
color: lightgray;
}
.header-logo {
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
padding-left: 35px;
}
.header-links {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 18px;
gap: 12px;
}
/* */
.about-me {
background-color: #1f2937;
color: white;
font-size: 24px;
padding: 75px;
padding-left: 45px;
gap: 70px;
display: flex;
justify-content: center;
align-items: center;
}
.about-me-photo {
display: flex;
}
.about-me-photo img {
border-radius: 50%;
width: 250px;
height: 250px;
flex-shrink: 0;
}
.about-me-title {
font-weight: bold;
font-size: 40px;
}
.about-me-text {
font-weight: normal;
font-size: 20px;
filter: contrast(0.75);
padding-left: 0;
word-wrap: break-word;
width: 500px;
}
.about-me-text a {
color: lightblue;
}