1
0
mirror of https://github.com/thangisme/notes.git synced 2025-01-02 20:16:35 -05:00

Convert colors to vars

This commit is contained in:
Patrick Marsceill 2018-11-15 15:12:12 -05:00
parent 94d640b80e
commit 9c70c7f081
No known key found for this signature in database
GPG Key ID: 286B93882D828F40
11 changed files with 49 additions and 20 deletions

View File

@ -30,3 +30,5 @@ exclude: ["node_modules/", "*.gemspec", "*.gem", "Gemfile", "Gemfile.lock", "pac
aux_links:
"Just the Docs on GitHub":
- "//github.com/pmarsceill/just-the-docs"
color_scheme: "dark"

View File

@ -16,6 +16,7 @@ body {
font-size: inherit;
line-height: $body-line-height;
color: $body-text-color;
background-color: $body-background-color;
}
p,
@ -64,7 +65,7 @@ a {
a:not([class]) {
text-decoration: none;
background-image: linear-gradient($grey-lt-100 0%, $grey-lt-100 100%);
background-image: linear-gradient($border-color 0%, $border-color 100%);
background-repeat: repeat-x;
background-position: 0 100%;
background-size: 1px 1px;
@ -99,6 +100,6 @@ hr {
height: 1px;
padding: 0;
margin: $sp-6 0;
background-color: $grey-lt-100;
background-color: $border-color;
border: 0;
}

View File

@ -75,7 +75,7 @@
}
.btn-outline {
color: $blue-100;
color: $link-color;
background: transparent;
box-shadow: inset 0 0 0 2px $grey-lt-300;
@ -101,6 +101,10 @@
}
}
.btn-primary {
@include btn-color($white, $btn-primary-color);
}
.btn-purple {
@include btn-color($white, $purple-100);
}

View File

@ -6,7 +6,7 @@
code {
padding: 0.2em 0.15em;
font-weight: 400;
background-color: $grey-lt-000;
background-color: $code-background-color;
border: $border $border-color;
border-radius: $border-radius;
}
@ -14,7 +14,7 @@ code {
.highlight {
padding: $sp-3;
margin-bottom: 0;
background-color: $grey-lt-000;
background-color: $code-background-color;
code {
padding: 0;

View File

@ -21,7 +21,7 @@
flex-wrap: wrap;
padding-top: $gutter-spacing-sm;
padding-bottom: $gutter-spacing-sm;
background-color: $grey-lt-000;
background-color: $sidebar-color;
@include mq(md) {
flex-wrap: nowrap;
@ -75,10 +75,10 @@
}
.page-header {
background-color: $grey-lt-000;
background-color: $sidebar-color;
@include mq(md) {
background-color: $white;
background-color: $body-background-color;
border-bottom: $border $border-color;
}
@ -137,6 +137,6 @@ body {
position: static;
align-self: flex-end;
justify-self: end;
background-color: $grey-lt-000;
background-color: $sidebar-color;
}
}

View File

@ -5,7 +5,8 @@
.site-title {
display: block;
flex: 1 1 auto;
background-color: $grey-lt-000;
color: $body-heading-color;
background-color: $sidebar-color;
@include mq(md) {
position: absolute;
@ -34,21 +35,23 @@
list-style: none;
.navigation-list-link {
color: $grey-dk-100;
color: $nav-child-link-color;
}
.navigation-list-item {
position: relative;
&::before {
position: absolute;
margin-top: 0.3em;
margin-left: -0.8em;
color: $grey-dk-000;
color: $border-color;
content: "- ";
}
&.active {
&::before {
color: $grey-dk-100;
color: $body-text-color;
}
}
}
@ -70,7 +73,7 @@
&.active {
font-weight: 600;
color: $grey-dk-200;
color: $body-heading-color;
text-decoration: none;
}
}

View File

@ -46,13 +46,14 @@
.search-input-wrap {
display: flex;
background-color: $white;
background-color: $body-background-color;
}
.search-input {
width: 100%;
padding-top: $sp-1;
padding-bottom: $sp-1;
background-color: $body-background-color;
border-top: 0;
border-right: 0;
border-bottom: 0;

View File

@ -17,6 +17,7 @@ $white: #fff !default;
$grey-dk-000: #959396 !default;
$grey-dk-100: #5c5962 !default;
$grey-dk-200: #44434d !default;
$grey-dk-250: #302d36 !default;
$grey-dk-300: #27262b !default;
$grey-lt-000: #f5f6fa !default;
@ -49,9 +50,15 @@ $red-100: #f96e65 !default;
$red-200: #e94c4c !default;
$red-300: #dd2e2e !default;
$body-background-color: $white !default;
$sidebar-color: $grey-lt-000 !default;
$code-background-color: $grey-lt-000 !default;
$body-text-color: $grey-dk-100 !default;
$body-heading-color: $grey-dk-300 !default;
$nav-child-link-color: $grey-dk-100 !default;
$link-color: $purple-000 !default;
$btn-primary-color: $purple-100 !default;
//
// Media queries in pixels

View File

@ -21,11 +21,12 @@ th,
td {
@include fs-3;
min-width: 120px;
background-color: lighten($body-background-color, 1%);
padding-top: $sp-2;
padding-right: $sp-3;
padding-bottom: $sp-2;
padding-left: $sp-3;
border-bottom: $border $grey-lt-000;
border-bottom: $border rgba($border-color, 0.5);
border-left: $border $border-color;
&:first-of-type {

View File

@ -4,7 +4,7 @@
---
//
// Import dependancies
// Import external dependencies
//
@import "./normalize.scss/normalize.scss";
@ -16,8 +16,13 @@
// Support
@import "./support/support";
// Custom overrides
@import "./custom/custom";
//
// Import custom color scheme scss
//
{% if site.color_scheme == "dark" %}
@import "./color_schemes/dark.scss";
{% endif %}
// Modules
@import "./base";
@ -31,3 +36,8 @@
@import "./tables";
@import "./code";
@import "./utilities/utilities";
//
// Import custom overrides
//
@import "./custom/custom";

View File

@ -12,7 +12,7 @@ permalink: /
Just the Docs gives your documentation a jumpstart with a responsive Jekyll theme that is easily customizable and hosted on GitHub pages.
{: .fs-6 .fw-300 }
[Get started now](#getting-started){: .btn .btn-purple .fs-5 .mb-4 .mb-md-0 .mr-2 } [View it on GitHub](https://github.com/pmarsceill/just-the-docs){: .btn .fs-5 }
[Get started now](#getting-started){: .btn .btn-primary .fs-5 .mb-4 .mb-md-0 .mr-2 } [View it on GitHub](https://github.com/pmarsceill/just-the-docs){: .btn .fs-5 }
---