Add style for the UP | HOME links generated by org-mode

This commit is contained in:
Tom Willemse 2022-07-14 22:29:53 -07:00
parent 6edcc99f08
commit 19de670fd2
2 changed files with 20 additions and 5 deletions

View file

@ -63,11 +63,8 @@
} }
} }
.title-header { .header-block {
text-align: center; box-sizing: border-box;
padding: 20px;
margin: 0;
font-size: 2.5rem;
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
color: @dark-primary; color: @dark-primary;
@ -79,3 +76,12 @@
background-color: @light-background-highlight; background-color: @light-background-highlight;
} }
} }
.title-header {
&:extend(.header-block);
padding: 20px;
text-align: center;
margin: 0;
font-size: 2.5rem;
}

View file

@ -9,6 +9,15 @@
&:extend(.subtitle); &:extend(.subtitle);
} }
#org-div-home-and-up {
&:extend(.header-block);
&:extend(.content-wrapper);
text-align: right;
font-size: 0.8rem;
padding-right: 1rem;
}
#postamble { #postamble {
&:extend(.footer); &:extend(.footer);
&:extend(.content-wrapper); &:extend(.content-wrapper);