assets/css/appscms-theme.css in appscms-tools-theme-3.8.7 vs assets/css/appscms-theme.css in appscms-tools-theme-3.8.8
- old
+ new
@@ -773,11 +773,11 @@
color: #262628;
text-decoration: none;
}
.appscms-footer {
background-color: var(--while-color);
- padding: 10px;
+ padding: 44px 10px 10px 10px;
border-top: 1px solid rgb(148, 148, 148);
}
.appscms-footer-link {
list-style: none;
@@ -951,6 +951,206 @@
}
.video-h2,
.audio-h2 {
font-size: 22px;
+}
+.shareModal {
+ display: none;
+ position: fixed;
+ z-index: 100000000000;
+ left: 0;
+ top: 0;
+ width: 100%;
+ height: 100%;
+ overflow: auto;
+ background-color: rgba(0, 0, 0, 0.5);
+}
+
+.shareModal .share-modal-content {
+ background-color: #fefefe;
+ margin: 15% auto;
+ padding: 20px;
+ /* border: 1px solid #888; */
+ width: 70%;
+ height: 200px;
+ text-align: center;
+}
+
+.shareModal .close-share-modal {
+ color: #aaa;
+ float: right;
+ display: none;
+ font-size: 28px;
+ font-weight: bold;
+}
+.shareModal h5 {
+ color: #000;
+ padding-top: 10px;
+ font-weight: 700;
+}
+.shareModal .close-share-modal:hover,
+.shareModal .close-share-modal:focus {
+ color: black;
+ text-decoration: none;
+ cursor: pointer;
+}
+
+.share-modal-social {
+ display: flex;
+ gap: 30px;
+ height: 100%;
+ padding-bottom: 60px;
+ align-items: center;
+ justify-content: center;
+}
+.share-modal-social a {
+ color: #000;
+}
+.share-modal-social a i {
+ font-size: 30px;
+}
+
+.authors-list {
+ border-top: 1px solid rgb(224, 224, 224);
+ margin-top: 100px;
+ padding: 100px;
+}
+.authors-list a {
+ color: var(--dark-gray);
+}
+.featurePageAuthor {
+ display: flex;
+ flex-direction: column;
+ width: 100%;
+ justify-content: center;
+}
+
+.featurePageAuthor .author-meta {
+ width: 500px;
+ margin: 0 auto;
+ padding-bottom: 5rem;
+}
+
+.featurePageAuthor .author-meta .authorName {
+ font-size: 20px;
+ padding: 1rem 0px;
+ font-weight: 900;
+ text-align: center;
+}
+
+.featurePageAuthor .author-img {
+ width: 100px;
+ height: 100px;
+ border-radius: 100%;
+}
+
+.featurePageAuthor .author_bio {
+ font-size: 16px;
+}
+
+@media (max-width: 768px) {
+ .authors-list {
+ padding: 25px;
+ }
+
+ .featurePageAuthor .author-meta {
+ width: 100%;
+ }
+}
+.contributor {
+ width: 100px;
+}
+.contributor .contributor-name {
+ font-size: 13px;
+ margin-top: 8px;
+ text-transform: capitalize;
+}
+.infographics_section {
+ width: 100%;
+ padding: 50px 0px 50px 0px;
+ border-top: 1px solid rgb(224, 224, 224);
+}
+
+.infographics_section .infographics-desc {
+ position: absolute;
+ color: #000;
+ bottom: 0;
+}
+
+.infographics_section .slider {
+ position: relative;
+ max-width: 40rem;
+ height: 26.625rem;
+ margin: 0 auto;
+ overflow: hidden;
+}
+
+.infographics_section .slide {
+ position: absolute;
+ top: 0;
+ width: 100%;
+ height: 26.625rem;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ transition: transform 1s;
+}
+
+.infographics_section .slide img {
+ width: 200px;
+ height: 100%;
+ /* object-fit: contain; */
+}
+
+.infographics_section button {
+ background: none;
+ border: none;
+}
+
+.infographics_section button .fas {
+ color: #000;
+}
+
+.infographics_section .btn-slide {
+ position: absolute;
+ top: 50%;
+ z-index: 10;
+
+ height: 5.5rem;
+ width: 5.5rem;
+ cursor: pointer;
+}
+
+.infographics_section .prev {
+ left: 3rem;
+ transform: translate(-50%, -50%);
+}
+
+.infographics_section .next {
+ right: 3rem;
+ transform: translate(50%, -50%);
+}
+
+.infographics_section .dots-container {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ position: relative;
+}
+
+.infographics_section .dot {
+ width: 25px;
+ height: 5px;
+ margin: 15px 5px;
+ border-radius: 0.5rem;
+ background: rgba(39, 39, 39, 0.5);
+ cursor: pointer;
+}
+
+.infographics_section .dot.active {
+ background: #272727;
+}
+.slide img:hover {
+ transform: scale(1.4);
+ transition: cubic-bezier(0.165, 0.84, 0.44, 1);
}