Basically when I do a hover I want the effect to look like what is displayed below:
My site is here
Code is below disregard the !important:
.cta-button-menu, .cta-button-menu::before {
transition:all 0.3s linear !important;
width: 120px !important;
height: 50px !important;
display: inline-flex !important;
justify-content: center !important;
align-items: center !important;
}
.cta-button-menu:hover {
transform:rotateZ(-45deg) !important;
background: #21B6CD !important;
color: white !important;
}
.cta-button-menu::before {
content:"Book Now" !important;
background-color:transparent !important;
position:absolute !important;
@include main-font($white, 16px !important, $font-bold !important);
}
.cta-button-menu:hover::before{
transform: rotateZ(90deg) !important;
background-color:#e72f54 !important;
border:none !important;
}
For some reason I cant get the blue button to overlap the red:before button. Can’t figure it out
3
Answers
@SinsiaM you got me thinking a bit on this and I just changed the following:
Exchange the colors in
.cta-button-menu:hover
setbackground: #e72f54
and.cta-button-menu:hover::before
setbackground-color:#21B6CD
. And also change the degrees. Hope this works on your sideYou can achieve this using a
transform
andtransform-style
.https://codepen.io/James0r/pen/GRBqjOb
Not supported in IE11.