-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.css
More file actions
127 lines (108 loc) · 1.63 KB
/
about.css
File metadata and controls
127 lines (108 loc) · 1.63 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
126
127
.about {
padding: 100px 15px;
background-color: #fff;
}
.img {
flex: 0 0 50%;
max-width: 50%;
}
.img img {
width: 100%;
border-radius: 4px;
display: block;
}
.text {
flex: 0 0 50%;
padding-left: 30px;
}
.text h4 {
font-size: 25px;
font-weight: 600;
margin: 0 0 10px;
color: #000;
}
.text h6 {
font-size: 18px;
font-weight: 500;
margin: 0 0 25px;
color: #000;
}
.text h6 span {
color: #5f88e0;
position: relative;
}
.text h6 span::before {
content: "";
left: 0;
right: 90%;
position: absolute;
height: 2px;
bottom: 0px;
transition: all 0.5s ease;
}
.text h6 span:hover::before {
content: "";
left: 0;
right: 0;
position: absolute;
height: 2px;
background-color: #5f88e0;
bottom: 0px;
}
.text p {
font-size: 15px;
font-weight: 400;
line-height: 24px;
color: #838383;
}
.skills {
padding: 20px 0px;
}
.skills h6 {
font-size: 18px;
font-weight: 400;
margin: 0 0 25px;
color: #000;
}
.skills-list {
width: 300px;
display: flex;
justify-content: space-between;
}
.fa-ul li {
font-size: 14px;
font-weight: 400;
color: #838383
}
.fa-ul .fa-li {
font-size: 14px;
font-weight: 400;
color: #838383
}
.social {
padding-top: 10px;
}
.social a {
height: 30px;
width: 30px;
background-color: #000;
display: inline-block;
border: 1px solid #000;
border-radius: 4px;
line-height: 28px;
text-align: center;
margin: 0px 1px;
transition: all 0.5s ease;
-webkit-transition: all 0.5s ease;
}
.social a:hover {
background-color: transparent;
color: #000;
}
.social a .fa {
color: #fff;
font-size: 14px;
}
.social a .fa:hover {
color: #000;
}