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-item-heading-hover-background-color: var(--tainacan-item-background-color, white);
|
|
|
|
--tainacan-input-border-color: var(--formBorderInitialColor, #e0e5eb);
|
2021-02-02 13:31:52 +00:00
|
|
|
--tainacan-skeleton-color: var(--tainacan-item-background-color, white);
|
2020-09-11 02:47:04 +00:00
|
|
|
/* Search control */
|
|
|
|
/* Filters panel */
|
|
|
|
/* Items list container */
|
|
|
|
/* Advanced Search */
|
2021-02-02 13:31:52 +00:00
|
|
|
/* Inputs style */
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
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;
|
2021-02-15 00:37:52 +00:00
|
|
|
grid-template-columns: 0fr 100% 1fr;
|
2020-09-23 23:11:03 +00:00
|
|
|
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
|
|
|
padding: 20px 20px 6px 20px !important;
|
2020-09-23 23:11:03 +00:00
|
|
|
margin: 5px;
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.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
|
|
|
}
|
|
|
|
|
2021-02-02 13:31:52 +00:00
|
|
|
.theme-items-list .search-control .control.has-icons-right .icon .mdi-magnify::before {
|
|
|
|
color: var(--tainacan-secondary, #3eaf7c);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-01-05 03:07:06 +00:00
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
.theme-items-list #filters-modal .modal-content {
|
|
|
|
padding: 16px 10px 16px 12vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
.theme-items-list #filters-modal .modal-content #filters-items-list {
|
2021-01-05 03:07:06 +00:00
|
|
|
background-color: var(--backgroundColor, #f8f9fb);
|
2020-09-11 02:47:04 +00:00
|
|
|
padding: 20px;
|
|
|
|
margin: -3px;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-02-02 13:31:52 +00:00
|
|
|
.theme-items-list input.input,
|
|
|
|
.theme-items-list .input,
|
|
|
|
.theme-items-list textarea.textarea,
|
|
|
|
.theme-items-list .textarea,
|
|
|
|
.theme-items-list input[type="color"].input,
|
|
|
|
.theme-items-list input[type="date"].input,
|
|
|
|
.theme-items-list input[type="datetime-local"].input,
|
|
|
|
.theme-items-list input[type="datetime"].input,
|
|
|
|
.theme-items-list input[type="email"].input,
|
|
|
|
.theme-items-list input[type="number"].input,
|
|
|
|
.theme-items-list input[type="month"].input,
|
|
|
|
.theme-items-list input[type="password"].input,
|
|
|
|
.theme-items-list input[type="search"].input,
|
|
|
|
.theme-items-list input[type="tel"].input,
|
|
|
|
.theme-items-list input[type="text"].input,
|
|
|
|
.theme-items-list input[type="time"].input,
|
|
|
|
.theme-items-list input[type="url"].input,
|
|
|
|
.theme-items-list input[type="week"].input {
|
|
|
|
border-radius: var(--borderRadius, 3px) !important;
|
|
|
|
border: 1px solid var(--tainacan-input-border-color);
|
|
|
|
}
|
|
|
|
|
2021-01-05 03:07:06 +00:00
|
|
|
/* Extra classes applied from customizer */
|
|
|
|
.page.has-filters-panel-style-boxed #filters-modal .modal-content #filters-items-list {
|
|
|
|
border-radius: var(--borderRadius, 3px);
|
|
|
|
background-color: var(--tainacan-item-background-color, white);
|
|
|
|
box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));
|
|
|
|
}
|
|
|
|
|
2020-09-11 02:47:04 +00:00
|
|
|
/* 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;
|
2021-01-08 22:45:22 +00:00
|
|
|
background-color: var(--tainacan-background-color, #f8f9fb);
|
2020-09-13 23:38:20 +00:00
|
|
|
background-size: cover;
|
2021-01-03 21:17:51 +00:00
|
|
|
background-position: center;
|
2020-09-13 23:38:20 +00:00
|
|
|
background-repeat: no-repeat;
|
2021-01-08 22:45:22 +00:00
|
|
|
--headingColor: var(--tainacan-heading-color, rgba(44, 62, 80, 1));
|
|
|
|
--color: var(--tainacan-label-color, #454647);
|
|
|
|
--linkInitialColor: var(--tainacan-secondary, #3eaf7c);
|
2020-09-11 02:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-collection-header .tainacan-collection-header__box {
|
2021-02-15 00:37:52 +00:00
|
|
|
width: 100%;
|
2020-09-11 02:47:04 +00:00
|
|
|
padding: 20px;
|
|
|
|
}
|
|
|
|
|
2021-01-08 22:45:22 +00:00
|
|
|
.tainacan-collection-header .tainacan-collection-header__box .page-title {
|
2021-02-23 02:09:46 +00:00
|
|
|
margin-top: 0px;
|
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);
|
|
|
|
}
|
|
|
|
|
2021-02-15 00:37:52 +00:00
|
|
|
.page.has-page-header-style-boxed .theme-items-list:not(.is-fullscreen) {
|
|
|
|
grid-template-columns: 1fr minmax(auto, 1300px) 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
.page.has-page-header-style-boxed .tainacan-collection-header .tainacan-collection-header__box {
|
|
|
|
width: var(--maxSiteWidth, 1290px);
|
|
|
|
border-radius: var(--borderRadius, 3px) var(--borderRadius, 3px) 0 0;
|
|
|
|
background-color: var(--tainacan-item-background-color, #fff);
|
|
|
|
box-shadow: var(--boxShadow, 0 12px 18px -6px rgba(34, 56, 101, 0.04));
|
|
|
|
}
|
|
|
|
|
|
|
|
.page.has-page-header-style-boxed .search-control {
|
|
|
|
background-color: var(--tainacan-item-background-color, white);
|
|
|
|
box-shadow: var(--boxShadow, 0px 12px 18px -6px rgba(34, 56, 101, 0.04));
|
|
|
|
}
|
|
|
|
|
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;
|
2020-09-30 13:06:00 +00:00
|
|
|
--swiper-theme-color: var(--paletteColor1, #3eaf7c);
|
|
|
|
--swiper-navigation-color: var(--paletteColor1, #3eaf7c);
|
2020-12-30 03:31:53 +00:00
|
|
|
--swiper-navigation-size: 1.1rem;
|
2020-09-30 13:06:00 +00:00
|
|
|
}
|
|
|
|
|
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-12-30 03:31:53 +00:00
|
|
|
margin-bottom: 2.25rem;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-30 03:31:53 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section--document,
|
|
|
|
.tainacan-item-single .tainacan-item-section--gallery {
|
2020-12-29 04:33:20 +00:00
|
|
|
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--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-12-30 03:31:53 +00:00
|
|
|
grid-template-columns: 100%;
|
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-12-30 03:31:53 +00:00
|
|
|
grid-template-columns: 100%;
|
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 {
|
2020-12-30 03:31:53 +00:00
|
|
|
grid-template-areas: 'metadata' 'document' 'attachments';
|
|
|
|
grid-template-columns: 100%;
|
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 {
|
2020-12-30 03:31:53 +00:00
|
|
|
grid-template-areas: 'metadata document' 'metadata attachments' 'metadata .';
|
|
|
|
grid-template-columns: 60% 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 960px) {
|
|
|
|
.tainacan-item-single.tainacan-item-single--layout-type-mg {
|
|
|
|
grid-template-areas: 'metadata' 'document' 'attachments';
|
|
|
|
grid-template-columns: 100% !important;
|
|
|
|
}
|
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 {
|
2020-12-30 03:31:53 +00:00
|
|
|
grid-template-areas: 'document metadata' 'attachments metadata' '. metadata';
|
|
|
|
grid-template-columns: 60% 40%;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 960px) {
|
|
|
|
.tainacan-item-single.tainacan-item-single--layout-type-gm {
|
|
|
|
grid-template-areas: 'document' 'attachments' 'metadata';
|
|
|
|
grid-template-columns: 100% !important;
|
|
|
|
}
|
2020-12-29 04:33:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single h1 {
|
|
|
|
--fontSize: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single h2 {
|
2021-01-04 21:40:54 +00:00
|
|
|
--fontSize: 24px;
|
2020-12-29 04:33:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single h3 {
|
2021-01-04 21:40:54 +00:00
|
|
|
--fontSize: 20px;
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single h4 {
|
2021-01-04 21:40:54 +00:00
|
|
|
--fontSize: 18px;
|
2020-12-29 04:33:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single h5 {
|
2021-01-04 21:40:54 +00:00
|
|
|
--fontSize: 16px;
|
2020-12-29 04:33:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single h6 {
|
2021-01-04 21:40:54 +00:00
|
|
|
--fontSize: 14px;
|
2020-12-29 04:33:20 +00:00
|
|
|
}
|
|
|
|
|
2021-01-04 22:57:51 +00:00
|
|
|
.tainacan-item-single .tainacan-single-item-section {
|
|
|
|
text-align: var(--section-alignment, left);
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.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;
|
2020-12-30 03:31:53 +00:00
|
|
|
padding: 0px;
|
2020-12-28 19:39:26 +00:00
|
|
|
}
|
|
|
|
|
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 {
|
2021-02-15 00:37:52 +00:00
|
|
|
background-image: none;
|
2020-12-28 19:39:26 +00:00
|
|
|
top: 65px;
|
2020-12-30 03:31:53 +00:00
|
|
|
padding: 20px;
|
|
|
|
border-radius: 30px;
|
|
|
|
background-color: var(--background-color, #f8f9fb);
|
|
|
|
border: 1px solid var(--paletteColor1, #3eaf7c);
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .swiper-button-prev, .tainacan-item-single .tainacan-item-section__gallery-items .swiper-container-rtl .swiper-button-next,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .swiper-button-prev,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .swiper-container-rtl .swiper-button-next {
|
|
|
|
left: -20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .swiper-button-next, .tainacan-item-single .tainacan-item-section__gallery-items .swiper-container-rtl .swiper-button-prev,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .swiper-button-next,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .swiper-container-rtl .swiper-button-prev {
|
|
|
|
right: -20px;
|
2020-12-28 19:39:26 +00:00
|
|
|
}
|
|
|
|
|
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;
|
2021-02-23 02:09:46 +00:00
|
|
|
cursor: zoom-in;
|
2020-09-24 02:39:33 +00:00
|
|
|
word-break: break-all;
|
|
|
|
font-size: 0.875em;
|
2021-01-04 21:40:54 +00:00
|
|
|
max-width: calc(var(--attachments-size, 157px) + 17px);
|
2020-09-24 02:39:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@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);
|
2021-01-04 21:40:54 +00:00
|
|
|
width: var(--attachments-size, 140px);
|
|
|
|
height: var(--attachments-size, 140px);
|
2020-09-24 02:39:33 +00:00
|
|
|
object-fit: cover;
|
2020-12-30 03:31:53 +00:00
|
|
|
transition: border-bottom 0.3s ease;
|
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 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;
|
|
|
|
}
|
|
|
|
|
2021-01-04 22:57:51 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__gallery-items .tainacan-item-section__attachments-file .swiper-slide-name,
|
|
|
|
.tainacan-item-single .tainacan-item-section__attachments .tainacan-item-section__attachments-file .swiper-slide-name {
|
|
|
|
display: block;
|
|
|
|
margin-top: 0.5rem;
|
|
|
|
font-family: var(--fontFamily);
|
|
|
|
font-size: var(--fontSize);
|
|
|
|
font-weight: var(--fontWeight);
|
|
|
|
font-style: var(--fontStyle, inherit);
|
|
|
|
line-height: var(--lineHeight);
|
|
|
|
letter-spacing: var(--letterSpacing);
|
|
|
|
text-transform: var(--textTransform);
|
|
|
|
-webkit-text-decoration: var(--textDecoration);
|
|
|
|
text-decoration: var(--textDecoration);
|
|
|
|
}
|
|
|
|
|
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%;
|
2021-01-04 21:40:54 +00:00
|
|
|
max-width: var(--attachments-size, 140px);
|
2020-09-24 02:39:33 +00:00
|
|
|
text-align: center;
|
|
|
|
word-break: break-all;
|
2021-02-23 02:09:46 +00:00
|
|
|
cursor: zoom-in;
|
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 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;
|
|
|
|
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 {
|
2021-02-15 00:37:52 +00:00
|
|
|
box-sizing: border-box;
|
2020-09-24 02:39:33 +00:00
|
|
|
padding: 36px;
|
|
|
|
background-color: #dbdbdb;
|
|
|
|
object-fit: contain;
|
2021-02-15 00:37:52 +00:00
|
|
|
max-width: var(--attachments-size, 140px);
|
|
|
|
max-height: var(--attachments-size, 140px);
|
2020-09-24 02:39:33 +00:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-02-15 00:37:52 +00:00
|
|
|
.tainacan-item-single .pswp__caption__center {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
2020-12-29 04:33:20 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata {
|
2020-09-13 23:38:20 +00:00
|
|
|
height: 100%;
|
2021-01-03 23:47:07 +00:00
|
|
|
-moz-column-width: var(--metadata-column-width, 400px);
|
|
|
|
-webkit-column-width: var(--metadata-column-width, 400px);
|
|
|
|
column-width: var(--metadata-column-width, 400px);
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2021-01-04 22:57:51 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata .tainacan-metadata-label {
|
|
|
|
text-align: var(--metadata-label-alignment, left);
|
|
|
|
}
|
|
|
|
|
2021-01-03 21:17:51 +00:00
|
|
|
.tainacan-item-single .tainacan-item-section__metadata .tainacan-metadata-value {
|
2021-01-04 22:57:51 +00:00
|
|
|
text-align: var(--metadata-value-alignment, left);
|
2021-01-03 21:17:51 +00:00
|
|
|
font-family: var(--fontFamily);
|
|
|
|
font-size: var(--fontSize);
|
|
|
|
font-weight: var(--fontWeight);
|
|
|
|
font-style: var(--fontStyle, inherit);
|
|
|
|
line-height: var(--lineHeight);
|
|
|
|
letter-spacing: var(--letterSpacing);
|
|
|
|
text-transform: var(--textTransform);
|
|
|
|
-webkit-text-decoration: var(--textDecoration);
|
|
|
|
text-decoration: var(--textDecoration);
|
2021-01-03 23:47:07 +00:00
|
|
|
margin-bottom: 0.75rem;
|
|
|
|
padding-bottom: 0.75rem;
|
2021-01-04 21:40:54 +00:00
|
|
|
border-bottom: var(--metadata-value-border, 0px solid rgba(125, 125, 125, 0.5));
|
2021-01-03 21:17:51 +00:00
|
|
|
}
|
|
|
|
|
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;
|
2021-01-03 23:47:07 +00:00
|
|
|
border-left: 1px solid #e0e5eb;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 > div {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 > div .tainacan-metadata-label {
|
|
|
|
flex-basis: 40%;
|
|
|
|
margin-bottom: 0;
|
2021-01-04 21:40:54 +00:00
|
|
|
border-right: var(--metadata-label-border, 0px solid rgba(125, 125, 125, 0.5));
|
2021-01-03 23:47:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 > div .tainacan-metadata-value {
|
|
|
|
flex-basis: 60%;
|
|
|
|
padding-left: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 767px) {
|
|
|
|
.tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 > div {
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
.tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 > div .tainacan-metadata-label {
|
|
|
|
flex-basis: 100%;
|
|
|
|
margin-bottom: 0.25rem;
|
|
|
|
}
|
|
|
|
.tainacan-item-single .tainacan-item-section__metadata.metadata-type-2 > div .tainacan-metadata-value {
|
|
|
|
flex-basis: 100%;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
2020-09-13 23:38:20 +00:00
|
|
|
}
|
|
|
|
|
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 */
|