-
-
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.
- Loading branch information
1 parent
8a9d275
commit fd46536
Showing
12 changed files
with
58 additions
and
21 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
Binary file not shown.
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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,54 @@ | ||
--- | ||
# Use a comment to ensure Jekyll reads the file to be transformed into CSS later | ||
# only main files contain this front matter, not partials. | ||
--- | ||
|
||
// | ||
// ___ | ||
// /\_ \ | ||
// _____ ___ ___\//\ \ __ | ||
// /\ '__`\ / __`\ / __`\\ \ \ /'__`\ | ||
// \ \ \_\ \/\ \_\ \/\ \_\ \\_\ \_/\ __/ | ||
// \ \ ,__/\ \____/\ \____//\____\ \____\ | ||
// \ \ \/ \/___/ \/___/ \/____/\/____/ | ||
// \ \_\ | ||
// \/_/ | ||
// | ||
// Designed, built, and released under MIT license by @mdo. Learn more at | ||
// https://github.com/poole/poole. | ||
|
||
@import "variables"; | ||
@import "base"; | ||
@import "type"; | ||
@import "code"; | ||
@import "layout"; | ||
@import "sidebar"; | ||
@import "posts"; | ||
@import "archive"; | ||
@import "home-header"; | ||
@import "pagination"; | ||
@import "message"; | ||
@import "toc"; | ||
@import "alignment"; | ||
|
||
@import "syntax-light"; | ||
@media (prefers-color-scheme: dark) { | ||
@import "syntax-dark"; | ||
} | ||
|
||
// Sass for creating the swatches | ||
.colors { | ||
display: grid; | ||
grid-template-columns: max-content 1fr; | ||
|
||
dt { | ||
width: 3rem; | ||
height: 3rem; | ||
border-radius: var(--border-radius); | ||
box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); | ||
} | ||
|
||
dd { | ||
margin-left: var(--spacer); | ||
} | ||
} |