generated from kevinlin1/just-the-class
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dcf087d
commit bd96b12
Showing
7 changed files
with
51 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -172,6 +172,7 @@ timezone: America/Los_Angeles | |
include: | ||
- LICENSE | ||
- .htaccess | ||
- robots.txt | ||
|
||
exclude: | ||
- .sass-cache/ | ||
|
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
<!-- This file adds links at the bottom of the sidebar on the left. --> | ||
|
||
{% if site.class_archive_path %} | ||
<footer class="site-footer"> | ||
<section class="site-footer" aria-label="Footer: site archive"> | ||
<a href="{{ site.class_archive_path }}" | ||
target="_blank" rel="noopener nofollow">View all course offerings | ||
<i class="fa-solid fa-external-link" aria-hidden="true"></i></a> | ||
</footer> | ||
</section> | ||
{% endif %} |
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,8 +1,37 @@ | ||
// Default JTD color scheme | ||
@import "./color_schemes/dark"; | ||
|
||
// Then load general Berkeley data | ||
@import './berkeley/variables'; | ||
|
||
// Override dark-mode variables here | ||
$grey-dk-400: #0C0A0E !default; | ||
$body-background-color: $grey-dk-400; | ||
$sidebar-color: $grey-dk-400; | ||
$search-background-color: $grey-dk-400; | ||
$body-text-color: $white; | ||
|
||
$link-color: #406FFE; | ||
$hover-focus-link-color: darken($link-color, 10%); | ||
|
||
// TODO(template): We need to figure out a much better solution! | ||
// This swaps the "dk" and "lt" variants from the original JTD files. | ||
$grey-lt-000: #959396 !default; | ||
$grey-lt-100: #5c5962 !default; | ||
$grey-lt-200: #44434d !default; | ||
$grey-lt-250: #302d36 !default; | ||
$grey-lt-300: #27262b !default; | ||
|
||
$grey-dk-000: #f5f6fa !default; | ||
$grey-dk-100: #eeebee !default; | ||
$grey-dk-200: #ecebed !default; | ||
$grey-dk-300: #e6e1e8 !default; | ||
|
||
@import './berkeley/berkeley'; | ||
|
||
// Just the Class customizations are all loaded in one file. | ||
@import '../just-the-class/just-the-class'; | ||
|
||
// This is intended to be used for the footer | ||
.text-lighter { | ||
color: darken($body-text-color, 20%); | ||
} |
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