mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
25 lines
433 B
SCSS
25 lines
433 B
SCSS
// Your custom SCSS should be written here...
|
|
$font-family-title: "Merriweather Sans";
|
|
$font-weight-title: $font-weight-semibold;
|
|
|
|
h1,h2,h3,h4,h5,h6 {
|
|
font-family: $font-family-title;
|
|
font-weight: $font-weight-title;
|
|
}
|
|
|
|
table .striped, table.stripe {
|
|
background-color: $table-stripe-bgcolor;
|
|
}
|
|
|
|
pre {
|
|
font-family: monospace;
|
|
font-weight: normal;
|
|
}
|
|
|
|
table tr td:first-child {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|