New link style

This commit is contained in:
Bradlee Speice 2019-05-10 13:27:55 -04:00
parent 78f37a6283
commit 829ea983b0
3 changed files with 33 additions and 18 deletions

View File

@ -96,7 +96,13 @@ a {
display: inline-block; display: inline-block;
padding: 1px 1px; padding: 1px 1px;
transition: color ease 0.3s; transition: color ease 0.3s;
border-bottom-color: $c-accent__blue;
border-bottom-style: dotted;
border-bottom-width: 1px;
word-wrap: break-word;
word-break: break-all;
/* Hover animation effect for all buttons */ /* Hover animation effect for all buttons */
&::after { &::after {
content: ''; content: '';
@ -112,6 +118,7 @@ a {
&:hover { &:hover {
color: white; color: white;
border-bottom-style: solid;
&::after { &::after {
height: 100%; height: 100%;
} }

View File

@ -84,24 +84,28 @@
margin-left: 2.1rem; margin-left: 2.1rem;
} }
.web-container { li {
position: relative; margin-top: 1em;
width: 100%; }
max-width: 100%;
height: 0;
padding-bottom: 62.5%;
border: 1px solid #cacaca;
overflow: hidden;
}
.web-container iframe { .web-container {
position: absolute; position: relative;
top: 0; width: 100%;
left: 0; max-width: 100%;
width: 100%; height: 0;
max-width: 100%; padding-bottom: 62.5%;
height: 100%; border: 1px solid #cacaca;
} overflow: hidden;
}
.web-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
max-width: 100%;
height: 100%;
}
} }
.c-article__footer { .c-article__footer {

View File

@ -18,6 +18,10 @@
p { p {
@include fs--meta; @include fs--meta;
} }
a {
border-bottom-style: none;
}
} }
.c-page__footer { .c-page__footer {