Portfolio/pages/effects.css

49 lines
759 B
CSS
Raw Permalink Normal View History

2021-09-16 15:03:14 +01:00
a:not(.galleryLink){
transition: background-color 0.5s
}
a:hover:not(.galleryLink){
background-color: #ffd256;
color: #181818;
border-radius: 2px;
text-decoration: none;
}
span{
background-color: #ffd256;
color: #181818;
border-radius: 2px;
}
span:hover{
background-color: #181818;
color: #ffd256;
border-radius: 2px;
outline: solid 1px #ffd256;
}
::selection {
background-color: #ffd256;
color: #181818;
}
::-moz-selection {
background-color: #ffd256;
color: #181818;
}
::-o-selection {
background-color: #ffd256;
color: #181818;
}
::-ms-selection {
background-color: #ffd256;
color: #181818;
}
::-webkit-selection {
background-color: #ffd256;
color: #181818;
2021-09-17 23:22:11 +01:00
}