mirror of
https://github.com/CoderSherlock/CoderSherlock.github.io.git
synced 2026-06-13 08:08:10 -07:00
b8ee3904d2
* Add xv6 debug * Fix paper links in about me page
43 lines
1.1 KiB
SCSS
Executable File
43 lines
1.1 KiB
SCSS
Executable File
---
|
|
# Only the main Sass file needs front matter (the dashes are enough)
|
|
---
|
|
@charset "utf-8";
|
|
|
|
$base-font-family: "Arial";// "Times New Roman", "DejaVu Sans Mono", "PingFang SC", "DejaVu Sans", "Open Sans", "Helvetica Neue", Arial, "Noto Sans CJK SC", "Hiragino Sans GB", "微软雅黑", Helvetica, sans-serif;
|
|
$base-font-size: 15px;
|
|
$small-font-size: $base-font-size;
|
|
$base-line-height: 1.35;
|
|
|
|
$code-font-family: "Courier New"; //Menlo, Monaco, Consolas, "DejaVu Sans Mono", "Liberation Mono", "文泉驿等宽微米黑", "Courier New", Courier, SimSun, monospace;
|
|
$code-font-size: 12px;
|
|
|
|
// Width of the content area
|
|
$content-width: 800px;
|
|
|
|
$on-palm: 600px;
|
|
$on-laptop: 800px;
|
|
|
|
$color-link: rgb(0, 0, 0);
|
|
$color-link-hover: rgb(0, 35, 53);
|
|
|
|
$header-bg: rgba(0, 0, 0, 1);
|
|
$header-bg-hover: rgb(0, 0, 0);
|
|
$header-link: rgb(255, 255, 255);
|
|
$header-fg: rgb(255, 255, 255);
|
|
|
|
@mixin media-query($device) {
|
|
@media screen and (max-width: $device) {
|
|
@content;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
// Import partials from `sass_dir` (defaults to `_sass`)
|
|
@import
|
|
"base",
|
|
"layout",
|
|
"syntax-highlighting",
|
|
"easybook"
|
|
;
|