Add common style-sheet
This commit is contained in:
parent
45a44db031
commit
f1cec8e8bd
3 changed files with 25 additions and 23 deletions
|
@ -1,26 +1,3 @@
|
|||
<style>
|
||||
.formula, .letters {
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
color: black;
|
||||
padding: 0.5rem;
|
||||
padding-bottom: 1px;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.formula p:last-child, .letters p:last-child {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.formula {
|
||||
background: lightblue;
|
||||
}
|
||||
|
||||
.letters {
|
||||
background: lightyellow;
|
||||
}
|
||||
</style>
|
||||
|
||||
# Höhere Mathematik
|
||||
## Inhalt
|
||||
- [Höhere Mathematik](#höhere-mathematik)
|
||||
|
|
|
@ -6,6 +6,9 @@
|
|||
}
|
||||
],
|
||||
"settings": {
|
||||
"markdownConverter.Assets.StyleSheets": {
|
||||
"./assets/styles/summary.css": "Default"
|
||||
}
|
||||
},
|
||||
"tasks": {
|
||||
"version": "2.0.0",
|
||||
|
|
22
assets/styles/summary.css
Normal file
22
assets/styles/summary.css
Normal file
|
@ -0,0 +1,22 @@
|
|||
.formula,
|
||||
.letters {
|
||||
margin-top: 2px;
|
||||
margin-bottom: 2px;
|
||||
color: black;
|
||||
padding: 0.5rem;
|
||||
padding-bottom: 1px;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.formula p:last-child,
|
||||
.letters p:last-child {
|
||||
padding-bottom: 0;
|
||||
}
|
||||
|
||||
.formula {
|
||||
background: lightblue;
|
||||
}
|
||||
|
||||
.letters {
|
||||
background: lightyellow;
|
||||
}
|
Loading…
Reference in a new issue