styled colors and guttemberg

This commit is contained in:
jorge-vitrubio 2022-12-27 21:45:35 +01:00
parent 2704c83236
commit 1eae7c6c44
6 changed files with 17 additions and 5 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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%;
}

View File

@ -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
--------------------------------------------------------------*/ --------------------------------------------------------------*/

View File

@ -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