2020-02-02 17:13:02 +00:00
|
|
|
/* VARIABLES ========================================================================== */
|
|
|
|
|
|
|
|
// COLORS
|
|
|
|
$teal: #63BDA2;
|
|
|
|
$teal-darker: #359377;
|
|
|
|
$gray-background: #F7F7F7;
|
|
|
|
$gray-table-border: #EEEEEE;
|
|
|
|
$gray-lightest: #D2D2D2;
|
|
|
|
$gray-light: #ABABAB;
|
|
|
|
$gray-medium: #898989;
|
|
|
|
$gray-dark: #5F5F5F;
|
|
|
|
$highlight: #FFEC5C;
|
|
|
|
|
|
|
|
// FONTS
|
|
|
|
$serif: "Noto Serif","Segoe UI","Helvetica Neue",Helvetica,Roboto,FreeSans,serif;
|
|
|
|
$sans-serif: "Noto Sans","Segoe UI","Helvetica Neue",Helvetica,Roboto,FreeSans,sans-serif;
|
|
|
|
$code: Menlo,Monaco,"Courier New",monospace;
|
|
|
|
|
|
|
|
/* SASS IMPORT ========================================================================== */
|
|
|
|
|
|
|
|
// CUSTOM FONTS
|
|
|
|
@import "partials/_fonts";
|
|
|
|
|
|
|
|
// THRID PARTY
|
|
|
|
@import "vendor/normalize";
|
|
|
|
@import "vendor/syntax";
|
|
|
|
|
|
|
|
/* STYLES ========================================================================== */
|
|
|
|
|
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
2020-04-03 12:26:09 +00:00
|
|
|
width: 100%;
|
|
|
|
overflow-x: hidden;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
2020-04-13 14:01:36 +00:00
|
|
|
margin: 0;
|
|
|
|
line-height: 170%;
|
|
|
|
-ms-overflow-style: -ms-autohiding-scrollbar;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
2020-04-13 14:01:36 +00:00
|
|
|
color: $gray-dark;
|
|
|
|
font-family: $sans-serif;
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.1rem;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TEXT
|
|
|
|
article p {
|
2020-04-13 14:01:36 +00:00
|
|
|
a {
|
|
|
|
text-decoration: underline;
|
|
|
|
text-decoration-skip-ink: auto;
|
|
|
|
color: $gray-dark;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
article .post-footer>a {
|
2020-04-13 14:01:36 +00:00
|
|
|
text-decoration: none;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
2020-04-13 14:01:36 +00:00
|
|
|
font-size: 1.9em;
|
|
|
|
padding-top: 0.2em;
|
|
|
|
margin: 0.5em 0em 0.75em 0em;
|
|
|
|
font-family: $serif;
|
|
|
|
font-weight: 600;
|
|
|
|
line-height: 1.3em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2020-04-13 14:01:36 +00:00
|
|
|
margin: 1.25em 0em 0.75em 0em;
|
|
|
|
font-family: $serif;
|
|
|
|
font-weight: 600;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2020-04-13 14:01:36 +00:00
|
|
|
font-size: 1.25em;
|
|
|
|
line-height: 1.4em;
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
position: relative;
|
|
|
|
text-shadow: 0px -2px 0 white, 0px -1px 0 white, 0px 0px 0 white, 2px -2px 0 white, 2px -1px 0 white, 2px 0px 0 white, -2px -2px 0 white, -2px -1px 0 white, -2px 0px 0 white, 1px -2px 0 white, 1px -1px 0 white, 1px 0px 0 white, -1px -2px 0 white, -1px -1px 0 white, -1px 0px 0 white, 0px -2px 0 white, 0px -1px 0 white, 0px 0px 0 white;
|
|
|
|
box-shadow: 0 -1px 0 0 white inset, 0 -2px 0 0 transparent inset;
|
|
|
|
background-size: 1px 1em;
|
|
|
|
position: relative;
|
|
|
|
transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
box-shadow: 0 -1px 0 0 white inset, 0 -2px 0 0 $gray-dark inset;
|
|
|
|
transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h5,
|
|
|
|
h6 {
|
2020-04-13 14:01:36 +00:00
|
|
|
font-weight: 700;
|
|
|
|
line-height: 1.3em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h4 {
|
2020-04-13 14:01:36 +00:00
|
|
|
line-height: 1.3em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
2020-04-13 14:01:36 +00:00
|
|
|
font-size: 1.1em;
|
|
|
|
line-height: 1.3em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
p {
|
2020-04-13 14:01:36 +00:00
|
|
|
margin: 0em 0 1em 0;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// LINKS AND TAGS
|
|
|
|
a {
|
2020-04-13 14:01:36 +00:00
|
|
|
text-decoration: underline;
|
|
|
|
text-decoration-skip-ink: auto;
|
|
|
|
color: $gray-dark;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a,
|
|
|
|
a>svg {
|
2020-04-13 14:01:36 +00:00
|
|
|
transition: 0.1s cubic-bezier(0.075, 0.82, 0.165, 1);
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
2020-04-13 14:01:36 +00:00
|
|
|
color: $gray-dark;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.color-link {
|
2020-04-13 14:01:36 +00:00
|
|
|
text-decoration: none;
|
|
|
|
color: $teal;
|
|
|
|
font-family: $sans-serif;
|
|
|
|
margin-right: 1.5em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.color-link:visited {
|
2020-04-13 14:01:36 +00:00
|
|
|
color: $teal;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.color-link:hover {
|
2020-04-13 14:01:36 +00:00
|
|
|
color: $teal-darker;
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2020-04-13 14:01:36 +00:00
|
|
|
.color-arrow {
|
|
|
|
fill: $teal-darker;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tag {
|
2020-04-13 14:01:36 +00:00
|
|
|
margin-right: 0.75em;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
line-height: 1.75em;
|
|
|
|
color: $gray-light;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tag:visited {
|
2020-04-13 14:01:36 +00:00
|
|
|
color: $gray-light;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tag:hover {
|
2020-04-13 14:01:36 +00:00
|
|
|
color: $gray-medium;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ARTICLE FORMATTING
|
|
|
|
time {
|
2020-04-13 14:01:36 +00:00
|
|
|
margin-right: 1.5em;
|
|
|
|
color: $gray-light;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
2020-04-13 14:01:36 +00:00
|
|
|
border: 0;
|
|
|
|
height: 0;
|
|
|
|
border-bottom: 1px solid $gray-lightest;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ul,
|
|
|
|
ol {
|
2020-04-13 14:01:36 +00:00
|
|
|
margin: 1em 0em;
|
|
|
|
padding-left: 2em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
2020-04-13 14:01:36 +00:00
|
|
|
line-height: 150%;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
mark {
|
2020-04-13 14:01:36 +00:00
|
|
|
background-color: $highlight;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
blockquote {
|
2020-04-13 14:01:36 +00:00
|
|
|
border-left: 4px solid $gray-lightest;
|
|
|
|
padding-left: 1.3em;
|
|
|
|
margin-left: 0em;
|
|
|
|
margin-top: 0em;
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2020-04-13 14:01:36 +00:00
|
|
|
p {
|
|
|
|
margin-bottom: 0em;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
cite {
|
2020-04-13 14:01:36 +00:00
|
|
|
font-size: 0.95em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pre {
|
2020-04-13 14:01:36 +00:00
|
|
|
padding: 1em;
|
|
|
|
background-color: $gray-background;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: scroll;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
p code,
|
|
|
|
kbd {
|
2020-04-13 14:01:36 +00:00
|
|
|
font-size: 0.95rem;
|
|
|
|
background: $gray-background;
|
|
|
|
padding: 0.2em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
code,
|
|
|
|
pre,
|
|
|
|
kbd {
|
2020-04-13 14:01:36 +00:00
|
|
|
font-family: $code;
|
|
|
|
font-size: 0.95rem;
|
|
|
|
line-height: 154%;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.table-wrapper {
|
2020-04-13 14:01:36 +00:00
|
|
|
overflow-x: auto;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table {
|
2020-04-13 14:01:36 +00:00
|
|
|
max-width: 100%;
|
|
|
|
border-spacing: 0;
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2020-04-13 14:01:36 +00:00
|
|
|
thead {
|
|
|
|
background: $gray-background;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2020-04-13 14:01:36 +00:00
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
border: 1px double $gray-table-border;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TOP NAV
|
|
|
|
nav {
|
2020-04-13 14:01:36 +00:00
|
|
|
padding: 0.25em 1.5em 1em 1.5em;
|
|
|
|
max-width: 100%;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.site-title {
|
2020-04-13 14:01:36 +00:00
|
|
|
margin: 1.5em 0em 1em 0em;
|
|
|
|
text-align: center;
|
|
|
|
line-height: 1.7em;
|
|
|
|
|
|
|
|
a {
|
|
|
|
font-family: $serif;
|
|
|
|
font-size: 1.5em;
|
|
|
|
text-decoration: none;
|
|
|
|
margin-top: 0.75em;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-menu {
|
2020-04-13 14:01:36 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
flex-wrap: wrap;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.nav-link {
|
2020-04-13 14:01:36 +00:00
|
|
|
margin-bottom: 0.5em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.description {
|
2020-04-13 14:01:36 +00:00
|
|
|
font-style: italic;
|
|
|
|
color: $gray-medium;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 3.7em;
|
|
|
|
margin-top: -0.75em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// CONTENT
|
|
|
|
.content-container {
|
2020-04-13 14:01:36 +00:00
|
|
|
padding: 0.5em 1.5em 0em 1.5em;
|
|
|
|
margin: 0em;
|
|
|
|
max-width: 100%;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.paginator {
|
2020-04-13 14:01:36 +00:00
|
|
|
flex-shrink: 0;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: flex-end;
|
|
|
|
margin-top: 1em;
|
|
|
|
padding-bottom: 1.5em;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
.older {
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2020-04-13 14:01:36 +00:00
|
|
|
p {
|
|
|
|
font-size: 0.95rem;
|
|
|
|
margin: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: $teal;
|
|
|
|
font-size: 0.95rem;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ARTICLE CONTENT
|
|
|
|
.article-content {
|
2020-04-13 14:01:36 +00:00
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-figure {
|
|
|
|
margin: 0 0 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.article-image {
|
|
|
|
max-width: 100%;
|
|
|
|
margin: 0 0 1em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.canon {
|
2020-04-13 14:01:36 +00:00
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
2021-01-10 18:39:29 +00:00
|
|
|
a.footnote-ref {
|
|
|
|
margin-left: 0.3em;
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2021-01-10 18:39:29 +00:00
|
|
|
&::before {
|
2020-04-13 14:01:36 +00:00
|
|
|
content: "[";
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2021-01-10 18:39:29 +00:00
|
|
|
&::after {
|
2020-04-13 14:01:36 +00:00
|
|
|
content: "]";
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.emojify {
|
2020-04-13 14:01:36 +00:00
|
|
|
font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols;
|
|
|
|
font-size: 1.5rem;
|
|
|
|
vertical-align: middle;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SHORTCODE CONTENT
|
|
|
|
.twitter-tweet {
|
2020-04-13 14:01:36 +00:00
|
|
|
font-family: $sans-serif !important;
|
|
|
|
border-left: 4px solid $teal !important;
|
2020-02-02 17:13:02 +00:00
|
|
|
color: $gray-dark !important;
|
2020-04-13 14:01:36 +00:00
|
|
|
font-size: 1rem !important;
|
|
|
|
font-style: italic !important;
|
|
|
|
margin-left: 0em;
|
|
|
|
padding-left: 1.3em !important;
|
|
|
|
|
|
|
|
p {
|
|
|
|
font-size: 1.1em;
|
|
|
|
font-style: normal;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
line-height: 155%;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $gray-dark !important;
|
|
|
|
text-decoration: underline !important;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2020-04-13 14:01:36 +00:00
|
|
|
a:hover,
|
|
|
|
a:focus {
|
|
|
|
text-decoration: underline !important;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.__h_instagram.card {
|
2020-04-13 14:01:36 +00:00
|
|
|
font-family: $sans-serif !important;
|
|
|
|
font-size: 1.1em !important;
|
|
|
|
border: 1px solid $gray-light;
|
|
|
|
margin-top: 1.2em !important;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ARTICLE FOOTER
|
2020-04-13 14:01:36 +00:00
|
|
|
.kofi-button {
|
|
|
|
margin: 0.75em 0em 0.5em 0em;
|
|
|
|
}
|
|
|
|
|
2020-02-02 17:13:02 +00:00
|
|
|
.post-footer {
|
2020-04-13 14:01:36 +00:00
|
|
|
font-size: 0.95rem;
|
|
|
|
color: $gray-light;
|
|
|
|
border-bottom: 1px solid $gray-lightest;
|
|
|
|
padding-bottom: 1.8em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.hidden {
|
2020-04-13 14:01:36 +00:00
|
|
|
visibility: hidden;
|
|
|
|
border-bottom: 0px solid;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-footer {
|
2020-04-13 14:01:36 +00:00
|
|
|
padding: 1.5em 0em 2em 0em;
|
|
|
|
font-size: 0.95rem;
|
2020-02-02 17:13:02 +00:00
|
|
|
color: $gray-light;
|
2020-04-13 14:01:36 +00:00
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
color: $gray-light;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer-divider {
|
2020-04-13 14:01:36 +00:00
|
|
|
color: $gray-lightest;
|
|
|
|
margin-bottom: 1.5em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ARCHIVES PAGE
|
|
|
|
.archives-list {
|
2020-04-13 14:01:36 +00:00
|
|
|
padding-left: 0em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.archives-list-item {
|
2020-04-13 14:01:36 +00:00
|
|
|
display: flex;
|
|
|
|
margin: 0.5em 0em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.archives-list-item-date {
|
2020-04-13 14:01:36 +00:00
|
|
|
width: 60px;
|
|
|
|
margin-right: 0.25em;
|
|
|
|
color: $gray-light;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 404 PAGE
|
|
|
|
.not-found-title {
|
2020-04-13 14:01:36 +00:00
|
|
|
margin-bottom: 0em;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MAIN FOOTER
|
|
|
|
.footer {
|
2020-04-13 14:01:36 +00:00
|
|
|
visibility: hidden;
|
|
|
|
height: 0;
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer-mobile {
|
2020-04-13 14:01:36 +00:00
|
|
|
margin-top: 2em;
|
|
|
|
max-width: 100%;
|
|
|
|
padding: 0em 1.5em 0.75em 1.5em;
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
|
|
.footer-mobile-links {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2020-04-13 14:01:36 +00:00
|
|
|
.divider-bar {
|
|
|
|
color: $gray-light;
|
|
|
|
padding: 0em 0.25em;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
footer {
|
2020-04-13 14:01:36 +00:00
|
|
|
text-align: center;
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2020-04-13 14:01:36 +00:00
|
|
|
.social-icons {
|
|
|
|
margin: 0 0 1.25em -.5em;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2020-04-13 14:01:36 +00:00
|
|
|
.social-icon {
|
|
|
|
padding: 0.3em 0.5em;
|
|
|
|
margin: 0.32em 0.1em;
|
|
|
|
display: inline-block;
|
|
|
|
height: 2em;
|
|
|
|
position: relative;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2020-04-13 14:01:36 +00:00
|
|
|
.social-icon>svg:hover {
|
|
|
|
fill: $gray-medium;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2020-04-13 14:01:36 +00:00
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
font-size: 0.95rem;
|
|
|
|
color: $gray-light;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2020-04-13 14:01:36 +00:00
|
|
|
a:visited {
|
|
|
|
color: $gray-light;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
|
2020-04-13 14:01:36 +00:00
|
|
|
a:hover {
|
|
|
|
color: $gray-medium;
|
|
|
|
}
|
2020-02-02 17:13:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// BREAKPOINTS
|
|
|
|
@import "partials/_breakpoints";
|
2020-04-03 12:26:09 +00:00
|
|
|
@import "custom";
|