-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (122 loc) · 1.92 KB
/
style.css
File metadata and controls
129 lines (122 loc) · 1.92 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
128
129
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body{
background: lightblue;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container1{
position: relative;
width: 100%;
max-height: 1000px;
min-width: 700px;
background: #fff;
margin: 50px;
display: grid;
grid-template-columns: 1fr 2fr;
box-shadow: 0 35px 55px rgba(0, 0, 0, 0.1);
}
.profileText{
position: relative;
display: flex;
flex-direction: column;
align-items: center;
padding-bottom: 20px;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.imgBx{
position: relative;
width: 200px;
height: 200px;
border-radius: 50%;
overflow: hidden;
}
img{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.profileText h1{
color: white;
font-size: 1.5em;
margin-top: 20px;
text-transform: uppercase;
text-align: center;
font-weight: 600;
line-height: 1.4em;
}
.leftside{
position: relative;
background: #003147;
padding: 40px;
}
.contact{
padding-top: 20px;
color: white;
}
.text{
color: #03a9f4;
font-weight: 300;
}
.title
{
letter-spacing: 1px;
margin-bottom: 20px;
letter-spacing: 1px;
margin-bottom: 20px;
}
ul li{
position: relative;
list-style: none;
margin: 10px 0;
cursor: pointer;
}
.education li{
margin-bottom: 15px;
}
.education h4{
margin-bottom: 15px;
color: #03a9f4;
margin-left: 30px;
font-weight: 500;
}
.education h3{
color: black;
margin-left: 30px;
font-weight: 500;
}
.language{
color: #fff;
font-weight: 500;
}
.rightside{
position: relative;
background: #fff;
padding: 40px;
}
h1{
margin-left: 20px;
margin-top: 20px;
font-weight: 500;
font-size: 25px;
}
p{
margin-left: 35px;
}
h2{
margin-left: 20px;
margin-top: 30px;
}
.skill ul li{
list-style: disc;
margin-left: 70px;
}