forked from cockpit-project/cockpit-project.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault.scss
55 lines (46 loc) · 1.9 KB
/
default.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Please copy default.scss to site.scss to customize your site.
//
// If site.scss (or site) exists, then default.scss will not
// be used. (You can then use it for reference later.)
//
// Be sure to `@import "minima"` after the variables needed for it
// and before your own custom CSS, so you can easily override
// (if you really need to).
// Variables for SASS
$spacing-unit: 1rem;
:root {
// CSS variables
--font-base-family: Helvetica Neue, Helvetica, Arial, Liberation Sans, sans-serif;
--font-base-size: 16px;
--font-base-weight: 400;
--font-small-size: var(--font-base-size) * 0.875;
--base-line-height: 1.5;
--color-text: #333;
--color-background: #fdfdfd;
--color-brand: #2a7ae2;
--color-grey: #828282;
--color-grey-light: color-mix(in lch, var(--color-grey), var(--color-background), 40%);
--color-grey-dark: color-mix(in lch, var(--color-grey), var(--color-text), 25%);
// Width of the content area
--content-width: 60em;
}
// Import partials from the `minima` theme.
@import "minima";
// Import grid (see http://gridlex.devlint.fr/ for docs)
@import "vendor/gridlex";
// Comment out or remove the follow if you don't use the feature
////////////////////////////////////////////////////////////////////////
@import "lib/nav"; // Navbar (see opts in lib/navbar.scss)
@import "lib/search"; // Styles for the search page
@import "lib/blog"; // Default blog style
@import "lib/pagination"; // Blog pagination
@import "lib/stickyfooter"; // Stretch page with footer on bottom
@import "lib/scrollbar-on"; // Stop page shift by keeping scrollbar on
//@import "lib/stickyheader"; // Keep header at the top
// Minima also includes a mixin for defining media queries.
// Use media queries like this:
// @include media-query($on-palm) {
// .wrapper {
// padding-inline: calc(var(--spacing-unit) / 2);
// }
// }