2020-09-08 00:12:18 +00:00
|
|
|
/**
|
2020-09-08 00:29:23 +00:00
|
|
|
* Theme Name: Blocksy Tainacan
|
|
|
|
* Description: A Blocksy Child theme compatible with Tainacan plugin
|
|
|
|
* Author: Tainacan
|
2020-09-08 00:12:18 +00:00
|
|
|
* Template: blocksy
|
2020-09-08 00:29:23 +00:00
|
|
|
* Text Domain: blocksy-tainacan
|
2020-09-08 00:12:18 +00:00
|
|
|
*/
|
2020-09-16 02:15:40 +00:00
|
|
|
/* Tainacan Gutenberg Blocks colors */
|
|
|
|
:root {
|
|
|
|
--tainacan-block-primary: var(--paletteColor1, #3eaf7c);
|
|
|
|
--tainacan-block-gray0: var(--backgroundColor, #f8f9fb);
|
|
|
|
--tainacan-block-gray1: var(--backgroundColor, #f8f9fb);
|
|
|
|
--tainacan-block-gray2: var(--formBorderInitialColor, #e0e5eb);
|
|
|
|
--tainacan-block-gray3: var(--formBorderInitialColor, #e0e5eb);
|
|
|
|
--tainacan-block-gray4: var(--color, rgba(44, 62, 80, 0.9));
|
|
|
|
--tainacan-block-gray5: var(--headingColor, rgba(44, 62, 80, 1));
|
|
|
|
}
|
|
|
|
|
2020-09-23 23:11:03 +00:00
|
|
|
/* Remaining imports */
|
2020-09-11 02:47:04 +00:00
|
|
|
/* Tainacan Items list customization */
|
|
|
|
.theme-items-list {
|
|
|
|
--tainacan-font-family: var(--fontFamily, inherit);
|
|
|
|
--tainacan-base-font-size: var(--fontSize, 1em);
|
|
|
|
--tainacan-secondary: var(--paletteColor1, #3eaf7c);
|
|
|
|
--tainacan-primary: var(--formBorderInitialColor, #e0e5eb);
|
|
|
|
--tainacan-background-color: var(--backgroundColor, #f8f9fb);
|
|
|
|
--tainacan-item-background-color: var(--cardBackground, white);
|
|
|
|
--tainacan-item-hover-background-color: var(--tainacan-item-background-color, white);
|
|
|
|
--tainacan-item-heading-hover-background-color: var(--tainacan-item-background-color, white);
|
|
|
|
--tainacan-input-color: var(--color, rgba(44, 62, 80, 0.9));
|
|
|
|
--tainacan-input-background-color: var(--formBackgroundInitialColor, white);
|
|
|
|
--tainacan-input-border-color: var(--formBorderInitialColor, #e0e5eb);
|
|
|
|
--tainacan-heading-color: var(--headingColor, rgba(44, 62, 80, 1));
|
|
|
|
--tainacan-label-color: var(--color, rgba(44, 62, 80, 0.9));
|
|
|
|
--tainacan-info-color: var(--color, rgba(44, 62, 80, 0.9));
|
2020-12-23 12:38:30 +00:00
|
|
|
--tainacan-skeleton-color: rgba(252, 252, 252, 0.5);
|
2020-09-11 02:47:04 +00:00
|
|
|
/* Search control */
|
|
|
|
/* Filters panel */
|
|
|
|
/* Items list container */
|
|
|
|
/* Advanced Search */
|
|
|
|
}
|
|
|
|
|
2020-09-13 23:38:20 +00:00
|
|
|
.theme-items-list:not(.is-fullscreen) {
|
|
|
|
justify-content: center;
|
2020-09-23 23:11:03 +00:00
|
|
|
top: -52px !important;
|
2020-09-13 23:38:20 +00:00
|
|
|
background: transparent !important;
|
2020-09-23 23:11:03 +00:00
|
|
|
padding: 6px 13px;
|
2020-12-29 04:33:20 +00:00
|
|
|
flex-wrap: wrap;
|
|
|
|
display: flex;
|
|
|
|
display: -ms-grid;
|
2020-09-23 23:11:03 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr minmax(auto, 1300px) 1fr;
|
|
|
|
grid-template-rows: auto 1fr;
|
|
|
|
grid-template-areas: ". searchcontrol ." "itemslist itemslist itemslist";
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
.theme-items-list .search-control {
|
2020-09-23 23:11:03 +00:00
|
|
|
grid-area: searchcontrol;
|
2020-09-29 21:38:03 +00:00
|
|
|
border-radius: 0 0 var(--borderRadius, 3px) var(--borderRadius, 3px);
|
2020-09-11 02:47:04 +00:00
|
|
|
background-color: var(--tainacan-item-background-color, white);
|
|
|
|
padding: 20px 20px 6px 20px !important;
|
2020-09-23 23:11:03 +00:00
|
|
|
margin: 5px;
|
2020-09-11 02:47:04 +00:00
|
|
|
box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list .search-control .search-control-item {
|
2020-09-13 23:38:20 +00:00
|
|
|
margin-bottom: 20px !important;
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
2020-09-23 23:11:03 +00:00
|
|
|
.theme-items-list #filters-modal {
|
|
|
|
grid-area: itemslist;
|
|
|
|
justify-self: start;
|
|
|
|
align-self: normal;
|
2020-09-24 02:39:33 +00:00
|
|
|
width: 100%;
|
2020-09-23 23:11:03 +00:00
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
.theme-items-list #filters-modal .modal-content {
|
2020-09-23 23:11:03 +00:00
|
|
|
padding: 16px 10px;
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #filters-modal .modal-content #filters-items-list {
|
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
background-color: var(--tainacan-item-background-color, white);
|
|
|
|
padding: 20px;
|
|
|
|
margin: -3px;
|
|
|
|
box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));
|
|
|
|
}
|
|
|
|
|
2020-09-23 23:11:03 +00:00
|
|
|
.theme-items-list #filters-modal .modal-content #filters-items-list .filters-components-list {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
2020-11-18 01:04:40 +00:00
|
|
|
.theme-items-list #filters-modal.tainacan-filter-list-fixed {
|
|
|
|
left: 14px;
|
|
|
|
}
|
|
|
|
|
2020-09-23 23:11:03 +00:00
|
|
|
.theme-items-list #items-list-area {
|
|
|
|
grid-area: itemslist;
|
|
|
|
justify-self: end;
|
|
|
|
align-self: normal;
|
2020-09-24 02:39:33 +00:00
|
|
|
width: 100%;
|
2020-09-23 23:11:03 +00:00
|
|
|
}
|
|
|
|
|
2020-09-29 21:38:03 +00:00
|
|
|
.theme-items-list #items-list-area #items-list-results {
|
|
|
|
/* Tainacan items list view modes */
|
|
|
|
/* Pagination */
|
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
.theme-items-list #items-list-area #items-list-results .table-container {
|
|
|
|
min-width: 100%;
|
2020-09-23 23:11:03 +00:00
|
|
|
padding-top: 14px;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-bottom: 14px;
|
|
|
|
padding-right: 10px;
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
2020-09-29 21:38:03 +00:00
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list {
|
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));
|
|
|
|
border: var(--border, none);
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item .metadata-title p,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record .metadata-title p,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .metadata-title p,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list .metadata-title p {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item .metadata-value,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item .metadata-label,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record .metadata-value,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record .metadata-label,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .metadata-value,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .metadata-label,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list .metadata-value,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list .metadata-label {
|
|
|
|
font-size: 0.8125em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-records-container .tainacan-record,
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-list-container .tainacan-list {
|
|
|
|
background-color: var(--tainacan-item-background-color, white) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-masonry-container .tainacan-masonry-item {
|
|
|
|
display: flex !important;
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card {
|
|
|
|
min-height: 215px;
|
|
|
|
max-height: 215px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .media .list-metadata {
|
|
|
|
padding: 0.125em 1.375em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-cards-container .tainacan-card .media .list-metadata p.metadata-description {
|
|
|
|
max-height: 12.75em !important;
|
|
|
|
line-height: 1.25em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-table {
|
|
|
|
padding: 0 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-table .column-main-content p {
|
|
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-table td p {
|
|
|
|
font-size: 0.725em !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-slide-main-view iframe {
|
|
|
|
border: none;
|
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .tainacan-slides-list .swiper-slide img {
|
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
.theme-items-list #items-list-area #items-list-results .pagination-area {
|
2020-09-13 23:38:20 +00:00
|
|
|
border-top: none;
|
|
|
|
margin-left: 12px;
|
|
|
|
margin-right: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .pagination-area .pagination {
|
|
|
|
font-weight: bold;
|
|
|
|
--colorActive: #ffffff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .pagination-area .pagination .pagination-link {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 40px;
|
|
|
|
width: 42px;
|
|
|
|
border-radius: 4px;
|
|
|
|
border: 2px solid transparent;
|
|
|
|
font-size: 14px;
|
|
|
|
font-weight: 600;
|
|
|
|
color: var(--color);
|
|
|
|
--linkInitialColor: var(--color);
|
|
|
|
transition: color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955), background 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955), border-color 0.12s cubic-bezier(0.455, 0.03, 0.515, 0.955);
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .pagination-area .pagination .pagination-link:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
border-color: var(--linkHoverColor);
|
|
|
|
color: var(--linkHoverColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list #items-list-area #items-list-results .pagination-area .pagination .pagination-link.is-current {
|
|
|
|
color: var(--colorActive) !important;
|
|
|
|
background: var(--linkHoverColor);
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.theme-items-list .advanced-search-criteria-title hr {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Tooltips and Modals are outside of the items list div */
|
|
|
|
body:not(.tainacan-admin-page) .tooltip,
|
|
|
|
body:not(.tainacan-admin-page) .tainacan-modal-content {
|
|
|
|
--tainacan-font-family: var(--fontFamily, inherit);
|
|
|
|
--tainacan-base-font-size: var(--fontSize, 1em);
|
|
|
|
--tainacan-secondary: var(--paletteColor1, #3eaf7c);
|
|
|
|
--tainacan-primary: var(--formBorderInitialColor, #e0e5eb);
|
|
|
|
--tainacan-background-color: var(--backgroundColor, #f8f9fb);
|
|
|
|
--tainacan-input-color: var(--color, rgba(44, 62, 80, 0.9));
|
|
|
|
--tainacan-input-background-color: var(--formBackgroundInitialColor, white);
|
|
|
|
--tainacan-input-border-color: var(--formBorderInitialColor, #e0e5eb);
|
|
|
|
--tainacan-label-color: var(--color, rgba(44, 62, 80, 0.9));
|
|
|
|
--tainacan-info-color: var(--color, rgba(44, 62, 80, 0.9));
|
|
|
|
--tainacan-heading-color: var(--headingColor, rgba(44, 62, 80, 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
body:not(.tainacan-admin-page) .tainacan-modal-content {
|
|
|
|
border-radius: var(--borderRadius, 6px);
|
|
|
|
}
|
|
|
|
|
|
|
|
body:not(.tainacan-admin-page) .tainacan-modal-content .tainacan-modal-title hr {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
body:not(.tainacan-admin-page) .tainacan-modal-content .tabs li {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
}
|
|
|
|
|
|
|
|
body:not(.tainacan-admin-page) .tainacan-modal-content .modal-card-body {
|
|
|
|
background-color: var(--tainacan-item-background-color, white);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Collection Items List */
|
|
|
|
.tainacan-collection-header {
|
|
|
|
display: flex;
|
2020-09-23 23:11:03 +00:00
|
|
|
padding: 36px 18px 28px 18px;
|
2020-09-11 02:47:04 +00:00
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2020-09-13 23:38:20 +00:00
|
|
|
background-color: var(--backgroundColor, #f8f9fb);
|
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
2020-09-24 02:39:33 +00:00
|
|
|
--tainacan-secondary: var(--paletteColor1, #3eaf7c);
|
|
|
|
--tainacan-primary: var(--formBorderInitialColor, #e0e5eb);
|
|
|
|
--tainacan-background-color: var(--backgroundColor, #f8f9fb);
|
|
|
|
--tainacan-item-background-color: var(--cardBackground, white);
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-collection-header .tainacan-collection-header__box {
|
2020-09-13 23:38:20 +00:00
|
|
|
width: var(--maxSiteWidth, 1290px);
|
2020-09-29 21:38:03 +00:00
|
|
|
border-radius: var(--borderRadius, 3px) var(--borderRadius, 3px) 0 0;
|
2020-09-11 02:47:04 +00:00
|
|
|
background-color: var(--tainacan-item-background-color, #fff);
|
|
|
|
padding: 20px;
|
|
|
|
box-shadow: var(--boxShadow, 0 12px 18px -6px rgba(34, 56, 101, 0.04));
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-collection-header .tainacan-collection-header__box h1 {
|
2020-09-24 02:39:33 +00:00
|
|
|
margin-bottom: 4px;
|
2020-09-11 02:47:04 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2020-09-24 02:39:33 +00:00
|
|
|
.tainacan-collection-header .tainacan-collection-header__box .ct-title-label {
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-collection-header .tainacan-collection-header__box .ct-title-label::after {
|
|
|
|
content: ': ';
|
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
.tainacan-collection-header .tainacan-collection-header__box .collection-thumbnail {
|
2020-11-18 01:04:40 +00:00
|
|
|
max-width: calc(var(--tainacan-filter-menu-width-theme, 20%) - 24px);
|
2020-09-11 02:47:04 +00:00
|
|
|
float: left;
|
|
|
|
margin-right: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-collection-header .tainacan-collection-header__box .collection-thumbnail img {
|
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
}
|
|
|
|
|
2020-09-13 23:38:20 +00:00
|
|
|
/* Single Item Page */
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
display: flex;
|
|
|
|
display: -ms-grid;
|
|
|
|
display: grid;
|
|
|
|
align-items: start;
|
|
|
|
grid-column-gap: 32px;
|
|
|
|
column-gap: 32px;
|
|
|
|
grid-row-gap: 2.25rem;
|
|
|
|
row-gap: 2.25rem;
|
2020-09-30 13:06:00 +00:00
|
|
|
--swiper-theme-color: var(--paletteColor1, #3eaf7c);
|
|
|
|
--swiper-navigation-color: var(--paletteColor1, #3eaf7c);
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section {
|
|
|
|
max-width: var(--block-max-width);
|
|
|
|
align-self: flex-start;
|
|
|
|
align-self: start;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section--document {
|
|
|
|
grid-area: document;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section--attachments {
|
|
|
|
grid-area: attachments;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section--gallery {
|
|
|
|
grid-area: gallery;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section--metadata {
|
|
|
|
grid-area: metadata;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single.tainacan-item-single--layout-type-dam {
|
|
|
|
grid-template-areas: 'document' 'attachments' 'metadata';
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single.tainacan-item-single--layout-type-dma {
|
|
|
|
grid-template-areas: 'document' 'metadata' 'attachments';
|
2020-09-24 02:39:33 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single.tainacan-item-single--layout-type-mda {
|
|
|
|
grid-template-areas: 'metadata' 'document' 'attachments';
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single.tainacan-item-single--layout-type-mg {
|
|
|
|
grid-template-areas: 'metadata gallery document' 'metadata gallery attachments' 'metadata . .';
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single.tainacan-item-single--layout-type-gm {
|
|
|
|
grid-template-areas: 'gallery document metadata' 'gallery attachments metadata' '. . metadata';
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single h1 {
|
|
|
|
--fontSize: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single h2 {
|
|
|
|
--fontSize: 26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single h3 {
|
|
|
|
--fontSize: 22px;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single h4 {
|
|
|
|
--fontSize: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single h5 {
|
|
|
|
--fontSize: 18px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single h6 {
|
|
|
|
--fontSize: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single .tainacan-item-section__document {
|
2020-09-13 23:38:20 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2020-12-29 04:33:20 +00:00
|
|
|
align-items: center;
|
|
|
|
height: auto;
|
2020-11-18 01:04:40 +00:00
|
|
|
position: relative;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__document:hover .tainacan-item-file-download {
|
2020-09-13 23:38:20 +00:00
|
|
|
opacity: 1;
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__document > iframe, .tainacan-item-single .tainacan-item-section__document img.attachment-large {
|
2020-09-13 23:38:20 +00:00
|
|
|
display: block;
|
|
|
|
height: auto;
|
|
|
|
margin: 0 auto;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__document > audio {
|
2020-09-13 23:38:20 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 768px) {
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__document > iframe {
|
2020-09-13 23:38:20 +00:00
|
|
|
min-height: 600px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 576px) {
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__document > iframe {
|
2020-09-13 23:38:20 +00:00
|
|
|
min-height: 429px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__document .tainacan-embed-container {
|
2020-09-13 23:38:20 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__document .tainacan-embed-container iframe {
|
2020-09-13 23:38:20 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items {
|
2020-09-24 02:39:33 +00:00
|
|
|
font-weight: normal;
|
|
|
|
transition: font-weight 0.3s ease;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items img {
|
2020-12-28 19:39:26 +00:00
|
|
|
border-radius: var(--borderRadius, 3px);
|
2020-09-24 02:39:33 +00:00
|
|
|
border-bottom: 4px solid transparent;
|
|
|
|
margin-bottom: 4px;
|
|
|
|
transition: border 0.3s ease;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__attachments-file:hover .tainacan-item-file-download {
|
2020-12-28 19:39:26 +00:00
|
|
|
opacity: 1;
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery {
|
2020-12-28 19:39:26 +00:00
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery ul {
|
2020-12-28 19:39:26 +00:00
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery .tainacan-item-section__document {
|
2020-12-28 19:39:26 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery .tainacan-item-section__document img {
|
2020-12-28 19:39:26 +00:00
|
|
|
max-height: 60vh;
|
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery .tainacan-item-section__document video {
|
2020-12-28 19:39:26 +00:00
|
|
|
width: auto;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery .tainacan-item-section__document iframe {
|
2020-12-28 19:39:26 +00:00
|
|
|
min-height: 200px;
|
|
|
|
height: 60vh;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments {
|
2020-12-28 19:39:26 +00:00
|
|
|
position: relative;
|
|
|
|
padding: 0 60px;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .swiper-button-disabled,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .swiper-button-disabled {
|
2020-12-28 19:39:26 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .swiper-button-next,
|
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .swiper-button-prev,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .swiper-button-next,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .swiper-button-prev {
|
2020-12-28 19:39:26 +00:00
|
|
|
top: 65px;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .swiper-slide-thumb-active,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .swiper-slide-thumb-active {
|
2020-09-24 02:39:33 +00:00
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .swiper-slide-thumb-active img,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .swiper-slide-thumb-active img {
|
2020-12-28 19:39:26 +00:00
|
|
|
border-bottom: 4px solid var(--paletteColor1, #3eaf7c);
|
2020-09-24 02:39:33 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items ul,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments ul {
|
2020-12-28 19:39:26 +00:00
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
2020-09-24 02:39:33 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file {
|
2020-09-24 02:39:33 +00:00
|
|
|
text-align: center;
|
|
|
|
vertical-align: top;
|
|
|
|
cursor: pointer;
|
|
|
|
word-break: break-all;
|
|
|
|
font-size: 0.875em;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 380px) {
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file {
|
2020-09-24 02:39:33 +00:00
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file img,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file img {
|
2020-12-28 19:39:26 +00:00
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
width: 140px;
|
|
|
|
height: 140px;
|
2020-09-24 02:39:33 +00:00
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file img:focus,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file img:focus {
|
2020-09-24 02:39:33 +00:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file a,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file a {
|
2020-09-24 02:39:33 +00:00
|
|
|
width: 100%;
|
2020-12-28 19:39:26 +00:00
|
|
|
max-width: 140px;
|
2020-09-24 02:39:33 +00:00
|
|
|
font-size: 0.875rem;
|
|
|
|
text-align: center;
|
|
|
|
word-break: break-all;
|
|
|
|
line-height: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file a,
|
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file a:focus,
|
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file a:hover,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file a,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file a:focus,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file a:hover {
|
2020-09-24 02:39:33 +00:00
|
|
|
outline: none;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file .attachment-without-image img,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file .attachment-without-image img {
|
2020-09-24 02:39:33 +00:00
|
|
|
padding: 36px;
|
|
|
|
background-color: #dbdbdb;
|
|
|
|
object-fit: contain;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .pswp__zoom-wrap .attachment-without-image {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single .pswp__zoom-wrap .attachment-without-image > iframe {
|
|
|
|
min-height: 80vh;
|
|
|
|
width: 80%;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single .pswp__zoom-wrap .attachment-without-image > a,
|
|
|
|
.tainacan-item-single .pswp__zoom-wrap .attachment-without-image > p {
|
|
|
|
z-index: 99;
|
|
|
|
padding: 1rem 4.33337vw;
|
|
|
|
background: white;
|
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single .pswp__zoom-wrap .attachment-without-image > audio,
|
|
|
|
.tainacan-item-single .pswp__zoom-wrap .attachment-without-image > video {
|
|
|
|
min-height: 54px;
|
|
|
|
padding: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single .tainacan-item-section__metadata {
|
2020-09-13 23:38:20 +00:00
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata div {
|
2020-09-13 23:38:20 +00:00
|
|
|
-webkit-column-break-inside: avoid;
|
|
|
|
page-break-inside: avoid;
|
|
|
|
break-inside: avoid;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata div:last-child {
|
2020-09-13 23:38:20 +00:00
|
|
|
-webkit-column-break-inside: auto;
|
|
|
|
page-break-inside: auto;
|
|
|
|
break-inside: auto;
|
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 768px) {
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata {
|
2020-09-13 23:38:20 +00:00
|
|
|
-moz-column-gap: 0;
|
|
|
|
-moz-column-rule: none;
|
|
|
|
-webkit-column-gap: 0;
|
|
|
|
-webkit-column-rule: none;
|
|
|
|
column-gap: 4rem;
|
|
|
|
column-rule: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 1366px) {
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata {
|
2020-09-13 23:38:20 +00:00
|
|
|
-moz-column-gap: 7rem;
|
|
|
|
-moz-column-rule: none;
|
|
|
|
-webkit-column-gap: 7rem;
|
|
|
|
-webkit-column-rule: none;
|
|
|
|
column-gap: 7rem;
|
|
|
|
column-rule: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata h3 {
|
2020-09-13 23:38:20 +00:00
|
|
|
padding-right: 1rem;
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata h3:first-of-type:last-of-type {
|
2020-09-13 23:38:20 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata h4,
|
|
|
|
.tainacan-item-single .tainacan-item-section__metadata label {
|
2020-09-13 23:38:20 +00:00
|
|
|
padding-right: 0.875rem;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata h4:first-of-type:last-of-type,
|
|
|
|
.tainacan-item-single .tainacan-item-section__metadata label:first-of-type:last-of-type {
|
2020-09-13 23:38:20 +00:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata p {
|
2020-09-13 23:38:20 +00:00
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata .tainacan-item-section__metadata-thumbnail img {
|
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single .tainacan-item-section__metadata .multivalue-separator {
|
2020-09-13 23:38:20 +00:00
|
|
|
color: #cbcbcb;
|
|
|
|
margin: 0 8px;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata .hierarchy-separator {
|
2020-09-13 23:38:20 +00:00
|
|
|
color: #cbcbcb;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata .metadata-type-compound .multivalue-separator,
|
|
|
|
.tainacan-item-single .tainacan-item-section__metadata .metadata-type-textarea .multivalue-separator {
|
2020-09-13 23:38:20 +00:00
|
|
|
display: block;
|
|
|
|
max-height: 1px;
|
|
|
|
width: 35px;
|
|
|
|
background: #cbcbcb;
|
|
|
|
content: none;
|
|
|
|
color: transparent;
|
|
|
|
margin: 0.875rem auto;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata .tainacan-compound-group {
|
2020-09-13 23:38:20 +00:00
|
|
|
padding-left: 1.5rem;
|
|
|
|
border-left: 1px solid #f2f2f2;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-file-download {
|
|
|
|
position: absolute;
|
|
|
|
opacity: 0;
|
|
|
|
transform: scale(0);
|
|
|
|
border-radius: 24px;
|
|
|
|
width: 36px;
|
|
|
|
height: 36px;
|
|
|
|
bottom: -18px;
|
|
|
|
right: calc(50% - 18px);
|
|
|
|
cursor: pointer;
|
|
|
|
font-size: 0;
|
|
|
|
background-color: var(--paletteColor1, #3eaf7c);
|
|
|
|
color: white;
|
|
|
|
transition: opacity 0.3s ease, transform 0.3s ease, font-size 0.3s ease;
|
2020-09-30 13:06:00 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-file-download a {
|
|
|
|
height: 38px;
|
|
|
|
width: 38px;
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
2020-12-28 19:39:26 +00:00
|
|
|
z-index: 99;
|
2020-09-30 13:06:00 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-file-download::after {
|
|
|
|
position: relative;
|
|
|
|
top: -38px;
|
|
|
|
display: inline-block;
|
|
|
|
font: normal normal normal 20px/1 "TainacanIcons";
|
|
|
|
font-size: 1.25rem !important;
|
|
|
|
line-height: 2.25rem;
|
|
|
|
text-rendering: auto;
|
|
|
|
vertical-align: middle;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
font-size: 1.25em;
|
|
|
|
text-transform: none !important;
|
|
|
|
letter-spacing: normal !important;
|
|
|
|
content: 'download';
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2020-09-30 13:06:00 +00:00
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
/*# sourceMappingURL=style.css.map */
|