updated to reflect changed structure. also checking in html/css

This commit is contained in:
2025-08-08 09:25:25 -05:00
parent 7b97c31cf4
commit 8b1cd626db
3 changed files with 121 additions and 1 deletions

74
RenderedAssets/styles.css Executable file
View File

@@ -0,0 +1,74 @@
/* 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;
}