You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
833 B
SCSS
28 lines
833 B
SCSS
@use "../themes/after-dark/sass/site.scss";
|
|
|
|
$primary-color: #bd5ec2;
|
|
$secondary-color: #f862a7;
|
|
|
|
body.dark,html {
|
|
background-color: #16001a;
|
|
}
|
|
|
|
nav a.active {
|
|
background-color: $secondary-color;
|
|
color: #fff;
|
|
}
|
|
a {
|
|
color: $primary-color;
|
|
border-bottom: 1px solid $secondary-color
|
|
}
|
|
a:hover {
|
|
background-color: $secondary-color;
|
|
}
|
|
a[itemprop="url"] {
|
|
color: $primary-color;
|
|
}
|
|
a[href*="://"]::after,
|
|
a[rel*="external"] {
|
|
content: " " url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20class='i-external'%20viewBox='0%200%2032%2032'%20width='14'%20height='14'%20fill='none'%20stroke='%23bd5ec2'%20stroke-linecap='round'%20stroke-linejoin='round'%20stroke-width='9.38%'%3E%3Cpath%20d='M14%209%20L3%209%203%2029%2023%2029%2023%2018%20M18%204%20L28%204%2028%2014%20M28%204%20L14%2018'/%3E%3C/svg%3E");
|
|
}
|