2021-07-25 07:16:35 -04:00
|
|
|
/* Fonts */
|
|
|
|
@import "fonts";
|
|
|
|
|
|
|
|
/* Load Bootstrap v5 and customizations */
|
|
|
|
@import "bs-load";
|
|
|
|
|
|
|
|
/*SVG ICON SYSTEM*/
|
|
|
|
@import "svg-icons";
|
|
|
|
|
2021-07-28 22:51:24 -04:00
|
|
|
/* Basic style additions */
|
|
|
|
@import "basic-additions";
|
|
|
|
|
2021-07-25 07:16:35 -04:00
|
|
|
/* Navbar toggler icon override */
|
2021-07-28 12:20:00 -04:00
|
|
|
@import "nav-burger";
|
2021-07-25 07:16:35 -04:00
|
|
|
|
2021-07-28 12:20:00 -04:00
|
|
|
/* Navbar & Main layout styling */
|
|
|
|
@import "layout-top-navbar-main";
|
2021-07-25 07:16:35 -04:00
|
|
|
|
|
|
|
/* main */
|
|
|
|
html,
|
|
|
|
body {
|
2021-07-28 19:05:47 -04:00
|
|
|
color: $gray-200;
|
2021-07-25 07:16:35 -04:00
|
|
|
background-color: $spaceblue-800;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2021-07-28 12:20:00 -04:00
|
|
|
|
|
|
|
/* links */
|
2021-07-28 22:51:24 -04:00
|
|
|
a,
|
|
|
|
#tsml a {
|
|
|
|
@extend .text-decoration-underline;
|
2021-07-28 19:05:47 -04:00
|
|
|
color: $gray-200;
|
2021-07-28 22:51:24 -04:00
|
|
|
&:hover, &:focus {
|
2021-07-28 19:05:47 -04:00
|
|
|
// @extend .text-decoration-underline;
|
2021-07-27 19:12:18 -04:00
|
|
|
color: $primary;
|
2021-07-28 19:05:47 -04:00
|
|
|
text-decoration-color: $gray-200 !important;
|
2021-07-27 19:12:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-28 12:20:00 -04:00
|
|
|
|
2021-07-27 19:12:18 -04:00
|
|
|
|
|
|
|
/* post styling */
|
|
|
|
article.post.sticky {
|
|
|
|
@extend .card;
|
|
|
|
background-color: shade-color($gray-800, 50%);
|
|
|
|
border-bottom: inherit !important;
|
|
|
|
margin-bottom: inherit !important;
|
|
|
|
padding-bottom: inherit !important;
|
2021-07-28 12:20:00 -04:00
|
|
|
&.mb-two-rem {
|
|
|
|
margin-bottom: 2rem !important;
|
|
|
|
}
|
2021-07-27 19:12:18 -04:00
|
|
|
header.post-header {
|
2021-07-28 16:39:40 -04:00
|
|
|
@extend .card-body;
|
2021-07-27 19:12:18 -04:00
|
|
|
@extend .pb-0;
|
|
|
|
}
|
|
|
|
div.post-body {
|
|
|
|
@extend .card-body;
|
|
|
|
@extend .pt-0;
|
|
|
|
&:last-child {
|
|
|
|
padding-bottom: 0 !important;
|
|
|
|
margin-bottom: .25rem !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-28 22:51:24 -04:00
|
|
|
header.post-header {
|
|
|
|
h1, h2, h1 a, h2 a {
|
2021-07-28 16:39:40 -04:00
|
|
|
-ms-word-wrap: break-word;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
}
|
2021-07-28 22:51:24 -04:00
|
|
|
.article.post-body {
|
|
|
|
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
|
|
|
|
padding-top: 0.5rem;
|
|
|
|
}
|
|
|
|
}
|
2021-07-28 16:39:40 -04:00
|
|
|
|
2021-07-27 19:12:18 -04:00
|
|
|
.more-link-outer {
|
|
|
|
@extend .text-end;
|
|
|
|
@extend .mb-0;
|
|
|
|
.more-link {
|
|
|
|
@extend .text-decoration-none;
|
|
|
|
@extend .font-family-handbrush;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-25 07:16:35 -04:00
|
|
|
|
|
|
|
/* blockquote handling */
|
2021-07-28 12:20:00 -04:00
|
|
|
blockquote,
|
2021-07-27 19:12:18 -04:00
|
|
|
blockquote.wp-block-quote {
|
|
|
|
background-color: tint-color($spaceblue-800, 5%) !important;
|
|
|
|
@extend .border-start;
|
|
|
|
@extend .border-5;
|
|
|
|
border-left-color: tint-color($spaceblue-800, 15%) !important;
|
|
|
|
@extend .ms-0;
|
|
|
|
@extend .my-4;
|
|
|
|
@extend .px-3;
|
|
|
|
@extend .py-2;
|
|
|
|
quotes: "\201C" "\201D" "\201C" "\201D";
|
|
|
|
position: relative;
|
|
|
|
p {
|
|
|
|
@extend .blockquote;
|
|
|
|
&:last-of-type {
|
2021-07-25 07:16:35 -04:00
|
|
|
@extend .my-0;
|
|
|
|
@extend .py-0;
|
|
|
|
}
|
2021-07-27 19:12:18 -04:00
|
|
|
}
|
|
|
|
&.is-style-large {
|
|
|
|
p {
|
|
|
|
font-size: 1.7em;
|
2021-07-25 07:16:35 -04:00
|
|
|
}
|
|
|
|
}
|
2021-07-27 19:12:18 -04:00
|
|
|
cite {
|
|
|
|
@extend .blockquote-footer;
|
2021-07-28 19:05:47 -04:00
|
|
|
color: $gray-300;
|
2021-07-27 19:12:18 -04:00
|
|
|
@extend .my-0;
|
|
|
|
@extend .py-0;
|
|
|
|
font-size: 0.85em;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
&:last-child {
|
|
|
|
@extend .py-1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
figure.wp-block-pullquote {
|
2021-07-28 12:20:00 -04:00
|
|
|
// @extend .my-3;
|
|
|
|
// @extend .py-3;
|
|
|
|
margin: 2em !important;
|
|
|
|
@extend .p-5;
|
2021-07-27 19:12:18 -04:00
|
|
|
&:not(.is-style-solid-color) {
|
|
|
|
background-color: tint-color($spaceblue-800, 5%) !important;
|
|
|
|
@extend .border-top;
|
|
|
|
@extend .border-bottom;
|
|
|
|
@extend .border-5;
|
|
|
|
border-top-color: tint-color($spaceblue-800, 15%) !important;
|
|
|
|
border-bottom-color: tint-color($spaceblue-800, 15%) !important;
|
2021-07-28 12:20:00 -04:00
|
|
|
& blockquote {
|
|
|
|
background-color: none !important;
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
& blockquote {
|
|
|
|
@extend .m-0;
|
|
|
|
@extend .p-0;
|
|
|
|
background-color: inherit !important;
|
|
|
|
border: inherit !important;
|
2021-07-27 19:12:18 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* other wp styling */
|
2021-07-28 19:05:47 -04:00
|
|
|
.wp-block-image.alignfull img,
|
|
|
|
.wp-block-image.alignwide img,
|
|
|
|
.wp-block-image img,
|
|
|
|
.wp-block-media-text__media img {
|
2021-07-28 12:20:00 -04:00
|
|
|
height: auto;
|
|
|
|
}
|
2021-07-27 19:12:18 -04:00
|
|
|
.btn-primary {
|
|
|
|
color: $spaceblue-800;
|
|
|
|
}
|
|
|
|
.has-drop-cap:not(:focus)::first-letter {
|
|
|
|
font-size: 5em;
|
|
|
|
margin: 0.05em 0.05em 0 0;
|
|
|
|
}
|
|
|
|
.wp-block-button {
|
|
|
|
.wp-block-button__link {
|
|
|
|
@extend .btn;
|
|
|
|
@extend .text-decoration-none;
|
|
|
|
@extend .mb-1;
|
|
|
|
}
|
|
|
|
&:not(.is-style-outline) .wp-block-button__link {
|
|
|
|
@extend .btn-primary;
|
|
|
|
}
|
|
|
|
&.is-style-outline .wp-block-button__link {
|
|
|
|
@extend .btn-outline-primary;
|
|
|
|
}
|
|
|
|
&.alignleft {
|
|
|
|
@extend .text-start;
|
|
|
|
}
|
|
|
|
&.aligncenter {
|
|
|
|
@extend .text-center;
|
|
|
|
}
|
|
|
|
&.alignright {
|
|
|
|
@extend .text-end;
|
|
|
|
}
|
2021-07-25 07:16:35 -04:00
|
|
|
}
|
2021-07-28 19:05:47 -04:00
|
|
|
|
|
|
|
table,
|
|
|
|
.wp-block-table table,
|
|
|
|
.wp-block-calendar table {
|
2021-07-28 12:20:00 -04:00
|
|
|
@extend .table;
|
|
|
|
@extend .table-dark;
|
2021-07-28 19:05:47 -04:00
|
|
|
caption {
|
|
|
|
@extend .text-gray-400;
|
|
|
|
}
|
|
|
|
thead th,
|
|
|
|
tbody td {
|
|
|
|
border: none !important;
|
2021-07-28 12:20:00 -04:00
|
|
|
}
|
2021-07-28 19:05:47 -04:00
|
|
|
thead tr {
|
|
|
|
border-bottom: 1px solid $gray-600;
|
|
|
|
}
|
|
|
|
tbody tr {
|
|
|
|
border-bottom: 1px solid $gray-800;
|
|
|
|
&:last-child {
|
|
|
|
border-bottom: none !important;
|
2021-07-28 12:20:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-28 19:05:47 -04:00
|
|
|
.wp-block-calendar table,
|
|
|
|
.wp-block-table.is-style-stripes table {
|
|
|
|
@extend .table-striped;
|
|
|
|
}
|
|
|
|
|
2021-07-28 16:39:40 -04:00
|
|
|
.post-page-numbers {
|
2021-07-28 19:05:47 -04:00
|
|
|
@extend .text-decoration-none;
|
2021-07-28 16:39:40 -04:00
|
|
|
@extend .page-item;
|
|
|
|
&.current {
|
|
|
|
@extend .active;
|
|
|
|
& .page-link {
|
2021-07-28 19:05:47 -04:00
|
|
|
@extend .text-decoration-none;
|
|
|
|
color: $spaceblue-100 !important;
|
|
|
|
background-color: $spaceblue-600 !important;
|
|
|
|
border-color: $spaceblue-600 !important;
|
2021-07-28 16:39:40 -04:00
|
|
|
&:hover {
|
2021-07-28 19:05:47 -04:00
|
|
|
@extend .text-decoration-none;
|
|
|
|
color: $spaceblue-100 !important;
|
|
|
|
background-color: $spaceblue-600 !important;
|
|
|
|
border-color: $spaceblue-600 !important;
|
2021-07-28 16:39:40 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&:hover {
|
|
|
|
@extend .text-decoration-none;
|
|
|
|
}
|
|
|
|
& .page-link {
|
2021-07-28 19:05:47 -04:00
|
|
|
@extend .text-decoration-none;
|
|
|
|
color: $gray-200;
|
2021-07-28 16:39:40 -04:00
|
|
|
background-color: inherit !important;
|
2021-07-28 19:05:47 -04:00
|
|
|
border: 1px solid $spaceblue-600;
|
2021-07-28 16:39:40 -04:00
|
|
|
&:hover {
|
|
|
|
color: $spaceblue-800;
|
2021-07-28 19:05:47 -04:00
|
|
|
background-color: $primary !important;
|
|
|
|
border: 1px solid $spaceblue-600;
|
2021-07-28 16:39:40 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-07-25 07:16:35 -04:00
|
|
|
|
2021-07-27 19:12:18 -04:00
|
|
|
|
2021-07-27 08:25:29 -04:00
|
|
|
|
2021-07-28 22:51:24 -04:00
|
|
|
/* forms and search */
|
|
|
|
label {
|
|
|
|
@extend .form-label;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-control,
|
|
|
|
input.form-control {
|
2021-07-28 19:05:47 -04:00
|
|
|
color: $gray-200;
|
2021-07-27 19:12:18 -04:00
|
|
|
background-color: $spaceblue-900 !important;
|
|
|
|
border-color: $spaceblue-600;
|
2021-07-28 22:51:24 -04:00
|
|
|
&:focus {
|
|
|
|
border-color: $input-focus-border-color;
|
|
|
|
color: $gray-200;
|
|
|
|
}
|
|
|
|
&::-ms-clear,
|
|
|
|
&::-ms-reveal { display: none; }
|
|
|
|
&::-webkit-input-placeholder, /* WebKit, Blink, Edge */
|
|
|
|
&:-ms-input-placeholder, /* Internet Explorer 10-11 */
|
|
|
|
&::-ms-input-placeholder, /* Microsoft Edge */
|
|
|
|
&::placeholder /* Most modern browsers support this now. */
|
|
|
|
{
|
|
|
|
color: $spaceblue-700 !important;
|
|
|
|
}
|
|
|
|
&:-moz-placeholder, /* Mozilla Firefox 4 to 18 */
|
|
|
|
&::-moz-placeholder { /* Mozilla Firefox 19+ */
|
|
|
|
color: $spaceblue-700 !important;
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2021-07-27 19:30:40 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
input,
|
|
|
|
.wp-block-search .wp-block-search__input,
|
|
|
|
form input {
|
|
|
|
@extend .form-control;
|
2021-07-28 22:51:24 -04:00
|
|
|
color: $gray-200;
|
2021-07-27 19:30:40 -04:00
|
|
|
&:focus {
|
|
|
|
border-color: $input-focus-border-color;
|
2021-07-28 22:51:24 -04:00
|
|
|
color: $gray-200;
|
2021-07-27 19:30:40 -04:00
|
|
|
}
|
2021-07-28 22:51:24 -04:00
|
|
|
&::-ms-clear,
|
2021-07-27 19:30:40 -04:00
|
|
|
&::-ms-reveal { display: none; }
|
2021-07-28 22:51:24 -04:00
|
|
|
&::-webkit-input-placeholder, /* WebKit, Blink, Edge */
|
|
|
|
&:-ms-input-placeholder, /* Internet Explorer 10-11 */
|
|
|
|
&::-ms-input-placeholder, /* Microsoft Edge */
|
|
|
|
&::placeholder /* Most modern browsers support this now. */
|
|
|
|
{
|
2021-07-28 19:05:47 -04:00
|
|
|
color: $spaceblue-700 !important;
|
2021-07-27 19:30:40 -04:00
|
|
|
}
|
2021-07-28 22:51:24 -04:00
|
|
|
&:-moz-placeholder, /* Mozilla Firefox 4 to 18 */
|
2021-07-27 19:30:40 -04:00
|
|
|
&::-moz-placeholder { /* Mozilla Firefox 19+ */
|
2021-07-28 19:05:47 -04:00
|
|
|
color: $spaceblue-700 !important;
|
2021-07-27 19:30:40 -04:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
2021-07-28 22:51:24 -04:00
|
|
|
|
2021-07-27 19:30:40 -04:00
|
|
|
button,
|
|
|
|
.wp-block-search .wp-block-search__button,
|
|
|
|
form button {
|
|
|
|
@extend .btn;
|
|
|
|
@extend .btn-primary;
|
|
|
|
}
|
2021-07-28 12:20:00 -04:00
|
|
|
.btn-primary, button, .wp-block-search .wp-block-search__button, form button, .wp-block-button:not(.is-style-outline) .wp-block-button__link {
|
|
|
|
box-shadow: inherit;
|
|
|
|
}
|
2021-07-28 22:51:24 -04:00
|
|
|
|
|
|
|
select {
|
|
|
|
@extend .form-select;
|
|
|
|
}
|