1
0
mirror of https://github.com/danbee/cv synced 2025-03-04 08:59:12 +00:00
cv/source/css/elements/_a.scss
Dan Barber 4346f8a3ba Lots of changes and updates
* Start organizing CSS according to ITCSS

* Replace logo with rainbow db

* Add Imagine Learning to experience

* Refactor layout to use CSS grid
2023-06-25 18:13:26 -05:00

39 lines
599 B
SCSS

a {
outline: none;
color: hsl(202, 77%, 39%);
text-decoration: none;
&:visited {
outline: none;
color: hsl(202, 77%, 39%);
text-decoration: none;
}
&:hover,
&:focus {
outline: none;
color: hsl(202, 67%, 29%);
text-decoration: underline;
}
&:active {
outline: none;
color: rgb(0, 0, 0);
}
@media (prefers-color-scheme: dark) {
color: hsl(202, 67%, 59%);
&:visited {
color: hsl(202, 67%, 59%);
}
&:hover,
&:focus {
outline: none;
color: hsl(202, 67%, 79%);
text-decoration: underline;
}
}
}