Fix h1 not being top level, move inline styling to css file

This commit is contained in:
Xevion
2022-04-05 11:56:28 -05:00
parent d012031468
commit fafa46ff2e
2 changed files with 14 additions and 3 deletions

View File

@@ -130,6 +130,7 @@ pre {
background: rgb(25, 25, 25);
border-radius: 7px;
padding: 1em;
code {
font-size: 1em;
border: 0;
@@ -147,6 +148,7 @@ hr {
font-size: 1.5em;
margin: 1rem 0;
border: none;
&:before {
display: block;
text-align: center;
@@ -240,6 +242,7 @@ nav a {
a {
text-decoration: none;
}
.date {
font-size: 2em;
}
@@ -247,6 +250,7 @@ nav a {
.post_combo {
margin-top: 0.75em;
> h2 {
display: inline;
}
@@ -295,6 +299,7 @@ figcaption {
font-size: 70%;
opacity: 40%;
padding-left: 0.4em;
a {
text-decoration: none;
}
@@ -315,3 +320,9 @@ article {
.text-center {
text-align: center;
}
.callout-section {
border: solid white;
border-width: thin 0;
padding: 10px;
}