mirror of
https://github.com/ION606/ion606.github.io.git
synced 2026-05-14 22:16:59 +00:00
updated resume
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
#page-menu {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
background-color: #291b3e;
|
||||
/* Dark purple background color */
|
||||
padding: 10px 0;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
#page-menu ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#page-menu ul li {
|
||||
display: inline-block;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
#page-menu ul li:last-child {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
#page-menu ul li a {
|
||||
color: #eee;
|
||||
/* Light text color */
|
||||
text-decoration: none;
|
||||
padding: 5px 10px;
|
||||
border-radius: 5px;
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
#page-menu ul li a:hover {
|
||||
background-color: #3b2c57;
|
||||
/* Darker purple color on hover */
|
||||
}
|
||||
|
||||
.hidden {
|
||||
display: none;
|
||||
}
|
||||
Reference in New Issue
Block a user