User:QFQ/Mouse-ripple/styles.css: Difference between revisions

From TestWiki
Content added Content deleted
m (QFQ moved page Template:Ejdfhfi/styles.css to User:QFQ/Mouse-ripple/styles.css without leaving a redirect)
No edit summary
 
Line 55: Line 55:
transform: scale(1);
transform: scale(1);
opacity: 1;
opacity: 1;
}

.comment-container-top,
.comment-container,
.comment-replybox {
position: relative !important;
}
#left-navigation, #right-navigation, #footer-places {
position: relative;
z-index: 100;
}
#siteNotice, #mw-panel {
z-index: 100;
}
}

Latest revision as of 12:49, 14 March 2021

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;
}

.comment-container-top,
.comment-container,
.comment-replybox {
    position: relative !important;
}
#left-navigation, #right-navigation, #footer-places {
  position: relative;
  z-index: 100;
}
#siteNotice, #mw-panel {
  z-index: 100;
}