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;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
|
|
||||||
|
transition: background-color 0.5s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -157,18 +159,30 @@ ul, li {
|
||||||
&::before {
|
&::before {
|
||||||
background-color: rgba(255, 200, 200);
|
background-color: rgba(255, 200, 200);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:hover::before {
|
||||||
|
background-color: rgba(255, 150, 150);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bg--green {
|
.bg--green {
|
||||||
&::before {
|
&::before {
|
||||||
background-color: rgba(200, 255, 200);
|
background-color: rgba(200, 255, 200);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:hover::before {
|
||||||
|
background-color: rgba(150, 255, 150);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.bg--blue {
|
.bg--blue {
|
||||||
&::before {
|
&::before {
|
||||||
background-color: rgba(200, 200, 255);
|
background-color: rgba(200, 200, 255);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&:hover::before {
|
||||||
|
background-color: rgba(150, 150, 255);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.feature {
|
.feature {
|
||||||
|
|
Loading…
Reference in New Issue