mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
50 lines
813 B
Plaintext
50 lines
813 B
Plaintext
.background_image_controls{
|
|
width: 100%;
|
|
margin: auto;
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
> div {
|
|
width: 100%;
|
|
margin: 0 10px;
|
|
}
|
|
}
|
|
|
|
.background_image_uploader{
|
|
width: 100%;
|
|
margin: auto;
|
|
display: flex;
|
|
flex-direction: row;
|
|
text-align: center;
|
|
|
|
> div {
|
|
width: 100%;
|
|
margin: 0 10px;
|
|
}
|
|
}
|
|
|
|
.background_image_preview{
|
|
position: relative;
|
|
height: 50%;
|
|
|
|
img{
|
|
z-index: 9;
|
|
width: 100%;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.text_wrapper{
|
|
position: absolute;
|
|
z-index: 10;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
width: 100%;
|
|
|
|
h1{
|
|
font-size: 68px;
|
|
}
|
|
}
|
|
} |