You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
509 B
CSS

12 months ago
body {
height: 100vh;
width: 100vw;
margin: 0;
padding: 0;
background: url("../img/wallpaper.jpg");
background-size: cover;
background-position: center;
}
.window {
position: absolute;
12 months ago
overflow: hidden;
12 months ago
height: 300px;
width: 500px;
top: 16px;
left: 16px;
}
.window.active {
z-index: 2;
}
.window-body {
padding: 8px 12px;
height: calc(100% - 52px);
12 months ago
width: calc(100% - 38px);
12 months ago
overflow: auto;
}
h1,h2,h3,h4,h5,h6,p {
margin: 0;
}