This commit is contained in:
8
webseite-sass-js/dev/assets/scss/03_base/_colors.scss
Normal file
8
webseite-sass-js/dev/assets/scss/03_base/_colors.scss
Normal file
@@ -0,0 +1,8 @@
|
||||
/* Color Theme Swatches in Hex */
|
||||
$color-1: #5c4b51;
|
||||
$color-2: #8cbeb2;
|
||||
$color-3: #f2ebbf;
|
||||
$color-4: #f3b562;
|
||||
$color-5: #f06060;
|
||||
|
||||
$color-red: $color-5;
|
||||
5
webseite-sass-js/dev/assets/scss/03_base/_index.scss
Normal file
5
webseite-sass-js/dev/assets/scss/03_base/_index.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
@import 'variables';
|
||||
@import 'utils';
|
||||
@import 'typography';
|
||||
@import 'colors';
|
||||
@import 'theme';
|
||||
23
webseite-sass-js/dev/assets/scss/03_base/_theme.scss
Normal file
23
webseite-sass-js/dev/assets/scss/03_base/_theme.scss
Normal file
@@ -0,0 +1,23 @@
|
||||
// Allgemeine Formatierungen für die ganze Webanwendung
|
||||
|
||||
*,
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: $font-headline;
|
||||
font-weight: 700;
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
$fallback-serif: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
|
||||
$fallback-sans-serif: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
|
||||
$font-headline: 'Playfair Display', $fallback-serif;
|
||||
$font-subclaim: $fallback-sans-serif;
|
||||
|
||||
$font-menu: $fallback-sans-serif;
|
||||
$font-copy: $fallback-sans-serif;
|
||||
$font-quote: $fallback-serif;
|
||||
Reference in New Issue
Block a user