- Loads of bug fixes. - CSS improvements. - Tags added. - Optimized some things. - Some other oddities? I don't know :3 - Happiness increased by 2%.
55 lines
665 B
CSS
55 lines
665 B
CSS
html {
|
|
background-color: black;
|
|
color: white;
|
|
overflow-x: hidden;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
header {
|
|
border-bottom-style: solid;
|
|
|
|
height: 5vh;
|
|
}
|
|
|
|
body {
|
|
margin: 0px;
|
|
text-align: center;
|
|
}
|
|
|
|
.Hidden {
|
|
visibility: hidden;
|
|
display: none;
|
|
}
|
|
|
|
.Button {
|
|
margin: auto;
|
|
|
|
border-style: solid;
|
|
border-width: 6px;
|
|
border-color: #00FFFF;
|
|
|
|
padding: 8vh 6vw;
|
|
|
|
justify-content: center;
|
|
background: linear-gradient(#dcdcdc, #b4b4b4);
|
|
color: black;
|
|
}
|
|
|
|
.SmallButton {
|
|
margin-top: 30px;
|
|
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
|
|
footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
border-top-style: solid;
|
|
|
|
height: 10vh;
|
|
}
|