From ede24107bf8eebd842a9fc548c6596cf0e08d6de Mon Sep 17 00:00:00 2001 From: Natasha Nunez <n.nunez@student.maastrichtuniversity.nl> Date: Sat, 28 Sep 2024 11:11:43 +0000 Subject: [PATCH] fix pages --- docs/.vuepress/styles/index.scss | 54 -------------------------------- 1 file changed, 54 deletions(-) diff --git a/docs/.vuepress/styles/index.scss b/docs/.vuepress/styles/index.scss index 650953e..ca4e659 100644 --- a/docs/.vuepress/styles/index.scss +++ b/docs/.vuepress/styles/index.scss @@ -39,57 +39,3 @@ width: 50px; /* Adjust based on your image size */ height: 50px; /* Adjust based on your image size */ } -/* Sidebar Styling */ -.theme-hope-sidebar { - position: fixed; /* Fixed position to stay within viewport */ - top: 1rem; /* Space from the top of the viewport */ - right: 1rem; /* Adjust as needed */ - height: calc(100vh - 2rem); /* Full viewport height minus some margin */ - overflow-y: auto; /* Enable vertical scrolling */ - width: 18rem; /* Sidebar width */ - background-color: #f9f9f9; /* Sidebar background color */ - padding: 1rem; /* Sidebar padding */ - border: 1px solid #ddd; /* Sidebar border */ - border-radius: 8px; /* Rounded corners */ - z-index: 1000; /* Ensure sidebar is above other content */ -} - -/* Sidebar Title */ -.theme-hope-sidebar::before { - content: 'On This Page'; /* Sidebar title */ - display: block; - font-size: 1.2rem; - font-weight: bold; - padding-bottom: 1rem; /* Space below title */ - border-bottom: 1px solid #ddd; /* Optional: Border under title */ - margin-bottom: 1rem; /* Space below title */ -} - -/* Links in the sidebar */ -.theme-hope-sidebar a { - color: #333; /* Link color */ - text-decoration: none; /* No underline */ - display: block; - margin: 0.5rem 0; /* Space between links */ -} - -.theme-hope-sidebar a:hover { - text-decoration: underline; /* Underline on hover */ -} - -/* Main Content Area */ -.theme-hope-main { - flex-grow: 1; /* Main content grows to fill remaining space */ - margin-right: 20rem; /* Space for sidebar */ -} - -/* Footer Styling */ -.footer { - width: 100%; - background-color: #333; - color: #fff; - text-align: center; - padding: 10px; - position: relative; /* Change to relative if sidebar overlaps */ - bottom: 0; -} \ No newline at end of file -- GitLab