Template:Mouse-ripple/styles.css: Difference between revisions
Jump to navigation
Jump to search
Content deleted Content added
Created page with "a, pre, code, .noripple, .heimu, .hover { position: relative !important; } .mouse-ripple { width: 100%; height: 100%; position: fixed; top: 0; left: 0..." |
Username changed the content model of the page Template:Mouse-ripple/styles.css from "CSS" to "Sanitized CSS" Tag: content model change |
(One intermediate revision by one other user not shown) | |
(No difference)
|
Latest revision as of 01:10, 10 September 2023
a,
pre,
code,
.noripple,
.heimu,
.hover {
position: relative !important;
}
.mouse-ripple {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
}
.mouse-ripple b {
display: block;
}
.mouse-ripple .a {
height: 2vw;
}
.mouse-ripple .a .b {
width: 2vw;
height: 2vw;
display: inline-block;
overflow: hidden;
opacity: 0.7;
}
.mouse-ripple .a .b>b {
height: 100%;
border-radius: 50%;
overflow: hidden;
transition: all 0.5s;
transform: scale(0);
opacity: 0;
}
.mouse-ripple .a .b>b::before {
content: '';
width: 100%;
height: 100%;
display: block;
box-sizing: border-box;
border-color: inherit;
border: 1vw solid;
}
.mouse-ripple .a .b:hover b {
transition-duration: 0s;
transform: scale(1);
opacity: 1;
}