-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
197 lines (167 loc) · 3.62 KB
/
index.css
File metadata and controls
197 lines (167 loc) · 3.62 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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
/* Reset some default styles */
body, ul {
margin: 0;
padding: 0;
list-style: none;
}
/* Define the central color theme */
body {
background: #f5f5f5;
font-family: Arial, sans-serif;
color: #333;
}
/* Style the header and navigation */
header {
background: #333;
color: white;
padding: 20px 0;
text-align: center;
}
nav ul {
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 20px;
}
nav ul li a {
text-decoration: none;
color: white;
font-weight: bold;
transition: color 0.3s;
}
nav ul li a:hover {
color: #6A0DAD; /* Highlight color */
}
/* Style the video box */
.video-box {
position: relative;
width: 80%; /* Adjust the width as needed */
margin: 0 auto; /* Center the video horizontally */
padding-bottom: 56.25%; /* 16:9 aspect ratio for the video */
overflow: hidden;
margin-bottom: 0px; /* Adjust the spacing between the video and profile pic */
}
.video-box iframe {
position: absolute;
top: 200px;
left: 410px;
width: 50%;
height: 50%;
}
/* Style the profile picture within the Intro section */
.profile-pic {
text-align: center;
margin-bottom: 20px; /* Add some spacing below the profile picture */
}
.profile-pic img {
width: 300px; /* Adjust the width as needed */
height: 200px; /* Adjust the height as needed */
border-radius: 30%; /* Rounded shape for the profile picture */
}
/* Style the introduction section */
#intro {
background-image: url('../images/bgwallpaper.jpg'); /* Add your background image path */
background-size: cover;
background-position: center;
text-align: center;
color: #000000;
padding: 150px 0;
height: 100vh; /* Full viewport height */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.intro-content {
background: rgba(255, 255, 255, 0.322);
padding: 20px;
border-radius: 5px;
text-align: center;
}
.social-icons {
margin-top: 20px;
}
.social-icons a {
text-decoration: none;
color: #ffcc5f; /* Social icon color */
font-size: 24px;
margin-right: 20px;
transition: color 0.3s;
}
.social-icons a:hover {
color: #333; /* Hover color */
}
/* Style headings and paragraphs */
h1, h2 {
font-size: 36px;
margin-bottom: 20px;
color: #000000;
}
/* Style sections */
section {
padding: 80px 0;
text-align: center;
background: white;
margin-bottom: 40px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* Style the Portfolio section */
#portfolio {
background: white;
padding: 40px 0;
}
.portfolio-section {
max-width: 800px;
margin: 0 auto;
}
.portfolio-item {
margin-bottom: 40px;
}
/* Style the headings for each section */
.portfolio-item h3 {
font-size: 24px;
color: #333;
margin-bottom: 10px;
}
/* Style experience and activity sections */
.experience, .activity {
margin-top: 10px;
}
.experience h4, .activity h4 {
font-size: 18px;
margin-bottom: 5px;
}
/* Style lists inside experience and activity sections */
.experience ul, .activity ul {
list-style: disc;
margin-left: 20px;
}
/* Style award sections */
.award {
margin-top: 10px;
}
.award h4 {
font-size: 18px;
color: #333;
margin-bottom: 5px;
}
/* Style lists inside award sections */
.award ul {
list-style: disc;
margin-left: 20px;
}
/* Style the skills and interests section */
.skills-interests {
margin-top: 10px;
font-size: 16px;
color: #666;
}
/* Style the footer */
footer {
background: #333;
color: white;
padding: 20px 0;
text-align: center;
}