-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresmu.css
More file actions
144 lines (127 loc) · 2.56 KB
/
Copy pathresmu.css
File metadata and controls
144 lines (127 loc) · 2.56 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background: #f0f2f5;
display: flex;
justify-content: center;
padding: 40px 0;
}
.resume-container {
width: 900px;
background: #fff;
display: flex;
box-shadow: 0 10px 30px rgba(0,0,0,0.1);
border-radius: 8px;
overflow: hidden;
}
/* Sidebar Styling */
.sidebar {
width: 35%;
background: #2c3e50;
color: #fff;
padding: 40px 30px;
}
.profile-section {
text-align: center;
margin-bottom: 30px;
}
/* New Profile Picture Styling */
.profile-img-container {
width: 130px;
height: 130px;
border-radius: 50%;
margin: 0 auto 15px;
border: 4px solid #3498db;
overflow: hidden; /* Photo bahar nahi jayegi */
background: #34495e;
display: flex;
align-items: center;
justify-content: center;
}
.profile-pic {
width: 100%;
height: 100%;
object-fit: cover; /* Photo crop ho kar fit ho jayegi */
}
.sidebar h1 {
font-size: 1.4rem;
margin-bottom: 5px;
text-transform: uppercase;
}
.subtitle { font-size: 0.85rem;
color: #3498db;
font-weight: 600;
}
.side-title {
font-size: 1rem;
text-transform: uppercase;
border-bottom: 2px solid #3498db;
margin: 25px 0 12px;
padding-bottom: 5px;
}
.contact-info p, .skills-section li, .languages p {
font-size: 0.85rem;
margin-bottom: 10px;
color: #bdc3c7;
list-style: none;
}
.contact-info i {
color: #3498db;
margin-right: 10px;
width: 15px;
}
/* Main Content Styling */
.main-content {
width: 65%;
padding: 40px 50px;
}
#whatsap {
text-decoration: none;
color:#bdc3c7 ;
}
.main-title {
font-size: 1.3rem;
color: #2c3e50;
border-bottom: 2px solid #f0f2f5;
margin-bottom: 20px;
padding-bottom: 5px;
display: flex;
align-items: center;
}
.main-title i {
margin-right: 10px;
color: #3498db;
}
section {
margin-bottom: 30px;
}
.exp-item {
margin-bottom: 20px;
}
.exp-header {
display: flex;
justify-content: space-between;
}
.company {
color: #3498db;
font-weight: 600;
margin-bottom: 5px;
}
ul {
margin-left: 18px;
}
ul li {
font-size: 0.9rem;
margin-bottom: 5px;
color: #555;
}
@media (max-width: 800px) {
.resume-container { flex-direction: column;
width: 95%; }
.sidebar, .main-content { width: 100%; }
}