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.
* use berkeley-dark / berkeley-light as themes * dispense with dept-specific theming for now * current enable the dark theme for testing
- Loading branch information
1 parent
f89cad7
commit 07e0689
Showing
20 changed files
with
81 additions
and
32 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
// Default JTD color scheme | ||
@import "./color_schemes/dark"; | ||
|
||
@import './berkeley/variables'; | ||
@import './berkeley/berkeley'; | ||
|
||
// Just the Class customizations are all loaded in one file. | ||
@import '../just-the-class/just-the-class'; |
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,5 @@ | ||
@import './berkeley/variables'; | ||
@import './berkeley/berkeley'; | ||
|
||
// Just the Class customizations are all loaded in one file. | ||
@import '../just-the-class/just-the-class'; |
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,35 @@ | ||
// This config applies to all berkeley courses. | ||
// It is loaded before all Just-the-class customizations | ||
|
||
// h1 { | ||
// font-family: serif; | ||
// } | ||
|
||
// Override default JTD CSS for larger/more accessibile fonts. | ||
html { | ||
@include fs-3; | ||
} | ||
|
||
body { | ||
font-family: $body-font-family; | ||
font-size: inherit; | ||
line-height: $body-line-height; | ||
color: $body-text-color; | ||
background-color: $body-background-color; | ||
overflow-wrap: break-word; | ||
} | ||
|
||
// Link Colors | ||
a, | ||
.main-content .anchor-heading svg { | ||
color: $link-color; | ||
|
||
&:hover, | ||
&:focus { | ||
color: $hover-focus-link-color; | ||
} | ||
} | ||
|
||
a:not([class]):hover { | ||
text-decoration-color: lighten($link-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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Common Berkeley Variables. | ||
// This file is explicitly included before berkeley.scss in _includes/css/custom | ||
|
||
$content-width: 1200px; | ||
|
||
// Typography | ||
// $body-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; | ||
|
||
// Colors | ||
$link-color: $blue-100; | ||
$hover-focus-link-color: darken($link-color, 0.3); | ||
|
||
// Layout | ||
$gutter-spacing: $sp-6; | ||
$gutter-spacing-sm: $sp-4; | ||
$nav-width: 256px; | ||
|
||
// Components | ||
$box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 4px 14px rgba(0, 0, 0, 0.05); | ||
$module-date-color: $link-color; | ||
$staffer-image-size: 100px; |
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,3 @@ | ||
// Use this file to customize SASS variables. | ||
// You will likely want to review the Jst the Docs CSS | ||
// This file is loaded *early* in the SASS compilation process. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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,4 @@ | ||
--- | ||
--- | ||
|
||
{% include css/just-the-docs.scss.liquid color_scheme="berkeley-dark" %} |
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,4 @@ | ||
--- | ||
--- | ||
|
||
{% include css/just-the-docs.scss.liquid color_scheme="berkeley-light" %} |