styled colors and guttemberg
This commit is contained in:
parent
2704c83236
commit
1eae7c6c44
|
@ -21,7 +21,7 @@ $color__background-body: $color__white;
|
||||||
$color__background-screen: $color__white;
|
$color__background-screen: $color__white;
|
||||||
$color__background-hr: $color__black;
|
$color__background-hr: $color__black;
|
||||||
$color__background-button: $color__white;
|
$color__background-button: $color__white;
|
||||||
$color__background-pre: $color__white-dark;
|
$color__background-pre: $color__grey-lighter;
|
||||||
$color__background-ins: $color__white-dark;
|
$color__background-ins: $color__white-dark;
|
||||||
$color__background-input: $color__grey-lighter;
|
$color__background-input: $color__grey-lighter;
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ $font__black: 'din-black',-apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
||||||
|
|
||||||
$font__main: $font__regular;
|
$font__main: $font__regular;
|
||||||
// stylelint-enable value-keyword-case
|
// stylelint-enable value-keyword-case
|
||||||
$font__code: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
|
$font__code: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace, mono;
|
||||||
$font__pre: "Courier 10 Pitch", courier, monospace;
|
$font__pre: "Courier 10 Pitch", courier, monospace;
|
||||||
$font__size-body: 1rem;
|
$font__size-body: 1rem;
|
||||||
$font__line-height-body: 1.3;
|
$font__line-height-body: 1.3;
|
||||||
|
|
|
@ -31,10 +31,12 @@ pre {
|
||||||
}
|
}
|
||||||
|
|
||||||
code,
|
code,
|
||||||
|
.code,
|
||||||
kbd,
|
kbd,
|
||||||
tt,
|
tt,
|
||||||
var {
|
var {
|
||||||
font-family: $font__code;
|
font-family: $font__code;
|
||||||
|
background-color: $color__background-pre;
|
||||||
}
|
}
|
||||||
|
|
||||||
abbr,
|
abbr,
|
||||||
|
@ -52,3 +54,6 @@ ins {
|
||||||
big {
|
big {
|
||||||
font-size: 125%;
|
font-size: 125%;
|
||||||
}
|
}
|
||||||
|
.small {
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
|
|
@ -99,6 +99,7 @@ Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
|
||||||
--------------------------------------------- */
|
--------------------------------------------- */
|
||||||
@import "plugins/contactform7/contactform7";
|
@import "plugins/contactform7/contactform7";
|
||||||
|
|
||||||
|
|
||||||
/*--------------------------------------------------------------
|
/*--------------------------------------------------------------
|
||||||
# Utilities
|
# Utilities
|
||||||
--------------------------------------------------------------*/
|
--------------------------------------------------------------*/
|
||||||
|
|
10
style.css
10
style.css
|
@ -475,7 +475,7 @@ address {
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
background: #fdfdfd;
|
background: #eee;
|
||||||
font-family: "Courier 10 Pitch", courier, monospace;
|
font-family: "Courier 10 Pitch", courier, monospace;
|
||||||
line-height: 1.4;
|
line-height: 1.4;
|
||||||
margin-bottom: 1.6em;
|
margin-bottom: 1.6em;
|
||||||
|
@ -485,10 +485,12 @@ pre {
|
||||||
}
|
}
|
||||||
|
|
||||||
code,
|
code,
|
||||||
|
.code,
|
||||||
kbd,
|
kbd,
|
||||||
tt,
|
tt,
|
||||||
var {
|
var {
|
||||||
font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
|
font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace, mono;
|
||||||
|
background-color: #eee;
|
||||||
}
|
}
|
||||||
|
|
||||||
abbr,
|
abbr,
|
||||||
|
@ -507,6 +509,10 @@ big {
|
||||||
font-size: 125%;
|
font-size: 125%;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.small {
|
||||||
|
font-size: 80%;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Your custom style
|
Your custom style
|
||||||
|
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue