generated from nguyenngocbinh/documents
-
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
40154c1
commit 6b8c421
Showing
2 changed files
with
88 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/*-- scss:defaults --*/ | ||
|
||
@import 'https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible&display=swap'; | ||
|
||
$font-family: "Atkinson Hyperlegible", sans-serif; | ||
|
||
// Base document colors | ||
$body-bg: #181818; | ||
$body-color: white; | ||
$link-color: #75AADB; | ||
|
||
$light: #525252; | ||
|
||
// Navigation element colors | ||
$footer-bg: #181818; | ||
$navbar-bg: #303030; | ||
$sidebar-bg: #303030; | ||
|
||
// Code blocks | ||
$code-block-bg-alpha: -.8; | ||
|
||
// Bootstrap popovers | ||
$popover-bg: #242424; | ||
|
||
// Bootstrap inputs | ||
$input-bg: #242424; | ||
|
||
|
||
/*-- scss:rules --*/ | ||
|
||
.layout-example { | ||
background: $gray-700; | ||
} | ||
|
||
.render-commit-push { | ||
padding: 0.5em 0.5em 0em 3em; | ||
margin-top: 5px; | ||
margin-bottom: 5px; | ||
background: #181818 5px center/3em no-repeat; | ||
border-top: 1px solid #adadad; | ||
border-bottom: 1px solid #adadad; | ||
background-image: url("images/render-commit-push.png"); | ||
background-size: 2em; | ||
background-position: 0.5em 0.5em; | ||
} | ||
|
||
.pull { | ||
padding: 0.5em 0.5em 0em 3em; | ||
margin-top: 5px; | ||
margin-bottom: 5px; | ||
background: #181818 5px center/3em no-repeat; | ||
border-top: 1px solid #adadad; | ||
border-bottom: 1px solid #adadad; | ||
background-image: url("images/pull.png"); | ||
background-size: 2em; | ||
background-position: 0.5em 0.5em; | ||
} |
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,31 @@ | ||
/*-- scss:defaults --*/ | ||
|
||
@import 'https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible&display=swap'; | ||
|
||
$font-family: "Atkinson Hyperlegible", sans-serif; | ||
|
||
/*-- scss:rules --*/ | ||
|
||
.render-commit-push { | ||
padding: 0.5em 0.5em 0em 3em; | ||
margin-top: 5px; | ||
margin-bottom: 5px; | ||
background: #f8f8f8 5px center/3em no-repeat; | ||
border-top: 1px solid #5B888C; | ||
border-bottom: 1px solid #5B888C; | ||
background-image: url("images/render-commit-push.png"); | ||
background-size: 2em; | ||
background-position: 0.5em 0.5em; | ||
} | ||
|
||
.pull { | ||
padding: 0.5em 0.5em 0em 3em; | ||
margin-top: 5px; | ||
margin-bottom: 5px; | ||
background: #f8f8f8 5px center/3em no-repeat; | ||
border-top: 1px solid #E0A890; | ||
border-bottom: 1px solid #E0A890; | ||
background-image: url("images/pull.png"); | ||
background-size: 1em; | ||
background-position: 1em 0.5em; | ||
} |