Add common style-sheet

This commit is contained in:
Manuel Thalmann 2023-01-19 20:55:37 +01:00
parent 45a44db031
commit f1cec8e8bd
3 changed files with 25 additions and 23 deletions

View file

@ -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)

View file

@ -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
View 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;
}