-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated _s defaults so they're not overriding bootstrap so much
- Loading branch information
Apple
authored and
Apple
committed
Nov 13, 2024
1 parent
372d5b3
commit 2eb0169
Showing
9 changed files
with
26 additions
and
28 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 |
---|---|---|
@@ -1,20 +1,20 @@ | ||
$color__background-body: #fff; | ||
$color__background-screen: #f1f1f1; | ||
$color__background-hr: #ccc; | ||
$color__background-button: #e6e6e6; | ||
$color__background-body: $body-bg; | ||
$color__background-screen: $body-br; | ||
$color__background-hr: $primary; | ||
$color__background-button: $primary; | ||
$color__background-pre: #eee; | ||
$color__background-ins: #fff9c0; | ||
|
||
$color__text-screen: #21759b; | ||
$color__text-input: #666; | ||
$color__text-input-focus: #111; | ||
$color__link: #4169e1; //royalblue | ||
$color__link-visited: #800080; //purple | ||
$color__link-hover: #191970; //midnightblue | ||
$color__text-main: #404040; | ||
$color__text-screen: $body-color; | ||
$color__text-input: $body-color; | ||
$color__text-input-focus: $body-color; | ||
$color__link: $primary; //royalblue | ||
$color__link-visited: $primary; //purple | ||
$color__link-hover: $primary; //midnightblue | ||
$color__text-main: $body-color; | ||
|
||
$color__border-button: #ccc #ccc #bbb; | ||
$color__border-button-hover: #ccc #bbb #aaa; | ||
$color__border-button-focus: #aaa #bbb #bbb; | ||
$color__border-input: #ccc; | ||
$color__border-abbr: #666; | ||
$color__border-button: $primary; | ||
$color__border-button-hover: $primary; | ||
$color__border-button-focus: $primary; | ||
$color__border-input: $primary; | ||
$color__border-abbr: $primary; |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
// stylelint-disable value-keyword-case | ||
$font__main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; | ||
$font__main: $font-family-sans-serif; | ||
// stylelint-enable value-keyword-case | ||
$font__code: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace; | ||
$font__pre: "Courier 10 Pitch", courier, monospace; | ||
$font__line-height-body: 1.5; | ||
$font__line-height-body: $line-height-base; | ||
$font__line-height-pre: 1.6; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ a { | |
} | ||
|
||
&:focus { | ||
outline: thin dotted; | ||
outline: 0; | ||
} | ||
|
||
&:hover, | ||
|
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
p { | ||
margin-bottom: 1.5em; | ||
margin-bottom: 0; | ||
} | ||
|
||
dfn, | ||
|
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
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
.widget { | ||
margin: 0 0 1.5em; | ||
margin: 0; | ||
|
||
// Make sure select elements fit in widgets. | ||
select { | ||
|
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