29 lines
428 B
CSS
29 lines
428 B
CSS
.misc-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
justify-content: center;
|
|
position: relative;
|
|
padding: 1.25rem;
|
|
}
|
|
|
|
.misc-bg {
|
|
inline-size: 100%;
|
|
position: absolute;
|
|
inset-inline-start: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
.misc-object {
|
|
position: absolute;
|
|
bottom: 8%;
|
|
z-index: 1;
|
|
}
|
|
html:not([dir=rtl]) .misc-object {
|
|
left: 16%;
|
|
}
|
|
[dir=rtl] .misc-object {
|
|
right: 10%;
|
|
}
|