- Loads of bug fixes. - CSS improvements. - Tags added. - Optimized some things. - Some other oddities? I don't know :3 - Happiness increased by 2%.
62 lines
708 B
CSS
62 lines
708 B
CSS
/* HTML items */
|
|
img, video {
|
|
border-style: solid;
|
|
border-radius: 1%;
|
|
|
|
background-color: yellow;
|
|
|
|
width: 45%;
|
|
}
|
|
|
|
body {
|
|
margin: 0px;
|
|
text-align: center;
|
|
}
|
|
|
|
.Embed {
|
|
border-style: solid;
|
|
border-radius: 2%;
|
|
|
|
background-color: yellow;
|
|
}
|
|
|
|
/* Classes */
|
|
.Handle {
|
|
background-color: white;
|
|
}
|
|
|
|
.Origin {
|
|
background-color: grey;
|
|
}
|
|
|
|
.PostText {
|
|
background-color: #00FFFF;
|
|
}
|
|
|
|
.Images {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
background-color: #050505;
|
|
}
|
|
|
|
.Favorite, .Boost, .Reply {
|
|
margin: auto;
|
|
}
|
|
|
|
.Button {
|
|
margin-top: 30px;
|
|
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
|
|
footer {
|
|
display: flex;
|
|
justify-content: center;
|
|
|
|
height: 5vh;
|
|
}
|