-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
112 lines (93 loc) · 1.43 KB
/
Copy pathstyle.css
File metadata and controls
112 lines (93 loc) · 1.43 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
text-decoration: none;
/* border: 1px solid red; */
}
body {
background-color: rgb(241, 238, 238);
font-family: "Poppins", sans-serif;
font-weight: 100;
font-style: normal;
}
hr {
border-top: 1px black solid;
}
.l-side {
color: white;
display: flex;
flex-direction: column;
width: 20vw;
background-color: rgb(32, 62, 161);
border: 1px black solid;
}
main {
display: flex;
}
main .image img {
border-radius: 50%;
margin: 2rem;
}
main .content {
padding-left: 1rem;
}
.header {
margin-top: 1rem;
}
h5 {
font-weight: 200;
}
.expertise {
padding-left: 1.2rem;
}
/* right side */
.r-side {
width: 80vw;
height: 100vh;
background-color: rgb(215, 234, 248);
padding: 1rem 3rem;
display: flex;
flex-direction: column;
}
.r-side > section {
margin: 1rem 0;
}
.sec-1 {
text-align: center;
}
.name {
padding-top: 1rem;
}
.work {
text-transform: uppercase;
font-weight: 300;
font-size: 0.7rem;
}
.r-side p {
margin-top: 1rem;
text-align: justify;
font-weight: 400;
}
.r-side ul {
margin-top: 1rem;
font-weight: 400;
}
.social-links {
align-self: flex-end;
display: flex;
justify-content: center;
margin: 2rem auto;
}
.social-links img {
height: 2.5rem;
width: 2.5rem;
transition: transform 0.3s;
margin: 1rem;
}
.side-topic {
margin-top: 1rem;
}
.social-links img:hover {
transform: translateY(-10px);
}