-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
43 lines (38 loc) · 735 Bytes
/
about.css
File metadata and controls
43 lines (38 loc) · 735 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
.about-me-section {
position: fixed;
left: 145px;
top: 45%;
width: 50%;
transform: translateY(-40%);
font-family: 'Ubuntu Sans', sans-serif;
color: white;
text-align: left;
z-index: 23;
transition: left 0.5s ease;
}
.about-me-section.hidden {
left: -100%;
}
.about-me-header {
font-size: 100px;
font-weight: 900;
margin: 0;
}
.about-me-text {
font-size: 20px;
font-weight: 100;
margin: 10px 0 0 0;
opacity: 0.5;
line-height: 30px;
}
#aboutmePic {
position: fixed;
right: 0;
width: auto;
height: 85%;
bottom: 0px;
transition: bottom 0.5s ease;
}
#aboutmePic.hidden {
bottom: -100%;
}