-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #67 from Code-To-Give-Team14/frontend/split-admin-…
…user update the admin and user page: user header + admin siderbar, login l…
- Loading branch information
Showing
6 changed files
with
197 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/* ===== Scrollbar CSS ===== */ | ||
/* Firefox */ | ||
* { | ||
scrollbar-width: auto; | ||
scrollbar-color: #b5b5b5 #ffffff; | ||
} | ||
|
||
/* Chrome, Edge, and Safari */ | ||
*::-webkit-scrollbar { | ||
width: 16px; | ||
} | ||
|
||
*::-webkit-scrollbar-track { | ||
background: #ffffff; | ||
} | ||
|
||
*::-webkit-scrollbar-thumb { | ||
background-color: #b5b5b5; | ||
border-radius: 10px; | ||
border: 3px solid #ffffff; | ||
} | ||
|
||
*::-webkit-scrollbar-thumb:hover { | ||
background-color: #a1a1a1; | ||
/* New hover color close to #b5b5b5 */ | ||
} | ||
|
||
*::-webkit-scrollbar-thumb:active { | ||
background-color: #959595; | ||
/* New active color close to #b5b5b5 */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ body { | |
rgba(240, 226, 255, 0.7) 100% | ||
); | ||
color: #4b4b4b; | ||
padding-top: 100px; | ||
} | ||
|
||
.community-page { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +0,0 @@ | ||
nav { | ||
font-family: "Open Sans", sans-serif; | ||
background-color: white; | ||
padding: 10px 20px; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
position: fixed; /* Fixes the navbar to the top */ | ||
top: 0; /* Aligns the navbar to the top of the page */ | ||
left: 0; /* Ensures the navbar stretches across the full width of the viewport */ | ||
width: 100%; /* Ensures the navbar stretches across the full width of the viewport */ | ||
z-index: 1000; /* Keeps the navbar above other content */ | ||
} | ||
|
||
.nav-logo { | ||
height: 60px; | ||
margin-right: 20px; | ||
} | ||
|
||
nav ul { | ||
list-style-type: none; | ||
display: flex; | ||
justify-content: space-around; | ||
padding: 0; | ||
margin: 0; | ||
margin-left: auto; | ||
} | ||
|
||
nav li { | ||
margin: 0 10px; | ||
} | ||
|
||
.nav-link { | ||
color: #666666; | ||
text-decoration: none; | ||
padding: 10px 20px; | ||
transition: color 0.2s; | ||
font-size: 15px; | ||
font-weight: 600; | ||
} | ||
|
||
.nav-link:hover { | ||
color: #00a9ff; | ||
} | ||