background color change on orbital hover
This commit is contained in:
parent
666d7ff5cf
commit
ee509c1f23
14
style.css
14
style.css
|
@ -150,6 +150,8 @@ ul, li {
|
|||
top: 0;
|
||||
left: 0;
|
||||
border-radius: 50%;
|
||||
|
||||
transition: background-color 0.5s;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -157,18 +159,30 @@ ul, li {
|
|||
&::before {
|
||||
background-color: rgba(255, 200, 200);
|
||||
}
|
||||
|
||||
&:hover::before {
|
||||
background-color: rgba(255, 150, 150);
|
||||
}
|
||||
}
|
||||
|
||||
.bg--green {
|
||||
&::before {
|
||||
background-color: rgba(200, 255, 200);
|
||||
}
|
||||
|
||||
&:hover::before {
|
||||
background-color: rgba(150, 255, 150);
|
||||
}
|
||||
}
|
||||
|
||||
.bg--blue {
|
||||
&::before {
|
||||
background-color: rgba(200, 200, 255);
|
||||
}
|
||||
|
||||
&:hover::before {
|
||||
background-color: rgba(150, 150, 255);
|
||||
}
|
||||
}
|
||||
|
||||
.feature {
|
||||
|
|
Loading…
Reference in New Issue