2023-03-19 22:19:43 +00:00
|
|
|
* {
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2023-03-10 21:59:45 +00:00
|
|
|
*,
|
|
|
|
:after,
|
|
|
|
:before {
|
|
|
|
border: 0 solid #e5e7eb;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-container {
|
|
|
|
align-items: center;
|
2023-03-19 22:19:43 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2023-03-10 21:59:45 +00:00
|
|
|
justify-content: center;
|
|
|
|
perspective: 600px;
|
2023-03-20 22:21:18 +00:00
|
|
|
height: 430px;
|
2023-03-10 21:59:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.book-container .book {
|
2023-03-19 22:19:43 +00:00
|
|
|
animation: 1s ease 0s 1 initAnimation-fd6a;
|
2023-03-20 22:21:18 +00:00
|
|
|
height: 450px;
|
|
|
|
margin-bottom: 15px;
|
2023-03-19 22:19:43 +00:00
|
|
|
margin-top: 39px;
|
2023-03-10 21:59:45 +00:00
|
|
|
position: relative;
|
|
|
|
transform: rotateY(-30deg);
|
2023-03-19 22:19:43 +00:00
|
|
|
transform-style: preserve-3d;
|
2023-03-10 21:59:45 +00:00
|
|
|
transition: transform 1s ease;
|
2023-03-19 22:19:43 +00:00
|
|
|
width: 200px;
|
2023-03-10 21:59:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.book-container .book > :first-child {
|
2023-03-19 22:19:43 +00:00
|
|
|
background-color: #01060f;
|
|
|
|
background-color: #01060f;
|
|
|
|
border-radius: 0 2px 2px 0;
|
|
|
|
box-shadow: 5px 5px 20px #aaaaaa9d;
|
|
|
|
height: 283px;
|
|
|
|
left: 0;
|
2023-03-10 21:59:45 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
transform: translateZ(25px);
|
2023-03-19 22:19:43 +00:00
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-container .book::after {
|
2023-03-10 21:59:45 +00:00
|
|
|
background-color: #01060f;
|
|
|
|
border-radius: 0 2px 2px 0;
|
2023-03-19 22:19:43 +00:00
|
|
|
box-shadow: -5px 0 20px 10px #aaaaaa9d;
|
|
|
|
content: " ";
|
|
|
|
height: 283px;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
transform: translateZ(-25px);
|
|
|
|
width: 200px;
|
2023-03-10 21:59:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.book-container .book::before {
|
|
|
|
background: linear-gradient(
|
|
|
|
90deg,
|
|
|
|
#fff 0%,
|
|
|
|
#f9f9f9 5%,
|
|
|
|
#fff 10%,
|
|
|
|
#f9f9f9 15%,
|
|
|
|
#fff 20%,
|
|
|
|
#f9f9f9 25%,
|
|
|
|
#fff 30%,
|
|
|
|
#f9f9f9 35%,
|
|
|
|
#fff 40%,
|
|
|
|
#f9f9f9 45%,
|
|
|
|
#fff 50%,
|
|
|
|
#f9f9f9 55%,
|
|
|
|
#fff 60%,
|
|
|
|
#f9f9f9 65%,
|
|
|
|
#fff 70%,
|
|
|
|
#f9f9f9 75%,
|
|
|
|
#fff 80%,
|
|
|
|
#f9f9f9 85%,
|
|
|
|
#fff 90%,
|
|
|
|
#f9f9f9 95%,
|
|
|
|
#fff 100%
|
|
|
|
);
|
2023-03-19 22:19:43 +00:00
|
|
|
content: " ";
|
|
|
|
height: 277px;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 3px;
|
|
|
|
transform: translateX(172px) rotateY(90deg);
|
|
|
|
width: 48px;
|
2023-03-10 21:59:45 +00:00
|
|
|
}
|
2023-03-19 22:19:43 +00:00
|
|
|
|
2023-03-10 21:59:45 +00:00
|
|
|
.book-container .book:hover {
|
|
|
|
transform: rotateY(0deg);
|
|
|
|
}
|
|
|
|
|
2023-03-19 22:19:43 +00:00
|
|
|
.container {
|
|
|
|
align-items: stretch;
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flickity-button {
|
|
|
|
background: #58859770;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flickity-page-dots .dot {
|
|
|
|
background: #0093cd;
|
2023-03-10 21:59:45 +00:00
|
|
|
}
|
|
|
|
|
2023-03-19 22:19:43 +00:00
|
|
|
.flickity-prev-next-button {
|
|
|
|
border-radius: 6px;
|
2023-03-10 21:59:45 +00:00
|
|
|
}
|
|
|
|
|
2023-03-19 22:19:43 +00:00
|
|
|
.flickity-viewport {
|
|
|
|
background-color: #01060f00;
|
2023-03-20 22:21:18 +00:00
|
|
|
/* overflow: inherit; */
|
2023-03-19 22:19:43 +00:00
|
|
|
position: inherit;
|
|
|
|
}
|
2023-03-10 21:59:45 +00:00
|
|
|
|
|
|
|
.gallery {
|
|
|
|
background: #01060f00;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-cell {
|
|
|
|
counter-increment: gallery-cell;
|
2023-03-13 15:11:51 +00:00
|
|
|
margin: auto;
|
2023-03-20 22:21:18 +00:00
|
|
|
width: 250px;
|
2023-03-19 22:19:43 +00:00
|
|
|
z-index: 10;
|
2023-03-13 15:11:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-cell:not(.is-selected) {
|
2023-03-20 22:21:18 +00:00
|
|
|
filter: saturate(30%);
|
2023-03-19 22:19:43 +00:00
|
|
|
z-index: -5;
|
2023-03-10 21:59:45 +00:00
|
|
|
}
|
|
|
|
|
2023-03-19 22:19:43 +00:00
|
|
|
.list-col {
|
2023-03-06 23:06:27 +00:00
|
|
|
flex-grow: 2;
|
|
|
|
min-width: 600px;
|
2023-03-19 22:19:43 +00:00
|
|
|
}
|
|
|
|
|
2023-03-06 23:06:27 +00:00
|
|
|
.view-col {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
2023-03-19 22:19:43 +00:00
|
|
|
|
2023-03-13 23:02:07 +00:00
|
|
|
@media only screen and (min-width: 768px) {
|
2023-03-12 21:00:35 +00:00
|
|
|
.list-col {
|
2023-03-06 23:06:27 +00:00
|
|
|
margin-right: 1%;
|
2023-03-06 13:13:04 +00:00
|
|
|
}
|
2023-03-19 22:19:43 +00:00
|
|
|
|
2023-03-06 23:06:27 +00:00
|
|
|
.view-col {
|
|
|
|
max-width: 600px;
|
2023-03-06 13:13:04 +00:00
|
|
|
}
|
2023-03-06 23:06:27 +00:00
|
|
|
}
|
2023-03-19 22:19:43 +00:00
|
|
|
|
|
|
|
.fa-solid,
|
|
|
|
.fas {
|
|
|
|
font-weight: 900;
|
|
|
|
margin: 5px;
|
2023-03-06 23:06:27 +00:00
|
|
|
}
|
2023-03-12 21:00:35 +00:00
|
|
|
|
2023-03-19 22:19:43 +00:00
|
|
|
.icon {
|
|
|
|
font-size: xx-large;
|
2023-03-13 23:02:07 +00:00
|
|
|
}
|
|
|
|
|
2023-03-19 22:19:43 +00:00
|
|
|
.icon + .view-details:empty +,
|
|
|
|
.view-details:empty {
|
|
|
|
display: none;
|
2023-03-13 23:02:07 +00:00
|
|
|
}
|
|
|
|
|
2023-03-19 22:19:43 +00:00
|
|
|
.view-container {
|
|
|
|
display: flex;
|
2023-03-13 23:02:07 +00:00
|
|
|
flex-direction: column;
|
2023-03-19 22:19:43 +00:00
|
|
|
flex-wrap: wrap;
|
2023-03-13 23:02:07 +00:00
|
|
|
justify-content: center;
|
|
|
|
}
|
2023-03-19 22:19:43 +00:00
|
|
|
|
|
|
|
.view-container.row {
|
2023-03-13 23:02:07 +00:00
|
|
|
flex-direction: row;
|
|
|
|
}
|
2023-03-19 22:19:43 +00:00
|
|
|
|
|
|
|
.w2ui-grid .w2ui-grid-body table td.w2ui-grid-data > div {
|
|
|
|
overflow: visible;
|
|
|
|
white-space: break-spaces;
|
2023-03-13 23:02:07 +00:00
|
|
|
}
|
|
|
|
|
2023-03-19 22:19:43 +00:00
|
|
|
.w2ui-grid-data {
|
|
|
|
color: #000;
|
|
|
|
word-wrap: normal;
|
2023-03-13 23:02:07 +00:00
|
|
|
}
|
2023-03-19 22:19:43 +00:00
|
|
|
|
|
|
|
A[href=""],
|
|
|
|
A[href="#"] {
|
|
|
|
color: inherit;
|
2023-03-13 23:02:07 +00:00
|
|
|
cursor: default;
|
2023-03-19 22:19:43 +00:00
|
|
|
pointer-events: none;
|
2023-03-13 23:02:07 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 768px) {
|
2023-03-19 22:19:43 +00:00
|
|
|
.view-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.view-details {
|
2023-03-13 23:02:07 +00:00
|
|
|
display: none;
|
2023-03-19 22:19:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
* {
|
|
|
|
-webkit-box-sizing: border-box;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
*,
|
|
|
|
:after,
|
|
|
|
:before {
|
|
|
|
border: 0 solid #e5e7eb;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-container {
|
|
|
|
align-items: center;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
perspective: 600px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-container .book {
|
|
|
|
animation: 1s ease 0s 1 initAnimation-fd6a;
|
|
|
|
height: 300px;
|
|
|
|
margin-bottom: 3px;
|
|
|
|
margin-top: 39px;
|
|
|
|
position: relative;
|
|
|
|
transform: rotateY(-30deg) scale(1);
|
|
|
|
transform-style: preserve-3d;
|
|
|
|
transition: transform 1s ease;
|
|
|
|
width: 200px;
|
|
|
|
}
|
2023-03-13 23:02:07 +00:00
|
|
|
|
2023-03-19 22:19:43 +00:00
|
|
|
.book-container .book > :first-child {
|
|
|
|
background-color: #01060f;
|
|
|
|
background-color: #01060f;
|
|
|
|
border-radius: 0 2px 2px 0;
|
|
|
|
box-shadow: 5px 5px 20px #aaaaaa9d;
|
|
|
|
height: 283px;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
transform: translateZ(25px);
|
|
|
|
width: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-container .book::after {
|
|
|
|
background-color: #01060f;
|
|
|
|
border-radius: 0 2px 2px 0;
|
|
|
|
box-shadow: -5px 0 20px 10px #aaaaaa9d;
|
|
|
|
content: " ";
|
|
|
|
height: 283px;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
transform: translateZ(-25px);
|
|
|
|
width: 200px;
|
2023-03-13 23:02:07 +00:00
|
|
|
}
|
|
|
|
|
2023-03-19 22:19:43 +00:00
|
|
|
.book-container .book::before {
|
|
|
|
background: linear-gradient(
|
|
|
|
90deg,
|
|
|
|
#fff 0%,
|
|
|
|
#f9f9f9 5%,
|
|
|
|
#fff 10%,
|
|
|
|
#f9f9f9 15%,
|
|
|
|
#fff 20%,
|
|
|
|
#f9f9f9 25%,
|
|
|
|
#fff 30%,
|
|
|
|
#f9f9f9 35%,
|
|
|
|
#fff 40%,
|
|
|
|
#f9f9f9 45%,
|
|
|
|
#fff 50%,
|
|
|
|
#f9f9f9 55%,
|
|
|
|
#fff 60%,
|
|
|
|
#f9f9f9 65%,
|
|
|
|
#fff 70%,
|
|
|
|
#f9f9f9 75%,
|
|
|
|
#fff 80%,
|
|
|
|
#f9f9f9 85%,
|
|
|
|
#fff 90%,
|
|
|
|
#f9f9f9 95%,
|
|
|
|
#fff 100%
|
|
|
|
);
|
|
|
|
content: " ";
|
|
|
|
height: 277px;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 3px;
|
|
|
|
transform: translateX(172px) rotateY(90deg);
|
|
|
|
width: 48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.book-container .book:hover {
|
|
|
|
transform: rotateY(0deg) scale(1.1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-cell > .book-container > .book {
|
|
|
|
transition: transform 0.3s ease-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gallery-cell.is-selected > .book-container > .book {
|
|
|
|
transform: scale(1.25);
|
|
|
|
transition: transform 0.3s ease-out;
|
|
|
|
}
|