Compare commits

..

No commits in common. "07d03510fdfb036c525925974fd93232414a21af" and "146bb0e0fecc7acc58457dee2e5e973435dff050" have entirely different histories.

4 changed files with 31 additions and 33 deletions

1
.gitignore vendored
View File

@ -2,4 +2,3 @@
/vendor /vendor
package-lock.json package-lock.json
composer.lock composer.lock
*.css.map

View File

@ -1,8 +1,7 @@
@mixin font-1($weight) { @mixin font-1($weight) {
// see functions.php->google_fonts() // see functions.php->google_fonts()
// and functions.php->_s_scripts() // and functions.php->_s_scripts()
font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", font-family: "Montserrat", sans-serif;
Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
@if $weight == regular { @if $weight == regular {
font-weight: 400; font-weight: 400;
} @else if $weight == bold { } @else if $weight == bold {

View File

@ -19,7 +19,7 @@ address {
pre { pre {
background: $color__background-pre; background: $color__background-pre;
@include font-pre; font-family: $font__pre;
font-size: 0.9375rem; font-size: 0.9375rem;
line-height: $font__line-height-pre; line-height: $font__line-height-pre;
margin-bottom: 1.6em; margin-bottom: 1.6em;
@ -32,7 +32,7 @@ code,
kbd, kbd,
tt, tt,
var { var {
@include font-code; font-family: $font__code;
font-size: 0.9375rem; font-size: 0.9375rem;
} }