User:তাহমিদ/Sandbox/style.css: Difference between revisions

From TestWiki
Content added Content deleted
(তাহমিদ changed the content model of the page User:তাহমিদ/Sandbox/style.css from "CSS" to "Sanitized CSS": test)
Tags: content model change Mobile edit Mobile web edit Advanced mobile edit
No edit summary
Tags: Mobile edit Mobile web edit Advanced mobile edit
 
(15 intermediate revisions by the same user not shown)
Line 1: Line 1:
@keyframes myOwnAnimation {
.mw-body {
font-size: 11px;
0% { bottom: 0; }
5% { bottom: 5vh; }
50% { top: 50vh; }
95% { top: 5vh; }
100% { top: 0; }
}

.myOwnClass {
position:fixed;
bottom: 0;
right: 0;
animation-name: myOwnAnimation;
animation-duration: 4s;
animation-delay: 2s;
animation-iteration-count: infinite;
/*animation-direction: alternate;*/
animation-timing-function: linear;
}
}

Latest revision as of 04:47, 21 July 2021

@keyframes myOwnAnimation {
    0% { bottom: 0; }
    5% { bottom: 5vh; }
    50% { top: 50vh; }
    95% { top: 5vh; }
    100% { top: 0; }
}

.myOwnClass {
    position:fixed;
    bottom: 0;
    right: 0;
    animation-name: myOwnAnimation;
    animation-duration: 4s;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    /*animation-direction: alternate;*/
    animation-timing-function: linear;
}