Des's profile picture

Published by

published
updated

Category: Web, HTML, Tech

temporary post for win7 css stuff

idk how long it has been since this site hasn't allowed layout posting yet, so here's a temporary post where i made some edits to my existing windows 7 layout.

fix win7 layout bg (just replace the body tag in this layout):

   body {

        background-image: url(https://static.miraheze.org/windowswallpaperwiki/5/50/Img0_%28Windows_7%29.jpg);

        background-size: cover;

        background-attachment: fixed;

        background-position: center;

        }

startup intro:

<style>

body:before {

content: " ";

height: 100vh;

width: 100vw;

display: block;

position: fixed;

top: 0;

left: 0;

z-index: 100;

background-image: url('https://j.gifs.com/vM8jrO.gif');

background-size: cover;

background-repeat: no-repeat;

background-position:center;

animation: youranimation 4.5s ease 0s 1 normal forwards;

pointer-events: none;

}

@keyframes youranimation { 0.0%{ opacity: 1;} 75%{ opacity: 1; } 100%{ opacity: 0;} }

</style>

win7 cursor:

<style>

*{

cursor: url(https://i.ibb.co/qpXjDXd/windows7-arrow.png), auto;

}

</style>


0 Kudos

Comments

Comments disabled.