lab-development-imb/web/11/demos/02_styles_fonts.css

53 lines
755 B
CSS

/* @font-face {
font-family: 'Roboto Schrift';
src:
url('fonts/Roboto-Regular.woff2') format('woff2'),
url('fonts/RobotoCondensed-Bold.otf') format('opentype');
}
body {
font-family: 'Roboto Schrift', serif;
} */
/*
body {
font-family: "Arial", serif;
} */
/* body{
font-family: Barriecito;
} */
.absatz-px {
font-size: 18px;
}
.absatz-pt {
font-size: 12pt;
}
strong {
font-weight: 800;
}
h4 strong {
font-style: italic;
}
/* Relative Schriftgröße mit rem (bezogen auf html-Größe) */
html {
font-size: 16px;
}
.absatz-rem {
font-size: 1.5rem;
}
/* Relative Schriftgröße mit em (bezogen auf Eltern-Element: body) */
body {
font-size: 14px;
}
.absatz-em {
font-size: 1.5em;
}