- 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
34 lines
334 B
CSS
34 lines
334 B
CSS
html {
|
|
overflow-x: hidden;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
header {
|
|
height: 5vh;
|
|
}
|
|
|
|
body {
|
|
margin: 0px;
|
|
text-align: center;
|
|
}
|
|
|
|
section {
|
|
height: 75vh;
|
|
}
|
|
|
|
.SmallButton {
|
|
margin-top: 30px;
|
|
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
|
|
footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
height: 5vh;
|
|
}
|