77 lines
1.4 KiB
CSS
77 lines
1.4 KiB
CSS
.mediapicker-container {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-flow: row wrap;
|
|
justify-content: start;
|
|
align-items: center;
|
|
gap: 10px;
|
|
|
|
width: 100%;
|
|
}
|
|
.mediapicker-media {
|
|
display: flex;
|
|
object-fit: cover;
|
|
width: 240px;
|
|
height: 240px;
|
|
}
|
|
.mediapicker-new {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
width: 240px;
|
|
height: 240px;
|
|
|
|
font-size: 40px;
|
|
background-color: gainsboro;
|
|
color: white;
|
|
}
|
|
.mediapicker-new:hover {
|
|
cursor: pointer;
|
|
}
|
|
.mediapicker-delete {
|
|
position: relative;
|
|
right: 25px;
|
|
top: 10px;
|
|
|
|
color: red;
|
|
font-size: 18px;
|
|
width: fit-content;
|
|
height: fit-content;
|
|
}
|
|
.mediapicker-delete:hover {
|
|
cursor: pointer;
|
|
}
|
|
.mediapicker-new-photo-section {
|
|
width: 90%;
|
|
height: 30px;
|
|
font-size: 13px;
|
|
font-family: Source Sans Pro;
|
|
background-color: white;
|
|
color: black;
|
|
|
|
padding: 3px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.mediapicker-new-video-section {
|
|
width: 90%;
|
|
height: 30px;
|
|
background-color: white;
|
|
color: black;
|
|
|
|
padding: 3px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
.mediapicker-new-video-section-input {
|
|
height: 100%;
|
|
background-color: white;
|
|
border: solid 0.5px #d8d8d8;
|
|
|
|
width: 100%;
|
|
text-indent: 10px;
|
|
font-family: Source Sans Pro;
|
|
} |