24 lines
661 B
CSS
24 lines
661 B
CSS
<!-- start Simple Custom CSS and JS -->
|
|
<style type="text/css">
|
|
/*** PAULINE CUSTOM CSS CODE ***/
|
|
|
|
.ls-bottom-slidebuttons a{
|
|
background-color:rgba(139, 195, 74, 0.3)!important;
|
|
transition: all 1000ms ease-in-out;
|
|
}
|
|
.ls-gui-element:hover,
|
|
.ls-nav-next:hover,
|
|
.ls-nav-prev:hover{
|
|
background-color:rgba(139, 195, 74, 0.9)!important;
|
|
-webkit-transition: background-color 1000ms ease-in-out;
|
|
-ms-transition: background-color 1000ms ease-in-out;
|
|
transition: background-color 1000ms ease-in-out;
|
|
}
|
|
.ls-bottom-slidebuttons a:hover,
|
|
.ls-bottom-slidebuttons a:active{
|
|
background-color:#8bc34a!important;
|
|
}
|
|
|
|
</style>
|
|
<!-- end Simple Custom CSS and JS -->
|