Content pages and table of contents

This commit is contained in:
Hazem Krimi
2023-11-15 16:22:38 +01:00
parent 1a5a9fbfef
commit 64723c3860
11 changed files with 152 additions and 32 deletions
+39
View File
@@ -0,0 +1,39 @@
main #metadata {
margin-bottom: 2rem;
}
main #metadata h1 {
margin-bottom: 1rem;
}
main #metadata div {
display: flex;
justify-content: space-between;
}
main #metadata #share {
cursor: pointer;
}
main #content {
display: flex;
column-gap: 2rem;
}
main h2, main h3, main h4 {
margin-bottom: 1rem;
}
main p, main ul, main ol {
margin-bottom: 2rem;
}
@media only screen and (max-width: 1024px) {
main #content {
display: block;
}
main #content #TableOfContents {
display: none;
}
}