mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
39 lines
554 B
CSS
39 lines
554 B
CSS
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;
|
|
}
|
|
} |