-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-me.css
More file actions
125 lines (114 loc) · 2.31 KB
/
Copy pathabout-me.css
File metadata and controls
125 lines (114 loc) · 2.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@font-face {
font-family: "Open Sans";
font-style: normal;
font-weight: 400;
font-stretch: 100%;
font-display: swap;
src: url(https://fonts.gstatic.com/s/opensans/v26/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVI.woff2) format("woff2");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: "Raleway";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(https://fonts.gstatic.com/s/raleway/v22/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCIPrE.woff2) format("woff2");
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
html, body {
padding: 0;
margin: 0;
scroll-behavior: smooth;
color: #1E2019;
font-family: "Raleway", sans-serif;
}
#nav-bar {
background: #1E2019;
height: 50px;
}
nav {
height: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
margin: auto;
max-width: 800px;
}
#logo {
height: 40px;
width: 40px;
padding: 2px;
}
#nav-bar a {
color: #EAC435;
text-decoration: none;
margin-right: 20px;
}
#nav-bar a:last-child {
margin-right: 0;
}
#about-me {
margin: 20px 15px 45px;
display: flex;
flex-direction: column;
align-items: center;
}
#about-me h1 {
text-align: center;
}
#about-me p {
max-width: 400px;
}
#about-me h2 {
margin: 45px 0 10px;
}
#pic {
position: relative;
}
#pic img {
max-width: 450px;
border-bottom-left-radius: 50%;
border-bottom-right-radius: 50%;
z-index: 0;
}
#pic ::after {
content: "";
height: 450px;
width: 450px;
position: absolute;
z-index: -1;
background: #EAC435;
border-radius: 100%;
}
footer {
width: 100%;
height: 250px;
background: #282927;
color: #fb5546;
font-weight: 600;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
footer a {
text-decoration: none;
}
footer img {
height: 35px;
width: 35px;
}
footer div {
margin: 10px 0;
}
#made-with a {
color: #fb5546;
text-decoration: none;
}
#social-links {
width: 200px;
display: flex;
justify-content: space-between;
}
/*# sourceMappingURL=about-me.css.map */