2024-06-15 05:56:15 +00:00
|
|
|
/* styling picture captions */
|
2024-06-13 07:06:44 +00:00
|
|
|
figcaption.wp-element-caption {
|
|
|
|
width: fit-content;
|
|
|
|
margin: 0;
|
|
|
|
padding: 8px 12px;
|
|
|
|
}
|
|
|
|
|
2024-06-15 05:56:15 +00:00
|
|
|
/* style header nav */
|
2024-06-13 07:06:44 +00:00
|
|
|
.main-header-nav .wp-block-navigation-item {
|
|
|
|
justify-content: center;
|
|
|
|
border: 1px solid;
|
|
|
|
flex-grow: 1;
|
|
|
|
border-left: 0;
|
|
|
|
padding-block: 0.5em
|
|
|
|
}
|
|
|
|
|
|
|
|
.main-header-nav .wp-block-navigation-item:last-of-type {
|
|
|
|
border-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav.wp-block-navigation.mobile-header-nav {
|
|
|
|
border-top: 1px solid;
|
|
|
|
border-bottom: 1px solid;
|
|
|
|
padding-block: 15px
|
|
|
|
}
|
|
|
|
|
|
|
|
ul.wp-block-navigation.mobile-header-nav li {
|
|
|
|
font-size: 40px !important;
|
|
|
|
margin-block: .5em;
|
|
|
|
}
|
|
|
|
|
2024-06-15 06:07:00 +00:00
|
|
|
@media (min-width: 1080px) {
|
|
|
|
.main-header-nav .wp-block-navigation-item:hover,
|
|
|
|
.main-header-nav .wp-block-navigation-item:focus {
|
|
|
|
background: var(--wp--preset--color--black);
|
|
|
|
color: var(--wp--preset--color--white);
|
|
|
|
border-color: var(--wp--preset--color--black);
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-15 05:56:15 +00:00
|
|
|
/* style footer on mobile */
|
2024-06-13 07:06:44 +00:00
|
|
|
@media (min-width: 1080px) {
|
|
|
|
.wp-block-column.footer-gradient-column {
|
|
|
|
padding-left: 2rem !important;
|
|
|
|
border-left: 8px solid var(--wp--preset--color--turquoise-green);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 786px) {
|
|
|
|
.wp-block-column.footer-gradient-column {
|
|
|
|
padding-top: 1.5rem !important;
|
|
|
|
border-top: 8px solid var(--wp--preset--color--turquoise-green);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-15 05:56:15 +00:00
|
|
|
/* utulity class for overlapping items */
|
2024-06-13 07:06:44 +00:00
|
|
|
.overlap {
|
|
|
|
z-index: 21;
|
|
|
|
}
|
|
|
|
|
2024-06-15 05:56:15 +00:00
|
|
|
/* style blog posts */
|
2024-06-13 07:06:44 +00:00
|
|
|
.home-post-item {
|
|
|
|
height: 100%
|
|
|
|
}
|
|
|
|
|
2024-06-13 08:07:24 +00:00
|
|
|
/* Removing default underline for most links */
|
2024-06-13 07:06:44 +00:00
|
|
|
.post-title a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-title a:hover,
|
|
|
|
.post-title a:focus {
|
|
|
|
text-decoration: underline;
|
2024-06-13 08:07:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-footer a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.site-footer a:hover,
|
|
|
|
.site-footer a:focus {
|
|
|
|
text-decoration: underline;
|
2024-06-13 08:37:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* fixing padding for certain elements on front page */
|
|
|
|
@media (max-width: 480px) {
|
|
|
|
body {
|
2024-06-13 09:06:57 +00:00
|
|
|
--wp--preset--spacing--80: 1rem;
|
|
|
|
|
2024-06-13 08:37:48 +00:00
|
|
|
}
|
2024-06-13 08:50:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* tweak footer font sizes on mobile */
|
|
|
|
@media (max-width: 480px) {
|
|
|
|
.site-footer ul.is-style-arrow li {
|
|
|
|
font-size: 18px !important;
|
|
|
|
}
|
2024-06-13 11:19:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* styling blog post template */
|
|
|
|
.post-content-container {
|
|
|
|
width: fit-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-header {
|
|
|
|
max-width: 1480px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post-bio-container {
|
|
|
|
max-width: 640px;
|
2024-06-13 07:06:44 +00:00
|
|
|
}
|