-
-
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.
Renamed css, created buttons for previous and next page
Also changed the color gradient of topics heading
- Loading branch information
Showing
10 changed files
with
224 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
/*for navigation links in the bottom of the page*/ | ||
.navigation { | ||
display: flex; | ||
justify-content: space-between; | ||
margin-top: 2rem; | ||
} | ||
|
||
.index { | ||
justify-content: flex-end; /* Align items to the right */ | ||
margin-right: 0; | ||
} | ||
|
||
.nav-link { | ||
text-decoration: none; | ||
padding: 0.7rem; | ||
border: 3px solid; | ||
border-radius: 23px; | ||
border-color: #3B3B3B; | ||
width: 48%; | ||
} | ||
[data-md-color-scheme="default"] .nav-link { /* Light mode color */ | ||
border-color: #C5C5C5; | ||
} | ||
|
||
.nav-link:hover { | ||
border-color: white; | ||
} | ||
[data-md-color-scheme="default"] .nav-link:hover { /* Light mode color */ | ||
border-color: black; | ||
} | ||
|
||
.index-right { | ||
margin-right: 0; | ||
} | ||
|
||
.nav-content { | ||
display: flex; | ||
align-items: center; | ||
} | ||
|
||
.nav-text { | ||
display: flex; | ||
flex-direction: column; /* or use block display on spans */ | ||
color: white; | ||
} | ||
[data-md-color-scheme="default"] .nav-text { /* Light mode color */ | ||
color: black; | ||
} | ||
|
||
.nav-link:hover .nav-text span{ | ||
color: #ED7377; | ||
} | ||
[data-md-color-scheme="default"] .nav-link:hover .nav-text span{ /* Light mode color */ | ||
color: #E32227; | ||
} | ||
|
||
.left { | ||
align-items: flex-start; /* Align items to the left */ | ||
text-align: left; /* Optional: aligns text to the left */ | ||
} | ||
|
||
.right { | ||
justify-content: flex-end; /* Align items to the right */ | ||
width: 100%; /* Ensure the container takes the full width */ | ||
text-align: right; /* Align text to the right */ | ||
} | ||
|
||
.left .label, | ||
.left .page-name { | ||
display: block; | ||
padding-left: 22px; | ||
} | ||
|
||
.right .label, | ||
.right .page-name { | ||
display: block; /* Force items onto separate lines */ | ||
padding-right: 20px; | ||
|
||
} | ||
|
||
/*Font sizes*/ | ||
.arrow { | ||
font-size: 1.2rem; | ||
} | ||
|
||
.label { | ||
font-size: 0.85rem; | ||
} | ||
|
||
.page-name { | ||
font-size: 1.2rem; | ||
} |
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
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