75 lines
1.1 KiB
CSS
75 lines
1.1 KiB
CSS
|
/* Reset some default browser styles */
|
||
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
line-height: 1.6;
|
||
|
background-color: #f4f4f4;
|
||
|
color: #333;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
/* Header Styling */
|
||
|
header {
|
||
|
background-color: #4CAF50;
|
||
|
color: white;
|
||
|
padding: 20px;
|
||
|
text-align: center;
|
||
|
border-radius: 8px;
|
||
|
}
|
||
|
|
||
|
header h1 {
|
||
|
font-size: 2.5em;
|
||
|
}
|
||
|
|
||
|
header p {
|
||
|
font-size: 1.2em;
|
||
|
}
|
||
|
|
||
|
/* Section for resume links */
|
||
|
.resume-links {
|
||
|
margin-top: 40px;
|
||
|
}
|
||
|
|
||
|
.resume-links h2 {
|
||
|
font-size: 2em;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.resume-links ul {
|
||
|
list-style: none;
|
||
|
padding-left: 0;
|
||
|
}
|
||
|
|
||
|
.resume-links li {
|
||
|
margin: 10px 0;
|
||
|
}
|
||
|
|
||
|
.resume-link {
|
||
|
text-decoration: none;
|
||
|
font-size: 1.1em;
|
||
|
color: #4CAF50;
|
||
|
border: 2px solid #4CAF50;
|
||
|
padding: 10px 15px;
|
||
|
border-radius: 5px;
|
||
|
display: inline-block;
|
||
|
transition: all 0.3s ease;
|
||
|
}
|
||
|
|
||
|
.resume-link:hover {
|
||
|
background-color: #4CAF50;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
/* Footer Styling */
|
||
|
footer {
|
||
|
margin-top: 50px;
|
||
|
text-align: center;
|
||
|
font-size: 1em;
|
||
|
color: #777;
|
||
|
}
|