47 lines
579 B
CSS
47 lines
579 B
CSS
html {
|
|
background-color: black;
|
|
color: white;
|
|
overflow-x: hidden;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
header {
|
|
border-bottom-style: solid;
|
|
|
|
height: 5vh;
|
|
}
|
|
|
|
.Hidden {
|
|
visibility: hidden;
|
|
display: none;
|
|
}
|
|
|
|
.Button {
|
|
border-style: solid;
|
|
border-width: 6px;
|
|
border-color: #00FFFF;
|
|
|
|
padding: 25vh 8vw;
|
|
|
|
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;
|
|
}
|