mirror of https://github.com/lukechilds/docs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.4 KiB
70 lines
1.4 KiB
---
|
|
# Only the main Sass file needs front matter (the dashes are enough)
|
|
---
|
|
|
|
// System fonts
|
|
@import "system-font-css/_system-font";
|
|
|
|
// Custom variables and variable overwrites.
|
|
@import "theme/variables";
|
|
|
|
// Import default variables and available mixins.
|
|
@import "uikit/variables-theme";
|
|
@import "uikit/mixins-theme";
|
|
|
|
// Custom mixin overwrites.
|
|
@import "theme/mixins";
|
|
|
|
// Import UIkit.
|
|
@import "theme/uikit";
|
|
|
|
// Other vendor styles
|
|
@import "syntax-highlighting/github";
|
|
|
|
// Comment forms
|
|
@import "comments/comments";
|
|
@import "comments/forms";
|
|
|
|
.uk-alert-primary {
|
|
background: lighten(mix(white, #32d296, 40%), 25%);
|
|
}
|
|
|
|
|
|
/**
|
|
* https://www.bryanbraun.com/anchorjs
|
|
*/
|
|
.anchorjs-link {
|
|
display: inline-block;
|
|
height: 32px;
|
|
margin-top: 4px;
|
|
margin-left: -1.4em !important;
|
|
}
|
|
.anchorjs-link:after {
|
|
margin-left: 7px;
|
|
margin-top: -4px;
|
|
display: block;
|
|
}
|
|
|
|
/**
|
|
* Create an invisible pseudo-element and make it the height of the
|
|
* sticky navbar so the jump takes you to a location above the link
|
|
*/
|
|
:target:before {
|
|
content: "";
|
|
display: block;
|
|
margin-top: -80px;
|
|
height: 80px;
|
|
width: 1px;
|
|
}
|
|
|
|
// END: www.bryanbraun.com/anchorjs
|
|
|
|
body > div.uk-lightbox.uk-overflow-hidden.uk-lightbox-panel.uk-open > div.uk-lightbox-toolbar.uk-lightbox-caption.uk-position-bottom.uk-text-center.uk-transition-slide-bottom.uk-transition-opaque
|
|
.lb-data .lb-details {
|
|
text-align: right;
|
|
}
|
|
|
|
|
|
.uk-table th {
|
|
vertical-align: top !important;
|
|
}
|