27 lines
325 B
CSS
27 lines
325 B
CSS
/* HTML items */
|
|
img, video {
|
|
border-style: solid;
|
|
border-radius: 1%;
|
|
|
|
width: 45%;
|
|
}
|
|
|
|
/* Classes */
|
|
.Handle {
|
|
background-color: white;
|
|
}
|
|
|
|
.Origin {
|
|
background-color: grey;
|
|
}
|
|
|
|
.PostText {
|
|
background-color: #00ECE8;
|
|
}
|
|
|
|
.Images {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
background-color: #050505;
|
|
}
|