-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
233 lines (202 loc) · 5.09 KB
/
Copy pathstyles.css
File metadata and controls
233 lines (202 loc) · 5.09 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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
body, html {
margin: 0;
padding: 0;
font-family: 'Quicksand', sans-serif;
background-color: #F0F0F0; /* Light Gray for a fresh feel */
color: #fffcfc; /* Dark Slate Gray for text, improving readability */
position: relative;
}
#particles-js {
position: absolute;
width: 100%;
height: 100%;
background-color: #79056a; /* Sea Green for a vibrant background */
top: 0;
left: 0;
z-index: 0;
}
header {
background-color: #FFFFFF; /* White for the navigation bar to keep it clean and simple */
color: #01060c; /* Dark Slate Gray for text to stand out on the light background */
text-align: center;
padding: 1rem 0;
}
header nav ul {
list-style-type: none;
padding: 0;
}
header nav ul li {
display: inline;
margin-right: 20px;
}
header nav ul li a {
color: #cd70d0; /* Sea Green for links to match the vibrant theme */
text-decoration: none;
font-weight: 500;
}
section {
padding: 50px 20px;
text-align: center;
}
.carousel-container {
position: relative;
margin: auto;
overflow: hidden;
width: 80%;
}
.carousel-slide {
display: flex;
justify-content: center;
align-items: center;
min-height: 300px;
}
.carousel-slide img {
width: 100%;
vertical-align: middle;
}
button.prev, button.next {
position: absolute;
top: 44%;
transform: translateY(-50%);
background-color: #F0F0F0; /* Light Gray for buttons to be subtle yet visible */
color: #79056a; /* Dark Slate Gray for button text */
border: none;
cursor: pointer;
padding: 10px;
margin: 0 10px;
}
button.prev { left: 240px; }
button.next { right: 240px; }
footer {
background-color: #FFFFFF; /* Pink for footer to match the overall vibrant theme */
color: #79056a; /* White for text to ensure it stands out against the footer background */
text-align: center;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
}
main, header, footer {
position: relative;
z-index: 1;
}
.header-image {
display: block;
max-width: 150px; /* Adjust the size as necessary */
height: auto; /* Maintains the aspect ratio */
margin: 0 auto 10px; /* Centers the image and adds space below */
border-radius: 70%; /* Optional: makes the image round */
}
#timeline-container {
position: relative;
padding-left: 30px; /* Increase padding to accommodate the year */
}
.timeline-block {
position: relative;
display: flex;
align-items: center;
margin-bottom: 20px;
}
.year-label {
width: 50px;
flex-shrink: 0;
margin-right: 35px; /* Space between the year and the text */
font-weight: bold; /* Optional: Make the year stand out */
}
.content {
flex-grow: 1; /* Allow the content to take up remaining space */
}
.timeline-block::before {
content: '';
position: absolute;
left: -30px; /* Position the bullets to the left of the content */
top: 50%;
transform: translateY(-50%);
height: 10px;
width: 10px;
background-color: #f9f8f8;
border-radius: 50%;
border: 2px solid #79056a;
}
.timeline-block.visible {
opacity: 1;
transform: translateX(0);
transition: all 1s ease-out;
}
button.prev span, button.next span {
display: block; /* Makes the span take up the full width of the button */
font-size: 12px; /* Smaller font size for the text */
color: #555; /* Slightly different text color to differentiate from the arrow */
}
.skills-grid {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
padding: 20px;
}
.category {
flex-basis: 20%; /* Adjust based on your layout preference */
box-shadow: 0 0 10px rgba(0,0,0,0.1);
margin: 10px;
padding: 20px;
background: #f9f9f9;
}
.category h3 {
color: #333;
text-align: center;
}
.skill {
background: #79056a;
margin-top: 10px;
padding: 10px;
text-align: center;
border-radius: 5px;
font-weight: bold;
}
#contact a {
color: white; /* Sets the text color to white */
text-decoration: none; /* Optional: removes the underline from links */
}
#contact a:hover {
color: #ccc; /* Light grey color on hover for better user experience */
text-decoration: underline; /* Optional: adds an underline on hover */
}
#animated-heading {
font-size: 24px;
font-weight: bold;
color: #333;
min-height: 30px; /* Ensure the container doesn't collapse */
opacity: 1;
transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
visibility: visible; /* Ensure the text is visible by default */
}
#animated-heading:empty {
visibility: hidden;
}
#contact form {
max-width: 500px;
margin: auto;
padding: 20px;
background: #f4f4f4;
border-radius: 8px;
}
#contact input, #contact textarea {
width: 100%;
padding: 5px;
margin-top: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
#contact button {
width: 100%;
padding: 10px;
background-color: #79056a;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
margin-top: 10px;
}
#contact button:hover {
background-color: #79056a;
}