2023-09-05 09:04:54 -04:00
|
|
|
.container {
|
|
|
|
display: flex;
|
|
|
|
background-color: lightyellow;
|
|
|
|
height: calc(100vh - 20px);
|
|
|
|
}
|
|
|
|
.controls {
|
|
|
|
background-color: lightgrey;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2023-09-06 23:44:29 -04:00
|
|
|
justify-content: space-around;
|
|
|
|
flex-direction: column;
|
|
|
|
flex: 25%;
|
2023-09-05 09:04:54 -04:00
|
|
|
}
|
|
|
|
.imagebox {
|
|
|
|
padding: 2rem;
|
2023-09-06 23:44:29 -04:00
|
|
|
flex: 75%;
|
2023-09-05 09:04:54 -04:00
|
|
|
}
|
2023-09-05 18:42:47 -04:00
|
|
|
|
2023-09-05 09:04:54 -04:00
|
|
|
.image-surface {
|
|
|
|
overflow: hidden;
|
|
|
|
margin: auto;
|
|
|
|
border: 1px solid;
|
|
|
|
height: 100%;
|
2023-09-05 18:42:47 -04:00
|
|
|
width: auto;
|
|
|
|
--collage-ap: 110 / 85;
|
|
|
|
aspect-ratio: var(--collage-ap);
|
2023-09-05 09:04:54 -04:00
|
|
|
}
|
|
|
|
.showbuton {
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|
|
|
|
|
2023-09-06 23:44:29 -04:00
|
|
|
.templates {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
gap: 1rem;
|
2023-09-05 09:04:54 -04:00
|
|
|
}
|
2023-09-06 23:44:29 -04:00
|
|
|
|
|
|
|
.templates li {
|
|
|
|
list-style-type: none;
|
2023-09-05 09:04:54 -04:00
|
|
|
}
|
2023-09-06 23:44:29 -04:00
|
|
|
|
|
|
|
#page_size_selector {
|
|
|
|
width: 100%;
|
2023-09-05 09:04:54 -04:00
|
|
|
}
|
2023-09-06 23:44:29 -04:00
|
|
|
|
|
|
|
.template {
|
|
|
|
width: 100px;
|
|
|
|
height: 100px;
|
2023-09-05 09:04:54 -04:00
|
|
|
}
|
|
|
|
|
2023-09-06 23:44:29 -04:00
|
|
|
.template div {
|
|
|
|
border: 1px solid;
|
2023-09-05 09:04:54 -04:00
|
|
|
}
|
|
|
|
|
2023-09-06 23:44:29 -04:00
|
|
|
.single div {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2023-09-05 09:04:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
.one-two {
|
|
|
|
display: grid;
|
|
|
|
grid-template-areas:
|
|
|
|
"one two"
|
|
|
|
"one three";
|
|
|
|
}
|
|
|
|
.one-two .img1{
|
|
|
|
grid-area: one;
|
|
|
|
}
|
|
|
|
|
2023-09-06 23:44:29 -04:00
|
|
|
.half-leftright {
|
|
|
|
display:flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
.half-leftright .img {
|
|
|
|
flex: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.half-topbottom .img {
|
|
|
|
width: 100%;
|
2023-09-05 09:04:54 -04:00
|
|
|
height: 50%;
|
|
|
|
}
|
2023-09-06 23:44:29 -04:00
|
|
|
|
|
|
|
.two-one-two-leftright {
|
|
|
|
display: grid;
|
|
|
|
grid-template-areas:
|
|
|
|
"one two two three"
|
|
|
|
"four two two five";
|
2023-09-05 09:04:54 -04:00
|
|
|
}
|
2023-09-06 23:44:29 -04:00
|
|
|
.two-one-two-leftright .img2 {
|
|
|
|
grid-area: two;
|
2023-09-05 09:04:54 -04:00
|
|
|
}
|
2023-09-06 23:44:29 -04:00
|
|
|
|
|
|
|
.two-one-two-topbottom {
|
|
|
|
display: grid;
|
|
|
|
grid-template-areas:
|
|
|
|
"one two"
|
|
|
|
"three three"
|
|
|
|
"three three"
|
|
|
|
"four five"
|
|
|
|
}
|
|
|
|
|
|
|
|
.two-one-two-topbottom .img3 {
|
|
|
|
grid-area: three;
|
2023-09-05 09:04:54 -04:00
|
|
|
}
|