Skip to content
Snippets Groups Projects
Commit 31a60999 authored by HouTeng Chan's avatar HouTeng Chan
Browse files

Update file layout.html

parent 1f1a3c54
No related branches found
No related tags found
No related merge requests found
...@@ -47,6 +47,7 @@ ...@@ -47,6 +47,7 @@
border-radius: 50px; border-radius: 50px;
pointer-events: none; pointer-events: none;
} }
.sidebar { .sidebar {
position: fixed; position: fixed;
left: 5px; left: 5px;
...@@ -65,16 +66,16 @@ ...@@ -65,16 +66,16 @@
.sidebar ul li a { .sidebar ul li a {
display: block; display: block;
padding: 10px; padding: 10px;
color: #fa8072; /* Changed from hsl(17, 100%, 50%) to #fa8072 */ color: #fa8072;
text-decoration: none; text-decoration: none;
transition: all 0.3s ease; /* Added transition for smooth effect */ transition: all 0.3s ease;
border-radius: 20px; /* Added border-radius here */
} }
.sidebar ul li a:hover { .sidebar ul li a:hover {
background-color: #fa8072; /* Changed from #e9ecef to #fa8072 */ background-color: #fa8072;
border-radius: 20px; color: #ffffff;
color: #ffffff; /* Changed text color to white for better contrast */ transform: translateY(-3px);
transform: translateY(-3px); /* Added slight lift effect */ box-shadow: 0 4px 8px rgba(0,0,0,0.1);
box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Added shadow for depth */
} }
.progress-container { .progress-container {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment