- 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
36 lines
476 B
CSS
36 lines
476 B
CSS
.Button {
|
|
margin-top: 30px;
|
|
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
|
|
body {
|
|
margin: 0px;
|
|
text-align: center;
|
|
}
|
|
|
|
footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
height: 5vh;
|
|
}
|
|
|
|
/* Mastodon things */
|
|
.Entry {
|
|
border-left: 2px solid;
|
|
border-right: 1px dashed;
|
|
border-top: 2px solid;
|
|
border-bottom: 2px solid;
|
|
}
|
|
|
|
.Exitry {
|
|
border-left: 1px dashed;
|
|
border-right: 2px solid;
|
|
border-top: 2px solid;
|
|
border-bottom: 2px solid;
|
|
}
|