User:Culi/common.css: Difference between revisions

Content deleted Content added
Culi (talk | contribs)
fix background
Culi (talk | contribs)
use left and top instead
Line 34: Line 34:
width: 100%;
width: 100%;
height: 100%;
height: 100%;
left: 10px;
top: 10px;
transition: all 0.25s ease-in-out;
transform: translate(10px, 10px);
transition: transform 0.25s ease-in-out;
}
}


#content .fancy-button:hover::after {
#content .fancy-button:hover::after {
left: 0;
transform: translate(0, 0);
top: 0;
}
}