-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.css
More file actions
156 lines (151 loc) · 2.86 KB
/
resume.css
File metadata and controls
156 lines (151 loc) · 2.86 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
*{
padding: 0;
margin:0;
box-sizing: border-box;
list-style-type: disc;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background: #a6abad;
align-items: center;
display: flex;
justify-content: center;
min-height: 100vh;
}
.main-content {
position: relative;
display:grid;
grid-template-columns: 300px 700px;
width: 90%;
max-width: 674px;
min-height: 1000px;
margin: 50px;
margin-left: -20%;
}
.main-content .left-section{
grid-column: span 1;
position: relative;
background : lavender;
}
.main-content .right-section {
grid-column: span 1/ span 2;
position: relative;
background: seashell;
}
.profile-image{
padding: 1rem;
display: block;
margin: auto;
width: 350px;
height: 300px;
}
.profile-image img{
width: 60%;
height: 100%;
border: 5px solid white;
border-radius: 30%;
margin-left: 30px;
}
.name{
font-size: 1.2rem;
font-weight: 700;
text-align: center;
text-transform: uppercase;
letter-spacing: 0.02px;
padding-bottom: 0.8rem;
}
.designation{
font-size: 1rem;
text-align: center;
text-transform: uppercase;
padding-bottom: 0.5rem;
}
.description{
font-size: 0.75rem;
text-align:center;
padding: 1rem;
}
.contact-item .icon{
text-align: center;
margin-left: 1.5rem;
padding: 0.75rem;
}
.contact-item ul{
margin-top: 0.5rem;
}
.contact-item ul li{
position: relative;
list-style-type: disc;
padding: 0.2rem;
}
.contact-item ul li .icons{
color:bisque;
display:inline-block;
width: 30px;
font-size: 18px;
margin-left: 0.5rem;
}
.skill-section ul li{
list-style-type: circle;
}
.skills{
font-size: 0.75rem;
text-align:center;
text-transform: uppercase;
padding: 1rem 0.5rem ;
}
.skill-name {
font-size: 0.65rem;
font-weight: 0.65rem;
display:block;
margin: 5px;
}
.progress-bar{
height: 4px;
border: 1px white solid;
display:block;
margin: 5px;
}
.progress-bar div{
height: 100%;
background: lightgreen;
}
.right-main-content{
padding: 2rem 3rem;
}
.right-title{
text-transform: uppercase;
font-size: 1.2rem;
font-weight: 700;
padding: 0.5rem;
letter-spacing: 1px;
}
.right-main-content p{
padding: 0.5rem;
padding-bottom: 15px;
}
.education {
display:flex;
flex-direction: row;
}
.education h4{
padding: 0.5rem;
}
.expirence {
display:flex;
flex-direction: row;
flex-wrap: wrap;
}
.expirence h4{
padding: 0.5rem;
}
.year h5{
margin-left: 8px;
}
@media (max-width: 673px){
.main-content{
grid-template-columns: repeat(1, 1fr);
width: 90%;
min-height: 1000px;
}
}