Skip to content

Commit

Permalink
added missing style
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecole committed Jul 9, 2024
1 parent 7f7fe28 commit a355ac9
Showing 1 changed file with 58 additions and 50 deletions.
108 changes: 58 additions & 50 deletions assets/css/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,53 +4,61 @@
/* stylelint-disable @stylistic/selector-list-comma-newline-after */

.blog-header-logo {
font-family: "Playfair Display", Georgia, "Times New Roman", serif/*rtl:Amiri, Georgia, "Times New Roman", serif*/;
font-size: 2.25rem;
}

.blog-header-logo:hover {
text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
font-family: "Playfair Display", Georgia, "Times New Roman", serif/*rtl:Amiri, Georgia, "Times New Roman", serif*/;
}

.flex-auto {
flex: 0 0 auto;
}

.h-250 { height: 250px; }
@media (min-width: 768px) {
.h-md-250 { height: 250px; }
}

/* Pagination */
.blog-pagination {
margin-bottom: 4rem;
}

/*
* Blog posts
*/
.blog-post {
margin-bottom: 4rem;
}
.blog-post-meta {
margin-bottom: 1.25rem;
color: #727272;
}
.tag-link {
text-decoration: none;
}

/*
* Dark mode
*/
:root {
color-scheme: light dark;
}

iframe {
color-scheme: light;
}
font-family: "Playfair Display", Georgia, "Times New Roman", serif/*rtl:Amiri, Georgia, "Times New Roman", serif*/;
font-size: 2.25rem;
}

.blog-header-logo:hover {
text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
font-family: "Playfair Display", Georgia, "Times New Roman", serif/*rtl:Amiri, Georgia, "Times New Roman", serif*/;
}

.flex-auto {
flex: 0 0 auto;
}

.h-250 { height: 250px; }
@media (min-width: 768px) {
.h-md-250 { height: 250px; }
}

/* Pagination */
.blog-pagination {
margin-bottom: 4rem;
}

/*
* Blog posts
*/
.blog-post {
margin-bottom: 4rem;
}
.blog-post-meta {
margin-bottom: 1.25rem;
color: #727272;
}
.tag-link {
text-decoration: none;
}

/*
* Dark mode
*/
:root {
color-scheme: light dark;
}

iframe {
color-scheme: light;
}

/*
* Highlight.js overrides
*/
.hljs-copy {
float: right;
cursor: pointer;
}

0 comments on commit a355ac9

Please sign in to comment.