User:Angeleno/common.css: Difference between revisions

From Screamer Wiki
Jump to: navigation, search
(Created page with "body { background-image: url(https://s.kncdn.org/image/mona2.png); background-position: bottom right; background-repeat: no-repeat; background-attachment: fixed; }")
 
No edit summary
Line 1: Line 1:
body {
body::before {
background-image: url(https://s.kncdn.org/image/mona2.png);
    content: "";
background-position: bottom right;
    background-image: url(https://s.kncdn.org/image/mona2.png);
background-repeat: no-repeat;
    background-position: bottom right;
background-attachment: fixed;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
}

Revision as of 18:08, 30 July 2023

body::before {
    content: "";
    background-image: url(https://s.kncdn.org/image/mona2.png);
    background-position: bottom right;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}