Merge branch 'content-setto'

This commit is contained in:
sakrecoer 2020-11-17 17:19:17 +01:00
commit fd1f7357fe
2 changed files with 4 additions and 4 deletions

View file

@ -6,5 +6,5 @@ border_rgba: 'rgb(0, 0, 0)'
border-alt_rgba: 'rgba(0, 0, 0, 0.75)'
accent1_rgba: 'rgb(56, 255, 89)'
accent1-alt_rgba: 'rgba(56, 255, 89, 0.75)'
accent2_rgba: 'rgb(141, 62, 216)'
accent2-alt_rgba: 'rgba(141, 62, 216, 0.75)'
accent2_rgba: 'rgb(233, 157, 254)'
accent2-alt_rgba: 'rgba(233, 157, 254, 0.75)'

View file

@ -20,14 +20,14 @@ strong {
a {
text-decoration-style: wavy;
text-decoration-color: transparent;
color: var(--accent2);
color: var(--accent1);
-moz-transition: all var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
-webkit-transition: all var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
-ms-transition: all var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
transition: all var(--anim-speed) ease-in-out, color var(--anim-speed) ease-in-out;
}
a:hover {
color: var(--accent1);
color: var(--accent2);
text-decoration-style: wavy;
text-decoration-color: unset;
}