42 lines
486 B
CSS
42 lines
486 B
CSS
/* HTML items */
|
|
img, video {
|
|
border-style: solid;
|
|
border-radius: 1%;
|
|
|
|
width: 45%;
|
|
}
|
|
|
|
html {
|
|
overflow-x: hidden;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
/* 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;
|
|
}
|
|
|
|
.Button {
|
|
margin-top: 30px;
|
|
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|