- Animation improvements on `Index.html`. - Reduced the amount of code (and improved readability) of the APIs. - Optimizations as well, but not that much. - Accounts are now viewable. You can also follow and block them to your heart's content (I don't know what happens when you both block and follow). - Many, many bug fixes that made it through. Reviewed-on: #40
56 lines
676 B
CSS
56 lines
676 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: 8%;
|
|
|
|
display: flex;
|
|
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;
|
|
}
|