37 lines
744 B
SCSS
37 lines
744 B
SCSS
::ng-deep p {
|
|
display: block;
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
font-size: 1rem; /* oder 1rem, abhängig vom Browser und den Standardeinstellungen */
|
|
line-height: 1.5;
|
|
}
|
|
::ng-deep h1 {
|
|
display: block;
|
|
font-size: 2em; /* etwa 32px */
|
|
margin-top: 0.67em;
|
|
margin-bottom: 0.67em;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
font-weight: bold;
|
|
}
|
|
::ng-deep h2 {
|
|
display: block;
|
|
font-size: 1.5em; /* etwa 24px */
|
|
margin-top: 0.83em;
|
|
margin-bottom: 0.83em;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
font-weight: bold;
|
|
}
|
|
::ng-deep h3 {
|
|
display: block;
|
|
font-size: 1.17em; /* etwa 18.72px */
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
margin-left: 0;
|
|
margin-right: 0;
|
|
font-weight: bold;
|
|
}
|