-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutMeStyle.css
More file actions
60 lines (49 loc) · 784 Bytes
/
Copy pathaboutMeStyle.css
File metadata and controls
60 lines (49 loc) · 784 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
52
53
54
55
56
57
58
59
.about{
width:100%;
height: auto;
padding: 50px 10vw;
}
.about-me-container{
margin: 80px;
}
.heading{
text-align: center;
font-weight: 500;
font-size: 2.5rem;
text-transform: capitalize;
}
.ex-me{
margin-top: 35px;
}
.seperator{
width:25%;
margin: 20px auto;
position: relative;
}
.seperator::before{
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 5px;
height: 5px;
border-radius: 50%;
background: #fff;
}
.seperator::after{
content: '';
position: absolute;
bottom: 2px;
left: 0;
width: 100%;
height: 1px;
background: #fff;
}
.about-image{
width: 40%;
height: 40%
}
.experience-section{
margin: 50px;
}