-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Made style.css independent of actual style sheets
Cleaner, used site.scss so style.css isn't modified every SCSS compile.
- Loading branch information
Showing
5 changed files
with
61 additions
and
12,087 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,3 +1,4 @@ | ||
*.min.css | ||
*.map | ||
scss/*.css | ||
site.css |
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 |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/*-------------------------------------------------------------- | ||
# Site CSS includes UIKit 3 | ||
# Reference https://getuikit.com/docs/sass | ||
--------------------------------------------------------------*/ | ||
|
||
// 1. Your custom variables and variable overwrites. | ||
@import "scss/_import-variables.scss"; | ||
|
||
// 2. Import default variables and available mixins. | ||
@import "lib/uikit/src/scss/variables.scss"; | ||
@import "lib/uikit/src/scss/mixins.scss"; | ||
|
||
// 3. Your custom mixin overwrites. | ||
@import "scss/_import-mixins"; | ||
|
||
// 4. Import UIkit | ||
@import "lib/uikit/src/scss/uikit.scss"; | ||
|
||
// 5. Quick Inline Hacks | ||
|
||
/* | ||
Text meant only for screen readers. | ||
@see https://make.wordpress.org/accessibility/handbook/markup/the-css-class-screen-reader-text/ | ||
*/ | ||
.screen-reader-text { | ||
border: 0; | ||
clip: rect(1px, 1px, 1px, 1px); | ||
clip-path: inset(50%); | ||
height: 1px; | ||
margin: -1px; | ||
overflow: hidden; | ||
padding: 0; | ||
position: absolute; | ||
width: 1px; | ||
word-wrap: normal !important; | ||
|
||
&:focus { | ||
background-color: #eee; | ||
clip: auto !important; | ||
clip-path: none; | ||
color: #444; | ||
display: block; | ||
font-size: 1em; | ||
height: auto; | ||
left: 5px; | ||
line-height: normal; | ||
padding: 15px 23px 14px; | ||
text-decoration: none; | ||
top: 5px; | ||
width: auto; | ||
z-index: 100000; /* Above WP toolbar. */ | ||
} | ||
} |
Oops, something went wrong.