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

Update file layout.html

parent f289ce1c
No related branches found
No related tags found
No related merge requests found
...@@ -48,29 +48,33 @@ ...@@ -48,29 +48,33 @@
pointer-events: none; pointer-events: none;
} }
.sidebar { .sidebar {
position: fixed; position: fixed;
left: 5px; left: 5px;
top: 280px; top: 280px;
width: 160px; width: 160px;
height: 40%; height: 40%;
background-color: #ffffff; background-color: #ffffff;
padding: 20px; padding: 20px;
box-shadow: 2px 0 5px rgba(0,0,0,0.1); box-shadow: 2px 0 5px rgba(0,0,0,0.1);
border-radius: 20px; border-radius: 20px;
} }
.sidebar ul { .sidebar ul {
list-style: none; list-style: none;
padding: 0; padding: 0;
} }
.sidebar ul li a { .sidebar ul li a {
display: block; display: block;
padding: 10px; padding: 10px;
color: hsl(17, 100%, 50%); color: #fa8072; /* Changed from hsl(17, 100%, 50%) to #fa8072 */
text-decoration: none; text-decoration: none;
transition: all 0.3s ease; /* Added transition for smooth effect */
} }
.sidebar ul li a:hover { .sidebar ul li a:hover {
background-color: #e9ecef; background-color: #fa8072; /* Changed from #e9ecef to #fa8072 */
border-radius: 20px; border-radius: 20px;
color: #ffffff; /* Changed text color to white for better contrast */
transform: translateY(-3px); /* Added slight lift effect */
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