24 lines
234 B
SCSS
24 lines
234 B
SCSS
// 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;
|
|
}
|