code
stringlengths
2k
1.04M
repo_path
stringlengths
5
517
parsed_code
stringlengths
0
1.04M
quality_prob
float64
0.02
0.95
learning_prob
float64
0.02
0.93
body, html { height: 100%; } /* Holds all responsive elements */ .container { width: 100%; } #header-logo { width: 95%; max-width: 700px; transition: width 1s; } #pageHeader { padding-top: 10px; } .row { margin-bottom: 0 !important; } h3 { margin: 0.25em; font-family: "Kaushan Script"; } main { height: calc(100% - 120px); display: flex; flex-direction: column; } section { overflow-y: scroll; height: 35%; } .label-icon { display: flex; align-items: center; height: 100%; } .input-field { margin: 0; } #search { padding-left: 4rem; width: calc(100% - 4rem); font-size: 2rem; } /* user cue - when hovered over a memo title, mouse icon will be a pointer*/ .collection-item { cursor: pointer; } #content { margin: 1em 0 0 0; padding-bottom: 15px !important; display: flex; flex-direction: column; flex: 1; } .voicelyTitle { margin: 15px 0 0 0 !important; padding-left: 16px !important; width: 94.5% !important; } #alertText { margin: 0 0 15px 15px !important; color: red; } ul { margin-top: 0 !important; } #settings { display: none; margin: 0.5rem 0 0 0 !important; } li { font-family: Mali; font-size: large; } .collapsible-body { padding: 0; } #palette span { padding: 0 calc(100% / 38); } #phraseDiv { margin: 0.5em 0; flex: 1; } #custom-modal { display: none; /* Hidden by default */ z-index: 2; /* Sit on top */ top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ max-height: 100%; background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ } #custom-modal-content { border-radius: 22px; } #custom-modal #custom-modal-content { background-color: #fefefe; margin: 15% auto; /* 15% from the top and centered */ border: 1px solid #888; padding: 10px; text-align: center; width: 80%; min-width: 350px; } #custom-modal-input { max-width: 200px; background-color: lightgrey; border-radius: 10px 10px 0 0; } #close { color: #aaaaaa; top: 0; right: 0; float: right; font-size: 28px; font-weight: bold; line-height: 0.6em; } /* Hover and focus effects for modal */ #close:hover, #close:focus { color: #000; text-decoration: none; cursor: pointer; } .modal-button { margin: 0 0.5em; } /* */ @media (min-width: 993px) { main { align-items: stretch; flex-direction: row-reverse; } section { height: 100%; } }
Assets/css/style.css
body, html { height: 100%; } /* Holds all responsive elements */ .container { width: 100%; } #header-logo { width: 95%; max-width: 700px; transition: width 1s; } #pageHeader { padding-top: 10px; } .row { margin-bottom: 0 !important; } h3 { margin: 0.25em; font-family: "Kaushan Script"; } main { height: calc(100% - 120px); display: flex; flex-direction: column; } section { overflow-y: scroll; height: 35%; } .label-icon { display: flex; align-items: center; height: 100%; } .input-field { margin: 0; } #search { padding-left: 4rem; width: calc(100% - 4rem); font-size: 2rem; } /* user cue - when hovered over a memo title, mouse icon will be a pointer*/ .collection-item { cursor: pointer; } #content { margin: 1em 0 0 0; padding-bottom: 15px !important; display: flex; flex-direction: column; flex: 1; } .voicelyTitle { margin: 15px 0 0 0 !important; padding-left: 16px !important; width: 94.5% !important; } #alertText { margin: 0 0 15px 15px !important; color: red; } ul { margin-top: 0 !important; } #settings { display: none; margin: 0.5rem 0 0 0 !important; } li { font-family: Mali; font-size: large; } .collapsible-body { padding: 0; } #palette span { padding: 0 calc(100% / 38); } #phraseDiv { margin: 0.5em 0; flex: 1; } #custom-modal { display: none; /* Hidden by default */ z-index: 2; /* Sit on top */ top: 0; width: 100%; /* Full width */ height: 100%; /* Full height */ max-height: 100%; background-color: rgba(0,0,0,0.4); /* Black w/ opacity */ } #custom-modal-content { border-radius: 22px; } #custom-modal #custom-modal-content { background-color: #fefefe; margin: 15% auto; /* 15% from the top and centered */ border: 1px solid #888; padding: 10px; text-align: center; width: 80%; min-width: 350px; } #custom-modal-input { max-width: 200px; background-color: lightgrey; border-radius: 10px 10px 0 0; } #close { color: #aaaaaa; top: 0; right: 0; float: right; font-size: 28px; font-weight: bold; line-height: 0.6em; } /* Hover and focus effects for modal */ #close:hover, #close:focus { color: #000; text-decoration: none; cursor: pointer; } .modal-button { margin: 0 0.5em; } /* */ @media (min-width: 993px) { main { align-items: stretch; flex-direction: row-reverse; } section { height: 100%; } }
0.354433
0.089534
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @keyframes bounceDownIn { 0% { opacity: 0; transform: translateY(-2000px); } 60% { opacity: 1; transform: translateY(30px); } 80% { transform: translateY(-10px); } 100% { transform: translateY(0); } } @keyframes bounceDownOut { 0% { transform: translateY(0); } 20% { opacity: 1; transform: translateY(-20px); } 100% { opacity: 0; transform: translateY(2000px); } } @keyframes bounceIn { 0% { opacity: 0; transform: scale(0.3); } 50% { opacity: 1; transform: scale(1.05); } 70% { transform: scale(0.9); } 100% { transform: scale(1); } } @keyframes bounceOut { 0% { transform: scale(1); } 25% { transform: scale(0.95); } 50% { opacity: 1; transform: scale(1.1); } 100% { opacity: 0; transform: scale(0.3); } } @keyframes bounceLeftIn { 0% { opacity: 0; transform: translateX(-2000px); } 60% { opacity: 1; transform: translateX(30px); } 80% { transform: translateX(-10px); } 100% { transform: translateX(0); } } @keyframes bounceLeftOut { 0% { transform: translateX(0); } 20% { opacity: 1; transform: translateX(20px); } 100% { opacity: 0; transform: translateX(-2000px); } } @keyframes bounceRightIn { 0% { opacity: 0; transform: translateX(2000px); } 60% { opacity: 1; transform: translateX(-30px); } 80% { transform: translateX(10px); } 100% { transform: translateX(0); } } @keyframes bounceRightOut { 0% { transform: translateX(0); } 20% { opacity: 1; transform: translateX(-20px); } 100% { opacity: 0; transform: translateX(2000px); } } @keyframes bounceUpIn { 0% { opacity: 0; transform: translateY(2000px); } 60% { opacity: 1; transform: translateY(-30px); } 80% { transform: translateY(10px); } 100% { transform: translateY(0); } } @keyframes bounceUpOut { 0% { transform: translateY(0); } 20% { opacity: 1; transform: translateY(20px); } 100% { opacity: 0; transform: translateY(-2000px); } } .bounce-down-up-enter, .bounce-down-up-enter-active { animation-name: bounceDownIn; } .bounce-down-up-leave, .bounce-down-up-leave-active { animation-name: bounceUpOut; } .bounce-down-enter, .bounce-down-enter-active { animation-name: bounceDownIn; } .bounce-down-leave, .bounce-down-leave-active { animation-name: bounceDownOut; } .bounce-in-enter, .bounce-in-enter-active { animation-name: bounceIn; } .bounce-in-leave, .bounce-in-leave-active { animation-name: bounceOut; } .bounce-left-right-enter, .bounce-left-right-enter-active { animation-name: bounceLeftIn; } .bounce-left-right-leave, .bounce-left-right-leave-active { animation-name: bounceRightOut; } .bounce-left-enter, .bounce-left-enter-active { animation-name: bounceLeftIn; } .bounce-left-leave, .bounce-left-leave-active { animation-name: bounceLeftOut; } .bounce-right-left-enter, .bounce-right-left-enter-active { animation-name: bounceRightIn; } .bounce-right-left-leave, .bounce-right-left-leave-active { animation-name: bounceLeftOut; } .bounce-right-enter, .bounce-right-enter-active { animation-name: bounceRightIn; } .bounce-right-leave, .bounce-right-leave-active { animation-name: bounceRightOut; } .bounce-up-down-enter, .bounce-up-down-enter-active { animation-name: bounceUpIn; } .bounce-up-down-leave, .bounce-up-down-leave-active { animation-name: bounceDownOut; } .bounce-up-enter, .bounce-up-enter-active { animation-name: bounceUpIn; } .bounce-up-leave, .bounce-up-leave-active { animation-name: bounceUpOut; } .bounce-enter, .bounce-enter-active { animation-name: bounce; } .bounce-leave, .bounce-leave-active { animation-name: bounce; } @keyframes fadeIn { from { opacity: 0; } } @keyframes fadeOut { to { opacity: 0; } } @keyframes fadeDownIn { 0% { opacity: 0; transform: translateY(-100px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes fadeDownOut { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(100px); } } @keyframes fadeLeftIn { 0% { opacity: 0; transform: translateX(-100px); } 100% { opacity: 1; transform: translateX(0); } } @keyframes fadeLeftOut { 0% { opacity: 1; transform: translateX(0); } 100% { opacity: 0; transform: translateX(-100px); } } @keyframes fadeRightIn { 0% { opacity: 0; transform: translateX(100px); } 100% { opacity: 1; transform: translateX(0); } } @keyframes fadeRightOut { 0% { opacity: 1; transform: translateX(0); } 100% { opacity: 0; transform: translateX(100px); } } @keyframes fadeUpIn { 0% { opacity: 0; transform: translateY(100px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes fadeUpOut { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-100px); } } .fade-down-up-enter, .fade-down-up-enter-active { animation-name: fadeDownIn; } .fade-down-up-leave, .fade-down-up-leave-active { animation-name: fadeUpOut; } .fade-down-enter, .fade-down-enter-active { animation-name: fadeDownIn; } .fade-down-leave, .fade-down-leave-active { animation-name: fadeDownOut; } .fade-in-enter, .fade-in-enter-active { animation-name: fadeIn; } .fade-in-leave, .fade-in-leave-active { animation-name: fadeOut; } .fade-left-right-enter, .fade-left-right-enter-active { animation-name: fadeLeftIn; } .fade-left-right-leave, .fade-left-right-leave-active { animation-name: fadeRightOut; } .fade-left-enter, .fade-left-enter-active { animation-name: fadeLeftIn; } .fade-left-leave, .fade-left-leave-active { animation-name: fadeLeftOut; } .fade-right-left-enter, .fade-right-left-enter-active { animation-name: fadeRightIn; } .fade-right-left-leave, .fade-right-left-leave-active { animation-name: fadeLeftOut; } .fade-right-enter, .fade-right-enter-active { animation-name: fadeRightIn; } .fade-right-leave, .fade-right-leave-active { animation-name: fadeRightOut; } .fade-up-down-enter, .fade-up-down-enter-active { animation-name: fadeUpIn; } .fade-up-down-leave, .fade-up-down-leave-active { animation-name: fadeDownOut; } .fade-up-enter, .fade-up-enter-active { animation-name: fadeUpIn; } .fade-up-leave, .fade-up-leave-active { animation-name: fadeUpOut; } @keyframes fallIn { from { opacity: 0; transform: perspective(1300px) translateZ(600px) rotateX(20deg); } to { opacity: 1; transform: perspective(1300px) translateZ(0) rotateX(0); } } @keyframes fallOut { from { opacity: 1; transform: perspective(1300px) translateZ(0) rotateX(0); } to { opacity: 0; transform: perspective(1300px) translateZ(600px) rotateX(20deg); } } @keyframes fallLeftIn { from { opacity: 0; transform: perspective(1300px) translate(-40%) translateZ(600px) rotateX(-15deg); } to { opacity: 1; transform: perspective(1300px) translate(0) translateZ(0) rotateX(0); } } @keyframes fallLeftOut { from { opacity: 1; transform: perspective(1300px) translate(0) translateZ(0) rotateX(0); } to { transform: perspective(1300px) translate(-40%) translateZ(600px) rotateX(-15deg); opacity: 0; } } @keyframes fallRightIn { from { opacity: 0; transform: perspective(1300px) translate(40%) translateZ(600px) rotateX(15deg); } to { opacity: 1; transform: perspective(1300px) translate(0) translateZ(0) rotateX(0); } } @keyframes fallRightOut { from { opacity: 1; transform: perspective(1300px) translate(0) translateZ(0) rotateX(0); } to { opacity: 0; transform: perspective(1300px) translate(40%) translateZ(600px) rotateX(15deg); } } .fall-left-right-enter, .fall-left-right-enter-active { animation-name: fallLeftIn; } .fall-left-right-leave, .fall-left-right-leave-active { animation-name: fallRightOut; } .fall-left-enter, .fall-left-enter-active { animation-name: fallLeftIn; } .fall-left-leave, .fall-left-leave-active { animation-name: fallLeftOut; } .fall-right-left-enter, .fall-right-left-enter-active { animation-name: fallRightIn; } .fall-right-left-leave, .fall-right-left-leave-active { animation-name: fallLeftOut; } .fall-right-enter, .fall-right-enter-active { animation-name: fallRightIn; } .fall-right-leave, .fall-right-leave-active { animation-name: fallRightOut; } .fall-enter, .fall-enter-active { animation-name: fallIn; } .fall-leave, .fall-leave-active { animation-name: fallOut; } @keyframes flashIn { 0% { opacity: 0.8; color: yellow; } 50% { opacity: 0.8; color: purple; } 100% { opacity: 1; } 25%, 75% { opacity: 0.1; color: red; } } @keyframes flashOut { 100% { opacity: 0.1; } 50% { opacity: 0.9; color: purple; } 0% { opacity: 1; color: yellow; } 25%, 75% { opacity: 0.3; color: red; } } @keyframes greenAlertIn { 0%, 40%, 80% { box-shadow: -100px 0px 50px -50px #4cae4c, 100px 0px 50px -50px #4cae4c, inset 0px 0px 200px #4cae4c; background-color: #FFF; opacity: 0.5; } 20%, 60%, 100% { box-shadow: none; opacity: 1; background-color: initial; } } @keyframes greenAlertOut { 20%, 60%, 100% { box-shadow: -100px 0px 50px -50px #4cae4c, 100px 0px 50px -50px #4cae4c, inset 0px 0px 200px #4cae4c; background-color: #FFF; opacity: 0.5; } 0%, 40%, 80% { box-shadow: none; opacity: 1; background-color: initial; } } @keyframes redAlertIn { 0%, 40%, 80% { box-shadow: -100px 0px 50px -50px #ff3232, 100px 0px 50px -50px #ff3232, inset 0px 0px 200px #ff3232; background-color: #FFF; opacity: 0.5; } 20%, 60%, 100% { box-shadow: none; opacity: 1; background-color: initial; } } @keyframes redAlertOut { 20%, 60%, 100% { box-shadow: -100px 0px 50px -50px #ff3232, 100px 0px 50px -50px #ff3232, inset 0px 0px 200px #ff3232; background-color: #FFF; opacity: 0.5; } 0%, 40%, 80% { box-shadow: none; opacity: 1; background-color: initial; } } @keyframes warningAlertIn { 0%, 40%, 80% { box-shadow: -100px 0px 50px -50px #eea236, 100px 0px 50px -50px #eea236, inset 0px 0px 200px #eea236; background-color: #FFF; opacity: 0.5; } 20%, 60%, 100% { box-shadow: none; opacity: 1; background-color: initial; } } @keyframes warningAlertOut { 20%, 60%, 100% { box-shadow: -100px 0px 50px -50px #eea236, 100px 0px 50px -50px #eea236, inset 0px 0px 200px #eea236; background-color: #FFF; opacity: 0.5; } 0%, 40%, 80% { box-shadow: none; opacity: 1; background-color: initial; } } .flash-enter, .flash-enter-active { animation-name: flashIn; } .flash-leave, .flash-leave-active { animation-name: flashOut; } .green-alert-enter, .green-alert-enter-active { animation-name: greenAlertIn; } .green-alert-leave, .green-alert-leave-active { animation-name: greenAlertOut; } .red-alert-enter, .red-alert-enter-active { animation-name: redAlertIn; } .red-alert-leave, .red-alert-leave-active { animation-name: redAlertOut; } .warning-alert-enter, .warning-alert-enter-active { animation-name: warningAlertIn; } .warning-alert-leave, .warning-alert-leave-active { animation-name: warningAlertOut; } @keyframes flip { 0% { transform: perspective(400px) translateZ(0) rotateY(0) scale(1); animation-timing-function: ease-out; } 40% { transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); animation-timing-function: ease-out; } 50% { transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); animation-timing-function: ease-in; } 80% { transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95); animation-timing-function: ease-in; } 100% { transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); animation-timing-function: ease-in; } } @keyframes flipSlideIn { 0% { transform: perspective(800px) rotateX(1080deg) translateY(-100%) scale(0.1); opacity: 0.8; } 100% { transform: perspective(800px) rotateX(0deg) translateY(0) scale(1); opacity: 1; } } @keyframes flipSlideOut { 100% { transform: perspective(800px) rotateX(1080deg) translateY(100%) scale(0.1); opacity: 0.8; } 0% { transform: perspective(800px) rotateX(0deg) translateY(0) scale(1); opacity: 1; } } @keyframes flipSlideXIn { 0% { transform: perspective(800px) rotateX(180deg) translateY(-100%); opacity: 0; } 100% { transform: perspective(800px) rotateX(0deg) translateY(0); opacity: 1; } } @keyframes flipSlideXOut { 100% { transform: perspective(800px) rotateX(180deg) translateY(-100%); opacity: 0; } 0% { transform: perspective(800px) rotateX(0deg) translateY(0); opacity: 1; } } @keyframes flipSlideXInverseIn { 0% { transform: perspective(800px) rotateX(-180deg) translateY(100%); opacity: 0; } 100% { transform: perspective(800px) rotateX(0deg) translateY(0); opacity: 1; } } @keyframes flipSlideXInverseOut { 100% { transform: perspective(800px) rotateX(-180deg) translateY(100%); opacity: 0; } 0% { transform: perspective(800px) rotateX(0deg) translateY(0); opacity: 1; } } @keyframes flipSlideYIn { 0% { transform: perspective(800px) rotateY(-180deg) translateX(-100%); opacity: 0; } 100% { transform: perspective(800px) rotateY(0deg) translateX(0); opacity: 1; } } @keyframes flipSlideYOut { 0% { transform: perspective(800px) rotateY(0deg) translateX(0); opacity: 1; } 100% { transform: perspective(800px) rotateY(-180deg) translateX(-100%); opacity: 0; } } @keyframes flipSlideYInverseIn { 0% { transform: perspective(800px) rotateY(180deg) translateX(100%); opacity: 0; } 100% { transform: perspective(800px) rotateY(0deg) translateX(0); opacity: 1; } } @keyframes flipSlideYInverseOut { 0% { transform: perspective(800px) rotateY(0deg) translateX(0); opacity: 1; } 100% { transform: perspective(800px) rotateY(180deg) translateX(100%); opacity: 0; } } @keyframes flipSlideZIn { 0% { transform: perspective(400px) rotateY(180deg) rotateZ(90deg) translateX(-100%) translateY(100%); transform-origin: center center; opacity: 0; } 100% { transform: perspective(400px) rotate(0) translate(0); transform-origin: center center; opacity: 1; } } @keyframes flipSlideZOut { 100% { transform: perspective(400px) rotateY(180deg) rotateZ(90deg) translateX(-100%) translateY(100%); transform-origin: center center; opacity: 0; } 0% { transform: perspective(400px) rotate(0) translate(0); transform-origin: center center; opacity: 1; } } @keyframes flipSlideZInverseIn { 0% { transform: perspective(400px) rotateY(180deg) rotateZ(-90deg) translateX(100%) translateY(100%); transform-origin: center center; opacity: 0; } 100% { transform: perspective(400px) rotate(0) translate(0); transform-origin: center center; opacity: 1; } } @keyframes flipSlideZInverseOut { 100% { transform: perspective(400px) rotateY(-180deg) rotateZ(-90deg) translateX(100%) translateY(100%); transform-origin: center center; opacity: 0; } 0% { transform: perspective(400px) rotate(0) translate(0); transform-origin: center center; opacity: 1; } } @keyframes flipSwingXIn { 0% { transform: perspective(400px) rotateX(90deg); } 40% { transform: perspective(400px) rotateX(-10deg); } 70% { transform: perspective(400px) rotateX(10deg); } 100% { transform: perspective(400px) rotateX(0deg); } } @keyframes flipSwingXOut { 0% { transform: perspective(400px) rotateX(0deg); } 40% { transform: perspective(400px) rotateX(10deg); } 70% { transform: perspective(400px) rotateX(-10deg); } 100% { transform: perspective(400px) rotateX(90deg); } } @keyframes flipSwingYIn { 0% { transform: perspective(400px) rotateY(-90deg); opacity: 0; } 40% { transform: perspective(400px) rotateY(10deg); } 70% { transform: perspective(400px) rotateY(-10deg); } 100% { transform: perspective(400px) rotateY(0deg); opacity: 1; } } @keyframes flipSwingYOut { 0% { transform: perspective(400px) rotateY(0deg); } 40% { transform: perspective(400px) rotateY(-10deg); } 70% { transform: perspective(400px) rotateY(10deg); } 100% { transform: perspective(400px) rotateY(-90deg); } } @keyframes flipSwingZIn { 0% { transform: perspective(400px) rotateY(90deg) rotateZ(90deg); transform-origin: center center; opacity: 0; } 40% { transform: perspective(400px) rotateY(-10deg) rotateZ(-10deg); transform-origin: center center; } 70% { transform: perspective(400px) rotateY(10deg) rotateZ(10deg); transform-origin: center center; } 100% { transform: perspective(400px) rotate(0); transform-origin: center center; opacity: 1; } } @keyframes flipSwingZOut { 100% { transform: perspective(400px) rotateY(90deg) rotateZ(90deg); transform-origin: center center; opacity: 0; } 70% { transform: perspective(400px) rotateY(-10deg) rotateZ(-10deg); transform-origin: center center; } 40% { transform: perspective(400px) rotateY(10deg) rotateZ(10deg); transform-origin: center center; } 0% { transform: perspective(400px) rotate(0); transform-origin: center center; opacity: 1; } } @keyframes flipXIn { 0% { transform: perspective(400px) rotateX(90deg); opacity: 0; } 100% { transform: perspective(400px) rotateX(0deg); opacity: 1; } } @keyframes flipXOut { 0% { transform: perspective(400px) rotateX(0deg); } 100% { transform: perspective(400px) rotateX(90deg); } } @keyframes flipXInverseIn { 0% { transform: perspective(400px) rotateX(-90deg); opacity: 0; } 100% { transform: perspective(400px) rotateX(0deg); opacity: 1; } } @keyframes flipXInverseOut { 0% { transform: perspective(400px) rotateX(0deg); } 100% { transform: perspective(400px) rotateX(-90deg); } } @keyframes flipYIn { 0% { transform: perspective(400px) rotateY(-90deg); opacity: 0; } 100% { transform: perspective(400px) rotateY(0deg); opacity: 1; } } @keyframes flipYOut { 0% { transform: perspective(400px) rotateY(0deg); opacity: 1; } 100% { transform: perspective(400px) rotateY(-90deg); opacity: 0; } } @keyframes flipYInverseIn { 0% { transform: perspective(400px) rotateY(90deg); opacity: 0; } 100% { transform: perspective(400px) rotateY(0deg); opacity: 1; } } @keyframes flipYInverseOut { 0% { transform: perspective(400px) rotateY(0deg); opacity: 1; } 100% { transform: perspective(400px) rotateY(90deg); opacity: 0; } } @keyframes flipZIn { 0% { transform: perspective(400px) rotateY(90deg) rotateZ(90deg); transform-origin: center center; opacity: 0; } 100% { transform: perspective(400px) rotate(0); transform-origin: center center; opacity: 1; } } @keyframes flipZOut { 100% { transform: perspective(400px) rotateY(90deg) rotateZ(90deg); transform-origin: center center; opacity: 0; } 0% { transform: perspective(400px) rotate(0); transform-origin: center center; opacity: 1; } } @keyframes flipZInverseIn { 0% { transform: perspective(400px) rotateY(-90deg) rotateZ(-90deg); transform-origin: center center; opacity: 0; } 100% { transform: perspective(400px) rotate(0); transform-origin: center center; opacity: 1; } } @keyframes flipZInverseOut { 100% { transform: perspective(400px) rotateY(-90deg) rotateZ(-90deg); transform-origin: center center; opacity: 0; } 0% { transform: perspective(400px) rotate(0); transform-origin: center center; opacity: 1; } } .flip-slide-x-inverse-enter, .flip-slide-x-inverse-enter-active { animation-name: flipSlideXInverseIn; } .flip-slide-x-inverse-leave, .flip-slide-x-inverse-leave-active { animation-name: flipSlideXInverseOut; } .flip-slide-x-through-enter, .flip-slide-x-through-enter-active { animation-name: flipSlideXIn; } .flip-slide-x-through-leave, .flip-slide-x-through-leave-active { animation-name: flipSlideXInverseOut; } .flip-slide-x-enter, .flip-slide-x-enter-active { animation-name: flipSlideXIn; } .flip-slide-x-leave, .flip-slide-x-leave-active { animation-name: flipSlideXOut; } .flip-slide-y-inverse-enter, .flip-slide-y-inverse-enter-active { animation-name: flipSlideYInverseIn; } .flip-slide-y-inverse-leave, .flip-slide-y-inverse-leave-active { animation-name: flipSlideYInverseOut; } .flip-slide-y-through-enter, .flip-slide-y-through-enter-active { animation-name: flipSlideYIn; } .flip-slide-y-through-leave, .flip-slide-y-through-leave-active { animation-name: flipSlideYInverseOut; } .flip-slide-y-enter, .flip-slide-y-enter-active { animation-name: flipSlideYIn; } .flip-slide-y-leave, .flip-slide-y-leave-active { animation-name: flipSlideYOut; } .flip-slide-z-inverse-enter, .flip-slide-z-inverse-enter-active { animation-name: flipSlideZInverseIn; } .flip-slide-z-inverse-leave, .flip-slide-z-inverse-leave-active { animation-name: flipSlideZInverseOut; } .flip-slide-z-through-enter, .flip-slide-z-through-enter-active { animation-name: flipSlideZIn; } .flip-slide-z-through-leave, .flip-slide-z-through-leave-active { animation-name: flipSlideZInverseOut; } .flip-slide-z-enter, .flip-slide-z-enter-active { animation-name: flipSlideZIn; } .flip-slide-z-leave, .flip-slide-z-leave-active { animation-name: flipSlideZOut; } .flip-slide-enter, .flip-slide-enter-active { animation-name: flipSlideIn; } .flip-slide-leave, .flip-slide-leave-active { animation-name: flipSlideOut; } .flip-swing-x-enter, .flip-swing-x-enter-active { animation-name: flipSwingXIn; } .flip-swing-x-leave, .flip-swing-x-leave-active { animation-name: flipSwingXOut; } .flip-swing-y-enter, .flip-swing-y-enter-active { animation-name: flipSwingYIn; } .flip-swing-y-leave, .flip-swing-y-leave-active { animation-name: flipSwingYOut; } .flip-swing-z-enter, .flip-swing-z-enter-active { animation-name: flipSwingZIn; } .flip-swing-z-leave, .flip-swing-z-leave-active { animation-name: flipSwingZOut; } .flip-x-inverse-enter, .flip-x-inverse-enter-active { animation-name: flipXInverseIn; } .flip-x-inverse-leave, .flip-x-inverse-leave-active { animation-name: flipXInverseOut; } .flip-x-through-enter, .flip-x-through-enter-active { animation-name: flipXIn; } .flip-x-through-leave, .flip-x-through-leave-active { animation-name: flipXInverseOut; } .flip-x-enter, .flip-x-enter-active { animation-name: flipXIn; } .flip-x-leave, .flip-x-leave-active { animation-name: flipXOut; } .flip-y-inverse-enter, .flip-y-inverse-enter-active { animation-name: flipYInverseIn; } .flip-y-inverse-leave, .flip-y-inverse-leave-active { animation-name: flipYInverseOut; } .flip-y-through-enter, .flip-y-through-enter-active { animation-name: flipYIn; } .flip-y-through-leave, .flip-y-through-leave-active { animation-name: flipYInverseOut; } .flip-y-enter, .flip-y-enter-active { animation-name: flipYIn; } .flip-y-leave, .flip-y-leave-active { animation-name: flipYOut; } .flip-z-inverse-enter, .flip-z-inverse-enter-active { animation-name: flipZInverseIn; } .flip-z-inverse-leave, .flip-z-inverse-leave-active { animation-name: flipZInverseOut; } .flip-z-through-enter, .flip-z-through-enter-active { animation-name: flipZIn; } .flip-z-through-leave, .flip-z-through-leave-active { animation-name: flipZInverseOut; } .flip-z-enter, .flip-z-enter-active { animation-name: flipZIn; } .flip-z-leave, .flip-z-leave-active { animation-name: flipZOut; } .flip-enter, .flip-enter-active { animation-name: flip; } .flip-leave, .flip-leave-active { animation-name: flip; } @keyframes hingeIn { 0% { transform: translateY(700px); opacity: 0; } 20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; } 40% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; } 80% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; } 100% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; } } @keyframes hingeOut { 100% { transform: translateY(-700px); opacity: 0; } 20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; } 80% { transform: rotate(-60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; } 40% { transform: rotate(-60deg); transform-origin: top left; animation-timing-function: ease-in-out; } 0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; } } @keyframes hingeRightIn { 0% { transform: translateY(-700px); opacity: 0; } 20%, 60% { transform: rotate(-80deg); transform-origin: top right; animation-timing-function: ease-in-out; } 40% { transform: rotate(-60deg) translateY(0); opacity: 1; transform-origin: top right; animation-timing-function: ease-in-out; } 80% { transform: rotate(60deg); transform-origin: top right; animation-timing-function: ease-in-out; } 100% { transform: rotate(0); transform-origin: top right; animation-timing-function: ease-in-out; } } @keyframes hingeRightOut { 100% { transform: translateY(-700px); opacity: 0; } 20%, 60% { transform: rotate(-80deg); transform-origin: top right; animation-timing-function: ease-in-out; } 80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top right; animation-timing-function: ease-in-out; } 40% { transform: rotate(60deg); transform-origin: top right; animation-timing-function: ease-in-out; } 0% { transform: rotate(0); transform-origin: top right; animation-timing-function: ease-in-out; } } .hinge-left-right-enter, .hinge-left-right-enter-active { animation-name: hingeIn; } .hinge-left-right-leave, .hinge-left-right-leave-active { animation-name: hingeRightOut; } .hinge-right-left-enter, .hinge-right-left-enter-active { animation-name: hingeRightIn; } .hinge-right-left-leave, .hinge-right-left-leave-active { animation-name: hingeOut; } .hinge-right-enter, .hinge-right-enter-active { animation-name: hingeRightIn; } .hinge-right-leave, .hinge-right-leave-active { animation-name: hingeRightOut; } .hinge-enter, .hinge-enter-active { animation-name: hingeIn; } .hinge-leave, .hinge-leave-active { animation-name: hingeOut; } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } } @keyframes pulseLarge { 0% { transform: scale(1); } 50% { transform: scale(2.3); } 100% { transform: scale(1); } } .pulse-large-enter, .pulse-large-enter-active { animation-name: pulseLarge; } .pulse-large-leave, .pulse-large-leave-active { animation-name: pulseLarge; } .pulse-enter, .pulse-enter-active { animation-name: pulse; } .pulse-leave, .pulse-leave-active { animation-name: pulse; } @keyframes rollIn { 0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); } 100% { opacity: 1; transform: translateX(0px) rotate(0deg); } } @keyframes rollOut { 0% { opacity: 1; transform: translateX(0px) rotate(0deg); } 100% { opacity: 0; transform: translateX(100%) rotate(120deg); } } @keyframes rollRightIn { 0% { opacity: 0; transform: translateX(100%) rotate(120deg); } 100% { opacity: 1; transform: translateX(0px) rotate(0deg); } } @keyframes rollRightOut { 0% { opacity: 1; transform: translateX(0px) rotate(0deg); } 100% { opacity: 0; transform: translateX(-100%) rotate(-120deg); } } .roll-right-enter, .roll-right-enter-active { animation-name: rollRightIn; } .roll-right-leave, .roll-right-leave-active { animation-name: rollRightOut; } .roll-enter, .roll-enter-active { animation-name: rollIn; } .roll-leave, .roll-leave-active { animation-name: rollOut; } @keyframes flyLeftIn { 0% { transform: perspective(600px) translateX(-100%) translateZ(200px) rotateY(-240deg); animation-timing-function: linear; opacity: 0; } 50% { transform: perspective(600px) translateX(-50%) translateZ(100px) rotateY(-120deg); animation-timing-function: linear; opacity: 0.5; } 100% { transform: perspective(600px) translateZ(0) translateX(0) rotateY(0); animation-timing-function: linear; opacity: 1; } } @keyframes flyLeftOut { 100% { transform: perspective(600px) translateX(-100%) translateZ(200px) rotateY(-240deg); animation-timing-function: linear; opacity: 0; } 50% { transform: perspective(600px) translateX(-50%) translateZ(100px) rotateY(-120deg); animation-timing-function: linear; opacity: 0.5; } 0% { transform: perspective(600px) translateZ(0) translateX(0) rotateY(0); animation-timing-function: linear; opacity: 1; } } @keyframes flyRightIn { 0% { transform: perspective(600px) translateX(100%) translateZ(200px) rotateY(240deg); transform-origin: 50% 100%; animation-timing-function: linear; opacity: 0; } 50% { transform: perspective(600px) translateX(50%) translateZ(100px) rotateY(120deg); transform-origin: 50% 100%; animation-timing-function: linear; opacity: 0.5; } 100% { transform: perspective(600px) translateZ(0) translateX(0) rotateY(0); transform-origin: 50% 100%; animation-timing-function: linear; opacity: 1; } } @keyframes flyRightOut { 100% { transform: perspective(600px) translateX(100%) translateZ(200px) rotateY(240deg); transform-origin: 50% 100%; animation-timing-function: linear; opacity: 0; } 50% { transform: perspective(600px) translateX(50%) translateZ(100px) rotateY(120deg); transform-origin: 50% 100%; animation-timing-function: linear; opacity: 0.5; } 0% { transform: perspective(600px) translateZ(0) translateX(0) rotateY(0); transform-origin: 50% 100%; animation-timing-function: linear; opacity: 1; } } @keyframes newspaperIn { 0% { transform: scale(0) rotate(720deg); opacity: 0; } 100% { transform: scale(1) rotate(0); opacity: 1; } } @keyframes newspaperOut { 0% { transform: scale(1) rotate(0); opacity: 1; } 100% { transform: scale(0) rotate(-720deg); opacity: 0; } } @keyframes newspaperInverseIn { 0% { transform: scale(0) rotate(-720deg); opacity: 0; } 100% { transform: scale(1) rotate(0); opacity: 1; } } @keyframes newspaperInverseOut { 0% { transform: scale(1) rotate(0); opacity: 1; } 100% { transform: scale(0) rotate(720deg); opacity: 0; } } @keyframes rotateBottomIn { 0% { opacity: 0; transform: translateZ(-100px) translateY(100%) rotateX(90deg); transform-origin: 0 100%; } 100% { transform: perspective(1300px) rotate(0) translate(0); transform-origin: 0 100%; opacity: 1; } } @keyframes rotateBottomOut { 0% { transform: perspective(1300px) rotate(0) translate(0); transform-origin: 0 100%; opacity: 1; } 100% { opacity: 0; transform: translateZ(-100px) translateY(100%) rotateX(90deg); transform-origin: 0 100%; } } @keyframes rotateDownLeftIn { 0% { transform: rotate(-90deg); transform-origin: left bottom; opacity: 0; } 100% { transform: rotate(0); transform-origin: left bottom; opacity: 1; } } @keyframes rotateDownLeftOut { 0% { transform: rotate(0); transform-origin: left bottom; opacity: 1; } 100% { transform: rotate(90deg); transform-origin: left bottom; opacity: 0; } } @keyframes rotateDownRightIn { 0% { transform: rotate(90deg); transform-origin: right bottom; opacity: 0; } 100% { transform: rotate(0); transform-origin: right bottom; opacity: 1; } } @keyframes rotateDownRightOut { 0% { transform: rotate(0); transform-origin: right bottom; opacity: 1; } 100% { transform: rotate(-90deg); transform-origin: right bottom; opacity: 0; } } @keyframes rotateInverseIn { 0% { transform: rotate(200deg); opacity: 0; } 100% { transform-origin: center center; transform: rotate(0); opacity: 1; } } @keyframes rotateInverseOut { 0% { transform-origin: center center; transform: rotate(0); opacity: 1; } 100% { transform-origin: center center; transform: rotate(-200deg); opacity: 0; } } @keyframes rotateLeftIn { 0% { opacity: 0; transform: translateZ(100px) translateX(-30%) rotateY(90deg); transform-origin: 0 100%; } 100% { transform: rotate(0) translate(0) perspective(1300px); transform-origin: 0 100%; opacity: 1; } } @keyframes rotateLeftOut { 0% { transform: rotate(0) translate(0) perspective(1300px); transform-origin: 0 100%; opacity: 1; } 100% { opacity: 0; transform: translateZ(100px) translateX(-30%) rotateY(90deg); transform-origin: 0 100%; } } @keyframes rotateRightIn { 0% { opacity: 0; transform: translateZ(100px) translateX(0%) rotateY(-90deg); transform-origin: 100% 100%; } 100% { transform: perspective(1300px) rotate(0) translate(0); transform-origin: 100% 100%; opacity: 1; } } @keyframes rotateRightOut { 0% { transform: perspective(1300px) rotate(0) translate(0); transform-origin: 100% 100%; opacity: 1; } 100% { opacity: 0; transform: translateZ(100px) translateX(30%) rotateY(-90deg); transform-origin: 100% 100%; } } @keyframes rotateTopIn { 0% { opacity: 0; transform: translateZ(100px) translateY(-100%) rotateX(-90deg); transform-origin: 0 0; } 100% { transform: perspective(1300px) rotate(0) translate(0); transform-origin: 0 0; opacity: 1; } } @keyframes rotateTopOut { 0% { transform: perspective(1300px) rotate(0) translate(0); transform-origin: 0 0; opacity: 1; } 100% { opacity: 0; transform: translateZ(100px) translateY(-100%) rotateX(-90deg); transform-origin: 0 0; } } @keyframes rotateUpLeftIn { 0% { transform: rotate(90deg); transform-origin: left bottom; opacity: 0; } 100% { transform: rotate(0); transform-origin: left bottom; opacity: 1; } } @keyframes rotateUpLeftOut { 0% { transform: rotate(0); transform-origin: left bottom; opacity: 1; } 100% { transform: rotate(-90deg); transform-origin: left bottom; opacity: 0; } } @keyframes rotateUpRightIn { 0% { transform: rotate(-90deg); transform-origin: 100% 100%; opacity: 0; } 100% { transform: rotate(0); transform-origin: 100% 100%; opacity: 1; } } @keyframes rotateUpRightOut { 0% { transform: rotate(0); transform-origin: 100% 100%; opacity: 1; } 100% { transform: rotate(90deg); transform-origin: 100% 100%; opacity: 0; } } @keyframes rotateIn { 0% { transform: rotate(-200deg); opacity: 0; } 100% { transform-origin: center center; transform: rotate(0); opacity: 1; } } @keyframes rotateOut { 0% { transform-origin: center center; transform: rotate(0); opacity: 1; } 100% { transform-origin: center center; transform: rotate(200deg); opacity: 0; } } .fly-left-right-enter, .fly-left-right-enter-active { animation-name: flyLeftIn; } .fly-left-right-leave, .fly-left-right-leave-active { animation-name: flyRightOut; } .fly-left-enter, .fly-left-enter-active { animation-name: flyLeftIn; } .fly-left-leave, .fly-left-leave-active { animation-name: flyLeftOut; } .fly-right-left-enter, .fly-right-left-enter-active { animation-name: flyRightIn; } .fly-right-left-leave, .fly-right-left-leave-active { animation-name: flyLeftOut; } .fly-right-enter, .fly-right-enter-active { animation-name: flyRightIn; } .fly-right-leave, .fly-right-leave-active { animation-name: flyRightOut; } .newspaper-inverse-enter, .newspaper-inverse-enter-active { animation-name: newspaperInverseIn; } .newspaper-inverse-leave, .newspaper-inverse-leave-active { animation-name: newspaperInverseOut; } .newspaper-enter, .newspaper-enter-active { animation-name: newspaperIn; } .newspaper-leave, .newspaper-leave-active { animation-name: newspaperOut; } .rotate-bottom-top-enter, .rotate-bottom-top-enter-active { animation-name: rotateBottomIn; } .rotate-bottom-top-leave, .rotate-bottom-top-leave-active { animation-name: rotateTopOut; } .rotate-bottom-enter, .rotate-bottom-enter-active { animation-name: rotateBottomIn; } .rotate-bottom-leave, .rotate-bottom-leave-active { animation-name: rotateBottomOut; } .rotate-down-left-enter, .rotate-down-left-enter-active { animation-name: rotateDownLeftIn; } .rotate-down-left-leave, .rotate-down-left-leave-active { animation-name: rotateDownLeftOut; } .rotate-down-right-enter, .rotate-down-right-enter-active { animation-name: rotateDownRightIn; } .rotate-down-right-leave, .rotate-down-right-leave-active { animation-name: rotateDownRightOut; } .rotate-inverse-enter, .rotate-inverse-enter-active { animation-name: rotateInverseIn; } .rotate-inverse-leave, .rotate-inverse-leave-active { animation-name: rotateInverseOut; } .rotate-left-right-enter, .rotate-left-right-enter-active { animation-name: rotateLeftIn; } .rotate-left-right-leave, .rotate-left-right-leave-active { animation-name: rotateRightOut; } .rotate-left-enter, .rotate-left-enter-active { animation-name: rotateLeftIn; } .rotate-left-leave, .rotate-left-leave-active { animation-name: rotateLeftOut; } .rotate-right-left-enter, .rotate-right-left-enter-active { animation-name: rotateRightIn; } .rotate-right-left-leave, .rotate-right-left-leave-active { animation-name: rotateLeftOut; } .rotate-right-enter, .rotate-right-enter-active { animation-name: rotateRightIn; } .rotate-right-leave, .rotate-right-leave-active { animation-name: rotateRightOut; } .rotate-top-bottom-enter, .rotate-top-bottom-enter-active { animation-name: rotateTopIn; } .rotate-top-bottom-leave, .rotate-top-bottom-leave-active { animation-name: rotateBottomOut; } .rotate-top-enter, .rotate-top-enter-active { animation-name: rotateTopIn; } .rotate-top-leave, .rotate-top-leave-active { animation-name: rotateTopOut; } .rotate-up-left-enter, .rotate-up-left-enter-active { animation-name: rotateUpLeftIn; } .rotate-up-left-leave, .rotate-up-left-leave-active { animation-name: rotateUpLeftOut; } .rotate-up-right-enter, .rotate-up-right-enter-active { animation-name: rotateUpRightIn; } .rotate-up-right-leave, .rotate-up-right-leave-active { animation-name: rotateUpRightOut; } .rotate-enter, .rotate-enter-active { animation-name: rotateIn; } .rotate-leave, .rotate-leave-active { animation-name: rotateOut; } @keyframes scaleIn { from { opacity: 0; transform: scale(0.3); } to { opacity: 1; transform: scale(1); } } @keyframes scaleOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.3); } } @keyframes scaleLargeIn { from { opacity: 0; transform: scale(2); } to { opacity: 1; transform: scale(1); } } @keyframes scaleLargeOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(2); } } .scale-large-enter, .scale-large-enter-active { animation-name: scaleLargeIn; } .scale-large-leave, .scale-large-leave-active { animation-name: scaleLargeOut; } .scale-enter, .scale-enter-active { animation-name: scaleIn; } .scale-leave, .scale-leave-active { animation-name: scaleOut; } @keyframes shake { 0%, 100% { transform: translateX(0); } 10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); } 20%, 40%, 60%, 80% { transform: translateX(10px); } } .shake-enter, .shake-enter-active { animation-name: shake; } .shake-leave, .shake-leave-active { animation-name: shake; } @keyframes singIn { from { opacity: 0.8; transform: perspective(1300px) rotateX(-60deg); transform-origin: 50% 0%; } to { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 0%; } } @keyframes singOut { from { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 0%; } to { opacity: 0.8; transform: perspective(1300px) rotateX(-60deg); transform-origin: 50% 0%; } } @keyframes singBottomIn { from { opacity: 0.8; transform: perspective(1300px) rotateX(60deg); transform-origin: 50% 100%; } to { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 100%; } } @keyframes singBottomOut { from { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 100%; } to { opacity: 0.8; transform: perspective(1300px) rotateX(60deg); transform-origin: 50% 100%; } } @keyframes singLeftIn { from { opacity: 0.8; transform: perspective(1300px) rotateY(-60deg); transform-origin: 0 50%; } to { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 0 50%; } } @keyframes singLeftOut { from { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 0 50%; } to { opacity: 0.8; transform: perspective(1300px) rotateY(60deg); transform-origin: 0 50%; } } @keyframes singRightIn { from { opacity: 0.8; transform: perspective(1300px) rotateY(60deg); transform-origin: 100% 50%; } to { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 100% 50%; } } @keyframes singRightOut { from { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 100% 50%; } to { opacity: 0.8; transform: perspective(1300px) rotateY(-60deg); transform-origin: 100% 50%; } } @keyframes singSwingIn { 0% { opacity: 0.8; transform: perspective(1300px) rotateX(-60deg); transform-origin: 50% 0%; } 40%, 80% { transform: perspective(1300px) rotateX(10deg); transform-origin: 50% 0%; } 60% { transform: perspective(1300px) rotateX(-10deg); transform-origin: 50% 0%; } 100% { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 0%; } } @keyframes singSwingOut { 0% { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 0%; } 40%, 80% { transform: perspective(1300px) rotateX(10deg); transform-origin: 50% 0%; } 60% { transform: perspective(1300px) rotateX(-10deg); transform-origin: 50% 0%; } 100% { opacity: 0.8; transform: perspective(1300px) rotateX(-60deg); transform-origin: 50% 0%; } } @keyframes singSwingBottomIn { 0% { opacity: 0.8; transform: perspective(1300px) rotateX(60deg); transform-origin: 50% 100%; } 40%, 80% { transform: perspective(1300px) rotateX(-10deg); transform-origin: 50% 100%; } 60% { transform: perspective(1300px) rotateX(10deg); transform-origin: 50% 100%; } 100% { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 100%; } } @keyframes singSwingBottomOut { 0% { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 100%; } 40%, 80% { transform: perspective(1300px) rotateX(10deg); transform-origin: 50% 100%; } 60% { transform: perspective(1300px) rotateX(-10deg); transform-origin: 50% 100%; } 100% { opacity: 0.8; transform: perspective(1300px) rotateX(60deg); transform-origin: 50% 100%; } } @keyframes singSwingLeftIn { 0% { opacity: 0.8; transform: perspective(1300px) rotateY(-60deg); transform-origin: 0 50%; } 40%, 80% { transform: perspective(1300px) rotateY(10deg); transform-origin: 0 50%; } 60% { transform: perspective(1300px) rotateY(-10deg); transform-origin: 0 50%; } 100% { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 0 50%; } } @keyframes singSwingLeftOut { 100% { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 0 50%; } 40%, 80% { transform: perspective(1300px) rotateY(-10deg); -moz-transform: perspective(1300px) rotateY(-10deg); -ms-transform: perspective(1300px) rotateY(-10deg); transform-origin: 0 50%; } 60% { transform: perspective(1300px) rotateY(10deg); -moz-transform: perspective(1300px) rotateY(10deg); -ms-transform: perspective(1300px) rotateY(10deg); transform-origin: 0 50%; } 100% { opacity: 0.8; transform: perspective(1300px) rotateY(60deg); transform-origin: 0 50%; } } @keyframes singSwingRightIn { 0% { opacity: 0.8; transform: perspective(1300px) rotateY(60deg); transform-origin: 100% 50%; } 40%, 80% { transform: perspective(1300px) rotateY(-10deg); transform-origin: 100% 50%; } 60% { transform: perspective(1300px) rotateY(10deg); transform-origin: 100% 50%; } 100% { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 100% 50%; } } @keyframes singSwingRightOut { 100% { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 100% 50%; } 40%, 80% { transform: perspective(1300px) rotateY(10deg); -moz-transform: perspective(1300px) rotateY(10deg); -ms-transform: perspective(1300px) rotateY(10deg); transform-origin: 100% 50%; } 60% { transform: perspective(1300px) rotateY(-10deg); -moz-transform: perspective(1300px) rotateY(-10deg); -ms-transform: perspective(1300px) rotateY(-10deg); transform-origin: 100% 50%; } 100% { opacity: 0.8; transform: perspective(1300px) rotateY(-60deg); transform-origin: 100% 50%; } } .sing-bottom-top-enter, .sing-bottom-top-enter-active { animation-name: singBottomIn; } .sing-bottom-top-leave, .sing-bottom-top-leave-active { animation-name: singOut; } .sing-bottom-enter, .sing-bottom-enter-active { animation-name: singBottomIn; } .sing-bottom-leave, .sing-bottom-leave-active { animation-name: singBottomOut; } .sing-left-right-enter, .sing-left-right-enter-active { animation-name: singLeftIn; } .sing-left-right-leave, .sing-left-right-leave-active { animation-name: singRightOut; } .sing-left-enter, .sing-left-enter-active { animation-name: singLeftIn; } .sing-left-leave, .sing-left-leave-active { animation-name: singLeftOut; } .sing-right-left-enter, .sing-right-left-enter-active { animation-name: singRightIn; } .sing-right-left-leave, .sing-right-left-leave-active { animation-name: singLeftOut; } .sing-right-enter, .sing-right-enter-active { animation-name: singRightIn; } .sing-right-leave, .sing-right-leave-active { animation-name: singRightOut; } .sing-swing-bottom-enter, .sing-swing-bottom-enter-active { animation-name: singSwingBottomIn; } .sing-swing-bottom-leave, .sing-swing-bottom-leave-active { animation-name: singSwingBottomOut; } .sing-swing-left-right-enter, .sing-swing-left-right-enter-active { animation-name: singSwingLeftIn; } .sing-swing-left-right-leave, .sing-swing-left-right-leave-active { animation-name: singSwingRightOut; } .sing-swing-left-enter, .sing-swing-left-enter-active { animation-name: singSwingLeftIn; } .sing-swing-left-leave, .sing-swing-left-leave-active { animation-name: singSwingLeftOut; } .sing-swing-right-left-enter, .sing-swing-right-left-enter-active { animation-name: singSwingRightIn; } .sing-swing-right-left-leave, .sing-swing-right-left-leave-active { animation-name: singSwingLeftOut; } .sing-swing-right-enter, .sing-swing-right-enter-active { animation-name: singSwingRightIn; } .sing-swing-right-leave, .sing-swing-right-leave-active { animation-name: singSwingRightOut; } .sing-swing-enter, .sing-swing-enter-active { animation-name: singSwingIn; } .sing-swing-leave, .sing-swing-leave-active { animation-name: singSwingOut; } .sing-top-bottom-enter, .sing-top-bottom-enter-active { animation-name: singIn; } .sing-top-bottom-leave, .sing-top-bottom-leave-active { animation-name: singBottomOut; } .sing-enter, .sing-enter-active { animation-name: singIn; } .sing-leave, .sing-leave-active { animation-name: singOut; } @keyframes fromBottomIn { from { transform: translateY(2000px); } } @keyframes fromBottomOut { to { transform: translateY(2000px); } } @keyframes fromBottomLeftIn { from { transform: translate(-100%, 100%); } } @keyframes fromBottomLeftOut { to { transform: translate(-100%, 100%); } } @keyframes fromBottomRightIn { from { transform: translate(100%, 100%); } } @keyframes fromBottomRightOut { to { transform: translate(100%, 100%); } } @keyframes fromLeftIn { from { transform: translateX(-2000px); } } @keyframes fromLeftOut { to { transform: translateX(-2000px); } } @keyframes fromRightIn { from { transform: translateX(2000px); } } @keyframes fromRightOut { to { transform: translateX(2000px); } } @keyframes fromTopIn { from { transform: translateY(-2000px); } } @keyframes fromTopOut { to { transform: translateY(-2000px); } } @keyframes fromTopLeftIn { from { transform: translate(-100%, -100%); } } @keyframes fromTopLeftOut { to { transform: translate(-100%, -100%); } } @keyframes fromTopRightIn { from { transform: translate(100%, -100%); } } @keyframes fromTopRightOut { to { transform: translate(100%, -100%); } } @keyframes slideIn { from { transform: translateY(-100%); } } @keyframes slideOut { to { transform: translateY(-100%); } } @keyframes slideBottomIn { from { transform: translateY(100%); } } @keyframes slideBottomOut { to { transform: translateY(100%); } } @keyframes slideLeftIn { from { transform: translateX(-100%); } } @keyframes slideLeftOut { to { transform: translateX(-100%); } } @keyframes slideRightIn { from { transform: translateX(100%); } } @keyframes slideRightOut { to { transform: translateX(100%); } } @keyframes slideStickyIn { from { transform: translateY(-50%); } } @keyframes slideStickyOut { to { transform: translateY(-50%); } } @keyframes slideStickyBottomIn { from { transform: translateY(50%); } } @keyframes slideStickyBottomOut { to { transform: translateY(50%); } } @keyframes slideStickyLeftIn { from { transform: translateX(-50%); } } @keyframes slideStickyLeftOut { to { transform: translateX(-50%); } } @keyframes slideStickyRightIn { from { transform: translateX(50%); } } @keyframes slideStickyRightOut { to { transform: translateX(50%); } } .from-bottom-left-enter, .from-bottom-left-enter-active { animation-name: fromBottomLeftIn; } .from-bottom-left-leave, .from-bottom-left-leave-active { animation-name: fromBottomLeftOut; } .from-bottom-right-enter, .from-bottom-right-enter-active { animation-name: fromBottomRightIn; } .from-bottom-right-leave, .from-bottom-right-leave-active { animation-name: fromBottomRightOut; } .from-bottom-enter, .from-bottom-enter-active { animation-name: fromBottomIn; } .from-bottom-leave, .from-bottom-leave-active { animation-name: fromBottomOut; } .from-left-enter, .from-left-enter-active { animation-name: fromLeftIn; } .from-left-leave, .from-left-leave-active { animation-name: fromLeftOut; } .from-right-enter, .from-right-enter-active { animation-name: fromRightIn; } .from-right-leave, .from-right-leave-active { animation-name: fromRightOut; } .from-top-left-enter, .from-top-left-enter-active { animation-name: fromTopLeftIn; } .from-top-left-leave, .from-top-left-leave-active { animation-name: fromTopLeftOut; } .from-top-right-enter, .from-top-right-enter-active { animation-name: fromTopRightIn; } .from-top-right-leave, .from-top-right-leave-active { animation-name: fromTopRightOut; } .from-top-enter, .from-top-enter-active { animation-name: fromTopIn; } .from-top-leave, .from-top-leave-active { animation-name: fromTopOut; } .slide-bottom-top-enter, .slide-bottom-top-enter-active { animation-name: slideBottomIn; } .slide-bottom-top-leave, .slide-bottom-top-leave-active { animation-name: slideOut; } .slide-bottom-enter, .slide-bottom-enter-active { animation-name: slideBottomIn; } .slide-bottom-leave, .slide-bottom-leave-active { animation-name: slideBottomOut; } .slide-east-west-enter, .slide-east-west-enter-active { animation-name: fromBottomRightIn; } .slide-east-west-leave, .slide-east-west-leave-active { animation-name: fromTopLeftOut; } .slide-left-right-enter, .slide-left-right-enter-active { animation-name: slideLeftIn; } .slide-left-right-leave, .slide-left-right-leave-active { animation-name: slideRightOut; } .slide-left-enter, .slide-left-enter-active { animation-name: slideLeftIn; } .slide-left-leave, .slide-left-leave-active { animation-name: slideLeftOut; } .slide-north-south-enter, .slide-north-south-enter-active { animation-name: fromTopRightIn; } .slide-north-south-leave, .slide-north-south-leave-active { animation-name: fromBottomLeftOut; } .slide-right-left-enter, .slide-right-left-enter-active { animation-name: slideRightIn; } .slide-right-left-leave, .slide-right-left-leave-active { animation-name: slideLeftOut; } .slide-right-enter, .slide-right-enter-active { animation-name: slideRightIn; } .slide-right-leave, .slide-right-leave-active { animation-name: slideRightOut; } .slide-south-north-enter, .slide-south-north-enter-active { animation-name: fromBottomLeftIn; } .slide-south-north-leave, .slide-south-north-leave-active { animation-name: fromTopRightOut; } .slide-sticky-bottom-enter, .slide-sticky-bottom-enter-active { animation-name: slideStickyBottomIn; } .slide-sticky-bottom-leave, .slide-sticky-bottom-leave-active { animation-name: slideStickyBottomOut; } .slide-sticky-left-enter, .slide-sticky-left-enter-active { animation-name: slideStickyLeftIn; } .slide-sticky-left-leave, .slide-sticky-left-leave-active { animation-name: slideStickyLeftOut; } .slide-sticky-right-enter, .slide-sticky-right-enter-active { animation-name: slideStickyRightIn; } .slide-sticky-right-leave, .slide-sticky-right-leave-active { animation-name: slideStickyRightOut; } .slide-sticky-enter, .slide-sticky-enter-active { animation-name: slideStickyIn; } .slide-sticky-leave, .slide-sticky-leave-active { animation-name: slideStickyOut; } .slide-top-bottom-enter, .slide-top-bottom-enter-active { animation-name: slideIn; } .slide-top-bottom-leave, .slide-top-bottom-leave-active { animation-name: slideBottomOut; } .slide-west-east-enter, .slide-west-east-enter-active { animation-name: fromTopLeftIn; } .slide-west-east-leave, .slide-west-east-leave-active { animation-name: fromBottomRightOut; } .slide-enter, .slide-enter-active { animation-name: slideIn; } .slide-leave, .slide-leave-active { animation-name: slideOut; } @keyframes slitIn { 0% { opacity: 0; transform: perspective(1300px) translateZ(-3000px) rotateY(90deg); animation-timing-function: ease-out; } 50% { opacity: 0.5; transform: perspective(1300px) translateZ(-250px) rotateY(89deg); animation-timing-function: ease-out; } 100% { opacity: 1; transform: perspective(1300px) translateZ(0) rotateY(0); animation-timing-function: ease-in; } } @keyframes slitOut { 0% { opacity: 1; transform: perspective(1300px) translateZ(0) rotateY(0); animation-timing-function: ease-in; } 50% { opacity: 0.5; transform: perspective(1300px) translateZ(-250px) rotateY(89deg); -moz-transform: perspective(1300px) translateZ(-250px) rotateY(89deg); -ms-transform: perspective(1300px) translateZ(-250px) rotateY(89deg); animation-timing-function: ease-out; } 100% { opacity: 0; transform: perspective(1300px) translateZ(-3000px) rotateY(90deg); animation-timing-function: ease-out; } } @keyframes slitXIn { 0% { opacity: 0; transform: perspective(1300px) translateZ(-3000px) rotateX(90deg); animation-timing-function: ease-out; } 50% { opacity: 0.5; transform: perspective(1300px) translateZ(-250px) rotateX(89deg); animation-timing-function: ease-out; } 100% { opacity: 1; transform: perspective(1300px) translateZ(0) rotateY(0); animation-timing-function: ease-in; } } @keyframes slitXOut { 100% { opacity: 1; transform: perspective(1300px) translateZ(0) rotateY(0); animation-timing-function: ease-in; } 50% { opacity: 0.5; transform: perspective(1300px) translateZ(-250px) rotateX(89deg); animation-timing-function: ease-out; } 100% { opacity: 0; transform: perspective(1300px) translateZ(-3000px) rotateX(90deg); animation-timing-function: ease-out; } } .slit-x-enter, .slit-x-enter-active { animation-name: slitXIn; } .slit-x-leave, .slit-x-leave-active { animation-name: slitXOut; } .slit-enter, .slit-enter-active { animation-name: slitIn; animation-fill-mode: forwards; } .slit-leave, .slit-leave-active { animation-name: slitOut; animation-fill-mode: forwards; } @keyframes speedIn { 0% { transform: translateX(100%) skewX(-30deg); opacity: 0; } 60% { transform: translateX(-20%) skewX(30deg); opacity: 1; } 80% { transform: translateX(0%) skewX(-15deg); opacity: 1; } 100% { transform: translateX(0%) skewX(0deg); opacity: 1; } } @keyframes speedOut { 0% { transform: translateX(0%) skewX(0deg); opacity: 1; } 10% { transform: translateX(0%) skewX(-15deg); opacity: 1; } 20% { transform: translateX(-20%) skewX(30deg); opacity: 1; } 100% { transform: translateX(100%) skewX(-30deg); opacity: 0; } } @keyframes speedLeftIn { 0% { transform: translateX(-100%) skewX(30deg); opacity: 0; } 60% { transform: translateX(20%) skewX(-30deg); opacity: 1; } 80% { transform: translateX(0%) skewX(15deg); opacity: 1; } 100% { transform: translateX(0%) skewX(0deg); opacity: 1; } } @keyframes speedLeftOut { 0% { transform: translateX(0%) skewX(0deg); opacity: 1; } 10% { transform: translateX(0%) skewX(15deg); opacity: 1; } 20% { transform: translateX(20%) skewX(-30deg); opacity: 1; } 100% { transform: translateX(-100%) skewX(30deg); opacity: 0; } } .speed-left-right-enter, .speed-left-right-enter-active { animation-name: speedLeftIn; } .speed-left-right-leave, .speed-left-right-leave-active { animation-name: speedOut; } .speed-left-enter, .speed-left-enter-active { animation-name: speedLeftIn; } .speed-left-leave, .speed-left-leave-active { animation-name: speedLeftOut; } .speed-right-left-enter, .speed-right-left-enter-active { animation-name: speedIn; } .speed-right-left-leave, .speed-right-left-leave-active { animation-name: speedLeftOut; } .speed-right-enter, .speed-right-enter-active { animation-name: speedIn; } .speed-right-leave, .speed-right-leave-active { animation-name: speedOut; } @keyframes spin { 0% { transform: rotate(0deg); } 20% { color: yellow; } 40% { color: green; } 60% { color: red; } 80% { color: blue; } 100% { transform: rotate(359deg); } } @keyframes spinOut { 0% { transform: rotate(0); } 20% { color: yellow; } 40% { color: green; } 60% { color: red; } 80% { color: blue; } 100% { transform: rotate(-359deg); } } .spin-enter, .spin-enter-active { animation-name: spin; } .spin-leave, .spin-leave-active { animation-name: spinOut; } @keyframes stompIn { 0% { opacity: 0; transform: translateY(-100%); box-shadow: -30px 40px 0px -30px rgba(0, 0, 0, 0.1), 0px 40px 0px -30px rgba(0, 0, 0, 0.1), 30px 40px 0px -30px rgba(0, 0, 0, 0.1); } 20% { opacity: 0; transform: translateY(-100%); box-shadow: -30px 40px 0px -30px rgba(0, 0, 0, 0.1), 0px 40px 0px -30px rgba(0, 0, 0, 0.1), 30px 40px 0px -30px rgba(0, 0, 0, 0.1); } 25% { opacity: 1; transform: translateY(0px); box-shadow: -50px 60px 0px -30px rgba(0, 0, 0, 0.1), 0px 60px 0px -30px rgba(0, 0, 0, 0.1), 50px 60px 0px -30px rgba(0, 0, 0, 0.1); } 29% { box-shadow: -70px 80px 70px -30px rgba(255, 255, 255, 0.5), 0px 80px 70px -30px rgba(255, 255, 255, 0.7), 70px 80px 70px -30px rgba(255, 255, 255, 0.6); } 100% { box-shadow: -100px 90px 120px -10px rgba(0, 0, 0, 0.1), 0px 90px 120px -10px rgba(0, 0, 0, 0.1), 100px 90px 120px -10px rgba(0, 0, 0, 0.1); } } @keyframes stompOut { 100% { opacity: 0; transform: translateY(-100%); box-shadow: -30px 40px 0px -30px rgba(0, 0, 0, 0.1), 0px 40px 0px -30px rgba(0, 0, 0, 0.1), 30px 40px 0px -30px rgba(0, 0, 0, 0.1); } 80% { opacity: 0; transform: translateY(-100%); box-shadow: -30px 40px 0px -30px rgba(0, 0, 0, 0.1), 0px 40px 0px -30px rgba(0, 0, 0, 0.1), 30px 40px 0px -30px rgba(0, 0, 0, 0.1); } 75% { opacity: 1; transform: translateY(0px); box-shadow: -50px 60px 0px -30px rgba(0, 0, 0, 0.1), 0px 60px 0px -30px rgba(0, 0, 0, 0.1), 50px 60px 0px -30px rgba(0, 0, 0, 0.1); } 71% { box-shadow: -70px 80px 70px -30px rgba(255, 255, 255, 0.5), 0px 80px 70px -30px rgba(255, 255, 255, 0.7), 70px 80px 70px -30px rgba(255, 255, 255, 0.6); } 0% { box-shadow: -100px 90px 120px -10px rgba(0, 0, 0, 0.1), 0px 90px 120px -10px rgba(0, 0, 0, 0.1), 100px 90px 120px -10px rgba(0, 0, 0, 0.1); } } .stomp-enter, .stomp-enter-active { animation-name: stompIn; } .stomp-leave, .stomp-leave-active { animation-name: stompOut; } @keyframes swing { 20% { transform: rotate(15deg); transform-origin: top center; } 40% { transform: rotate(-10deg); transform-origin: top center; } 60% { transform: rotate(5deg); transform-origin: top center; } 80% { transform: rotate(-5deg); transform-origin: top center; } 100% { transform: rotate(0deg); transform-origin: top center; } } .swing-enter, .swing-enter-active { animation-name: swing; } .swing-leave, .swing-leave-active { animation-name: swing; } @keyframes tada { 0% { transform: scale(1); } 10%, 20% { transform: scale(0.9) rotate(-3deg); } 30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); } 40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); } 100% { transform: scale(1) rotate(0); } } .tada-enter, .tada-enter-active { animation-name: tada; } .tada-leave, .tada-leave-active { animation-name: tada; } @keyframes tossBottomLeftIn { 0% { transform: perspective(1300px) rotate(35deg) scale(1.4) translate(-20%, 100%); animation-timing-function: ease-in-out; opacity: 0; } 100% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossBottomLeftOut { 100% { transform: perspective(1300px) rotate(35deg) scale(1.4) translate(-20%, 100%); animation-timing-function: ease-in-out; opacity: 0; } 0% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossBottomRightIn { 0% { transform: perspective(1300px) rotate(-35deg) scale(1.4) translate(20%, 100%); animation-timing-function: ease-in-out; opacity: 0; } 100% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossBottomRightOut { 100% { transform: perspective(1300px) rotate(-35deg) scale(1.4) translate(20%, 100%); animation-timing-function: ease-in-out; opacity: 0; } 0% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossTopLeftIn { 0% { transform: perspective(1300px) rotate(-35deg) scale(1.4) translate(-20%, -100%); animation-timing-function: ease-in-out; opacity: 0; } 100% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossTopLeftOut { 100% { transform: perspective(1300px) rotate(-35deg) scale(1.4) translate(-20%, -100%); animation-timing-function: ease-in-out; opacity: 0; } 0% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossTopRightIn { 0% { transform: perspective(1300px) rotate(35deg) scale(1.4) translate(20%, -100%); animation-timing-function: ease-in-out; opacity: 0; } 100% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossTopRightOut { 100% { transform: perspective(1300px) rotate(35deg) scale(1.4) translate(20%, -100%); animation-timing-function: ease-in-out; opacity: 0; } 0% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } .toss-bottom-left-enter, .toss-bottom-left-enter-active { animation-name: tossBottomLeftIn; } .toss-bottom-left-leave, .toss-bottom-left-leave-active { animation-name: tossBottomLeftOut; } .toss-bottom-right-enter, .toss-bottom-right-enter-active { animation-name: tossBottomRightIn; } .toss-bottom-right-leave, .toss-bottom-right-leave-active { animation-name: tossBottomRightOut; } .toss-top-left-enter, .toss-top-left-enter-active { animation-name: tossTopLeftIn; } .toss-top-left-leave, .toss-top-left-leave-active { animation-name: tossTopLeftOut; } .toss-top-right-enter, .toss-top-right-enter-active { animation-name: tossTopRightIn; } .toss-top-right-leave, .toss-top-right-leave-active { animation-name: tossTopRightOut; } @keyframes wobble { 0% { transform: translateX(0%); } 15% { transform: translateX(-25%) rotate(-5deg); } 30% { transform: translateX(20%) rotate(3deg); } 45% { transform: translateX(-15%) rotate(-3deg); } 60% { transform: translateX(10%) rotate(2deg); } 75% { transform: translateX(-5%) rotate(-1deg); } 100% { transform: translateX(0%); } } @keyframes wobbleNorth { 0% { transform: translate(0%); } 15% { transform: translateX(-25%) translateY(25%); } 30% { transform: translateX(20%) translateY(-20%); } 45% { transform: translateX(-15%) translateY(15%); } 60% { transform: translateX(10%) translateY(-10%); } 75% { transform: translateX(-5%) translateY(5%); } 90% { transform: translateX(2%) translateY(-2%); } 100% { transform: translate(0%); } } @keyframes wobbleSkew { 16.65% { transform: skew(-16deg); } 33.3% { transform: skew(12deg); } 49.95% { transform: skew(-8deg); } 66.6% { transform: skew(6deg); } 83.25% { transform: skew(-3deg); } 100% { transform: skew(3deg); } } @keyframes wobbleWest { 0% { transform: translate(0%); } 15% { transform: translateX(-25%) translateY(-25%); } 30% { transform: translateX(20%) translateY(20%); } 45% { transform: translateX(-15%) translateY(-15%); } 60% { transform: translateX(10%) translateY(10%); } 75% { transform: translateX(-5%) translateY(-5%); } 90% { transform: translateX(2%) translateY(2%); } 100% { transform: translate(0%); } } .wobble-bottom-enter, .wobble-bottom-enter-active { animation-name: wobbleSkew; } .wobble-bottom-leave, .wobble-bottom-leave-active { animation-name: wobbleSkew; } .wobble-bottom.ng-enter, .wobble-bottom-add, .wobble-bottom.ng-hide-remove, .wobble-bottom.ng-move, .wobble-bottom-enter, .wobble-bottom-enter-active, .wobble-bottom.ng-leave, .wobble-bottom-remove, .wobble-bottom.ng-hide, .wobble-bottom-leave, .wobble-bottom-leave-active { transform-origin: 100% 0; } .wobble-north-enter, .wobble-north-enter-active { animation-name: wobbleNorth; } .wobble-north-leave, .wobble-north-leave-active { animation-name: wobbleNorth; } .wobble-skew-enter, .wobble-skew-enter-active { animation-name: wobbleSkew; } .wobble-skew-leave, .wobble-skew-leave-active { animation-name: wobbleSkew; } .wobble-top-enter, .wobble-top-enter-active { animation-name: wobbleSkew; } .wobble-top-leave, .wobble-top-leave-active { animation-name: wobbleSkew; } .wobble-top.ng-enter, .wobble-top-add, .wobble-top.ng-hide-remove, .wobble-top.ng-move, .wobble-top-enter, .wobble-top-enter-active, .wobble-top.ng-leave, .wobble-top-remove, .wobble-top.ng-hide, .wobble-top-leave, .wobble-top-leave-active { transform-origin: 100% 0; } .wobble-west-enter, .wobble-west-enter-active { animation-name: wobbleWest; } .wobble-west-leave, .wobble-west-leave-active { animation-name: wobbleWest; } .wobble-enter, .wobble-enter-active { animation-name: wobble; } .wobble-leave, .wobble-leave-active { animation-name: wobble; } .ng-animate, .rc-animate { animation-timing-function: ease-in-out; animation-fill-mode: both; transform-style: preserve-3d; perspective: 1300px; animation-duration: 0s; transition: none; animation-delay: 0; -webkit-animation-delay: 0; } .ng-animate.normal, .rc-animate.normal { animation-duration: 1s; } .ng-animate.fast, .rc-animate.fast { animation-duration: 0.7s; } .ng-animate.fastest, .rc-animate.fastest { animation-duration: 0.35s; } .ng-animate.slow, .rc-animate.slow { animation-duration: 1.2s; } .ng-animate.slowest, .rc-animate.slowest { animation-duration: 3s; } .ng-animate.ng-hide-add-active, .rc-animate[class*="-leave-active"] { visibility: visible !important; } .ng-animate.ng-enter, .rc-animate[class*="-enter"] { visibility: hidden; } .ng-animate.ng-enter.ng-enter-active, .ng-animate[class*="-remove-active"], .rc-animate[class*="-enter-active"], .rc-animate[class*="-leave-active"] { visibility: visible !important; display: block !important; } .ng-animate.ng-enter.ng-enter-active, .ng-animate.ng-enter.ng-hide-remove, .ng-animate[class*="-active"], .ng-animate[class*="-remove-active"] { visibility: visible !important; } [class*="ng-animate"].ng-hide-add, [class*="ng-animate"].ng-hide-add.ng-hide-add-active, [class*="ng-animate"][class*="-add-active"], [class*="rc-animate"][class*="-active"] { visibility: visible !important; display: block !important; } [class*="ng-animate"].disable-animation, [class*="rc-animate"].disable-animation { animation: none !important; display: none !important; visibility: hidden !important; } /****FOR ONLY ng-ruter and ui-router****/ .ui-view.ng-enter[class*="-active"], .ng-view.ng-enter[class*="-active"] { left: 0; right: 0; } .ui-view.ng-enter, .ng-view.ng-enter { animation-timing-function: ease-out; z-index: 1; position: static; /*overflow:hidden;*/ /*animation-delay:0.2s; -webkit-animation-delay:0.2s;*/ } .ng-view.ng-leave, .ng-view-remove, .ng-view.ng-hide, .ui-view.ng-leave, .ui-view-remove, .ui-view.ng-hide { position: absolute; left: 0; right: 0; bottom: 0; top: 0; z-index: 1; animation-timing-function: ease-in; opacity: 0.5; /*background-color:#fff;*/ overflow: hidden; animation-delay: 0s; -webkit-animation-delay: 0s; } .ui-view.ng-leave > *, .ui-view-remove > *, .ui-view.ng-hide > * { /*visibility:hidden;*/ } .waiting-load .ui-view.ng-enter, .waiting-load .ui-view.ng-enter-active, .waiting-load .ui-view.ng-leave, .waiting-load .ui-view.ng-leave-active { /*-webkit-animation-play-state: paused; animation-play-state: paused;*/ } .content-loaded .ui-view.ng-enter { /*-webkit-animation-play-state: running; animation-play-state: running;*/ } .xhr-active .ng-animate { /*-webkit-animation-play-state: paused; animation-play-state: paused;*/ } .ui-view.fast.ng-enter, .ng-view.fast.ng-enter { animation-delay: 0.5s; -webkit-animation-delay: 0.5s; } .ui-view.normal.ng-enter, .ng-view.normal.ng-enter { animation-delay: 0.7s; -webkit-animation-delay: 0.7s; } .ui-view.slow.ng-enter, .ng-view.slow.ng-enter { animation-delay: 0.9s; -webkit-animation-delay: 0.9s; } .ui-view.slowest.ng-enter, .ng-view.slowest.ng-enter { animation-delay: 1.9s; -webkit-animation-delay: 1.9s; }
dist/effects-all-react.css
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-30px); } 60% { transform: translateY(-15px); } } @keyframes bounceDownIn { 0% { opacity: 0; transform: translateY(-2000px); } 60% { opacity: 1; transform: translateY(30px); } 80% { transform: translateY(-10px); } 100% { transform: translateY(0); } } @keyframes bounceDownOut { 0% { transform: translateY(0); } 20% { opacity: 1; transform: translateY(-20px); } 100% { opacity: 0; transform: translateY(2000px); } } @keyframes bounceIn { 0% { opacity: 0; transform: scale(0.3); } 50% { opacity: 1; transform: scale(1.05); } 70% { transform: scale(0.9); } 100% { transform: scale(1); } } @keyframes bounceOut { 0% { transform: scale(1); } 25% { transform: scale(0.95); } 50% { opacity: 1; transform: scale(1.1); } 100% { opacity: 0; transform: scale(0.3); } } @keyframes bounceLeftIn { 0% { opacity: 0; transform: translateX(-2000px); } 60% { opacity: 1; transform: translateX(30px); } 80% { transform: translateX(-10px); } 100% { transform: translateX(0); } } @keyframes bounceLeftOut { 0% { transform: translateX(0); } 20% { opacity: 1; transform: translateX(20px); } 100% { opacity: 0; transform: translateX(-2000px); } } @keyframes bounceRightIn { 0% { opacity: 0; transform: translateX(2000px); } 60% { opacity: 1; transform: translateX(-30px); } 80% { transform: translateX(10px); } 100% { transform: translateX(0); } } @keyframes bounceRightOut { 0% { transform: translateX(0); } 20% { opacity: 1; transform: translateX(-20px); } 100% { opacity: 0; transform: translateX(2000px); } } @keyframes bounceUpIn { 0% { opacity: 0; transform: translateY(2000px); } 60% { opacity: 1; transform: translateY(-30px); } 80% { transform: translateY(10px); } 100% { transform: translateY(0); } } @keyframes bounceUpOut { 0% { transform: translateY(0); } 20% { opacity: 1; transform: translateY(20px); } 100% { opacity: 0; transform: translateY(-2000px); } } .bounce-down-up-enter, .bounce-down-up-enter-active { animation-name: bounceDownIn; } .bounce-down-up-leave, .bounce-down-up-leave-active { animation-name: bounceUpOut; } .bounce-down-enter, .bounce-down-enter-active { animation-name: bounceDownIn; } .bounce-down-leave, .bounce-down-leave-active { animation-name: bounceDownOut; } .bounce-in-enter, .bounce-in-enter-active { animation-name: bounceIn; } .bounce-in-leave, .bounce-in-leave-active { animation-name: bounceOut; } .bounce-left-right-enter, .bounce-left-right-enter-active { animation-name: bounceLeftIn; } .bounce-left-right-leave, .bounce-left-right-leave-active { animation-name: bounceRightOut; } .bounce-left-enter, .bounce-left-enter-active { animation-name: bounceLeftIn; } .bounce-left-leave, .bounce-left-leave-active { animation-name: bounceLeftOut; } .bounce-right-left-enter, .bounce-right-left-enter-active { animation-name: bounceRightIn; } .bounce-right-left-leave, .bounce-right-left-leave-active { animation-name: bounceLeftOut; } .bounce-right-enter, .bounce-right-enter-active { animation-name: bounceRightIn; } .bounce-right-leave, .bounce-right-leave-active { animation-name: bounceRightOut; } .bounce-up-down-enter, .bounce-up-down-enter-active { animation-name: bounceUpIn; } .bounce-up-down-leave, .bounce-up-down-leave-active { animation-name: bounceDownOut; } .bounce-up-enter, .bounce-up-enter-active { animation-name: bounceUpIn; } .bounce-up-leave, .bounce-up-leave-active { animation-name: bounceUpOut; } .bounce-enter, .bounce-enter-active { animation-name: bounce; } .bounce-leave, .bounce-leave-active { animation-name: bounce; } @keyframes fadeIn { from { opacity: 0; } } @keyframes fadeOut { to { opacity: 0; } } @keyframes fadeDownIn { 0% { opacity: 0; transform: translateY(-100px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes fadeDownOut { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(100px); } } @keyframes fadeLeftIn { 0% { opacity: 0; transform: translateX(-100px); } 100% { opacity: 1; transform: translateX(0); } } @keyframes fadeLeftOut { 0% { opacity: 1; transform: translateX(0); } 100% { opacity: 0; transform: translateX(-100px); } } @keyframes fadeRightIn { 0% { opacity: 0; transform: translateX(100px); } 100% { opacity: 1; transform: translateX(0); } } @keyframes fadeRightOut { 0% { opacity: 1; transform: translateX(0); } 100% { opacity: 0; transform: translateX(100px); } } @keyframes fadeUpIn { 0% { opacity: 0; transform: translateY(100px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes fadeUpOut { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-100px); } } .fade-down-up-enter, .fade-down-up-enter-active { animation-name: fadeDownIn; } .fade-down-up-leave, .fade-down-up-leave-active { animation-name: fadeUpOut; } .fade-down-enter, .fade-down-enter-active { animation-name: fadeDownIn; } .fade-down-leave, .fade-down-leave-active { animation-name: fadeDownOut; } .fade-in-enter, .fade-in-enter-active { animation-name: fadeIn; } .fade-in-leave, .fade-in-leave-active { animation-name: fadeOut; } .fade-left-right-enter, .fade-left-right-enter-active { animation-name: fadeLeftIn; } .fade-left-right-leave, .fade-left-right-leave-active { animation-name: fadeRightOut; } .fade-left-enter, .fade-left-enter-active { animation-name: fadeLeftIn; } .fade-left-leave, .fade-left-leave-active { animation-name: fadeLeftOut; } .fade-right-left-enter, .fade-right-left-enter-active { animation-name: fadeRightIn; } .fade-right-left-leave, .fade-right-left-leave-active { animation-name: fadeLeftOut; } .fade-right-enter, .fade-right-enter-active { animation-name: fadeRightIn; } .fade-right-leave, .fade-right-leave-active { animation-name: fadeRightOut; } .fade-up-down-enter, .fade-up-down-enter-active { animation-name: fadeUpIn; } .fade-up-down-leave, .fade-up-down-leave-active { animation-name: fadeDownOut; } .fade-up-enter, .fade-up-enter-active { animation-name: fadeUpIn; } .fade-up-leave, .fade-up-leave-active { animation-name: fadeUpOut; } @keyframes fallIn { from { opacity: 0; transform: perspective(1300px) translateZ(600px) rotateX(20deg); } to { opacity: 1; transform: perspective(1300px) translateZ(0) rotateX(0); } } @keyframes fallOut { from { opacity: 1; transform: perspective(1300px) translateZ(0) rotateX(0); } to { opacity: 0; transform: perspective(1300px) translateZ(600px) rotateX(20deg); } } @keyframes fallLeftIn { from { opacity: 0; transform: perspective(1300px) translate(-40%) translateZ(600px) rotateX(-15deg); } to { opacity: 1; transform: perspective(1300px) translate(0) translateZ(0) rotateX(0); } } @keyframes fallLeftOut { from { opacity: 1; transform: perspective(1300px) translate(0) translateZ(0) rotateX(0); } to { transform: perspective(1300px) translate(-40%) translateZ(600px) rotateX(-15deg); opacity: 0; } } @keyframes fallRightIn { from { opacity: 0; transform: perspective(1300px) translate(40%) translateZ(600px) rotateX(15deg); } to { opacity: 1; transform: perspective(1300px) translate(0) translateZ(0) rotateX(0); } } @keyframes fallRightOut { from { opacity: 1; transform: perspective(1300px) translate(0) translateZ(0) rotateX(0); } to { opacity: 0; transform: perspective(1300px) translate(40%) translateZ(600px) rotateX(15deg); } } .fall-left-right-enter, .fall-left-right-enter-active { animation-name: fallLeftIn; } .fall-left-right-leave, .fall-left-right-leave-active { animation-name: fallRightOut; } .fall-left-enter, .fall-left-enter-active { animation-name: fallLeftIn; } .fall-left-leave, .fall-left-leave-active { animation-name: fallLeftOut; } .fall-right-left-enter, .fall-right-left-enter-active { animation-name: fallRightIn; } .fall-right-left-leave, .fall-right-left-leave-active { animation-name: fallLeftOut; } .fall-right-enter, .fall-right-enter-active { animation-name: fallRightIn; } .fall-right-leave, .fall-right-leave-active { animation-name: fallRightOut; } .fall-enter, .fall-enter-active { animation-name: fallIn; } .fall-leave, .fall-leave-active { animation-name: fallOut; } @keyframes flashIn { 0% { opacity: 0.8; color: yellow; } 50% { opacity: 0.8; color: purple; } 100% { opacity: 1; } 25%, 75% { opacity: 0.1; color: red; } } @keyframes flashOut { 100% { opacity: 0.1; } 50% { opacity: 0.9; color: purple; } 0% { opacity: 1; color: yellow; } 25%, 75% { opacity: 0.3; color: red; } } @keyframes greenAlertIn { 0%, 40%, 80% { box-shadow: -100px 0px 50px -50px #4cae4c, 100px 0px 50px -50px #4cae4c, inset 0px 0px 200px #4cae4c; background-color: #FFF; opacity: 0.5; } 20%, 60%, 100% { box-shadow: none; opacity: 1; background-color: initial; } } @keyframes greenAlertOut { 20%, 60%, 100% { box-shadow: -100px 0px 50px -50px #4cae4c, 100px 0px 50px -50px #4cae4c, inset 0px 0px 200px #4cae4c; background-color: #FFF; opacity: 0.5; } 0%, 40%, 80% { box-shadow: none; opacity: 1; background-color: initial; } } @keyframes redAlertIn { 0%, 40%, 80% { box-shadow: -100px 0px 50px -50px #ff3232, 100px 0px 50px -50px #ff3232, inset 0px 0px 200px #ff3232; background-color: #FFF; opacity: 0.5; } 20%, 60%, 100% { box-shadow: none; opacity: 1; background-color: initial; } } @keyframes redAlertOut { 20%, 60%, 100% { box-shadow: -100px 0px 50px -50px #ff3232, 100px 0px 50px -50px #ff3232, inset 0px 0px 200px #ff3232; background-color: #FFF; opacity: 0.5; } 0%, 40%, 80% { box-shadow: none; opacity: 1; background-color: initial; } } @keyframes warningAlertIn { 0%, 40%, 80% { box-shadow: -100px 0px 50px -50px #eea236, 100px 0px 50px -50px #eea236, inset 0px 0px 200px #eea236; background-color: #FFF; opacity: 0.5; } 20%, 60%, 100% { box-shadow: none; opacity: 1; background-color: initial; } } @keyframes warningAlertOut { 20%, 60%, 100% { box-shadow: -100px 0px 50px -50px #eea236, 100px 0px 50px -50px #eea236, inset 0px 0px 200px #eea236; background-color: #FFF; opacity: 0.5; } 0%, 40%, 80% { box-shadow: none; opacity: 1; background-color: initial; } } .flash-enter, .flash-enter-active { animation-name: flashIn; } .flash-leave, .flash-leave-active { animation-name: flashOut; } .green-alert-enter, .green-alert-enter-active { animation-name: greenAlertIn; } .green-alert-leave, .green-alert-leave-active { animation-name: greenAlertOut; } .red-alert-enter, .red-alert-enter-active { animation-name: redAlertIn; } .red-alert-leave, .red-alert-leave-active { animation-name: redAlertOut; } .warning-alert-enter, .warning-alert-enter-active { animation-name: warningAlertIn; } .warning-alert-leave, .warning-alert-leave-active { animation-name: warningAlertOut; } @keyframes flip { 0% { transform: perspective(400px) translateZ(0) rotateY(0) scale(1); animation-timing-function: ease-out; } 40% { transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1); animation-timing-function: ease-out; } 50% { transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1); animation-timing-function: ease-in; } 80% { transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95); animation-timing-function: ease-in; } 100% { transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1); animation-timing-function: ease-in; } } @keyframes flipSlideIn { 0% { transform: perspective(800px) rotateX(1080deg) translateY(-100%) scale(0.1); opacity: 0.8; } 100% { transform: perspective(800px) rotateX(0deg) translateY(0) scale(1); opacity: 1; } } @keyframes flipSlideOut { 100% { transform: perspective(800px) rotateX(1080deg) translateY(100%) scale(0.1); opacity: 0.8; } 0% { transform: perspective(800px) rotateX(0deg) translateY(0) scale(1); opacity: 1; } } @keyframes flipSlideXIn { 0% { transform: perspective(800px) rotateX(180deg) translateY(-100%); opacity: 0; } 100% { transform: perspective(800px) rotateX(0deg) translateY(0); opacity: 1; } } @keyframes flipSlideXOut { 100% { transform: perspective(800px) rotateX(180deg) translateY(-100%); opacity: 0; } 0% { transform: perspective(800px) rotateX(0deg) translateY(0); opacity: 1; } } @keyframes flipSlideXInverseIn { 0% { transform: perspective(800px) rotateX(-180deg) translateY(100%); opacity: 0; } 100% { transform: perspective(800px) rotateX(0deg) translateY(0); opacity: 1; } } @keyframes flipSlideXInverseOut { 100% { transform: perspective(800px) rotateX(-180deg) translateY(100%); opacity: 0; } 0% { transform: perspective(800px) rotateX(0deg) translateY(0); opacity: 1; } } @keyframes flipSlideYIn { 0% { transform: perspective(800px) rotateY(-180deg) translateX(-100%); opacity: 0; } 100% { transform: perspective(800px) rotateY(0deg) translateX(0); opacity: 1; } } @keyframes flipSlideYOut { 0% { transform: perspective(800px) rotateY(0deg) translateX(0); opacity: 1; } 100% { transform: perspective(800px) rotateY(-180deg) translateX(-100%); opacity: 0; } } @keyframes flipSlideYInverseIn { 0% { transform: perspective(800px) rotateY(180deg) translateX(100%); opacity: 0; } 100% { transform: perspective(800px) rotateY(0deg) translateX(0); opacity: 1; } } @keyframes flipSlideYInverseOut { 0% { transform: perspective(800px) rotateY(0deg) translateX(0); opacity: 1; } 100% { transform: perspective(800px) rotateY(180deg) translateX(100%); opacity: 0; } } @keyframes flipSlideZIn { 0% { transform: perspective(400px) rotateY(180deg) rotateZ(90deg) translateX(-100%) translateY(100%); transform-origin: center center; opacity: 0; } 100% { transform: perspective(400px) rotate(0) translate(0); transform-origin: center center; opacity: 1; } } @keyframes flipSlideZOut { 100% { transform: perspective(400px) rotateY(180deg) rotateZ(90deg) translateX(-100%) translateY(100%); transform-origin: center center; opacity: 0; } 0% { transform: perspective(400px) rotate(0) translate(0); transform-origin: center center; opacity: 1; } } @keyframes flipSlideZInverseIn { 0% { transform: perspective(400px) rotateY(180deg) rotateZ(-90deg) translateX(100%) translateY(100%); transform-origin: center center; opacity: 0; } 100% { transform: perspective(400px) rotate(0) translate(0); transform-origin: center center; opacity: 1; } } @keyframes flipSlideZInverseOut { 100% { transform: perspective(400px) rotateY(-180deg) rotateZ(-90deg) translateX(100%) translateY(100%); transform-origin: center center; opacity: 0; } 0% { transform: perspective(400px) rotate(0) translate(0); transform-origin: center center; opacity: 1; } } @keyframes flipSwingXIn { 0% { transform: perspective(400px) rotateX(90deg); } 40% { transform: perspective(400px) rotateX(-10deg); } 70% { transform: perspective(400px) rotateX(10deg); } 100% { transform: perspective(400px) rotateX(0deg); } } @keyframes flipSwingXOut { 0% { transform: perspective(400px) rotateX(0deg); } 40% { transform: perspective(400px) rotateX(10deg); } 70% { transform: perspective(400px) rotateX(-10deg); } 100% { transform: perspective(400px) rotateX(90deg); } } @keyframes flipSwingYIn { 0% { transform: perspective(400px) rotateY(-90deg); opacity: 0; } 40% { transform: perspective(400px) rotateY(10deg); } 70% { transform: perspective(400px) rotateY(-10deg); } 100% { transform: perspective(400px) rotateY(0deg); opacity: 1; } } @keyframes flipSwingYOut { 0% { transform: perspective(400px) rotateY(0deg); } 40% { transform: perspective(400px) rotateY(-10deg); } 70% { transform: perspective(400px) rotateY(10deg); } 100% { transform: perspective(400px) rotateY(-90deg); } } @keyframes flipSwingZIn { 0% { transform: perspective(400px) rotateY(90deg) rotateZ(90deg); transform-origin: center center; opacity: 0; } 40% { transform: perspective(400px) rotateY(-10deg) rotateZ(-10deg); transform-origin: center center; } 70% { transform: perspective(400px) rotateY(10deg) rotateZ(10deg); transform-origin: center center; } 100% { transform: perspective(400px) rotate(0); transform-origin: center center; opacity: 1; } } @keyframes flipSwingZOut { 100% { transform: perspective(400px) rotateY(90deg) rotateZ(90deg); transform-origin: center center; opacity: 0; } 70% { transform: perspective(400px) rotateY(-10deg) rotateZ(-10deg); transform-origin: center center; } 40% { transform: perspective(400px) rotateY(10deg) rotateZ(10deg); transform-origin: center center; } 0% { transform: perspective(400px) rotate(0); transform-origin: center center; opacity: 1; } } @keyframes flipXIn { 0% { transform: perspective(400px) rotateX(90deg); opacity: 0; } 100% { transform: perspective(400px) rotateX(0deg); opacity: 1; } } @keyframes flipXOut { 0% { transform: perspective(400px) rotateX(0deg); } 100% { transform: perspective(400px) rotateX(90deg); } } @keyframes flipXInverseIn { 0% { transform: perspective(400px) rotateX(-90deg); opacity: 0; } 100% { transform: perspective(400px) rotateX(0deg); opacity: 1; } } @keyframes flipXInverseOut { 0% { transform: perspective(400px) rotateX(0deg); } 100% { transform: perspective(400px) rotateX(-90deg); } } @keyframes flipYIn { 0% { transform: perspective(400px) rotateY(-90deg); opacity: 0; } 100% { transform: perspective(400px) rotateY(0deg); opacity: 1; } } @keyframes flipYOut { 0% { transform: perspective(400px) rotateY(0deg); opacity: 1; } 100% { transform: perspective(400px) rotateY(-90deg); opacity: 0; } } @keyframes flipYInverseIn { 0% { transform: perspective(400px) rotateY(90deg); opacity: 0; } 100% { transform: perspective(400px) rotateY(0deg); opacity: 1; } } @keyframes flipYInverseOut { 0% { transform: perspective(400px) rotateY(0deg); opacity: 1; } 100% { transform: perspective(400px) rotateY(90deg); opacity: 0; } } @keyframes flipZIn { 0% { transform: perspective(400px) rotateY(90deg) rotateZ(90deg); transform-origin: center center; opacity: 0; } 100% { transform: perspective(400px) rotate(0); transform-origin: center center; opacity: 1; } } @keyframes flipZOut { 100% { transform: perspective(400px) rotateY(90deg) rotateZ(90deg); transform-origin: center center; opacity: 0; } 0% { transform: perspective(400px) rotate(0); transform-origin: center center; opacity: 1; } } @keyframes flipZInverseIn { 0% { transform: perspective(400px) rotateY(-90deg) rotateZ(-90deg); transform-origin: center center; opacity: 0; } 100% { transform: perspective(400px) rotate(0); transform-origin: center center; opacity: 1; } } @keyframes flipZInverseOut { 100% { transform: perspective(400px) rotateY(-90deg) rotateZ(-90deg); transform-origin: center center; opacity: 0; } 0% { transform: perspective(400px) rotate(0); transform-origin: center center; opacity: 1; } } .flip-slide-x-inverse-enter, .flip-slide-x-inverse-enter-active { animation-name: flipSlideXInverseIn; } .flip-slide-x-inverse-leave, .flip-slide-x-inverse-leave-active { animation-name: flipSlideXInverseOut; } .flip-slide-x-through-enter, .flip-slide-x-through-enter-active { animation-name: flipSlideXIn; } .flip-slide-x-through-leave, .flip-slide-x-through-leave-active { animation-name: flipSlideXInverseOut; } .flip-slide-x-enter, .flip-slide-x-enter-active { animation-name: flipSlideXIn; } .flip-slide-x-leave, .flip-slide-x-leave-active { animation-name: flipSlideXOut; } .flip-slide-y-inverse-enter, .flip-slide-y-inverse-enter-active { animation-name: flipSlideYInverseIn; } .flip-slide-y-inverse-leave, .flip-slide-y-inverse-leave-active { animation-name: flipSlideYInverseOut; } .flip-slide-y-through-enter, .flip-slide-y-through-enter-active { animation-name: flipSlideYIn; } .flip-slide-y-through-leave, .flip-slide-y-through-leave-active { animation-name: flipSlideYInverseOut; } .flip-slide-y-enter, .flip-slide-y-enter-active { animation-name: flipSlideYIn; } .flip-slide-y-leave, .flip-slide-y-leave-active { animation-name: flipSlideYOut; } .flip-slide-z-inverse-enter, .flip-slide-z-inverse-enter-active { animation-name: flipSlideZInverseIn; } .flip-slide-z-inverse-leave, .flip-slide-z-inverse-leave-active { animation-name: flipSlideZInverseOut; } .flip-slide-z-through-enter, .flip-slide-z-through-enter-active { animation-name: flipSlideZIn; } .flip-slide-z-through-leave, .flip-slide-z-through-leave-active { animation-name: flipSlideZInverseOut; } .flip-slide-z-enter, .flip-slide-z-enter-active { animation-name: flipSlideZIn; } .flip-slide-z-leave, .flip-slide-z-leave-active { animation-name: flipSlideZOut; } .flip-slide-enter, .flip-slide-enter-active { animation-name: flipSlideIn; } .flip-slide-leave, .flip-slide-leave-active { animation-name: flipSlideOut; } .flip-swing-x-enter, .flip-swing-x-enter-active { animation-name: flipSwingXIn; } .flip-swing-x-leave, .flip-swing-x-leave-active { animation-name: flipSwingXOut; } .flip-swing-y-enter, .flip-swing-y-enter-active { animation-name: flipSwingYIn; } .flip-swing-y-leave, .flip-swing-y-leave-active { animation-name: flipSwingYOut; } .flip-swing-z-enter, .flip-swing-z-enter-active { animation-name: flipSwingZIn; } .flip-swing-z-leave, .flip-swing-z-leave-active { animation-name: flipSwingZOut; } .flip-x-inverse-enter, .flip-x-inverse-enter-active { animation-name: flipXInverseIn; } .flip-x-inverse-leave, .flip-x-inverse-leave-active { animation-name: flipXInverseOut; } .flip-x-through-enter, .flip-x-through-enter-active { animation-name: flipXIn; } .flip-x-through-leave, .flip-x-through-leave-active { animation-name: flipXInverseOut; } .flip-x-enter, .flip-x-enter-active { animation-name: flipXIn; } .flip-x-leave, .flip-x-leave-active { animation-name: flipXOut; } .flip-y-inverse-enter, .flip-y-inverse-enter-active { animation-name: flipYInverseIn; } .flip-y-inverse-leave, .flip-y-inverse-leave-active { animation-name: flipYInverseOut; } .flip-y-through-enter, .flip-y-through-enter-active { animation-name: flipYIn; } .flip-y-through-leave, .flip-y-through-leave-active { animation-name: flipYInverseOut; } .flip-y-enter, .flip-y-enter-active { animation-name: flipYIn; } .flip-y-leave, .flip-y-leave-active { animation-name: flipYOut; } .flip-z-inverse-enter, .flip-z-inverse-enter-active { animation-name: flipZInverseIn; } .flip-z-inverse-leave, .flip-z-inverse-leave-active { animation-name: flipZInverseOut; } .flip-z-through-enter, .flip-z-through-enter-active { animation-name: flipZIn; } .flip-z-through-leave, .flip-z-through-leave-active { animation-name: flipZInverseOut; } .flip-z-enter, .flip-z-enter-active { animation-name: flipZIn; } .flip-z-leave, .flip-z-leave-active { animation-name: flipZOut; } .flip-enter, .flip-enter-active { animation-name: flip; } .flip-leave, .flip-leave-active { animation-name: flip; } @keyframes hingeIn { 0% { transform: translateY(700px); opacity: 0; } 20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; } 40% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; } 80% { transform: rotate(60deg); transform-origin: top left; animation-timing-function: ease-in-out; } 100% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; } } @keyframes hingeOut { 100% { transform: translateY(-700px); opacity: 0; } 20%, 60% { transform: rotate(80deg); transform-origin: top left; animation-timing-function: ease-in-out; } 80% { transform: rotate(-60deg) translateY(0); opacity: 1; transform-origin: top left; animation-timing-function: ease-in-out; } 40% { transform: rotate(-60deg); transform-origin: top left; animation-timing-function: ease-in-out; } 0% { transform: rotate(0); transform-origin: top left; animation-timing-function: ease-in-out; } } @keyframes hingeRightIn { 0% { transform: translateY(-700px); opacity: 0; } 20%, 60% { transform: rotate(-80deg); transform-origin: top right; animation-timing-function: ease-in-out; } 40% { transform: rotate(-60deg) translateY(0); opacity: 1; transform-origin: top right; animation-timing-function: ease-in-out; } 80% { transform: rotate(60deg); transform-origin: top right; animation-timing-function: ease-in-out; } 100% { transform: rotate(0); transform-origin: top right; animation-timing-function: ease-in-out; } } @keyframes hingeRightOut { 100% { transform: translateY(-700px); opacity: 0; } 20%, 60% { transform: rotate(-80deg); transform-origin: top right; animation-timing-function: ease-in-out; } 80% { transform: rotate(60deg) translateY(0); opacity: 1; transform-origin: top right; animation-timing-function: ease-in-out; } 40% { transform: rotate(60deg); transform-origin: top right; animation-timing-function: ease-in-out; } 0% { transform: rotate(0); transform-origin: top right; animation-timing-function: ease-in-out; } } .hinge-left-right-enter, .hinge-left-right-enter-active { animation-name: hingeIn; } .hinge-left-right-leave, .hinge-left-right-leave-active { animation-name: hingeRightOut; } .hinge-right-left-enter, .hinge-right-left-enter-active { animation-name: hingeRightIn; } .hinge-right-left-leave, .hinge-right-left-leave-active { animation-name: hingeOut; } .hinge-right-enter, .hinge-right-enter-active { animation-name: hingeRightIn; } .hinge-right-leave, .hinge-right-leave-active { animation-name: hingeRightOut; } .hinge-enter, .hinge-enter-active { animation-name: hingeIn; } .hinge-leave, .hinge-leave-active { animation-name: hingeOut; } @keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } } @keyframes pulseLarge { 0% { transform: scale(1); } 50% { transform: scale(2.3); } 100% { transform: scale(1); } } .pulse-large-enter, .pulse-large-enter-active { animation-name: pulseLarge; } .pulse-large-leave, .pulse-large-leave-active { animation-name: pulseLarge; } .pulse-enter, .pulse-enter-active { animation-name: pulse; } .pulse-leave, .pulse-leave-active { animation-name: pulse; } @keyframes rollIn { 0% { opacity: 0; transform: translateX(-100%) rotate(-120deg); } 100% { opacity: 1; transform: translateX(0px) rotate(0deg); } } @keyframes rollOut { 0% { opacity: 1; transform: translateX(0px) rotate(0deg); } 100% { opacity: 0; transform: translateX(100%) rotate(120deg); } } @keyframes rollRightIn { 0% { opacity: 0; transform: translateX(100%) rotate(120deg); } 100% { opacity: 1; transform: translateX(0px) rotate(0deg); } } @keyframes rollRightOut { 0% { opacity: 1; transform: translateX(0px) rotate(0deg); } 100% { opacity: 0; transform: translateX(-100%) rotate(-120deg); } } .roll-right-enter, .roll-right-enter-active { animation-name: rollRightIn; } .roll-right-leave, .roll-right-leave-active { animation-name: rollRightOut; } .roll-enter, .roll-enter-active { animation-name: rollIn; } .roll-leave, .roll-leave-active { animation-name: rollOut; } @keyframes flyLeftIn { 0% { transform: perspective(600px) translateX(-100%) translateZ(200px) rotateY(-240deg); animation-timing-function: linear; opacity: 0; } 50% { transform: perspective(600px) translateX(-50%) translateZ(100px) rotateY(-120deg); animation-timing-function: linear; opacity: 0.5; } 100% { transform: perspective(600px) translateZ(0) translateX(0) rotateY(0); animation-timing-function: linear; opacity: 1; } } @keyframes flyLeftOut { 100% { transform: perspective(600px) translateX(-100%) translateZ(200px) rotateY(-240deg); animation-timing-function: linear; opacity: 0; } 50% { transform: perspective(600px) translateX(-50%) translateZ(100px) rotateY(-120deg); animation-timing-function: linear; opacity: 0.5; } 0% { transform: perspective(600px) translateZ(0) translateX(0) rotateY(0); animation-timing-function: linear; opacity: 1; } } @keyframes flyRightIn { 0% { transform: perspective(600px) translateX(100%) translateZ(200px) rotateY(240deg); transform-origin: 50% 100%; animation-timing-function: linear; opacity: 0; } 50% { transform: perspective(600px) translateX(50%) translateZ(100px) rotateY(120deg); transform-origin: 50% 100%; animation-timing-function: linear; opacity: 0.5; } 100% { transform: perspective(600px) translateZ(0) translateX(0) rotateY(0); transform-origin: 50% 100%; animation-timing-function: linear; opacity: 1; } } @keyframes flyRightOut { 100% { transform: perspective(600px) translateX(100%) translateZ(200px) rotateY(240deg); transform-origin: 50% 100%; animation-timing-function: linear; opacity: 0; } 50% { transform: perspective(600px) translateX(50%) translateZ(100px) rotateY(120deg); transform-origin: 50% 100%; animation-timing-function: linear; opacity: 0.5; } 0% { transform: perspective(600px) translateZ(0) translateX(0) rotateY(0); transform-origin: 50% 100%; animation-timing-function: linear; opacity: 1; } } @keyframes newspaperIn { 0% { transform: scale(0) rotate(720deg); opacity: 0; } 100% { transform: scale(1) rotate(0); opacity: 1; } } @keyframes newspaperOut { 0% { transform: scale(1) rotate(0); opacity: 1; } 100% { transform: scale(0) rotate(-720deg); opacity: 0; } } @keyframes newspaperInverseIn { 0% { transform: scale(0) rotate(-720deg); opacity: 0; } 100% { transform: scale(1) rotate(0); opacity: 1; } } @keyframes newspaperInverseOut { 0% { transform: scale(1) rotate(0); opacity: 1; } 100% { transform: scale(0) rotate(720deg); opacity: 0; } } @keyframes rotateBottomIn { 0% { opacity: 0; transform: translateZ(-100px) translateY(100%) rotateX(90deg); transform-origin: 0 100%; } 100% { transform: perspective(1300px) rotate(0) translate(0); transform-origin: 0 100%; opacity: 1; } } @keyframes rotateBottomOut { 0% { transform: perspective(1300px) rotate(0) translate(0); transform-origin: 0 100%; opacity: 1; } 100% { opacity: 0; transform: translateZ(-100px) translateY(100%) rotateX(90deg); transform-origin: 0 100%; } } @keyframes rotateDownLeftIn { 0% { transform: rotate(-90deg); transform-origin: left bottom; opacity: 0; } 100% { transform: rotate(0); transform-origin: left bottom; opacity: 1; } } @keyframes rotateDownLeftOut { 0% { transform: rotate(0); transform-origin: left bottom; opacity: 1; } 100% { transform: rotate(90deg); transform-origin: left bottom; opacity: 0; } } @keyframes rotateDownRightIn { 0% { transform: rotate(90deg); transform-origin: right bottom; opacity: 0; } 100% { transform: rotate(0); transform-origin: right bottom; opacity: 1; } } @keyframes rotateDownRightOut { 0% { transform: rotate(0); transform-origin: right bottom; opacity: 1; } 100% { transform: rotate(-90deg); transform-origin: right bottom; opacity: 0; } } @keyframes rotateInverseIn { 0% { transform: rotate(200deg); opacity: 0; } 100% { transform-origin: center center; transform: rotate(0); opacity: 1; } } @keyframes rotateInverseOut { 0% { transform-origin: center center; transform: rotate(0); opacity: 1; } 100% { transform-origin: center center; transform: rotate(-200deg); opacity: 0; } } @keyframes rotateLeftIn { 0% { opacity: 0; transform: translateZ(100px) translateX(-30%) rotateY(90deg); transform-origin: 0 100%; } 100% { transform: rotate(0) translate(0) perspective(1300px); transform-origin: 0 100%; opacity: 1; } } @keyframes rotateLeftOut { 0% { transform: rotate(0) translate(0) perspective(1300px); transform-origin: 0 100%; opacity: 1; } 100% { opacity: 0; transform: translateZ(100px) translateX(-30%) rotateY(90deg); transform-origin: 0 100%; } } @keyframes rotateRightIn { 0% { opacity: 0; transform: translateZ(100px) translateX(0%) rotateY(-90deg); transform-origin: 100% 100%; } 100% { transform: perspective(1300px) rotate(0) translate(0); transform-origin: 100% 100%; opacity: 1; } } @keyframes rotateRightOut { 0% { transform: perspective(1300px) rotate(0) translate(0); transform-origin: 100% 100%; opacity: 1; } 100% { opacity: 0; transform: translateZ(100px) translateX(30%) rotateY(-90deg); transform-origin: 100% 100%; } } @keyframes rotateTopIn { 0% { opacity: 0; transform: translateZ(100px) translateY(-100%) rotateX(-90deg); transform-origin: 0 0; } 100% { transform: perspective(1300px) rotate(0) translate(0); transform-origin: 0 0; opacity: 1; } } @keyframes rotateTopOut { 0% { transform: perspective(1300px) rotate(0) translate(0); transform-origin: 0 0; opacity: 1; } 100% { opacity: 0; transform: translateZ(100px) translateY(-100%) rotateX(-90deg); transform-origin: 0 0; } } @keyframes rotateUpLeftIn { 0% { transform: rotate(90deg); transform-origin: left bottom; opacity: 0; } 100% { transform: rotate(0); transform-origin: left bottom; opacity: 1; } } @keyframes rotateUpLeftOut { 0% { transform: rotate(0); transform-origin: left bottom; opacity: 1; } 100% { transform: rotate(-90deg); transform-origin: left bottom; opacity: 0; } } @keyframes rotateUpRightIn { 0% { transform: rotate(-90deg); transform-origin: 100% 100%; opacity: 0; } 100% { transform: rotate(0); transform-origin: 100% 100%; opacity: 1; } } @keyframes rotateUpRightOut { 0% { transform: rotate(0); transform-origin: 100% 100%; opacity: 1; } 100% { transform: rotate(90deg); transform-origin: 100% 100%; opacity: 0; } } @keyframes rotateIn { 0% { transform: rotate(-200deg); opacity: 0; } 100% { transform-origin: center center; transform: rotate(0); opacity: 1; } } @keyframes rotateOut { 0% { transform-origin: center center; transform: rotate(0); opacity: 1; } 100% { transform-origin: center center; transform: rotate(200deg); opacity: 0; } } .fly-left-right-enter, .fly-left-right-enter-active { animation-name: flyLeftIn; } .fly-left-right-leave, .fly-left-right-leave-active { animation-name: flyRightOut; } .fly-left-enter, .fly-left-enter-active { animation-name: flyLeftIn; } .fly-left-leave, .fly-left-leave-active { animation-name: flyLeftOut; } .fly-right-left-enter, .fly-right-left-enter-active { animation-name: flyRightIn; } .fly-right-left-leave, .fly-right-left-leave-active { animation-name: flyLeftOut; } .fly-right-enter, .fly-right-enter-active { animation-name: flyRightIn; } .fly-right-leave, .fly-right-leave-active { animation-name: flyRightOut; } .newspaper-inverse-enter, .newspaper-inverse-enter-active { animation-name: newspaperInverseIn; } .newspaper-inverse-leave, .newspaper-inverse-leave-active { animation-name: newspaperInverseOut; } .newspaper-enter, .newspaper-enter-active { animation-name: newspaperIn; } .newspaper-leave, .newspaper-leave-active { animation-name: newspaperOut; } .rotate-bottom-top-enter, .rotate-bottom-top-enter-active { animation-name: rotateBottomIn; } .rotate-bottom-top-leave, .rotate-bottom-top-leave-active { animation-name: rotateTopOut; } .rotate-bottom-enter, .rotate-bottom-enter-active { animation-name: rotateBottomIn; } .rotate-bottom-leave, .rotate-bottom-leave-active { animation-name: rotateBottomOut; } .rotate-down-left-enter, .rotate-down-left-enter-active { animation-name: rotateDownLeftIn; } .rotate-down-left-leave, .rotate-down-left-leave-active { animation-name: rotateDownLeftOut; } .rotate-down-right-enter, .rotate-down-right-enter-active { animation-name: rotateDownRightIn; } .rotate-down-right-leave, .rotate-down-right-leave-active { animation-name: rotateDownRightOut; } .rotate-inverse-enter, .rotate-inverse-enter-active { animation-name: rotateInverseIn; } .rotate-inverse-leave, .rotate-inverse-leave-active { animation-name: rotateInverseOut; } .rotate-left-right-enter, .rotate-left-right-enter-active { animation-name: rotateLeftIn; } .rotate-left-right-leave, .rotate-left-right-leave-active { animation-name: rotateRightOut; } .rotate-left-enter, .rotate-left-enter-active { animation-name: rotateLeftIn; } .rotate-left-leave, .rotate-left-leave-active { animation-name: rotateLeftOut; } .rotate-right-left-enter, .rotate-right-left-enter-active { animation-name: rotateRightIn; } .rotate-right-left-leave, .rotate-right-left-leave-active { animation-name: rotateLeftOut; } .rotate-right-enter, .rotate-right-enter-active { animation-name: rotateRightIn; } .rotate-right-leave, .rotate-right-leave-active { animation-name: rotateRightOut; } .rotate-top-bottom-enter, .rotate-top-bottom-enter-active { animation-name: rotateTopIn; } .rotate-top-bottom-leave, .rotate-top-bottom-leave-active { animation-name: rotateBottomOut; } .rotate-top-enter, .rotate-top-enter-active { animation-name: rotateTopIn; } .rotate-top-leave, .rotate-top-leave-active { animation-name: rotateTopOut; } .rotate-up-left-enter, .rotate-up-left-enter-active { animation-name: rotateUpLeftIn; } .rotate-up-left-leave, .rotate-up-left-leave-active { animation-name: rotateUpLeftOut; } .rotate-up-right-enter, .rotate-up-right-enter-active { animation-name: rotateUpRightIn; } .rotate-up-right-leave, .rotate-up-right-leave-active { animation-name: rotateUpRightOut; } .rotate-enter, .rotate-enter-active { animation-name: rotateIn; } .rotate-leave, .rotate-leave-active { animation-name: rotateOut; } @keyframes scaleIn { from { opacity: 0; transform: scale(0.3); } to { opacity: 1; transform: scale(1); } } @keyframes scaleOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(0.3); } } @keyframes scaleLargeIn { from { opacity: 0; transform: scale(2); } to { opacity: 1; transform: scale(1); } } @keyframes scaleLargeOut { from { opacity: 1; transform: scale(1); } to { opacity: 0; transform: scale(2); } } .scale-large-enter, .scale-large-enter-active { animation-name: scaleLargeIn; } .scale-large-leave, .scale-large-leave-active { animation-name: scaleLargeOut; } .scale-enter, .scale-enter-active { animation-name: scaleIn; } .scale-leave, .scale-leave-active { animation-name: scaleOut; } @keyframes shake { 0%, 100% { transform: translateX(0); } 10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); } 20%, 40%, 60%, 80% { transform: translateX(10px); } } .shake-enter, .shake-enter-active { animation-name: shake; } .shake-leave, .shake-leave-active { animation-name: shake; } @keyframes singIn { from { opacity: 0.8; transform: perspective(1300px) rotateX(-60deg); transform-origin: 50% 0%; } to { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 0%; } } @keyframes singOut { from { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 0%; } to { opacity: 0.8; transform: perspective(1300px) rotateX(-60deg); transform-origin: 50% 0%; } } @keyframes singBottomIn { from { opacity: 0.8; transform: perspective(1300px) rotateX(60deg); transform-origin: 50% 100%; } to { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 100%; } } @keyframes singBottomOut { from { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 100%; } to { opacity: 0.8; transform: perspective(1300px) rotateX(60deg); transform-origin: 50% 100%; } } @keyframes singLeftIn { from { opacity: 0.8; transform: perspective(1300px) rotateY(-60deg); transform-origin: 0 50%; } to { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 0 50%; } } @keyframes singLeftOut { from { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 0 50%; } to { opacity: 0.8; transform: perspective(1300px) rotateY(60deg); transform-origin: 0 50%; } } @keyframes singRightIn { from { opacity: 0.8; transform: perspective(1300px) rotateY(60deg); transform-origin: 100% 50%; } to { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 100% 50%; } } @keyframes singRightOut { from { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 100% 50%; } to { opacity: 0.8; transform: perspective(1300px) rotateY(-60deg); transform-origin: 100% 50%; } } @keyframes singSwingIn { 0% { opacity: 0.8; transform: perspective(1300px) rotateX(-60deg); transform-origin: 50% 0%; } 40%, 80% { transform: perspective(1300px) rotateX(10deg); transform-origin: 50% 0%; } 60% { transform: perspective(1300px) rotateX(-10deg); transform-origin: 50% 0%; } 100% { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 0%; } } @keyframes singSwingOut { 0% { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 0%; } 40%, 80% { transform: perspective(1300px) rotateX(10deg); transform-origin: 50% 0%; } 60% { transform: perspective(1300px) rotateX(-10deg); transform-origin: 50% 0%; } 100% { opacity: 0.8; transform: perspective(1300px) rotateX(-60deg); transform-origin: 50% 0%; } } @keyframes singSwingBottomIn { 0% { opacity: 0.8; transform: perspective(1300px) rotateX(60deg); transform-origin: 50% 100%; } 40%, 80% { transform: perspective(1300px) rotateX(-10deg); transform-origin: 50% 100%; } 60% { transform: perspective(1300px) rotateX(10deg); transform-origin: 50% 100%; } 100% { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 100%; } } @keyframes singSwingBottomOut { 0% { opacity: 1; transform: perspective(1300px) rotateX(0); transform-origin: 50% 100%; } 40%, 80% { transform: perspective(1300px) rotateX(10deg); transform-origin: 50% 100%; } 60% { transform: perspective(1300px) rotateX(-10deg); transform-origin: 50% 100%; } 100% { opacity: 0.8; transform: perspective(1300px) rotateX(60deg); transform-origin: 50% 100%; } } @keyframes singSwingLeftIn { 0% { opacity: 0.8; transform: perspective(1300px) rotateY(-60deg); transform-origin: 0 50%; } 40%, 80% { transform: perspective(1300px) rotateY(10deg); transform-origin: 0 50%; } 60% { transform: perspective(1300px) rotateY(-10deg); transform-origin: 0 50%; } 100% { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 0 50%; } } @keyframes singSwingLeftOut { 100% { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 0 50%; } 40%, 80% { transform: perspective(1300px) rotateY(-10deg); -moz-transform: perspective(1300px) rotateY(-10deg); -ms-transform: perspective(1300px) rotateY(-10deg); transform-origin: 0 50%; } 60% { transform: perspective(1300px) rotateY(10deg); -moz-transform: perspective(1300px) rotateY(10deg); -ms-transform: perspective(1300px) rotateY(10deg); transform-origin: 0 50%; } 100% { opacity: 0.8; transform: perspective(1300px) rotateY(60deg); transform-origin: 0 50%; } } @keyframes singSwingRightIn { 0% { opacity: 0.8; transform: perspective(1300px) rotateY(60deg); transform-origin: 100% 50%; } 40%, 80% { transform: perspective(1300px) rotateY(-10deg); transform-origin: 100% 50%; } 60% { transform: perspective(1300px) rotateY(10deg); transform-origin: 100% 50%; } 100% { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 100% 50%; } } @keyframes singSwingRightOut { 100% { opacity: 1; transform: perspective(1300px) rotateY(0); transform-origin: 100% 50%; } 40%, 80% { transform: perspective(1300px) rotateY(10deg); -moz-transform: perspective(1300px) rotateY(10deg); -ms-transform: perspective(1300px) rotateY(10deg); transform-origin: 100% 50%; } 60% { transform: perspective(1300px) rotateY(-10deg); -moz-transform: perspective(1300px) rotateY(-10deg); -ms-transform: perspective(1300px) rotateY(-10deg); transform-origin: 100% 50%; } 100% { opacity: 0.8; transform: perspective(1300px) rotateY(-60deg); transform-origin: 100% 50%; } } .sing-bottom-top-enter, .sing-bottom-top-enter-active { animation-name: singBottomIn; } .sing-bottom-top-leave, .sing-bottom-top-leave-active { animation-name: singOut; } .sing-bottom-enter, .sing-bottom-enter-active { animation-name: singBottomIn; } .sing-bottom-leave, .sing-bottom-leave-active { animation-name: singBottomOut; } .sing-left-right-enter, .sing-left-right-enter-active { animation-name: singLeftIn; } .sing-left-right-leave, .sing-left-right-leave-active { animation-name: singRightOut; } .sing-left-enter, .sing-left-enter-active { animation-name: singLeftIn; } .sing-left-leave, .sing-left-leave-active { animation-name: singLeftOut; } .sing-right-left-enter, .sing-right-left-enter-active { animation-name: singRightIn; } .sing-right-left-leave, .sing-right-left-leave-active { animation-name: singLeftOut; } .sing-right-enter, .sing-right-enter-active { animation-name: singRightIn; } .sing-right-leave, .sing-right-leave-active { animation-name: singRightOut; } .sing-swing-bottom-enter, .sing-swing-bottom-enter-active { animation-name: singSwingBottomIn; } .sing-swing-bottom-leave, .sing-swing-bottom-leave-active { animation-name: singSwingBottomOut; } .sing-swing-left-right-enter, .sing-swing-left-right-enter-active { animation-name: singSwingLeftIn; } .sing-swing-left-right-leave, .sing-swing-left-right-leave-active { animation-name: singSwingRightOut; } .sing-swing-left-enter, .sing-swing-left-enter-active { animation-name: singSwingLeftIn; } .sing-swing-left-leave, .sing-swing-left-leave-active { animation-name: singSwingLeftOut; } .sing-swing-right-left-enter, .sing-swing-right-left-enter-active { animation-name: singSwingRightIn; } .sing-swing-right-left-leave, .sing-swing-right-left-leave-active { animation-name: singSwingLeftOut; } .sing-swing-right-enter, .sing-swing-right-enter-active { animation-name: singSwingRightIn; } .sing-swing-right-leave, .sing-swing-right-leave-active { animation-name: singSwingRightOut; } .sing-swing-enter, .sing-swing-enter-active { animation-name: singSwingIn; } .sing-swing-leave, .sing-swing-leave-active { animation-name: singSwingOut; } .sing-top-bottom-enter, .sing-top-bottom-enter-active { animation-name: singIn; } .sing-top-bottom-leave, .sing-top-bottom-leave-active { animation-name: singBottomOut; } .sing-enter, .sing-enter-active { animation-name: singIn; } .sing-leave, .sing-leave-active { animation-name: singOut; } @keyframes fromBottomIn { from { transform: translateY(2000px); } } @keyframes fromBottomOut { to { transform: translateY(2000px); } } @keyframes fromBottomLeftIn { from { transform: translate(-100%, 100%); } } @keyframes fromBottomLeftOut { to { transform: translate(-100%, 100%); } } @keyframes fromBottomRightIn { from { transform: translate(100%, 100%); } } @keyframes fromBottomRightOut { to { transform: translate(100%, 100%); } } @keyframes fromLeftIn { from { transform: translateX(-2000px); } } @keyframes fromLeftOut { to { transform: translateX(-2000px); } } @keyframes fromRightIn { from { transform: translateX(2000px); } } @keyframes fromRightOut { to { transform: translateX(2000px); } } @keyframes fromTopIn { from { transform: translateY(-2000px); } } @keyframes fromTopOut { to { transform: translateY(-2000px); } } @keyframes fromTopLeftIn { from { transform: translate(-100%, -100%); } } @keyframes fromTopLeftOut { to { transform: translate(-100%, -100%); } } @keyframes fromTopRightIn { from { transform: translate(100%, -100%); } } @keyframes fromTopRightOut { to { transform: translate(100%, -100%); } } @keyframes slideIn { from { transform: translateY(-100%); } } @keyframes slideOut { to { transform: translateY(-100%); } } @keyframes slideBottomIn { from { transform: translateY(100%); } } @keyframes slideBottomOut { to { transform: translateY(100%); } } @keyframes slideLeftIn { from { transform: translateX(-100%); } } @keyframes slideLeftOut { to { transform: translateX(-100%); } } @keyframes slideRightIn { from { transform: translateX(100%); } } @keyframes slideRightOut { to { transform: translateX(100%); } } @keyframes slideStickyIn { from { transform: translateY(-50%); } } @keyframes slideStickyOut { to { transform: translateY(-50%); } } @keyframes slideStickyBottomIn { from { transform: translateY(50%); } } @keyframes slideStickyBottomOut { to { transform: translateY(50%); } } @keyframes slideStickyLeftIn { from { transform: translateX(-50%); } } @keyframes slideStickyLeftOut { to { transform: translateX(-50%); } } @keyframes slideStickyRightIn { from { transform: translateX(50%); } } @keyframes slideStickyRightOut { to { transform: translateX(50%); } } .from-bottom-left-enter, .from-bottom-left-enter-active { animation-name: fromBottomLeftIn; } .from-bottom-left-leave, .from-bottom-left-leave-active { animation-name: fromBottomLeftOut; } .from-bottom-right-enter, .from-bottom-right-enter-active { animation-name: fromBottomRightIn; } .from-bottom-right-leave, .from-bottom-right-leave-active { animation-name: fromBottomRightOut; } .from-bottom-enter, .from-bottom-enter-active { animation-name: fromBottomIn; } .from-bottom-leave, .from-bottom-leave-active { animation-name: fromBottomOut; } .from-left-enter, .from-left-enter-active { animation-name: fromLeftIn; } .from-left-leave, .from-left-leave-active { animation-name: fromLeftOut; } .from-right-enter, .from-right-enter-active { animation-name: fromRightIn; } .from-right-leave, .from-right-leave-active { animation-name: fromRightOut; } .from-top-left-enter, .from-top-left-enter-active { animation-name: fromTopLeftIn; } .from-top-left-leave, .from-top-left-leave-active { animation-name: fromTopLeftOut; } .from-top-right-enter, .from-top-right-enter-active { animation-name: fromTopRightIn; } .from-top-right-leave, .from-top-right-leave-active { animation-name: fromTopRightOut; } .from-top-enter, .from-top-enter-active { animation-name: fromTopIn; } .from-top-leave, .from-top-leave-active { animation-name: fromTopOut; } .slide-bottom-top-enter, .slide-bottom-top-enter-active { animation-name: slideBottomIn; } .slide-bottom-top-leave, .slide-bottom-top-leave-active { animation-name: slideOut; } .slide-bottom-enter, .slide-bottom-enter-active { animation-name: slideBottomIn; } .slide-bottom-leave, .slide-bottom-leave-active { animation-name: slideBottomOut; } .slide-east-west-enter, .slide-east-west-enter-active { animation-name: fromBottomRightIn; } .slide-east-west-leave, .slide-east-west-leave-active { animation-name: fromTopLeftOut; } .slide-left-right-enter, .slide-left-right-enter-active { animation-name: slideLeftIn; } .slide-left-right-leave, .slide-left-right-leave-active { animation-name: slideRightOut; } .slide-left-enter, .slide-left-enter-active { animation-name: slideLeftIn; } .slide-left-leave, .slide-left-leave-active { animation-name: slideLeftOut; } .slide-north-south-enter, .slide-north-south-enter-active { animation-name: fromTopRightIn; } .slide-north-south-leave, .slide-north-south-leave-active { animation-name: fromBottomLeftOut; } .slide-right-left-enter, .slide-right-left-enter-active { animation-name: slideRightIn; } .slide-right-left-leave, .slide-right-left-leave-active { animation-name: slideLeftOut; } .slide-right-enter, .slide-right-enter-active { animation-name: slideRightIn; } .slide-right-leave, .slide-right-leave-active { animation-name: slideRightOut; } .slide-south-north-enter, .slide-south-north-enter-active { animation-name: fromBottomLeftIn; } .slide-south-north-leave, .slide-south-north-leave-active { animation-name: fromTopRightOut; } .slide-sticky-bottom-enter, .slide-sticky-bottom-enter-active { animation-name: slideStickyBottomIn; } .slide-sticky-bottom-leave, .slide-sticky-bottom-leave-active { animation-name: slideStickyBottomOut; } .slide-sticky-left-enter, .slide-sticky-left-enter-active { animation-name: slideStickyLeftIn; } .slide-sticky-left-leave, .slide-sticky-left-leave-active { animation-name: slideStickyLeftOut; } .slide-sticky-right-enter, .slide-sticky-right-enter-active { animation-name: slideStickyRightIn; } .slide-sticky-right-leave, .slide-sticky-right-leave-active { animation-name: slideStickyRightOut; } .slide-sticky-enter, .slide-sticky-enter-active { animation-name: slideStickyIn; } .slide-sticky-leave, .slide-sticky-leave-active { animation-name: slideStickyOut; } .slide-top-bottom-enter, .slide-top-bottom-enter-active { animation-name: slideIn; } .slide-top-bottom-leave, .slide-top-bottom-leave-active { animation-name: slideBottomOut; } .slide-west-east-enter, .slide-west-east-enter-active { animation-name: fromTopLeftIn; } .slide-west-east-leave, .slide-west-east-leave-active { animation-name: fromBottomRightOut; } .slide-enter, .slide-enter-active { animation-name: slideIn; } .slide-leave, .slide-leave-active { animation-name: slideOut; } @keyframes slitIn { 0% { opacity: 0; transform: perspective(1300px) translateZ(-3000px) rotateY(90deg); animation-timing-function: ease-out; } 50% { opacity: 0.5; transform: perspective(1300px) translateZ(-250px) rotateY(89deg); animation-timing-function: ease-out; } 100% { opacity: 1; transform: perspective(1300px) translateZ(0) rotateY(0); animation-timing-function: ease-in; } } @keyframes slitOut { 0% { opacity: 1; transform: perspective(1300px) translateZ(0) rotateY(0); animation-timing-function: ease-in; } 50% { opacity: 0.5; transform: perspective(1300px) translateZ(-250px) rotateY(89deg); -moz-transform: perspective(1300px) translateZ(-250px) rotateY(89deg); -ms-transform: perspective(1300px) translateZ(-250px) rotateY(89deg); animation-timing-function: ease-out; } 100% { opacity: 0; transform: perspective(1300px) translateZ(-3000px) rotateY(90deg); animation-timing-function: ease-out; } } @keyframes slitXIn { 0% { opacity: 0; transform: perspective(1300px) translateZ(-3000px) rotateX(90deg); animation-timing-function: ease-out; } 50% { opacity: 0.5; transform: perspective(1300px) translateZ(-250px) rotateX(89deg); animation-timing-function: ease-out; } 100% { opacity: 1; transform: perspective(1300px) translateZ(0) rotateY(0); animation-timing-function: ease-in; } } @keyframes slitXOut { 100% { opacity: 1; transform: perspective(1300px) translateZ(0) rotateY(0); animation-timing-function: ease-in; } 50% { opacity: 0.5; transform: perspective(1300px) translateZ(-250px) rotateX(89deg); animation-timing-function: ease-out; } 100% { opacity: 0; transform: perspective(1300px) translateZ(-3000px) rotateX(90deg); animation-timing-function: ease-out; } } .slit-x-enter, .slit-x-enter-active { animation-name: slitXIn; } .slit-x-leave, .slit-x-leave-active { animation-name: slitXOut; } .slit-enter, .slit-enter-active { animation-name: slitIn; animation-fill-mode: forwards; } .slit-leave, .slit-leave-active { animation-name: slitOut; animation-fill-mode: forwards; } @keyframes speedIn { 0% { transform: translateX(100%) skewX(-30deg); opacity: 0; } 60% { transform: translateX(-20%) skewX(30deg); opacity: 1; } 80% { transform: translateX(0%) skewX(-15deg); opacity: 1; } 100% { transform: translateX(0%) skewX(0deg); opacity: 1; } } @keyframes speedOut { 0% { transform: translateX(0%) skewX(0deg); opacity: 1; } 10% { transform: translateX(0%) skewX(-15deg); opacity: 1; } 20% { transform: translateX(-20%) skewX(30deg); opacity: 1; } 100% { transform: translateX(100%) skewX(-30deg); opacity: 0; } } @keyframes speedLeftIn { 0% { transform: translateX(-100%) skewX(30deg); opacity: 0; } 60% { transform: translateX(20%) skewX(-30deg); opacity: 1; } 80% { transform: translateX(0%) skewX(15deg); opacity: 1; } 100% { transform: translateX(0%) skewX(0deg); opacity: 1; } } @keyframes speedLeftOut { 0% { transform: translateX(0%) skewX(0deg); opacity: 1; } 10% { transform: translateX(0%) skewX(15deg); opacity: 1; } 20% { transform: translateX(20%) skewX(-30deg); opacity: 1; } 100% { transform: translateX(-100%) skewX(30deg); opacity: 0; } } .speed-left-right-enter, .speed-left-right-enter-active { animation-name: speedLeftIn; } .speed-left-right-leave, .speed-left-right-leave-active { animation-name: speedOut; } .speed-left-enter, .speed-left-enter-active { animation-name: speedLeftIn; } .speed-left-leave, .speed-left-leave-active { animation-name: speedLeftOut; } .speed-right-left-enter, .speed-right-left-enter-active { animation-name: speedIn; } .speed-right-left-leave, .speed-right-left-leave-active { animation-name: speedLeftOut; } .speed-right-enter, .speed-right-enter-active { animation-name: speedIn; } .speed-right-leave, .speed-right-leave-active { animation-name: speedOut; } @keyframes spin { 0% { transform: rotate(0deg); } 20% { color: yellow; } 40% { color: green; } 60% { color: red; } 80% { color: blue; } 100% { transform: rotate(359deg); } } @keyframes spinOut { 0% { transform: rotate(0); } 20% { color: yellow; } 40% { color: green; } 60% { color: red; } 80% { color: blue; } 100% { transform: rotate(-359deg); } } .spin-enter, .spin-enter-active { animation-name: spin; } .spin-leave, .spin-leave-active { animation-name: spinOut; } @keyframes stompIn { 0% { opacity: 0; transform: translateY(-100%); box-shadow: -30px 40px 0px -30px rgba(0, 0, 0, 0.1), 0px 40px 0px -30px rgba(0, 0, 0, 0.1), 30px 40px 0px -30px rgba(0, 0, 0, 0.1); } 20% { opacity: 0; transform: translateY(-100%); box-shadow: -30px 40px 0px -30px rgba(0, 0, 0, 0.1), 0px 40px 0px -30px rgba(0, 0, 0, 0.1), 30px 40px 0px -30px rgba(0, 0, 0, 0.1); } 25% { opacity: 1; transform: translateY(0px); box-shadow: -50px 60px 0px -30px rgba(0, 0, 0, 0.1), 0px 60px 0px -30px rgba(0, 0, 0, 0.1), 50px 60px 0px -30px rgba(0, 0, 0, 0.1); } 29% { box-shadow: -70px 80px 70px -30px rgba(255, 255, 255, 0.5), 0px 80px 70px -30px rgba(255, 255, 255, 0.7), 70px 80px 70px -30px rgba(255, 255, 255, 0.6); } 100% { box-shadow: -100px 90px 120px -10px rgba(0, 0, 0, 0.1), 0px 90px 120px -10px rgba(0, 0, 0, 0.1), 100px 90px 120px -10px rgba(0, 0, 0, 0.1); } } @keyframes stompOut { 100% { opacity: 0; transform: translateY(-100%); box-shadow: -30px 40px 0px -30px rgba(0, 0, 0, 0.1), 0px 40px 0px -30px rgba(0, 0, 0, 0.1), 30px 40px 0px -30px rgba(0, 0, 0, 0.1); } 80% { opacity: 0; transform: translateY(-100%); box-shadow: -30px 40px 0px -30px rgba(0, 0, 0, 0.1), 0px 40px 0px -30px rgba(0, 0, 0, 0.1), 30px 40px 0px -30px rgba(0, 0, 0, 0.1); } 75% { opacity: 1; transform: translateY(0px); box-shadow: -50px 60px 0px -30px rgba(0, 0, 0, 0.1), 0px 60px 0px -30px rgba(0, 0, 0, 0.1), 50px 60px 0px -30px rgba(0, 0, 0, 0.1); } 71% { box-shadow: -70px 80px 70px -30px rgba(255, 255, 255, 0.5), 0px 80px 70px -30px rgba(255, 255, 255, 0.7), 70px 80px 70px -30px rgba(255, 255, 255, 0.6); } 0% { box-shadow: -100px 90px 120px -10px rgba(0, 0, 0, 0.1), 0px 90px 120px -10px rgba(0, 0, 0, 0.1), 100px 90px 120px -10px rgba(0, 0, 0, 0.1); } } .stomp-enter, .stomp-enter-active { animation-name: stompIn; } .stomp-leave, .stomp-leave-active { animation-name: stompOut; } @keyframes swing { 20% { transform: rotate(15deg); transform-origin: top center; } 40% { transform: rotate(-10deg); transform-origin: top center; } 60% { transform: rotate(5deg); transform-origin: top center; } 80% { transform: rotate(-5deg); transform-origin: top center; } 100% { transform: rotate(0deg); transform-origin: top center; } } .swing-enter, .swing-enter-active { animation-name: swing; } .swing-leave, .swing-leave-active { animation-name: swing; } @keyframes tada { 0% { transform: scale(1); } 10%, 20% { transform: scale(0.9) rotate(-3deg); } 30%, 50%, 70%, 90% { transform: scale(1.1) rotate(3deg); } 40%, 60%, 80% { transform: scale(1.1) rotate(-3deg); } 100% { transform: scale(1) rotate(0); } } .tada-enter, .tada-enter-active { animation-name: tada; } .tada-leave, .tada-leave-active { animation-name: tada; } @keyframes tossBottomLeftIn { 0% { transform: perspective(1300px) rotate(35deg) scale(1.4) translate(-20%, 100%); animation-timing-function: ease-in-out; opacity: 0; } 100% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossBottomLeftOut { 100% { transform: perspective(1300px) rotate(35deg) scale(1.4) translate(-20%, 100%); animation-timing-function: ease-in-out; opacity: 0; } 0% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossBottomRightIn { 0% { transform: perspective(1300px) rotate(-35deg) scale(1.4) translate(20%, 100%); animation-timing-function: ease-in-out; opacity: 0; } 100% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossBottomRightOut { 100% { transform: perspective(1300px) rotate(-35deg) scale(1.4) translate(20%, 100%); animation-timing-function: ease-in-out; opacity: 0; } 0% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossTopLeftIn { 0% { transform: perspective(1300px) rotate(-35deg) scale(1.4) translate(-20%, -100%); animation-timing-function: ease-in-out; opacity: 0; } 100% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossTopLeftOut { 100% { transform: perspective(1300px) rotate(-35deg) scale(1.4) translate(-20%, -100%); animation-timing-function: ease-in-out; opacity: 0; } 0% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossTopRightIn { 0% { transform: perspective(1300px) rotate(35deg) scale(1.4) translate(20%, -100%); animation-timing-function: ease-in-out; opacity: 0; } 100% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } @keyframes tossTopRightOut { 100% { transform: perspective(1300px) rotate(35deg) scale(1.4) translate(20%, -100%); animation-timing-function: ease-in-out; opacity: 0; } 0% { transform: perspective(1300px) rotate(0deg) scale(1) translate(0, 0); opacity: 1; } } .toss-bottom-left-enter, .toss-bottom-left-enter-active { animation-name: tossBottomLeftIn; } .toss-bottom-left-leave, .toss-bottom-left-leave-active { animation-name: tossBottomLeftOut; } .toss-bottom-right-enter, .toss-bottom-right-enter-active { animation-name: tossBottomRightIn; } .toss-bottom-right-leave, .toss-bottom-right-leave-active { animation-name: tossBottomRightOut; } .toss-top-left-enter, .toss-top-left-enter-active { animation-name: tossTopLeftIn; } .toss-top-left-leave, .toss-top-left-leave-active { animation-name: tossTopLeftOut; } .toss-top-right-enter, .toss-top-right-enter-active { animation-name: tossTopRightIn; } .toss-top-right-leave, .toss-top-right-leave-active { animation-name: tossTopRightOut; } @keyframes wobble { 0% { transform: translateX(0%); } 15% { transform: translateX(-25%) rotate(-5deg); } 30% { transform: translateX(20%) rotate(3deg); } 45% { transform: translateX(-15%) rotate(-3deg); } 60% { transform: translateX(10%) rotate(2deg); } 75% { transform: translateX(-5%) rotate(-1deg); } 100% { transform: translateX(0%); } } @keyframes wobbleNorth { 0% { transform: translate(0%); } 15% { transform: translateX(-25%) translateY(25%); } 30% { transform: translateX(20%) translateY(-20%); } 45% { transform: translateX(-15%) translateY(15%); } 60% { transform: translateX(10%) translateY(-10%); } 75% { transform: translateX(-5%) translateY(5%); } 90% { transform: translateX(2%) translateY(-2%); } 100% { transform: translate(0%); } } @keyframes wobbleSkew { 16.65% { transform: skew(-16deg); } 33.3% { transform: skew(12deg); } 49.95% { transform: skew(-8deg); } 66.6% { transform: skew(6deg); } 83.25% { transform: skew(-3deg); } 100% { transform: skew(3deg); } } @keyframes wobbleWest { 0% { transform: translate(0%); } 15% { transform: translateX(-25%) translateY(-25%); } 30% { transform: translateX(20%) translateY(20%); } 45% { transform: translateX(-15%) translateY(-15%); } 60% { transform: translateX(10%) translateY(10%); } 75% { transform: translateX(-5%) translateY(-5%); } 90% { transform: translateX(2%) translateY(2%); } 100% { transform: translate(0%); } } .wobble-bottom-enter, .wobble-bottom-enter-active { animation-name: wobbleSkew; } .wobble-bottom-leave, .wobble-bottom-leave-active { animation-name: wobbleSkew; } .wobble-bottom.ng-enter, .wobble-bottom-add, .wobble-bottom.ng-hide-remove, .wobble-bottom.ng-move, .wobble-bottom-enter, .wobble-bottom-enter-active, .wobble-bottom.ng-leave, .wobble-bottom-remove, .wobble-bottom.ng-hide, .wobble-bottom-leave, .wobble-bottom-leave-active { transform-origin: 100% 0; } .wobble-north-enter, .wobble-north-enter-active { animation-name: wobbleNorth; } .wobble-north-leave, .wobble-north-leave-active { animation-name: wobbleNorth; } .wobble-skew-enter, .wobble-skew-enter-active { animation-name: wobbleSkew; } .wobble-skew-leave, .wobble-skew-leave-active { animation-name: wobbleSkew; } .wobble-top-enter, .wobble-top-enter-active { animation-name: wobbleSkew; } .wobble-top-leave, .wobble-top-leave-active { animation-name: wobbleSkew; } .wobble-top.ng-enter, .wobble-top-add, .wobble-top.ng-hide-remove, .wobble-top.ng-move, .wobble-top-enter, .wobble-top-enter-active, .wobble-top.ng-leave, .wobble-top-remove, .wobble-top.ng-hide, .wobble-top-leave, .wobble-top-leave-active { transform-origin: 100% 0; } .wobble-west-enter, .wobble-west-enter-active { animation-name: wobbleWest; } .wobble-west-leave, .wobble-west-leave-active { animation-name: wobbleWest; } .wobble-enter, .wobble-enter-active { animation-name: wobble; } .wobble-leave, .wobble-leave-active { animation-name: wobble; } .ng-animate, .rc-animate { animation-timing-function: ease-in-out; animation-fill-mode: both; transform-style: preserve-3d; perspective: 1300px; animation-duration: 0s; transition: none; animation-delay: 0; -webkit-animation-delay: 0; } .ng-animate.normal, .rc-animate.normal { animation-duration: 1s; } .ng-animate.fast, .rc-animate.fast { animation-duration: 0.7s; } .ng-animate.fastest, .rc-animate.fastest { animation-duration: 0.35s; } .ng-animate.slow, .rc-animate.slow { animation-duration: 1.2s; } .ng-animate.slowest, .rc-animate.slowest { animation-duration: 3s; } .ng-animate.ng-hide-add-active, .rc-animate[class*="-leave-active"] { visibility: visible !important; } .ng-animate.ng-enter, .rc-animate[class*="-enter"] { visibility: hidden; } .ng-animate.ng-enter.ng-enter-active, .ng-animate[class*="-remove-active"], .rc-animate[class*="-enter-active"], .rc-animate[class*="-leave-active"] { visibility: visible !important; display: block !important; } .ng-animate.ng-enter.ng-enter-active, .ng-animate.ng-enter.ng-hide-remove, .ng-animate[class*="-active"], .ng-animate[class*="-remove-active"] { visibility: visible !important; } [class*="ng-animate"].ng-hide-add, [class*="ng-animate"].ng-hide-add.ng-hide-add-active, [class*="ng-animate"][class*="-add-active"], [class*="rc-animate"][class*="-active"] { visibility: visible !important; display: block !important; } [class*="ng-animate"].disable-animation, [class*="rc-animate"].disable-animation { animation: none !important; display: none !important; visibility: hidden !important; } /****FOR ONLY ng-ruter and ui-router****/ .ui-view.ng-enter[class*="-active"], .ng-view.ng-enter[class*="-active"] { left: 0; right: 0; } .ui-view.ng-enter, .ng-view.ng-enter { animation-timing-function: ease-out; z-index: 1; position: static; /*overflow:hidden;*/ /*animation-delay:0.2s; -webkit-animation-delay:0.2s;*/ } .ng-view.ng-leave, .ng-view-remove, .ng-view.ng-hide, .ui-view.ng-leave, .ui-view-remove, .ui-view.ng-hide { position: absolute; left: 0; right: 0; bottom: 0; top: 0; z-index: 1; animation-timing-function: ease-in; opacity: 0.5; /*background-color:#fff;*/ overflow: hidden; animation-delay: 0s; -webkit-animation-delay: 0s; } .ui-view.ng-leave > *, .ui-view-remove > *, .ui-view.ng-hide > * { /*visibility:hidden;*/ } .waiting-load .ui-view.ng-enter, .waiting-load .ui-view.ng-enter-active, .waiting-load .ui-view.ng-leave, .waiting-load .ui-view.ng-leave-active { /*-webkit-animation-play-state: paused; animation-play-state: paused;*/ } .content-loaded .ui-view.ng-enter { /*-webkit-animation-play-state: running; animation-play-state: running;*/ } .xhr-active .ng-animate { /*-webkit-animation-play-state: paused; animation-play-state: paused;*/ } .ui-view.fast.ng-enter, .ng-view.fast.ng-enter { animation-delay: 0.5s; -webkit-animation-delay: 0.5s; } .ui-view.normal.ng-enter, .ng-view.normal.ng-enter { animation-delay: 0.7s; -webkit-animation-delay: 0.7s; } .ui-view.slow.ng-enter, .ng-view.slow.ng-enter { animation-delay: 0.9s; -webkit-animation-delay: 0.9s; } .ui-view.slowest.ng-enter, .ng-view.slowest.ng-enter { animation-delay: 1.9s; -webkit-animation-delay: 1.9s; }
0.791257
0.288588
body { margin:0; font-family:"Comic Sans", sans-serif; font-style: bold; } * { -webkit-user-select: none; /* Chrome/Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE10+ */ /* Rules below not implemented in browsers yet */ -o-user-select: none; user-select: none; } .hidden { visibility: hidden; display:none; } /* Control bar Styles */ .controlbutton { padding:5px; } .mute { font-size:18pt; } /* PlayHead */ .playhead { height:20px; background:blue; } /* IconVis */ .iconvis { height:20px; background:purple; } a:link { text-decoration: none; color:black; } a:visited { text-decoration: none; color:black; } a:hover { text-decoration: underline; color:black; } a:active { text-decoration: underline; color:black; } .header { width:100%; height: 80px; font-size: 36pt; box-shadow: 0px 2px 10px #BABABA; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffc170+0,ffcc8e+100 */ background: #ffc170; /* Old browsers */ background: -moz-linear-gradient(top, #ffc170 0%, #ffcc8e 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#fff)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fff 0%,#fff 100%); /* Chrome10+,Safari5.1+ #ffcc8e */ background: -o-linear-gradient(top, #ffc170 0%,#ffcc8e 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #ffc170 0%,#ffcc8e 100%); /* IE10+ */ background: linear-gradient(to bottom, #fff 0%,#fff 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffc170', endColorstr='#ffcc8e',GradientType=0 ); /* IE6-9 */ } #keyframeContainer { background-color: #0f0; } .header .menu { float:right; text-align: right; margin-right:0.5em; } .header .title { margin-left:0.5em; } .example-square { float:left; border:solid; border-width:1px; margin:10px; } .example-square.selected { border-width:3px; } .example-galley { width:10%; height:100%; float:left; } .animationoptions { margin-right:auto; margin-left: auto; } .unselectable, text { -webkit-user-select: none; /* Chrome/Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE10+ */ /* Rules below not implemented in browsers yet */ -o-user-select: none; user-select: none; }
src/css/macaron.css
body { margin:0; font-family:"Comic Sans", sans-serif; font-style: bold; } * { -webkit-user-select: none; /* Chrome/Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE10+ */ /* Rules below not implemented in browsers yet */ -o-user-select: none; user-select: none; } .hidden { visibility: hidden; display:none; } /* Control bar Styles */ .controlbutton { padding:5px; } .mute { font-size:18pt; } /* PlayHead */ .playhead { height:20px; background:blue; } /* IconVis */ .iconvis { height:20px; background:purple; } a:link { text-decoration: none; color:black; } a:visited { text-decoration: none; color:black; } a:hover { text-decoration: underline; color:black; } a:active { text-decoration: underline; color:black; } .header { width:100%; height: 80px; font-size: 36pt; box-shadow: 0px 2px 10px #BABABA; /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffc170+0,ffcc8e+100 */ background: #ffc170; /* Old browsers */ background: -moz-linear-gradient(top, #ffc170 0%, #ffcc8e 100%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fff), color-stop(100%,#fff)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #fff 0%,#fff 100%); /* Chrome10+,Safari5.1+ #ffcc8e */ background: -o-linear-gradient(top, #ffc170 0%,#ffcc8e 100%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #ffc170 0%,#ffcc8e 100%); /* IE10+ */ background: linear-gradient(to bottom, #fff 0%,#fff 100%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffc170', endColorstr='#ffcc8e',GradientType=0 ); /* IE6-9 */ } #keyframeContainer { background-color: #0f0; } .header .menu { float:right; text-align: right; margin-right:0.5em; } .header .title { margin-left:0.5em; } .example-square { float:left; border:solid; border-width:1px; margin:10px; } .example-square.selected { border-width:3px; } .example-galley { width:10%; height:100%; float:left; } .animationoptions { margin-right:auto; margin-left: auto; } .unselectable, text { -webkit-user-select: none; /* Chrome/Safari */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE10+ */ /* Rules below not implemented in browsers yet */ -o-user-select: none; user-select: none; }
0.357568
0.052231
div.espalier-table { font-size: .8em; position: relative; } div.espalier-table section.applied-filters .alert { float: left; margin: 0; margin-right: .75em; } div.espalier-table section.applied-filters .alert span { line-height: 2.25em; } div.espalier-table section.applied-filters .alert button { display: inline-block; margin-left: 1em; } div.espalier-table .dropdown-menu { left: auto; right: 0px; } .espalier-filter { position: absolute; right: 0; background: white; border-radius: .15em; border-top-right-radius: 0; padding: 0 0 1em; border: 1px solid #ccc; box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075); z-index: 999; } td.buttons-cell, th.buttons-cell { text-align: right; } td.buttons-cell button, th.buttons-cell button { display: inline; margin: 0 9px 0 0; } td.links-cell p { margin: 0; padding: 0; } tbody > tr:hover { background: lightgoldenrodyellow !important; } th.sortable { cursor: pointer; position: relative; } th.sortable > div { position: relative; } th.sortable > div > span { padding-right: .5em; } div.espalier-table button.expand-caret, div.espalier-table a.close-button, div.espalier-table button.close-button { display: block; width: 2em; height: 2em; background-repeat: no-repeat; background-position: center; background-size: 14px 14px; } th.sortable > div > span::after { content: ''; display: block; position: absolute; right: 0; bottom: 0; width: 1.35em; height: 1.35em; background-repeat: no-repeat; background-position: center; background-size: contain; } thead th.filter-button a i::after, thead th.close-filter-button a i::after { content: ''; display: block; width: 1.35em; height: 1.35em; background-repeat: no-repeat; background-position: center; background-size: contain; } thead th.filter-button, thead th.close-filter-button { width: 1em; } thead th.filter-button a, thead th.close-filter-button a { cursor: pointer; display: block; width: 1.35em; height: 1.35em; } th.sortable.sort-asc, th.sortable.sort-desc { background: #cbcbcb; } td.espalier-nav { padding-left: 0px; } td.espalier-nav nav { float: left; margin: 0 1em 0 0; } td.espalier-nav div.text-right { line-height: 2.75em; } td div.number-cell, td div.currency-cell, td div.time-integer { text-align: right; }
src/grid/espalier.css
div.espalier-table { font-size: .8em; position: relative; } div.espalier-table section.applied-filters .alert { float: left; margin: 0; margin-right: .75em; } div.espalier-table section.applied-filters .alert span { line-height: 2.25em; } div.espalier-table section.applied-filters .alert button { display: inline-block; margin-left: 1em; } div.espalier-table .dropdown-menu { left: auto; right: 0px; } .espalier-filter { position: absolute; right: 0; background: white; border-radius: .15em; border-top-right-radius: 0; padding: 0 0 1em; border: 1px solid #ccc; box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075); z-index: 999; } td.buttons-cell, th.buttons-cell { text-align: right; } td.buttons-cell button, th.buttons-cell button { display: inline; margin: 0 9px 0 0; } td.links-cell p { margin: 0; padding: 0; } tbody > tr:hover { background: lightgoldenrodyellow !important; } th.sortable { cursor: pointer; position: relative; } th.sortable > div { position: relative; } th.sortable > div > span { padding-right: .5em; } div.espalier-table button.expand-caret, div.espalier-table a.close-button, div.espalier-table button.close-button { display: block; width: 2em; height: 2em; background-repeat: no-repeat; background-position: center; background-size: 14px 14px; } th.sortable > div > span::after { content: ''; display: block; position: absolute; right: 0; bottom: 0; width: 1.35em; height: 1.35em; background-repeat: no-repeat; background-position: center; background-size: contain; } thead th.filter-button a i::after, thead th.close-filter-button a i::after { content: ''; display: block; width: 1.35em; height: 1.35em; background-repeat: no-repeat; background-position: center; background-size: contain; } thead th.filter-button, thead th.close-filter-button { width: 1em; } thead th.filter-button a, thead th.close-filter-button a { cursor: pointer; display: block; width: 1.35em; height: 1.35em; } th.sortable.sort-asc, th.sortable.sort-desc { background: #cbcbcb; } td.espalier-nav { padding-left: 0px; } td.espalier-nav nav { float: left; margin: 0 1em 0 0; } td.espalier-nav div.text-right { line-height: 2.75em; } td div.number-cell, td div.currency-cell, td div.time-integer { text-align: right; }
0.52975
0.184933
* { margin: 0rem; padding: 0rem; } /* ===================================================================== */ /* ===============================Font/Text============================= */ @font-face { font-family: "Poppins-Regular"; src: url("../Fonts/Poppins/Poppins-Regular.ttf") format("truetype"); } @font-face { font-family: "Poppins-Medium"; src: url("../Fonts/Poppins/Poppins-Medium.ttf") format("truetype"); } /* ===================================================================== */ /* ===============================Background============================ */ body { margin: 0rem; padding: 0rem; border: 0rem; width: 100%; } .first-background { background-color: #92A8D1; } /* ===================================================================== */ /* ===============================Grid================================== */ /* ===================================================================== */ /* =============================content================================= */ .content { display: grid; grid-template-columns: repeat(12, 1fr); justify-items: center; align-items: center; margin-bottom: 20rem; width: 100%; overflow: hidden; margin: auto; } /* ===================================================================== */ /* =============================row-1=================================== */ .row-1 { display: grid; grid-row: 1/2; grid-column: 1/-1; position: relative; height: 50rem; } span.form { width: 25rem; height: 30rem; background-color: aliceblue; position: absolute; top: 0; left: 0; transform: translate(-50%, 30%); border-radius: 0.5rem; background: #34568B; } .form h1 { font-family: "Poppins-Regular"; font-size: 1.75rem; color: #ffffff; text-align: center; padding-top: 1rem; margin-top: 1rem; } p { display: inline-block; font-family: "Poppins-Regular"; margin: 1rem 1rem; margin-left: 15%; color: #ffffff; } .register-link { font-family: "Poppins-Regular"; color: #92A8D1; text-decoration: none; } input::-webkit-input-placeholder { font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff8e; } input:-moz-placeholder { font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff8e; } ::-ms-placeholder { font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff8e; } ::placeholder { font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff8e; } input[type=email], input[type=password] { width: 80%; padding: 12px 0px; margin: 0rem 10%; background: transparent; border: #ffffff; border-top-style: hidden; border-right-style: hidden; border-left-style: hidden; border-bottom-style: groove; font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff; } input[type=email] { margin-top: 2rem; } input[type=password] { margin-top: 2rem; margin-bottom: 0.5rem; } input[type=email]:focus, input[type=password]:focus { outline: none; outline-style: none; box-shadow: none; font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff; } input[type=submit] { width: 80%; padding: 12px 20px; margin: 2rem 10%; margin-bottom: 0.5rem; box-sizing: border-box; font-family: "Poppins-Medium"; font-size: 1.5rem; color: #ffffff; background: #92A8D1; border: none; cursor: pointer; } input[type=submit]:focus { outline: none; outline-style: none; box-shadow: none; width: 80%; padding: 12px 20px; margin: 2rem 10%; margin-bottom: 0.5rem; font-family: "Poppins-Medium"; font-size: 1.5rem; color: #ffffff; background: #92A8D1; border: none; } /* ===================================================================== */ /* =============================animation=============================== */ span.email-span, .password-span { position: relative; } h3.email-text, h3.password-text { display: inline-block; margin: -0.5rem 10%; position: absolute; top: 0; left: 0; } .text-animation-0, .text-animation-1, .text-animation-2, .text-animation-3, .text-animation-4, .text-animation-5, .text-animation-6, .text-animation-7 { padding: 0rem; margin-left: 0rem; margin-right: 0rem; font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff8e; opacity: 0; } p.text-animation-00, p.text-animation-11, p.text-animation-22, p.text-animation-33, p.text-animation-44, p.text-animation-55, p.text-animation-66, p.text-animation-77 { animation: text-animation-active 0.5s forwards; opacity: 1; } .password-animation-0, .password-animation-1, .password-animation-2, .password-animation-3, .password-animation-4, .password-animation-5, .password-animation-6, .password-animation-7, .password-animation-8, .password-animation-9, .password-animation-10 { padding: 0rem; margin-left: 0rem; margin-right: 0rem; font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff8e; opacity: 0; } p.password-animation-00, p.password-animation-11, p.password-animation-22, p.password-animation-33, p.password-animation-44, p.password-animation-55, p.password-animation-66, p.password-animation-77, p.password-animation-88, p.password-animation-99, p.password-animation-1010 { animation: text-animation-active 0.5s forwards; opacity: 1; } @keyframes text-animation-active { 0% { transform: translateY(3rem); } 50% { transform: translateY(0rem); } 100% { transform: translateY(1rem); } } @media only screen and (max-device-width: 1024px) and (orientation: landscape) { .row-1 { height: 100vw; } span.form { height: 30rem; top: 0; left: 0; transform: translate(-50%, 5%); } .form h1 { margin-top: 0rem; } }
Css/style.css
* { margin: 0rem; padding: 0rem; } /* ===================================================================== */ /* ===============================Font/Text============================= */ @font-face { font-family: "Poppins-Regular"; src: url("../Fonts/Poppins/Poppins-Regular.ttf") format("truetype"); } @font-face { font-family: "Poppins-Medium"; src: url("../Fonts/Poppins/Poppins-Medium.ttf") format("truetype"); } /* ===================================================================== */ /* ===============================Background============================ */ body { margin: 0rem; padding: 0rem; border: 0rem; width: 100%; } .first-background { background-color: #92A8D1; } /* ===================================================================== */ /* ===============================Grid================================== */ /* ===================================================================== */ /* =============================content================================= */ .content { display: grid; grid-template-columns: repeat(12, 1fr); justify-items: center; align-items: center; margin-bottom: 20rem; width: 100%; overflow: hidden; margin: auto; } /* ===================================================================== */ /* =============================row-1=================================== */ .row-1 { display: grid; grid-row: 1/2; grid-column: 1/-1; position: relative; height: 50rem; } span.form { width: 25rem; height: 30rem; background-color: aliceblue; position: absolute; top: 0; left: 0; transform: translate(-50%, 30%); border-radius: 0.5rem; background: #34568B; } .form h1 { font-family: "Poppins-Regular"; font-size: 1.75rem; color: #ffffff; text-align: center; padding-top: 1rem; margin-top: 1rem; } p { display: inline-block; font-family: "Poppins-Regular"; margin: 1rem 1rem; margin-left: 15%; color: #ffffff; } .register-link { font-family: "Poppins-Regular"; color: #92A8D1; text-decoration: none; } input::-webkit-input-placeholder { font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff8e; } input:-moz-placeholder { font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff8e; } ::-ms-placeholder { font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff8e; } ::placeholder { font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff8e; } input[type=email], input[type=password] { width: 80%; padding: 12px 0px; margin: 0rem 10%; background: transparent; border: #ffffff; border-top-style: hidden; border-right-style: hidden; border-left-style: hidden; border-bottom-style: groove; font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff; } input[type=email] { margin-top: 2rem; } input[type=password] { margin-top: 2rem; margin-bottom: 0.5rem; } input[type=email]:focus, input[type=password]:focus { outline: none; outline-style: none; box-shadow: none; font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff; } input[type=submit] { width: 80%; padding: 12px 20px; margin: 2rem 10%; margin-bottom: 0.5rem; box-sizing: border-box; font-family: "Poppins-Medium"; font-size: 1.5rem; color: #ffffff; background: #92A8D1; border: none; cursor: pointer; } input[type=submit]:focus { outline: none; outline-style: none; box-shadow: none; width: 80%; padding: 12px 20px; margin: 2rem 10%; margin-bottom: 0.5rem; font-family: "Poppins-Medium"; font-size: 1.5rem; color: #ffffff; background: #92A8D1; border: none; } /* ===================================================================== */ /* =============================animation=============================== */ span.email-span, .password-span { position: relative; } h3.email-text, h3.password-text { display: inline-block; margin: -0.5rem 10%; position: absolute; top: 0; left: 0; } .text-animation-0, .text-animation-1, .text-animation-2, .text-animation-3, .text-animation-4, .text-animation-5, .text-animation-6, .text-animation-7 { padding: 0rem; margin-left: 0rem; margin-right: 0rem; font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff8e; opacity: 0; } p.text-animation-00, p.text-animation-11, p.text-animation-22, p.text-animation-33, p.text-animation-44, p.text-animation-55, p.text-animation-66, p.text-animation-77 { animation: text-animation-active 0.5s forwards; opacity: 1; } .password-animation-0, .password-animation-1, .password-animation-2, .password-animation-3, .password-animation-4, .password-animation-5, .password-animation-6, .password-animation-7, .password-animation-8, .password-animation-9, .password-animation-10 { padding: 0rem; margin-left: 0rem; margin-right: 0rem; font-family: "Poppins-Regular"; font-size: 1rem; color: #ffffff8e; opacity: 0; } p.password-animation-00, p.password-animation-11, p.password-animation-22, p.password-animation-33, p.password-animation-44, p.password-animation-55, p.password-animation-66, p.password-animation-77, p.password-animation-88, p.password-animation-99, p.password-animation-1010 { animation: text-animation-active 0.5s forwards; opacity: 1; } @keyframes text-animation-active { 0% { transform: translateY(3rem); } 50% { transform: translateY(0rem); } 100% { transform: translateY(1rem); } } @media only screen and (max-device-width: 1024px) and (orientation: landscape) { .row-1 { height: 100vw; } span.form { height: 30rem; top: 0; left: 0; transform: translate(-50%, 5%); } .form h1 { margin-top: 0rem; } }
0.399343
0.055362
body { font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; background-color: #f1f1f1; font-size: 16px; } #reports-list, #params-list { margin-left: 20px; padding: 20px 0; } #reports-list li a, header p small a { color: var(--secondary-bg); transition: all linear 0.2s; cursor: pointer; } #reports-list li a:hover, header p small a:hover { color: var(--primary-bg); } #reports-list li, #params-list li { font-size: 14px; } #params-list li, #reports-list li a { display: flex; justify-content: flex-start; align-items: center; } #reports-list li svg, #params-list li svg { color: inherit; width: 16px; height: 16px; margin-right: 10px; } #reports-list li svg path, #params-list li svg path { fill: currentColor; } #reports-list li:not(:first-of-type), #params-list li:not(:first-of-type) { margin-top: 8px; } header { display: flex; width: 100%; justify-content: space-between; align-items: center; padding: 10px 20px; background-color: #3c3c3c; color: #fff; flex-wrap: wrap; } header img { height: 100px; } header p { display: flex; justify-content: center; align-items: center; flex-direction: column; text-align: center; font-size: 18px; padding-right: 8%; } header p small { margin-top: 10px; color: #a1a1a1; } main, #params { width: 90%; max-width: 800px; margin: 40px auto; background-color: #fff; border-radius: 6px; box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1); padding: 20px; } #title { background-color: var(--primary-bg); } #params > p { background-color: var(--secondary-bg); } #params-list li span { margin-left: 5px; color: var(--primary-bg); font-weight: bold; } #title, #params > p { width: 100%; padding: 5px 10px; color: var(--secondary-color); font-weight: bold; } @media only screen and (max-width: 780px) { header img { height: 60px; } header img:first-child { order: 1; } header img:last-child { order: 2; } header p { padding: 0; margin: 20px 0; order: 3; } }
public/css/front.css
body { font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; background-color: #f1f1f1; font-size: 16px; } #reports-list, #params-list { margin-left: 20px; padding: 20px 0; } #reports-list li a, header p small a { color: var(--secondary-bg); transition: all linear 0.2s; cursor: pointer; } #reports-list li a:hover, header p small a:hover { color: var(--primary-bg); } #reports-list li, #params-list li { font-size: 14px; } #params-list li, #reports-list li a { display: flex; justify-content: flex-start; align-items: center; } #reports-list li svg, #params-list li svg { color: inherit; width: 16px; height: 16px; margin-right: 10px; } #reports-list li svg path, #params-list li svg path { fill: currentColor; } #reports-list li:not(:first-of-type), #params-list li:not(:first-of-type) { margin-top: 8px; } header { display: flex; width: 100%; justify-content: space-between; align-items: center; padding: 10px 20px; background-color: #3c3c3c; color: #fff; flex-wrap: wrap; } header img { height: 100px; } header p { display: flex; justify-content: center; align-items: center; flex-direction: column; text-align: center; font-size: 18px; padding-right: 8%; } header p small { margin-top: 10px; color: #a1a1a1; } main, #params { width: 90%; max-width: 800px; margin: 40px auto; background-color: #fff; border-radius: 6px; box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.1); padding: 20px; } #title { background-color: var(--primary-bg); } #params > p { background-color: var(--secondary-bg); } #params-list li span { margin-left: 5px; color: var(--primary-bg); font-weight: bold; } #title, #params > p { width: 100%; padding: 5px 10px; color: var(--secondary-color); font-weight: bold; } @media only screen and (max-width: 780px) { header img { height: 60px; } header img:first-child { order: 1; } header img:last-child { order: 2; } header p { padding: 0; margin: 20px 0; order: 3; } }
0.533884
0.090293
.create-area { position: absolute; display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; width: 100%; color: white; } /* TITLE */ .create-area .create-title { position: relative; bottom: 80px; font-size: 30px; letter-spacing: 4px; } /* CHECKBOX */ .create-area .perfil-choice { margin-bottom: 20px; } .create-area .perfil-choice .mestre { display: flex; letter-spacing: 3px; position: relative; right: 48px; bottom: 15px; flex-direction: row; align-items: center; } .create-area .perfil-choice .mestre input { border: 1px solid #FF0084; outline: none; border-radius: 5px; -webkit-appearance: none; width: 20px; height: 20px; cursor: pointer; background-color: #1d1d22; } .create-area .perfil-choice .personagem { display: flex; letter-spacing: 3px; position: relative; right: 48px; bottom: 10px; flex-direction: row; align-items: center; } .create-area .perfil-choice .personagem input { border: 1px solid #FF0084; outline: none; border-radius: 5px; -webkit-appearance: none; width: 20px; height: 20px; cursor: pointer; background-color: #1d1d22; } /* EMAIL */ .create-area .email-box { position: relative; border: 2px solid #FF0084; border-radius: 5px; bottom: 20px; } .create-area .email-box h3 { position: absolute; bottom: 35px; left: 15px; font-size: 13px; } .create-area .email-box input { color: #fff; border-radius: 3px; outline: none; border: none; background: #1d1d22; height: 60px; width: 250px; padding-top: 5px; padding-left: 15px; } /* PASSWORD */ .create-area .password-box { position: relative; border: 2px solid #FF0084; border-radius: 5px; bottom: 20px; margin-top: 15px; } .create-area .password-box h3 { position: absolute; bottom: 35px; left: 15px; font-size: 13px; } .create-area .password-box input { color: #fff; border-radius: 3px; outline: none; border: none; background: #1d1d22; height: 60px; width: 250px; padding-top: 5px; padding-left: 15px; } /* PASSWORD CONFIRM */ .create-area .password-confirm-box { position: relative; border: 2px solid #FF0084; border-radius: 5px; bottom: 20px; margin-top: 15px; } .create-area .password-confirm-box h3 { position: absolute; bottom: 35px; left: 15px; font-size: 13px; } .create-area .password-confirm-box input { color: #fff; border-radius: 3px; outline: none; border: none; background: #1d1d22; height: 60px; width: 250px; padding-top: 5px; padding-left: 15px; } /* CREATE ACC */ .create-button-acc { text-align: center; cursor: pointer; width: 250px; height: 50px; border-radius: 5px; background: #FF0084; } .create-button-acc span { color: #fff; position: relative; top: 15px; }
public/css/create-acc.css
.create-area { position: absolute; display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; width: 100%; color: white; } /* TITLE */ .create-area .create-title { position: relative; bottom: 80px; font-size: 30px; letter-spacing: 4px; } /* CHECKBOX */ .create-area .perfil-choice { margin-bottom: 20px; } .create-area .perfil-choice .mestre { display: flex; letter-spacing: 3px; position: relative; right: 48px; bottom: 15px; flex-direction: row; align-items: center; } .create-area .perfil-choice .mestre input { border: 1px solid #FF0084; outline: none; border-radius: 5px; -webkit-appearance: none; width: 20px; height: 20px; cursor: pointer; background-color: #1d1d22; } .create-area .perfil-choice .personagem { display: flex; letter-spacing: 3px; position: relative; right: 48px; bottom: 10px; flex-direction: row; align-items: center; } .create-area .perfil-choice .personagem input { border: 1px solid #FF0084; outline: none; border-radius: 5px; -webkit-appearance: none; width: 20px; height: 20px; cursor: pointer; background-color: #1d1d22; } /* EMAIL */ .create-area .email-box { position: relative; border: 2px solid #FF0084; border-radius: 5px; bottom: 20px; } .create-area .email-box h3 { position: absolute; bottom: 35px; left: 15px; font-size: 13px; } .create-area .email-box input { color: #fff; border-radius: 3px; outline: none; border: none; background: #1d1d22; height: 60px; width: 250px; padding-top: 5px; padding-left: 15px; } /* PASSWORD */ .create-area .password-box { position: relative; border: 2px solid #FF0084; border-radius: 5px; bottom: 20px; margin-top: 15px; } .create-area .password-box h3 { position: absolute; bottom: 35px; left: 15px; font-size: 13px; } .create-area .password-box input { color: #fff; border-radius: 3px; outline: none; border: none; background: #1d1d22; height: 60px; width: 250px; padding-top: 5px; padding-left: 15px; } /* PASSWORD CONFIRM */ .create-area .password-confirm-box { position: relative; border: 2px solid #FF0084; border-radius: 5px; bottom: 20px; margin-top: 15px; } .create-area .password-confirm-box h3 { position: absolute; bottom: 35px; left: 15px; font-size: 13px; } .create-area .password-confirm-box input { color: #fff; border-radius: 3px; outline: none; border: none; background: #1d1d22; height: 60px; width: 250px; padding-top: 5px; padding-left: 15px; } /* CREATE ACC */ .create-button-acc { text-align: center; cursor: pointer; width: 250px; height: 50px; border-radius: 5px; background: #FF0084; } .create-button-acc span { color: #fff; position: relative; top: 15px; }
0.391522
0.079389
html, body { background-color: #ffffff; font-size: 13px; color: rgb(76,76,76); width: 100%; padding: 0; margin-left: 0; margin-right: 0; font-family: 'Lato', sans-serif !important; font-weight: 500; max-height: 1290px; } img { -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; user-select: none; -webkit-user-drag: none; user-drag: none; } a, a:hover, a:active, a:focus { text-decoration: none; outline: none; } .btn{ border-radius:0px; } input[placeholder],select{ color: #bcbcbc !important; } a, button, a span { -webkit-transition: 0.2s ease-in-out; -o-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out; } .navbar-nav li a:hover{ border-top: 3px solid #bebbb6 !important; } .navbar-brand{ padding: 10px 15px !important; } .navbar-nav li a:not(.fa){ font-family: "YesevaOne_Regular" !important; font-weight: 500px !important; } .navbar-nav li a:focus{ color: #fff !important; } .navbar-nav li .fa{ color: #cc9900 !important; padding: 15px 5px !important; } /* Home */ .home-content.sections h1{ color: white; text-align: center; font-size: 80px; font-weight: 600; font-family: 'YesevaOne_Regular'; line-height: 90px; } .text-center{ padding: 20px 0px; } .btn-black:hover,.btn-white{ background: rgba(255,255,255,0.4); color: white; border: 1px solid white; } .btn-white:hover,.btn-black { background: rgba(1,1,1,0.4); color: white; border: 1px solid black; } .text-center button{ /*padding: 8px 20px;*/ text-transform: uppercase; margin: 0px 15px; padding: 10px 30px; } /*About*/ .sections.lightbg{ background-image: url('../images/my_images/bg_section2.png'); background-repeat: no-repeat; padding: 50px 110px; background-size: 100% 100%; } .title-about, .title-menu, .title-reservation{ font-family: 'YesevaOne_Regular'; font-size: 36px; color: #cc9900; font-weight: 600; } .divider2{ text-align: center; margin: 15px; } .about-text{ font-size:14px; /*font-family: "Lato";*/ padding: 0px 23px; } .img-cook{ padding:30px 30px; margin-left: 80px; } /*Ingredeints*/ section#ingredients{ background-image: url("../images/my_images/bg_section3.png"); background-repeat: no-repeat; background-size: 100% 100%; } .content-right{ background-color: rgba(1,1,1,0.6); text-align: center; padding: 70px; } .content-right p{ color: white; font-size: 14px; } .content-right .devider{ margin: 20px 0px; } .title-ingredients{ color: white; font-family: "YesevaOne_Regular"; font-size: 36px; font-weight: 600; } .ingre-item{ text-align: center; margin-top: 70px; } .ingre-item .col-sm-4{ /*padding:0px 20px;*/ } .ingredients_images{ width: 90px; height: 90px; float: left; border: 5px solid rgba(255,255,255,.1); position: relative; border-radius: 50%; } .ingredients_images img{ width: 100%; height: 100%; } /*Menu*/ #menu{ background-image: url("../images/my_images/bg_section4.png"); background-repeat: no-repeat; background-size: 100% 100%; } #menu .container{ padding: 0px 50px !important; } .menu-left{ padding-right: 50px; } .menu-right{ padding-left: 50px; } fieldset { border: 1px solid #e4dcbd; } fieldset legend{ border: 1px solid #e4dcbd; padding: 0.1em 0.8em; float: right; margin-top: -25px; margin-right: -1px; width: 60px; height: 25px; font-size: 13px; background: #d7bd73; vertical-align: middle; color: #f8fafa; } .text-details{ text-align: left; padding-top: 7px; text-align: left; font-size: 13px; } .header-details{ overflow: hidden; position: relative; color: #cc9900; font-weight:bold; width: 100%; padding: 5px 0px; font-size: 16px; font-family: 'YesevaOne_Regular'; border-bottom: 1px solid #e4dcbd; } .header-details a{ color: #cc9900; } .box-item{ padding-bottom: 30px; } .details-menu li{ margin: 25px 10px; } /*reviews*/ #reviews{ background-image: url("../images/my_images/bg_section5.png"); background-repeat: no-repeat; padding: 60px; background-size: 100% 100%; } .content-center{ background-color: rgba(1,1,1,0.6); text-align: center; padding: 40px 20px; } .content-center p{ color: white; padding: 10px 0px; font-family: "YesevaOne_Regular"; margin-right: 50px; font-size: 16px; line-height: 150%; } .title-review{ color: white; font-family: "YesevaOne_Regular"; font-size: 36px; font-weight: 600; } .content-center .devider{ margin: 10px 0px; } .quote{ font-family: Georgia, serif; color: #9b9c99; font-size: 50px; font-weight: bold; float: left; margin:0px 15px; } /*Reversation*/ .form-resvation{ padding: 0px 20px; } .form-group label{ color: #cca747; } .form-group{ font-family: sans-serif; text-align-last: left; font-size: 14px; margin: 15px 0px !important; } .form-group input,select{ font-size: 14px !important; border-radius: 0px !important; } input:focus, select:focus{ border-color: #cc9900 !important; } #datepicker{ background-color: white; background-image: url('../images/my_images/calendar.png'); background-repeat: no-repeat; background-position: right; background-origin: content-box; padding-right:10px; } .res-date{ height: 35px; } .res-btn{ background-color: #c9a131; border-color: #c9a131; height: 35px; width: 190px; padding:0px 0px !important; margin-top: 20px !important; color: white; text-transform: none !important; } /*Footer*/ #footer h2 { font-family: 'YesevaOne_Regular'; font-weight: 600; } .footer-devider{ margin: 20px 0px; } #footer p{ font-size: 16px; /*font-family: "OpenSans";*/ } .footer-icons li{ display: inline-block; margin: 20px 3px; } .footer-icons li a{ color: white; } .footer-icons{ text-align: center; /*margin-top: 40px;*/ }
public/css/page.css
html, body { background-color: #ffffff; font-size: 13px; color: rgb(76,76,76); width: 100%; padding: 0; margin-left: 0; margin-right: 0; font-family: 'Lato', sans-serif !important; font-weight: 500; max-height: 1290px; } img { -moz-user-select: none; -webkit-user-select: none; -ms-user-select: none; user-select: none; -webkit-user-drag: none; user-drag: none; } a, a:hover, a:active, a:focus { text-decoration: none; outline: none; } .btn{ border-radius:0px; } input[placeholder],select{ color: #bcbcbc !important; } a, button, a span { -webkit-transition: 0.2s ease-in-out; -o-transition: 0.2s ease-in-out; transition: 0.2s ease-in-out; } .navbar-nav li a:hover{ border-top: 3px solid #bebbb6 !important; } .navbar-brand{ padding: 10px 15px !important; } .navbar-nav li a:not(.fa){ font-family: "YesevaOne_Regular" !important; font-weight: 500px !important; } .navbar-nav li a:focus{ color: #fff !important; } .navbar-nav li .fa{ color: #cc9900 !important; padding: 15px 5px !important; } /* Home */ .home-content.sections h1{ color: white; text-align: center; font-size: 80px; font-weight: 600; font-family: 'YesevaOne_Regular'; line-height: 90px; } .text-center{ padding: 20px 0px; } .btn-black:hover,.btn-white{ background: rgba(255,255,255,0.4); color: white; border: 1px solid white; } .btn-white:hover,.btn-black { background: rgba(1,1,1,0.4); color: white; border: 1px solid black; } .text-center button{ /*padding: 8px 20px;*/ text-transform: uppercase; margin: 0px 15px; padding: 10px 30px; } /*About*/ .sections.lightbg{ background-image: url('../images/my_images/bg_section2.png'); background-repeat: no-repeat; padding: 50px 110px; background-size: 100% 100%; } .title-about, .title-menu, .title-reservation{ font-family: 'YesevaOne_Regular'; font-size: 36px; color: #cc9900; font-weight: 600; } .divider2{ text-align: center; margin: 15px; } .about-text{ font-size:14px; /*font-family: "Lato";*/ padding: 0px 23px; } .img-cook{ padding:30px 30px; margin-left: 80px; } /*Ingredeints*/ section#ingredients{ background-image: url("../images/my_images/bg_section3.png"); background-repeat: no-repeat; background-size: 100% 100%; } .content-right{ background-color: rgba(1,1,1,0.6); text-align: center; padding: 70px; } .content-right p{ color: white; font-size: 14px; } .content-right .devider{ margin: 20px 0px; } .title-ingredients{ color: white; font-family: "YesevaOne_Regular"; font-size: 36px; font-weight: 600; } .ingre-item{ text-align: center; margin-top: 70px; } .ingre-item .col-sm-4{ /*padding:0px 20px;*/ } .ingredients_images{ width: 90px; height: 90px; float: left; border: 5px solid rgba(255,255,255,.1); position: relative; border-radius: 50%; } .ingredients_images img{ width: 100%; height: 100%; } /*Menu*/ #menu{ background-image: url("../images/my_images/bg_section4.png"); background-repeat: no-repeat; background-size: 100% 100%; } #menu .container{ padding: 0px 50px !important; } .menu-left{ padding-right: 50px; } .menu-right{ padding-left: 50px; } fieldset { border: 1px solid #e4dcbd; } fieldset legend{ border: 1px solid #e4dcbd; padding: 0.1em 0.8em; float: right; margin-top: -25px; margin-right: -1px; width: 60px; height: 25px; font-size: 13px; background: #d7bd73; vertical-align: middle; color: #f8fafa; } .text-details{ text-align: left; padding-top: 7px; text-align: left; font-size: 13px; } .header-details{ overflow: hidden; position: relative; color: #cc9900; font-weight:bold; width: 100%; padding: 5px 0px; font-size: 16px; font-family: 'YesevaOne_Regular'; border-bottom: 1px solid #e4dcbd; } .header-details a{ color: #cc9900; } .box-item{ padding-bottom: 30px; } .details-menu li{ margin: 25px 10px; } /*reviews*/ #reviews{ background-image: url("../images/my_images/bg_section5.png"); background-repeat: no-repeat; padding: 60px; background-size: 100% 100%; } .content-center{ background-color: rgba(1,1,1,0.6); text-align: center; padding: 40px 20px; } .content-center p{ color: white; padding: 10px 0px; font-family: "YesevaOne_Regular"; margin-right: 50px; font-size: 16px; line-height: 150%; } .title-review{ color: white; font-family: "YesevaOne_Regular"; font-size: 36px; font-weight: 600; } .content-center .devider{ margin: 10px 0px; } .quote{ font-family: Georgia, serif; color: #9b9c99; font-size: 50px; font-weight: bold; float: left; margin:0px 15px; } /*Reversation*/ .form-resvation{ padding: 0px 20px; } .form-group label{ color: #cca747; } .form-group{ font-family: sans-serif; text-align-last: left; font-size: 14px; margin: 15px 0px !important; } .form-group input,select{ font-size: 14px !important; border-radius: 0px !important; } input:focus, select:focus{ border-color: #cc9900 !important; } #datepicker{ background-color: white; background-image: url('../images/my_images/calendar.png'); background-repeat: no-repeat; background-position: right; background-origin: content-box; padding-right:10px; } .res-date{ height: 35px; } .res-btn{ background-color: #c9a131; border-color: #c9a131; height: 35px; width: 190px; padding:0px 0px !important; margin-top: 20px !important; color: white; text-transform: none !important; } /*Footer*/ #footer h2 { font-family: 'YesevaOne_Regular'; font-weight: 600; } .footer-devider{ margin: 20px 0px; } #footer p{ font-size: 16px; /*font-family: "OpenSans";*/ } .footer-icons li{ display: inline-block; margin: 20px 3px; } .footer-icons li a{ color: white; } .footer-icons{ text-align: center; /*margin-top: 40px;*/ }
0.221182
0.059428
* { box-sizing: border-box; } .ant-row { margin: 0; } .solved { color: #30ec30; border-radius: 10px; height: 90px; text-align: center; padding-top: 10px; background: linear-gradient(180deg, #030321, #268c8c); width: 20rem; min-width: fit-content; box-shadow: 2px 2px 2px 3px black; overflow: auto; } .wrong { background: linear-gradient(180deg, #030321, #268c8c); color: white; border-radius: 10px; height: 90px; width: 19rem; text-align: center; padding-top: 10px; box-shadow: 2px 2px 2px 3px black; min-width: fit-content; overflow: auto; } .upsolved { background: linear-gradient(180deg, #030321, #268c8c); color: tomato; border-radius: 10px; height: 90px; text-align: center; width: 20rem; padding-top: 10px; box-shadow: 2px 2px 2px 3px black; border-left: 2px solid lightskyblue; min-width: fit-content; overflow: auto; } .contestName { font-weight: 900; box-shadow: 2px 2px 2px 3px black; font-size: larger; border-radius: 10px; background-color: #dcdcc5; height: 90px; text-align: center; padding-top: 10px; margin-left: 1.2rem; color: white; display: flex; justify-content: center; width: 18rem; align-items: center; overflow: auto; z-index: 3; } .not_attempted { background: linear-gradient(180deg, #030321, #268c8c); width: 20rem; color: black; box-shadow: 2px 2px 2px 3px black; border-radius: 10px; height: 90px; text-align: center; padding-top: 10px; min-width: fit-content; overflow: auto; } .contestRow { height: 90px; margin: 1rem 0; border-radius: 10px; } .tags { background: rgb(126, 122, 8); background: linear-gradient( 0deg, rgba(126, 122, 8, 1) 0%, rgba(253, 208, 45, 1) 91% ); border: 1px solid rgb(39, 38, 38); border-radius: 5px; margin-left: 8px; } .TagImage { width: 25px; height: 15px; float: right; background: none; margin-top: 14px; } Col { border-radius: 10px; } .heads { text-align: center; } .flags { margin: auto; display: flex; justify-content: space-around; } .virtualPracticeToggle { float: right; border-radius: 10px; color: rgb(255, 250, 250); background-color: rgb(0, 83, 161); padding: 8px; } .box { width: 20%; margin: 0 auto; background: rgba(255, 255, 255, 0.2); padding: 5px; border-radius: 20px/50px; background-clip: padding-box; text-align: center; } .button { font-size: 0.8rem; padding: 5px; color: #fff; border: 2px solid #06d85f; border-radius: 20px/50px; text-decoration: none; cursor: pointer; transition: all 0.3s ease-out; } .button:hover { background: #06d85f; } .overlay { position: fixed; top: 0; bottom: 0; left: 0; right: 0; background: rgba(3, 3, 3, 0.7); transition: opacity 500ms; visibility: hidden; opacity: 0; } .overlay:target { visibility: visible; opacity: 1; } .btnUpdate { float: right; border-radius: 35px; } .popover { margin: 2px auto; padding: 2px; background: #fff; border-radius: 5px; width: 20%; position: relative; transition: all 2s ease-in-out; background-color: beige; } .popover h2 { margin-top: 0; color: #333; font-family: Tahoma, Arial, sans-serif; } .popover .close { position: absolute; top: 2px; right: 30px; transition: all 200ms; font-size: 10px; font-weight: bold; text-decoration: none; color: #333; } .popup .close:hover { color: #06d85f; } .popup .content { max-height: 10%; overflow: auto; } @media screen and (max-width: 700px) { .box { width: 40%; } .popup { width: 40%; } } .loading-animation { display: block; margin: auto; } .paginator { text-align: center; margin: auto; padding: 30px; display: block; } .pagination { border-radius: 5px; text-align: center; } a { text-align: center; text-decoration: none; color: white; } .upperButtons { display: flex; justify-content: space-between; margin-top: 20px; padding: 2px; border-radius: 3px; margin: 2px; } .green { color: #30ec30; } .red { color: salmon; } .viol { color: orange; } .blue { color: orange; } .tagsbox { color: white; } .active-page { background-color: rgb(0, 162, 255); padding: 9px; position: relative; top: -0.32rem; } .page-link { background-color: black; } .paginate { align-items: center; display: flex; } .body { padding-left: 8px; overflow: hidden; margin-bottom: 100px; } .ant-switch { margin-right: 1rem; background-color: rgb(58, 55, 55); } .ant-switch-checked { background-color: rgb(14, 94, 7); } .pagination { display: flex; } .react-multi-carousel-item { display: flex; align-items: center; justify-content: center; } .page-link { position: relative; top: -0.9rem; margin: 2px; } .TagImage:hover { cursor: pointer; } .contestName h6 { background: none; color: black; font-size: 0.9rem; } .Sitename { display: flex; margin-top: 2rem; justify-content: space-between; } .Sitename div { display: flex; } .Sitename div h3 { text-align: center; } .Right-Side { display: flex; float: right; } .Right-Side div { float: right; border-radius: 5px; } .Right-Side div div { display: block; } .Right-Side div h6 { font-size: 0.8rem; padding-right: 1rem; padding: 3px; color: white; margin-top: 2px; } .refreshImg { width: 50px; height: 48px; } .btnUpdate { border: none; height: 10%; background: none; } .switch { display: block; margin-left: 45px; } .ImgLogo { width: 220px; height: 30px; background: white; } .contestRow { margin: 2.5rem 0 !important; } .qname { margin: 2rem, 0; } .Cardcont { background: none; } .noDisplay { display: none !important; }
src/styles/Upsolve/upsolve.css
* { box-sizing: border-box; } .ant-row { margin: 0; } .solved { color: #30ec30; border-radius: 10px; height: 90px; text-align: center; padding-top: 10px; background: linear-gradient(180deg, #030321, #268c8c); width: 20rem; min-width: fit-content; box-shadow: 2px 2px 2px 3px black; overflow: auto; } .wrong { background: linear-gradient(180deg, #030321, #268c8c); color: white; border-radius: 10px; height: 90px; width: 19rem; text-align: center; padding-top: 10px; box-shadow: 2px 2px 2px 3px black; min-width: fit-content; overflow: auto; } .upsolved { background: linear-gradient(180deg, #030321, #268c8c); color: tomato; border-radius: 10px; height: 90px; text-align: center; width: 20rem; padding-top: 10px; box-shadow: 2px 2px 2px 3px black; border-left: 2px solid lightskyblue; min-width: fit-content; overflow: auto; } .contestName { font-weight: 900; box-shadow: 2px 2px 2px 3px black; font-size: larger; border-radius: 10px; background-color: #dcdcc5; height: 90px; text-align: center; padding-top: 10px; margin-left: 1.2rem; color: white; display: flex; justify-content: center; width: 18rem; align-items: center; overflow: auto; z-index: 3; } .not_attempted { background: linear-gradient(180deg, #030321, #268c8c); width: 20rem; color: black; box-shadow: 2px 2px 2px 3px black; border-radius: 10px; height: 90px; text-align: center; padding-top: 10px; min-width: fit-content; overflow: auto; } .contestRow { height: 90px; margin: 1rem 0; border-radius: 10px; } .tags { background: rgb(126, 122, 8); background: linear-gradient( 0deg, rgba(126, 122, 8, 1) 0%, rgba(253, 208, 45, 1) 91% ); border: 1px solid rgb(39, 38, 38); border-radius: 5px; margin-left: 8px; } .TagImage { width: 25px; height: 15px; float: right; background: none; margin-top: 14px; } Col { border-radius: 10px; } .heads { text-align: center; } .flags { margin: auto; display: flex; justify-content: space-around; } .virtualPracticeToggle { float: right; border-radius: 10px; color: rgb(255, 250, 250); background-color: rgb(0, 83, 161); padding: 8px; } .box { width: 20%; margin: 0 auto; background: rgba(255, 255, 255, 0.2); padding: 5px; border-radius: 20px/50px; background-clip: padding-box; text-align: center; } .button { font-size: 0.8rem; padding: 5px; color: #fff; border: 2px solid #06d85f; border-radius: 20px/50px; text-decoration: none; cursor: pointer; transition: all 0.3s ease-out; } .button:hover { background: #06d85f; } .overlay { position: fixed; top: 0; bottom: 0; left: 0; right: 0; background: rgba(3, 3, 3, 0.7); transition: opacity 500ms; visibility: hidden; opacity: 0; } .overlay:target { visibility: visible; opacity: 1; } .btnUpdate { float: right; border-radius: 35px; } .popover { margin: 2px auto; padding: 2px; background: #fff; border-radius: 5px; width: 20%; position: relative; transition: all 2s ease-in-out; background-color: beige; } .popover h2 { margin-top: 0; color: #333; font-family: Tahoma, Arial, sans-serif; } .popover .close { position: absolute; top: 2px; right: 30px; transition: all 200ms; font-size: 10px; font-weight: bold; text-decoration: none; color: #333; } .popup .close:hover { color: #06d85f; } .popup .content { max-height: 10%; overflow: auto; } @media screen and (max-width: 700px) { .box { width: 40%; } .popup { width: 40%; } } .loading-animation { display: block; margin: auto; } .paginator { text-align: center; margin: auto; padding: 30px; display: block; } .pagination { border-radius: 5px; text-align: center; } a { text-align: center; text-decoration: none; color: white; } .upperButtons { display: flex; justify-content: space-between; margin-top: 20px; padding: 2px; border-radius: 3px; margin: 2px; } .green { color: #30ec30; } .red { color: salmon; } .viol { color: orange; } .blue { color: orange; } .tagsbox { color: white; } .active-page { background-color: rgb(0, 162, 255); padding: 9px; position: relative; top: -0.32rem; } .page-link { background-color: black; } .paginate { align-items: center; display: flex; } .body { padding-left: 8px; overflow: hidden; margin-bottom: 100px; } .ant-switch { margin-right: 1rem; background-color: rgb(58, 55, 55); } .ant-switch-checked { background-color: rgb(14, 94, 7); } .pagination { display: flex; } .react-multi-carousel-item { display: flex; align-items: center; justify-content: center; } .page-link { position: relative; top: -0.9rem; margin: 2px; } .TagImage:hover { cursor: pointer; } .contestName h6 { background: none; color: black; font-size: 0.9rem; } .Sitename { display: flex; margin-top: 2rem; justify-content: space-between; } .Sitename div { display: flex; } .Sitename div h3 { text-align: center; } .Right-Side { display: flex; float: right; } .Right-Side div { float: right; border-radius: 5px; } .Right-Side div div { display: block; } .Right-Side div h6 { font-size: 0.8rem; padding-right: 1rem; padding: 3px; color: white; margin-top: 2px; } .refreshImg { width: 50px; height: 48px; } .btnUpdate { border: none; height: 10%; background: none; } .switch { display: block; margin-left: 45px; } .ImgLogo { width: 220px; height: 30px; background: white; } .contestRow { margin: 2.5rem 0 !important; } .qname { margin: 2rem, 0; } .Cardcont { background: none; } .noDisplay { display: none !important; }
0.548432
0.143638
@charset "UTF-8"; /* ----------------------------------------------- 変数設定 ----------------------------------------------- */ /* ----------------------------------------------- 変数設定 ----------------------------------------------- */ /*********** width設定 ***********/ /*********** height設定 ***********/ /*********** color設定 ***********/ /*********** image設定 ***********/ /* ----------------------------------------------- リセットCSS設定 ----------------------------------------------- */ /* html5doctor.com Reset Stylesheet v1.6.1 Last Updated: 2010-09-17 Author: <NAME> - http://richclarkdesign.com Twitter: @rich_clark */ html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; } body { line-height: 1; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } nav ul { list-style: none; } li { list-style-type: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ""; content: none; } a { margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent; } /* change colours to suit your needs */ ins { background-color: #ff9; color: #000; text-decoration: none; } /* change colours to suit your needs */ mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; } del { text-decoration: line-through; } abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; } table { border-collapse: collapse; border-spacing: 0; } /* change border colour to suit your needs */ hr { display: block; height: 1px; border: 0; border-top: 1px solid #cccccc; margin: 1em 0; padding: 0; } input, select { vertical-align: middle; } *, *:after, *:before { box-sizing: border-box; margin: 0; padding: 0; } /* ----------------------------------------------- 初期設定 ----------------------------------------------- */ /* ----------------------------------------------- 初期設定 ----------------------------------------------- */ /*********** サイト全体の設定 ***********/ html, body { width: 100%; max-width: 1280px; min-width: 375px; margin: 0 auto; background: url(/image/background/bg005.jpg); background-size: 25%; color: #3f2913; font-family: "Noto Serif JP", serif; font-size: 15px; line-height: 1.8; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; } @media screen and (max-width: 768px) { html, body { font-size: 13px; } } * { scrollbar-width: none; -ms-overflow-style: none; } *::-webkit-scrollbar { display: none; } /*********** リンク設定 ***********/ a { color: #3f2913; text-decoration: none; } /*********** 画像設定 ***********/ img { width: 100%; height: auto; padding: 10px; } /* ----------------------------------------------- レイアウト設定 ----------------------------------------------- */ /* ----------------------------------------------- レイアウト設定 ----------------------------------------------- */ /*********** ヘッダーエリア ***********/ .header-area { background-image: url(/image/tequila-lineup-sepia_4.png); background-size: 30%; /* ----------------------------------------------- ヘッダーエリアコンテンツ設定 ----------------------------------------------- */ /*********** メインロゴ設定 ***********/ /*********** グローバルメニュー設定 ***********/ } @media screen and (max-width: 768px) { .header-area { width: 100%; position: fixed; top: 0; left: 0; } } .header-area__bg-frame { background-color: rgba(255, 255, 255, 0.5); } @media screen and (max-width: 768px) { .header-area__bg-frame { height: 36px; } } .header-area__main-logo { position: relative; top: -2px; left: 0; font-size: 20px; font-weight: bolder; text-shadow: 3px 3px 1px rgba(255, 165, 0, 0.5); } @media screen and (max-width: 768px) { .header-area__main-logo { display: inline; text-shadow: 1px 1px 1px rgba(255, 165, 0, 0.5); } } .header-area .global-menu { width: 100%; background: rgba(255, 165, 0, 0.5); font-size: 16px; /****** メニューボタン設定 ******/ /****** SPのメニューボタン(≡)設定 ******/ } @media screen and (max-width: 768px) { .header-area .global-menu { position: absolute; top: 36px; left: 0; background: url(/image/background/bg005.jpg); } } .header-area .global-menu__btn { display: inline-block; width: 100%; max-width: 150px; } @media screen and (max-width: 768px) { .header-area .global-menu__btn { max-width: 300px; border-bottom: 1px dotted beige; } .header-area .global-menu__btn:last-child { border-bottom: none; } } .header-area .global-menu__btn a { color: #3f2913; display: block; margin: 0px; } @media screen and (max-width: 768px) { .header-area .global-menu__btn a { color: beige; } } .header-area .global-menu__btn a:hover { background: rgba(255, 255, 255, 0.5); } .header-area .global-menu__btn-sp { font-size: 30px; line-height: 1; float: right; position: relative; top: 0; right: 5px; } /*********** サイドエリア ***********/ .aside { width: 25%; border-right: 1px solid #3f2913; overflow: scroll; /* ----------------------------------------------- サイドエリアコンテンツ設定 ----------------------------------------------- */ /*********** SP時サイドメニューアイコン(▼)設定 ***********/ } @media screen and (max-width: 768px) { .aside { width: 100%; position: fixed; top: 36px; left: 0; } } @media screen and (max-width: 768px) { .aside { background: unset; } } @media screen and (max-width: 768px) { .aside { border-right: none; } } @media screen and (max-width: 768px) { .aside .sidemenu-sp { position: fixed; top: 3px; right: 50px; background: unset; color: #3f2913; } } /*********** メインエリア ***********/ .main { width: 75%; padding-bottom: 5px; background: rgba(255, 255, 255, 0.8); } @media screen and (max-width: 768px) { .main { width: 100%; padding-top: 36px; } } .main-no-aside { width: 100%; } /*********** フッターエリア ***********/ .footer-area { padding: 20px; color: beige; } /* ----------------------------------------------- 共通設定 ----------------------------------------------- */ /* ----------------------------------------------- 共通レイアウト設定 ----------------------------------------------- */ /*********** コンテンツコンテナ設定 ***********/ .contents-frame { padding: 20px; } /*********** フレックスボックス設定 ***********/ .flex-box { display: flex; justify-content: space-around; } @media screen and (max-width: 768px) { .flex-box { display: block; } } /*********** スクロール設定 ***********/ .scroll-area { overflow: scroll; } /*********** 中央揃え設定 ***********/ .center { margin: 0 auto; text-align: center; } /*********** 非表示設定 ***********/ .hide-pc { display: none; } @media screen and (max-width: 768px) { .hide-pc { display: block; } } .hide-sp { display: block; } @media screen and (max-width: 768px) { .hide-sp { display: none; } } /* ----------------------------------------------- 共通パーツ設定 ----------------------------------------------- */ /*********** 文章エリア設定 ***********/ .letters-area { padding: 15px; } .letters-area img { max-width: 300px; } .letters-area__title { display: block; color: #3f2913; font-size: 20px; line-height: 2; border-bottom: 2px dotted #3f2913; } @media screen and (max-width: 768px) { .letters-area__title { font-size: 15px; } } .letters-area__paragraph { color: #593a1c; padding: 7px; margin: 5px; } .letters-area .indent { padding-left: 20px; } /*********** テーブル設定 ***********/ .table-area .table-area__header { background: url(/image/background/bg005.jpg); color: beige; } .table-area th, .table-area td { padding: 8px 12px; border: 1px solid #3f2913; } .table-area th { background: rgba(255, 165, 0, 0.5); } .table-area td { background: unset; } /*********** セクションタイトル設定 ***********/ .section-title { background: url(/image/background/bg005.jpg); background-size: 100%; color: beige; font-size: 18px; padding-bottom: 6px; padding-left: 20px; } @media screen and (max-width: 768px) { .section-title { font-size: 14px; padding-bottom: 3px; } } /*********** セクションテキスト設定 ***********/ .section-text-sub { padding-left: 0.5em; font-size: 14px; } @media screen and (max-width: 768px) { .section-text-sub { font-size: 12px; } } /*********** 共通ボタン設定 ***********/ .common-btn { cursor: pointer; background: rgba(255, 255, 255, 0.8); -webkit-backdrop-filter: blur(30px); backdrop-filter: blur(30px); -wekit-backdrop-filter: blur(30px); border-bottom: 1px solid #3f2913; } .common-btn a { display: block; padding: 10px 20px; } .common-btn a:hover { background: rgba(255, 255, 255, 0.5); } .common-btn a .small-text { font-size: 11px; } .common-btn--type:first-child { border-top: 1px solid #3f2913; } .common-btn--list { padding-left: 1em; } .common-btn--down { padding-left: 2em; border-bottom: 1px dotted #3f2913; } .common-btn--down:last-child { border-bottom: none; } /*********** 注釈メッセージ設定 ***********/ .message { width: 80%; margin: 20px auto; padding: 10px; background: rgba(255, 255, 255, 0.5); color: #3f2913; border: 1px solid #3f2913; border-radius: 8px; } .input-error { width: 100%; margin: 10px 0px; color: red; border-color: red; } .input-error-top { margin-top: 0; color: red; border-color: red; } /*********** 外部リンク設定 ***********/ .external-link { text-decoration: underline; padding: 10px; } .external-link:visited { color: rgba(255, 165, 0, 0.5); } .external-link:hover { color: beige; } /* ----------------------------------------------- ページ設定 ----------------------------------------------- */ /* ----------------------------------------------- ページ別:テキーラとは ----------------------------------------------- */ .top { /*********** 文章エリア設定 ***********/ /*********** テーブルエリア設定 ***********/ } .top .letters-area { margin-bottom: 40px; } .top .letters-area__title { padding: 1px 5px; } .top .letters-area__paragraph { margin-bottom: 10px; } @media screen and (max-width: 768px) { .top .table-area { font-size: 13px; } } .top .table-area__scroll-frame { padding-bottom: 20px; width: 250%; max-width: 1000px; } /* ----------------------------------------------- ページ別:商品紹介 ----------------------------------------------- */ .syouhin { /*********** 商品コンテナ設定 ***********/ } .syouhin .syouhin-container { margin-bottom: 20px; border-bottom: 1px solid #3f2913; padding: 20px 0; margin: 0 auto; align-items: center; /****** 画像エリア設定 ******/ /****** 文章エリア設定 ******/ } @media screen and (max-width: 768px) { .syouhin .syouhin-container { width: 80%; } } .syouhin .syouhin-container .image-area { max-width: 280px; width: 40%; height: 280px; } @media screen and (max-width: 768px) { .syouhin .syouhin-container .image-area { width: 100%; max-width: 460px; height: auto; } } .syouhin .syouhin-container .letters-area { width: 60%; max-width: 460px; margin-right: 10px; padding: 0; overflow: scroll; } @media screen and (max-width: 768px) { .syouhin .syouhin-container .letters-area { width: 100%; } } .syouhin .syouhin-container .letters-area__title { padding: 0px 10px; } .syouhin .syouhin-container .letters-area__paragraph { font-size: 14px; } .syouhin .syouhin-container .letters-area__scroll-frame { padding: 15px; height: 300px; width: 250%; max-width: 768px; } @media screen and (max-width: 768px) { .syouhin .syouhin-container .letters-area__scroll-frame { height: auto; } } /* ----------------------------------------------- ページ別:店舗紹介 ----------------------------------------------- */ .tenpo { /*********** テーブルエリア設定 ***********/ /*********** 文章エリア設定 ***********/ } .tenpo .table-area__scroll-frame { margin: 0 auto; width: 100%; min-width: 1000px; } .tenpo .table-area td, .tenpo .table-area th { width: 25%; } .tenpo .letters-area__title { padding: 1px 5px; margin-bottom: 20px; } @media screen and (max-width: 768px) { .tenpo .letters-area__title { font-size: 13px; } } /* ----------------------------------------------- ページ別:データ情報登録 ----------------------------------------------- */ /*********** Form共通設定 ***********/ .form { /****** テーブルエリア設定 ******/ /****** テーブルセル設定*******/ /****** インプット項目:テキスト入力・セレクト設定 ******/ /****** インプット項目:ファイル設定 ******/ /****** インプット項目:ファイルアップロード設定 ******/ /****** 確認・登録・修正ボタン設定 ******/ } .form .table-area { width: 100%; padding-bottom: 20px; } .form .table-area__scroll-frame { padding-bottom: 20px; width: 100%; min-width: 1000px; } .form th, .form td { vertical-align: middle; } .form input[type=text], .form textarea, .form select { width: 100%; height: 50px; font-size: 20px; color: #3f2913; border: 1px dashed #3f2913; background: none; padding: 5px; } .form input[type=text]:hover, .form textarea:hover, .form select:hover { background: rgba(255, 255, 255, 0.5); } .form input[type=text]:focus, .form textarea:focus, .form select:focus { outline-color: rgba(255, 165, 0, 0.5); } .form input[type=file] { display: none; } .form input[type=file] { width: 100%; height: 50px; color: #3f2913; border: 1px dashed #3f2913; background: none; } .form input[type=file]:focus { outline-color: rgba(255, 165, 0, 0.5); } .form button, .form label.image { width: 30%; max-width: 300px; background: beige; color: #3f2913; font-size: 15px; border: 1px solid #3f2913; border-radius: 4px; padding: 5px; margin-bottom: 20px; cursor: pointer; } .form button:hover, .form label.image:hover { background: rgba(255, 165, 0, 0.5); } .form button:focus, .form label.image:focus { outline-color: rgba(255, 165, 0, 0.5); } /*********** 確認画面設定 ***********/ .form-confirm td { width: 80%; } .form-confirm th { width: 300px; }
public/css/app.css
@charset "UTF-8"; /* ----------------------------------------------- 変数設定 ----------------------------------------------- */ /* ----------------------------------------------- 変数設定 ----------------------------------------------- */ /*********** width設定 ***********/ /*********** height設定 ***********/ /*********** color設定 ***********/ /*********** image設定 ***********/ /* ----------------------------------------------- リセットCSS設定 ----------------------------------------------- */ /* html5doctor.com Reset Stylesheet v1.6.1 Last Updated: 2010-09-17 Author: <NAME> - http://richclarkdesign.com Twitter: @rich_clark */ html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent; } body { line-height: 1; } article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } nav ul { list-style: none; } li { list-style-type: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ""; content: none; } a { margin: 0; padding: 0; font-size: 100%; vertical-align: baseline; background: transparent; } /* change colours to suit your needs */ ins { background-color: #ff9; color: #000; text-decoration: none; } /* change colours to suit your needs */ mark { background-color: #ff9; color: #000; font-style: italic; font-weight: bold; } del { text-decoration: line-through; } abbr[title], dfn[title] { border-bottom: 1px dotted; cursor: help; } table { border-collapse: collapse; border-spacing: 0; } /* change border colour to suit your needs */ hr { display: block; height: 1px; border: 0; border-top: 1px solid #cccccc; margin: 1em 0; padding: 0; } input, select { vertical-align: middle; } *, *:after, *:before { box-sizing: border-box; margin: 0; padding: 0; } /* ----------------------------------------------- 初期設定 ----------------------------------------------- */ /* ----------------------------------------------- 初期設定 ----------------------------------------------- */ /*********** サイト全体の設定 ***********/ html, body { width: 100%; max-width: 1280px; min-width: 375px; margin: 0 auto; background: url(/image/background/bg005.jpg); background-size: 25%; color: #3f2913; font-family: "Noto Serif JP", serif; font-size: 15px; line-height: 1.8; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; } @media screen and (max-width: 768px) { html, body { font-size: 13px; } } * { scrollbar-width: none; -ms-overflow-style: none; } *::-webkit-scrollbar { display: none; } /*********** リンク設定 ***********/ a { color: #3f2913; text-decoration: none; } /*********** 画像設定 ***********/ img { width: 100%; height: auto; padding: 10px; } /* ----------------------------------------------- レイアウト設定 ----------------------------------------------- */ /* ----------------------------------------------- レイアウト設定 ----------------------------------------------- */ /*********** ヘッダーエリア ***********/ .header-area { background-image: url(/image/tequila-lineup-sepia_4.png); background-size: 30%; /* ----------------------------------------------- ヘッダーエリアコンテンツ設定 ----------------------------------------------- */ /*********** メインロゴ設定 ***********/ /*********** グローバルメニュー設定 ***********/ } @media screen and (max-width: 768px) { .header-area { width: 100%; position: fixed; top: 0; left: 0; } } .header-area__bg-frame { background-color: rgba(255, 255, 255, 0.5); } @media screen and (max-width: 768px) { .header-area__bg-frame { height: 36px; } } .header-area__main-logo { position: relative; top: -2px; left: 0; font-size: 20px; font-weight: bolder; text-shadow: 3px 3px 1px rgba(255, 165, 0, 0.5); } @media screen and (max-width: 768px) { .header-area__main-logo { display: inline; text-shadow: 1px 1px 1px rgba(255, 165, 0, 0.5); } } .header-area .global-menu { width: 100%; background: rgba(255, 165, 0, 0.5); font-size: 16px; /****** メニューボタン設定 ******/ /****** SPのメニューボタン(≡)設定 ******/ } @media screen and (max-width: 768px) { .header-area .global-menu { position: absolute; top: 36px; left: 0; background: url(/image/background/bg005.jpg); } } .header-area .global-menu__btn { display: inline-block; width: 100%; max-width: 150px; } @media screen and (max-width: 768px) { .header-area .global-menu__btn { max-width: 300px; border-bottom: 1px dotted beige; } .header-area .global-menu__btn:last-child { border-bottom: none; } } .header-area .global-menu__btn a { color: #3f2913; display: block; margin: 0px; } @media screen and (max-width: 768px) { .header-area .global-menu__btn a { color: beige; } } .header-area .global-menu__btn a:hover { background: rgba(255, 255, 255, 0.5); } .header-area .global-menu__btn-sp { font-size: 30px; line-height: 1; float: right; position: relative; top: 0; right: 5px; } /*********** サイドエリア ***********/ .aside { width: 25%; border-right: 1px solid #3f2913; overflow: scroll; /* ----------------------------------------------- サイドエリアコンテンツ設定 ----------------------------------------------- */ /*********** SP時サイドメニューアイコン(▼)設定 ***********/ } @media screen and (max-width: 768px) { .aside { width: 100%; position: fixed; top: 36px; left: 0; } } @media screen and (max-width: 768px) { .aside { background: unset; } } @media screen and (max-width: 768px) { .aside { border-right: none; } } @media screen and (max-width: 768px) { .aside .sidemenu-sp { position: fixed; top: 3px; right: 50px; background: unset; color: #3f2913; } } /*********** メインエリア ***********/ .main { width: 75%; padding-bottom: 5px; background: rgba(255, 255, 255, 0.8); } @media screen and (max-width: 768px) { .main { width: 100%; padding-top: 36px; } } .main-no-aside { width: 100%; } /*********** フッターエリア ***********/ .footer-area { padding: 20px; color: beige; } /* ----------------------------------------------- 共通設定 ----------------------------------------------- */ /* ----------------------------------------------- 共通レイアウト設定 ----------------------------------------------- */ /*********** コンテンツコンテナ設定 ***********/ .contents-frame { padding: 20px; } /*********** フレックスボックス設定 ***********/ .flex-box { display: flex; justify-content: space-around; } @media screen and (max-width: 768px) { .flex-box { display: block; } } /*********** スクロール設定 ***********/ .scroll-area { overflow: scroll; } /*********** 中央揃え設定 ***********/ .center { margin: 0 auto; text-align: center; } /*********** 非表示設定 ***********/ .hide-pc { display: none; } @media screen and (max-width: 768px) { .hide-pc { display: block; } } .hide-sp { display: block; } @media screen and (max-width: 768px) { .hide-sp { display: none; } } /* ----------------------------------------------- 共通パーツ設定 ----------------------------------------------- */ /*********** 文章エリア設定 ***********/ .letters-area { padding: 15px; } .letters-area img { max-width: 300px; } .letters-area__title { display: block; color: #3f2913; font-size: 20px; line-height: 2; border-bottom: 2px dotted #3f2913; } @media screen and (max-width: 768px) { .letters-area__title { font-size: 15px; } } .letters-area__paragraph { color: #593a1c; padding: 7px; margin: 5px; } .letters-area .indent { padding-left: 20px; } /*********** テーブル設定 ***********/ .table-area .table-area__header { background: url(/image/background/bg005.jpg); color: beige; } .table-area th, .table-area td { padding: 8px 12px; border: 1px solid #3f2913; } .table-area th { background: rgba(255, 165, 0, 0.5); } .table-area td { background: unset; } /*********** セクションタイトル設定 ***********/ .section-title { background: url(/image/background/bg005.jpg); background-size: 100%; color: beige; font-size: 18px; padding-bottom: 6px; padding-left: 20px; } @media screen and (max-width: 768px) { .section-title { font-size: 14px; padding-bottom: 3px; } } /*********** セクションテキスト設定 ***********/ .section-text-sub { padding-left: 0.5em; font-size: 14px; } @media screen and (max-width: 768px) { .section-text-sub { font-size: 12px; } } /*********** 共通ボタン設定 ***********/ .common-btn { cursor: pointer; background: rgba(255, 255, 255, 0.8); -webkit-backdrop-filter: blur(30px); backdrop-filter: blur(30px); -wekit-backdrop-filter: blur(30px); border-bottom: 1px solid #3f2913; } .common-btn a { display: block; padding: 10px 20px; } .common-btn a:hover { background: rgba(255, 255, 255, 0.5); } .common-btn a .small-text { font-size: 11px; } .common-btn--type:first-child { border-top: 1px solid #3f2913; } .common-btn--list { padding-left: 1em; } .common-btn--down { padding-left: 2em; border-bottom: 1px dotted #3f2913; } .common-btn--down:last-child { border-bottom: none; } /*********** 注釈メッセージ設定 ***********/ .message { width: 80%; margin: 20px auto; padding: 10px; background: rgba(255, 255, 255, 0.5); color: #3f2913; border: 1px solid #3f2913; border-radius: 8px; } .input-error { width: 100%; margin: 10px 0px; color: red; border-color: red; } .input-error-top { margin-top: 0; color: red; border-color: red; } /*********** 外部リンク設定 ***********/ .external-link { text-decoration: underline; padding: 10px; } .external-link:visited { color: rgba(255, 165, 0, 0.5); } .external-link:hover { color: beige; } /* ----------------------------------------------- ページ設定 ----------------------------------------------- */ /* ----------------------------------------------- ページ別:テキーラとは ----------------------------------------------- */ .top { /*********** 文章エリア設定 ***********/ /*********** テーブルエリア設定 ***********/ } .top .letters-area { margin-bottom: 40px; } .top .letters-area__title { padding: 1px 5px; } .top .letters-area__paragraph { margin-bottom: 10px; } @media screen and (max-width: 768px) { .top .table-area { font-size: 13px; } } .top .table-area__scroll-frame { padding-bottom: 20px; width: 250%; max-width: 1000px; } /* ----------------------------------------------- ページ別:商品紹介 ----------------------------------------------- */ .syouhin { /*********** 商品コンテナ設定 ***********/ } .syouhin .syouhin-container { margin-bottom: 20px; border-bottom: 1px solid #3f2913; padding: 20px 0; margin: 0 auto; align-items: center; /****** 画像エリア設定 ******/ /****** 文章エリア設定 ******/ } @media screen and (max-width: 768px) { .syouhin .syouhin-container { width: 80%; } } .syouhin .syouhin-container .image-area { max-width: 280px; width: 40%; height: 280px; } @media screen and (max-width: 768px) { .syouhin .syouhin-container .image-area { width: 100%; max-width: 460px; height: auto; } } .syouhin .syouhin-container .letters-area { width: 60%; max-width: 460px; margin-right: 10px; padding: 0; overflow: scroll; } @media screen and (max-width: 768px) { .syouhin .syouhin-container .letters-area { width: 100%; } } .syouhin .syouhin-container .letters-area__title { padding: 0px 10px; } .syouhin .syouhin-container .letters-area__paragraph { font-size: 14px; } .syouhin .syouhin-container .letters-area__scroll-frame { padding: 15px; height: 300px; width: 250%; max-width: 768px; } @media screen and (max-width: 768px) { .syouhin .syouhin-container .letters-area__scroll-frame { height: auto; } } /* ----------------------------------------------- ページ別:店舗紹介 ----------------------------------------------- */ .tenpo { /*********** テーブルエリア設定 ***********/ /*********** 文章エリア設定 ***********/ } .tenpo .table-area__scroll-frame { margin: 0 auto; width: 100%; min-width: 1000px; } .tenpo .table-area td, .tenpo .table-area th { width: 25%; } .tenpo .letters-area__title { padding: 1px 5px; margin-bottom: 20px; } @media screen and (max-width: 768px) { .tenpo .letters-area__title { font-size: 13px; } } /* ----------------------------------------------- ページ別:データ情報登録 ----------------------------------------------- */ /*********** Form共通設定 ***********/ .form { /****** テーブルエリア設定 ******/ /****** テーブルセル設定*******/ /****** インプット項目:テキスト入力・セレクト設定 ******/ /****** インプット項目:ファイル設定 ******/ /****** インプット項目:ファイルアップロード設定 ******/ /****** 確認・登録・修正ボタン設定 ******/ } .form .table-area { width: 100%; padding-bottom: 20px; } .form .table-area__scroll-frame { padding-bottom: 20px; width: 100%; min-width: 1000px; } .form th, .form td { vertical-align: middle; } .form input[type=text], .form textarea, .form select { width: 100%; height: 50px; font-size: 20px; color: #3f2913; border: 1px dashed #3f2913; background: none; padding: 5px; } .form input[type=text]:hover, .form textarea:hover, .form select:hover { background: rgba(255, 255, 255, 0.5); } .form input[type=text]:focus, .form textarea:focus, .form select:focus { outline-color: rgba(255, 165, 0, 0.5); } .form input[type=file] { display: none; } .form input[type=file] { width: 100%; height: 50px; color: #3f2913; border: 1px dashed #3f2913; background: none; } .form input[type=file]:focus { outline-color: rgba(255, 165, 0, 0.5); } .form button, .form label.image { width: 30%; max-width: 300px; background: beige; color: #3f2913; font-size: 15px; border: 1px solid #3f2913; border-radius: 4px; padding: 5px; margin-bottom: 20px; cursor: pointer; } .form button:hover, .form label.image:hover { background: rgba(255, 165, 0, 0.5); } .form button:focus, .form label.image:focus { outline-color: rgba(255, 165, 0, 0.5); } /*********** 確認画面設定 ***********/ .form-confirm td { width: 80%; } .form-confirm th { width: 300px; }
0.277277
0.058669
body.au-modal-noscroll { overflow: hidden !important; } @-webkit-keyframes au-modal-rotate { from { -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes au-modal-rotate { from { -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } .au-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99999999; font-family: inherit; overflow: hidden; } .au-modal .au-modal-bg { position: fixed; top: 0; left: 0; right: 0; bottom: 0; opacity: 0; -webkit-transition: all .4s; transition: all .4s; } .au-modal .au-modal-bg.seen { opacity: 1; } .au-modal .au-modal-scrollpane { position: fixed; top: 0; left: 0; right: 0; bottom: 0; overflow-y: auto; } .au-modal .au-modal-box { background: white; border-radius: 4px; position: relative; } .au-modal .au-modal-box div.closeIcon { height: 20px; width: 20px; position: absolute; top: 12px; right: 12px; cursor: pointer; opacity: .6; text-align: center; display: none; } .au-modal .au-modal-box div.closeIcon:hover { opacity: 1; } .au-modal .au-modal-box div.title { font-size: 24px; font-weight: bold; font-family: inherit; padding: 10px 15px 5px; } .au-modal .au-modal-box div.content { padding-top: 10px; padding: 10px 15px 10px /*max-height: 350px;*/ /*overflow: scroll;*/ /*overflow-y: auto;*/ } .au-modal .au-modal-box div.content:empty { height: 40px; position: relative; opacity: 0.6; } .au-modal .au-modal-box div.content:empty:before { content: ''; height: 20px; width: 20px; border: solid 2px #aaa; /*background-color: #ddd;*/ position: absolute; left: 50%; margin-left: -45px; border-radius: 20%; -webkit-animation: au-modal-rotate 1s infinite; animation: au-modal-rotate 1s infinite; } .au-modal .au-modal-box div.content:empty:after { content: 'loading..'; position: absolute; left: 50%; margin-left: -15px; } .au-modal .au-modal-box .buttons { padding: 10px 15px; } .au-modal .au-modal-box .buttons button + button { margin-left: 5px; } .au-modal .jquery-clear { clear: both; } .au-modal.white .au-modal-bg { background-color: rgba(0, 0, 0, 0.2); } .au-modal.white .au-modal-box { box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); border-radius: 5px; } .au-modal.white .au-modal-box .buttons { float: right; } .au-modal.white .au-modal-box .buttons button { border: none; background-image: none; text-transform: uppercase; font-size: 14px; font-weight: bold; text-shadow: none; -webkit-transition: background .1s; transition: background .1s; color: white; } .au-modal.white .au-modal-box .buttons button.btn-default { box-shadow: none; color: #333; } .au-modal.white .au-modal-box .buttons button.btn-default:hover { background: #ddd; } .au-modal.black .au-modal-bg { background-color: rgba(0, 0, 0, 0.5); } .au-modal.black .au-modal-box { box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); background: #444; border-radius: 5px; color: white; } .au-modal.black .au-modal-box .buttons { float: right; } .au-modal.black .au-modal-box .buttons button { border: none; background-image: none; text-transform: uppercase; font-size: 14px; font-weight: bold; text-shadow: none; -webkit-transition: background .1s; transition: background .1s; color: white; } .au-modal.black .au-modal-box .buttons button.btn-default { box-shadow: none; color: #fff; background: none; } .au-modal.black .au-modal-box .buttons button.btn-default:hover { background: #666; } .au-modal.hololight .au-modal-bg { background-color: rgba(0, 0, 0, 0.5); } .au-modal.hololight .au-modal-box { box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); border-radius: 2px; overflow: hidden; } .au-modal.hololight .au-modal-box div.title { font-weight: inherit; border-bottom: solid 2px #76CFDF; color: #76CFDF; } .au-modal.hololight .au-modal-box .buttons { border-top: solid 2px #E7E7E7; width: 100%; float: none; padding: 0; } .au-modal.hololight .au-modal-box .buttons button { margin: 0; border: none; background: #fff; border-radius: 0px; width: 50%; padding: 13px; font-size: 16px; font-weight: bold; color: #666; } .au-modal.hololight .au-modal-box .buttons button + button { border-left: solid 2px #E7E7E7; } .au-modal.holodark .au-modal-bg { background-color: rgba(0, 0, 0, 0.5); } .au-modal.holodark .au-modal-box { box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); border-radius: 2px; background: #333; overflow: hidden; } .au-modal.holodark .au-modal-box div.closeIcon { color: white; } .au-modal.holodark .au-modal-box div.title { font-weight: inherit; border-bottom: solid 2px #76CFDF; color: #76CFDF; } .au-modal.holodark .au-modal-box div.content { color: white; } .au-modal.holodark .au-modal-box .buttons { border-top: solid 2px rgba(255, 255, 255, 0.2); width: 100%; float: none; padding: 0; } .au-modal.holodark .au-modal-box .buttons button { margin: 0; border: none; background: #333; border-radius: 0px; width: 50%; padding: 13px; font-size: 16px; font-weight: bold; color: #fff; text-shadow: none; } .au-modal.holodark .au-modal-box .buttons button + button { border-left: solid 2px rgba(255, 255, 255, 0.2); } .au-modal .au-modal-box.hilight { box-shadow: 0 0 20px red; } /*Transition rules*/ .au-modal { -webkit-perspective: 400px; perspective: 400px; } .au-modal .au-modal-box { opacity: 1; -webkit-transition-property: -webkit-transform, opacity, box-shadow; transition-property: transform, opacity, box-shadow; } .au-modal .au-modal-box.anim-top, .au-modal .au-modal-box.anim-left, .au-modal .au-modal-box.anim-right, .au-modal .au-modal-box.anim-bottom, .au-modal .au-modal-box.anim-opacity, .au-modal .au-modal-box.anim-zoom, .au-modal .au-modal-box.anim-scale, .au-modal .au-modal-box.anim-none, .au-modal .au-modal-box.anim-rotate, .au-modal .au-modal-box.anim-rotatex, .au-modal .au-modal-box.anim-rotatey, .au-modal .au-modal-box.anim-scaley, .au-modal .au-modal-box.anim-scalex { /*visibility: hidden;*/ opacity: 0; } .au-modal .au-modal-box.anim-rotate { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } .au-modal .au-modal-box.anim-rotatex { -webkit-transform: rotateX(90deg); transform: rotateX(90deg); -webkit-transform-origin: top; -ms-transform-origin: top; transform-origin: top; } .au-modal .au-modal-box.anim-rotatey { -webkit-transform: rotatey(90deg); -ms-transform: rotatey(90deg); transform: rotatey(90deg); -webkit-transform-origin: top; -ms-transform-origin: top; transform-origin: top; } .au-modal .au-modal-box.anim-scaley { -webkit-transform: scaley(1.5); -ms-transform: scaley(1.5); transform: scaley(1.5); -webkit-transform-origin: top; -ms-transform-origin: top; transform-origin: top; } .au-modal .au-modal-box.anim-scalex { -webkit-transform: scalex(1.5); -ms-transform: scalex(1.5); transform: scalex(1.5); -webkit-transform-origin: top; -ms-transform-origin: top; transform-origin: top; } .au-modal .au-modal-box.anim-top { -webkit-transform: translate(0px, -100px); -ms-transform: translate(0px, -100px); transform: translate(0px, -100px); } .au-modal .au-modal-box.anim-left { -webkit-transform: translate(-100px, 0px); -ms-transform: translate(-100px, 0px); transform: translate(-100px, 0px); } .au-modal .au-modal-box.anim-right { -webkit-transform: translate(100px, 0px); -ms-transform: translate(100px, 0px); transform: translate(100px, 0px); } .au-modal .au-modal-box.anim-bottom { -webkit-transform: translate(0px, 100px); -ms-transform: translate(0px, 100px); transform: translate(0px, 100px); } .au-modal .au-modal-box.anim-zoom { -webkit-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2); } .au-modal .au-modal-box.anim-scale { -webkit-transform: scale(0.8); -ms-transform: scale(0.8); transform: scale(0.8); } .au-modal .au-modal-box.anim-none { display: none; } .au-modal.supervan .au-modal-bg { background-color: rgba(54, 70, 93, 0.95); } .au-modal.supervan .au-modal-box { background-color: transparent; } .au-modal.supervan .au-modal-box div.title { text-align: center; color: white; font-size: 28px; font-weight: normal; } .au-modal.supervan .au-modal-box div.content { text-align: center; color: white; } .au-modal.supervan .au-modal-box .buttons { text-align: center; } .au-modal.supervan .au-modal-box .buttons button { font-size: 16px; border-radius: 2px; background: #303f53; text-shadow: none; border: none; color: white; width: 25%; padding: 10px; }
styles/au-dialog.css
body.au-modal-noscroll { overflow: hidden !important; } @-webkit-keyframes au-modal-rotate { from { -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes au-modal-rotate { from { -webkit-transform: rotate(0deg); transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } .au-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99999999; font-family: inherit; overflow: hidden; } .au-modal .au-modal-bg { position: fixed; top: 0; left: 0; right: 0; bottom: 0; opacity: 0; -webkit-transition: all .4s; transition: all .4s; } .au-modal .au-modal-bg.seen { opacity: 1; } .au-modal .au-modal-scrollpane { position: fixed; top: 0; left: 0; right: 0; bottom: 0; overflow-y: auto; } .au-modal .au-modal-box { background: white; border-radius: 4px; position: relative; } .au-modal .au-modal-box div.closeIcon { height: 20px; width: 20px; position: absolute; top: 12px; right: 12px; cursor: pointer; opacity: .6; text-align: center; display: none; } .au-modal .au-modal-box div.closeIcon:hover { opacity: 1; } .au-modal .au-modal-box div.title { font-size: 24px; font-weight: bold; font-family: inherit; padding: 10px 15px 5px; } .au-modal .au-modal-box div.content { padding-top: 10px; padding: 10px 15px 10px /*max-height: 350px;*/ /*overflow: scroll;*/ /*overflow-y: auto;*/ } .au-modal .au-modal-box div.content:empty { height: 40px; position: relative; opacity: 0.6; } .au-modal .au-modal-box div.content:empty:before { content: ''; height: 20px; width: 20px; border: solid 2px #aaa; /*background-color: #ddd;*/ position: absolute; left: 50%; margin-left: -45px; border-radius: 20%; -webkit-animation: au-modal-rotate 1s infinite; animation: au-modal-rotate 1s infinite; } .au-modal .au-modal-box div.content:empty:after { content: 'loading..'; position: absolute; left: 50%; margin-left: -15px; } .au-modal .au-modal-box .buttons { padding: 10px 15px; } .au-modal .au-modal-box .buttons button + button { margin-left: 5px; } .au-modal .jquery-clear { clear: both; } .au-modal.white .au-modal-bg { background-color: rgba(0, 0, 0, 0.2); } .au-modal.white .au-modal-box { box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); border-radius: 5px; } .au-modal.white .au-modal-box .buttons { float: right; } .au-modal.white .au-modal-box .buttons button { border: none; background-image: none; text-transform: uppercase; font-size: 14px; font-weight: bold; text-shadow: none; -webkit-transition: background .1s; transition: background .1s; color: white; } .au-modal.white .au-modal-box .buttons button.btn-default { box-shadow: none; color: #333; } .au-modal.white .au-modal-box .buttons button.btn-default:hover { background: #ddd; } .au-modal.black .au-modal-bg { background-color: rgba(0, 0, 0, 0.5); } .au-modal.black .au-modal-box { box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); background: #444; border-radius: 5px; color: white; } .au-modal.black .au-modal-box .buttons { float: right; } .au-modal.black .au-modal-box .buttons button { border: none; background-image: none; text-transform: uppercase; font-size: 14px; font-weight: bold; text-shadow: none; -webkit-transition: background .1s; transition: background .1s; color: white; } .au-modal.black .au-modal-box .buttons button.btn-default { box-shadow: none; color: #fff; background: none; } .au-modal.black .au-modal-box .buttons button.btn-default:hover { background: #666; } .au-modal.hololight .au-modal-bg { background-color: rgba(0, 0, 0, 0.5); } .au-modal.hololight .au-modal-box { box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); border-radius: 2px; overflow: hidden; } .au-modal.hololight .au-modal-box div.title { font-weight: inherit; border-bottom: solid 2px #76CFDF; color: #76CFDF; } .au-modal.hololight .au-modal-box .buttons { border-top: solid 2px #E7E7E7; width: 100%; float: none; padding: 0; } .au-modal.hololight .au-modal-box .buttons button { margin: 0; border: none; background: #fff; border-radius: 0px; width: 50%; padding: 13px; font-size: 16px; font-weight: bold; color: #666; } .au-modal.hololight .au-modal-box .buttons button + button { border-left: solid 2px #E7E7E7; } .au-modal.holodark .au-modal-bg { background-color: rgba(0, 0, 0, 0.5); } .au-modal.holodark .au-modal-box { box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); border-radius: 2px; background: #333; overflow: hidden; } .au-modal.holodark .au-modal-box div.closeIcon { color: white; } .au-modal.holodark .au-modal-box div.title { font-weight: inherit; border-bottom: solid 2px #76CFDF; color: #76CFDF; } .au-modal.holodark .au-modal-box div.content { color: white; } .au-modal.holodark .au-modal-box .buttons { border-top: solid 2px rgba(255, 255, 255, 0.2); width: 100%; float: none; padding: 0; } .au-modal.holodark .au-modal-box .buttons button { margin: 0; border: none; background: #333; border-radius: 0px; width: 50%; padding: 13px; font-size: 16px; font-weight: bold; color: #fff; text-shadow: none; } .au-modal.holodark .au-modal-box .buttons button + button { border-left: solid 2px rgba(255, 255, 255, 0.2); } .au-modal .au-modal-box.hilight { box-shadow: 0 0 20px red; } /*Transition rules*/ .au-modal { -webkit-perspective: 400px; perspective: 400px; } .au-modal .au-modal-box { opacity: 1; -webkit-transition-property: -webkit-transform, opacity, box-shadow; transition-property: transform, opacity, box-shadow; } .au-modal .au-modal-box.anim-top, .au-modal .au-modal-box.anim-left, .au-modal .au-modal-box.anim-right, .au-modal .au-modal-box.anim-bottom, .au-modal .au-modal-box.anim-opacity, .au-modal .au-modal-box.anim-zoom, .au-modal .au-modal-box.anim-scale, .au-modal .au-modal-box.anim-none, .au-modal .au-modal-box.anim-rotate, .au-modal .au-modal-box.anim-rotatex, .au-modal .au-modal-box.anim-rotatey, .au-modal .au-modal-box.anim-scaley, .au-modal .au-modal-box.anim-scalex { /*visibility: hidden;*/ opacity: 0; } .au-modal .au-modal-box.anim-rotate { -webkit-transform: rotate(90deg); -ms-transform: rotate(90deg); transform: rotate(90deg); } .au-modal .au-modal-box.anim-rotatex { -webkit-transform: rotateX(90deg); transform: rotateX(90deg); -webkit-transform-origin: top; -ms-transform-origin: top; transform-origin: top; } .au-modal .au-modal-box.anim-rotatey { -webkit-transform: rotatey(90deg); -ms-transform: rotatey(90deg); transform: rotatey(90deg); -webkit-transform-origin: top; -ms-transform-origin: top; transform-origin: top; } .au-modal .au-modal-box.anim-scaley { -webkit-transform: scaley(1.5); -ms-transform: scaley(1.5); transform: scaley(1.5); -webkit-transform-origin: top; -ms-transform-origin: top; transform-origin: top; } .au-modal .au-modal-box.anim-scalex { -webkit-transform: scalex(1.5); -ms-transform: scalex(1.5); transform: scalex(1.5); -webkit-transform-origin: top; -ms-transform-origin: top; transform-origin: top; } .au-modal .au-modal-box.anim-top { -webkit-transform: translate(0px, -100px); -ms-transform: translate(0px, -100px); transform: translate(0px, -100px); } .au-modal .au-modal-box.anim-left { -webkit-transform: translate(-100px, 0px); -ms-transform: translate(-100px, 0px); transform: translate(-100px, 0px); } .au-modal .au-modal-box.anim-right { -webkit-transform: translate(100px, 0px); -ms-transform: translate(100px, 0px); transform: translate(100px, 0px); } .au-modal .au-modal-box.anim-bottom { -webkit-transform: translate(0px, 100px); -ms-transform: translate(0px, 100px); transform: translate(0px, 100px); } .au-modal .au-modal-box.anim-zoom { -webkit-transform: scale(1.2); -ms-transform: scale(1.2); transform: scale(1.2); } .au-modal .au-modal-box.anim-scale { -webkit-transform: scale(0.8); -ms-transform: scale(0.8); transform: scale(0.8); } .au-modal .au-modal-box.anim-none { display: none; } .au-modal.supervan .au-modal-bg { background-color: rgba(54, 70, 93, 0.95); } .au-modal.supervan .au-modal-box { background-color: transparent; } .au-modal.supervan .au-modal-box div.title { text-align: center; color: white; font-size: 28px; font-weight: normal; } .au-modal.supervan .au-modal-box div.content { text-align: center; color: white; } .au-modal.supervan .au-modal-box .buttons { text-align: center; } .au-modal.supervan .au-modal-box .buttons button { font-size: 16px; border-radius: 2px; background: #303f53; text-shadow: none; border: none; color: white; width: 25%; padding: 10px; }
0.440951
0.071754
body{ background-color:#2f3136 ; } .header{ border-bottom:1px #787878 solid; background-color:#181818; } .logo{ height:27px; padding:10px; padding-bottom:2px; padding-left:27px; display:inline-block; } .header-block{ color:white; display:inline-block; padding:7px 100px 2px 25px; float:right; text-decoration:none; } .mainTextArea{ padding-top:44vh; padding-bottom:44vh; margin-bottom:70px; color:white; width:100%; background-color: #181818; margin-top:-20px; text-align:center; } .listing-item-holder{ margin-top:100px; width: 900px; padding-top:40px; margin:auto; border:1px #181818 solid; /* color:#c9c9c9; */ color:#a8a8a8; font-weight:400; border-top-left-radius:5px; border-top-right-radius:5px; } .top-listing-item{ border-bottom:1px #181818 solid; background-color:#2f3136; } .listing-item{ padding-top:1px; padding-bottom:1px; } .listing-item:nth-child(odd){ background-color:#2f3136; } .listing-item:nth-child(even){ background-color:#3c414a; } .listing-header{ text-align:center; margin:auto; padding:0px; background-color:#282c34; width:100px; font-size:18px; } .listing-header h2{ position:absolute; margin:auto; margin-left:0px; margin-top:-65px; background-color:#2f3136; width:100px; } .rank-value{ width:30px; text-align:center; /* border-left:1px #181818 solid; */ display:inline-block; } .title{ border-left:1px #181818 solid; display:inline-block; width:630px; padding-left:10px; border-right:1px #181818 solid; color:#a8a8a8; text-decoration:none; } .subreddit{ display:inline-block; width:160px; border-right:1px #181818 solid; padding-left:5px; color:#a8a8a8; text-decoration:none; } .rate{ width:60px; text-align:center; display:inline-block; } .footer{ padding-top:10px; width:100%; text-align:center; background-color:#181818; margin-top:40px; padding-bottom:10px; } .footer h4{ color:#a8a8a8; font-size:12px; } .footer a{ color:#a8a8a8; font-size:13px; font-weight:500; text-decoration: none; } /* mobile */ @media only screen and (max-width: 940px) { .mainTextArea{ padding-top:32vh; padding-bottom:44vh; margin-bottom:70px; color:white; width:100%; background-color: #181818; margin-top:-20px; text-align:center; } .logo{ height:20px; padding:15px; padding-bottom:2px; padding-left:15px; } .header-block{ font-size:15px; padding:15px 25px 2px 5px; } .listing-item-holder{ width: 95%; font-size:12px; } .rank-value{ width:5%; } .title{ padding-left:4px; width:60%; } .subreddit{ width:20%; padding-left:4px; } .rate{ padding-left:1px; width:8%; } }
src/App.css
body{ background-color:#2f3136 ; } .header{ border-bottom:1px #787878 solid; background-color:#181818; } .logo{ height:27px; padding:10px; padding-bottom:2px; padding-left:27px; display:inline-block; } .header-block{ color:white; display:inline-block; padding:7px 100px 2px 25px; float:right; text-decoration:none; } .mainTextArea{ padding-top:44vh; padding-bottom:44vh; margin-bottom:70px; color:white; width:100%; background-color: #181818; margin-top:-20px; text-align:center; } .listing-item-holder{ margin-top:100px; width: 900px; padding-top:40px; margin:auto; border:1px #181818 solid; /* color:#c9c9c9; */ color:#a8a8a8; font-weight:400; border-top-left-radius:5px; border-top-right-radius:5px; } .top-listing-item{ border-bottom:1px #181818 solid; background-color:#2f3136; } .listing-item{ padding-top:1px; padding-bottom:1px; } .listing-item:nth-child(odd){ background-color:#2f3136; } .listing-item:nth-child(even){ background-color:#3c414a; } .listing-header{ text-align:center; margin:auto; padding:0px; background-color:#282c34; width:100px; font-size:18px; } .listing-header h2{ position:absolute; margin:auto; margin-left:0px; margin-top:-65px; background-color:#2f3136; width:100px; } .rank-value{ width:30px; text-align:center; /* border-left:1px #181818 solid; */ display:inline-block; } .title{ border-left:1px #181818 solid; display:inline-block; width:630px; padding-left:10px; border-right:1px #181818 solid; color:#a8a8a8; text-decoration:none; } .subreddit{ display:inline-block; width:160px; border-right:1px #181818 solid; padding-left:5px; color:#a8a8a8; text-decoration:none; } .rate{ width:60px; text-align:center; display:inline-block; } .footer{ padding-top:10px; width:100%; text-align:center; background-color:#181818; margin-top:40px; padding-bottom:10px; } .footer h4{ color:#a8a8a8; font-size:12px; } .footer a{ color:#a8a8a8; font-size:13px; font-weight:500; text-decoration: none; } /* mobile */ @media only screen and (max-width: 940px) { .mainTextArea{ padding-top:32vh; padding-bottom:44vh; margin-bottom:70px; color:white; width:100%; background-color: #181818; margin-top:-20px; text-align:center; } .logo{ height:20px; padding:15px; padding-bottom:2px; padding-left:15px; } .header-block{ font-size:15px; padding:15px 25px 2px 5px; } .listing-item-holder{ width: 95%; font-size:12px; } .rank-value{ width:5%; } .title{ padding-left:4px; width:60%; } .subreddit{ width:20%; padding-left:4px; } .rate{ padding-left:1px; width:8%; } }
0.26218
0.055952
html{ background-image: url(/image/background.png); background-size: 105%; } .main-div{ width: auto; height: auto; text-align: center; } .input-div{ width: 400px; height: 350px; text-align: center; background-color: #ffffff; margin: 15% auto; border-radius: 15%; } .input-first-name{ width: 100px; height: 30px; font-size: 20px; font-style: normal; font-weight: normal; margin-top: 30px; border-radius: 20px; border: 1px solid pink; text-align: center; padding-top: 1px; padding-bottom: 1px; } .input-first-name::placeholder{ color: gray; font-size: 20px; font-style: normal; font-weight: normal; text-align: center; } .input-last-name{ width: 100px; height: 30px; font-size: 20px; font-style: normal; font-weight: normal; border-radius: 20px; border: 1px solid pink; text-align: center; margin-left: 3px; padding-top: 1px; padding-bottom: 1px; } .input-last-name::placeholder{ color: gray; font-size: 20px; font-style: normal; font-weight: normal; text-align: center; } .input-email{ width: 200px; height: 30px; color: #000000; margin-top: 5px; font-size: 20px; font-weight: normal; font-style: normal; border-radius: 20px; border: 1px solid pink; padding-left: 8px; } .input-email::placeholder{ color: gray; font-size: 20px; font-weight: normal; font-style: normal; } .input-password{ width: 200px; height: 30px; color: #000000; margin-top: 5px; font-size: 20px; font-style: normal; font-weight: normal; border-radius: 20px; border: 1px solid pink; padding-left: 8px; } .input-password::placeholder{ color: gray; font-size: 20px; font-weight: normal; font-style: normal; } .input-username{ width: 200px; height: 30px; color: #000000; text-align: left; border: 1px solid pink; border-radius: 20px; font-size: 18px; font-style: normal; font-weight: normal; padding-top: 1px; padding-bottom: 1px; padding-left: 10px; margin-top: 8px; } .input-username::placeholder{ color: gray; font-size: 20px; font-style: normal; font-weight: normal; text-align: left; padding-bottom: 1px; padding-top: 1px; padding-left: 5px; } .button-submit{ width: 200px; height: 30px; border-radius: 20px; background-color: pink; border: 0; color: #ffffff; font-size: 20px; font-weight: normal; font-style: normal; margint-top: 5px; padding-top: 4px; padding-bottom: 4px; padding-left: 10px; padding-right: 10px; } .password{ font-size: 15px; font-style: normal; font-weight: normal; color: #000000; padding-top: 5px; text-align: center; } .username{ font-size: 15px; font-style: normal; font-weight: normal; color: #000000; padding-top: 5px; }
css/signin.css
html{ background-image: url(/image/background.png); background-size: 105%; } .main-div{ width: auto; height: auto; text-align: center; } .input-div{ width: 400px; height: 350px; text-align: center; background-color: #ffffff; margin: 15% auto; border-radius: 15%; } .input-first-name{ width: 100px; height: 30px; font-size: 20px; font-style: normal; font-weight: normal; margin-top: 30px; border-radius: 20px; border: 1px solid pink; text-align: center; padding-top: 1px; padding-bottom: 1px; } .input-first-name::placeholder{ color: gray; font-size: 20px; font-style: normal; font-weight: normal; text-align: center; } .input-last-name{ width: 100px; height: 30px; font-size: 20px; font-style: normal; font-weight: normal; border-radius: 20px; border: 1px solid pink; text-align: center; margin-left: 3px; padding-top: 1px; padding-bottom: 1px; } .input-last-name::placeholder{ color: gray; font-size: 20px; font-style: normal; font-weight: normal; text-align: center; } .input-email{ width: 200px; height: 30px; color: #000000; margin-top: 5px; font-size: 20px; font-weight: normal; font-style: normal; border-radius: 20px; border: 1px solid pink; padding-left: 8px; } .input-email::placeholder{ color: gray; font-size: 20px; font-weight: normal; font-style: normal; } .input-password{ width: 200px; height: 30px; color: #000000; margin-top: 5px; font-size: 20px; font-style: normal; font-weight: normal; border-radius: 20px; border: 1px solid pink; padding-left: 8px; } .input-password::placeholder{ color: gray; font-size: 20px; font-weight: normal; font-style: normal; } .input-username{ width: 200px; height: 30px; color: #000000; text-align: left; border: 1px solid pink; border-radius: 20px; font-size: 18px; font-style: normal; font-weight: normal; padding-top: 1px; padding-bottom: 1px; padding-left: 10px; margin-top: 8px; } .input-username::placeholder{ color: gray; font-size: 20px; font-style: normal; font-weight: normal; text-align: left; padding-bottom: 1px; padding-top: 1px; padding-left: 5px; } .button-submit{ width: 200px; height: 30px; border-radius: 20px; background-color: pink; border: 0; color: #ffffff; font-size: 20px; font-weight: normal; font-style: normal; margint-top: 5px; padding-top: 4px; padding-bottom: 4px; padding-left: 10px; padding-right: 10px; } .password{ font-size: 15px; font-style: normal; font-weight: normal; color: #000000; padding-top: 5px; text-align: center; } .username{ font-size: 15px; font-style: normal; font-weight: normal; color: #000000; padding-top: 5px; }
0.473414
0.133274
background-color: #df5a49; height: 100%; width: 100%; position: fixed; z-index: 7; margin-top: -4px; top: 0px; } #loading.page{ position: absolute !important; background-color: white; z-index: 7; } @media(max-width: 767px) { #loading { display: none; } } #loading-center { width: 100%; height: 100%; position: relative; } #loading-center-absolute { position: absolute; left: 50%; top: 50%; height: 200px; width: 200px; margin-top: -100px; margin-left: -100px; } #loading-center-absolute.page { position: absolute; left: 50%; top: 150px; height: 200px; width: 200px; margin-top: -100px; margin-left: -100px; } .object { -moz-border-radius: 50% 50% 50% 50%; -webkit-border-radius: 50% 50% 50% 50%; border-radius: 50% 50% 50% 50%; position: absolute; border-left: 5px solid #FFF; border-right: 5px solid #FFF; border-top: 5px solid transparent; border-bottom: 5px solid transparent; -webkit-animation: animate 2s infinite; animation: animate 2s infinite; } .object.page-l { border-left: 5px solid rgb(105, 105, 105); border-right: 5px solid rgb(105, 105, 105); } .object.page-l.one { border-left: 2px solid rgb(105, 105, 105); border-right: 2px solid rgb(105, 105, 105); } #object_one { left: 75px; top: 75px; width: 50px; height: 50px; } #object_two { left: 65px; top: 65px; width: 70px; height: 70px; -webkit-animation-delay: 0.1s; animation-delay: 0.1s; } #object_three { left: 55px; top: 55px; width: 90px; height: 90px; -webkit-animation-delay: 0.2s; animation-delay: 0.2s; } #object_four { left: 45px; top: 45px; width: 110px; height: 110px; -webkit-animation-delay: 0.3s; animation-delay: 0.3s; } @-webkit-keyframes animate { 50% { -ms-transform: rotate(180deg); -webkit-transform: rotate(180deg); transform: rotate(180deg); } 100% { -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); transform: rotate(0deg); } } @keyframes animate { 50% { -ms-transform: rotate(180deg); -webkit-transform: rotate(180deg); transform: rotate(180deg); } 100% { -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); transform: rotate(0deg); } }
public/css/loading.css
background-color: #df5a49; height: 100%; width: 100%; position: fixed; z-index: 7; margin-top: -4px; top: 0px; } #loading.page{ position: absolute !important; background-color: white; z-index: 7; } @media(max-width: 767px) { #loading { display: none; } } #loading-center { width: 100%; height: 100%; position: relative; } #loading-center-absolute { position: absolute; left: 50%; top: 50%; height: 200px; width: 200px; margin-top: -100px; margin-left: -100px; } #loading-center-absolute.page { position: absolute; left: 50%; top: 150px; height: 200px; width: 200px; margin-top: -100px; margin-left: -100px; } .object { -moz-border-radius: 50% 50% 50% 50%; -webkit-border-radius: 50% 50% 50% 50%; border-radius: 50% 50% 50% 50%; position: absolute; border-left: 5px solid #FFF; border-right: 5px solid #FFF; border-top: 5px solid transparent; border-bottom: 5px solid transparent; -webkit-animation: animate 2s infinite; animation: animate 2s infinite; } .object.page-l { border-left: 5px solid rgb(105, 105, 105); border-right: 5px solid rgb(105, 105, 105); } .object.page-l.one { border-left: 2px solid rgb(105, 105, 105); border-right: 2px solid rgb(105, 105, 105); } #object_one { left: 75px; top: 75px; width: 50px; height: 50px; } #object_two { left: 65px; top: 65px; width: 70px; height: 70px; -webkit-animation-delay: 0.1s; animation-delay: 0.1s; } #object_three { left: 55px; top: 55px; width: 90px; height: 90px; -webkit-animation-delay: 0.2s; animation-delay: 0.2s; } #object_four { left: 45px; top: 45px; width: 110px; height: 110px; -webkit-animation-delay: 0.3s; animation-delay: 0.3s; } @-webkit-keyframes animate { 50% { -ms-transform: rotate(180deg); -webkit-transform: rotate(180deg); transform: rotate(180deg); } 100% { -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); transform: rotate(0deg); } } @keyframes animate { 50% { -ms-transform: rotate(180deg); -webkit-transform: rotate(180deg); transform: rotate(180deg); } 100% { -ms-transform: rotate(0deg); -webkit-transform: rotate(0deg); transform: rotate(0deg); } }
0.398641
0.086942
/* Theme Name: Honos Author: Cohhe Author URI: https://cohhe.com/ Description: Enhance your story experience, by leveraging the power of Honos Wordpress Theme, built especially for telling great stories. It is the only free WordPress theme fully compatible with the Aesop Story Engine. Version: 1.5.2 License: GNU General Public License v3 License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: two-columns, three-columns, left-sidebar, right-sidebar, custom-background, editor-style, featured-images, flexible-header, full-width-template, microformats, sticky-post, theme-options, translation-ready Text Domain: honos This theme, like WordPress, is licensed under the GPL. Use it to make something cool, have fun, and share what you've learned with others. */ /** * 1.0 Reset * * Resetting and rebuilding styles have been helped along thanks to the fine * work of Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html * along with <NAME> and <NAME> * http://necolas.github.com/normalize.css/ and Blueprint * http://www.blueprintcss.org/ * * ----------------------------------------------------------------------------- */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { border: 0; font-family: inherit; font-size: 100%; font-style: inherit; font-weight: 400; margin: 0; outline: 0; padding: 0; vertical-align: baseline; } body, html { width: 100%; height: 100%; } article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; } select::-ms-expand { display: none; } audio, canvas, video { display: inline-block; max-width: 100%; } html { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } body, button, input, select, textarea { color: #555555; font-family: 'Domine', serif; font-size: 16px; font-weight: 400; } progress { display: none; } body { color: #838585; margin: 0px; padding: 0px; font-family: 'Merriweather', serif; font-size: 14px; line-height: 1.786; font-weight: 300; } a { color: #CCA876; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } a:active, a:hover { color: #9B7B4D; outline: 0; text-decoration: none; } /* Webkit */ ::selection { background: #000000; color: #FFF; } /* Gecko/Mozilla */ ::-moz-selection { background: #000000; color: #FFF; } h1, h2, h3, h4, h5, h6 { font-family: 'Domine', serif; margin: 0px; padding: 0px; color: #2f2f2f; font-weight: normal; } h1 { font-size: 28px; margin: 25px 0; } h2 { font-size: 26px; margin: 25px 0;; } h3 { font-size: 24px; margin: 15px 0; } h4 { margin: 20px 0; font-size: 20px; } h5 { font-size: 18px; margin: 20px 0; } h6 { margin: 15px 0; font-size: 15px; } address { font-style: italic; margin-bottom: 24px; } abbr[title] { border-bottom: 1px dotted #fff; cursor: help; } b, strong { font-weight: 700; } cite, dfn, em, i { font-style: italic; } mark, ins { background: #fff9c0; text-decoration: none; } p { margin: 10px 0px; padding: 0px; } code, kbd, tt, var, samp, pre { font-family: monospace, serif; font-size: 15px; -webkit-hyphens: none; -moz-hyphens: none; -ms-hyphens: none; hyphens: none; line-height: 1.6; } pre { border: 1px solid rgba(0, 0, 0, 0.1); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; margin-bottom: 24px; max-width: 100%; overflow: auto; padding: 12px; white-space: pre; white-space: pre-wrap; word-wrap: break-word; } blockquote, q { -webkit-hyphens: none; -moz-hyphens: none; -ms-hyphens: none; hyphens: none; quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ""; content: none; } blockquote { margin: 20px 0; padding: 25px 3%; background: #f6f6f6; position: relative; border-left: 1px solid #8d1812; } blockquote p { font-size: 16px; font-weight: normal; color: #858585; } blockquote cite, blockquote small { color: #fff; font-size: 16px; font-weight: 400; line-height: 1.5; } blockquote em, blockquote i, blockquote cite { font-style: normal; margin-top: 15px; display: block; } blockquote strong, blockquote b { font-weight: 400; } small { font-size: smaller; } big { font-size: 125%; } sup, sub { font-size: 75%; height: 0; line-height: 0; position: relative; vertical-align: baseline; } sup { bottom: 1ex; } sub { top: .5ex; } dl { margin-bottom: 24px; } dt { font-weight: bold; } dd { margin-bottom: 24px; } ul, ol { list-style: none; margin: 0 0 24px 20px; } ol { list-style: decimal; list-style-position: inside; } li > ul, li > ol { margin: 0 0 0 20px; } img { -ms-interpolation-mode: bicubic; border: 0; vertical-align: middle; max-width: 100%; height: auto; } figure { margin: 0; } fieldset { border: 1px solid rgba(0, 0, 0, 0.1); margin: 0 0 24px; padding: 11px 12px 0; } legend { white-space: normal; } button, input, select, textarea { font-family: "Lato"; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; font-size: 100%; margin: 0; max-width: 100%; vertical-align: baseline; } button, input { line-height: normal; } input, textarea { font-size: 15px; border-color: #f0f0f0; border: 1px solid rgba(0,0,0,0.2); color: #2b2b2b; padding: 8px 10px 7px; background-image: -webkit-linear-gradient(hsla(0,0%,100%,0), hsla(0,0%,100%,0)); /* Removing the inner shadow, rounded corners on iOS inputs */ } button, html input[type="button"], input[type="reset"], input[type="submit"] { background: transparent; font-size: 0.9em; border: none; text-transform: uppercase; font-weight: 300; display: inline-block; text-decoration: none; padding: 10px 25px; text-align: center; color: #fff; font-weight: 400; outline: none; background-color: #CCA876; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; -ms-transition: all 0.2s ease-in; transition: all 0.2s ease-in; } button:hover, button:focus, .btn-link:hover, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus { background-color: #9B7B4D; } button[disabled], input[disabled] { cursor: default; } input[type="checkbox"], input[type="radio"] { padding: 0; } input[type="search"] { -webkit-appearance: textfield; } input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } textarea { width: 100%; overflow: auto; vertical-align: top; } table, th, td { border: 1px solid rgba(0, 0, 0, 0.4); } table { border-collapse: separate; border-spacing: 0; border-width: 1px 0 0 1px; margin-bottom: 24px; width: 100%; } caption, th, td { font-weight: normal; text-align: left; } th { border-width: 0 1px 1px 0; font-weight: bold; padding: 5px 10px; } td { border-width: 0 1px 1px 0; padding: 0 10px; } del { color: #6d6e64; } hr { background-color: rgba(0, 0, 0, 0.1); border: 0; height: 1px; margin-bottom: 23px; } .site-main.container { width: 100%; max-width: 1170px; } .wpcf7-form input[type="text"], .wpcf7-form input[type="email"] { width: 100%; } .wpcf7-form p { margin-top: 0; margin-bottom: 25px; } .social-icon { background-color:white; border:1px solid #cccccc; box-shadow:2px 2px 0px rgba(0,0,0,0.05); display: inline-block; width: 48px; height: 48px; line-height: 48px; transition: all 200ms ease-out; -webkit-transition: all 200ms ease-out; border-radius: 3px; text-align: center; margin-right: 10px; margin-bottom: 13px; } .social-icon i { color:white; font-size: 20px; line-height: 48px; } .social-icon:hover { background-color:#4c4c4c; border:1px solid #4c4c4c; } .social-icon:hover i { color:rgba(255,255,255,0.8); } .social-bitbucket i { color:#205081; } .social-dropbox i { color:#007ee5; } .social-dribbble i { color:#ea4c89; } .social-gittip i { color:#339966; } .social-facebook i { color:#3b5998; } .social-flickr i { color:#ff0084; } .social-foursquare i { color:#0cbadf; } .social-github i { color:#171515; } .social-google-plus i { color:#dd4b39; } .social-instagram i { color:#3f729b; } .social-linkedin i { color:#0e76a8; } .social-pinterest i { color:#c8232c; } .social-skype i { color:#00aff0; } .social-stack-exchange i { color:#3a6da6; } .social-stack-overflow i { color:#ef8236; } .social-trello i { color:#256a92; } .social-tumblr i { color:#34526f; } .social-twitter i { color:#55acee; } .social-vimeo-square i { color:#44bbff; } .social-vk i { color:#45668e; } .social-weibo i { color:#eb182c; } .social-xing i { color:#126567; } .social-youtube i { color:#c4302b; } /* Header */ .main-header { position: fixed; width: 100%; z-index: 9999; } .main-header.scrolled .header-top-wrapper { height: 0; } .main-header.scrolled .header-bottom { min-height: 69px; } .main-header, .header-top-wrapper { background-color: #fff; border-bottom: solid 1px #EDEDED; } .honos-slider-active .main-header { background-color: transparent; border-bottom: none; } .honos-slider-active .header-bottom-wrapper { background-color: rgba(255,255,255,1); -webkit-transition: background-color ease-in-out 0.2s; -moz-transition: background-color ease-in-out 0.2s; -o-transition: background-color ease-in-out 0.2s; transition: background-color ease-in-out 0.2s; } .honos-slider-active .scrolled .header-bottom-wrapper { background-color: rgb(255,255,255); box-shadow: 0 2px 2px 0 rgba(0,0,0,0.04); } /*.honos-slider-active .main-header:not(.scrolled) #primary-navigation .nav-menu > li > a { color: #fff; }*/ .header-top, .header-bottom { max-width: 1170px; padding: 0 15px; margin: 0 auto; } .header-top-wrapper { overflow: hidden; height: 35px; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .header-top { padding: 4px 15px; position: relative; } .header-bottom { min-height: 85px; position: relative; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; transform-style: preserve-3d; -webkit-transition: min-height ease-in-out 0.2s; -moz-transition: min-height ease-in-out 0.2s; -o-transition: min-height ease-in-out 0.2s; transition: min-height ease-in-out 0.2s; } .header-top .call-us, .header-top .free-consult, .header-top .header-search { font-size: 11px; text-transform: uppercase; color: #CBC9C9; float: left; } .header-top .call-us a { font-size: 14px; } .header-top .free-consult, .header-top .header-search { float: right } .header-top .free-consult { color: #CCA876; font-weight: 600; font-family: 'Open Sans'; } .header-top .free-consult:before { color: #CBC9C9; -webkit-transition: color ease-in-out 0.2s; -moz-transition: color ease-in-out 0.2s; -o-transition: color ease-in-out 0.2s; transition: color ease-in-out 0.2s; } .header-top .free-consult:hover, .header-top .free-consult:hover:before, .header-top .header-search:hover { color: #9B7B4D; } .header-top .call-us { font-family: 'Open Sans'; } .header-top .free-consult:before { font-size: 16px; margin-right: 7px; } .header-top .header-search { font-size: 16px; margin-left: 7px; cursor: pointer; position: relative; top: 1px; -webkit-transition: color ease-in-out 0.2s; -moz-transition: color ease-in-out 0.2s; -o-transition: color ease-in-out 0.2s; transition: color ease-in-out 0.2s; } .header-logo, #primary-navigation, .custom-logo-link { position: absolute; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } .header-logo, .custom-logo-link { max-width: 25%; } .header-logo img, .custom-logo-link img { max-height: 85px; width: auto; max-width: 100%; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .scrolled .header-logo img, .scrolled .custom-logo-link img { max-height: 69px; } #primary-navigation { right: 0; max-width: 75%; } #primary-navigation ul { margin: 0; } #primary-navigation li { float: left; padding: 13px 4px 13px 4px; position: relative; } #primary-navigation li a { padding: 4px 8px; font-size: 14px; color: #2C2C2C; } #primary-navigation li.current-menu-item > a, #primary-navigation li:hover > a { color: #9B7B4D !important; } .blog-name { display: block; font-size: 30px; line-height: 36px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .blog-description { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; display: block; line-height: 1; } #primary-navigation .menu-item-has-children.depth-0 > ul { top: 51px; } #primary-navigation .menu-item-has-children.depth-1 > ul { left: 0px; -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); } #primary-navigation li ul { display: none; opacity: 0; top: 0; box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.12); background-color: #fff; min-width: 130px; } #primary-navigation .menu-item-has-children:hover > ul { display: block; opacity: 1; position: absolute; padding-left: 0; } .menu-item-has-children.depth-0 > a:after { content: '\e975'; font-family: 'icons'; } .menu-item-has-children.depth-0 .menu-item-has-children:after { content: '\e973'; font-family: 'icons'; } .menu-item-has-children.depth-0 > a:after, .menu-item-has-children.depth-0 .menu-item-has-children a:after { margin-left: 7px; } .menu-item-has-children.depth-0 li { width: 100%; } .menu-item-has-children.depth-0 li:after { float: right; padding-right: 10px; } #primary-navigation .menu-item-has-children.depth-0 li { padding: 15px 11px; line-height: 12px; } #primary-navigation .menu-item-has-children.depth-0 li a { font-size: 13px; padding: 0; } .header-top .screen-reader-text, .header-top .search-submit { display: none; } .header-top .search-form { position: absolute; top: 0px; right: 45px; z-index: 22; } .header-top .search-field { border-top: none; border-bottom: none; height: 34px; border-color: #EDEDED; outline: none; } .header-top .search-form .search-field { opacity: 0; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .header-top .search-form.active .search-field { opacity: 1; } .header-top .search-form { visibility: hidden; } .header-top .search-form.active { visibility: visible; } .mobile-menu-button { width: 50px; height: 50px; position: absolute; top: 50%; right: 15px; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); border-radius: 4px; border: 1px solid #ccc; color: #ccc; text-align: center; line-height: 50px; font-size: 25px; display: none; } #mobile-navigation { position: absolute; background: #fff; right: 15px; padding: 20px 40px; top: 86px; box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.12); display: none; } #mobile-navigation.active { display: block; } #mobile-navigation li a:after, #mobile-navigation li:after { display: none; } #mobile-navigation div > ul { margin-bottom: 0; margin-left: 0; padding-left: 0; } #mobile-navigation li { padding: 5px 0; } #mobile-navigation li:last-child { padding-bottom: 0; } #mobile-navigation li a { font-size: 20px; } .row.introduction { margin-top: -158px; z-index: 222; position: relative; background-color: #fff; margin-bottom: -25px; } .row.introduction h2 { text-align: center; } #primary-navigation .menu-item-has-children.depth-1 li { white-space: nowrap; } /* Slider */ .honos-slider { min-height: 700px; } .frontpage-slider-wrapper .fp-slide-container { height: 100%; background-position: center !important; background-size: cover !important; } .fp-slide-inner-container { max-width: 1170px; height: 100%; margin: 0 auto; z-index: 22; position: relative; padding: 0 15px; } .fp-slide-inner { position: absolute; bottom: 259px; } .text-position-center .fp-slide-inner { left: 50%; text-align: center; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); } .text-position-right .fp-slide-inner { right: 0; text-align: right; } .fp-slide-inner-container .fp-slide-top-title { font-size: 50px; color: #CCA876; font-family: 'Domine'; margin-bottom: 22px; display: block; } .fp-slide-inner-container .fp-slide-title { font-size: 50px; line-height: 55px; font-weight: 600; text-transform: uppercase; color: #2E3236; width: 600px; font-family: '<NAME>'; } .fp-slide-inner-container .fp-slide-button { line-height: 18px; font-weight: 600; font-size: 16px; text-transform: uppercase; padding: 11px 27px; background: #CCA876; color: #ffffff; display: inline-block; margin-top: 16px; } .fp-slide-inner-container .fp-slide-button:hover { background: #9B7B4D; color: #fff; } .honos-slider-prev, .honos-slider-next { background-color: rgba(0,0,0,0.5); border-radius: 4px; width: 40px; height: 40px; display: block; text-align: center; line-height: 36px; color: #fff; font-size: 21px; position: absolute; top: 50%; z-index: 99; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } .honos-slider-prev:before, .honos-slider-next:before { position: relative; top: 2px; left: 1px; } .honos-slider-prev:before { left: 0; } .honos-slider-prev { left: 20px; } .honos-slider-next { right: 20px; } .honos-slider-prev:hover, .honos-slider-next:hover { background-color: rgb(0,0,0); color: #fff; } /* Sliding content */ .honos-sliding-inner .sliding-icon { font-size: 30px; color: #fff; background: #cca876; border-radius: 50%; padding: 0; width: 60px; height: 60px; line-height: 60px; text-align: center; display: block; margin: 0 auto; top: -30px; position: relative; } .honos-sliding-inner .sliding-title { font-family: 'Libre Baskerville'; display: block; text-align: center; color: #4A4F55; max-width: 80%; margin: 0 auto; font-weight: bold; line-height: 24px; font-size: 18px; margin-top: -17px; } .honos-sliding-inner .sliding-secondary-title { display: block; text-align: center; font-size: 13px; line-height: 20px; color: #CCA876; font-family: 'Open Sans'; font-weight: bold; margin-top: 13px; } .honos-sliding-inner .sliding-button { text-align: center; display: block; background-color: #4a4f55; margin-top: 33px; transform: rotateX(-90deg); -ms-transform: rotateX(-90deg); -webkit-transform: rotateX(-90deg); -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .honos-sliding-inner:hover .sliding-button { transform: rotateX(0deg); -ms-transform: rotateX(0deg); -webkit-transform: rotateX(0deg); } .honos-sliding-inner .sliding-button a { font-size: 13px; border: 1px solid #CCA876; padding: 8px 22px; display: inline-block; line-height: normal; font-weight: 600; text-transform: uppercase; font-family: 'Open Sans'; margin: 28px 0; } .honos-sliding-inner .sliding-button a:hover { color: #fff; background-color: #CCA876; } .honos-sliding-inner { margin: 0 -15px 0; background-color: #fff; position: relative; top: 0; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .honos-sliding-inner:hover { top: -91px; } .slider-overlay-left, .slider-overlay-right { width: 37.5%; float: left; display: block; background: url(images/patterndot.png) #45414d; padding: 15px 35px 30px 35px; } .slider-overlay-middle { width: 25%; float: left; display: block; background-color: #CCA876; padding: 15px 35px 30px 35px; } .slider-overlay-left-inner { float: right; max-width: 40%; } .slider-overlay-right-inner { max-width: 40%; } .row.slider-overlay h4 { color: #fff; } .row.slider-overlay p { color: #fff; font-family: 'Open Sans'; font-size: 14px; line-height: 25px; opacity: 0.8; } .row.slider-overlay h4:before { font-size: 19px; color: #fff; margin-left: 0; margin-right: 10px; } .row.slider-overlay { z-index: 222; } /* Practice module */ .practice-container { margin: 0 -15px; margin-bottom: 60px; } .practice-container > div { width: 25%; float: left; padding: 15px; } .honos-practice-container { min-height: 200px; background-size: cover !important; background-position: center !important; position: relative; overflow: hidden; cursor: pointer; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; transform-style: preserve-3d; } .honos-practice-container:before { content: ''; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.9); opacity: 0.8; z-index: 1; -webkit-transition: opacity .8s cubic-bezier(.19, 1, .22, 1); transition: opacity .8s cubic-bezier(.19, 1, .22, 1); } .honos-practice-inner { position: absolute; z-index: 2; top: 50%; width: 100%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } .honos-practice-inner .practice-text { color: #fff; font-size: 21px; font-weight: bold; text-align: center; display: block; padding: 0 20px; } .honos-practice-inner .practice-icon { display: block; text-align: center; font-size: 25px; margin-bottom: 12px; color: #fff; } .honos-practice-image { position: absolute; top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); transform: translateY(-50%); width: 100%; height: 100%; background-size: cover !important; background-position: center !important; -webkit-transition: -webkit-transform .6s cubic-bezier(.19, 1, .22, 1); transition: transform .6s cubic-bezier(.19, 1, .22, 1); } .honos-practice-image img { height: 100%; max-width: none; } .honos-practice-container:hover:before { opacity: 1; } .honos-practice-container:hover .honos-practice-image { -webkit-transform: scale(1.25) translateY(-50%); -moz-transform: scale(1.25) translateY(-50%); transform: scale(1.25) translateY(-50%); } /* Team module */ .row.attourneys { margin-bottom: 57px; } .honos-team-image { width: 30%; float: left; } .honos-team-side { width: 70%; float: left; padding: 20px 30px; line-height: 20px; } .honos-team-name { display: block; font-size: 18px; line-height: 30px; color: #000; margin-bottom: 14px; } .honos-team-description { display: block; font-size: 14px; line-height: 25px; margin-bottom: 15px; font-family: 'Open Sans'; } .honos-team-email, .honos-team-facebook, .honos-team-twitter, .honos-team-linkedin { float: right; } .honos-team-image { background-color: #000; } .honos-team-image img { filter: grayscale(100%); -webkit-filter: grayscale(100%); opacity: 0.5; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .honos-team-container:hover .honos-team-image img { filter: grayscale(0%); -webkit-filter: grayscale(0%); } .attourneys > div { padding: 15px; } /* Latest news */ .honos-latest-news-wrapper { position: relative; overflow: hidden; margin: 0 -20px; } .honos-latest-news { width: 20000em; position: relative; } .honos-latest-news-item { float: left; padding: 0 20px; max-width: 400px; } .honos-latest-news-img { margin-bottom: 20px; display: block; } .latest-news-title { font-size: 19px; color: #000; margin-bottom: 10px; display: block; } .latest-news-excerpt { margin: 0; margin-bottom: 15px; color: #555; font-family: 'Open Sans'; } .latest-news-meta { font-size: 11px; text-transform: uppercase; padding: 6px 0px 5px; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; margin-bottom: 15px; } .latest-news-meta .latest-news-date { float: left; font-family: 'Lato'; } .latest-news-meta .latest-news-comments { float: right; font-family: 'Lato'; } .latest-news-meta .latest-news-date:before, .latest-news-meta .latest-news-comments:before { margin-right: 5px; color: #ccc; } .honos-latest-news-next, .honos-latest-news-prev { float: right; width: 35px; height: 35px; border: 2px solid #ddd; background: transparent; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; cursor: pointer; display: block; text-align: center; line-height: 32px; color: #ddd; position: relative; bottom: -15px; } .honos-latest-news-next:before { position: relative; right: -1px; } .honos-latest-news-prev { margin-right: 10px; } .honos-latest-news-next:hover, .honos-latest-news-prev:hover { color: #777; border-color: #777; } .latest-news-read-more { height: 30px; padding: 0 12px; font-size: 12px; line-height: 26px; font-weight: 600; border: 2px solid #DDD; border-radius: 2px; color: #888; box-shadow: none; display: inline-block; text-transform: uppercase; } .latest-news-read-more:hover { color: #000; border-color: #AAA; } .float-left { float: left; } /* Testimonial */ .testimonial-image { float: left; margin-right: 30px; position: relative; } .testimonial-image img { max-width: 120px; display: block; } .testimonial-author { font-size: 12px; line-height: 16px; display: block; color: #fff; font-family: 'Open Sans'; font-weight: 600; position: absolute; bottom: 0; width: 100%; background-color: rgba(0,0,0,0.4); padding: 5px 10px; } .testimonial-title { font-family: 'Libre Baskerville'; display: block; font-size: 24px; line-height: 30px; color: #2B2B2B; } .testimonial-stars { margin-top: 10px; } .testimonial-stars i { font-size: 20px; color: #CCA876; } .testimonial-content { color: #4A4A4A; font-size: 15px; line-height: 25px; font-family: 'Open Sans'; font-weight: 400; margin-top: 19px; } .testimonial-item { width: 670px; } #testimonial-container { width: 20000em; position: relative; } .testimonial-wrapper { position: relative; overflow: hidden; width: 670px; padding: 100px 0 90px; } .testimonial-item { float: left; } .testimonial-pagination a { width: 12px; height: 12px; font-size: 0px; display: block; border: 2px solid transparent; border-radius: 50%; background-color: #d0d0d0; outline: none; text-decoration: none; background-clip: content-box; margin: 0 4px; float: left; } .testimonial-pagination a.active { border-color: #CCA876; background-color: transparent; } .testimonial-main-wrapper { position: relative; margin-bottom: 50px; } .tespimonial-background { position: absolute; height: 100%; background-repeat: no-repeat !important; background-position: center right !important; background-color: #efefef !important; } .testimonial-pagination { margin-left: 150px; } .testimonial-data { min-height: 145px; } /* Footer */ .footer-wrapper { background-color: #000; margin-top: 50px; } .bottom-footer { padding: 20px 0; background-color: rgba(255,255,255,.05); border-top: 1px solid #1f1f1f; } .bottom-footer-inner, .footer-links-container { max-width: 1170px; padding: 0 15px; margin: 0 auto; } .footer-links-container { padding: 40px 0 50px 0; } .footer-social a { color: #545454; font-size: 12px; border: 1px solid #545454; width: 32px; height: 32px; display: block; float: right; text-align: center; line-height: 32px; margin-left: 6px; } .footer-social a:hover { color: #fff; border-color: #fff; } .copyright { float: left; line-height: 32px; } /* Blog */ .single-image-container { margin-bottom: 27px; } .single-image-container img { width: 100%; height: auto; } .entry-header .entry-title { margin-top: 0; line-height: 30px; } .post-meta > span { padding-right: 18px; } .post-meta > span:last-child { padding: 0; } .post-meta .post-date { text-transform: uppercase; } .post-meta .post-category, .post-meta .post-comments, .post-meta .post-date { color: #bbb; font-size: 13px; font-family: 'Lato'; text-transform: uppercase; } .post-meta .post-category a, .post-meta .post-comments a { color: #bbb; font-size: 13px; text-transform: uppercase; } .post-meta .post-category a:hover, .post-meta .post-comments a:hover { color: #727272; } .entry-summary p { font-size: 14px; line-height: 25px; color: #727272; font-family: 'Open Sans'; } #entry-content-wrapper, #entry-content-wrapper p { font-size: 14px; line-height: 25px; font-family: 'Open Sans'; } body.blog #main-content, body.search #main-content, body.page #main-content, body.error404 #main-content, body.archive #main-content { margin-top: 121px; } body #main-content, body.error404 #primary { min-height: 600px; } body.error404 #content { width: 100%; } body.blog .content-wrapper article, body.search .content-wrapper article, body.archive .content-wrapper article { width: 50%; float: left; padding: 0 30px; padding-bottom: 50px; } body.blog .content-wrapper, body.search .content-wrapper, body.archive .content-wrapper { margin: 0 -30px; } .main-page-title { margin: 0; font-size: 36px; line-height: 44px; font-weight: normal; text-align: center; padding: 90px 0 60px } body.page.sidebar-right .main-page-title, body.page.sidebar-left .main-page-title { max-width: 75%; } body.page.sidebar-left .main-page-title { float: right; width: 100%; } /* Single post */ body.single .main-content { margin-top: 181px } body.single .single-post-image-container, body.page #entry-content-wrapper > img { margin-bottom: 30px; } body.single .post-meta { margin-bottom: 12px; } body.single .post-meta > span { font-size: 13px; padding-right: 30px; color: #bbb; text-transform: uppercase; font-family: 'Lato'; } body.single .entry-title { margin-top: 0; margin-bottom: 6px; } body.single .single-post-share { margin: 23px 0 60px 0; background-color: #f5f5f5; padding: 20px; } body.single .single-post-share a { width: 28px; height: 28px; display: inline-block; line-height: 30px; text-align: center; border-radius: 50%; color: #fff; background-color: #999; font-size: 14px; margin-right: 7px; margin-bottom: 0; border: none; box-shadow: none; } body.single .single-post-share a.icon-vkontakte:before, body.single .single-post-share a.icon-facebook:before { position: relative; left: -1px; } body.single .single-post-share a:hover { background-color: #CCA876; } .single-post-share > span { margin-right: 10px; } #author-avatar { float: left; margin-right: 15px; } #author-description .author-text { color: #222; } #author-description p { line-height: 22px; } .comment-edit-link { margin-left: 10px; } .comments-container #submit, .widget.widget_search form input[type=submit] { background-color: #CCA876; color: #fff; } .comments-container #submit:hover, .widget.widget_search form input[type=submit]:hover { background-color: #9B7B4D; } .footer-links-container .newsletter.newsletter-widget form > *:nth-child(2) { float: left; width: 55%; } .footer-links-container .newsletter.newsletter-widget form > *:nth-child(3) { float: left; width: 45%; } .btn { border-radius: 0; border: none; } .btn-xs { padding: 4px 7px; } .btn-sm { padding: 7px 15px; } .btn-warning { background-color: #CCA876; } .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { background-color: #9B7B4D; } /* Wordpress Core */ .sticky { border-top: 2px solid #CCA876; } .sticky-featured-post { position: absolute; top: 0; right: 10px; } .bypostauthor { text-decoration: none; } .alignnone { margin: 5px 20px 20px 0; } .aligncenter, div.aligncenter { display: block; margin: 5px auto 5px auto; } .alignright { float:right; margin: 5px 0 20px 20px; } .alignleft { float: left; margin: 5px 20px 20px 0; } .aligncenter { display: block; margin: 5px auto 5px auto; } a img.alignright { float: right; margin: 5px 0 20px 20px; } a img.alignnone { margin: 5px 20px 20px 0; } a img.alignleft { float: left; margin: 7px 32px 0px 0; } a img.aligncenter { display: block; margin-left: auto; margin-right: auto } .wp-caption { max-width: 96%; /* Image does not overflow the content area */ padding: 5px 3px 10px; text-align: center; } .wp-caption.alignnone { margin: 5px 20px 20px 0; } .wp-caption.alignleft { margin: 5px 20px 20px 0; } .wp-caption.alignright { margin: 5px 0 20px 20px; } .wp-caption img { border: 0 none; height: auto; margin: 0; max-width: 98.5%; padding: 0; width: auto; } .wp-caption p.wp-caption-text { font-size: 11px; line-height: 17px; margin: 0; padding: 0 4px 5px; } .widget .search-form label { width: 100%; display: inline-block; } .textwidget iframe { width: 100%; } .post-password-form label { float: left; } .error404 .content-area .search-form .search-submit, .no-results-wrapper .search-form .search-submit { padding: 13px 20px; position: relative; top: -1px; } .post-password-form input[type=submit], .no-results-wrapper input[type=submit] { height: 34px; padding: 0 25px; margin-left: 10px; } .error404 .content-area .search-form .search-field, .no-results-wrapper .search-form .search-field { height: 41px; line-height: 41px; border-color: #555; display: inline-block; } .comments-container li.pingback { margin-left: 40px; margin-bottom: 5px; width: 90%; } /* Widgets */ #footer-sidebar li, #footer-sidebar .children li:first-child { margin-top: 8px; } #footer-sidebar li:first-child { margin-top: 0; } #footer-sidebar li:before { content: '\24'; font-family: 'icons'; display: inline-block; -webkit-transform: translateX(-10px); -moz-transform: translateX(-10px); -o-transform: translateX(-10px); -ms-transform: translateX(-10px); transform: translateX(-10px); -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; -ms-transition: all 0.2s ease-in; transition: all 0.2s ease-in; } #footer-sidebar li:hover:before { -webkit-transform: translateX(-5px); -moz-transform: translateX(-5px); -o-transform: translateX(-5px); -ms-transform: translateX(-5px); transform: translateX(-5px); } #footer-sidebar li a { color: #6d6e64; } #footer-sidebar li a:hover { color: #efbe02; } /* No results */ .no-results-wrapper form { margin-top: 15px; } .no-results-wrapper form .screen-reader-text { display: none; } .no-results-wrapper .search-form .search-submit { top: 0; } /* 404 error */ .error404 .content-area #content, .search-no-results .no-results-wrapper { max-width: 1200px; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } .error404 .content-area .page-content { margin-top: 50px; } .error404 .content-area .screen-reader-text { display: none; } .error404 .content-area .search-form { text-align: center; } .error404 .content-area .page-content p { font-size: 2em; font-weight: 300; text-align: center; color: #555; } .error404 .content-area header.page-header h1 { font-size: 15em; font-weight: bold; color: #555; margin: 0; } body.error404 #primary.content-area { height: 100%; position: relative; } body.error404 .page-header { border: none; margin: 0; margin-top: -35px; } .error404 .content-area .search-form { margin-top: 15px; } /* Gallery */ .entry-content .tiled-gallery { margin-bottom: 30px; } .tiled-gallery .gallery-row { margin-right: auto; margin-left: auto; width: 100% !important; } .entry-content .tiled-gallery-caption { background: #09c; color: #fff; } .entry-content .tiled-gallery .tiled-gallery-caption { margin-left: 2px; width: 98.5%; } .entry-content .tiled-gallery .tiled-gallery-item-large .tiled-gallery-caption { margin-left: 2px; width: 99.2%; } .gallery { margin-bottom: 20px; } .gallery-item { float: left; margin: 0 4px 4px 0; overflow: hidden; position: relative; } .gallery-columns-1 .gallery-item { max-width: 100%; } .gallery-columns-2 .gallery-item { max-width: 48%; max-width: -webkit-calc(50% - 4px); max-width: calc(50% - 4px); } .gallery-columns-3 .gallery-item { max-width: 32%; max-width: -webkit-calc(33.3% - 4px); max-width: calc(33.3% - 4px); } .gallery-columns-4 .gallery-item { max-width: 23%; max-width: -webkit-calc(25% - 4px); max-width: calc(25% - 4px); } .gallery-columns-5 .gallery-item { max-width: 19%; max-width: -webkit-calc(20% - 4px); max-width: calc(20% - 4px); } .gallery-columns-6 .gallery-item { max-width: 15%; max-width: -webkit-calc(16.7% - 4px); max-width: calc(16.7% - 4px); } .gallery-columns-7 .gallery-item { max-width: 13%; max-width: -webkit-calc(14.28% - 4px); max-width: calc(14.28% - 4px); } .gallery-columns-8 .gallery-item { max-width: 11%; max-width: -webkit-calc(12.5% - 4px); max-width: calc(12.5% - 4px); } .gallery-columns-9 .gallery-item { max-width: 9%; max-width: -webkit-calc(11.1% - 4px); max-width: calc(11.1% - 4px); } .gallery-columns-1 .gallery-item:nth-of-type(1n), .gallery-columns-2 .gallery-item:nth-of-type(2n), .gallery-columns-3 .gallery-item:nth-of-type(3n), .gallery-columns-4 .gallery-item:nth-of-type(4n), .gallery-columns-5 .gallery-item:nth-of-type(5n), .gallery-columns-6 .gallery-item:nth-of-type(6n), .gallery-columns-7 .gallery-item:nth-of-type(7n), .gallery-columns-8 .gallery-item:nth-of-type(8n), .gallery-columns-9 .gallery-item:nth-of-type(9n) { margin-right: 0; } .gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1), .gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1), .gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1), .gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) { clear: left; } .gallery-caption { background-color: rgba(0, 0, 0, 0.7); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; color: #fff; font-size: 12px; line-height: 1.5; margin: 0; max-height: 50%; opacity: 0; padding: 6px 8px; position: absolute; bottom: 0; left: 0; text-align: left; width: 100%; } .gallery-caption:before { content: ""; height: 100%; min-height: 49px; position: absolute; top: 0; left: 0; width: 100%; } .gallery-item:hover .gallery-caption { opacity: 1; } .gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption { display: none; } .wp-audio-shortcode { margin-bottom: 30px; } /* Widgets */ #secondary .widget { margin-bottom: 30px; } #secondary .widget > h4 { font-weight: 600; margin-top: 0; margin-bottom: 35px; text-align: center; font-size: 26px; } .footer-links-container .widget > h4 { margin-top: 0; color: #fff; padding: 6px 0 14px 0; } .widget table, .widget p { margin: 0; padding: 0; } .widget_nav_menu ul, .widget_recent_comments ul, .widget_rss ul, .widget_pages ul, .widget_archive ul, .widget_categories ul, .widget_meta ul, .widget_recent_entries ul { margin: 0; list-style: none; padding-left: 0; } .widget_nav_menu ul ul.children, .widget_recent_comments ul ul.children, .widget_rss ul ul.children, .widget_pages ul ul.children, .widget_archive ul ul.children, .widget_categories ul ul.children, .widget_meta ul ul.children, .widget_recent_entries ul ul.children, .widget_nav_menu ul ul.sub-menu { margin-top: 10px; } #content-sidebar .widget_nav_menu ul li, #content-sidebar .widget_recent_comments ul li, #content-sidebar .widget_rss ul li, #content-sidebar .widget_pages ul li, #content-sidebar .widget_archive ul li, #content-sidebar .widget_categories ul li, #content-sidebar .widget_meta ul li, #content-sidebar .widget_recent_entries ul li { font-size: 16px; margin: 0; margin-bottom: 10px; } .footer-links-container .widget_nav_menu ul li:before, .footer-links-container .widget_recent_comments ul li:before, .footer-links-container .widget_rss ul li:before, .footer-links-container .widget_pages ul li:before, .footer-links-container .widget_archive ul li:before, .footer-links-container .widget_categories ul li:before, .footer-links-container .widget_meta ul li:before, .footer-links-container .widget_recent_entries ul li:before { content: '\e973'; font-family: 'icons'; margin-right: 5px; } .widget_nav_menu ul li:last-child, .widget_recent_comments ul li:last-child, .widget_rss ul li:last-child, .widget_pages ul li:last-child, .widget_archive ul li:last-child, .widget_categories ul li:last-child, .widget_meta ul li:last-child, .widget_recent_entries ul li:last-child { margin-bottom: 0; } .widget_nav_menu ul li a, .widget_recent_comments ul li a, .widget_rss ul li a, .widget_pages ul li a, .widget_archive ul li a, .widget_categories ul li a, .widget_meta ul li a, .widget_recent_entries ul li a { font-weight: 600; font-size: 13px; text-transform: uppercase; } .widget.widget_nav_menu div > ul { padding-left: 0; } .widget_nav_menu ul li:last-child, .widget_recent_comments ul li:last-child, .widget_rss ul li:last-child, .widget_pages ul li:last-child, .widget_archive ul li:last-child, .widget_categories ul li:last-child, .widget_meta ul li:last-child, .widget_recent_entries ul li:last-child { border-bottom: 0 none; padding-bottom: 0; } .footer-links-container .widget { margin-bottom: 30px; } .footer-links-container .widget:last-child { margin-bottom: 0; } .tagcloud:after { content: " "; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } .tagcloud a { background-color: #e7e7e7; color: #828282 !important; display: block; float: left; margin: 0 6px 5px 0; padding: 0px 10px; font-size: 13px !important; text-transform: uppercase; line-height: 38px; border-radius: 2px; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .tagcloud a:hover { opacity: 0.8; } .widget_rss img { display: none; } .widget .widget-title { color: #4c4a4b; font-weight: 400; font-size: 20px; padding: 0; } .widget-area .widget .widget-title { padding-bottom: 32px; margin: 0; font-size: 3.1vw; font-weight: 700; line-height: 1.25; color: #000; text-align: center; } .widget-area .widget .widget-title:before { content: ''; display: inline-block; height: 40px; width: 4px; position: relative; margin-right: 15px; } .honos-about-author .author-name { font-size: 16px; line-height: 20px; font-weight: 600; color: #4b494a; display: block; padding-top: 26px; } .honos-about-author .author-position { font-size: 14px; line-height: 20px; font-style: italic; color: #828282; display: block; padding-top: 7px; } .honos-about-author .about-author-social { margin-left: -7px; padding-top: 8px; font-size: 16px; } .honos-about-author .about-author-social a { margin-right: 6px; } .honos-about-author .author-description { padding-top: 13px; color: #828282; } .about-author-secondary { padding-bottom: 22px; } .widget.widget_recent_entries .news_image { float: left; } .widget.widget_recent_entries .post_container { padding-left: 90px; } .widget.widget_recent_entries .post_container.no_thumb { padding-left: 0; } .widget.widget_recent_entries h3 { padding: 0; clear: none; line-height: 24px; } .widget.widget_recent_entries h3 a { font-size: 16px; font-weight: 400; margin-top: -6px; display: inline-block; } .widget.widget_recent_entries .post-time { font-size: 14px; color: #828282; } .widget.widget_recent_entries .post-time:before { font-size: 16px; margin-right: 8px; } .widget.widget_fastflickrwidget { margin-right: -5px; } .widget.widget_fastflickrwidget a { width: 25%; display: inline-block; } .widget.widget_fastflickrwidget a img { width: 100%; height: auto; margin: 0; padding-right: 5px; padding-bottom: 5px; } .content-sidebar .widget.widget_newsletterwidget > p { margin-top: -17px; } .content-sidebar .widget.widget_newsletterwidget form { margin-top: 12px; } .content-sidebar .widget.widget_newsletterwidget form p { float: none; } .content-sidebar .widget.widget_newsletterwidget .newsletter-email { width: 100%; background-color: #e7e7e7; margin-bottom: 10px; } .widget.fep_login input[type="text"], .widget.fep_login input[type="password"] { width: 100%; border-radius: 0; border: none; background-color: #e7e7e7; color: #818181; margin-bottom: 10px; outline: none; height: 40px; line-height: 40px; font-size: 14px; padding: 0 13px; } .widget.fep_login input[type="submit"] { float: right; border-radius: 0; font-weight: 600; padding: 2px 32px; font-size: 14px; } .widget.fep_login .frontendlogin-submit label { font-size: 14px; color: #a9a9a9; line-height: 38px; } .honos-checkbox { width: 24px; height: 24px; background-color: #e7e7e7; display: inline-block; float: left; margin-top: 7px; margin-right: 8px; cursor: pointer; position: relative;; } .honos-checkbox.checked:before { content: '\e807'; font-family: 'icons'; color: #2599d6; position: absolute; top: 0; width: 24px; height: 24px; text-align: center; line-height: 24px; display: inline-block; font-size: 16px; } #rememberme { display: none; } .widget.fep_login form > a { font-size: 14px; margin-top: 13px; display: inline-block; } body #main .widget.widget_honos-directory-followers > div { margin-bottom: 2px; } .widget.widget_honos-directory-followers > div a { font-size: 15px; color: #fff; height: 46px; line-height: 46px; display: inline-block; width: 100%; padding-left: 9px; position: relative; overflow: hidden; } .widget.widget_honos-directory-followers > div a:hover { opacity: 0.8; } .widget.widget_honos-directory-followers > div a:before { font-size: 22px; margin-right: 42px; position: relative; z-index: 2; } .widget.widget_honos-directory-followers > div a:after { content: ''; position: absolute; height: 100px; width: 100px; top: -40px; left: -43px; z-index: 1; background-color: rgba(0,0,0,0.1); -webkit-transform: rotate(30deg); -ms-transform: rotate(30deg); transform: rotate(30deg); } .widget.widget_honos-directory-followers > div a span { font-weight: 600; font-size: 16px; padding-right: 4px; } .follow-me-twitter a { background-color: #00acee; } .follow-me-twitter a:before { top: 3px; left: 2px; } .follow-me-facebook a { background-color: #315a98; } .follow-me-facebook a:before { top: 3px; } .follow-me-rss a { background-color: #f4821f; } .follow-me-rss a:before { top: 3px; left: 1px; } .follow-me-googleplus a { background-color: #df4a32; } .follow-me-googleplus a:before { top: 4px; left: 3px; } .follow-me-youtube a { background-color: #cd1225; } .follow-me-youtube a:before { top: 3px; left: 2px; } .follow-me-vimeo a { background-color: #1ab7ea; } .follow-me-vimeo a:before { top: 3px; left: 2px; } .follow-me-soundcloud a { background-color: #ff5500; } .follow-me-soundcloud a:before { top: 3px; left: -3px; } .follow-me-instagram a { background-color: #2b5c84; } .follow-me-instagram a:before { top: 4px; left: 2px; } .widget.widget_search .screen-reader-text { display: none !important; } .newsletter.newsletter-widget { margin-top: 12px; } .newsletter.newsletter-widget .newsletter-email { margin-bottom: 10px; width: 100%; } /*#content-sidebar .widget li .post-date { float: right; } #content-sidebar .widget.widget_categories li, #content-sidebar .widget.widget_archive li { text-align: right; } #content-sidebar .widget.widget_categories li a, #content-sidebar .widget.widget_archive li a { float: left; }*/ /* WP Search widget */ .widget.widget_search form .search-field { padding: 10px 10px 11px; margin-bottom: 10px; overflow: hidden; width: 100%; } .widget.widget_search form input[type=submit] { float: right; } .widget.widget_search form:after { content: " "; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } .widget p { color: #828282; } /* WP Calendar */ #calendar_wrap { padding: 0; } #wp-calendar { border: 0; border-spacing: 1px; table-layout: fixed; width: 100%; margin: 0 auto; padding-bottom: 30px; } #wp-calendar thead tr th { border-width: 0; text-align: center; background: #f1f1f1; line-height: 40px; height: 40px; font-size: 12px; } #wp-calendar caption { font-size: 16px; line-height: 40px; text-align: center; font-weight: 300; margin: 0 0 10px 0; } #wp-calendar td#prev a, #wp-calendar td#next a { height: 40px; border: 0; display: inline-block; color: #A7A7A7; font-size: 16px; line-height: 40px; text-align: center; font-weight: 300; } #wp-calendar thead th i:before { margin: 0; width: auto; } #wp-calendar td#prev { text-align: left; border: 0; } #wp-calendar td#next { text-align: right; border: 0; } #wp-calendar tbody td { border: 1px solid #f1f1f1; height: 40px; line-height: 40px; padding: 0; color: #A7A7A7; font-size: 14px; background: #fff; position: relative; text-align: center; font-weight: 300; } #wp-calendar td.pad { background: none; border: none; } #wp-calendar tbody td a { position: absolute; top: 0; bottom: 0; left: 0; right: 0; text-align: center; line-height: 40px; } #wp-calendar tbody td.dayWithPost a:hover { color: #09c; } #wp-calendar tbody td.today { color: #6e7a89; background: #f1f1f1; } .widget .divider { position: relative; } .widget .divider:after { content: ""; position: absolute; bottom: 29px; right: 0; width: 100%; border-bottom: 1px solid rgb(219, 219, 219); z-index: 0; } .content-sidebar .widget > div:not(.divider), .content-sidebar .widget > ul, .content-sidebar .widget > select, .content-sidebar .widget > form { position: relative; margin-bottom: 30px; } .content-sidebar .widget > ul { padding-left: 0; } body.single:not(.single-service) #primary { margin-bottom: 75px; } .open-post-image img { max-width: 100%; } /* Comments */ .comments-container { margin-top: 42px; overflow: hidden; } .comments-container ol.commentlist { list-style-type: none; } .comments-container ul, .comments-container li, .comments-container ol { margin: 0; padding: 0; } .comment-content ul, .comment-content ol { margin: 0 0 24px 20px; } .comments-container ol.children { margin-bottom: 0; margin-left: 85px; list-style-type: none; } .comments-container .comment-author b, .comments-container p:last-child { margin: 0; padding: 0; } .comments-container .comment-author b a { text-decoration: none; } .comments-container p.no-comments { margin-top: 50px; text-align: center; } .comments-container .comments-title { margin: 0 0 30px 0; padding: 0; font-size: 29px; line-height: 35px; text-align: center; padding-top: 20px; } .comments-container .comments-title span { font-weight: 700; } .comments-container .comment-author b { text-transform: capitalize; display: inline-block; font-weight: 400; color: #6d6e64; font-size: 1.5em; } .comment-metadata a { text-decoration: none; } .comments-container .comment-meta { font-size: 12px; } .comment-metadata time { font-style: italic; } .comments-container .says { display: none; } .comments-container img.avatar { overflow: hidden; display: inline-block; float: left; margin-right: 20px; } .comments-container .comment { margin-top: 25px; } .comment-content { display: block; overflow: hidden; margin-top: 0; margin-left: 84px; padding-right: 35px; padding-bottom: 10px; margin-top: 10px; } .comment-content p { font-size: 0.9em; line-height: 22px; } .comment-body { padding-top: 15px; } .commentlist > li.comment:first-child > .comment-body { border: 0; } .comments-container h3#reply-title { font-weight: 400; padding-top: 0px; font-size: 28px; } .comments-container div.reply { display: block; text-align: right; } article.hentry .edit-link { display: block; text-align: left; overflow: hidden; } article.hentry .post-edit-link, .comments-container .comment-reply-link { display: inline-block; padding: 5px 10px; border: 2px solid #fff; font-size: 0.9em; text-decoration: none; } article.hentry .post-edit-link:hover, .comment-reply-link:hover { background-color: #fff; color: #555; } article.hentry .more-link { position: relative; color: #2B2B2C; font-size: 20px; text-align: center; margin-top: 40px; margin-bottom: 30px; min-height: 40px; width: 100%; display: inline-block; font-family: "Merriweather"; -webkit-transition: color 0.2s; -moz-transition: color 0.2s; transition: color 0.2s; } article.hentry .more-link:focus { outline: none; } article.hentry .more-link::before { position: absolute; top: 20px; left: 50%; color: transparent; content: '•'; text-shadow: 0 0 transparent; font-size: 1em; -webkit-transition: text-shadow 0.3s, color 0.3s; -moz-transition: text-shadow 0.3s, color 0.3s; transition: text-shadow 0.3s, color 0.3s; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); transform: translateX(-50%); pointer-events: none; } article.hentry .more-link:hover::before, article.hentry .more-link:focus::before { color: #09c; text-shadow: 13px 0 #09c, -13px 0 #09c; } article.hentry .more-link:hover { color: #09c; } article.hentry .more-link .meta-nav { display: none; } .comments-container .comment-form p { margin-bottom: 5px; } .comments-container .comment-form p.logged-in-as, .comments-container .comment-form p.comment-notes { margin-bottom: 35px; text-align: center; } .comments-container .comment-form p.form-submit { margin-top: 10px; } .comments-container .comment-form:after { content: ""; clear: both; display: block; } .comments-container .comment-form p label { display: block; font-size: 16px; margin-bottom: 3px; float: left; width: 80px; } .comments-container .comment-form p.comment-form-comment label { display: none; } .comments-container .comment-form #comment { width: 100%; } body .comments-container .comment-form-top input { font-size: 14px; color: #828282; border: none; border-radius: 0; width: 100%; padding: 16px 10px 16px 0; outline: none; padding: 10px; border: 1px solid rgba(109, 110, 100, 0.5); } .comment-form-top > span { width: 33.33%; float: left; display: inline-block; padding: 0 6px; } .comment-form-top { margin: 0 -6px; margin-top: 10px; } .comment-form-before { color: #6d6e64; } body .comments-container textarea { font-size: 14px; color: #828282; padding: 0; border-radius: 0; border: none; margin-top: 15px; max-height: 141px; outline: none; padding: 10px; border: 1px solid rgba(109, 110, 100, 0.5); } .comments-container #submit { margin-top: 12px; } #footer-sidebar > aside { text-align: center; margin-bottom: 40px; } #footer-sidebar > aside:last-child { margin-bottom: 0; } /* Page navigation */ .entry-content .page-links, .pagination { margin: 0; position: relative; left: 50%; margin-top: 50px; margin-bottom: 72px; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -o-transform: translateX(-50%); } .pagination .page-numbers.dots { display: none; } .page-links-title { float: left; padding-right: 15px; } .entry-content .page-links a, .entry-content .page-links > span:not(.page-links-title), .pagination a, .pagination span.page-numbers.current { display: inline-block; margin: 0 5px; text-align: center; height: 34px; width: 34px; line-height: 34px; position: relative; float: left; font-size: 14px; border: 1px solid #727272; border-radius: 50%; } .entry-content .page-links > span:not(.page-links-title), .pagination span.page-numbers.current { color: #4b494a; font-weight: 600; } .pagination.loop-pagination a.prev { text-align: center; padding: 0; background-color: #CCA876; color: #fff; border: none; } .pagination.loop-pagination a.prev:before { content: '\e813'; font-family: 'icons'; z-index: 2; background-color: transparent; border: none; } .pagination.loop-pagination a.next { text-align: center; padding: 0; background-color: #CCA876; color: #fff; border: none; } .pagination.loop-pagination a.next:before { content: '\27'; font-family: 'icons'; z-index: 2; background-color: transparent; border: none; } .pagination.loop-pagination a.prev:hover, .pagination.loop-pagination a.next:hover { background-color: #9B7B4D; } span.page-numbers.dots { margin-left: 5px; } .entry-content .page-links a:hover:before, .pagination a:hover:before { background-color: #dddddd; } .entry-content .page-links a:nth-last-child(2):before, .entry-content .page-links > span:not(.page-links-title):nth-last-child(2):before, .pagination a:nth-last-child(2):before, .pagination span.page-numbers.current:before:nth-last-child(2):before { border-right: none; } /* Tables */ article .entry-content table { width: 100%; } article .entry-content table thead { background: #f7f7f7; } article .entry-content table thead th { font-weight: bold; text-align: left; } article .entry-content table td, article .entry-content table th { padding: 10px; } article .entry-content table th { font-weight: 400; } article .entry-content table td { font-weight: 300; } article .entry-content table tr:nth-child(even) { background: #f7f7f7; } .navbar-toggle { background-color: #fff; margin: 15px 15px 14px; } .navbar-toggle .icon-bar { background-color: #428bca; } /* Responsiveness */ @media (max-width: 1200px) { .row.slider-overlay { width: auto !important; left: 0px !important; margin: 0 -37px !important; margin-top: 0 !important; } .slider-overlay-left, .slider-overlay-right, .slider-overlay-middle { width: 33.33%; } .slider-overlay-left-inner, .slider-overlay-right-inner { max-width: none; } .fp-slide-inner-container { padding: 0 70px; } .tespimonial-background { background-image: none !important; } } @media (min-width: 992px) and (max-width: 1200px) { } @media (max-width: 991px) { } @media (min-width: 768px) and (max-width: 991px) { .footer-links-container .newsletter.newsletter-widget form > *:nth-child(2), .footer-links-container .newsletter.newsletter-widget form > *:nth-child(3) { width: 100%; } } @media (max-width: 768px) { .header-bottom #primary-navigation { display: none; } .mobile-menu-button { display: block; } .practice-container > div { width: 50%; } body.blog .content-wrapper article, body.search .content-wrapper article, body.archive .content-wrapper article { width: 100%; } .slider-overlay-left, .slider-overlay-right, .slider-overlay-middle { width: 100% !important; height: auto !important; } .fp-slide-inner-container .fp-slide-title { width: auto; } .fp-slide-inner { width: 80%; } .footer-links-container .widget { margin-bottom: 30px !important; } } @media (max-width: 570px) { .header-top .free-consult { display: none; } .honos-latest-news-item { max-width: 570px; } .fp-slide-inner { bottom: 180px; } } @media (max-width: 480px) { .header-logo { max-width: 70%; } .practice-container > div { width: 100%; } .fp-slide-inner { bottom: 180px; } } /* Fontello fonts */ @font-face { font-family: 'icons'; src: url('fonts/options.eot?69397903'); src: url('fonts/options.eot?69397903#iefix') format('embedded-opentype'), url('fonts/options.woff?69397903') format('woff'), url('fonts/options.ttf?69397903') format('truetype'), url('fonts/options.svg?69397903#options') format('svg'); font-weight: normal; font-style: normal; } /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ /* @media screen and (-webkit-min-device-pixel-ratio:0) { @font-face { font-family: 'options'; src: url('../font/options.svg?69397903#options') format('svg'); } } */ [class^="icon-"]:before, [class*=" icon-"]:before { font-family: "icons"; font-style: normal; font-weight: normal; speak: none; display: inline-block; text-decoration: inherit; width: 1em; margin-right: .2em; text-align: center; /* opacity: .8; */ /* For safety - reset parent styles, that can break glyph codes*/ font-variant: normal; text-transform: none; /* fix buttons height, for twitter bootstrap */ line-height: 1em; /* Animation center compensation - margins should be symmetric */ /* remove if not needed */ margin-left: .2em; /* you can be more comfortable with increased icons size */ /* font-size: 120%; */ /* Font smoothing. That was taken from TWBS */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; /* Uncomment for 3D effect */ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ } .icon-right:before { content: '\27'; } /* ''' */ .icon-minus:before { content: '\e800'; } /* '' */ .icon-info-circled:before { content: '\e801'; } /* '' */ .icon-attention-circled:before { content: '\e802'; } /* '' */ .icon-cancel:before { content: '\e803'; } /* '' */ .icon-ok:before { content: '\e804'; } /* '' */ .icon-tree:before { content: '\e805'; } /* '' */ .icon-move:before { content: '\e806'; } /* '' */ .icon-th-list:before { content: '\e807'; } /* '' */ .icon-database:before { content: '\e808'; } /* '' */ .icon-vimeo:before { content: '\e809'; } /* '' */ .icon-server:before { content: '\e80a'; } /* '' */ .icon-lifebuoy:before { content: '\e80b'; } /* '' */ .icon-rebel:before { content: '\e80c'; } /* '' */ .icon-phone-squared:before { content: '\e80d'; } /* '' */ .icon-tag:before { content: '\e80e'; } /* '' */ .icon-user:before { content: '\e80f'; } /* '' */ .icon-comment-empty:before { content: '\e810'; } /* '' */ .icon-empire:before { content: '\e811'; } /* '' */ .icon-maxcdn:before { content: '\e812'; } /* '' */ .icon-left:before { content: '\e813'; } /* '' */ .icon-eye:before { content: '\e814'; } /* '' */ .icon-heart-1:before { content: '\e815'; } /* '' */ .icon-heart-empty:before { content: '\e816'; } /* '' */ .icon-rss-squared:before { content: '\e817'; } /* '' */ .icon-linkedin-1:before { content: '\e818'; } /* '' */ .icon-picture:before { content: '\e819'; } /* '' */ .icon-doc-inv:before { content: '\e81a'; } /* '' */ .icon-file-video:before { content: '\e81b'; } /* '' */ .icon-file-audio:before { content: '\e81c'; } /* '' */ .icon-quote-left-1:before { content: '\e81d'; } /* '' */ .icon-link:before { content: '\e81e'; } /* '' */ .icon-bookmark:before { content: '\e81f'; } /* '' */ .icon-search:before { content: '\e820'; } /* '' */ .icon-mail-alt:before { content: '\e821'; } /* '' */ .icon-music:before { content: '\e822'; } /* '' */ .icon-glass:before { content: '\e823'; } /* '' */ .icon-mail:before { content: '\e824'; } /* '' */ .icon-mail-squared:before { content: '\e825'; } /* '' */ .icon-star:before { content: '\e826'; } /* '' */ .icon-star-empty:before { content: '\e827'; } /* '' */ .icon-star-half:before { content: '\e828'; } /* '' */ .icon-star-half-alt:before { content: '\e829'; } /* '' */ .icon-user-plus:before { content: '\e82a'; } /* '' */ .icon-user-times:before { content: '\e82b'; } /* '' */ .icon-users:before { content: '\e82c'; } /* '' */ .icon-male:before { content: '\e82d'; } /* '' */ .icon-female:before { content: '\e82e'; } /* '' */ .icon-child:before { content: '\e82f'; } /* '' */ .icon-user-secret:before { content: '\e830'; } /* '' */ .icon-plus-squared-alt:before { content: '\e831'; } /* '' */ .icon-plus-squared:before { content: '\e832'; } /* '' */ .icon-plus-circled:before { content: '\e833'; } /* '' */ .icon-cancel-circled2:before { content: '\e834'; } /* '' */ .icon-ok-squared:before { content: '\e835'; } /* '' */ .icon-ok-circled2:before { content: '\e836'; } /* '' */ .icon-th:before { content: '\e837'; } /* '' */ .icon-camera-alt:before { content: '\e838'; } /* '' */ .icon-camera:before { content: '\e839'; } /* '' */ .icon-video:before { content: '\e83a'; } /* '' */ .icon-minus-circled:before { content: '\e83b'; } /* '' */ .icon-minus-squared:before { content: '\e83c'; } /* '' */ .icon-videocam:before { content: '\e83d'; } /* '' */ .icon-minus-squared-alt:before { content: '\e83e'; } /* '' */ .icon-help:before { content: '\e83f'; } /* '' */ .icon-help-circled:before { content: '\e840'; } /* '' */ .icon-info:before { content: '\e841'; } /* '' */ .icon-home:before { content: '\e842'; } /* '' */ .icon-unlink:before { content: '\e843'; } /* '' */ .icon-link-ext:before { content: '\e844'; } /* '' */ .icon-attach:before { content: '\e845'; } /* '' */ .icon-link-ext-alt:before { content: '\e846'; } /* '' */ .icon-lock-open:before { content: '\e847'; } /* '' */ .icon-cancel-circled:before { content: '\e848'; } /* '' */ .icon-lock:before { content: '\e849'; } /* '' */ .icon-plus:before { content: '\e84a'; } /* '' */ .icon-lock-open-alt:before { content: '\e84b'; } /* '' */ .icon-ok-circled:before { content: '\e84c'; } /* '' */ .icon-th-large:before { content: '\e84d'; } /* '' */ .icon-pin:before { content: '\e84e'; } /* '' */ .icon-eye-off:before { content: '\e84f'; } /* '' */ .icon-code:before { content: '\e850'; } /* '' */ .icon-attention-alt:before { content: '\e851'; } /* '' */ .icon-bell-off-empty:before { content: '\e852'; } /* '' */ .icon-quote-right-1:before { content: '\e853'; } /* '' */ .icon-file-archive:before { content: '\e854'; } /* '' */ .icon-file-code:before { content: '\e855'; } /* '' */ .icon-location:before { content: '\e856'; } /* '' */ .icon-bell-off:before { content: '\e857'; } /* '' */ .icon-bookmark-empty:before { content: '\e858'; } /* '' */ .icon-flag:before { content: '\e859'; } /* '' */ .icon-flag-empty:before { content: '\e85a'; } /* '' */ .icon-flag-checkered:before { content: '\e85b'; } /* '' */ .icon-thumbs-up:before { content: '\e85c'; } /* '' */ .icon-thumbs-down:before { content: '\e85d'; } /* '' */ .icon-thumbs-up-alt:before { content: '\e85e'; } /* '' */ .icon-thumbs-down-alt:before { content: '\e85f'; } /* '' */ .icon-download:before { content: '\e860'; } /* '' */ .icon-upload:before { content: '\e861'; } /* '' */ .icon-download-cloud:before { content: '\e862'; } /* '' */ .icon-upload-cloud:before { content: '\e863'; } /* '' */ .icon-reply:before { content: '\e864'; } /* '' */ .icon-reply-all:before { content: '\e865'; } /* '' */ .icon-forward:before { content: '\e866'; } /* '' */ .icon-export:before { content: '\e867'; } /* '' */ .icon-export-alt:before { content: '\e868'; } /* '' */ .icon-share-squared:before { content: '\e869'; } /* '' */ .icon-pencil:before { content: '\e86a'; } /* '' */ .icon-pencil-squared:before { content: '\e86b'; } /* '' */ .icon-edit:before { content: '\e86c'; } /* '' */ .icon-print:before { content: '\e86d'; } /* '' */ .icon-retweet:before { content: '\e86e'; } /* '' */ .icon-keyboard:before { content: '\e86f'; } /* '' */ .icon-gamepad:before { content: '\e870'; } /* '' */ .icon-comment-1:before { content: '\e871'; } /* '' */ .icon-chat-empty:before { content: '\e872'; } /* '' */ .icon-bell:before { content: '\e873'; } /* '' */ .icon-direction:before { content: '\e874'; } /* '' */ .icon-compass:before { content: '\e875'; } /* '' */ .icon-trash:before { content: '\e876'; } /* '' */ .icon-trash-empty:before { content: '\e877'; } /* '' */ .icon-doc:before { content: '\e878'; } /* '' */ .icon-docs:before { content: '\e879'; } /* '' */ .icon-doc-text-inv:before { content: '\e87a'; } /* '' */ .icon-file-pdf:before { content: '\e87b'; } /* '' */ .icon-file-word:before { content: '\e87c'; } /* '' */ .icon-file-excel:before { content: '\e87d'; } /* '' */ .icon-file-powerpoint:before { content: '\e87e'; } /* '' */ .icon-folder-empty:before { content: '\e87f'; } /* '' */ .icon-cart-plus:before { content: '\e880'; } /* '' */ .icon-cart-arrow-down:before { content: '\e881'; } /* '' */ .icon-calendar:before { content: '\e882'; } /* '' */ .icon-lightbulb:before { content: '\e883'; } /* '' */ .icon-zoom-in:before { content: '\e884'; } /* '' */ .icon-zoom-out:before { content: '\e885'; } /* '' */ .icon-angle-circled-left:before { content: '\e886'; } /* '' */ .icon-angle-double-right:before { content: '\e887'; } /* '' */ .icon-angle-double-up:before { content: '\e888'; } /* '' */ .icon-angle-circled-right:before { content: '\e889'; } /* '' */ .icon-calendar-empty:before { content: '\e88a'; } /* '' */ .icon-angle-circled-up:before { content: '\e88b'; } /* '' */ .icon-angle-circled-down:before { content: '\e88c'; } /* '' */ .icon-right-circled:before { content: '\e88d'; } /* '' */ .icon-up-circled:before { content: '\e88e'; } /* '' */ .icon-down-circled:before { content: '\e88f'; } /* '' */ .icon-ccw:before { content: '\e890'; } /* '' */ .icon-arrows-cw:before { content: '\e891'; } /* '' */ .icon-level-up:before { content: '\e892'; } /* '' */ .icon-level-down:before { content: '\e893'; } /* '' */ .icon-shuffle:before { content: '\e894'; } /* '' */ .icon-exchange:before { content: '\e895'; } /* '' */ .icon-history:before { content: '\e896'; } /* '' */ .icon-expand:before { content: '\e897'; } /* '' */ .icon-collapse:before { content: '\e898'; } /* '' */ .icon-down-circled2:before { content: '\e899'; } /* '' */ .icon-expand-right:before { content: '\e89a'; } /* '' */ .icon-collapse-left:before { content: '\e89b'; } /* '' */ .icon-play:before { content: '\e89c'; } /* '' */ .icon-play-circled:before { content: '\e89d'; } /* '' */ .icon-play-circled2:before { content: '\e89e'; } /* '' */ .icon-stop:before { content: '\e89f'; } /* '' */ .icon-pause:before { content: '\e8a0'; } /* '' */ .icon-to-end:before { content: '\e8a1'; } /* '' */ .icon-to-end-alt:before { content: '\e8a2'; } /* '' */ .icon-to-start:before { content: '\e8a3'; } /* '' */ .icon-fast-fw:before { content: '\e8a4'; } /* '' */ .icon-fast-bw:before { content: '\e8a5'; } /* '' */ .icon-eject:before { content: '\e8a6'; } /* '' */ .icon-angle-double-left:before { content: '\e8a7'; } /* '' */ .icon-target:before { content: '\e8a8'; } /* '' */ .icon-signal:before { content: '\e8a9'; } /* '' */ .icon-wifi:before { content: '\e8aa'; } /* '' */ .icon-award:before { content: '\e8ab'; } /* '' */ .icon-desktop:before { content: '\e8ac'; } /* '' */ .icon-laptop:before { content: '\e8ad'; } /* '' */ .icon-tablet:before { content: '\e8ae'; } /* '' */ .icon-mobile:before { content: '\e8af'; } /* '' */ .icon-inbox:before { content: '\e8b0'; } /* '' */ .icon-globe:before { content: '\e8b1'; } /* '' */ .icon-sun:before { content: '\e8b2'; } /* '' */ .icon-cloud:before { content: '\e8b3'; } /* '' */ .icon-flash:before { content: '\e8b4'; } /* '' */ .icon-moon:before { content: '\e8b5'; } /* '' */ .icon-umbrella:before { content: '\e8b6'; } /* '' */ .icon-flight:before { content: '\e8b7'; } /* '' */ .icon-paper-plane:before { content: '\e8b8'; } /* '' */ .icon-paper-plane-empty:before { content: '\e8b9'; } /* '' */ .icon-space-shuttle:before { content: '\e8ba'; } /* '' */ .icon-leaf:before { content: '\e8bb'; } /* '' */ .icon-font:before { content: '\e8bc'; } /* '' */ .icon-bold:before { content: '\e8bd'; } /* '' */ .icon-medium:before { content: '\e8be'; } /* '' */ .icon-italic:before { content: '\e8bf'; } /* '' */ .icon-header:before { content: '\e8c0'; } /* '' */ .icon-paragraph:before { content: '\e8c1'; } /* '' */ .icon-text-height:before { content: '\e8c2'; } /* '' */ .icon-text-width:before { content: '\e8c3'; } /* '' */ .icon-align-left:before { content: '\e8c4'; } /* '' */ .icon-align-center:before { content: '\e8c5'; } /* '' */ .icon-align-right:before { content: '\e8c6'; } /* '' */ .icon-align-justify:before { content: '\e8c7'; } /* '' */ .icon-list:before { content: '\e8c8'; } /* '' */ .icon-indent-left:before { content: '\e8c9'; } /* '' */ .icon-indent-right:before { content: '\e8ca'; } /* '' */ .icon-list-numbered:before { content: '\e8cb'; } /* '' */ .icon-strike:before { content: '\e8cc'; } /* '' */ .icon-underline:before { content: '\e8cd'; } /* '' */ .icon-superscript:before { content: '\e8ce'; } /* '' */ .icon-subscript:before { content: '\e8cf'; } /* '' */ .icon-table:before { content: '\e8d0'; } /* '' */ .icon-columns:before { content: '\e8d1'; } /* '' */ .icon-crop:before { content: '\e8d2'; } /* '' */ .icon-scissors:before { content: '\e8d3'; } /* '' */ .icon-paste:before { content: '\e8d4'; } /* '' */ .icon-briefcase:before { content: '\e8d5'; } /* '' */ .icon-suitcase:before { content: '\e8d6'; } /* '' */ .icon-ellipsis:before { content: '\e8d7'; } /* '' */ .icon-ellipsis-vert:before { content: '\e8d8'; } /* '' */ .icon-off:before { content: '\e8d9'; } /* '' */ .icon-road:before { content: '\e8da'; } /* '' */ .icon-list-alt:before { content: '\e8db'; } /* '' */ .icon-qrcode:before { content: '\e8dc'; } /* '' */ .icon-barcode:before { content: '\e8dd'; } /* '' */ .icon-ajust:before { content: '\e8de'; } /* '' */ .icon-tint:before { content: '\e8df'; } /* '' */ .icon-toggle-off:before { content: '\e8e0'; } /* '' */ .icon-toggle-on:before { content: '\e8e1'; } /* '' */ .icon-check:before { content: '\e8e2'; } /* '' */ .icon-check-empty:before { content: '\e8e3'; } /* '' */ .icon-circle:before { content: '\e8e4'; } /* '' */ .icon-circle-empty:before { content: '\e8e5'; } /* '' */ .icon-circle-thin:before { content: '\e8e6'; } /* '' */ .icon-circle-notch:before { content: '\e8e7'; } /* '' */ .icon-dot-circled:before { content: '\e8e8'; } /* '' */ .icon-asterisk:before { content: '\e8e9'; } /* '' */ .icon-gift:before { content: '\e8ea'; } /* '' */ .icon-fire:before { content: '\e8eb'; } /* '' */ .icon-magnet:before { content: '\e8ec'; } /* '' */ .icon-chart-bar:before { content: '\e8ed'; } /* '' */ .icon-chart-area:before { content: '\e8ee'; } /* '' */ .icon-chart-pie:before { content: '\e8ef'; } /* '' */ .icon-chart-line:before { content: '\e8f0'; } /* '' */ .icon-credit-card:before { content: '\e8f1'; } /* '' */ .icon-floppy:before { content: '\e8f2'; } /* '' */ .icon-megaphone:before { content: '\e8f3'; } /* '' */ .icon-hdd:before { content: '\e8f4'; } /* '' */ .icon-key:before { content: '\e8f5'; } /* '' */ .icon-fork:before { content: '\e8f6'; } /* '' */ .icon-rocket:before { content: '\e8f7'; } /* '' */ .icon-bug:before { content: '\e8f8'; } /* '' */ .icon-certificate:before { content: '\e8f9'; } /* '' */ .icon-tasks:before { content: '\e8fa'; } /* '' */ .icon-filter:before { content: '\e8fb'; } /* '' */ .icon-beaker:before { content: '\e8fc'; } /* '' */ .icon-magic:before { content: '\e8fd'; } /* '' */ .icon-cab:before { content: '\e8fe'; } /* '' */ .icon-taxi:before { content: '\e8ff'; } /* '' */ .icon-truck:before { content: '\e900'; } /* '' */ .icon-bus:before { content: '\e901'; } /* '' */ .icon-bicycle:before { content: '\e902'; } /* '' */ .icon-motorcycle:before { content: '\e903'; } /* '' */ .icon-subway:before { content: '\e904'; } /* '' */ .icon-ship:before { content: '\e905'; } /* '' */ .icon-money:before { content: '\e906'; } /* '' */ .icon-euro:before { content: '\e907'; } /* '' */ .icon-pound:before { content: '\e908'; } /* '' */ .icon-dollar:before { content: '\e909'; } /* '' */ .icon-rupee:before { content: '\e90a'; } /* '' */ .icon-yen:before { content: '\e90b'; } /* '' */ .icon-rouble:before { content: '\e90c'; } /* '' */ .icon-shekel:before { content: '\e90d'; } /* '' */ .icon-try:before { content: '\e90e'; } /* '' */ .icon-won:before { content: '\e90f'; } /* '' */ .icon-bitcoin:before { content: '\e910'; } /* '' */ .icon-viacoin:before { content: '\e911'; } /* '' */ .icon-sort:before { content: '\e912'; } /* '' */ .icon-sort-down:before { content: '\e913'; } /* '' */ .icon-sort-up:before { content: '\e914'; } /* '' */ .icon-sort-alt-up:before { content: '\e915'; } /* '' */ .icon-sort-alt-down:before { content: '\e916'; } /* '' */ .icon-sort-name-down:before { content: '\e917'; } /* '' */ .icon-sort-number-up:before { content: '\e918'; } /* '' */ .icon-sort-number-down:before { content: '\e919'; } /* '' */ .icon-hammer:before { content: '\e91a'; } /* '' */ .icon-gauge:before { content: '\e91b'; } /* '' */ .icon-sitemap:before { content: '\e91c'; } /* '' */ .icon-spinner:before { content: '\e91d'; } /* '' */ .icon-coffee:before { content: '\e91e'; } /* '' */ .icon-food:before { content: '\e91f'; } /* '' */ .icon-beer:before { content: '\e920'; } /* '' */ .icon-user-md:before { content: '\e921'; } /* '' */ .icon-stethoscope:before { content: '\e922'; } /* '' */ .icon-heartbeat:before { content: '\e923'; } /* '' */ .icon-ambulance:before { content: '\e924'; } /* '' */ .icon-medkit:before { content: '\e925'; } /* '' */ .icon-h-sigh:before { content: '\e926'; } /* '' */ .icon-bed:before { content: '\e927'; } /* '' */ .icon-hospital:before { content: '\e928'; } /* '' */ .icon-building:before { content: '\e929'; } /* '' */ .icon-bank:before { content: '\e92a'; } /* '' */ .icon-smile:before { content: '\e92b'; } /* '' */ .icon-frown:before { content: '\e92c'; } /* '' */ .icon-meh:before { content: '\e92d'; } /* '' */ .icon-anchor:before { content: '\e92e'; } /* '' */ .icon-terminal:before { content: '\e92f'; } /* '' */ .icon-eraser:before { content: '\e930'; } /* '' */ .icon-puzzle:before { content: '\e931'; } /* '' */ .icon-shield:before { content: '\e932'; } /* '' */ .icon-extinguisher:before { content: '\e933'; } /* '' */ .icon-bullseye:before { content: '\e934'; } /* '' */ .icon-wheelchair:before { content: '\e935'; } /* '' */ .icon-language:before { content: '\e936'; } /* '' */ .icon-graduation-cap:before { content: '\e937'; } /* '' */ .icon-paw:before { content: '\e938'; } /* '' */ .icon-spoon:before { content: '\e939'; } /* '' */ .icon-cube:before { content: '\e93a'; } /* '' */ .icon-cubes:before { content: '\e93b'; } /* '' */ .icon-recycle:before { content: '\e93c'; } /* '' */ .icon-chat:before { content: '\e93d'; } /* '' */ .icon-share:before { content: '\e93e'; } /* '' */ .icon-tags:before { content: '\e93f'; } /* '' */ .icon-bell-alt:before { content: '\e940'; } /* '' */ .icon-folder:before { content: '\e941'; } /* '' */ .icon-folder-open-empty:before { content: '\e942'; } /* '' */ .icon-box:before { content: '\e943'; } /* '' */ .icon-fax:before { content: '\e944'; } /* '' */ .icon-menu:before { content: '\e945'; } /* '' */ .icon-cog:before { content: '\e946'; } /* '' */ .icon-cog-alt:before { content: '\e947'; } /* '' */ .icon-wrench:before { content: '\e948'; } /* '' */ .icon-sliders:before { content: '\e949'; } /* '' */ .icon-basket:before { content: '\e94a'; } /* '' */ .icon-login:before { content: '\e94b'; } /* '' */ .icon-logout:before { content: '\e94c'; } /* '' */ .icon-mic:before { content: '\e94d'; } /* '' */ .icon-mute:before { content: '\e94e'; } /* '' */ .icon-volume-off:before { content: '\e94f'; } /* '' */ .icon-volume-down:before { content: '\e950'; } /* '' */ .icon-volume-up:before { content: '\e951'; } /* '' */ .icon-headphones:before { content: '\e952'; } /* '' */ .icon-block:before { content: '\e953'; } /* '' */ .icon-resize-full:before { content: '\e954'; } /* '' */ .icon-resize-full-alt:before { content: '\e955'; } /* '' */ .icon-resize-small:before { content: '\e956'; } /* '' */ .icon-resize-vertical:before { content: '\e957'; } /* '' */ .icon-resize-horizontal:before { content: '\e958'; } /* '' */ .icon-up-circled2:before { content: '\e959'; } /* '' */ .icon-left-circled2:before { content: '\e95a'; } /* '' */ .icon-right-circled2:before { content: '\e95b'; } /* '' */ .icon-down-dir:before { content: '\e95c'; } /* '' */ .icon-up-dir:before { content: '\e95d'; } /* '' */ .icon-left-dir:before { content: '\e95e'; } /* '' */ .icon-right-dir:before { content: '\e95f'; } /* '' */ .icon-down-open:before { content: '\e960'; } /* '' */ .icon-left-open:before { content: '\e961'; } /* '' */ .icon-right-open:before { content: '\e962'; } /* '' */ .icon-up-open:before { content: '\e963'; } /* '' */ .icon-angle-left:before { content: '\e964'; } /* '' */ .icon-angle-double-down:before { content: '\e965'; } /* '' */ .icon-down:before { content: '\e966'; } /* '' */ .icon-left-1:before { content: '\e967'; } /* '' */ .icon-right-1:before { content: '\e968'; } /* '' */ .icon-up:before { content: '\e969'; } /* '' */ .icon-down-big:before { content: '\e96a'; } /* '' */ .icon-left-big:before { content: '\e96b'; } /* '' */ .icon-right-big:before { content: '\e96c'; } /* '' */ .icon-up-big:before { content: '\e96d'; } /* '' */ .icon-right-hand:before { content: '\e96e'; } /* '' */ .icon-left-hand:before { content: '\e96f'; } /* '' */ .icon-up-hand:before { content: '\e970'; } /* '' */ .icon-down-hand:before { content: '\e971'; } /* '' */ .icon-left-circled:before { content: '\e972'; } /* '' */ .icon-angle-right:before { content: '\e973'; } /* '' */ .icon-angle-up:before { content: '\e974'; } /* '' */ .icon-angle-down:before { content: '\e975'; } /* '' */ .icon-clock:before { content: '\e976'; } /* '' */ .icon-phone-1:before { content: '\e977'; } /* '' */ .icon-rss:before { content: '\e978'; } /* '' */ .icon-folder-open:before { content: '\e979'; } /* '' */ .icon-attention-1:before { content: '\e97a'; } /* '' */ .icon-doc-text:before { content: '\e97b'; } /* '' */ .icon-cw:before { content: '\e97c'; } /* '' */ .icon-to-start-alt:before { content: '\e97d'; } /* '' */ .icon-fighter-jet:before { content: '\e97e'; } /* '' */ .icon-list-bullet:before { content: '\e97f'; } /* '' */ .icon-book:before { content: '\e980'; } /* '' */ .icon-ticket:before { content: '\e981'; } /* '' */ .icon-train:before { content: '\e982'; } /* '' */ .icon-sort-name-up:before { content: '\e983'; } /* '' */ .icon-building-filled:before { content: '\e984'; } /* '' */ .icon-bomb:before { content: '\e985'; } /* '' */ .icon-soccer-ball:before { content: '\e986'; } /* '' */ .icon-tty:before { content: '\e987'; } /* '' */ .icon-binoculars:before { content: '\e988'; } /* '' */ .icon-plug:before { content: '\e989'; } /* '' */ .icon-newspaper:before { content: '\e98a'; } /* '' */ .icon-calc:before { content: '\e98b'; } /* '' */ .icon-copyright:before { content: '\e98c'; } /* '' */ .icon-at:before { content: '\e98d'; } /* '' */ .icon-eyedropper:before { content: '\e98e'; } /* '' */ .icon-brush:before { content: '\e98f'; } /* '' */ .icon-birthday:before { content: '\e990'; } /* '' */ .icon-diamond:before { content: '\e991'; } /* '' */ .icon-street-view:before { content: '\e992'; } /* '' */ .icon-venus:before { content: '\e993'; } /* '' */ .icon-mars:before { content: '\e994'; } /* '' */ .icon-mercury:before { content: '\e995'; } /* '' */ .icon-transgender:before { content: '\e996'; } /* '' */ .icon-transgender-alt:before { content: '\e997'; } /* '' */ .icon-venus-double:before { content: '\e998'; } /* '' */ .icon-mars-double:before { content: '\e999'; } /* '' */ .icon-venus-mars:before { content: '\e99a'; } /* '' */ .icon-mars-stroke:before { content: '\e99b'; } /* '' */ .icon-mars-stroke-v:before { content: '\e99c'; } /* '' */ .icon-mars-stroke-h:before { content: '\e99d'; } /* '' */ .icon-neuter:before { content: '\e99e'; } /* '' */ .icon-cc-visa:before { content: '\e99f'; } /* '' */ .icon-cc-mastercard:before { content: '\e9a0'; } /* '' */ .icon-cc-discover:before { content: '\e9a1'; } /* '' */ .icon-cc-amex:before { content: '\e9a2'; } /* '' */ .icon-cc-paypal:before { content: '\e9a3'; } /* '' */ .icon-cc-stripe:before { content: '\e9a4'; } /* '' */ .icon-adn:before { content: '\e9a5'; } /* '' */ .icon-android:before { content: '\e9a6'; } /* '' */ .icon-angellist:before { content: '\e9a7'; } /* '' */ .icon-apple:before { content: '\e9a8'; } /* '' */ .icon-behance:before { content: '\e9a9'; } /* '' */ .icon-behance-squared:before { content: '\e9aa'; } /* '' */ .icon-bitbucket:before { content: '\e9ab'; } /* '' */ .icon-bitbucket-squared:before { content: '\e9ac'; } /* '' */ .icon-buysellads:before { content: '\e9ad'; } /* '' */ .icon-cc:before { content: '\e9ae'; } /* '' */ .icon-codeopen:before { content: '\e9af'; } /* '' */ .icon-connectdevelop:before { content: '\e9b0'; } /* '' */ .icon-css3:before { content: '\e9b1'; } /* '' */ .icon-dashcube:before { content: '\e9b2'; } /* '' */ .icon-delicious:before { content: '\e9b3'; } /* '' */ .icon-deviantart:before { content: '\e9b4'; } /* '' */ .icon-digg:before { content: '\e9b5'; } /* '' */ .icon-dribbble:before { content: '\e9b6'; } /* '' */ .icon-dropbox:before { content: '\e9b7'; } /* '' */ .icon-drupal:before { content: '\e9b8'; } /* '' */ .icon-facebook:before { content: '\e9b9'; } /* '' */ .icon-facebook-squared:before { content: '\e9ba'; } /* '' */ .icon-facebook-official:before { content: '\e9bb'; } /* '' */ .icon-flickr:before { content: '\e9bc'; } /* '' */ .icon-forumbee:before { content: '\e9bd'; } /* '' */ .icon-foursquare:before { content: '\e9be'; } /* '' */ .icon-git-squared:before { content: '\e9bf'; } /* '' */ .icon-git:before { content: '\e9c0'; } /* '' */ .icon-github:before { content: '\e9c1'; } /* '' */ .icon-github-squared:before { content: '\e9c2'; } /* '' */ .icon-github-circled:before { content: '\e9c3'; } /* '' */ .icon-gittip:before { content: '\e9c4'; } /* '' */ .icon-google:before { content: '\e9c5'; } /* '' */ .icon-gplus:before { content: '\e9c6'; } /* '' */ .icon-gplus-squared:before { content: '\e9c7'; } /* '' */ .icon-gwallet:before { content: '\e9c8'; } /* '' */ .icon-hacker-news:before { content: '\e9c9'; } /* '' */ .icon-html5:before { content: '\e9ca'; } /* '' */ .icon-instagram:before { content: '\e9cb'; } /* '' */ .icon-ioxhost:before { content: '\e9cc'; } /* '' */ .icon-joomla:before { content: '\e9cd'; } /* '' */ .icon-jsfiddle:before { content: '\e9ce'; } /* '' */ .icon-lastfm:before { content: '\e9cf'; } /* '' */ .icon-lastfm-squared:before { content: '\e9d0'; } /* '' */ .icon-leanpub:before { content: '\e9d1'; } /* '' */ .icon-linkedin-squared:before { content: '\e9d2'; } /* '' */ .icon-linux:before { content: '\e9d3'; } /* '' */ .icon-meanpath:before { content: '\e9d4'; } /* '' */ .icon-openid:before { content: '\e9d5'; } /* '' */ .icon-pagelines:before { content: '\e9d6'; } /* '' */ .icon-paypal:before { content: '\e9d7'; } /* '' */ .icon-pied-piper-squared:before { content: '\e9d8'; } /* '' */ .icon-pied-piper-alt:before { content: '\e9d9'; } /* '' */ .icon-pinterest:before { content: '\e9da'; } /* '' */ .icon-pinterest-circled:before { content: '\e9db'; } /* '' */ .icon-pinterest-squared:before { content: '\e9dc'; } /* '' */ .icon-qq:before { content: '\e9dd'; } /* '' */ .icon-reddit:before { content: '\e9de'; } /* '' */ .icon-reddit-squared:before { content: '\e9df'; } /* '' */ .icon-renren:before { content: '\e9e0'; } /* '' */ .icon-sellsy:before { content: '\e9e1'; } /* '' */ .icon-shirtsinbulk:before { content: '\e9e2'; } /* '' */ .icon-simplybuilt:before { content: '\e9e3'; } /* '' */ .icon-skyatlas:before { content: '\e9e4'; } /* '' */ .icon-skype:before { content: '\e9e5'; } /* '' */ .icon-slack:before { content: '\e9e6'; } /* '' */ .icon-slideshare:before { content: '\e9e7'; } /* '' */ .icon-soundcloud:before { content: '\e9e8'; } /* '' */ .icon-spotify:before { content: '\e9e9'; } /* '' */ .icon-stackexchange:before { content: '\e9ea'; } /* '' */ .icon-stackoverflow:before { content: '\e9eb'; } /* '' */ .icon-steam:before { content: '\e9ec'; } /* '' */ .icon-steam-squared:before { content: '\e9ed'; } /* '' */ .icon-stumbleupon:before { content: '\e9ee'; } /* '' */ .icon-stumbleupon-circled:before { content: '\e9ef'; } /* '' */ .icon-tencent-weibo:before { content: '\e9f0'; } /* '' */ .icon-trello:before { content: '\e9f1'; } /* '' */ .icon-tumblr:before { content: '\e9f2'; } /* '' */ .icon-tumblr-squared:before { content: '\e9f3'; } /* '' */ .icon-twitch:before { content: '\e9f4'; } /* '' */ .icon-twitter-squared:before { content: '\e9f5'; } /* '' */ .icon-twitter:before { content: '\e9f6'; } /* '' */ .icon-vimeo-squared:before { content: '\e9f7'; } /* '' */ .icon-vine:before { content: '\e9f8'; } /* '' */ .icon-vkontakte:before { content: '\e9f9'; } /* '' */ .icon-whatsapp:before { content: '\e9fa'; } /* '' */ .icon-wechat:before { content: '\e9fb'; } /* '' */ .icon-weibo:before { content: '\e9fc'; } /* '' */ .icon-windows:before { content: '\e9fd'; } /* '' */ .icon-wordpress:before { content: '\e9fe'; } /* '' */ .icon-xing:before { content: '\e9ff'; } /* '' */ .icon-xing-squared:before { content: '\ea00'; } /* '' */ .icon-yelp:before { content: '\ea01'; } /* '' */ .icon-youtube:before { content: '\ea02'; } /* '' */ .icon-yahoo:before { content: '\ea03'; } /* '' */ .icon-youtube-squared:before { content: '\ea04'; } /* '' */ .icon-youtube-play:before { content: '\ea05'; } /* '' */ .icon-blank:before { content: '\ea06'; } /* '' */ .icon-lemon:before { content: '\ea07'; } /* ''
style.css
/* Theme Name: Honos Author: Cohhe Author URI: https://cohhe.com/ Description: Enhance your story experience, by leveraging the power of Honos Wordpress Theme, built especially for telling great stories. It is the only free WordPress theme fully compatible with the Aesop Story Engine. Version: 1.5.2 License: GNU General Public License v3 License URI: http://www.gnu.org/licenses/gpl-2.0.html Tags: two-columns, three-columns, left-sidebar, right-sidebar, custom-background, editor-style, featured-images, flexible-header, full-width-template, microformats, sticky-post, theme-options, translation-ready Text Domain: honos This theme, like WordPress, is licensed under the GPL. Use it to make something cool, have fun, and share what you've learned with others. */ /** * 1.0 Reset * * Resetting and rebuilding styles have been helped along thanks to the fine * work of Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html * along with <NAME> and <NAME> * http://necolas.github.com/normalize.css/ and Blueprint * http://www.blueprintcss.org/ * * ----------------------------------------------------------------------------- */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td { border: 0; font-family: inherit; font-size: 100%; font-style: inherit; font-weight: 400; margin: 0; outline: 0; padding: 0; vertical-align: baseline; } body, html { width: 100%; height: 100%; } article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; } select::-ms-expand { display: none; } audio, canvas, video { display: inline-block; max-width: 100%; } html { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } body, button, input, select, textarea { color: #555555; font-family: 'Domine', serif; font-size: 16px; font-weight: 400; } progress { display: none; } body { color: #838585; margin: 0px; padding: 0px; font-family: 'Merriweather', serif; font-size: 14px; line-height: 1.786; font-weight: 300; } a { color: #CCA876; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } a:active, a:hover { color: #9B7B4D; outline: 0; text-decoration: none; } /* Webkit */ ::selection { background: #000000; color: #FFF; } /* Gecko/Mozilla */ ::-moz-selection { background: #000000; color: #FFF; } h1, h2, h3, h4, h5, h6 { font-family: 'Domine', serif; margin: 0px; padding: 0px; color: #2f2f2f; font-weight: normal; } h1 { font-size: 28px; margin: 25px 0; } h2 { font-size: 26px; margin: 25px 0;; } h3 { font-size: 24px; margin: 15px 0; } h4 { margin: 20px 0; font-size: 20px; } h5 { font-size: 18px; margin: 20px 0; } h6 { margin: 15px 0; font-size: 15px; } address { font-style: italic; margin-bottom: 24px; } abbr[title] { border-bottom: 1px dotted #fff; cursor: help; } b, strong { font-weight: 700; } cite, dfn, em, i { font-style: italic; } mark, ins { background: #fff9c0; text-decoration: none; } p { margin: 10px 0px; padding: 0px; } code, kbd, tt, var, samp, pre { font-family: monospace, serif; font-size: 15px; -webkit-hyphens: none; -moz-hyphens: none; -ms-hyphens: none; hyphens: none; line-height: 1.6; } pre { border: 1px solid rgba(0, 0, 0, 0.1); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; margin-bottom: 24px; max-width: 100%; overflow: auto; padding: 12px; white-space: pre; white-space: pre-wrap; word-wrap: break-word; } blockquote, q { -webkit-hyphens: none; -moz-hyphens: none; -ms-hyphens: none; hyphens: none; quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ""; content: none; } blockquote { margin: 20px 0; padding: 25px 3%; background: #f6f6f6; position: relative; border-left: 1px solid #8d1812; } blockquote p { font-size: 16px; font-weight: normal; color: #858585; } blockquote cite, blockquote small { color: #fff; font-size: 16px; font-weight: 400; line-height: 1.5; } blockquote em, blockquote i, blockquote cite { font-style: normal; margin-top: 15px; display: block; } blockquote strong, blockquote b { font-weight: 400; } small { font-size: smaller; } big { font-size: 125%; } sup, sub { font-size: 75%; height: 0; line-height: 0; position: relative; vertical-align: baseline; } sup { bottom: 1ex; } sub { top: .5ex; } dl { margin-bottom: 24px; } dt { font-weight: bold; } dd { margin-bottom: 24px; } ul, ol { list-style: none; margin: 0 0 24px 20px; } ol { list-style: decimal; list-style-position: inside; } li > ul, li > ol { margin: 0 0 0 20px; } img { -ms-interpolation-mode: bicubic; border: 0; vertical-align: middle; max-width: 100%; height: auto; } figure { margin: 0; } fieldset { border: 1px solid rgba(0, 0, 0, 0.1); margin: 0 0 24px; padding: 11px 12px 0; } legend { white-space: normal; } button, input, select, textarea { font-family: "Lato"; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; font-size: 100%; margin: 0; max-width: 100%; vertical-align: baseline; } button, input { line-height: normal; } input, textarea { font-size: 15px; border-color: #f0f0f0; border: 1px solid rgba(0,0,0,0.2); color: #2b2b2b; padding: 8px 10px 7px; background-image: -webkit-linear-gradient(hsla(0,0%,100%,0), hsla(0,0%,100%,0)); /* Removing the inner shadow, rounded corners on iOS inputs */ } button, html input[type="button"], input[type="reset"], input[type="submit"] { background: transparent; font-size: 0.9em; border: none; text-transform: uppercase; font-weight: 300; display: inline-block; text-decoration: none; padding: 10px 25px; text-align: center; color: #fff; font-weight: 400; outline: none; background-color: #CCA876; -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; -ms-transition: all 0.2s ease-in; transition: all 0.2s ease-in; } button:hover, button:focus, .btn-link:hover, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus { background-color: #9B7B4D; } button[disabled], input[disabled] { cursor: default; } input[type="checkbox"], input[type="radio"] { padding: 0; } input[type="search"] { -webkit-appearance: textfield; } input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } textarea { width: 100%; overflow: auto; vertical-align: top; } table, th, td { border: 1px solid rgba(0, 0, 0, 0.4); } table { border-collapse: separate; border-spacing: 0; border-width: 1px 0 0 1px; margin-bottom: 24px; width: 100%; } caption, th, td { font-weight: normal; text-align: left; } th { border-width: 0 1px 1px 0; font-weight: bold; padding: 5px 10px; } td { border-width: 0 1px 1px 0; padding: 0 10px; } del { color: #6d6e64; } hr { background-color: rgba(0, 0, 0, 0.1); border: 0; height: 1px; margin-bottom: 23px; } .site-main.container { width: 100%; max-width: 1170px; } .wpcf7-form input[type="text"], .wpcf7-form input[type="email"] { width: 100%; } .wpcf7-form p { margin-top: 0; margin-bottom: 25px; } .social-icon { background-color:white; border:1px solid #cccccc; box-shadow:2px 2px 0px rgba(0,0,0,0.05); display: inline-block; width: 48px; height: 48px; line-height: 48px; transition: all 200ms ease-out; -webkit-transition: all 200ms ease-out; border-radius: 3px; text-align: center; margin-right: 10px; margin-bottom: 13px; } .social-icon i { color:white; font-size: 20px; line-height: 48px; } .social-icon:hover { background-color:#4c4c4c; border:1px solid #4c4c4c; } .social-icon:hover i { color:rgba(255,255,255,0.8); } .social-bitbucket i { color:#205081; } .social-dropbox i { color:#007ee5; } .social-dribbble i { color:#ea4c89; } .social-gittip i { color:#339966; } .social-facebook i { color:#3b5998; } .social-flickr i { color:#ff0084; } .social-foursquare i { color:#0cbadf; } .social-github i { color:#171515; } .social-google-plus i { color:#dd4b39; } .social-instagram i { color:#3f729b; } .social-linkedin i { color:#0e76a8; } .social-pinterest i { color:#c8232c; } .social-skype i { color:#00aff0; } .social-stack-exchange i { color:#3a6da6; } .social-stack-overflow i { color:#ef8236; } .social-trello i { color:#256a92; } .social-tumblr i { color:#34526f; } .social-twitter i { color:#55acee; } .social-vimeo-square i { color:#44bbff; } .social-vk i { color:#45668e; } .social-weibo i { color:#eb182c; } .social-xing i { color:#126567; } .social-youtube i { color:#c4302b; } /* Header */ .main-header { position: fixed; width: 100%; z-index: 9999; } .main-header.scrolled .header-top-wrapper { height: 0; } .main-header.scrolled .header-bottom { min-height: 69px; } .main-header, .header-top-wrapper { background-color: #fff; border-bottom: solid 1px #EDEDED; } .honos-slider-active .main-header { background-color: transparent; border-bottom: none; } .honos-slider-active .header-bottom-wrapper { background-color: rgba(255,255,255,1); -webkit-transition: background-color ease-in-out 0.2s; -moz-transition: background-color ease-in-out 0.2s; -o-transition: background-color ease-in-out 0.2s; transition: background-color ease-in-out 0.2s; } .honos-slider-active .scrolled .header-bottom-wrapper { background-color: rgb(255,255,255); box-shadow: 0 2px 2px 0 rgba(0,0,0,0.04); } /*.honos-slider-active .main-header:not(.scrolled) #primary-navigation .nav-menu > li > a { color: #fff; }*/ .header-top, .header-bottom { max-width: 1170px; padding: 0 15px; margin: 0 auto; } .header-top-wrapper { overflow: hidden; height: 35px; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .header-top { padding: 4px 15px; position: relative; } .header-bottom { min-height: 85px; position: relative; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; transform-style: preserve-3d; -webkit-transition: min-height ease-in-out 0.2s; -moz-transition: min-height ease-in-out 0.2s; -o-transition: min-height ease-in-out 0.2s; transition: min-height ease-in-out 0.2s; } .header-top .call-us, .header-top .free-consult, .header-top .header-search { font-size: 11px; text-transform: uppercase; color: #CBC9C9; float: left; } .header-top .call-us a { font-size: 14px; } .header-top .free-consult, .header-top .header-search { float: right } .header-top .free-consult { color: #CCA876; font-weight: 600; font-family: 'Open Sans'; } .header-top .free-consult:before { color: #CBC9C9; -webkit-transition: color ease-in-out 0.2s; -moz-transition: color ease-in-out 0.2s; -o-transition: color ease-in-out 0.2s; transition: color ease-in-out 0.2s; } .header-top .free-consult:hover, .header-top .free-consult:hover:before, .header-top .header-search:hover { color: #9B7B4D; } .header-top .call-us { font-family: 'Open Sans'; } .header-top .free-consult:before { font-size: 16px; margin-right: 7px; } .header-top .header-search { font-size: 16px; margin-left: 7px; cursor: pointer; position: relative; top: 1px; -webkit-transition: color ease-in-out 0.2s; -moz-transition: color ease-in-out 0.2s; -o-transition: color ease-in-out 0.2s; transition: color ease-in-out 0.2s; } .header-logo, #primary-navigation, .custom-logo-link { position: absolute; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } .header-logo, .custom-logo-link { max-width: 25%; } .header-logo img, .custom-logo-link img { max-height: 85px; width: auto; max-width: 100%; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .scrolled .header-logo img, .scrolled .custom-logo-link img { max-height: 69px; } #primary-navigation { right: 0; max-width: 75%; } #primary-navigation ul { margin: 0; } #primary-navigation li { float: left; padding: 13px 4px 13px 4px; position: relative; } #primary-navigation li a { padding: 4px 8px; font-size: 14px; color: #2C2C2C; } #primary-navigation li.current-menu-item > a, #primary-navigation li:hover > a { color: #9B7B4D !important; } .blog-name { display: block; font-size: 30px; line-height: 36px; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; } .blog-description { text-overflow: ellipsis; white-space: nowrap; overflow: hidden; display: block; line-height: 1; } #primary-navigation .menu-item-has-children.depth-0 > ul { top: 51px; } #primary-navigation .menu-item-has-children.depth-1 > ul { left: 0px; -webkit-transform: translateX(100%); -ms-transform: translateX(100%); transform: translateX(100%); } #primary-navigation li ul { display: none; opacity: 0; top: 0; box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.12); background-color: #fff; min-width: 130px; } #primary-navigation .menu-item-has-children:hover > ul { display: block; opacity: 1; position: absolute; padding-left: 0; } .menu-item-has-children.depth-0 > a:after { content: '\e975'; font-family: 'icons'; } .menu-item-has-children.depth-0 .menu-item-has-children:after { content: '\e973'; font-family: 'icons'; } .menu-item-has-children.depth-0 > a:after, .menu-item-has-children.depth-0 .menu-item-has-children a:after { margin-left: 7px; } .menu-item-has-children.depth-0 li { width: 100%; } .menu-item-has-children.depth-0 li:after { float: right; padding-right: 10px; } #primary-navigation .menu-item-has-children.depth-0 li { padding: 15px 11px; line-height: 12px; } #primary-navigation .menu-item-has-children.depth-0 li a { font-size: 13px; padding: 0; } .header-top .screen-reader-text, .header-top .search-submit { display: none; } .header-top .search-form { position: absolute; top: 0px; right: 45px; z-index: 22; } .header-top .search-field { border-top: none; border-bottom: none; height: 34px; border-color: #EDEDED; outline: none; } .header-top .search-form .search-field { opacity: 0; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .header-top .search-form.active .search-field { opacity: 1; } .header-top .search-form { visibility: hidden; } .header-top .search-form.active { visibility: visible; } .mobile-menu-button { width: 50px; height: 50px; position: absolute; top: 50%; right: 15px; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); border-radius: 4px; border: 1px solid #ccc; color: #ccc; text-align: center; line-height: 50px; font-size: 25px; display: none; } #mobile-navigation { position: absolute; background: #fff; right: 15px; padding: 20px 40px; top: 86px; box-shadow: 0px 2px 4px 0px rgba(0,0,0,0.12); display: none; } #mobile-navigation.active { display: block; } #mobile-navigation li a:after, #mobile-navigation li:after { display: none; } #mobile-navigation div > ul { margin-bottom: 0; margin-left: 0; padding-left: 0; } #mobile-navigation li { padding: 5px 0; } #mobile-navigation li:last-child { padding-bottom: 0; } #mobile-navigation li a { font-size: 20px; } .row.introduction { margin-top: -158px; z-index: 222; position: relative; background-color: #fff; margin-bottom: -25px; } .row.introduction h2 { text-align: center; } #primary-navigation .menu-item-has-children.depth-1 li { white-space: nowrap; } /* Slider */ .honos-slider { min-height: 700px; } .frontpage-slider-wrapper .fp-slide-container { height: 100%; background-position: center !important; background-size: cover !important; } .fp-slide-inner-container { max-width: 1170px; height: 100%; margin: 0 auto; z-index: 22; position: relative; padding: 0 15px; } .fp-slide-inner { position: absolute; bottom: 259px; } .text-position-center .fp-slide-inner { left: 50%; text-align: center; -webkit-transform: translateX(-50%); -ms-transform: translateX(-50%); transform: translateX(-50%); } .text-position-right .fp-slide-inner { right: 0; text-align: right; } .fp-slide-inner-container .fp-slide-top-title { font-size: 50px; color: #CCA876; font-family: 'Domine'; margin-bottom: 22px; display: block; } .fp-slide-inner-container .fp-slide-title { font-size: 50px; line-height: 55px; font-weight: 600; text-transform: uppercase; color: #2E3236; width: 600px; font-family: '<NAME>'; } .fp-slide-inner-container .fp-slide-button { line-height: 18px; font-weight: 600; font-size: 16px; text-transform: uppercase; padding: 11px 27px; background: #CCA876; color: #ffffff; display: inline-block; margin-top: 16px; } .fp-slide-inner-container .fp-slide-button:hover { background: #9B7B4D; color: #fff; } .honos-slider-prev, .honos-slider-next { background-color: rgba(0,0,0,0.5); border-radius: 4px; width: 40px; height: 40px; display: block; text-align: center; line-height: 36px; color: #fff; font-size: 21px; position: absolute; top: 50%; z-index: 99; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } .honos-slider-prev:before, .honos-slider-next:before { position: relative; top: 2px; left: 1px; } .honos-slider-prev:before { left: 0; } .honos-slider-prev { left: 20px; } .honos-slider-next { right: 20px; } .honos-slider-prev:hover, .honos-slider-next:hover { background-color: rgb(0,0,0); color: #fff; } /* Sliding content */ .honos-sliding-inner .sliding-icon { font-size: 30px; color: #fff; background: #cca876; border-radius: 50%; padding: 0; width: 60px; height: 60px; line-height: 60px; text-align: center; display: block; margin: 0 auto; top: -30px; position: relative; } .honos-sliding-inner .sliding-title { font-family: 'Libre Baskerville'; display: block; text-align: center; color: #4A4F55; max-width: 80%; margin: 0 auto; font-weight: bold; line-height: 24px; font-size: 18px; margin-top: -17px; } .honos-sliding-inner .sliding-secondary-title { display: block; text-align: center; font-size: 13px; line-height: 20px; color: #CCA876; font-family: 'Open Sans'; font-weight: bold; margin-top: 13px; } .honos-sliding-inner .sliding-button { text-align: center; display: block; background-color: #4a4f55; margin-top: 33px; transform: rotateX(-90deg); -ms-transform: rotateX(-90deg); -webkit-transform: rotateX(-90deg); -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .honos-sliding-inner:hover .sliding-button { transform: rotateX(0deg); -ms-transform: rotateX(0deg); -webkit-transform: rotateX(0deg); } .honos-sliding-inner .sliding-button a { font-size: 13px; border: 1px solid #CCA876; padding: 8px 22px; display: inline-block; line-height: normal; font-weight: 600; text-transform: uppercase; font-family: 'Open Sans'; margin: 28px 0; } .honos-sliding-inner .sliding-button a:hover { color: #fff; background-color: #CCA876; } .honos-sliding-inner { margin: 0 -15px 0; background-color: #fff; position: relative; top: 0; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .honos-sliding-inner:hover { top: -91px; } .slider-overlay-left, .slider-overlay-right { width: 37.5%; float: left; display: block; background: url(images/patterndot.png) #45414d; padding: 15px 35px 30px 35px; } .slider-overlay-middle { width: 25%; float: left; display: block; background-color: #CCA876; padding: 15px 35px 30px 35px; } .slider-overlay-left-inner { float: right; max-width: 40%; } .slider-overlay-right-inner { max-width: 40%; } .row.slider-overlay h4 { color: #fff; } .row.slider-overlay p { color: #fff; font-family: 'Open Sans'; font-size: 14px; line-height: 25px; opacity: 0.8; } .row.slider-overlay h4:before { font-size: 19px; color: #fff; margin-left: 0; margin-right: 10px; } .row.slider-overlay { z-index: 222; } /* Practice module */ .practice-container { margin: 0 -15px; margin-bottom: 60px; } .practice-container > div { width: 25%; float: left; padding: 15px; } .honos-practice-container { min-height: 200px; background-size: cover !important; background-position: center !important; position: relative; overflow: hidden; cursor: pointer; -webkit-transform-style: preserve-3d; -moz-transform-style: preserve-3d; transform-style: preserve-3d; } .honos-practice-container:before { content: ''; width: 100%; height: 100%; position: absolute; top: 0; left: 0; background-color: rgba(0, 0, 0, 0.9); opacity: 0.8; z-index: 1; -webkit-transition: opacity .8s cubic-bezier(.19, 1, .22, 1); transition: opacity .8s cubic-bezier(.19, 1, .22, 1); } .honos-practice-inner { position: absolute; z-index: 2; top: 50%; width: 100%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); } .honos-practice-inner .practice-text { color: #fff; font-size: 21px; font-weight: bold; text-align: center; display: block; padding: 0 20px; } .honos-practice-inner .practice-icon { display: block; text-align: center; font-size: 25px; margin-bottom: 12px; color: #fff; } .honos-practice-image { position: absolute; top: 50%; -webkit-transform: translateY(-50%); -moz-transform: translateY(-50%); transform: translateY(-50%); width: 100%; height: 100%; background-size: cover !important; background-position: center !important; -webkit-transition: -webkit-transform .6s cubic-bezier(.19, 1, .22, 1); transition: transform .6s cubic-bezier(.19, 1, .22, 1); } .honos-practice-image img { height: 100%; max-width: none; } .honos-practice-container:hover:before { opacity: 1; } .honos-practice-container:hover .honos-practice-image { -webkit-transform: scale(1.25) translateY(-50%); -moz-transform: scale(1.25) translateY(-50%); transform: scale(1.25) translateY(-50%); } /* Team module */ .row.attourneys { margin-bottom: 57px; } .honos-team-image { width: 30%; float: left; } .honos-team-side { width: 70%; float: left; padding: 20px 30px; line-height: 20px; } .honos-team-name { display: block; font-size: 18px; line-height: 30px; color: #000; margin-bottom: 14px; } .honos-team-description { display: block; font-size: 14px; line-height: 25px; margin-bottom: 15px; font-family: 'Open Sans'; } .honos-team-email, .honos-team-facebook, .honos-team-twitter, .honos-team-linkedin { float: right; } .honos-team-image { background-color: #000; } .honos-team-image img { filter: grayscale(100%); -webkit-filter: grayscale(100%); opacity: 0.5; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .honos-team-container:hover .honos-team-image img { filter: grayscale(0%); -webkit-filter: grayscale(0%); } .attourneys > div { padding: 15px; } /* Latest news */ .honos-latest-news-wrapper { position: relative; overflow: hidden; margin: 0 -20px; } .honos-latest-news { width: 20000em; position: relative; } .honos-latest-news-item { float: left; padding: 0 20px; max-width: 400px; } .honos-latest-news-img { margin-bottom: 20px; display: block; } .latest-news-title { font-size: 19px; color: #000; margin-bottom: 10px; display: block; } .latest-news-excerpt { margin: 0; margin-bottom: 15px; color: #555; font-family: 'Open Sans'; } .latest-news-meta { font-size: 11px; text-transform: uppercase; padding: 6px 0px 5px; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; margin-bottom: 15px; } .latest-news-meta .latest-news-date { float: left; font-family: 'Lato'; } .latest-news-meta .latest-news-comments { float: right; font-family: 'Lato'; } .latest-news-meta .latest-news-date:before, .latest-news-meta .latest-news-comments:before { margin-right: 5px; color: #ccc; } .honos-latest-news-next, .honos-latest-news-prev { float: right; width: 35px; height: 35px; border: 2px solid #ddd; background: transparent; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; cursor: pointer; display: block; text-align: center; line-height: 32px; color: #ddd; position: relative; bottom: -15px; } .honos-latest-news-next:before { position: relative; right: -1px; } .honos-latest-news-prev { margin-right: 10px; } .honos-latest-news-next:hover, .honos-latest-news-prev:hover { color: #777; border-color: #777; } .latest-news-read-more { height: 30px; padding: 0 12px; font-size: 12px; line-height: 26px; font-weight: 600; border: 2px solid #DDD; border-radius: 2px; color: #888; box-shadow: none; display: inline-block; text-transform: uppercase; } .latest-news-read-more:hover { color: #000; border-color: #AAA; } .float-left { float: left; } /* Testimonial */ .testimonial-image { float: left; margin-right: 30px; position: relative; } .testimonial-image img { max-width: 120px; display: block; } .testimonial-author { font-size: 12px; line-height: 16px; display: block; color: #fff; font-family: 'Open Sans'; font-weight: 600; position: absolute; bottom: 0; width: 100%; background-color: rgba(0,0,0,0.4); padding: 5px 10px; } .testimonial-title { font-family: 'Libre Baskerville'; display: block; font-size: 24px; line-height: 30px; color: #2B2B2B; } .testimonial-stars { margin-top: 10px; } .testimonial-stars i { font-size: 20px; color: #CCA876; } .testimonial-content { color: #4A4A4A; font-size: 15px; line-height: 25px; font-family: 'Open Sans'; font-weight: 400; margin-top: 19px; } .testimonial-item { width: 670px; } #testimonial-container { width: 20000em; position: relative; } .testimonial-wrapper { position: relative; overflow: hidden; width: 670px; padding: 100px 0 90px; } .testimonial-item { float: left; } .testimonial-pagination a { width: 12px; height: 12px; font-size: 0px; display: block; border: 2px solid transparent; border-radius: 50%; background-color: #d0d0d0; outline: none; text-decoration: none; background-clip: content-box; margin: 0 4px; float: left; } .testimonial-pagination a.active { border-color: #CCA876; background-color: transparent; } .testimonial-main-wrapper { position: relative; margin-bottom: 50px; } .tespimonial-background { position: absolute; height: 100%; background-repeat: no-repeat !important; background-position: center right !important; background-color: #efefef !important; } .testimonial-pagination { margin-left: 150px; } .testimonial-data { min-height: 145px; } /* Footer */ .footer-wrapper { background-color: #000; margin-top: 50px; } .bottom-footer { padding: 20px 0; background-color: rgba(255,255,255,.05); border-top: 1px solid #1f1f1f; } .bottom-footer-inner, .footer-links-container { max-width: 1170px; padding: 0 15px; margin: 0 auto; } .footer-links-container { padding: 40px 0 50px 0; } .footer-social a { color: #545454; font-size: 12px; border: 1px solid #545454; width: 32px; height: 32px; display: block; float: right; text-align: center; line-height: 32px; margin-left: 6px; } .footer-social a:hover { color: #fff; border-color: #fff; } .copyright { float: left; line-height: 32px; } /* Blog */ .single-image-container { margin-bottom: 27px; } .single-image-container img { width: 100%; height: auto; } .entry-header .entry-title { margin-top: 0; line-height: 30px; } .post-meta > span { padding-right: 18px; } .post-meta > span:last-child { padding: 0; } .post-meta .post-date { text-transform: uppercase; } .post-meta .post-category, .post-meta .post-comments, .post-meta .post-date { color: #bbb; font-size: 13px; font-family: 'Lato'; text-transform: uppercase; } .post-meta .post-category a, .post-meta .post-comments a { color: #bbb; font-size: 13px; text-transform: uppercase; } .post-meta .post-category a:hover, .post-meta .post-comments a:hover { color: #727272; } .entry-summary p { font-size: 14px; line-height: 25px; color: #727272; font-family: 'Open Sans'; } #entry-content-wrapper, #entry-content-wrapper p { font-size: 14px; line-height: 25px; font-family: 'Open Sans'; } body.blog #main-content, body.search #main-content, body.page #main-content, body.error404 #main-content, body.archive #main-content { margin-top: 121px; } body #main-content, body.error404 #primary { min-height: 600px; } body.error404 #content { width: 100%; } body.blog .content-wrapper article, body.search .content-wrapper article, body.archive .content-wrapper article { width: 50%; float: left; padding: 0 30px; padding-bottom: 50px; } body.blog .content-wrapper, body.search .content-wrapper, body.archive .content-wrapper { margin: 0 -30px; } .main-page-title { margin: 0; font-size: 36px; line-height: 44px; font-weight: normal; text-align: center; padding: 90px 0 60px } body.page.sidebar-right .main-page-title, body.page.sidebar-left .main-page-title { max-width: 75%; } body.page.sidebar-left .main-page-title { float: right; width: 100%; } /* Single post */ body.single .main-content { margin-top: 181px } body.single .single-post-image-container, body.page #entry-content-wrapper > img { margin-bottom: 30px; } body.single .post-meta { margin-bottom: 12px; } body.single .post-meta > span { font-size: 13px; padding-right: 30px; color: #bbb; text-transform: uppercase; font-family: 'Lato'; } body.single .entry-title { margin-top: 0; margin-bottom: 6px; } body.single .single-post-share { margin: 23px 0 60px 0; background-color: #f5f5f5; padding: 20px; } body.single .single-post-share a { width: 28px; height: 28px; display: inline-block; line-height: 30px; text-align: center; border-radius: 50%; color: #fff; background-color: #999; font-size: 14px; margin-right: 7px; margin-bottom: 0; border: none; box-shadow: none; } body.single .single-post-share a.icon-vkontakte:before, body.single .single-post-share a.icon-facebook:before { position: relative; left: -1px; } body.single .single-post-share a:hover { background-color: #CCA876; } .single-post-share > span { margin-right: 10px; } #author-avatar { float: left; margin-right: 15px; } #author-description .author-text { color: #222; } #author-description p { line-height: 22px; } .comment-edit-link { margin-left: 10px; } .comments-container #submit, .widget.widget_search form input[type=submit] { background-color: #CCA876; color: #fff; } .comments-container #submit:hover, .widget.widget_search form input[type=submit]:hover { background-color: #9B7B4D; } .footer-links-container .newsletter.newsletter-widget form > *:nth-child(2) { float: left; width: 55%; } .footer-links-container .newsletter.newsletter-widget form > *:nth-child(3) { float: left; width: 45%; } .btn { border-radius: 0; border: none; } .btn-xs { padding: 4px 7px; } .btn-sm { padding: 7px 15px; } .btn-warning { background-color: #CCA876; } .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { background-color: #9B7B4D; } /* Wordpress Core */ .sticky { border-top: 2px solid #CCA876; } .sticky-featured-post { position: absolute; top: 0; right: 10px; } .bypostauthor { text-decoration: none; } .alignnone { margin: 5px 20px 20px 0; } .aligncenter, div.aligncenter { display: block; margin: 5px auto 5px auto; } .alignright { float:right; margin: 5px 0 20px 20px; } .alignleft { float: left; margin: 5px 20px 20px 0; } .aligncenter { display: block; margin: 5px auto 5px auto; } a img.alignright { float: right; margin: 5px 0 20px 20px; } a img.alignnone { margin: 5px 20px 20px 0; } a img.alignleft { float: left; margin: 7px 32px 0px 0; } a img.aligncenter { display: block; margin-left: auto; margin-right: auto } .wp-caption { max-width: 96%; /* Image does not overflow the content area */ padding: 5px 3px 10px; text-align: center; } .wp-caption.alignnone { margin: 5px 20px 20px 0; } .wp-caption.alignleft { margin: 5px 20px 20px 0; } .wp-caption.alignright { margin: 5px 0 20px 20px; } .wp-caption img { border: 0 none; height: auto; margin: 0; max-width: 98.5%; padding: 0; width: auto; } .wp-caption p.wp-caption-text { font-size: 11px; line-height: 17px; margin: 0; padding: 0 4px 5px; } .widget .search-form label { width: 100%; display: inline-block; } .textwidget iframe { width: 100%; } .post-password-form label { float: left; } .error404 .content-area .search-form .search-submit, .no-results-wrapper .search-form .search-submit { padding: 13px 20px; position: relative; top: -1px; } .post-password-form input[type=submit], .no-results-wrapper input[type=submit] { height: 34px; padding: 0 25px; margin-left: 10px; } .error404 .content-area .search-form .search-field, .no-results-wrapper .search-form .search-field { height: 41px; line-height: 41px; border-color: #555; display: inline-block; } .comments-container li.pingback { margin-left: 40px; margin-bottom: 5px; width: 90%; } /* Widgets */ #footer-sidebar li, #footer-sidebar .children li:first-child { margin-top: 8px; } #footer-sidebar li:first-child { margin-top: 0; } #footer-sidebar li:before { content: '\24'; font-family: 'icons'; display: inline-block; -webkit-transform: translateX(-10px); -moz-transform: translateX(-10px); -o-transform: translateX(-10px); -ms-transform: translateX(-10px); transform: translateX(-10px); -webkit-transition: all 0.2s ease-in; -moz-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; -ms-transition: all 0.2s ease-in; transition: all 0.2s ease-in; } #footer-sidebar li:hover:before { -webkit-transform: translateX(-5px); -moz-transform: translateX(-5px); -o-transform: translateX(-5px); -ms-transform: translateX(-5px); transform: translateX(-5px); } #footer-sidebar li a { color: #6d6e64; } #footer-sidebar li a:hover { color: #efbe02; } /* No results */ .no-results-wrapper form { margin-top: 15px; } .no-results-wrapper form .screen-reader-text { display: none; } .no-results-wrapper .search-form .search-submit { top: 0; } /* 404 error */ .error404 .content-area #content, .search-no-results .no-results-wrapper { max-width: 1200px; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -moz-transform: translate(-50%, -50%); -o-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); } .error404 .content-area .page-content { margin-top: 50px; } .error404 .content-area .screen-reader-text { display: none; } .error404 .content-area .search-form { text-align: center; } .error404 .content-area .page-content p { font-size: 2em; font-weight: 300; text-align: center; color: #555; } .error404 .content-area header.page-header h1 { font-size: 15em; font-weight: bold; color: #555; margin: 0; } body.error404 #primary.content-area { height: 100%; position: relative; } body.error404 .page-header { border: none; margin: 0; margin-top: -35px; } .error404 .content-area .search-form { margin-top: 15px; } /* Gallery */ .entry-content .tiled-gallery { margin-bottom: 30px; } .tiled-gallery .gallery-row { margin-right: auto; margin-left: auto; width: 100% !important; } .entry-content .tiled-gallery-caption { background: #09c; color: #fff; } .entry-content .tiled-gallery .tiled-gallery-caption { margin-left: 2px; width: 98.5%; } .entry-content .tiled-gallery .tiled-gallery-item-large .tiled-gallery-caption { margin-left: 2px; width: 99.2%; } .gallery { margin-bottom: 20px; } .gallery-item { float: left; margin: 0 4px 4px 0; overflow: hidden; position: relative; } .gallery-columns-1 .gallery-item { max-width: 100%; } .gallery-columns-2 .gallery-item { max-width: 48%; max-width: -webkit-calc(50% - 4px); max-width: calc(50% - 4px); } .gallery-columns-3 .gallery-item { max-width: 32%; max-width: -webkit-calc(33.3% - 4px); max-width: calc(33.3% - 4px); } .gallery-columns-4 .gallery-item { max-width: 23%; max-width: -webkit-calc(25% - 4px); max-width: calc(25% - 4px); } .gallery-columns-5 .gallery-item { max-width: 19%; max-width: -webkit-calc(20% - 4px); max-width: calc(20% - 4px); } .gallery-columns-6 .gallery-item { max-width: 15%; max-width: -webkit-calc(16.7% - 4px); max-width: calc(16.7% - 4px); } .gallery-columns-7 .gallery-item { max-width: 13%; max-width: -webkit-calc(14.28% - 4px); max-width: calc(14.28% - 4px); } .gallery-columns-8 .gallery-item { max-width: 11%; max-width: -webkit-calc(12.5% - 4px); max-width: calc(12.5% - 4px); } .gallery-columns-9 .gallery-item { max-width: 9%; max-width: -webkit-calc(11.1% - 4px); max-width: calc(11.1% - 4px); } .gallery-columns-1 .gallery-item:nth-of-type(1n), .gallery-columns-2 .gallery-item:nth-of-type(2n), .gallery-columns-3 .gallery-item:nth-of-type(3n), .gallery-columns-4 .gallery-item:nth-of-type(4n), .gallery-columns-5 .gallery-item:nth-of-type(5n), .gallery-columns-6 .gallery-item:nth-of-type(6n), .gallery-columns-7 .gallery-item:nth-of-type(7n), .gallery-columns-8 .gallery-item:nth-of-type(8n), .gallery-columns-9 .gallery-item:nth-of-type(9n) { margin-right: 0; } .gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1), .gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1), .gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1), .gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) { clear: left; } .gallery-caption { background-color: rgba(0, 0, 0, 0.7); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; color: #fff; font-size: 12px; line-height: 1.5; margin: 0; max-height: 50%; opacity: 0; padding: 6px 8px; position: absolute; bottom: 0; left: 0; text-align: left; width: 100%; } .gallery-caption:before { content: ""; height: 100%; min-height: 49px; position: absolute; top: 0; left: 0; width: 100%; } .gallery-item:hover .gallery-caption { opacity: 1; } .gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption { display: none; } .wp-audio-shortcode { margin-bottom: 30px; } /* Widgets */ #secondary .widget { margin-bottom: 30px; } #secondary .widget > h4 { font-weight: 600; margin-top: 0; margin-bottom: 35px; text-align: center; font-size: 26px; } .footer-links-container .widget > h4 { margin-top: 0; color: #fff; padding: 6px 0 14px 0; } .widget table, .widget p { margin: 0; padding: 0; } .widget_nav_menu ul, .widget_recent_comments ul, .widget_rss ul, .widget_pages ul, .widget_archive ul, .widget_categories ul, .widget_meta ul, .widget_recent_entries ul { margin: 0; list-style: none; padding-left: 0; } .widget_nav_menu ul ul.children, .widget_recent_comments ul ul.children, .widget_rss ul ul.children, .widget_pages ul ul.children, .widget_archive ul ul.children, .widget_categories ul ul.children, .widget_meta ul ul.children, .widget_recent_entries ul ul.children, .widget_nav_menu ul ul.sub-menu { margin-top: 10px; } #content-sidebar .widget_nav_menu ul li, #content-sidebar .widget_recent_comments ul li, #content-sidebar .widget_rss ul li, #content-sidebar .widget_pages ul li, #content-sidebar .widget_archive ul li, #content-sidebar .widget_categories ul li, #content-sidebar .widget_meta ul li, #content-sidebar .widget_recent_entries ul li { font-size: 16px; margin: 0; margin-bottom: 10px; } .footer-links-container .widget_nav_menu ul li:before, .footer-links-container .widget_recent_comments ul li:before, .footer-links-container .widget_rss ul li:before, .footer-links-container .widget_pages ul li:before, .footer-links-container .widget_archive ul li:before, .footer-links-container .widget_categories ul li:before, .footer-links-container .widget_meta ul li:before, .footer-links-container .widget_recent_entries ul li:before { content: '\e973'; font-family: 'icons'; margin-right: 5px; } .widget_nav_menu ul li:last-child, .widget_recent_comments ul li:last-child, .widget_rss ul li:last-child, .widget_pages ul li:last-child, .widget_archive ul li:last-child, .widget_categories ul li:last-child, .widget_meta ul li:last-child, .widget_recent_entries ul li:last-child { margin-bottom: 0; } .widget_nav_menu ul li a, .widget_recent_comments ul li a, .widget_rss ul li a, .widget_pages ul li a, .widget_archive ul li a, .widget_categories ul li a, .widget_meta ul li a, .widget_recent_entries ul li a { font-weight: 600; font-size: 13px; text-transform: uppercase; } .widget.widget_nav_menu div > ul { padding-left: 0; } .widget_nav_menu ul li:last-child, .widget_recent_comments ul li:last-child, .widget_rss ul li:last-child, .widget_pages ul li:last-child, .widget_archive ul li:last-child, .widget_categories ul li:last-child, .widget_meta ul li:last-child, .widget_recent_entries ul li:last-child { border-bottom: 0 none; padding-bottom: 0; } .footer-links-container .widget { margin-bottom: 30px; } .footer-links-container .widget:last-child { margin-bottom: 0; } .tagcloud:after { content: " "; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } .tagcloud a { background-color: #e7e7e7; color: #828282 !important; display: block; float: left; margin: 0 6px 5px 0; padding: 0px 10px; font-size: 13px !important; text-transform: uppercase; line-height: 38px; border-radius: 2px; -webkit-transition: all ease-in-out 0.2s; -moz-transition: all ease-in-out 0.2s; -o-transition: all ease-in-out 0.2s; transition: all ease-in-out 0.2s; } .tagcloud a:hover { opacity: 0.8; } .widget_rss img { display: none; } .widget .widget-title { color: #4c4a4b; font-weight: 400; font-size: 20px; padding: 0; } .widget-area .widget .widget-title { padding-bottom: 32px; margin: 0; font-size: 3.1vw; font-weight: 700; line-height: 1.25; color: #000; text-align: center; } .widget-area .widget .widget-title:before { content: ''; display: inline-block; height: 40px; width: 4px; position: relative; margin-right: 15px; } .honos-about-author .author-name { font-size: 16px; line-height: 20px; font-weight: 600; color: #4b494a; display: block; padding-top: 26px; } .honos-about-author .author-position { font-size: 14px; line-height: 20px; font-style: italic; color: #828282; display: block; padding-top: 7px; } .honos-about-author .about-author-social { margin-left: -7px; padding-top: 8px; font-size: 16px; } .honos-about-author .about-author-social a { margin-right: 6px; } .honos-about-author .author-description { padding-top: 13px; color: #828282; } .about-author-secondary { padding-bottom: 22px; } .widget.widget_recent_entries .news_image { float: left; } .widget.widget_recent_entries .post_container { padding-left: 90px; } .widget.widget_recent_entries .post_container.no_thumb { padding-left: 0; } .widget.widget_recent_entries h3 { padding: 0; clear: none; line-height: 24px; } .widget.widget_recent_entries h3 a { font-size: 16px; font-weight: 400; margin-top: -6px; display: inline-block; } .widget.widget_recent_entries .post-time { font-size: 14px; color: #828282; } .widget.widget_recent_entries .post-time:before { font-size: 16px; margin-right: 8px; } .widget.widget_fastflickrwidget { margin-right: -5px; } .widget.widget_fastflickrwidget a { width: 25%; display: inline-block; } .widget.widget_fastflickrwidget a img { width: 100%; height: auto; margin: 0; padding-right: 5px; padding-bottom: 5px; } .content-sidebar .widget.widget_newsletterwidget > p { margin-top: -17px; } .content-sidebar .widget.widget_newsletterwidget form { margin-top: 12px; } .content-sidebar .widget.widget_newsletterwidget form p { float: none; } .content-sidebar .widget.widget_newsletterwidget .newsletter-email { width: 100%; background-color: #e7e7e7; margin-bottom: 10px; } .widget.fep_login input[type="text"], .widget.fep_login input[type="password"] { width: 100%; border-radius: 0; border: none; background-color: #e7e7e7; color: #818181; margin-bottom: 10px; outline: none; height: 40px; line-height: 40px; font-size: 14px; padding: 0 13px; } .widget.fep_login input[type="submit"] { float: right; border-radius: 0; font-weight: 600; padding: 2px 32px; font-size: 14px; } .widget.fep_login .frontendlogin-submit label { font-size: 14px; color: #a9a9a9; line-height: 38px; } .honos-checkbox { width: 24px; height: 24px; background-color: #e7e7e7; display: inline-block; float: left; margin-top: 7px; margin-right: 8px; cursor: pointer; position: relative;; } .honos-checkbox.checked:before { content: '\e807'; font-family: 'icons'; color: #2599d6; position: absolute; top: 0; width: 24px; height: 24px; text-align: center; line-height: 24px; display: inline-block; font-size: 16px; } #rememberme { display: none; } .widget.fep_login form > a { font-size: 14px; margin-top: 13px; display: inline-block; } body #main .widget.widget_honos-directory-followers > div { margin-bottom: 2px; } .widget.widget_honos-directory-followers > div a { font-size: 15px; color: #fff; height: 46px; line-height: 46px; display: inline-block; width: 100%; padding-left: 9px; position: relative; overflow: hidden; } .widget.widget_honos-directory-followers > div a:hover { opacity: 0.8; } .widget.widget_honos-directory-followers > div a:before { font-size: 22px; margin-right: 42px; position: relative; z-index: 2; } .widget.widget_honos-directory-followers > div a:after { content: ''; position: absolute; height: 100px; width: 100px; top: -40px; left: -43px; z-index: 1; background-color: rgba(0,0,0,0.1); -webkit-transform: rotate(30deg); -ms-transform: rotate(30deg); transform: rotate(30deg); } .widget.widget_honos-directory-followers > div a span { font-weight: 600; font-size: 16px; padding-right: 4px; } .follow-me-twitter a { background-color: #00acee; } .follow-me-twitter a:before { top: 3px; left: 2px; } .follow-me-facebook a { background-color: #315a98; } .follow-me-facebook a:before { top: 3px; } .follow-me-rss a { background-color: #f4821f; } .follow-me-rss a:before { top: 3px; left: 1px; } .follow-me-googleplus a { background-color: #df4a32; } .follow-me-googleplus a:before { top: 4px; left: 3px; } .follow-me-youtube a { background-color: #cd1225; } .follow-me-youtube a:before { top: 3px; left: 2px; } .follow-me-vimeo a { background-color: #1ab7ea; } .follow-me-vimeo a:before { top: 3px; left: 2px; } .follow-me-soundcloud a { background-color: #ff5500; } .follow-me-soundcloud a:before { top: 3px; left: -3px; } .follow-me-instagram a { background-color: #2b5c84; } .follow-me-instagram a:before { top: 4px; left: 2px; } .widget.widget_search .screen-reader-text { display: none !important; } .newsletter.newsletter-widget { margin-top: 12px; } .newsletter.newsletter-widget .newsletter-email { margin-bottom: 10px; width: 100%; } /*#content-sidebar .widget li .post-date { float: right; } #content-sidebar .widget.widget_categories li, #content-sidebar .widget.widget_archive li { text-align: right; } #content-sidebar .widget.widget_categories li a, #content-sidebar .widget.widget_archive li a { float: left; }*/ /* WP Search widget */ .widget.widget_search form .search-field { padding: 10px 10px 11px; margin-bottom: 10px; overflow: hidden; width: 100%; } .widget.widget_search form input[type=submit] { float: right; } .widget.widget_search form:after { content: " "; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; } .widget p { color: #828282; } /* WP Calendar */ #calendar_wrap { padding: 0; } #wp-calendar { border: 0; border-spacing: 1px; table-layout: fixed; width: 100%; margin: 0 auto; padding-bottom: 30px; } #wp-calendar thead tr th { border-width: 0; text-align: center; background: #f1f1f1; line-height: 40px; height: 40px; font-size: 12px; } #wp-calendar caption { font-size: 16px; line-height: 40px; text-align: center; font-weight: 300; margin: 0 0 10px 0; } #wp-calendar td#prev a, #wp-calendar td#next a { height: 40px; border: 0; display: inline-block; color: #A7A7A7; font-size: 16px; line-height: 40px; text-align: center; font-weight: 300; } #wp-calendar thead th i:before { margin: 0; width: auto; } #wp-calendar td#prev { text-align: left; border: 0; } #wp-calendar td#next { text-align: right; border: 0; } #wp-calendar tbody td { border: 1px solid #f1f1f1; height: 40px; line-height: 40px; padding: 0; color: #A7A7A7; font-size: 14px; background: #fff; position: relative; text-align: center; font-weight: 300; } #wp-calendar td.pad { background: none; border: none; } #wp-calendar tbody td a { position: absolute; top: 0; bottom: 0; left: 0; right: 0; text-align: center; line-height: 40px; } #wp-calendar tbody td.dayWithPost a:hover { color: #09c; } #wp-calendar tbody td.today { color: #6e7a89; background: #f1f1f1; } .widget .divider { position: relative; } .widget .divider:after { content: ""; position: absolute; bottom: 29px; right: 0; width: 100%; border-bottom: 1px solid rgb(219, 219, 219); z-index: 0; } .content-sidebar .widget > div:not(.divider), .content-sidebar .widget > ul, .content-sidebar .widget > select, .content-sidebar .widget > form { position: relative; margin-bottom: 30px; } .content-sidebar .widget > ul { padding-left: 0; } body.single:not(.single-service) #primary { margin-bottom: 75px; } .open-post-image img { max-width: 100%; } /* Comments */ .comments-container { margin-top: 42px; overflow: hidden; } .comments-container ol.commentlist { list-style-type: none; } .comments-container ul, .comments-container li, .comments-container ol { margin: 0; padding: 0; } .comment-content ul, .comment-content ol { margin: 0 0 24px 20px; } .comments-container ol.children { margin-bottom: 0; margin-left: 85px; list-style-type: none; } .comments-container .comment-author b, .comments-container p:last-child { margin: 0; padding: 0; } .comments-container .comment-author b a { text-decoration: none; } .comments-container p.no-comments { margin-top: 50px; text-align: center; } .comments-container .comments-title { margin: 0 0 30px 0; padding: 0; font-size: 29px; line-height: 35px; text-align: center; padding-top: 20px; } .comments-container .comments-title span { font-weight: 700; } .comments-container .comment-author b { text-transform: capitalize; display: inline-block; font-weight: 400; color: #6d6e64; font-size: 1.5em; } .comment-metadata a { text-decoration: none; } .comments-container .comment-meta { font-size: 12px; } .comment-metadata time { font-style: italic; } .comments-container .says { display: none; } .comments-container img.avatar { overflow: hidden; display: inline-block; float: left; margin-right: 20px; } .comments-container .comment { margin-top: 25px; } .comment-content { display: block; overflow: hidden; margin-top: 0; margin-left: 84px; padding-right: 35px; padding-bottom: 10px; margin-top: 10px; } .comment-content p { font-size: 0.9em; line-height: 22px; } .comment-body { padding-top: 15px; } .commentlist > li.comment:first-child > .comment-body { border: 0; } .comments-container h3#reply-title { font-weight: 400; padding-top: 0px; font-size: 28px; } .comments-container div.reply { display: block; text-align: right; } article.hentry .edit-link { display: block; text-align: left; overflow: hidden; } article.hentry .post-edit-link, .comments-container .comment-reply-link { display: inline-block; padding: 5px 10px; border: 2px solid #fff; font-size: 0.9em; text-decoration: none; } article.hentry .post-edit-link:hover, .comment-reply-link:hover { background-color: #fff; color: #555; } article.hentry .more-link { position: relative; color: #2B2B2C; font-size: 20px; text-align: center; margin-top: 40px; margin-bottom: 30px; min-height: 40px; width: 100%; display: inline-block; font-family: "Merriweather"; -webkit-transition: color 0.2s; -moz-transition: color 0.2s; transition: color 0.2s; } article.hentry .more-link:focus { outline: none; } article.hentry .more-link::before { position: absolute; top: 20px; left: 50%; color: transparent; content: '•'; text-shadow: 0 0 transparent; font-size: 1em; -webkit-transition: text-shadow 0.3s, color 0.3s; -moz-transition: text-shadow 0.3s, color 0.3s; transition: text-shadow 0.3s, color 0.3s; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); transform: translateX(-50%); pointer-events: none; } article.hentry .more-link:hover::before, article.hentry .more-link:focus::before { color: #09c; text-shadow: 13px 0 #09c, -13px 0 #09c; } article.hentry .more-link:hover { color: #09c; } article.hentry .more-link .meta-nav { display: none; } .comments-container .comment-form p { margin-bottom: 5px; } .comments-container .comment-form p.logged-in-as, .comments-container .comment-form p.comment-notes { margin-bottom: 35px; text-align: center; } .comments-container .comment-form p.form-submit { margin-top: 10px; } .comments-container .comment-form:after { content: ""; clear: both; display: block; } .comments-container .comment-form p label { display: block; font-size: 16px; margin-bottom: 3px; float: left; width: 80px; } .comments-container .comment-form p.comment-form-comment label { display: none; } .comments-container .comment-form #comment { width: 100%; } body .comments-container .comment-form-top input { font-size: 14px; color: #828282; border: none; border-radius: 0; width: 100%; padding: 16px 10px 16px 0; outline: none; padding: 10px; border: 1px solid rgba(109, 110, 100, 0.5); } .comment-form-top > span { width: 33.33%; float: left; display: inline-block; padding: 0 6px; } .comment-form-top { margin: 0 -6px; margin-top: 10px; } .comment-form-before { color: #6d6e64; } body .comments-container textarea { font-size: 14px; color: #828282; padding: 0; border-radius: 0; border: none; margin-top: 15px; max-height: 141px; outline: none; padding: 10px; border: 1px solid rgba(109, 110, 100, 0.5); } .comments-container #submit { margin-top: 12px; } #footer-sidebar > aside { text-align: center; margin-bottom: 40px; } #footer-sidebar > aside:last-child { margin-bottom: 0; } /* Page navigation */ .entry-content .page-links, .pagination { margin: 0; position: relative; left: 50%; margin-top: 50px; margin-bottom: 72px; -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -o-transform: translateX(-50%); } .pagination .page-numbers.dots { display: none; } .page-links-title { float: left; padding-right: 15px; } .entry-content .page-links a, .entry-content .page-links > span:not(.page-links-title), .pagination a, .pagination span.page-numbers.current { display: inline-block; margin: 0 5px; text-align: center; height: 34px; width: 34px; line-height: 34px; position: relative; float: left; font-size: 14px; border: 1px solid #727272; border-radius: 50%; } .entry-content .page-links > span:not(.page-links-title), .pagination span.page-numbers.current { color: #4b494a; font-weight: 600; } .pagination.loop-pagination a.prev { text-align: center; padding: 0; background-color: #CCA876; color: #fff; border: none; } .pagination.loop-pagination a.prev:before { content: '\e813'; font-family: 'icons'; z-index: 2; background-color: transparent; border: none; } .pagination.loop-pagination a.next { text-align: center; padding: 0; background-color: #CCA876; color: #fff; border: none; } .pagination.loop-pagination a.next:before { content: '\27'; font-family: 'icons'; z-index: 2; background-color: transparent; border: none; } .pagination.loop-pagination a.prev:hover, .pagination.loop-pagination a.next:hover { background-color: #9B7B4D; } span.page-numbers.dots { margin-left: 5px; } .entry-content .page-links a:hover:before, .pagination a:hover:before { background-color: #dddddd; } .entry-content .page-links a:nth-last-child(2):before, .entry-content .page-links > span:not(.page-links-title):nth-last-child(2):before, .pagination a:nth-last-child(2):before, .pagination span.page-numbers.current:before:nth-last-child(2):before { border-right: none; } /* Tables */ article .entry-content table { width: 100%; } article .entry-content table thead { background: #f7f7f7; } article .entry-content table thead th { font-weight: bold; text-align: left; } article .entry-content table td, article .entry-content table th { padding: 10px; } article .entry-content table th { font-weight: 400; } article .entry-content table td { font-weight: 300; } article .entry-content table tr:nth-child(even) { background: #f7f7f7; } .navbar-toggle { background-color: #fff; margin: 15px 15px 14px; } .navbar-toggle .icon-bar { background-color: #428bca; } /* Responsiveness */ @media (max-width: 1200px) { .row.slider-overlay { width: auto !important; left: 0px !important; margin: 0 -37px !important; margin-top: 0 !important; } .slider-overlay-left, .slider-overlay-right, .slider-overlay-middle { width: 33.33%; } .slider-overlay-left-inner, .slider-overlay-right-inner { max-width: none; } .fp-slide-inner-container { padding: 0 70px; } .tespimonial-background { background-image: none !important; } } @media (min-width: 992px) and (max-width: 1200px) { } @media (max-width: 991px) { } @media (min-width: 768px) and (max-width: 991px) { .footer-links-container .newsletter.newsletter-widget form > *:nth-child(2), .footer-links-container .newsletter.newsletter-widget form > *:nth-child(3) { width: 100%; } } @media (max-width: 768px) { .header-bottom #primary-navigation { display: none; } .mobile-menu-button { display: block; } .practice-container > div { width: 50%; } body.blog .content-wrapper article, body.search .content-wrapper article, body.archive .content-wrapper article { width: 100%; } .slider-overlay-left, .slider-overlay-right, .slider-overlay-middle { width: 100% !important; height: auto !important; } .fp-slide-inner-container .fp-slide-title { width: auto; } .fp-slide-inner { width: 80%; } .footer-links-container .widget { margin-bottom: 30px !important; } } @media (max-width: 570px) { .header-top .free-consult { display: none; } .honos-latest-news-item { max-width: 570px; } .fp-slide-inner { bottom: 180px; } } @media (max-width: 480px) { .header-logo { max-width: 70%; } .practice-container > div { width: 100%; } .fp-slide-inner { bottom: 180px; } } /* Fontello fonts */ @font-face { font-family: 'icons'; src: url('fonts/options.eot?69397903'); src: url('fonts/options.eot?69397903#iefix') format('embedded-opentype'), url('fonts/options.woff?69397903') format('woff'), url('fonts/options.ttf?69397903') format('truetype'), url('fonts/options.svg?69397903#options') format('svg'); font-weight: normal; font-style: normal; } /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ /* @media screen and (-webkit-min-device-pixel-ratio:0) { @font-face { font-family: 'options'; src: url('../font/options.svg?69397903#options') format('svg'); } } */ [class^="icon-"]:before, [class*=" icon-"]:before { font-family: "icons"; font-style: normal; font-weight: normal; speak: none; display: inline-block; text-decoration: inherit; width: 1em; margin-right: .2em; text-align: center; /* opacity: .8; */ /* For safety - reset parent styles, that can break glyph codes*/ font-variant: normal; text-transform: none; /* fix buttons height, for twitter bootstrap */ line-height: 1em; /* Animation center compensation - margins should be symmetric */ /* remove if not needed */ margin-left: .2em; /* you can be more comfortable with increased icons size */ /* font-size: 120%; */ /* Font smoothing. That was taken from TWBS */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; /* Uncomment for 3D effect */ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ } .icon-right:before { content: '\27'; } /* ''' */ .icon-minus:before { content: '\e800'; } /* '' */ .icon-info-circled:before { content: '\e801'; } /* '' */ .icon-attention-circled:before { content: '\e802'; } /* '' */ .icon-cancel:before { content: '\e803'; } /* '' */ .icon-ok:before { content: '\e804'; } /* '' */ .icon-tree:before { content: '\e805'; } /* '' */ .icon-move:before { content: '\e806'; } /* '' */ .icon-th-list:before { content: '\e807'; } /* '' */ .icon-database:before { content: '\e808'; } /* '' */ .icon-vimeo:before { content: '\e809'; } /* '' */ .icon-server:before { content: '\e80a'; } /* '' */ .icon-lifebuoy:before { content: '\e80b'; } /* '' */ .icon-rebel:before { content: '\e80c'; } /* '' */ .icon-phone-squared:before { content: '\e80d'; } /* '' */ .icon-tag:before { content: '\e80e'; } /* '' */ .icon-user:before { content: '\e80f'; } /* '' */ .icon-comment-empty:before { content: '\e810'; } /* '' */ .icon-empire:before { content: '\e811'; } /* '' */ .icon-maxcdn:before { content: '\e812'; } /* '' */ .icon-left:before { content: '\e813'; } /* '' */ .icon-eye:before { content: '\e814'; } /* '' */ .icon-heart-1:before { content: '\e815'; } /* '' */ .icon-heart-empty:before { content: '\e816'; } /* '' */ .icon-rss-squared:before { content: '\e817'; } /* '' */ .icon-linkedin-1:before { content: '\e818'; } /* '' */ .icon-picture:before { content: '\e819'; } /* '' */ .icon-doc-inv:before { content: '\e81a'; } /* '' */ .icon-file-video:before { content: '\e81b'; } /* '' */ .icon-file-audio:before { content: '\e81c'; } /* '' */ .icon-quote-left-1:before { content: '\e81d'; } /* '' */ .icon-link:before { content: '\e81e'; } /* '' */ .icon-bookmark:before { content: '\e81f'; } /* '' */ .icon-search:before { content: '\e820'; } /* '' */ .icon-mail-alt:before { content: '\e821'; } /* '' */ .icon-music:before { content: '\e822'; } /* '' */ .icon-glass:before { content: '\e823'; } /* '' */ .icon-mail:before { content: '\e824'; } /* '' */ .icon-mail-squared:before { content: '\e825'; } /* '' */ .icon-star:before { content: '\e826'; } /* '' */ .icon-star-empty:before { content: '\e827'; } /* '' */ .icon-star-half:before { content: '\e828'; } /* '' */ .icon-star-half-alt:before { content: '\e829'; } /* '' */ .icon-user-plus:before { content: '\e82a'; } /* '' */ .icon-user-times:before { content: '\e82b'; } /* '' */ .icon-users:before { content: '\e82c'; } /* '' */ .icon-male:before { content: '\e82d'; } /* '' */ .icon-female:before { content: '\e82e'; } /* '' */ .icon-child:before { content: '\e82f'; } /* '' */ .icon-user-secret:before { content: '\e830'; } /* '' */ .icon-plus-squared-alt:before { content: '\e831'; } /* '' */ .icon-plus-squared:before { content: '\e832'; } /* '' */ .icon-plus-circled:before { content: '\e833'; } /* '' */ .icon-cancel-circled2:before { content: '\e834'; } /* '' */ .icon-ok-squared:before { content: '\e835'; } /* '' */ .icon-ok-circled2:before { content: '\e836'; } /* '' */ .icon-th:before { content: '\e837'; } /* '' */ .icon-camera-alt:before { content: '\e838'; } /* '' */ .icon-camera:before { content: '\e839'; } /* '' */ .icon-video:before { content: '\e83a'; } /* '' */ .icon-minus-circled:before { content: '\e83b'; } /* '' */ .icon-minus-squared:before { content: '\e83c'; } /* '' */ .icon-videocam:before { content: '\e83d'; } /* '' */ .icon-minus-squared-alt:before { content: '\e83e'; } /* '' */ .icon-help:before { content: '\e83f'; } /* '' */ .icon-help-circled:before { content: '\e840'; } /* '' */ .icon-info:before { content: '\e841'; } /* '' */ .icon-home:before { content: '\e842'; } /* '' */ .icon-unlink:before { content: '\e843'; } /* '' */ .icon-link-ext:before { content: '\e844'; } /* '' */ .icon-attach:before { content: '\e845'; } /* '' */ .icon-link-ext-alt:before { content: '\e846'; } /* '' */ .icon-lock-open:before { content: '\e847'; } /* '' */ .icon-cancel-circled:before { content: '\e848'; } /* '' */ .icon-lock:before { content: '\e849'; } /* '' */ .icon-plus:before { content: '\e84a'; } /* '' */ .icon-lock-open-alt:before { content: '\e84b'; } /* '' */ .icon-ok-circled:before { content: '\e84c'; } /* '' */ .icon-th-large:before { content: '\e84d'; } /* '' */ .icon-pin:before { content: '\e84e'; } /* '' */ .icon-eye-off:before { content: '\e84f'; } /* '' */ .icon-code:before { content: '\e850'; } /* '' */ .icon-attention-alt:before { content: '\e851'; } /* '' */ .icon-bell-off-empty:before { content: '\e852'; } /* '' */ .icon-quote-right-1:before { content: '\e853'; } /* '' */ .icon-file-archive:before { content: '\e854'; } /* '' */ .icon-file-code:before { content: '\e855'; } /* '' */ .icon-location:before { content: '\e856'; } /* '' */ .icon-bell-off:before { content: '\e857'; } /* '' */ .icon-bookmark-empty:before { content: '\e858'; } /* '' */ .icon-flag:before { content: '\e859'; } /* '' */ .icon-flag-empty:before { content: '\e85a'; } /* '' */ .icon-flag-checkered:before { content: '\e85b'; } /* '' */ .icon-thumbs-up:before { content: '\e85c'; } /* '' */ .icon-thumbs-down:before { content: '\e85d'; } /* '' */ .icon-thumbs-up-alt:before { content: '\e85e'; } /* '' */ .icon-thumbs-down-alt:before { content: '\e85f'; } /* '' */ .icon-download:before { content: '\e860'; } /* '' */ .icon-upload:before { content: '\e861'; } /* '' */ .icon-download-cloud:before { content: '\e862'; } /* '' */ .icon-upload-cloud:before { content: '\e863'; } /* '' */ .icon-reply:before { content: '\e864'; } /* '' */ .icon-reply-all:before { content: '\e865'; } /* '' */ .icon-forward:before { content: '\e866'; } /* '' */ .icon-export:before { content: '\e867'; } /* '' */ .icon-export-alt:before { content: '\e868'; } /* '' */ .icon-share-squared:before { content: '\e869'; } /* '' */ .icon-pencil:before { content: '\e86a'; } /* '' */ .icon-pencil-squared:before { content: '\e86b'; } /* '' */ .icon-edit:before { content: '\e86c'; } /* '' */ .icon-print:before { content: '\e86d'; } /* '' */ .icon-retweet:before { content: '\e86e'; } /* '' */ .icon-keyboard:before { content: '\e86f'; } /* '' */ .icon-gamepad:before { content: '\e870'; } /* '' */ .icon-comment-1:before { content: '\e871'; } /* '' */ .icon-chat-empty:before { content: '\e872'; } /* '' */ .icon-bell:before { content: '\e873'; } /* '' */ .icon-direction:before { content: '\e874'; } /* '' */ .icon-compass:before { content: '\e875'; } /* '' */ .icon-trash:before { content: '\e876'; } /* '' */ .icon-trash-empty:before { content: '\e877'; } /* '' */ .icon-doc:before { content: '\e878'; } /* '' */ .icon-docs:before { content: '\e879'; } /* '' */ .icon-doc-text-inv:before { content: '\e87a'; } /* '' */ .icon-file-pdf:before { content: '\e87b'; } /* '' */ .icon-file-word:before { content: '\e87c'; } /* '' */ .icon-file-excel:before { content: '\e87d'; } /* '' */ .icon-file-powerpoint:before { content: '\e87e'; } /* '' */ .icon-folder-empty:before { content: '\e87f'; } /* '' */ .icon-cart-plus:before { content: '\e880'; } /* '' */ .icon-cart-arrow-down:before { content: '\e881'; } /* '' */ .icon-calendar:before { content: '\e882'; } /* '' */ .icon-lightbulb:before { content: '\e883'; } /* '' */ .icon-zoom-in:before { content: '\e884'; } /* '' */ .icon-zoom-out:before { content: '\e885'; } /* '' */ .icon-angle-circled-left:before { content: '\e886'; } /* '' */ .icon-angle-double-right:before { content: '\e887'; } /* '' */ .icon-angle-double-up:before { content: '\e888'; } /* '' */ .icon-angle-circled-right:before { content: '\e889'; } /* '' */ .icon-calendar-empty:before { content: '\e88a'; } /* '' */ .icon-angle-circled-up:before { content: '\e88b'; } /* '' */ .icon-angle-circled-down:before { content: '\e88c'; } /* '' */ .icon-right-circled:before { content: '\e88d'; } /* '' */ .icon-up-circled:before { content: '\e88e'; } /* '' */ .icon-down-circled:before { content: '\e88f'; } /* '' */ .icon-ccw:before { content: '\e890'; } /* '' */ .icon-arrows-cw:before { content: '\e891'; } /* '' */ .icon-level-up:before { content: '\e892'; } /* '' */ .icon-level-down:before { content: '\e893'; } /* '' */ .icon-shuffle:before { content: '\e894'; } /* '' */ .icon-exchange:before { content: '\e895'; } /* '' */ .icon-history:before { content: '\e896'; } /* '' */ .icon-expand:before { content: '\e897'; } /* '' */ .icon-collapse:before { content: '\e898'; } /* '' */ .icon-down-circled2:before { content: '\e899'; } /* '' */ .icon-expand-right:before { content: '\e89a'; } /* '' */ .icon-collapse-left:before { content: '\e89b'; } /* '' */ .icon-play:before { content: '\e89c'; } /* '' */ .icon-play-circled:before { content: '\e89d'; } /* '' */ .icon-play-circled2:before { content: '\e89e'; } /* '' */ .icon-stop:before { content: '\e89f'; } /* '' */ .icon-pause:before { content: '\e8a0'; } /* '' */ .icon-to-end:before { content: '\e8a1'; } /* '' */ .icon-to-end-alt:before { content: '\e8a2'; } /* '' */ .icon-to-start:before { content: '\e8a3'; } /* '' */ .icon-fast-fw:before { content: '\e8a4'; } /* '' */ .icon-fast-bw:before { content: '\e8a5'; } /* '' */ .icon-eject:before { content: '\e8a6'; } /* '' */ .icon-angle-double-left:before { content: '\e8a7'; } /* '' */ .icon-target:before { content: '\e8a8'; } /* '' */ .icon-signal:before { content: '\e8a9'; } /* '' */ .icon-wifi:before { content: '\e8aa'; } /* '' */ .icon-award:before { content: '\e8ab'; } /* '' */ .icon-desktop:before { content: '\e8ac'; } /* '' */ .icon-laptop:before { content: '\e8ad'; } /* '' */ .icon-tablet:before { content: '\e8ae'; } /* '' */ .icon-mobile:before { content: '\e8af'; } /* '' */ .icon-inbox:before { content: '\e8b0'; } /* '' */ .icon-globe:before { content: '\e8b1'; } /* '' */ .icon-sun:before { content: '\e8b2'; } /* '' */ .icon-cloud:before { content: '\e8b3'; } /* '' */ .icon-flash:before { content: '\e8b4'; } /* '' */ .icon-moon:before { content: '\e8b5'; } /* '' */ .icon-umbrella:before { content: '\e8b6'; } /* '' */ .icon-flight:before { content: '\e8b7'; } /* '' */ .icon-paper-plane:before { content: '\e8b8'; } /* '' */ .icon-paper-plane-empty:before { content: '\e8b9'; } /* '' */ .icon-space-shuttle:before { content: '\e8ba'; } /* '' */ .icon-leaf:before { content: '\e8bb'; } /* '' */ .icon-font:before { content: '\e8bc'; } /* '' */ .icon-bold:before { content: '\e8bd'; } /* '' */ .icon-medium:before { content: '\e8be'; } /* '' */ .icon-italic:before { content: '\e8bf'; } /* '' */ .icon-header:before { content: '\e8c0'; } /* '' */ .icon-paragraph:before { content: '\e8c1'; } /* '' */ .icon-text-height:before { content: '\e8c2'; } /* '' */ .icon-text-width:before { content: '\e8c3'; } /* '' */ .icon-align-left:before { content: '\e8c4'; } /* '' */ .icon-align-center:before { content: '\e8c5'; } /* '' */ .icon-align-right:before { content: '\e8c6'; } /* '' */ .icon-align-justify:before { content: '\e8c7'; } /* '' */ .icon-list:before { content: '\e8c8'; } /* '' */ .icon-indent-left:before { content: '\e8c9'; } /* '' */ .icon-indent-right:before { content: '\e8ca'; } /* '' */ .icon-list-numbered:before { content: '\e8cb'; } /* '' */ .icon-strike:before { content: '\e8cc'; } /* '' */ .icon-underline:before { content: '\e8cd'; } /* '' */ .icon-superscript:before { content: '\e8ce'; } /* '' */ .icon-subscript:before { content: '\e8cf'; } /* '' */ .icon-table:before { content: '\e8d0'; } /* '' */ .icon-columns:before { content: '\e8d1'; } /* '' */ .icon-crop:before { content: '\e8d2'; } /* '' */ .icon-scissors:before { content: '\e8d3'; } /* '' */ .icon-paste:before { content: '\e8d4'; } /* '' */ .icon-briefcase:before { content: '\e8d5'; } /* '' */ .icon-suitcase:before { content: '\e8d6'; } /* '' */ .icon-ellipsis:before { content: '\e8d7'; } /* '' */ .icon-ellipsis-vert:before { content: '\e8d8'; } /* '' */ .icon-off:before { content: '\e8d9'; } /* '' */ .icon-road:before { content: '\e8da'; } /* '' */ .icon-list-alt:before { content: '\e8db'; } /* '' */ .icon-qrcode:before { content: '\e8dc'; } /* '' */ .icon-barcode:before { content: '\e8dd'; } /* '' */ .icon-ajust:before { content: '\e8de'; } /* '' */ .icon-tint:before { content: '\e8df'; } /* '' */ .icon-toggle-off:before { content: '\e8e0'; } /* '' */ .icon-toggle-on:before { content: '\e8e1'; } /* '' */ .icon-check:before { content: '\e8e2'; } /* '' */ .icon-check-empty:before { content: '\e8e3'; } /* '' */ .icon-circle:before { content: '\e8e4'; } /* '' */ .icon-circle-empty:before { content: '\e8e5'; } /* '' */ .icon-circle-thin:before { content: '\e8e6'; } /* '' */ .icon-circle-notch:before { content: '\e8e7'; } /* '' */ .icon-dot-circled:before { content: '\e8e8'; } /* '' */ .icon-asterisk:before { content: '\e8e9'; } /* '' */ .icon-gift:before { content: '\e8ea'; } /* '' */ .icon-fire:before { content: '\e8eb'; } /* '' */ .icon-magnet:before { content: '\e8ec'; } /* '' */ .icon-chart-bar:before { content: '\e8ed'; } /* '' */ .icon-chart-area:before { content: '\e8ee'; } /* '' */ .icon-chart-pie:before { content: '\e8ef'; } /* '' */ .icon-chart-line:before { content: '\e8f0'; } /* '' */ .icon-credit-card:before { content: '\e8f1'; } /* '' */ .icon-floppy:before { content: '\e8f2'; } /* '' */ .icon-megaphone:before { content: '\e8f3'; } /* '' */ .icon-hdd:before { content: '\e8f4'; } /* '' */ .icon-key:before { content: '\e8f5'; } /* '' */ .icon-fork:before { content: '\e8f6'; } /* '' */ .icon-rocket:before { content: '\e8f7'; } /* '' */ .icon-bug:before { content: '\e8f8'; } /* '' */ .icon-certificate:before { content: '\e8f9'; } /* '' */ .icon-tasks:before { content: '\e8fa'; } /* '' */ .icon-filter:before { content: '\e8fb'; } /* '' */ .icon-beaker:before { content: '\e8fc'; } /* '' */ .icon-magic:before { content: '\e8fd'; } /* '' */ .icon-cab:before { content: '\e8fe'; } /* '' */ .icon-taxi:before { content: '\e8ff'; } /* '' */ .icon-truck:before { content: '\e900'; } /* '' */ .icon-bus:before { content: '\e901'; } /* '' */ .icon-bicycle:before { content: '\e902'; } /* '' */ .icon-motorcycle:before { content: '\e903'; } /* '' */ .icon-subway:before { content: '\e904'; } /* '' */ .icon-ship:before { content: '\e905'; } /* '' */ .icon-money:before { content: '\e906'; } /* '' */ .icon-euro:before { content: '\e907'; } /* '' */ .icon-pound:before { content: '\e908'; } /* '' */ .icon-dollar:before { content: '\e909'; } /* '' */ .icon-rupee:before { content: '\e90a'; } /* '' */ .icon-yen:before { content: '\e90b'; } /* '' */ .icon-rouble:before { content: '\e90c'; } /* '' */ .icon-shekel:before { content: '\e90d'; } /* '' */ .icon-try:before { content: '\e90e'; } /* '' */ .icon-won:before { content: '\e90f'; } /* '' */ .icon-bitcoin:before { content: '\e910'; } /* '' */ .icon-viacoin:before { content: '\e911'; } /* '' */ .icon-sort:before { content: '\e912'; } /* '' */ .icon-sort-down:before { content: '\e913'; } /* '' */ .icon-sort-up:before { content: '\e914'; } /* '' */ .icon-sort-alt-up:before { content: '\e915'; } /* '' */ .icon-sort-alt-down:before { content: '\e916'; } /* '' */ .icon-sort-name-down:before { content: '\e917'; } /* '' */ .icon-sort-number-up:before { content: '\e918'; } /* '' */ .icon-sort-number-down:before { content: '\e919'; } /* '' */ .icon-hammer:before { content: '\e91a'; } /* '' */ .icon-gauge:before { content: '\e91b'; } /* '' */ .icon-sitemap:before { content: '\e91c'; } /* '' */ .icon-spinner:before { content: '\e91d'; } /* '' */ .icon-coffee:before { content: '\e91e'; } /* '' */ .icon-food:before { content: '\e91f'; } /* '' */ .icon-beer:before { content: '\e920'; } /* '' */ .icon-user-md:before { content: '\e921'; } /* '' */ .icon-stethoscope:before { content: '\e922'; } /* '' */ .icon-heartbeat:before { content: '\e923'; } /* '' */ .icon-ambulance:before { content: '\e924'; } /* '' */ .icon-medkit:before { content: '\e925'; } /* '' */ .icon-h-sigh:before { content: '\e926'; } /* '' */ .icon-bed:before { content: '\e927'; } /* '' */ .icon-hospital:before { content: '\e928'; } /* '' */ .icon-building:before { content: '\e929'; } /* '' */ .icon-bank:before { content: '\e92a'; } /* '' */ .icon-smile:before { content: '\e92b'; } /* '' */ .icon-frown:before { content: '\e92c'; } /* '' */ .icon-meh:before { content: '\e92d'; } /* '' */ .icon-anchor:before { content: '\e92e'; } /* '' */ .icon-terminal:before { content: '\e92f'; } /* '' */ .icon-eraser:before { content: '\e930'; } /* '' */ .icon-puzzle:before { content: '\e931'; } /* '' */ .icon-shield:before { content: '\e932'; } /* '' */ .icon-extinguisher:before { content: '\e933'; } /* '' */ .icon-bullseye:before { content: '\e934'; } /* '' */ .icon-wheelchair:before { content: '\e935'; } /* '' */ .icon-language:before { content: '\e936'; } /* '' */ .icon-graduation-cap:before { content: '\e937'; } /* '' */ .icon-paw:before { content: '\e938'; } /* '' */ .icon-spoon:before { content: '\e939'; } /* '' */ .icon-cube:before { content: '\e93a'; } /* '' */ .icon-cubes:before { content: '\e93b'; } /* '' */ .icon-recycle:before { content: '\e93c'; } /* '' */ .icon-chat:before { content: '\e93d'; } /* '' */ .icon-share:before { content: '\e93e'; } /* '' */ .icon-tags:before { content: '\e93f'; } /* '' */ .icon-bell-alt:before { content: '\e940'; } /* '' */ .icon-folder:before { content: '\e941'; } /* '' */ .icon-folder-open-empty:before { content: '\e942'; } /* '' */ .icon-box:before { content: '\e943'; } /* '' */ .icon-fax:before { content: '\e944'; } /* '' */ .icon-menu:before { content: '\e945'; } /* '' */ .icon-cog:before { content: '\e946'; } /* '' */ .icon-cog-alt:before { content: '\e947'; } /* '' */ .icon-wrench:before { content: '\e948'; } /* '' */ .icon-sliders:before { content: '\e949'; } /* '' */ .icon-basket:before { content: '\e94a'; } /* '' */ .icon-login:before { content: '\e94b'; } /* '' */ .icon-logout:before { content: '\e94c'; } /* '' */ .icon-mic:before { content: '\e94d'; } /* '' */ .icon-mute:before { content: '\e94e'; } /* '' */ .icon-volume-off:before { content: '\e94f'; } /* '' */ .icon-volume-down:before { content: '\e950'; } /* '' */ .icon-volume-up:before { content: '\e951'; } /* '' */ .icon-headphones:before { content: '\e952'; } /* '' */ .icon-block:before { content: '\e953'; } /* '' */ .icon-resize-full:before { content: '\e954'; } /* '' */ .icon-resize-full-alt:before { content: '\e955'; } /* '' */ .icon-resize-small:before { content: '\e956'; } /* '' */ .icon-resize-vertical:before { content: '\e957'; } /* '' */ .icon-resize-horizontal:before { content: '\e958'; } /* '' */ .icon-up-circled2:before { content: '\e959'; } /* '' */ .icon-left-circled2:before { content: '\e95a'; } /* '' */ .icon-right-circled2:before { content: '\e95b'; } /* '' */ .icon-down-dir:before { content: '\e95c'; } /* '' */ .icon-up-dir:before { content: '\e95d'; } /* '' */ .icon-left-dir:before { content: '\e95e'; } /* '' */ .icon-right-dir:before { content: '\e95f'; } /* '' */ .icon-down-open:before { content: '\e960'; } /* '' */ .icon-left-open:before { content: '\e961'; } /* '' */ .icon-right-open:before { content: '\e962'; } /* '' */ .icon-up-open:before { content: '\e963'; } /* '' */ .icon-angle-left:before { content: '\e964'; } /* '' */ .icon-angle-double-down:before { content: '\e965'; } /* '' */ .icon-down:before { content: '\e966'; } /* '' */ .icon-left-1:before { content: '\e967'; } /* '' */ .icon-right-1:before { content: '\e968'; } /* '' */ .icon-up:before { content: '\e969'; } /* '' */ .icon-down-big:before { content: '\e96a'; } /* '' */ .icon-left-big:before { content: '\e96b'; } /* '' */ .icon-right-big:before { content: '\e96c'; } /* '' */ .icon-up-big:before { content: '\e96d'; } /* '' */ .icon-right-hand:before { content: '\e96e'; } /* '' */ .icon-left-hand:before { content: '\e96f'; } /* '' */ .icon-up-hand:before { content: '\e970'; } /* '' */ .icon-down-hand:before { content: '\e971'; } /* '' */ .icon-left-circled:before { content: '\e972'; } /* '' */ .icon-angle-right:before { content: '\e973'; } /* '' */ .icon-angle-up:before { content: '\e974'; } /* '' */ .icon-angle-down:before { content: '\e975'; } /* '' */ .icon-clock:before { content: '\e976'; } /* '' */ .icon-phone-1:before { content: '\e977'; } /* '' */ .icon-rss:before { content: '\e978'; } /* '' */ .icon-folder-open:before { content: '\e979'; } /* '' */ .icon-attention-1:before { content: '\e97a'; } /* '' */ .icon-doc-text:before { content: '\e97b'; } /* '' */ .icon-cw:before { content: '\e97c'; } /* '' */ .icon-to-start-alt:before { content: '\e97d'; } /* '' */ .icon-fighter-jet:before { content: '\e97e'; } /* '' */ .icon-list-bullet:before { content: '\e97f'; } /* '' */ .icon-book:before { content: '\e980'; } /* '' */ .icon-ticket:before { content: '\e981'; } /* '' */ .icon-train:before { content: '\e982'; } /* '' */ .icon-sort-name-up:before { content: '\e983'; } /* '' */ .icon-building-filled:before { content: '\e984'; } /* '' */ .icon-bomb:before { content: '\e985'; } /* '' */ .icon-soccer-ball:before { content: '\e986'; } /* '' */ .icon-tty:before { content: '\e987'; } /* '' */ .icon-binoculars:before { content: '\e988'; } /* '' */ .icon-plug:before { content: '\e989'; } /* '' */ .icon-newspaper:before { content: '\e98a'; } /* '' */ .icon-calc:before { content: '\e98b'; } /* '' */ .icon-copyright:before { content: '\e98c'; } /* '' */ .icon-at:before { content: '\e98d'; } /* '' */ .icon-eyedropper:before { content: '\e98e'; } /* '' */ .icon-brush:before { content: '\e98f'; } /* '' */ .icon-birthday:before { content: '\e990'; } /* '' */ .icon-diamond:before { content: '\e991'; } /* '' */ .icon-street-view:before { content: '\e992'; } /* '' */ .icon-venus:before { content: '\e993'; } /* '' */ .icon-mars:before { content: '\e994'; } /* '' */ .icon-mercury:before { content: '\e995'; } /* '' */ .icon-transgender:before { content: '\e996'; } /* '' */ .icon-transgender-alt:before { content: '\e997'; } /* '' */ .icon-venus-double:before { content: '\e998'; } /* '' */ .icon-mars-double:before { content: '\e999'; } /* '' */ .icon-venus-mars:before { content: '\e99a'; } /* '' */ .icon-mars-stroke:before { content: '\e99b'; } /* '' */ .icon-mars-stroke-v:before { content: '\e99c'; } /* '' */ .icon-mars-stroke-h:before { content: '\e99d'; } /* '' */ .icon-neuter:before { content: '\e99e'; } /* '' */ .icon-cc-visa:before { content: '\e99f'; } /* '' */ .icon-cc-mastercard:before { content: '\e9a0'; } /* '' */ .icon-cc-discover:before { content: '\e9a1'; } /* '' */ .icon-cc-amex:before { content: '\e9a2'; } /* '' */ .icon-cc-paypal:before { content: '\e9a3'; } /* '' */ .icon-cc-stripe:before { content: '\e9a4'; } /* '' */ .icon-adn:before { content: '\e9a5'; } /* '' */ .icon-android:before { content: '\e9a6'; } /* '' */ .icon-angellist:before { content: '\e9a7'; } /* '' */ .icon-apple:before { content: '\e9a8'; } /* '' */ .icon-behance:before { content: '\e9a9'; } /* '' */ .icon-behance-squared:before { content: '\e9aa'; } /* '' */ .icon-bitbucket:before { content: '\e9ab'; } /* '' */ .icon-bitbucket-squared:before { content: '\e9ac'; } /* '' */ .icon-buysellads:before { content: '\e9ad'; } /* '' */ .icon-cc:before { content: '\e9ae'; } /* '' */ .icon-codeopen:before { content: '\e9af'; } /* '' */ .icon-connectdevelop:before { content: '\e9b0'; } /* '' */ .icon-css3:before { content: '\e9b1'; } /* '' */ .icon-dashcube:before { content: '\e9b2'; } /* '' */ .icon-delicious:before { content: '\e9b3'; } /* '' */ .icon-deviantart:before { content: '\e9b4'; } /* '' */ .icon-digg:before { content: '\e9b5'; } /* '' */ .icon-dribbble:before { content: '\e9b6'; } /* '' */ .icon-dropbox:before { content: '\e9b7'; } /* '' */ .icon-drupal:before { content: '\e9b8'; } /* '' */ .icon-facebook:before { content: '\e9b9'; } /* '' */ .icon-facebook-squared:before { content: '\e9ba'; } /* '' */ .icon-facebook-official:before { content: '\e9bb'; } /* '' */ .icon-flickr:before { content: '\e9bc'; } /* '' */ .icon-forumbee:before { content: '\e9bd'; } /* '' */ .icon-foursquare:before { content: '\e9be'; } /* '' */ .icon-git-squared:before { content: '\e9bf'; } /* '' */ .icon-git:before { content: '\e9c0'; } /* '' */ .icon-github:before { content: '\e9c1'; } /* '' */ .icon-github-squared:before { content: '\e9c2'; } /* '' */ .icon-github-circled:before { content: '\e9c3'; } /* '' */ .icon-gittip:before { content: '\e9c4'; } /* '' */ .icon-google:before { content: '\e9c5'; } /* '' */ .icon-gplus:before { content: '\e9c6'; } /* '' */ .icon-gplus-squared:before { content: '\e9c7'; } /* '' */ .icon-gwallet:before { content: '\e9c8'; } /* '' */ .icon-hacker-news:before { content: '\e9c9'; } /* '' */ .icon-html5:before { content: '\e9ca'; } /* '' */ .icon-instagram:before { content: '\e9cb'; } /* '' */ .icon-ioxhost:before { content: '\e9cc'; } /* '' */ .icon-joomla:before { content: '\e9cd'; } /* '' */ .icon-jsfiddle:before { content: '\e9ce'; } /* '' */ .icon-lastfm:before { content: '\e9cf'; } /* '' */ .icon-lastfm-squared:before { content: '\e9d0'; } /* '' */ .icon-leanpub:before { content: '\e9d1'; } /* '' */ .icon-linkedin-squared:before { content: '\e9d2'; } /* '' */ .icon-linux:before { content: '\e9d3'; } /* '' */ .icon-meanpath:before { content: '\e9d4'; } /* '' */ .icon-openid:before { content: '\e9d5'; } /* '' */ .icon-pagelines:before { content: '\e9d6'; } /* '' */ .icon-paypal:before { content: '\e9d7'; } /* '' */ .icon-pied-piper-squared:before { content: '\e9d8'; } /* '' */ .icon-pied-piper-alt:before { content: '\e9d9'; } /* '' */ .icon-pinterest:before { content: '\e9da'; } /* '' */ .icon-pinterest-circled:before { content: '\e9db'; } /* '' */ .icon-pinterest-squared:before { content: '\e9dc'; } /* '' */ .icon-qq:before { content: '\e9dd'; } /* '' */ .icon-reddit:before { content: '\e9de'; } /* '' */ .icon-reddit-squared:before { content: '\e9df'; } /* '' */ .icon-renren:before { content: '\e9e0'; } /* '' */ .icon-sellsy:before { content: '\e9e1'; } /* '' */ .icon-shirtsinbulk:before { content: '\e9e2'; } /* '' */ .icon-simplybuilt:before { content: '\e9e3'; } /* '' */ .icon-skyatlas:before { content: '\e9e4'; } /* '' */ .icon-skype:before { content: '\e9e5'; } /* '' */ .icon-slack:before { content: '\e9e6'; } /* '' */ .icon-slideshare:before { content: '\e9e7'; } /* '' */ .icon-soundcloud:before { content: '\e9e8'; } /* '' */ .icon-spotify:before { content: '\e9e9'; } /* '' */ .icon-stackexchange:before { content: '\e9ea'; } /* '' */ .icon-stackoverflow:before { content: '\e9eb'; } /* '' */ .icon-steam:before { content: '\e9ec'; } /* '' */ .icon-steam-squared:before { content: '\e9ed'; } /* '' */ .icon-stumbleupon:before { content: '\e9ee'; } /* '' */ .icon-stumbleupon-circled:before { content: '\e9ef'; } /* '' */ .icon-tencent-weibo:before { content: '\e9f0'; } /* '' */ .icon-trello:before { content: '\e9f1'; } /* '' */ .icon-tumblr:before { content: '\e9f2'; } /* '' */ .icon-tumblr-squared:before { content: '\e9f3'; } /* '' */ .icon-twitch:before { content: '\e9f4'; } /* '' */ .icon-twitter-squared:before { content: '\e9f5'; } /* '' */ .icon-twitter:before { content: '\e9f6'; } /* '' */ .icon-vimeo-squared:before { content: '\e9f7'; } /* '' */ .icon-vine:before { content: '\e9f8'; } /* '' */ .icon-vkontakte:before { content: '\e9f9'; } /* '' */ .icon-whatsapp:before { content: '\e9fa'; } /* '' */ .icon-wechat:before { content: '\e9fb'; } /* '' */ .icon-weibo:before { content: '\e9fc'; } /* '' */ .icon-windows:before { content: '\e9fd'; } /* '' */ .icon-wordpress:before { content: '\e9fe'; } /* '' */ .icon-xing:before { content: '\e9ff'; } /* '' */ .icon-xing-squared:before { content: '\ea00'; } /* '' */ .icon-yelp:before { content: '\ea01'; } /* '' */ .icon-youtube:before { content: '\ea02'; } /* '' */ .icon-yahoo:before { content: '\ea03'; } /* '' */ .icon-youtube-squared:before { content: '\ea04'; } /* '' */ .icon-youtube-play:before { content: '\ea05'; } /* '' */ .icon-blank:before { content: '\ea06'; } /* '' */ .icon-lemon:before { content: '\ea07'; } /* ''
0.47926
0.119665
* { padding: 0; margin: 0; font-family: "微软雅黑", Microsoft Yahei; font-size: 0; } .banner-Ul ul { width: 1200px; margin: 0 auto; overflow: hidden; } .banner-Ul ul li { float: left; list-style: none; height: 120px; color: white; width: 33.33%; font-size: 26px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; -ms-box-sizing: border-box; text-align: center; -o-box-sizing: border-box; } .banner-Ul ul li img { position: relative; top: 20px; left: -20px; margin-right: 0px; } .banner-Ul ul li font { position: relative; top: -5px; font-size: 30px; } .banner2 { position: relative; font-size: 0; } .banner2>h1 { text-align: center; position: absolute; top: 7%; width: 100%; color: #fcfcfc; font-size: 48px; font-weight: normal; } .banner2 img.banner2Img { position: absolute; width: 1200px; top: 0%; left: 50%; opacity: 0; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -ms-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; } .banner2 img.banner2Img.b2-o{ opacity: 1; -webkit-transition: all .1s ease 1s; -moz-transition: all 1s ease 1s; -ms-transition: all 1s ease 1s; -o-transition: all 1s ease 1s; transition: all 1s ease 1s; } .banner2 .swiper-container { width: 1174px; height: 668px; position: absolute; top: 13px; left: 50%; margin-left: -587px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -ms-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; z-index: 1000; opacity: 0 !important; background: #0b0d0e; } .banner2 .swiper-container.n-opacity { opacity: 1 !important; -webkit-transition: all .1s ease 1s; -moz-transition: all 1s ease 1s; -ms-transition: all 1s ease 1s; -o-transition: all 1s ease 1s; transition: all 1s ease 1s; } .banner2 .swiper-container .swiper-slide img { width: 100%; height: 100%; } .sw-div { position: absolute; left: 50%; margin-left: -600px; top: 20%; width: 1200px; height: 620px; } .banner3 { position: relative; font-size: 0; } .banner3 ul { width: 100%; overflow: hidden; } .banner3 ul li { width: 25%; text-align: center; list-style: none; color: white; height: 110px; line-height: 110px; font-size: 24px; float: left; } .banner3 ul li:nth-child(1) { background: #4594ff; } .banner3 ul li:nth-child(2) { background: #5db2ff; } .banner3 ul li:nth-child(3) { background: #8298ff; } .banner3 ul li:nth-child(4) { background: #415bff; } .ro-div{ width: 600px; height: 600px; position: absolute; left: 50%; margin-left: -300px; margin-top: -300px; top: 50%; background: url("/assets/images/newhomapage/b3-r.png") no-repeat; background-position: center; background-size: 100% 100%; text-align: center; } .ro-div2{ width: 1150px; height: 600px; position: absolute; left: 50%; margin-left: -575px; margin-top: -300px; top: 50%; text-align: center; } .ro-div2 ul{ } .ro-div2 ul li{ width: 270px; height: 270px; background: #232323 !important; margin-right: 28px; margin-left: 28px; float: none; display: inline-block; } .ro-div2 ul li p{ font-size: 60px; line-height: 20px; color: #c7c7c7; margin-top: 10px; } .ro-div2 ul li p b{ font-size: 60px; color: #c7c7c7; font-weight: normal; } .ro-div2 ul li em{ display: block; font-size: 13px; line-height: 20px; margin-top: 40px; color: #c7c7c7; font-style: normal; } .ro-div2 ul li img{ margin-top: 20px; } .ro-div2 .rd-img{ position: absolute; left: 50%; top: 220px; z-index: 2; margin-left: -68px; } .ro-div img.r{ position: absolute; top: 50%; left: 50%; margin-top: -133.5px; margin-left: -147px; } .banner3 ol { width: 600px; height: 600px; /*-webkit-transform: rotate(60deg);*/ /*-moz-transform: rotate(60deg);*/ /*-ms-transform: rotate(60deg);*/ /*-o-transform: rotate(60deg);*/ /*transform: rotate(60deg);*/ } .banner3 ol li { font-size: 16px; height: 90px; width: 100px; background-repeat: no-repeat; background-size: 100% 100%; display: block; position: absolute; /*-webkit-transform: rotate(-60deg);*/ /*-moz-transform: rotate(-60deg);*/ /*-ms-transform: rotate(-60deg);*/ /*-o-transform: rotate(-60deg);*/ /*transform: rotate(-60deg);*/ } .banner3 ol li font { display: block; position: absolute; bottom: -28px; width: 100%; text-align: center; font-size: 16px; } .banner3 ol li:nth-child(1) { background-image: url("/assets/images/newhomapage/b3-1.png"); top: 2%; left: 19%; } .banner3 ol li:nth-child(2) { background-image: url("/assets/images/newhomapage/b3-2.png"); top: 2%; left: 67%; } .banner3 ol li:nth-child(3) { background-image: url("/assets/images/newhomapage/b3-3.png"); top: 41%; left: 88%; } .banner3 ol li:nth-child(4) { background-image: url("/assets/images/newhomapage/b3-4.png"); top: 82%; left: 67%; } .banner3 ol li:nth-child(5) { background-image: url("/assets/images/newhomapage/b3-5.png"); top: 82%; left: 19%; } .banner3 ol li:nth-child(6) { background-image: url("/assets/images/newhomapage/b3-6.png"); top: 41%; left: -5%; } .animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both } .animated.infinite { -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite } .animated.hinge { -webkit-animation-duration: 2s; animation-duration: 2s } @-webkit-keyframes rotate { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @keyframes rotate { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg) } } @-webkit-keyframes rotate2 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(-360deg); transform: rotate(-360deg) } } @keyframes rotate2 { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(-360deg); -ms-transform: rotate(-360deg); transform: rotate(-360deg) } } .rotate { -webkit-animation-name: rotate; animation-name: rotate; -webkit-animation-duration: 40s; animation-duration: 40s; animation-timing-function: linear; -webkit-animation-timing-function: linear; } .rotate2 { -webkit-animation-name: rotate2; animation-name: rotate2; -webkit-animation-duration: 40s; animation-duration: 40s; animation-timing-function: linear; -webkit-animation-timing-function: linear; } .container { position: relative; height: 1000px; width: 100%; font-size: 20px; overflow: hidden; top: -60%; } .container h1{ font-size: 30px; margin-top: 80px; position: absolute; top: 170px; width: 100%; text-align: center; color: white; font-weight: normal; letter-spacing: 2px; } .container h1 button{ width: 130px; height: 42px; background: white; outline: none; color: #980808; cursor: pointer; letter-spacing: 3px; font-size: 18px; border: none; margin:30px 10px 0; box-shadow: 3px 3px 0px 0px #cecece; } .container h1 button.blueB{ color: white; background: #980808; box-shadow: 3px 3px 0px 0px #4e0100; } .container h1 button:active{ box-shadow: 1px 1px 0px 0px #cecece; position: relative; top: 2px; } .container h1 button.blueB:active{ box-shadow: 1px 1px 0px 0px #4e0100; } .loginFooter { width: 100%; left: 0; height: 35px; line-height: 35px; background: rgba(0, 0, 0, 0.8); color: white; text-align: right; bottom: 0; padding: 0 20px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; -ms-box-sizing: border-box; -o-box-sizing: border-box; font-size: 13px; } .loginFooter a{ font-size: 13px; text-decoration: none; margin-left: 20px; } .loginFooter a:first-child{ margin-left: 0; } .zq-iframe{ border: 3px solid #2e2e2e; width: 1150px; margin: 73px auto 0; position: relative; z-index: 1001; height: 570px; opacity: 0; -webkit-transition: all .1s ease 0s; -moz-transition: all 1s ease 0s; -ms-transition: all 1s ease 0s; -o-transition: all 1s ease 0s; transition: all 1s ease 0s; } .zq-iframe.zq-o{ -webkit-transition: all .1s ease 1s; -moz-transition: all 1s ease 1s; -ms-transition: all 1s ease 1s; -o-transition: all 1s ease 1s; transition: all 1s ease 1s; opacity: 1; } .zq-iframe .fl{ height: 100%; font-size: 12px; width: 240px; color: white; padding: 20px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; } .zq-iframe .fl h1{ font-size: 28px; } .zq-iframe .fl h2{ font-size: 26px; } .zq-iframe .fl h3{ font-size: 22px; margin: 2px 0; } .zq-iframe .fl h4{ font-size: 18px; margin: 2px 0; color: #999999; } .zq-iframe .fl h5{ font-size: 16px; margin: 2px 0; } .zq-iframe .fl h6{ font-size: 14px; margin: 2px 0; color: #999999; } .zq-iframe .fr{ width: 910px; height: 100%; padding: 20px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; } .zq-iframe .fr ul{ overflow: hidden; margin-top: -10px; } .zq-iframe .fr ul li{ width: 70px; margin-right: 40px; padding: 10px; float: left; font-size: 18px; color: white; list-style: none; font-weight: bold; text-align: center; cursor: pointer; color: white; border-bottom: 4px solid transparent; } .zq-iframe .fr ul li:hover{ color: #ed0501; } .zq-iframe .fr ul li.zq-checked{ border-bottom: 4px solid #ed0501; color: #ed0501; } #output{ height: 1000px; } #output canvas{ } .loginD { width: 800px; height: 600px; margin: 20px auto; background: transparent; text-align: center; position: relative; font-size: 12px; } .loginD h1{ text-align: center; color: white; margin-top: 30px; } .loginD h1 font{ padding: 3px 0; font-size: 22px; font-weight: normal; border-bottom: 2px solid #980807; } .loginD .l-p{ margin: 40px 0; position: relative; } .loginD .l-p label{ font-size: 18px; color: white; position: absolute; left: 250px; color: white; top: 6px; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; z-index: -1; } .loginD .l-p label.notS{ top: 10px; left: 238px; } .loginD .l-p input{ width: 294px; padding: 8px 14px; font-size: 16px; border: none; color: white; border-bottom: 1px solid #666666; background: transparent; outline: none; } .loginD .l-p label.focusL{ color: #980807; top: -18px; left: 238px; font-size: 14px; } .loginD .l-p .l-p-wjmm{ position: absolute; right: 234px; top: 48px; color: white; font-size: 15px; text-decoration: none; } .loginD .l-p .l-p-xy{ position: absolute; right: 0px; width: 100%; top: 48px; color: white; font-size: 12px; text-decoration: none; } .loginD .l-p .l-p-xy a{ font-size: 12px; } .loginD .l-p-btn{ width: 150px; height: 48px; background: white; outline: none; color: #980807; cursor: pointer; letter-spacing: 3px; font-size: 20px; border: none; position: absolute; top: 32%; left: 50%; margin-left: -75px; box-shadow: 3px 3px 0px 0px #cecece; } .loginD .l-p-btn:active { margin-top: 2px; box-shadow: 1px 1px 0px 0px #cecece; } .loginD .l-p span{ font-size: 15px; color: white; display: block; position: relative; top: 70px; } .loginD .l-p span a{ font-size: 15px; color: #980807; } #c,#canvas{ position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: -1; } /* .squaredThree */ .squaredThree { width: 20px; margin: 0px 2px; display: block; } .squaredThree label { width: 20px; height: 20px; cursor: pointer; position: absolute; top: 0; left: 0; background: -moz-linear-gradient(top, #222222 0%, #45484d 100%); background: -webkit-linear-gradient(top, #222222 0%, #45484d 100%); background: linear-gradient(to bottom, #222222 0%, #45484d 100%); -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4); -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4); box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4); } .squaredThree label:after { content: ''; width: 9px; height: 5px; position: absolute; top: 4px; left: 4px; border: 3px solid #fcfff4; border-top: none; border-right: none; background: transparent; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -webkit-transform: rotate(-45deg); transform: rotate(-45deg); } .squaredThree label:hover::after { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); opacity: 0.3; } .squaredThree input[type=checkbox] { visibility: hidden; } .squaredThree input[type=checkbox]:checked + label:after { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; } /* end .squaredThree */ .hint{ font-size: 15px; background: #980807; padding: 5px 10px; border-radius: 3px; position: absolute; right: 150px; color: white; font-style: normal; } .hint:after { content: ""; left: -8px; top: 3px; position: absolute; width: 0; height: 0; border-top: 12px solid transparent; border-right: 16px solid #980807; border-bottom: 12px solid transparent; } .xyDiv{ width: 665px; height: 600px; margin: 20px auto; text-align: center; position: relative; font-size: 12px; border: 1px solid #980807; background: #ffffff; } .xyDiv .xyTitle{ height: 64px; line-height: 54px; text-align: left; font-weight: normal; width: 100%; position: relative; top: -8px; color: white; box-sizing:border-box; text-align: left; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; padding-left: 100px; font-size: 18px; background: url("/assets/images/newhomapage/xy-title-z.png"); } .xyDiv .d1{ width: 100%; height: 128px; border-bottom: 1px solid #bbbbbb; padding: 0 20px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; } .xyDiv .d1 h1{ font-size: 28px; font-weight: normal; text-align: left; } .xyDiv .d1 h2{ font-size: 14px; font-weight: normal; text-align: left; clear: both; margin-top: 60px; } .xyDiv .d1 select{ font-size: 15px; float: left; background: transparent; border: none; margin-top: 8px; outline: none; width: 100px; } .xyDiv .d2{ width: 665px; height: 300px; /*background: red;*/ overflow: auto; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; padding: 20px; } .xyDiv .d2 h1{ font-size: 14px; text-align: left; margin-bottom: 15px; } .xyDiv .d2 p{ font-size: 14px; text-align: left; margin-bottom: 15px; } .xyDiv .d3{ text-align: left; font-size: 14px; position: relative; height: 108px; background: #ededed; padding: 20px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; border-top: 1px solid #bbbbbb; } .xyDiv .d3 *{ font-size: 14px; } .xyDiv .d3 input[type='button']{ margin-top: 45px; margin-left: 10px; width: 80px; display: inline-block; height: 28px; border: none; outline: none; cursor: pointer; line-height: 10px; } .getYzm{ position: absolute; right: 240px; font-size: 15px; text-decoration: none; color: #218ff5; top: 8px; } .sw-div .zq-iframe .fl h6.r-b{ color: #f00606; } .sw-div .zq-iframe .fl h6.g-b{ color: #17c400; } .sw-div .zq-iframe .fl h5.r-b{ color: #f00606; } .sw-div .zq-iframe .fl h5.g-b{ color: #17c400; } .indexDataTabs li.wrapNavUlChecked { color: #f00606; border-bottom: 3px solid #f00606; } .layui-layer-btn .layui-layer-btn0{ font-size: 14px; color: white; border-color: #218ff5; background-color: #218ff5; } .changeL{ color: #a2a2a2; font-size: 16px; height: 80px; line-height: 80px; margin-right: 20px; } .changeL a{ color: #a2a2a2; padding: 10px 3px; font-size: 16px; text-decoration: none; } .layui-layer-tips i.layui-layer-TipsB, .layui-layer-tips i.layui-layer-TipsT{ border-right-color: #980807 !important; } .layui-layer-tips .layui-layer-content{ background-color: #980807 !important; color: white !important; }
src/main/webapp/stock/stu/jq/day6/index_newhomepage.css
* { padding: 0; margin: 0; font-family: "微软雅黑", Microsoft Yahei; font-size: 0; } .banner-Ul ul { width: 1200px; margin: 0 auto; overflow: hidden; } .banner-Ul ul li { float: left; list-style: none; height: 120px; color: white; width: 33.33%; font-size: 26px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; -ms-box-sizing: border-box; text-align: center; -o-box-sizing: border-box; } .banner-Ul ul li img { position: relative; top: 20px; left: -20px; margin-right: 0px; } .banner-Ul ul li font { position: relative; top: -5px; font-size: 30px; } .banner2 { position: relative; font-size: 0; } .banner2>h1 { text-align: center; position: absolute; top: 7%; width: 100%; color: #fcfcfc; font-size: 48px; font-weight: normal; } .banner2 img.banner2Img { position: absolute; width: 1200px; top: 0%; left: 50%; opacity: 0; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -ms-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; } .banner2 img.banner2Img.b2-o{ opacity: 1; -webkit-transition: all .1s ease 1s; -moz-transition: all 1s ease 1s; -ms-transition: all 1s ease 1s; -o-transition: all 1s ease 1s; transition: all 1s ease 1s; } .banner2 .swiper-container { width: 1174px; height: 668px; position: absolute; top: 13px; left: 50%; margin-left: -587px; -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -ms-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; z-index: 1000; opacity: 0 !important; background: #0b0d0e; } .banner2 .swiper-container.n-opacity { opacity: 1 !important; -webkit-transition: all .1s ease 1s; -moz-transition: all 1s ease 1s; -ms-transition: all 1s ease 1s; -o-transition: all 1s ease 1s; transition: all 1s ease 1s; } .banner2 .swiper-container .swiper-slide img { width: 100%; height: 100%; } .sw-div { position: absolute; left: 50%; margin-left: -600px; top: 20%; width: 1200px; height: 620px; } .banner3 { position: relative; font-size: 0; } .banner3 ul { width: 100%; overflow: hidden; } .banner3 ul li { width: 25%; text-align: center; list-style: none; color: white; height: 110px; line-height: 110px; font-size: 24px; float: left; } .banner3 ul li:nth-child(1) { background: #4594ff; } .banner3 ul li:nth-child(2) { background: #5db2ff; } .banner3 ul li:nth-child(3) { background: #8298ff; } .banner3 ul li:nth-child(4) { background: #415bff; } .ro-div{ width: 600px; height: 600px; position: absolute; left: 50%; margin-left: -300px; margin-top: -300px; top: 50%; background: url("/assets/images/newhomapage/b3-r.png") no-repeat; background-position: center; background-size: 100% 100%; text-align: center; } .ro-div2{ width: 1150px; height: 600px; position: absolute; left: 50%; margin-left: -575px; margin-top: -300px; top: 50%; text-align: center; } .ro-div2 ul{ } .ro-div2 ul li{ width: 270px; height: 270px; background: #232323 !important; margin-right: 28px; margin-left: 28px; float: none; display: inline-block; } .ro-div2 ul li p{ font-size: 60px; line-height: 20px; color: #c7c7c7; margin-top: 10px; } .ro-div2 ul li p b{ font-size: 60px; color: #c7c7c7; font-weight: normal; } .ro-div2 ul li em{ display: block; font-size: 13px; line-height: 20px; margin-top: 40px; color: #c7c7c7; font-style: normal; } .ro-div2 ul li img{ margin-top: 20px; } .ro-div2 .rd-img{ position: absolute; left: 50%; top: 220px; z-index: 2; margin-left: -68px; } .ro-div img.r{ position: absolute; top: 50%; left: 50%; margin-top: -133.5px; margin-left: -147px; } .banner3 ol { width: 600px; height: 600px; /*-webkit-transform: rotate(60deg);*/ /*-moz-transform: rotate(60deg);*/ /*-ms-transform: rotate(60deg);*/ /*-o-transform: rotate(60deg);*/ /*transform: rotate(60deg);*/ } .banner3 ol li { font-size: 16px; height: 90px; width: 100px; background-repeat: no-repeat; background-size: 100% 100%; display: block; position: absolute; /*-webkit-transform: rotate(-60deg);*/ /*-moz-transform: rotate(-60deg);*/ /*-ms-transform: rotate(-60deg);*/ /*-o-transform: rotate(-60deg);*/ /*transform: rotate(-60deg);*/ } .banner3 ol li font { display: block; position: absolute; bottom: -28px; width: 100%; text-align: center; font-size: 16px; } .banner3 ol li:nth-child(1) { background-image: url("/assets/images/newhomapage/b3-1.png"); top: 2%; left: 19%; } .banner3 ol li:nth-child(2) { background-image: url("/assets/images/newhomapage/b3-2.png"); top: 2%; left: 67%; } .banner3 ol li:nth-child(3) { background-image: url("/assets/images/newhomapage/b3-3.png"); top: 41%; left: 88%; } .banner3 ol li:nth-child(4) { background-image: url("/assets/images/newhomapage/b3-4.png"); top: 82%; left: 67%; } .banner3 ol li:nth-child(5) { background-image: url("/assets/images/newhomapage/b3-5.png"); top: 82%; left: 19%; } .banner3 ol li:nth-child(6) { background-image: url("/assets/images/newhomapage/b3-6.png"); top: 41%; left: -5%; } .animated { -webkit-animation-duration: 1s; animation-duration: 1s; -webkit-animation-fill-mode: both; animation-fill-mode: both } .animated.infinite { -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite } .animated.hinge { -webkit-animation-duration: 2s; animation-duration: 2s } @-webkit-keyframes rotate { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg) } } @keyframes rotate { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg) } } @-webkit-keyframes rotate2 { 0% { -webkit-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(-360deg); transform: rotate(-360deg) } } @keyframes rotate2 { 0% { -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(-360deg); -ms-transform: rotate(-360deg); transform: rotate(-360deg) } } .rotate { -webkit-animation-name: rotate; animation-name: rotate; -webkit-animation-duration: 40s; animation-duration: 40s; animation-timing-function: linear; -webkit-animation-timing-function: linear; } .rotate2 { -webkit-animation-name: rotate2; animation-name: rotate2; -webkit-animation-duration: 40s; animation-duration: 40s; animation-timing-function: linear; -webkit-animation-timing-function: linear; } .container { position: relative; height: 1000px; width: 100%; font-size: 20px; overflow: hidden; top: -60%; } .container h1{ font-size: 30px; margin-top: 80px; position: absolute; top: 170px; width: 100%; text-align: center; color: white; font-weight: normal; letter-spacing: 2px; } .container h1 button{ width: 130px; height: 42px; background: white; outline: none; color: #980808; cursor: pointer; letter-spacing: 3px; font-size: 18px; border: none; margin:30px 10px 0; box-shadow: 3px 3px 0px 0px #cecece; } .container h1 button.blueB{ color: white; background: #980808; box-shadow: 3px 3px 0px 0px #4e0100; } .container h1 button:active{ box-shadow: 1px 1px 0px 0px #cecece; position: relative; top: 2px; } .container h1 button.blueB:active{ box-shadow: 1px 1px 0px 0px #4e0100; } .loginFooter { width: 100%; left: 0; height: 35px; line-height: 35px; background: rgba(0, 0, 0, 0.8); color: white; text-align: right; bottom: 0; padding: 0 20px; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; -ms-box-sizing: border-box; -o-box-sizing: border-box; font-size: 13px; } .loginFooter a{ font-size: 13px; text-decoration: none; margin-left: 20px; } .loginFooter a:first-child{ margin-left: 0; } .zq-iframe{ border: 3px solid #2e2e2e; width: 1150px; margin: 73px auto 0; position: relative; z-index: 1001; height: 570px; opacity: 0; -webkit-transition: all .1s ease 0s; -moz-transition: all 1s ease 0s; -ms-transition: all 1s ease 0s; -o-transition: all 1s ease 0s; transition: all 1s ease 0s; } .zq-iframe.zq-o{ -webkit-transition: all .1s ease 1s; -moz-transition: all 1s ease 1s; -ms-transition: all 1s ease 1s; -o-transition: all 1s ease 1s; transition: all 1s ease 1s; opacity: 1; } .zq-iframe .fl{ height: 100%; font-size: 12px; width: 240px; color: white; padding: 20px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; } .zq-iframe .fl h1{ font-size: 28px; } .zq-iframe .fl h2{ font-size: 26px; } .zq-iframe .fl h3{ font-size: 22px; margin: 2px 0; } .zq-iframe .fl h4{ font-size: 18px; margin: 2px 0; color: #999999; } .zq-iframe .fl h5{ font-size: 16px; margin: 2px 0; } .zq-iframe .fl h6{ font-size: 14px; margin: 2px 0; color: #999999; } .zq-iframe .fr{ width: 910px; height: 100%; padding: 20px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; } .zq-iframe .fr ul{ overflow: hidden; margin-top: -10px; } .zq-iframe .fr ul li{ width: 70px; margin-right: 40px; padding: 10px; float: left; font-size: 18px; color: white; list-style: none; font-weight: bold; text-align: center; cursor: pointer; color: white; border-bottom: 4px solid transparent; } .zq-iframe .fr ul li:hover{ color: #ed0501; } .zq-iframe .fr ul li.zq-checked{ border-bottom: 4px solid #ed0501; color: #ed0501; } #output{ height: 1000px; } #output canvas{ } .loginD { width: 800px; height: 600px; margin: 20px auto; background: transparent; text-align: center; position: relative; font-size: 12px; } .loginD h1{ text-align: center; color: white; margin-top: 30px; } .loginD h1 font{ padding: 3px 0; font-size: 22px; font-weight: normal; border-bottom: 2px solid #980807; } .loginD .l-p{ margin: 40px 0; position: relative; } .loginD .l-p label{ font-size: 18px; color: white; position: absolute; left: 250px; color: white; top: 6px; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -ms-transition: all .3s ease; -o-transition: all .3s ease; transition: all .3s ease; z-index: -1; } .loginD .l-p label.notS{ top: 10px; left: 238px; } .loginD .l-p input{ width: 294px; padding: 8px 14px; font-size: 16px; border: none; color: white; border-bottom: 1px solid #666666; background: transparent; outline: none; } .loginD .l-p label.focusL{ color: #980807; top: -18px; left: 238px; font-size: 14px; } .loginD .l-p .l-p-wjmm{ position: absolute; right: 234px; top: 48px; color: white; font-size: 15px; text-decoration: none; } .loginD .l-p .l-p-xy{ position: absolute; right: 0px; width: 100%; top: 48px; color: white; font-size: 12px; text-decoration: none; } .loginD .l-p .l-p-xy a{ font-size: 12px; } .loginD .l-p-btn{ width: 150px; height: 48px; background: white; outline: none; color: #980807; cursor: pointer; letter-spacing: 3px; font-size: 20px; border: none; position: absolute; top: 32%; left: 50%; margin-left: -75px; box-shadow: 3px 3px 0px 0px #cecece; } .loginD .l-p-btn:active { margin-top: 2px; box-shadow: 1px 1px 0px 0px #cecece; } .loginD .l-p span{ font-size: 15px; color: white; display: block; position: relative; top: 70px; } .loginD .l-p span a{ font-size: 15px; color: #980807; } #c,#canvas{ position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: -1; } /* .squaredThree */ .squaredThree { width: 20px; margin: 0px 2px; display: block; } .squaredThree label { width: 20px; height: 20px; cursor: pointer; position: absolute; top: 0; left: 0; background: -moz-linear-gradient(top, #222222 0%, #45484d 100%); background: -webkit-linear-gradient(top, #222222 0%, #45484d 100%); background: linear-gradient(to bottom, #222222 0%, #45484d 100%); -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4); -webkit-box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4); box-shadow: inset 0px 1px 1px rgba(0, 0, 0, 0.5), 0px 1px 0px rgba(255, 255, 255, 0.4); } .squaredThree label:after { content: ''; width: 9px; height: 5px; position: absolute; top: 4px; left: 4px; border: 3px solid #fcfff4; border-top: none; border-right: none; background: transparent; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); opacity: 0; -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -webkit-transform: rotate(-45deg); transform: rotate(-45deg); } .squaredThree label:hover::after { filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30); opacity: 0.3; } .squaredThree input[type=checkbox] { visibility: hidden; } .squaredThree input[type=checkbox]:checked + label:after { filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false); opacity: 1; } /* end .squaredThree */ .hint{ font-size: 15px; background: #980807; padding: 5px 10px; border-radius: 3px; position: absolute; right: 150px; color: white; font-style: normal; } .hint:after { content: ""; left: -8px; top: 3px; position: absolute; width: 0; height: 0; border-top: 12px solid transparent; border-right: 16px solid #980807; border-bottom: 12px solid transparent; } .xyDiv{ width: 665px; height: 600px; margin: 20px auto; text-align: center; position: relative; font-size: 12px; border: 1px solid #980807; background: #ffffff; } .xyDiv .xyTitle{ height: 64px; line-height: 54px; text-align: left; font-weight: normal; width: 100%; position: relative; top: -8px; color: white; box-sizing:border-box; text-align: left; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; padding-left: 100px; font-size: 18px; background: url("/assets/images/newhomapage/xy-title-z.png"); } .xyDiv .d1{ width: 100%; height: 128px; border-bottom: 1px solid #bbbbbb; padding: 0 20px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; } .xyDiv .d1 h1{ font-size: 28px; font-weight: normal; text-align: left; } .xyDiv .d1 h2{ font-size: 14px; font-weight: normal; text-align: left; clear: both; margin-top: 60px; } .xyDiv .d1 select{ font-size: 15px; float: left; background: transparent; border: none; margin-top: 8px; outline: none; width: 100px; } .xyDiv .d2{ width: 665px; height: 300px; /*background: red;*/ overflow: auto; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; padding: 20px; } .xyDiv .d2 h1{ font-size: 14px; text-align: left; margin-bottom: 15px; } .xyDiv .d2 p{ font-size: 14px; text-align: left; margin-bottom: 15px; } .xyDiv .d3{ text-align: left; font-size: 14px; position: relative; height: 108px; background: #ededed; padding: 20px; box-sizing:border-box; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; border-top: 1px solid #bbbbbb; } .xyDiv .d3 *{ font-size: 14px; } .xyDiv .d3 input[type='button']{ margin-top: 45px; margin-left: 10px; width: 80px; display: inline-block; height: 28px; border: none; outline: none; cursor: pointer; line-height: 10px; } .getYzm{ position: absolute; right: 240px; font-size: 15px; text-decoration: none; color: #218ff5; top: 8px; } .sw-div .zq-iframe .fl h6.r-b{ color: #f00606; } .sw-div .zq-iframe .fl h6.g-b{ color: #17c400; } .sw-div .zq-iframe .fl h5.r-b{ color: #f00606; } .sw-div .zq-iframe .fl h5.g-b{ color: #17c400; } .indexDataTabs li.wrapNavUlChecked { color: #f00606; border-bottom: 3px solid #f00606; } .layui-layer-btn .layui-layer-btn0{ font-size: 14px; color: white; border-color: #218ff5; background-color: #218ff5; } .changeL{ color: #a2a2a2; font-size: 16px; height: 80px; line-height: 80px; margin-right: 20px; } .changeL a{ color: #a2a2a2; padding: 10px 3px; font-size: 16px; text-decoration: none; } .layui-layer-tips i.layui-layer-TipsB, .layui-layer-tips i.layui-layer-TipsT{ border-right-color: #980807 !important; } .layui-layer-tips .layui-layer-content{ background-color: #980807 !important; color: white !important; }
0.355216
0.115561
html, body { height: 100%; padding-top: 30px; padding-left: 1em; } .sign-in { margin-right: 2em; } /* Wrapper for page content to push down footer */ #applicationHost { min-height: 100%; height: auto !important; height: 100%; /* Negative indent footer by its height */ margin: 0 auto -60px; /* Pad bottom by footer height */ padding: 0 0 90px; } /* Set the fixed height of the footer here */ #footer { height: 60px; background-color: #f5f5f5; } .container { width: auto; max-width: 900px; padding: 0 15px; } .container .credit { margin: 20px 0; } .admin-appHost { width: auto; max-width: 1250px; padding: 0 15px; } .admin-content { width: auto; max-width: 1250px; padding: 0px 0px 0px 0px; } .vertical-container { display: table; } .vertical-container .middle { display: table-cell; float: none; vertical-align: middle; } .bold-text { font-weight: bold; } .filter-control { margin-left: 10px; } .header-input>td{ vertical-align: middle !important; } .nav, .pagination, .carousel, .panel-title a { cursor: pointer; } .form-horizontal .time-label{ padding-top: 42px; } /*.ace_editor { height: 200px; }*/ .import-area { width: 840px; height: 250px; } #splash-page { z-index: 99999 !important; } #splash-page .bar { width: 100%; } .page-splash { z-index: 99999 !important; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #424040; opacity: .9; pointer-events: auto; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; -o-backface-visibility: hidden; backface-visibility: hidden; -webkit-transition: opacity 0.3s linear; -moz-transition: opacity 0.3s linear; -o-transition: opacity 0.3s linear; transition: opacity 0.3s linear; } .page-splash-message { text-align: center; margin: 20% auto 0 auto; font-size: 400%; font-family: "Segoe UI", Arial, Helvetica, sans-serif; font-weight: normal; -webkit-text-shadow: 2px 2px #000000; text-shadow: 2px 2px #000000; text-shadow: 2px 2px rgba(0, 0, 0, 0.15); text-transform: uppercase; text-decoration: none; /*color: #F58A00;*/ color: #efb73e; padding: 0; }
src/styles/main.css
html, body { height: 100%; padding-top: 30px; padding-left: 1em; } .sign-in { margin-right: 2em; } /* Wrapper for page content to push down footer */ #applicationHost { min-height: 100%; height: auto !important; height: 100%; /* Negative indent footer by its height */ margin: 0 auto -60px; /* Pad bottom by footer height */ padding: 0 0 90px; } /* Set the fixed height of the footer here */ #footer { height: 60px; background-color: #f5f5f5; } .container { width: auto; max-width: 900px; padding: 0 15px; } .container .credit { margin: 20px 0; } .admin-appHost { width: auto; max-width: 1250px; padding: 0 15px; } .admin-content { width: auto; max-width: 1250px; padding: 0px 0px 0px 0px; } .vertical-container { display: table; } .vertical-container .middle { display: table-cell; float: none; vertical-align: middle; } .bold-text { font-weight: bold; } .filter-control { margin-left: 10px; } .header-input>td{ vertical-align: middle !important; } .nav, .pagination, .carousel, .panel-title a { cursor: pointer; } .form-horizontal .time-label{ padding-top: 42px; } /*.ace_editor { height: 200px; }*/ .import-area { width: 840px; height: 250px; } #splash-page { z-index: 99999 !important; } #splash-page .bar { width: 100%; } .page-splash { z-index: 99999 !important; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: #424040; opacity: .9; pointer-events: auto; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; -o-backface-visibility: hidden; backface-visibility: hidden; -webkit-transition: opacity 0.3s linear; -moz-transition: opacity 0.3s linear; -o-transition: opacity 0.3s linear; transition: opacity 0.3s linear; } .page-splash-message { text-align: center; margin: 20% auto 0 auto; font-size: 400%; font-family: "Segoe UI", Arial, Helvetica, sans-serif; font-weight: normal; -webkit-text-shadow: 2px 2px #000000; text-shadow: 2px 2px #000000; text-shadow: 2px 2px rgba(0, 0, 0, 0.15); text-transform: uppercase; text-decoration: none; /*color: #F58A00;*/ color: #efb73e; padding: 0; }
0.473414
0.066965
@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Mono|Roboto&display=swap"); :root { --bg: #222831; --bg2: #181C22; --bg3: #1A1D24; --green1: #efbb35; --green2: #e84279; --green3: #dfa612; --top1: #302e24; --top2: #28313e; --text-color: #F9FFEE; --info-box-text: antiquewhite; --info-box-bg: rgba(255, 213, 70, 0.1); } h1, h2, h3, h4 { color: var(--green1); font-style: italic; font-family: 'IBM Plex Mon', 'Roboto', sans-serif; } nav.navbar.navbar-expand-lg.navbar-light.bg-light{ background: var(--bg3) !important; } a.navbar-brand{ color: cyan !important; } .navbar-light .navbar-nav .nav-link { color:var(--green3) !important; } .form-control.mr-sm-2{ background: transparent; } .navbar-light .navbar-toggler { color: var(--green1) !important; } /* ========================================================== */ body, html { background: var(--bg); } body { color: var(--text-color); font-family:'Roboto',sans-serif; } .title { position: relative; margin: 70px auto; text-align: center; font-size: 35px; line-height: 40px; display: block; text-transform: uppercase; } h2.subtitle { position: relative; margin: 70px auto; text-align: center; font-size: 35px; line-height: 40px; display: block; text-transform: capitalize; } h2.subtitle::after { content: ""; display: block; background: cyan; width: 100px; height: 2px; margin: 30px auto 0 auto; } /* ===============Section masonry============================== */ section.masonry-grid { position: relative; } .grid { margin: 0 auto; } /* clear fix */ .grid:after { content: ""; display: block; clear: both; } /* ---- .grid-item ---- */ .grid-sizer, .grid-item { width: 33.333%; } .grid-item { float: left; position: relative; overflow: hidden; } .grid-item img { display: block; width: 100%; } .grid-item .content-slide-up { position: absolute; width: 100%; padding: 10px; bottom: -100px; transition: 0.6s; z-index: 1; } .grid-item .content-slide-up > p { text-align: center; text-transform: uppercase; color:var(--text-color); padding: 10px auto 0 auto; font-size: 0.9rem; } .content-slide-up > hr.underline { border: 0.4px solid cyan; background: cyan; width: 200px; height: 2px; margin: 15px auto 0 auto; } .grid-item .overlay-slide-down { height: 0%; width: 100%; background: #333; position: absolute; top: 0; opacity: 0; transition: 0.5s; } .grid-item:hover .content-slide-up { bottom: 25%; opacity: 1; } .grid-item:hover .overlay-slide-down { opacity: 0.85; height: 100%; } a.grid-item-anchor:hover { cursor: finger; } /*========================= modal=============================== */ .modal-header,.modal-body,.modal-footer{ background: var(--bg) !important; } .modal-header .modal-title{ color:cyan; text-transform: uppercase; } .card{ border: 1px solid var(--green1); } .card.info-card,.list-group >.list-group-item{ background: var(--bg); color:var(--text-color); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } .list-group-item{ text-transform: capitalize; border: 1px solid cyan; } .btn.btn-danger{ background: cyan; border:1px solid cyan; }
static/css/gallery.css
@import url("https://fonts.googleapis.com/css?family=IBM+Plex+Mono|Roboto&display=swap"); :root { --bg: #222831; --bg2: #181C22; --bg3: #1A1D24; --green1: #efbb35; --green2: #e84279; --green3: #dfa612; --top1: #302e24; --top2: #28313e; --text-color: #F9FFEE; --info-box-text: antiquewhite; --info-box-bg: rgba(255, 213, 70, 0.1); } h1, h2, h3, h4 { color: var(--green1); font-style: italic; font-family: 'IBM Plex Mon', 'Roboto', sans-serif; } nav.navbar.navbar-expand-lg.navbar-light.bg-light{ background: var(--bg3) !important; } a.navbar-brand{ color: cyan !important; } .navbar-light .navbar-nav .nav-link { color:var(--green3) !important; } .form-control.mr-sm-2{ background: transparent; } .navbar-light .navbar-toggler { color: var(--green1) !important; } /* ========================================================== */ body, html { background: var(--bg); } body { color: var(--text-color); font-family:'Roboto',sans-serif; } .title { position: relative; margin: 70px auto; text-align: center; font-size: 35px; line-height: 40px; display: block; text-transform: uppercase; } h2.subtitle { position: relative; margin: 70px auto; text-align: center; font-size: 35px; line-height: 40px; display: block; text-transform: capitalize; } h2.subtitle::after { content: ""; display: block; background: cyan; width: 100px; height: 2px; margin: 30px auto 0 auto; } /* ===============Section masonry============================== */ section.masonry-grid { position: relative; } .grid { margin: 0 auto; } /* clear fix */ .grid:after { content: ""; display: block; clear: both; } /* ---- .grid-item ---- */ .grid-sizer, .grid-item { width: 33.333%; } .grid-item { float: left; position: relative; overflow: hidden; } .grid-item img { display: block; width: 100%; } .grid-item .content-slide-up { position: absolute; width: 100%; padding: 10px; bottom: -100px; transition: 0.6s; z-index: 1; } .grid-item .content-slide-up > p { text-align: center; text-transform: uppercase; color:var(--text-color); padding: 10px auto 0 auto; font-size: 0.9rem; } .content-slide-up > hr.underline { border: 0.4px solid cyan; background: cyan; width: 200px; height: 2px; margin: 15px auto 0 auto; } .grid-item .overlay-slide-down { height: 0%; width: 100%; background: #333; position: absolute; top: 0; opacity: 0; transition: 0.5s; } .grid-item:hover .content-slide-up { bottom: 25%; opacity: 1; } .grid-item:hover .overlay-slide-down { opacity: 0.85; height: 100%; } a.grid-item-anchor:hover { cursor: finger; } /*========================= modal=============================== */ .modal-header,.modal-body,.modal-footer{ background: var(--bg) !important; } .modal-header .modal-title{ color:cyan; text-transform: uppercase; } .card{ border: 1px solid var(--green1); } .card.info-card,.list-group >.list-group-item{ background: var(--bg); color:var(--text-color); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; } .list-group-item{ text-transform: capitalize; border: 1px solid cyan; } .btn.btn-danger{ background: cyan; border:1px solid cyan; }
0.305283
0.076304
* { box-sizing: border-box; } html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } /*My styles here */ html { background-color: #F0EDFA; font-size: 20px; font-family: -apple-system, BlinkMacSystemFont, roboto, 'avenir next', avenir, helvetica, 'helvetica neue', ubuntu, noto, 'segoe ui', arial, sans-serif; font-weight: 500; color: #4B4759; } body { padding-top: 4rem; padding-left: 1rem; padding-right: 1rem; padding-bottom: 1rem; margin-left: auto; margin-right: auto; max-width: 960px; display: flex; align-items: center; flex-direction: column; line-height: 1.4; } a { color: #2233E6; text-decoration: none; } a:hover{ opacity: .8; } h1 { font-size: 1.999rem; margin-bottom: 1rem; line-height: 1.25; font-weight: 700; } @media (min-width: 30em) { h1 { font-size: 2.827rem; } ul { display: flex; flex-wrap: wrap; margin-left: -.5rem; margin-right: -.5rem; margin-bottom: 1.5rem; } li { flex-basis: 50%; padding-left: .5rem; padding-right: .5rem; } } p { max-width: 66ch; display: block; margin-bottom: 2rem; } img { max-width: 100%; margin-bottom: 1rem; padding: .5rem; background-color: white; border-radius: .1rem; box-shadow: 0 1px 5px 0 rgba(75,71,89,0.20); transition: all 150ms ease; } img:hover { box-shadow: 0 1px 5px 1px rgba(75,71,89,0.25); transform: scale(1.005) } header { max-width: 66ch; } small { font-size: 0.707rem; }
app/styles/main.css
* { box-sizing: border-box; } html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } /*My styles here */ html { background-color: #F0EDFA; font-size: 20px; font-family: -apple-system, BlinkMacSystemFont, roboto, 'avenir next', avenir, helvetica, 'helvetica neue', ubuntu, noto, 'segoe ui', arial, sans-serif; font-weight: 500; color: #4B4759; } body { padding-top: 4rem; padding-left: 1rem; padding-right: 1rem; padding-bottom: 1rem; margin-left: auto; margin-right: auto; max-width: 960px; display: flex; align-items: center; flex-direction: column; line-height: 1.4; } a { color: #2233E6; text-decoration: none; } a:hover{ opacity: .8; } h1 { font-size: 1.999rem; margin-bottom: 1rem; line-height: 1.25; font-weight: 700; } @media (min-width: 30em) { h1 { font-size: 2.827rem; } ul { display: flex; flex-wrap: wrap; margin-left: -.5rem; margin-right: -.5rem; margin-bottom: 1.5rem; } li { flex-basis: 50%; padding-left: .5rem; padding-right: .5rem; } } p { max-width: 66ch; display: block; margin-bottom: 2rem; } img { max-width: 100%; margin-bottom: 1rem; padding: .5rem; background-color: white; border-radius: .1rem; box-shadow: 0 1px 5px 0 rgba(75,71,89,0.20); transition: all 150ms ease; } img:hover { box-shadow: 0 1px 5px 1px rgba(75,71,89,0.25); transform: scale(1.005) } header { max-width: 66ch; } small { font-size: 0.707rem; }
0.449393
0.13201
a { text-decoration: none; } body { background-color: #efefef; margin: 0; color: #333; } .main { width: 1100px; margin: 0 auto; background-color: white; } .container { width: 1000px; margin: 0 auto 40px auto; padding: 120px 0 80px; } .title { width: 300px; margin: 0 auto 50px; text-align: center; } h1 { font-weight: normal; border-bottom: 2px solid slategrey; } .contact-form { width: 600px; margin: 0 auto; border: 1px solid slategray; border-radius: 3px; padding: 20px; text-align: center; } .contents { text-align: right; } label { font-size: 1rem; margin-left: 20px; margin-right: 20px; } .name, .mailaddress, .contact { width: 500px; margin-bottom: 20px; } .contact label { vertical-align: top; } input { width: 300px; height: 20px; border-radius: 4px; font-size: 100%; } textarea { width: 300px; font-size: 90%; border: 1px solid rgb(103, 109, 117); border-radius: 4px; } .send-btn { margin:20px auto 10px; width: 150px; height: 40px; border-radius: 4px; background-color: rgb(182, 203, 226); font-size: 1.2rem; } @media screen and (max-width: 1000px){ a { text-decoration: none; } body { background-color: #efefef; margin: 0; color: #333; } .main { width: 100%; margin: 0 auto; background-color: white; } .container { width: 90%; margin: 0 auto 40px auto; padding: 100px 0 60px; } .title { width: 300px; margin: 0 auto 50px; text-align: center; } h1 { font-weight: normal; border-bottom: 2px solid slategrey; } .contact-form { width: 90%; margin: 0 auto; border: 1px solid slategray; border-radius: 3px; padding: 20px; text-align: center; } .contents { text-align: right; } label { font-size: 1rem; margin-left: 20px; margin-right: 20px; } .name, .mailaddress, .contact { width: 80%; margin-bottom: 20px; } .contact label { vertical-align: top; } input { width: 60%; height: 20px; border-radius: 4px; font-size: 100%; } textarea { width: 60%; font-size: 90%; border: 1px solid rgb(103, 109, 117); border-radius: 4px; } .send-btn { margin:20px auto 10px; width: 40%; height: 40px; border-radius: 4px; background-color: rgb(182, 203, 226); font-size: 1.2rem; } } @media screen and (max-width: 768px){ a { text-decoration: none; } body { background-color: #efefef; margin: 0; color: #333; } .main { width: 100%; margin: 0 auto; background-color: white; } .container { width: 95%; margin: 0 auto 40px auto; padding: 100px 0 60px; } .title { width: 60%; margin: 0 auto 50px; text-align: center; } h1 { font-size: 1.5rem; font-weight: normal; border-bottom: 2px solid slategrey; } label { font-size: 1rem; display: block; text-align: left; margin: 0; } .contact-form { width: 90%; margin: 0 auto; border: 1px solid slategray; border-radius: 3px; padding: 5px; text-align: center; } .contents { text-align: right; } .name, .mailaddress, .contact { width: 80%; margin: 0 auto 20px; } .contact label { vertical-align: top; } input { width: 100%; height: 20px; border-radius: 4px; font-size: 90%; } textarea { width: 100%; font-size: 90%; border: 1px solid rgb(103, 109, 117); border-radius: 4px; } .send-btn { margin:20px auto 10px; width: 40%; height: 40px; border-radius: 4px; background-color: rgb(182, 203, 226); font-size: 1.2rem; } } @media screen and (max-width: 375px){ a { text-decoration: none; } body { background-color: #efefef; margin: 0; color: #333; } .main { width: 100%; margin: 0 auto; background-color: white; } .container { width: 95%; margin: 0 auto 40px auto; padding: 100px 0 60px; } .title { width: 70%; margin: 0 auto 20px; text-align: center; } h1 { font-size: 1.5rem; font-weight: normal; border-bottom: 2px solid slategrey; } label { font-size: 1rem; display: block; text-align: left; margin: 0; } .contact-form { width: 90%; margin: 0 auto; border: 1px solid slategray; border-radius: 3px; padding: 5px; text-align: center; } .contents { text-align: right; } .name, .mailaddress, .contact { width: 80%; margin: 0 auto 20px; } .contact label { vertical-align: top; } input { width: 100%; height: 20px; border-radius: 4px; font-size: 90%; } textarea { width: 100%; font-size: 90%; border: 1px solid rgb(103, 109, 117); border-radius: 4px; } .send-btn { margin:0 auto 20px; width: 40%; height: 30px; border-radius: 4px; background-color: rgb(182, 203, 226); font-size: 1rem; } }
public/css/contact.css
a { text-decoration: none; } body { background-color: #efefef; margin: 0; color: #333; } .main { width: 1100px; margin: 0 auto; background-color: white; } .container { width: 1000px; margin: 0 auto 40px auto; padding: 120px 0 80px; } .title { width: 300px; margin: 0 auto 50px; text-align: center; } h1 { font-weight: normal; border-bottom: 2px solid slategrey; } .contact-form { width: 600px; margin: 0 auto; border: 1px solid slategray; border-radius: 3px; padding: 20px; text-align: center; } .contents { text-align: right; } label { font-size: 1rem; margin-left: 20px; margin-right: 20px; } .name, .mailaddress, .contact { width: 500px; margin-bottom: 20px; } .contact label { vertical-align: top; } input { width: 300px; height: 20px; border-radius: 4px; font-size: 100%; } textarea { width: 300px; font-size: 90%; border: 1px solid rgb(103, 109, 117); border-radius: 4px; } .send-btn { margin:20px auto 10px; width: 150px; height: 40px; border-radius: 4px; background-color: rgb(182, 203, 226); font-size: 1.2rem; } @media screen and (max-width: 1000px){ a { text-decoration: none; } body { background-color: #efefef; margin: 0; color: #333; } .main { width: 100%; margin: 0 auto; background-color: white; } .container { width: 90%; margin: 0 auto 40px auto; padding: 100px 0 60px; } .title { width: 300px; margin: 0 auto 50px; text-align: center; } h1 { font-weight: normal; border-bottom: 2px solid slategrey; } .contact-form { width: 90%; margin: 0 auto; border: 1px solid slategray; border-radius: 3px; padding: 20px; text-align: center; } .contents { text-align: right; } label { font-size: 1rem; margin-left: 20px; margin-right: 20px; } .name, .mailaddress, .contact { width: 80%; margin-bottom: 20px; } .contact label { vertical-align: top; } input { width: 60%; height: 20px; border-radius: 4px; font-size: 100%; } textarea { width: 60%; font-size: 90%; border: 1px solid rgb(103, 109, 117); border-radius: 4px; } .send-btn { margin:20px auto 10px; width: 40%; height: 40px; border-radius: 4px; background-color: rgb(182, 203, 226); font-size: 1.2rem; } } @media screen and (max-width: 768px){ a { text-decoration: none; } body { background-color: #efefef; margin: 0; color: #333; } .main { width: 100%; margin: 0 auto; background-color: white; } .container { width: 95%; margin: 0 auto 40px auto; padding: 100px 0 60px; } .title { width: 60%; margin: 0 auto 50px; text-align: center; } h1 { font-size: 1.5rem; font-weight: normal; border-bottom: 2px solid slategrey; } label { font-size: 1rem; display: block; text-align: left; margin: 0; } .contact-form { width: 90%; margin: 0 auto; border: 1px solid slategray; border-radius: 3px; padding: 5px; text-align: center; } .contents { text-align: right; } .name, .mailaddress, .contact { width: 80%; margin: 0 auto 20px; } .contact label { vertical-align: top; } input { width: 100%; height: 20px; border-radius: 4px; font-size: 90%; } textarea { width: 100%; font-size: 90%; border: 1px solid rgb(103, 109, 117); border-radius: 4px; } .send-btn { margin:20px auto 10px; width: 40%; height: 40px; border-radius: 4px; background-color: rgb(182, 203, 226); font-size: 1.2rem; } } @media screen and (max-width: 375px){ a { text-decoration: none; } body { background-color: #efefef; margin: 0; color: #333; } .main { width: 100%; margin: 0 auto; background-color: white; } .container { width: 95%; margin: 0 auto 40px auto; padding: 100px 0 60px; } .title { width: 70%; margin: 0 auto 20px; text-align: center; } h1 { font-size: 1.5rem; font-weight: normal; border-bottom: 2px solid slategrey; } label { font-size: 1rem; display: block; text-align: left; margin: 0; } .contact-form { width: 90%; margin: 0 auto; border: 1px solid slategray; border-radius: 3px; padding: 5px; text-align: center; } .contents { text-align: right; } .name, .mailaddress, .contact { width: 80%; margin: 0 auto 20px; } .contact label { vertical-align: top; } input { width: 100%; height: 20px; border-radius: 4px; font-size: 90%; } textarea { width: 100%; font-size: 90%; border: 1px solid rgb(103, 109, 117); border-radius: 4px; } .send-btn { margin:0 auto 20px; width: 40%; height: 30px; border-radius: 4px; background-color: rgb(182, 203, 226); font-size: 1rem; } }
0.395718
0.113776
* { color: white; font-family: 'Rajdhani', sans-serif; } body { background-image: url("dark-canvas.gif"); } button { color: black; } h1 { font-family: 'Rajdhani', sans-serif; font-size: 4vw; font-weight: bold; } h2 { font-family: 'Rajdhani', sans-serif; font-weight: bold; } hr { background-color: #7d97ad; height: 2px; } input[type="radio"] { margin: 0 1vw 0 1vw; } select { align-items: left; color: red; font-size: 1vmax; height: 3vmin; margin-left: 1vmin; width: 14vmin; } select option { color: black; } select option[data-default] { color: #888; } .add_condition, .edit_condition { margin-left: 1vw; text-decoration: underline; } .add_error { color:red; font-size: 1.5vw; margin-left: 1vw; } .add_instrument, .edit_instrument { color: blue; font-weight: bold; margin-left: 1vw; } .add_item { color: red; font-size: 1vw; font-weight: bold; padding-right: 1vw; text-decoration: underline; text-align: right; } .back_to_main { font-size: 1vw; } .banner { background-color: #7d97ad; margin-top: 1vmax; } .brand_table { font-size: 2vw; } .brand_view { font-size: 1vw; } .buy { color: green; font-family: tahoma; font-size: 2vw; } .cancel_add, .cancel_edit { color: red; font-weight: bold; font-size: 2.5vh; margin-left: 1vmin; padding-top: 0; } .category_custom, .subcategory_custom, .brand_custom, .model_input { color: black; margin-left: 1vw; height: 3vmin; width: 10vw; } .category_select, .subcategory_select, .brand_select { color: black; margin-left: 1vw; padding: 0; } .category_view { font-size: 1vw; } .classification { margin-top: 1vw; margin-left; } .delete_cancel { color: blue; font-weight: bold; font-size: 1vw; float: left; margin-left: 1vmax; } .del_inst_name { color: red; font-weight: bold; } .delete_item, .delete_confirm { color: red; font-weight: bold; font-size: 1vw; float: left; margin-left: 1vmax; } .del_main { float:right; font-size: 1vw; padding-right: 4vmax; } .description { color: black; margin-top: 1vh; height: 20vh; width: 30vw; } .descriptor { font-weight: bold; } .entry_footer { margin-top: 1vmax; } .flash_added, .flash_edit, .flash_deleted, .flash_main { color: red; font-size: 1vw; } .greeting { color: black; font-weight: bold; font-size: 4vw; padding-left: 1vw; text-decoration: none; } .greeting:hover { color: black; text-decoration: none; } .greeting:active { color: black; text-decoration: none; } .hidden_cat { color: black; } .hr_entry_footer { height: 0.5px; background-color: gray; } .info_name,.info_brand,.info_cond,.info_des, .info_type,.info_model,.info_price, .info_submittedby, .infolink { font-weight: bold; font-size: 1vw; } .info_inst_name,.info_inst_brand,.info_inst_cond,.info_inst_des, .info_inst_type,.info_inst_model,.info_inst_price, .info_inst_submittedby, .info_inst_more { font-weight: bold; font-size: 2vw; } .info_name { font-size: 2vw; } .info_type { text-transform: capitalize; } .info_des_text { font-weight: normal; margin-left: 2vw; text-align: justify; } .instrDivider { background-color: gray; height: 1px; } .inst_value, .info_inst_des_text { font-weight: normal; } .instrument_listing { font-size: 2vw; } .item_classification_heading { text-decoration: underline; } .item_description { margin-left: 2.5vw; text-decoration: underline; } .item_value { font-weight: normal; font-size: 1vw; padding-left: 1vw; } .inv_msg { padding-top: 1vw; } .login_icons { padding-top: 1vmin; text-align: left; } .login_panel { padding-top: 1vw; text-align: right; } .login_control { font-size: 2vmax; font-weight: bold; padding-right: 1vw; } .login_msg { font-weight: bold; } .logged_name { font-size: 1vw; } .logged_status { font-size: 2vmin; padding-left: 1vw; } .maincat, .mainbrand { font-family: 'Rajdhani', sans-serif; text-transform: uppercase; font-weight: bold; } .main_table { display: inline-block; font-size: 2vw; margin-top: 1vmin; margin-bottom: 1vmin; } .model_input { margin-left: 1vw; } .model_name { background-color: white; color: red; font-size: 2.5vmin; height: 1.5vw; margin-left: 1vw; text-align: right; } .newitem_form { font-size: 1vmax; } .newitem_reset { color: green; font-size: 1vmax; font-weight: bold; margin-left: 2vw; margin-top: 2.5vh; } .optional { margin-left: 0; padding-left: 0; padding-right: 2vw; } .price_label { text-decoration: underline; } .price { color: black; } .reqMsg { font-style: italic; font-weight: bold; } .reset_msg { font-size: 16px; text-align: center; } .show_area { column-count:2; -moz-column-count:2; -webkit-column-count:2; height: 20vw; width: 60vmin; }
static/styles/instyle.css
* { color: white; font-family: 'Rajdhani', sans-serif; } body { background-image: url("dark-canvas.gif"); } button { color: black; } h1 { font-family: 'Rajdhani', sans-serif; font-size: 4vw; font-weight: bold; } h2 { font-family: 'Rajdhani', sans-serif; font-weight: bold; } hr { background-color: #7d97ad; height: 2px; } input[type="radio"] { margin: 0 1vw 0 1vw; } select { align-items: left; color: red; font-size: 1vmax; height: 3vmin; margin-left: 1vmin; width: 14vmin; } select option { color: black; } select option[data-default] { color: #888; } .add_condition, .edit_condition { margin-left: 1vw; text-decoration: underline; } .add_error { color:red; font-size: 1.5vw; margin-left: 1vw; } .add_instrument, .edit_instrument { color: blue; font-weight: bold; margin-left: 1vw; } .add_item { color: red; font-size: 1vw; font-weight: bold; padding-right: 1vw; text-decoration: underline; text-align: right; } .back_to_main { font-size: 1vw; } .banner { background-color: #7d97ad; margin-top: 1vmax; } .brand_table { font-size: 2vw; } .brand_view { font-size: 1vw; } .buy { color: green; font-family: tahoma; font-size: 2vw; } .cancel_add, .cancel_edit { color: red; font-weight: bold; font-size: 2.5vh; margin-left: 1vmin; padding-top: 0; } .category_custom, .subcategory_custom, .brand_custom, .model_input { color: black; margin-left: 1vw; height: 3vmin; width: 10vw; } .category_select, .subcategory_select, .brand_select { color: black; margin-left: 1vw; padding: 0; } .category_view { font-size: 1vw; } .classification { margin-top: 1vw; margin-left; } .delete_cancel { color: blue; font-weight: bold; font-size: 1vw; float: left; margin-left: 1vmax; } .del_inst_name { color: red; font-weight: bold; } .delete_item, .delete_confirm { color: red; font-weight: bold; font-size: 1vw; float: left; margin-left: 1vmax; } .del_main { float:right; font-size: 1vw; padding-right: 4vmax; } .description { color: black; margin-top: 1vh; height: 20vh; width: 30vw; } .descriptor { font-weight: bold; } .entry_footer { margin-top: 1vmax; } .flash_added, .flash_edit, .flash_deleted, .flash_main { color: red; font-size: 1vw; } .greeting { color: black; font-weight: bold; font-size: 4vw; padding-left: 1vw; text-decoration: none; } .greeting:hover { color: black; text-decoration: none; } .greeting:active { color: black; text-decoration: none; } .hidden_cat { color: black; } .hr_entry_footer { height: 0.5px; background-color: gray; } .info_name,.info_brand,.info_cond,.info_des, .info_type,.info_model,.info_price, .info_submittedby, .infolink { font-weight: bold; font-size: 1vw; } .info_inst_name,.info_inst_brand,.info_inst_cond,.info_inst_des, .info_inst_type,.info_inst_model,.info_inst_price, .info_inst_submittedby, .info_inst_more { font-weight: bold; font-size: 2vw; } .info_name { font-size: 2vw; } .info_type { text-transform: capitalize; } .info_des_text { font-weight: normal; margin-left: 2vw; text-align: justify; } .instrDivider { background-color: gray; height: 1px; } .inst_value, .info_inst_des_text { font-weight: normal; } .instrument_listing { font-size: 2vw; } .item_classification_heading { text-decoration: underline; } .item_description { margin-left: 2.5vw; text-decoration: underline; } .item_value { font-weight: normal; font-size: 1vw; padding-left: 1vw; } .inv_msg { padding-top: 1vw; } .login_icons { padding-top: 1vmin; text-align: left; } .login_panel { padding-top: 1vw; text-align: right; } .login_control { font-size: 2vmax; font-weight: bold; padding-right: 1vw; } .login_msg { font-weight: bold; } .logged_name { font-size: 1vw; } .logged_status { font-size: 2vmin; padding-left: 1vw; } .maincat, .mainbrand { font-family: 'Rajdhani', sans-serif; text-transform: uppercase; font-weight: bold; } .main_table { display: inline-block; font-size: 2vw; margin-top: 1vmin; margin-bottom: 1vmin; } .model_input { margin-left: 1vw; } .model_name { background-color: white; color: red; font-size: 2.5vmin; height: 1.5vw; margin-left: 1vw; text-align: right; } .newitem_form { font-size: 1vmax; } .newitem_reset { color: green; font-size: 1vmax; font-weight: bold; margin-left: 2vw; margin-top: 2.5vh; } .optional { margin-left: 0; padding-left: 0; padding-right: 2vw; } .price_label { text-decoration: underline; } .price { color: black; } .reqMsg { font-style: italic; font-weight: bold; } .reset_msg { font-size: 16px; text-align: center; } .show_area { column-count:2; -moz-column-count:2; -webkit-column-count:2; height: 20vw; width: 60vmin; }
0.575469
0.140277
input, select, textarea, button, input:focus, select:focus, textarea:focus, button:focus { outline: none; } .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th { vertical-align: middle; } .content-header h1 { margin: 0; font-size: 24px; line-height: 40px; } button.btn-header { border: 0; background: #8BC34A; padding: 10px 30px; vertical-align: middle; float: right; color: #fff; font-weight: bold; text-transform: uppercase; } .remove-item i { position: absolute; top: 0; right: 20px; font-size: 20px; } ul.menu li { position: relative; } input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; } input[type=number] { -moz-appearance: textfield; appearance: textfield; } @media(max-width: 767px) { button.btn-header { margin-top: 10px; } } a.act-list { text-decoration: none; font-size: 24px; margin-right: 5px; } a.act-delete { color: #d9534f; } a.act-edit { color: #367fa9; } .box-auth { background: #fff; padding: 20px; margin-top: 30%; box-shadow: 0 0 50px #efefef; } .box-auth button { width: 100%; } .box-auth input { width: 100%; border: solid 1px #ccc; padding: 12px; outline: none; } .box-auth button { width: 100%; padding: 12px; border: none; background: #CDDC39; margin-top: 16px; text-transform: uppercase; color: #fff; font-weight: bold; outline: none; } .box-login { border: solid 1px #ccc; box-shadow: 0 0 25px rgba(0, 0, 0, 0.05); padding: 60px 10px; margin-top: 80px; background: #fff; } .body-login { background: #e6e6e6; } img.graduation-img { width: 90px; margin: 10px auto; display: table; } .cycle-select { float: right; padding-top: 3px; } .cycle-select p { float: left; margin-bottom: 0; margin-top: 6px; text-transform: unset; } .time-cycle { color: #fff; text-transform: uppercase; padding-top: 15px; padding-right: 10px; } .cycle-select select { float: left; margin-left: 5px; outline: none; padding: 5px; border-radius: 2px; } .product-box img { width: 100%; max-height: 250px; height: 250px; object-fit: contain; } .product-box { position: relative; box-shadow: 5px 5px 20px #888; } .product-body h3 { font-size: 14px; font-weight: bold; text-align: center; } .product-body h4 { color: #f39c12; font-size: 18px; font-weight: 400; text-align: center; } button.add-cart { float: left; border: none; background: #f39c12; width: 80%; padding: 8px 5px; color: #fff; font-weight: bold; } button.more-info { float: left; border: none; background: #ccc; margin-right: 2%; width: 18%; padding: 8px 5px; color: #fff; font-weight: bold; } .product-footer { padding: 8px; } .banner-dashboard { width: 100%; max-height: 435px; object-fit: cover; } .cursor { cursor: pointer; } .box-description { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; background: #fff; padding: 20px; } .display-none { display: none; } .close-box { position: absolute; top: 6px; right: 10px; cursor: pointer; font-size: 16px; color: #ccc; } .qty { position: relative; max-width: 200px; } .qty label { position: absolute; z-index: 9; text-align: center; top: 6px; left: 0; right: 0; font-weight: 300; color: #a3a3a3; } .qty input { width: 100%; height: 60px; text-align: center; padding: 28px 8px 8px; border-radius: 3px; border: solid 1px #ccc; box-shadow: 0 0 5px rgba(0, 0, 0, 0.09); font-size: 16px; margin-bottom: 16px; } .qty button.close-qty { z-index: 999; position: absolute; top: -11px; right: -11px; background: #fff; border: none; font-size: 20px; color: #ccc; padding: 0; line-height: 0; border-radius: 100%; height: 22px; width: 22px; } .delete-number-to-qty, .add-number-to-qty { z-index: 999; position: absolute; right: 6px; border: none; font-size: 10px; padding: 0; line-height: 0; border-radius: 100%; background: transparent; color: #ccc; } .add-number-to-qty { top: 28px; } .delete-number-to-qty { top: 38px; } .col-qty { float: left; width: 90px; margin-right: 11px; } .image-product-cart { max-height: 100px; width: 100%; object-fit: cover; } .image-product-checkout { max-height: 100px; width: 50%; object-fit: cover; } .configuration:hover { cursor: pointer; } .generate-invitation:hover { cursor: pointer; } .btn-add-widget, .btn-add-widget:focus, .btn-add-widget:hover { border: 1px solid transparent; outline: none; box-shadow: none; background: #8BC34A; color: #fff; width: 30px; } .change-avatar:hover { cursor: pointer; } .navbar-nav>.messages-menu>.dropdown-menu>li.footer>a { padding: 15px ; font-size: 18px ; color: #fff !important; background-color: #f4a425 ; } .child { padding-left: 30px; } .gray { background-color: #ddd; border-radius: 5px; } .box-tools span { padding-right: 30px; }
public/dist/css/style.css
input, select, textarea, button, input:focus, select:focus, textarea:focus, button:focus { outline: none; } .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th { vertical-align: middle; } .content-header h1 { margin: 0; font-size: 24px; line-height: 40px; } button.btn-header { border: 0; background: #8BC34A; padding: 10px 30px; vertical-align: middle; float: right; color: #fff; font-weight: bold; text-transform: uppercase; } .remove-item i { position: absolute; top: 0; right: 20px; font-size: 20px; } ul.menu li { position: relative; } input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; } input[type=number] { -moz-appearance: textfield; appearance: textfield; } @media(max-width: 767px) { button.btn-header { margin-top: 10px; } } a.act-list { text-decoration: none; font-size: 24px; margin-right: 5px; } a.act-delete { color: #d9534f; } a.act-edit { color: #367fa9; } .box-auth { background: #fff; padding: 20px; margin-top: 30%; box-shadow: 0 0 50px #efefef; } .box-auth button { width: 100%; } .box-auth input { width: 100%; border: solid 1px #ccc; padding: 12px; outline: none; } .box-auth button { width: 100%; padding: 12px; border: none; background: #CDDC39; margin-top: 16px; text-transform: uppercase; color: #fff; font-weight: bold; outline: none; } .box-login { border: solid 1px #ccc; box-shadow: 0 0 25px rgba(0, 0, 0, 0.05); padding: 60px 10px; margin-top: 80px; background: #fff; } .body-login { background: #e6e6e6; } img.graduation-img { width: 90px; margin: 10px auto; display: table; } .cycle-select { float: right; padding-top: 3px; } .cycle-select p { float: left; margin-bottom: 0; margin-top: 6px; text-transform: unset; } .time-cycle { color: #fff; text-transform: uppercase; padding-top: 15px; padding-right: 10px; } .cycle-select select { float: left; margin-left: 5px; outline: none; padding: 5px; border-radius: 2px; } .product-box img { width: 100%; max-height: 250px; height: 250px; object-fit: contain; } .product-box { position: relative; box-shadow: 5px 5px 20px #888; } .product-body h3 { font-size: 14px; font-weight: bold; text-align: center; } .product-body h4 { color: #f39c12; font-size: 18px; font-weight: 400; text-align: center; } button.add-cart { float: left; border: none; background: #f39c12; width: 80%; padding: 8px 5px; color: #fff; font-weight: bold; } button.more-info { float: left; border: none; background: #ccc; margin-right: 2%; width: 18%; padding: 8px 5px; color: #fff; font-weight: bold; } .product-footer { padding: 8px; } .banner-dashboard { width: 100%; max-height: 435px; object-fit: cover; } .cursor { cursor: pointer; } .box-description { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; background: #fff; padding: 20px; } .display-none { display: none; } .close-box { position: absolute; top: 6px; right: 10px; cursor: pointer; font-size: 16px; color: #ccc; } .qty { position: relative; max-width: 200px; } .qty label { position: absolute; z-index: 9; text-align: center; top: 6px; left: 0; right: 0; font-weight: 300; color: #a3a3a3; } .qty input { width: 100%; height: 60px; text-align: center; padding: 28px 8px 8px; border-radius: 3px; border: solid 1px #ccc; box-shadow: 0 0 5px rgba(0, 0, 0, 0.09); font-size: 16px; margin-bottom: 16px; } .qty button.close-qty { z-index: 999; position: absolute; top: -11px; right: -11px; background: #fff; border: none; font-size: 20px; color: #ccc; padding: 0; line-height: 0; border-radius: 100%; height: 22px; width: 22px; } .delete-number-to-qty, .add-number-to-qty { z-index: 999; position: absolute; right: 6px; border: none; font-size: 10px; padding: 0; line-height: 0; border-radius: 100%; background: transparent; color: #ccc; } .add-number-to-qty { top: 28px; } .delete-number-to-qty { top: 38px; } .col-qty { float: left; width: 90px; margin-right: 11px; } .image-product-cart { max-height: 100px; width: 100%; object-fit: cover; } .image-product-checkout { max-height: 100px; width: 50%; object-fit: cover; } .configuration:hover { cursor: pointer; } .generate-invitation:hover { cursor: pointer; } .btn-add-widget, .btn-add-widget:focus, .btn-add-widget:hover { border: 1px solid transparent; outline: none; box-shadow: none; background: #8BC34A; color: #fff; width: 30px; } .change-avatar:hover { cursor: pointer; } .navbar-nav>.messages-menu>.dropdown-menu>li.footer>a { padding: 15px ; font-size: 18px ; color: #fff !important; background-color: #f4a425 ; } .child { padding-left: 30px; } .gray { background-color: #ddd; border-radius: 5px; } .box-tools span { padding-right: 30px; }
0.47171
0.087408
.intro { position: relative; text-align: center; } .container-fliud { background-image: url('home.jpg'); background-position: center center; background-size: cover; background-repeat: no-repeat; padding-top: 22%; padding-bottom: 10%; text-align: center; color: whitesmoke; } #about-us { display: flex; flex-flow: row wrap; justify-content: center; } .about { display: flex; flex-flow: row wrap; justify-content: center; } .container-services { background-image: url('asset.jpg'); background-position: center center; background-size: cover; background-repeat: no-repeat; padding-top: 12%; padding-bottom: 4%; text-align: center; color: whitesmoke; } #head2 { padding-top: 80px; color: whitesmoke; font-weight: bolder; } .services { color: whitesmoke; font-weight: bold; padding: 10px; font-size: 15px; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; } .tog { margin-top: 40px; } .tog #design_image { vertical-align: middle; display: inline-block; } #design_image { text-align: center; margin-left: 110px; } #design { display: hidden; } .tog #design { margin-left: 10px; } .tog #development_image { vertical-align: middle; display: inline-block; } #development_image { text-align: center; margin-left: 110px; } .tog #development { margin-left: 10px; } .tog #product_image { vertical-align: middle; display: inline-block; } #product_image { text-align: center; margin-left: 110px; } .tog #product { margin-left: 10px; } .portfolio { color: black; font-size: 20px; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); text-align: center; background-color: #fff; padding: 10px 10px; font-size: 15px; } .img-fluid { max-width: 100%; max-height: 100%; padding: 0px; margin: 0px; opacity: 1; display: block; transition: 0.5s ease; backface-visibility: hidden; } .overlay { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image1:hover .img-fluid { opacity: 0.3; } #image1:hover .overlay { opacity: 1; } .overlay1 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image2:hover .img-fluid { opacity: 0.3; } #image2:hover .overlay1 { opacity: 1; } .overlay2 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image3:hover .img-fluid { opacity: 0.3; } #image3:hover .overlay2 { opacity: 1; } .overlay3 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image4:hover .img-fluid { opacity: 0.3; } #image4:hover .overlay3 { opacity: 1; } .overlay4 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image5:hover .img-fluid { opacity: 0.3; } #image5:hover .overlay4 { opacity: 1; } .overlay5 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image6:hover .img-fluid { opacity: 0.3; } #image6:hover .overlay5 { opacity: 1; } .overlay6 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image7:hover .img-fluid { opacity: 0.3; } #image7:hover .overlay6 { opacity: 1; } .overlay7 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image8:hover .img-fluid { opacity: 0.3; } #image8:hover .overlay7 { opacity: 1; } #form { background-image: url('c_image.jpg'); background-size: cover; background-position: center center; background-repeat: no-repeat; padding-top: 5%; padding-bottom: 5%; text-align: center; } .form { background-color: black; } .form-group { min-height: 20px; } .form-group1 { min-height: 100px; max-width: 300px; padding: 15px; } #name { background-color: transparent; color: whitesmoke; height: 25px; } #email { background-color: transparent; color: whitesmoke; height: 30px; } #message { min-width: 750px; min-height: 190px; font-size: 18px; background-color: transparent; color: whitesmoke; } .container3 { text-align: center; } .copyright { text-align: center; font-style: oblique; } .text { text-align: center; font-size: 16px; } .imgDescription { position: absolute; top: 30%; left: 40%; transform: transalate(-50%, -50%); color: whitesmoke; padding: 10px; font-weight: bolder; } .imgDescription1 { position: absolute; top: 45%; left: 35%; transform: transalate(-50%, -50%); color: whitesmoke; padding: 10px; font-size: 12px; } .imgDescription2 { position: absolute; top: 75%; left: 50%; transform: transalate(-50%, -50%); color: whitesmoke; padding: 10px; font-weight: bolder; } .imgDescription3 { position: absolute; top: 15%; left: 48%; transform: transalate(-50%, -50%); color: whitesmoke; padding: 10px; margin-bottom: 5px; } .container2 { width: 90%; height: 30%; justify-content: center; }
index.css
.intro { position: relative; text-align: center; } .container-fliud { background-image: url('home.jpg'); background-position: center center; background-size: cover; background-repeat: no-repeat; padding-top: 22%; padding-bottom: 10%; text-align: center; color: whitesmoke; } #about-us { display: flex; flex-flow: row wrap; justify-content: center; } .about { display: flex; flex-flow: row wrap; justify-content: center; } .container-services { background-image: url('asset.jpg'); background-position: center center; background-size: cover; background-repeat: no-repeat; padding-top: 12%; padding-bottom: 4%; text-align: center; color: whitesmoke; } #head2 { padding-top: 80px; color: whitesmoke; font-weight: bolder; } .services { color: whitesmoke; font-weight: bold; padding: 10px; font-size: 15px; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; } .tog { margin-top: 40px; } .tog #design_image { vertical-align: middle; display: inline-block; } #design_image { text-align: center; margin-left: 110px; } #design { display: hidden; } .tog #design { margin-left: 10px; } .tog #development_image { vertical-align: middle; display: inline-block; } #development_image { text-align: center; margin-left: 110px; } .tog #development { margin-left: 10px; } .tog #product_image { vertical-align: middle; display: inline-block; } #product_image { text-align: center; margin-left: 110px; } .tog #product { margin-left: 10px; } .portfolio { color: black; font-size: 20px; position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); text-align: center; background-color: #fff; padding: 10px 10px; font-size: 15px; } .img-fluid { max-width: 100%; max-height: 100%; padding: 0px; margin: 0px; opacity: 1; display: block; transition: 0.5s ease; backface-visibility: hidden; } .overlay { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image1:hover .img-fluid { opacity: 0.3; } #image1:hover .overlay { opacity: 1; } .overlay1 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image2:hover .img-fluid { opacity: 0.3; } #image2:hover .overlay1 { opacity: 1; } .overlay2 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image3:hover .img-fluid { opacity: 0.3; } #image3:hover .overlay2 { opacity: 1; } .overlay3 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image4:hover .img-fluid { opacity: 0.3; } #image4:hover .overlay3 { opacity: 1; } .overlay4 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image5:hover .img-fluid { opacity: 0.3; } #image5:hover .overlay4 { opacity: 1; } .overlay5 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image6:hover .img-fluid { opacity: 0.3; } #image6:hover .overlay5 { opacity: 1; } .overlay6 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image7:hover .img-fluid { opacity: 0.3; } #image7:hover .overlay6 { opacity: 1; } .overlay7 { transition: 0.5s ease; opacity: 0; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); text-align: center; background-color: #fff; } #image8:hover .img-fluid { opacity: 0.3; } #image8:hover .overlay7 { opacity: 1; } #form { background-image: url('c_image.jpg'); background-size: cover; background-position: center center; background-repeat: no-repeat; padding-top: 5%; padding-bottom: 5%; text-align: center; } .form { background-color: black; } .form-group { min-height: 20px; } .form-group1 { min-height: 100px; max-width: 300px; padding: 15px; } #name { background-color: transparent; color: whitesmoke; height: 25px; } #email { background-color: transparent; color: whitesmoke; height: 30px; } #message { min-width: 750px; min-height: 190px; font-size: 18px; background-color: transparent; color: whitesmoke; } .container3 { text-align: center; } .copyright { text-align: center; font-style: oblique; } .text { text-align: center; font-size: 16px; } .imgDescription { position: absolute; top: 30%; left: 40%; transform: transalate(-50%, -50%); color: whitesmoke; padding: 10px; font-weight: bolder; } .imgDescription1 { position: absolute; top: 45%; left: 35%; transform: transalate(-50%, -50%); color: whitesmoke; padding: 10px; font-size: 12px; } .imgDescription2 { position: absolute; top: 75%; left: 50%; transform: transalate(-50%, -50%); color: whitesmoke; padding: 10px; font-weight: bolder; } .imgDescription3 { position: absolute; top: 15%; left: 48%; transform: transalate(-50%, -50%); color: whitesmoke; padding: 10px; margin-bottom: 5px; } .container2 { width: 90%; height: 30%; justify-content: center; }
0.495117
0.088033
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: "Roboto", sans-serif; src: url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800;900&display=swap"); background: #191919; } .app { background: #e5e5e5; background-size: cover; background-position: bottom; transition: 0.4 ease; overflow-x: hidden; background: #191919; } .sun { width: 200%; margin-top: -130%; margin-left: -50%; filter: drop-shadow(0px 10px 7px rgb(0 0 0 / 0.9)); } .dark { width: 200%; margin-top: -130%; margin-left: -55%; filter: drop-shadow(0px 10px 7px rgb(0 0 0 / 0.9)); } .cloud { width: 200%; margin-top: -130%; margin-left: -50%; filter: drop-shadow(0px 10px 7px rgb(0 0 0 / 0.9)); } .rain { width: 200%; margin-top: -130%; margin-left: -25%; filter: drop-shadow(0px 10px 7px rgb(0 0 0 / 0.9)); } .st0 { fill: #ffe4ae; } .st1 { fill: #ffc75b; } .st2 { fill: #ffb015; } main { min-height: 90vh; padding: 25px; padding-top: 0px; } .search-box { width: 100%; margin: 10px 0px; } .search-box .search-bar { display: block; width: 100%; padding: 15px; appearance: none; background: none; text-align: left; border: none; outline: none; background-color: #292929; border-radius: 20px; box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.7); font-weight: 700; color: white; font-size: 15px; transition: 0.4s ease; } .search-box .search-bar:focus { background-color: #393939; } ::placeholder { color: white; opacity: 0.9; } input:focus::placeholder { opacity: 0; } .location-box .location { color: white; font-size: 13px; font-weight: 700; text-align: left; padding: 5px 0px; border-radius: 20px; } .direction .arrow { float: left; margin-right: 5px; margin-left: 15px; } .date { color: #fff; font-size: 18px; font-weight: 600; opacity: 0.1; text-align: center; margin-top: 25px; width: 100%; } .weather-box { text-align: center; margin-top: 50px; } .minmax { color: #fff; font-size: 13px; font-weight: 600; opacity: 0.9; margin-left: 10px; } .temp { color: #fff; font-size: 60px; font-weight: 600; margin-left: 20px; } .weather { color: #fff; font-size: 20px; font-weight: 600; opacity: 0.9; } .weatherfooter { display: flex; align-items: center; justify-content: center; margin-top: 5px; opacity: 0.9; } .weatherfooter .weatherdetails { color: white; font-size: 13px; font-weight: 600; padding: 0px 5px; border-radius: 20px; } .w-icon { width: 100%; float: left; } .chart { margin-top: 40px; } .week { margin-top: 30px; display: grid; grid-template-columns: repeat(6, 1fr); text-align: center; color: white; font-size: 13px; font-weight: 600; background: #191919; border-radius: 20px; } .day, .max { opacity: 0.8; } .min { opacity: 0.2; } .max, .min { padding: 3px; } .weekbar { display: grid; transition: 0.6s ease; padding: 20px 0px; } .weekbar:hover { border-radius: 10px; box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.7); } .week-icon { display: block; margin: 0px auto; width: 80%; } .footer { margin-top: 10px; text-align: center; color: white; font-size: 13px; font-weight: 600; opacity: 0.1; }
src/index.css
* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: "Roboto", sans-serif; src: url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800;900&display=swap"); background: #191919; } .app { background: #e5e5e5; background-size: cover; background-position: bottom; transition: 0.4 ease; overflow-x: hidden; background: #191919; } .sun { width: 200%; margin-top: -130%; margin-left: -50%; filter: drop-shadow(0px 10px 7px rgb(0 0 0 / 0.9)); } .dark { width: 200%; margin-top: -130%; margin-left: -55%; filter: drop-shadow(0px 10px 7px rgb(0 0 0 / 0.9)); } .cloud { width: 200%; margin-top: -130%; margin-left: -50%; filter: drop-shadow(0px 10px 7px rgb(0 0 0 / 0.9)); } .rain { width: 200%; margin-top: -130%; margin-left: -25%; filter: drop-shadow(0px 10px 7px rgb(0 0 0 / 0.9)); } .st0 { fill: #ffe4ae; } .st1 { fill: #ffc75b; } .st2 { fill: #ffb015; } main { min-height: 90vh; padding: 25px; padding-top: 0px; } .search-box { width: 100%; margin: 10px 0px; } .search-box .search-bar { display: block; width: 100%; padding: 15px; appearance: none; background: none; text-align: left; border: none; outline: none; background-color: #292929; border-radius: 20px; box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.7); font-weight: 700; color: white; font-size: 15px; transition: 0.4s ease; } .search-box .search-bar:focus { background-color: #393939; } ::placeholder { color: white; opacity: 0.9; } input:focus::placeholder { opacity: 0; } .location-box .location { color: white; font-size: 13px; font-weight: 700; text-align: left; padding: 5px 0px; border-radius: 20px; } .direction .arrow { float: left; margin-right: 5px; margin-left: 15px; } .date { color: #fff; font-size: 18px; font-weight: 600; opacity: 0.1; text-align: center; margin-top: 25px; width: 100%; } .weather-box { text-align: center; margin-top: 50px; } .minmax { color: #fff; font-size: 13px; font-weight: 600; opacity: 0.9; margin-left: 10px; } .temp { color: #fff; font-size: 60px; font-weight: 600; margin-left: 20px; } .weather { color: #fff; font-size: 20px; font-weight: 600; opacity: 0.9; } .weatherfooter { display: flex; align-items: center; justify-content: center; margin-top: 5px; opacity: 0.9; } .weatherfooter .weatherdetails { color: white; font-size: 13px; font-weight: 600; padding: 0px 5px; border-radius: 20px; } .w-icon { width: 100%; float: left; } .chart { margin-top: 40px; } .week { margin-top: 30px; display: grid; grid-template-columns: repeat(6, 1fr); text-align: center; color: white; font-size: 13px; font-weight: 600; background: #191919; border-radius: 20px; } .day, .max { opacity: 0.8; } .min { opacity: 0.2; } .max, .min { padding: 3px; } .weekbar { display: grid; transition: 0.6s ease; padding: 20px 0px; } .weekbar:hover { border-radius: 10px; box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.7); } .week-icon { display: block; margin: 0px auto; width: 80%; } .footer { margin-top: 10px; text-align: center; color: white; font-size: 13px; font-weight: 600; opacity: 0.1; }
0.50952
0.112551
.app-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; height: 100vh; z-index: 100; } .app-modal-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; height: 100vh; display: flex; justify-content: center; align-content: center; align-items: center; padding: 0 1em; background-color: rgba(0,0,0,.5); opacity: 0; transition: opacity .2s cubic-bezier(0.165, 0.84, 0.44, 1); } .app-modal-body { position: relative; display: flex; flex-direction: column; justify-content: center; align-content: center; align-items: center; width: 100%; max-width: 250px; background-color: white; border-radius: 2px; overflow: hidden; transform: scale(0); transition: transform .2s cubic-bezier(0.165, 0.84, 0.44, 1); } .app-modal.active > .app-modal-overlay { opacity: 1; } .app-modal.active > .app-modal-overlay > .app-modal-body { transform: scale(1); } .app-modal.leaving > .app-modal-overlay { opacity: 0; } .app-modal.leaving > .app-modal-overlay > .app-modal-body { transform: translateY(-40%); } .app-modal-header { width: 100%; text-align: center; font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 1em; padding: .5em 0; color: white; border-top-left-radius: inherit; border-top-right-radius: inherit; background: linear-gradient(45deg, #9c27b0 20%, #9d6aa5 100%); cursor: move; } .app-modal-content { font-family: 'Roboto', sans-serif; font-size: .8em; font-weight: 400; color: #565656; padding: 2.5em .5em 1em .5em; text-align: center; line-height: 20px; } .app-modal-footer { display: flex; justify-content: space-between; padding: 1em; } .app-modal-footer > button:first-child { margin-right: .5em; } .app-modal-footer > button:last-child { margin-left: .5em; } .app-modal .button { padding: .5em 1em; margin: 0 .5em; border-radius: 5px; color: white; font-family: 'Roboto', sans-serif; cursor: pointer; -webkit-tap-highlight-color: rgba(0,0,0,0); } .button.confirm { background-color: #9c27b0; } .button.cancel { color: #9c27b0; } .button.cancel:active { background-color: #9d6aa544; }
src/IModal.css
.app-modal { position: fixed; top: 0; left: 0; right: 0; bottom: 0; height: 100vh; z-index: 100; } .app-modal-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; height: 100vh; display: flex; justify-content: center; align-content: center; align-items: center; padding: 0 1em; background-color: rgba(0,0,0,.5); opacity: 0; transition: opacity .2s cubic-bezier(0.165, 0.84, 0.44, 1); } .app-modal-body { position: relative; display: flex; flex-direction: column; justify-content: center; align-content: center; align-items: center; width: 100%; max-width: 250px; background-color: white; border-radius: 2px; overflow: hidden; transform: scale(0); transition: transform .2s cubic-bezier(0.165, 0.84, 0.44, 1); } .app-modal.active > .app-modal-overlay { opacity: 1; } .app-modal.active > .app-modal-overlay > .app-modal-body { transform: scale(1); } .app-modal.leaving > .app-modal-overlay { opacity: 0; } .app-modal.leaving > .app-modal-overlay > .app-modal-body { transform: translateY(-40%); } .app-modal-header { width: 100%; text-align: center; font-family: 'Roboto', sans-serif; font-weight: 300; font-size: 1em; padding: .5em 0; color: white; border-top-left-radius: inherit; border-top-right-radius: inherit; background: linear-gradient(45deg, #9c27b0 20%, #9d6aa5 100%); cursor: move; } .app-modal-content { font-family: 'Roboto', sans-serif; font-size: .8em; font-weight: 400; color: #565656; padding: 2.5em .5em 1em .5em; text-align: center; line-height: 20px; } .app-modal-footer { display: flex; justify-content: space-between; padding: 1em; } .app-modal-footer > button:first-child { margin-right: .5em; } .app-modal-footer > button:last-child { margin-left: .5em; } .app-modal .button { padding: .5em 1em; margin: 0 .5em; border-radius: 5px; color: white; font-family: 'Roboto', sans-serif; cursor: pointer; -webkit-tap-highlight-color: rgba(0,0,0,0); } .button.confirm { background-color: #9c27b0; } .button.cancel { color: #9c27b0; } .button.cancel:active { background-color: #9d6aa544; }
0.619932
0.090374
width: 300%; height: 99vh; /* animation: slide 60s linear infinite;*/ } #Building { animation: slide 90s linear infinite; } #people { animation: slide 80s linear infinite; } #sky { animation: slide2 100s linear infinite; } #Sun { transform: translate3d(-30%, 3%, 0); } @keyframes slide { 0% { transform: translate3d(-6%, 0, 0); } 100% { transform: translate3d(-49.6%, 0, 0); } } @keyframes slide2 { 0% { transform: translate3d(-49%, 0, 0); } 100% { transform: translate3d(0%, 0, 0); } } .svgWrapper { overflow: hidden; } .cls-1 { fill: #f15d40; } .cls-2 { fill: #67cad9; } .cls-3 { fill: #fff; } .cls-4 { fill: none; } .cls-5 { fill: #0b2644; } .cls-6 { fill: #026f64; } .cls-7 { fill: #835746; } .cls-8 { fill: #f8b364; } .cls-9 { fill: #442e1d; } .cls-10 { fill: #7f5747; } .cls-11 { fill: #f5dfce; } .cls-12 { fill: #e2715b; } .cls-13 { fill: #f4bc8d; } .cls-14 { fill: #576789; } .cls-15 { fill: #432d1e; } .cls-16 { fill: #b25f43; } .cls-17 { fill: #e0ad82; } .cls-18 { fill: #9f553c; } .cls-19 { fill: #7b9bad; } .cls-20 { fill: #a57a6e; } .cls-21 { fill: #5b6688; } .cls-22 { fill: #b85e3f; } .cls-23 { fill: #cc8b5a; } .cls-24 { fill: #262423; } .cls-25 { fill: #fdf2e9; } .cls-26 { fill: #f0a558; } .cls-27 { fill: #d06847; } .cls-28 { fill: #eebc90; } .cls-29 { fill: #dd9f72; } .cls-30 { fill: #f3dfce; } .cls-31 { fill: #1b3d6e; } .cls-32 { fill: #f8eada; } .cls-33 { fill: #272942; } .cls-34 { fill: #6c402e; } .cls-35 { fill: #1a1d2e; } .cls-36 { fill: #381f16; } .cls-37 { fill: #ded1c4; } .cls-38 { fill: #994e35; } .cls-39 { fill: #b9b9b9; } .cls-40 { fill: #f05a6c; } .cls-41 { fill: #7d2f45; } .cls-42 { fill: #f6a356; } .cls-43 { fill: #c9beb1; } .cls-44 { fill: #515da2; } .cls-45 { fill: #ef7a58; } .cls-46 { fill: #d2ab92; } .cls-47 { fill: #d58f6b; } .cls-48 { fill: #6d3737; } .cls-49 { fill: #d29162; } .cls-50 { fill: #21223b; } .cls-51 { fill: #d89f73; } .cls-52 { fill: #d89766; } .cls-53 { fill: #bf8156; } .cls-54 { fill: #c19c86; } .cls-55 { fill: #e0d4c5; } .cls-56 { fill: #444974; } .overlay-container { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #8e44ad; } .overlay-container h2 { font-size: 48px; font-weight: 600; } .overlay-container p { font-size: 32px; font-weight: 400; } .overlay-container { background: rgba(255, 255, 255, 0.7); color: black; border-radius: 100px; }
client/src/components/layout/Landing.css
width: 300%; height: 99vh; /* animation: slide 60s linear infinite;*/ } #Building { animation: slide 90s linear infinite; } #people { animation: slide 80s linear infinite; } #sky { animation: slide2 100s linear infinite; } #Sun { transform: translate3d(-30%, 3%, 0); } @keyframes slide { 0% { transform: translate3d(-6%, 0, 0); } 100% { transform: translate3d(-49.6%, 0, 0); } } @keyframes slide2 { 0% { transform: translate3d(-49%, 0, 0); } 100% { transform: translate3d(0%, 0, 0); } } .svgWrapper { overflow: hidden; } .cls-1 { fill: #f15d40; } .cls-2 { fill: #67cad9; } .cls-3 { fill: #fff; } .cls-4 { fill: none; } .cls-5 { fill: #0b2644; } .cls-6 { fill: #026f64; } .cls-7 { fill: #835746; } .cls-8 { fill: #f8b364; } .cls-9 { fill: #442e1d; } .cls-10 { fill: #7f5747; } .cls-11 { fill: #f5dfce; } .cls-12 { fill: #e2715b; } .cls-13 { fill: #f4bc8d; } .cls-14 { fill: #576789; } .cls-15 { fill: #432d1e; } .cls-16 { fill: #b25f43; } .cls-17 { fill: #e0ad82; } .cls-18 { fill: #9f553c; } .cls-19 { fill: #7b9bad; } .cls-20 { fill: #a57a6e; } .cls-21 { fill: #5b6688; } .cls-22 { fill: #b85e3f; } .cls-23 { fill: #cc8b5a; } .cls-24 { fill: #262423; } .cls-25 { fill: #fdf2e9; } .cls-26 { fill: #f0a558; } .cls-27 { fill: #d06847; } .cls-28 { fill: #eebc90; } .cls-29 { fill: #dd9f72; } .cls-30 { fill: #f3dfce; } .cls-31 { fill: #1b3d6e; } .cls-32 { fill: #f8eada; } .cls-33 { fill: #272942; } .cls-34 { fill: #6c402e; } .cls-35 { fill: #1a1d2e; } .cls-36 { fill: #381f16; } .cls-37 { fill: #ded1c4; } .cls-38 { fill: #994e35; } .cls-39 { fill: #b9b9b9; } .cls-40 { fill: #f05a6c; } .cls-41 { fill: #7d2f45; } .cls-42 { fill: #f6a356; } .cls-43 { fill: #c9beb1; } .cls-44 { fill: #515da2; } .cls-45 { fill: #ef7a58; } .cls-46 { fill: #d2ab92; } .cls-47 { fill: #d58f6b; } .cls-48 { fill: #6d3737; } .cls-49 { fill: #d29162; } .cls-50 { fill: #21223b; } .cls-51 { fill: #d89f73; } .cls-52 { fill: #d89766; } .cls-53 { fill: #bf8156; } .cls-54 { fill: #c19c86; } .cls-55 { fill: #e0d4c5; } .cls-56 { fill: #444974; } .overlay-container { position: absolute; top: 40%; left: 50%; transform: translate(-50%, -50%); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #8e44ad; } .overlay-container h2 { font-size: 48px; font-weight: 600; } .overlay-container p { font-size: 32px; font-weight: 400; } .overlay-container { background: rgba(255, 255, 255, 0.7); color: black; border-radius: 100px; }
0.592313
0.137012
body { height: 100%; margin: 0; padding: 0; } .main { height: 100%; } .navbar .right li { list-style-type: none; } .h1-title { color : #310e56; text-align: center; font-size: 36px; font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; margin-bottom: -15px; padding-top: 10px; } .espace-admin { text-align: right; margin-right: 28px; margin-top: 5px; } /* ACCUEIL */ .intro-title { color : #310e56; text-align: center; font-size: 60px; font-family: "URW Gothic"; margin-bottom: -15px; padding-top: 20px; font-weight: bolder; } .intro-div { text-align: center; } .intro-phrase { color: grey; text-align: center; font-size: 30px; padding-top: 20px; font-style: italic; } .intro-description { text-align: center; font-size: 24px; font-family: "URW Gothic"; padding-top: 30px; } /* COMPETENCES */ .row { margin-top: 60px; padding-top: 10px; width: 750px; text-align: center; margin-left: 180px; } .competences-div { padding-bottom: 40px; } /* EXPERIENCES */ .experiences-h1 { color : #310e56; text-align: center; font-size: 36px; font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; margin-bottom: 15px; padding-top: 10px; } .experiences-year { color: #3b5998; text-align: center; font-size: 20px; margin-bottom: 2px; } .experiences-location { color: grey; text-align: center; font-style: italic; margin-bottom: 10px; } .experiences-content { text-align: center; font-family: "URW Gothic"; font-size: 14px; } /* FORMATION */ .formation-yearend { color: #3b5998; text-align: center; font-size: 26px; margin-top: 30px; } .formation-title { text-align: center; font-size: 20px; font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; margin-top: -15px; } .formation-content { color: #0d6aad; text-align: center; font-style: italic; margin-top: -15px; margin-bottom: 40px; } .formations { margin-top: 60px; } /* REALISATIONS */ .rea-title { color : #310e56; text-align: center; font-size: 36px; font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; margin-bottom: -15px; padding-top: 10px; } .rea-projets { text-align: center; margin-top: 40px; width: 500px; margin-left: 400px; margin-top: 60px; } .rea-year { font-size: 26px; color: #310e56; } .rea-title { color: grey; text-align: center; font-size: 26px; padding-top: 20px; } .rea-content { text-align: left; font-family: "URW Gothic"; font-size: 18px; } .realisation { padding-bottom: 40px; text-align: center; } /* BLOG */ .article-div { padding-right: 20px; padding-left: 20px; margin-top: 10px;; margin-bottom: 100px; } .article-title { text-align: left; color: #310e56; font-size: 30px; font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } .article-introduction { color: grey; font-style: italic; font-size: 16px; margin-top: 5px; } .article-content { color: black; margin-bottom: 40px; font-size: 16px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; text-align: justify; } /* COMMENTAIRES */ .commentaires-title{ color : #310e56; text-align: left; font-size: 36px; font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; margin-bottom: 15px; padding-top: 10px; } .commentaires-div { margin-top: 50px; } .commentaires-ligne-auteur { margin-bottom: 50px; } .commentaires-liste-titre { font-size: 26px; font-family: monospace; color : #310e56; text-align: left; } .commentaires-form { margin-top: 40px; margin-bottom: 40px; text-align: right; } .bold { font-weight: bold; } .italic { font-style: italic; } .article-title:hover { text-decoration: none; } .divider { margin-top: 40px; } /** CONNEXION FORM **/ .form-custom { text-align: center; background-color: #f5f5f0; width: 400px; margin-left: 500px; margin-top: 50px; padding-top: 40px; border: solid; border-color: #A2A3A4; border-width: thin; border-radius: 15px; } .form-group { padding-bottom: 10px; } .form-titre-connexion { font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; color: #310e56; font-size: 25px; margin-bottom: 40px; } .checkbox { margin-bottom: 40px; } .form-souvenir { margin-bottom: 40px; text-align: right; margin-right: 30px; margin-top: -10px; } .btn-md { margin-top: 20px; margin-right: 5px; }
web/assets/bootstrap/css/style.css
body { height: 100%; margin: 0; padding: 0; } .main { height: 100%; } .navbar .right li { list-style-type: none; } .h1-title { color : #310e56; text-align: center; font-size: 36px; font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; margin-bottom: -15px; padding-top: 10px; } .espace-admin { text-align: right; margin-right: 28px; margin-top: 5px; } /* ACCUEIL */ .intro-title { color : #310e56; text-align: center; font-size: 60px; font-family: "URW Gothic"; margin-bottom: -15px; padding-top: 20px; font-weight: bolder; } .intro-div { text-align: center; } .intro-phrase { color: grey; text-align: center; font-size: 30px; padding-top: 20px; font-style: italic; } .intro-description { text-align: center; font-size: 24px; font-family: "URW Gothic"; padding-top: 30px; } /* COMPETENCES */ .row { margin-top: 60px; padding-top: 10px; width: 750px; text-align: center; margin-left: 180px; } .competences-div { padding-bottom: 40px; } /* EXPERIENCES */ .experiences-h1 { color : #310e56; text-align: center; font-size: 36px; font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; margin-bottom: 15px; padding-top: 10px; } .experiences-year { color: #3b5998; text-align: center; font-size: 20px; margin-bottom: 2px; } .experiences-location { color: grey; text-align: center; font-style: italic; margin-bottom: 10px; } .experiences-content { text-align: center; font-family: "URW Gothic"; font-size: 14px; } /* FORMATION */ .formation-yearend { color: #3b5998; text-align: center; font-size: 26px; margin-top: 30px; } .formation-title { text-align: center; font-size: 20px; font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; margin-top: -15px; } .formation-content { color: #0d6aad; text-align: center; font-style: italic; margin-top: -15px; margin-bottom: 40px; } .formations { margin-top: 60px; } /* REALISATIONS */ .rea-title { color : #310e56; text-align: center; font-size: 36px; font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; margin-bottom: -15px; padding-top: 10px; } .rea-projets { text-align: center; margin-top: 40px; width: 500px; margin-left: 400px; margin-top: 60px; } .rea-year { font-size: 26px; color: #310e56; } .rea-title { color: grey; text-align: center; font-size: 26px; padding-top: 20px; } .rea-content { text-align: left; font-family: "URW Gothic"; font-size: 18px; } .realisation { padding-bottom: 40px; text-align: center; } /* BLOG */ .article-div { padding-right: 20px; padding-left: 20px; margin-top: 10px;; margin-bottom: 100px; } .article-title { text-align: left; color: #310e56; font-size: 30px; font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } .article-introduction { color: grey; font-style: italic; font-size: 16px; margin-top: 5px; } .article-content { color: black; margin-bottom: 40px; font-size: 16px; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; text-align: justify; } /* COMMENTAIRES */ .commentaires-title{ color : #310e56; text-align: left; font-size: 36px; font-family: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; margin-bottom: 15px; padding-top: 10px; } .commentaires-div { margin-top: 50px; } .commentaires-ligne-auteur { margin-bottom: 50px; } .commentaires-liste-titre { font-size: 26px; font-family: monospace; color : #310e56; text-align: left; } .commentaires-form { margin-top: 40px; margin-bottom: 40px; text-align: right; } .bold { font-weight: bold; } .italic { font-style: italic; } .article-title:hover { text-decoration: none; } .divider { margin-top: 40px; } /** CONNEXION FORM **/ .form-custom { text-align: center; background-color: #f5f5f0; width: 400px; margin-left: 500px; margin-top: 50px; padding-top: 40px; border: solid; border-color: #A2A3A4; border-width: thin; border-radius: 15px; } .form-group { padding-bottom: 10px; } .form-titre-connexion { font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; color: #310e56; font-size: 25px; margin-bottom: 40px; } .checkbox { margin-bottom: 40px; } .form-souvenir { margin-bottom: 40px; text-align: right; margin-right: 30px; margin-top: -10px; } .btn-md { margin-top: 20px; margin-right: 5px; }
0.325092
0.080574
@namespace j "library://ns.apache.org/royale/jewel"; @namespace "http://www.w3.org/1999/xhtml"; .jewel.application { background: #e0d6e0; font-family: "Lato", sans-serif; color: #808080; padding: 0px; margin: 0px; } j|Form { gap: 3; } input, select, textarea, button { font-family: inherit; } hr { background-color: #d9d9d9; } .jewel.xsmall { font-size: 0.6em; } .jewel.small { font-size: 0.8em; } .jewel { font-size: 1em; } .jewel.large { font-size: 1.2em; } .jewel.xlarge { font-size: 1.4em; } .jewel.imagebutton { outline: 0; } .jewel.alert { transform: translate(-50%, -60%); margin: 0; padding: 0; min-width: 320px; min-height: 240px; border: 0px solid; background: #f6f3f6; box-shadow: 0px 20px 65px 0px rgba(0, 0, 0, 0.8); border-radius: 3px; opacity: 0; will-change: opacity, transform; } .jewel.alert.open { opacity: 1; transform: translate(-50%, -50%); transition: opacity 0.4s 0ms, transform 0.4s 0ms; } .jewel.alert.open + .backdrop { opacity: 1; transition: opacity 0.4s 0ms; } .jewel.alert .jewel.titlebar { padding: 20px 20px 0px 20px; height: 50px; color: #C92CC6; } .jewel.alert .jewel.titlebar .jewel.label { font-size: 1.45em !important; font-weight: bold; font-color: #C92CC6; } .jewel.alert .content { padding: 20px; top: 50px; bottom: 84px; } .jewel.alert .content .jewel.label { white-space: normal; color: #808080; font-size: 1.1em; font-weight: 400; } .jewel.alert .jewel.controlbar { background: white; border: 0px solid; box-shadow: none; border-radius: 0px 0px 3px 3px; padding: 20px; position: absolute; bottom: 0; width: 100%; height: 84px; } .jewel.alert + .backdrop { opacity: 0; will-change: opacity; background-color: rgba(0, 0, 0, 0.5); } .jewel.badge { border-radius: 500em; color: #808080; font-size: 0.85em !important; line-height: 1em; } .jewel.badge.primary { background: #C92CC6; color: #FFFFFF; } .jewel.button { margin: 0; padding: 0.679em 1.12em; background: #d9d9d9; border: 1px solid #c5c5c5; box-shadow: none; border-radius: 0.25rem; color: #808080; text-shadow: none; font-weight: bold; text-transform: uppercase; } .jewel.button:hover, .jewel.button:hover:focus { background: #cccccc; border: 1px solid #c5c5c5; color: #808080; } .jewel.button:active, .jewel.button:active:focus { background: #b3b3b3; border: 1px solid #c5c5c5; box-shadow: none; color: #808080; } .jewel.button:focus { background: #e6e6e6; border: 1px solid #c5c5c5; box-shadow: none; color: #808080; } .jewel.button[disabled] { background: #f3f3f3 !important; border: 1px solid #d9d9d9 !important; box-shadow: none !important; color: silver; text-shadow: unset; } .jewel.button[disabled]:hover, .jewel.button[disabled]:hover:focus { color: silver; } .jewel.button[disabled] { font-weight: 400; } .jewel.button.icon { padding: 0.429em 0.87em; } .jewel.button.icon span { margin-left: 0px; margin-right: 0px; } .jewel.button.left-space span { margin-left: 8px; margin-right: 0px; } .jewel.button.right-space span { margin-left: 0px; margin-right: 8px; } .jewel.button.primary { background: #C92CC6; border: 1px solid #a825a5; box-shadow: none; border-radius: 0.25rem; color: #FFFFFF; text-shadow: none; } .jewel.button.primary:hover, .jewel.button.primary:hover:focus { background: #b427b1; border: 1px solid #a825a5; color: #FFFFFF; } .jewel.button.primary:active, .jewel.button.primary:active:focus { background: #8a1e88; border: 1px solid #a825a5; box-shadow: none; color: #FFFFFF; } .jewel.button.primary:focus { background: #d43bd1; border: 1px solid #a825a5; box-shadow: none; color: #FFFFFF; } .jewel.button.primary[disabled] { background: #f3f3f3 !important; border: 1px solid #d9d9d9 !important; box-shadow: none !important; color: silver; text-shadow: unset; } .jewel.button.primary[disabled]:hover, .jewel.button.primary[disabled]:hover:focus { color: silver; } .jewel.button.outlined { background: rgba(179, 179, 179, 0.05); border: 1px solid #999999; box-shadow: none; color: #8d8d8d; text-shadow: none; } .jewel.button.outlined:hover, .jewel.button.outlined:hover:focus { background: rgba(179, 179, 179, 0.15); border: 1px solid #8d8d8d; color: #737373; } .jewel.button.outlined:active, .jewel.button.outlined:active:focus { background: rgba(179, 179, 179, 0.25); border: 1px solid #858585; box-shadow: none; color: #737373; } .jewel.button.outlined:focus { border: 1px solid gray; box-shadow: none; color: #737373; } .jewel.button.outlined[disabled] { background: rgba(243, 243, 243, 0.1) !important; border: 1px solid #d9d9d9 !important; color: silver; text-shadow: unset; } .jewel.button.outlined[disabled]:hover, .jewel.button.outlined[disabled]:hover:focus { color: silver; } .jewel.button.primary.outlined { background: rgba(201, 44, 198, 0.05); border: 1px solid #9f239d; box-shadow: none; color: #8a1e88; text-shadow: none; } .jewel.button.primary.outlined:hover, .jewel.button.primary.outlined:hover:focus { background: rgba(201, 44, 198, 0.15); border: 1px solid #8a1e88; color: #60155f; } .jewel.button.primary.outlined:active, .jewel.button.primary.outlined:active:focus { background: rgba(201, 44, 198, 0.25); border: 1px solid #7e1c7c; box-shadow: none; color: #60155f; } .jewel.button.primary.outlined:focus { border: 1px solid #751a74; box-shadow: none; color: #60155f; } .jewel.button.primary.outlined[disabled] { background: rgba(243, 243, 243, 0.1) !important; border: 1px solid #d9d9d9 !important; color: silver; text-shadow: unset; } .jewel.button.primary.outlined[disabled]:hover, .jewel.button.primary.outlined[disabled]:hover:focus { color: silver; } .jewel.button.unboxed { background: rgba(179, 179, 179, 0); border: 1px solid transparent; box-shadow: none; color: #8d8d8d; text-shadow: none; } .jewel.button.unboxed:hover, .jewel.button.unboxed:hover:focus { background: rgba(179, 179, 179, 0.15); border: 1px solid transparent; color: #737373; } .jewel.button.unboxed:active, .jewel.button.unboxed:active:focus { background: rgba(179, 179, 179, 0.25); border: 1px solid transparent; box-shadow: none; color: #737373; } .jewel.button.unboxed:focus { background: rgba(179, 179, 179, 0.15); border: 1px solid transparent; box-shadow: none; color: #737373; } .jewel.button.unboxed[disabled] { background: rgba(243, 243, 243, 0) !important; border: 1px solid transparent !important; color: silver; text-shadow: unset; } .jewel.button.unboxed[disabled]:hover, .jewel.button.unboxed[disabled]:hover:focus { color: silver; } .jewel.button.primary.unboxed { background: rgba(201, 44, 198, 0); border: 1px solid transparent; box-shadow: none; color: #8a1e88; text-shadow: none; } .jewel.button.primary.unboxed:hover, .jewel.button.primary.unboxed:hover:focus { background: rgba(201, 44, 198, 0.15); border: 1px solid transparent; color: #60155f; } .jewel.button.primary.unboxed:active, .jewel.button.primary.unboxed:active:focus { background: rgba(201, 44, 198, 0.25); border: 1px solid transparent; box-shadow: none; color: #60155f; } .jewel.button.primary.unboxed:focus { background: rgba(201, 44, 198, 0.15); border: 1px solid transparent; box-shadow: none; color: #60155f; } .jewel.button.primary.unboxed[disabled] { background: rgba(243, 243, 243, 0) !important; border: 1px solid transparent !important; color: silver; text-shadow: unset; } .jewel.button.primary.unboxed[disabled]:hover, .jewel.button.primary.unboxed[disabled]:hover:focus { color: silver; } .jewel.card { font-size: 1em; font-weight: 400; background: #f6f3f6; border: 1px solid transparent; border-radius: 0.25rem; } .jewel.card.simple { padding: 20px; } .jewel.card .card-header { border-bottom: 1px solid transparent; padding: 12px 20px; } .jewel.card .card-title { font-size: 1.5em; margin: 0.408rem 0rem; letter-spacing: 0.0125em; } .jewel.card .card-primary-content { padding: 20px; } .jewel.card .card-actions { border-top: 1px solid transparent; padding: 18px 20px; } j|Card { gap: 3; } j|CardHeader { gap: 3; } j|CardPrimaryContent { gap: 3; } j|CardActions { gap: 3; } .jewel.checkbox input + span::before { background: white; border: 1px solid #d9d9d9; border-radius: 3px; } .jewel.checkbox input + span::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='22' height='22' fill-opacity='0'/%3E%3Cpolygon fill='%23C92CC6' points='3.50018311 12.4854126 8.48547363 17.4989624 18.4641113 7.47589111 15.5010376 4.51739502 8.48547363 11.5650024 6.52087402 9.47265625'/%3E%3C/svg%3E") no-repeat center center; border: 1px solid transparent; border-radius: 3px; transition: all 0.3s ease; transform: scale(0); } .jewel.checkbox input:checked + span::after, .jewel.checkbox input:checked:active + span::after { transform: scale(1); } .jewel.checkbox input:focus + span::before, .jewel.checkbox input:checked:focus + span::before, .jewel.checkbox input:checked:active:focus + span::before { background: #e68ee5; border: 1px solid #C92CC6; border-radius: 3px; } .jewel.checkbox input[disabled] + span::before { background: #f3f3f3; border: 1px solid #d9d9d9; border-radius: 3px; } .jewel.checkbox input[disabled] + span { color: silver; } .jewel.checkbox input[disabled] + span::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='22' height='22' fill-opacity='0'/%3E%3Cpolygon fill='%23cccccc' points='3.50018311 12.4854126 8.48547363 17.4989624 18.4641113 7.47589111 15.5010376 4.51739502 8.48547363 11.5650024 6.52087402 9.47265625'/%3E%3C/svg%3E") no-repeat center center; } .jewel.checkbox span { padding-left: 8px; } .jewel.combobox .jewel.textinput input { border-radius: 0.25rem 0px 0px 0.25rem; } .jewel.combobox .jewel.button { color: transparent; border-bottom-left-radius: 0px; border-top-left-radius: 0px; border-left: 0px; } .jewel.combobox .jewel.button::before { line-height: 22px; } .jewel.combobox .jewel.button::after { background-size: 66%; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23C92CC6' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; width: 14px; height: 22px; left: calc(50% - 8px); top: calc(50% - 11px); } .jewel.combobox .jewel.button[disabled] { border-left: 0px !important; } .jewel.combobox .jewel.button[disabled]::after { background-size: 66%; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23cccccc' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.datagrid { background: white; border: 1px solid #d9d9d9; box-shadow: none; } .jewel.datagrid .jewel.buttonbar.header { background: #d9d9d9; border: 0 none; box-shadow: none; } .jewel.datagrid .jewel.buttonbar.header .jewel.button.first { border-bottom-left-radius: 0; } .jewel.datagrid .jewel.buttonbar.header .jewel.button.last { border-bottom-right-radius: 0; } .jewel.datagrid .listarea { border-top-width: 1px; border-left-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-bottom-left-radius: 0.25rem; border-bottom-right-radius: 0.25rem; border-style: solid; border-color: #d9d9d9; } .jewel.datagrid .listarea:focus { border: 1px solid #C92CC6; } .jewel.datagrid .jewel.list:focus { border-color: inherit; } .jewel.datagrid .jewel.list.column { border-radius: 0px; border-bottom-width: 0px; box-shadow: none; } .jewel.datagrid .jewel.list.column.first { border-bottom-left-radius: 0.25rem; } .jewel.datagrid .jewel.list.column.last { border-bottom-right-radius: 0.25rem; } .jewel.datagrid .jewel.list.column .jewel.item.datagrid { border-top: none; border-left: none; border-right: none; border-bottom: 1px solid #ededed; border-right: 0; border-radius: 0; } .jewel.datagrid .jewel.list.column .jewel.item.datagrid.primary.hovered { background: #da58d8; } .jewel.datagrid .jewel.list.column .jewel.item.datagrid.primary.selected, .jewel.datagrid .jewel.list.column .jewel.item.datagrid.primary.selectable:active { background: #d643d3; } .jewel.datechooser .jewel.table { background: white; border: 1px solid #d9d9d9; border-radius: 0.25rem; box-shadow: none; } .jewel.datechooser .jewel.table .jewel.button { background: transparent; border: none; box-shadow: none; } .jewel.datechooser .jewel.table .jewel.tableheadercell { padding: 12px 0px; background: white; border-left: 0px; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow { border-bottom: 1px solid #d9d9d9; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .previousButton, .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .nextButton { border-radius: 50%; color: transparent; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .viewSelector:hover, .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .previousButton:hover, .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .nextButton:hover { background: #f3f3f3; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .viewSelector:active, .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .previousButton:active, .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .nextButton:active { background: #e6e6e6; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .viewSelector::after { width: 14px; height: 8px; padding-right: 8px; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23C92CC6' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); background-position: right 0 center; background-repeat: no-repeat; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .previousButton::after, .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .nextButton::after { width: 14px; height: 14px; top: calc(50% - 7px); } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .previousButton::after { left: calc(50% - 9px); background: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 12' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(-7.000000, -5.000000)'%3E%3Crect x='0' y='0' width='22' height='22'%3E%3C/rect%3E%3Cpath d='M14.9911518,6.4116803 C14.9876664,5.88503401 14.7746504,5.53560917 14.5762939,5.35284424 C14.3779375,5.17007931 14.0808684,5.04951371 13.4608967,5.00170898 L7.01066011,11.0034834 L13.4822102,17.0014648 C14.1196233,16.9113382 14.3962441,16.8099967 14.5762939,16.6435547 C14.7563438,16.4771126 14.9881385,16.1084637 15.0074566,15.5914935 L10.0769967,11.0034834 L14.9911518,6.4116803 Z' fill='%23C92CC6' fill-rule='nonzero'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .nextButton::after { left: calc(50% - 5px); background: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 12' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(-7.000000, -5.000000)'%3E%3Crect x='0' y='0' width='22' height='22'%3E%3C/rect%3E%3Cpath d='M14.9911518,6.4116803 C14.9876664,5.88503401 14.7746504,5.53560917 14.5762939,5.35284424 C14.3779375,5.17007931 14.0808684,5.04951371 13.4608967,5.00170898 L7.01066011,11.0034834 L13.4822102,17.0014648 C14.1196233,16.9113382 14.3962441,16.8099967 14.5762939,16.6435547 C14.7563438,16.4771126 14.9881385,16.1084637 15.0074566,15.5914935 L10.0769967,11.0034834 L14.9911518,6.4116803 Z' fill='%23C92CC6' fill-rule='nonzero' transform='translate(11.009058, 11.001587) scale(-1, 1) translate(-11.009058, -11.001587) '%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.datechooser .jewel.table .jewel.tablecell { border-top: 0px; border-left: 0px; padding: 4px; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow { padding: 4px; } .jewel.datechooser[disabled] { pointer-events: none; } .jewel.datechooser[disabled] .jewel.table { color: silver; text-shadow: unset; background: #f3f3f3; border: 0px solid; } .jewel.datechooser[disabled] .jewel.table .jewel.button { color: silver; text-shadow: unset; font-weight: normal; } .jewel.datechooser[disabled] .jewel.table .jewel.tableheadercell { background: none; color: silver; text-shadow: unset; } .jewel.datechooser[disabled] .jewel.table .jewel.tableheadercell.buttonsRow .viewSelector::after { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23cccccc' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } .jewel.datechooser[disabled] .jewel.table .jewel.tableheadercell.buttonsRow .previousButton::after, .jewel.datechooser[disabled] .jewel.table .jewel.tableheadercell.buttonsRow .nextButton::after { background-size: 40%; } .jewel.datechooser[disabled] .jewel.table .jewel.tableheadercell.buttonsRow .previousButton::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 12' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(-7.000000, -5.000000)'%3E%3Crect x='0' y='0' width='22' height='22'%3E%3C/rect%3E%3Cpath d='M14.9911518,6.4116803 C14.9876664,5.88503401 14.7746504,5.53560917 14.5762939,5.35284424 C14.3779375,5.17007931 14.0808684,5.04951371 13.4608967,5.00170898 L7.01066011,11.0034834 L13.4822102,17.0014648 C14.1196233,16.9113382 14.3962441,16.8099967 14.5762939,16.6435547 C14.7563438,16.4771126 14.9881385,16.1084637 15.0074566,15.5914935 L10.0769967,11.0034834 L14.9911518,6.4116803 Z' fill='%23cccccc' fill-rule='nonzero'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.datechooser[disabled] .jewel.table .jewel.tableheadercell.buttonsRow .nextButton::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 12' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(-7.000000, -5.000000)'%3E%3Crect x='0' y='0' width='22' height='22'%3E%3C/rect%3E%3Cpath d='M14.9911518,6.4116803 C14.9876664,5.88503401 14.7746504,5.53560917 14.5762939,5.35284424 C14.3779375,5.17007931 14.0808684,5.04951371 13.4608967,5.00170898 L7.01066011,11.0034834 L13.4822102,17.0014648 C14.1196233,16.9113382 14.3962441,16.8099967 14.5762939,16.6435547 C14.7563438,16.4771126 14.9881385,16.1084637 15.0074566,15.5914935 L10.0769967,11.0034834 L14.9911518,6.4116803 Z' fill='%23cccccc' fill-rule='nonzero' transform='translate(11.009058, 11.001587) scale(-1, 1) translate(-11.009058, -11.001587) '%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.datechooser[disabled] .jewel.tableitem { height: 38px; } .jewel.datechooser[disabled] .jewel.tableitem.selected, .jewel.datechooser[disabled] .jewel.tableitem.selectable:active { background: #cccccc; } .calendar.item { padding: 10px; font-size: 1em; } .calendar.item.dayName { font-weight: 600; } .calendar.item.date { color: grey; } .jewel.datefield .jewel.textinput input { border-radius: 0.25rem 0px 0px 0.25rem; } .jewel.datefield .jewel.button { color: transparent; border-bottom-left-radius: 0px; border-top-left-radius: 0px; border-left: 0px; } .jewel.datefield .jewel.button::after { background-size: 66%; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Crect x='0' y='0' width='22' height='22'%3E%3C/rect%3E%3Cpath d='M18.3333333,2.75 L17.4166667,2.75 L17.4166667,0.916666667 L15.5833333,0.916666667 L15.5833333,2.75 L6.41666667,2.75 L6.41666667,0.916666667 L4.58333333,0.916666667 L4.58333333,2.75 L3.66666667,2.75 C2.65833333,2.75 1.83333333,3.575 1.83333333,4.58333333 L1.83333333,19.25 C1.83333333,20.2583333 2.65833333,21.0833333 3.66666667,21.0833333 L18.3333333,21.0833333 C19.3416667,21.0833333 20.1666667,20.2583333 20.1666667,19.25 L20.1666667,4.58333333 C20.1666667,3.575 19.3416667,2.75 18.3333333,2.75 Z M18.3333333,19.25 L3.66666667,19.25 L3.66666667,7.33333333 L18.3333333,7.33333333 L18.3333333,19.25 Z' fill='%23C92CC6' fill-rule='nonzero'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.datefield .jewel.button[disabled] { border-left: 0px !important; } .jewel.datefield .jewel.button[disabled]::after { background-size: 66%; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Crect x='0' y='0' width='22' height='22'%3E%3C/rect%3E%3Cpath d='M18.3333333,2.75 L17.4166667,2.75 L17.4166667,0.916666667 L15.5833333,0.916666667 L15.5833333,2.75 L6.41666667,2.75 L6.41666667,0.916666667 L4.58333333,0.916666667 L4.58333333,2.75 L3.66666667,2.75 C2.65833333,2.75 1.83333333,3.575 1.83333333,4.58333333 L1.83333333,19.25 C1.83333333,20.2583333 2.65833333,21.0833333 3.66666667,21.0833333 L18.3333333,21.0833333 C19.3416667,21.0833333 20.1666667,20.2583333 20.1666667,19.25 L20.1666667,4.58333333 C20.1666667,3.575 19.3416667,2.75 18.3333333,2.75 Z M18.3333333,19.25 L3.66666667,19.25 L3.66666667,7.33333333 L18.3333333,7.33333333 L18.3333333,19.25 Z' fill='%23cccccc' fill-rule='nonzero'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.divider { border-bottom-color: #d9d9d9; border-bottom-width: 1px; border-bottom-style: solid; } .jewel.drawer.float { color: rgba(0, 0, 0, 0.8); } .jewel.drawer.float::before { background-color: rgba(0, 0, 0, 0.65); will-change: opacity; transition: opacity 0.4s 0ms; } .jewel.drawer.float .drawermain { box-shadow: 0px 0px 6px 1px rgba(1, 1, 1, 0.7); transform: translateX(-104%); will-change: transform; width: calc(100% - 54px); max-width: 280px; background-color: white; transition: transform 250ms 0ms; } .jewel.drawer.float.open .drawermain { transform: none; transition: transform 300ms 0ms; } .jewel.drawer.fixed .drawermain { width: 240px; transform: translateX(-104%); will-change: transform; transition: transform 250ms 0ms; background-color: white; border-left: 0; border-right: 1px solid #d9d9d9; } .jewel.drawer.fixed.open { width: auto; } .jewel.drawer.fixed.open .drawermain { transition: transform 300ms 0ms; } .jewel.drawerheader { background: #C92CC6; border: 1px solid #a825a5; color: #FFFFFF; padding: 16px; } .jewel.drawerheader div { padding: 16px; } .jewel.drawerfooter { background: #333333; border: 0px solid; color: #FFFFFF; text-shadow: none; } .jewel.drawerfooter .jewel.barsection { padding: 8px 12px; } .jewel.drawerfooter .jewel.barsection button { background: transparent; box-shadow: none; border: none; padding: 12px; fill: #FFFFFF; color: inherit; text-shadow: none; } .jewel.drawerfooter .jewel.barsection button:hover, .jewel.drawerfooter .jewel.barsection button:hover:focus, .jewel.drawerfooter .jewel.barsection button:active, .jewel.drawerfooter .jewel.barsection button:active:focus, .jewel.drawerfooter .jewel.barsection button:focus { background: transparent; box-shadow: none; border: none; } .jewel.drawerfooter .jewel.barsection button[disabled] { background: transparent; box-shadow: none; border: none; } .jewel.dropdownlist { background-color: white; border: 1px solid #d1d1d1; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23C92CC6' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); background-size: 1.08em; background-position: right 0.7em center; background-repeat: no-repeat; border-radius: 0.25rem; } .jewel.dropdownlist[disabled] { background-color: #f3f3f3; border: 1px solid #d9d9d9; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23cccccc' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); box-shadow: none; color: silver; } .jewel.dropdownlist[disabled]::placeholder, .jewel.dropdownlist[disabled]:-ms-input-placeholder { color: silver; } .jewel.dropdownlist[disabled] + i { color: silver; } .jewel.dropdownlist:focus { border: 1px solid #C92CC6; } .jewel.footerbar .footerBarAppHeader { background: #333333; border: 0px solid; color: #FFFFFF; text-shadow: none; } .jewel.footerbar .footerBarAppHeader.has-drawer { width: calc(100% - 240px); } .jewel.footerbar .jewel.barsection { padding: 8px 12px; } .jewel.footerbar .jewel.barsection button { background: transparent; box-shadow: none; border: none; padding: 12px; fill: #FFFFFF; color: inherit; text-shadow: none; } .jewel.footerbar .jewel.barsection button:hover, .jewel.footerbar .jewel.barsection button:hover:focus, .jewel.footerbar .jewel.barsection button:active, .jewel.footerbar .jewel.barsection button:active:focus, .jewel.footerbar .jewel.barsection button:focus { background: transparent; box-shadow: none; border: none; } .jewel.footerbar .jewel.barsection button[disabled] { background: transparent; box-shadow: none; border: none; } .jewel.formheading { color: #9f239d; font-size: 1.4em !important; } .jewel.formheading .jewel.label.spacerLabel { width: 115px; } .jewel.formheading .jewel.label.requiredSpacerLabel { width: 10px; } j|FormHeading { gap: 2; } .jewel.formitem .jewel.label.formlabel { width: 115px; } .jewel.formitem .jewel.label.required { color: #EC1C24; font-size: 1.6em !important; width: 10px; } j|FormItem { gap: 2; itemsVerticalAlign: itemsCentered; } .fonticon.dark { color: #676767; } .fonticon.dark.inactive { color: rgba(128, 128, 128, 0.3); } .fonticon.light { color: white; } .fonticon.light.inactive { color: rgba(255, 255, 255, 0.5); } .jewel.item { background: transparent; } .jewel.item.hovered { color: #FFFFFF; } .jewel.item.selected, .jewel.item.selectable:active { color: #FFFFFF; } .jewel.item.primary.hovered { background: #C92CC6; } .jewel.item.primary.selected, .jewel.item.primary.selectable:active { background: #b427b1; } .jewel.label { line-height: 1em; } .jewel.label.multiline { line-height: normal; max-width: 100%; } .jewel.list { color: #808080; background: white; border: 1px solid #d9d9d9; box-shadow: none; border-radius: 3px; } .jewel.list:focus { border: 1px solid #C92CC6; } .jewel.list[disabled] { pointer-events: none; color: silver; text-shadow: unset; font-weight: normal; background: #f3f3f3; border: 0px solid; box-shadow: none; } .jewel.list[disabled] .jewel.item.selected, .jewel.list[disabled] .jewel.item.selectable:active { background: #cccccc !important; } .jewel.loader { border: 16px solid #f3f3f3; border-radius: 50%; } .jewel.loader.segment { border-top-color: silver; } .jewel.loader.primary.segment { border-top-color: #C92CC6; } .jewel.navigation { background-color: #ffffff; } .jewel.navigation .layout.vertical { align-items: stretch; } .jewel.navigationlink { margin: 0; padding: 0 16px; font-size: 1em; font-weight: 500; color: rgba(0, 0, 0, 0.6); } .jewel.navigationlink.hovered { background: #f3f3f3 !important; } .jewel.navigationlink .hint.fonticon { margin-left: auto; } .jewel.navigationgroup.no-submenu.hovered { background: #f3f3f3 !important; } .navigation-section-group { transition: height 0.5s; overflow: hidden !important; } .navigation-section-group .navigationlink { padding-left: 34px; } .jewel.numericstepper { height: 38px; } .jewel.numericstepper .jewel.textinput { width: calc(100% - 33px); } .jewel.numericstepper .jewel.textinput input { border-radius: 0.25rem 0px 0px 0.25rem; } .jewel.numericstepper .jewel.button { border-radius: 0 0.25rem 0.25rem 0; border-left: 0px; width: 12%; width: 33px; height: 50%; } .jewel.numericstepper .jewel.button, .jewel.numericstepper .jewel.button:hover, .jewel.numericstepper .jewel.button:hover:focus, .jewel.numericstepper .jewel.button:active, .jewel.numericstepper .jewel.button:active:focus { color: transparent; } .jewel.numericstepper .jewel.button.up { border-bottom-right-radius: 0px; } .jewel.numericstepper .jewel.button.up::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23C92CC6' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; width: 12px; height: 7px; } .jewel.numericstepper .jewel.button.down { border-top-right-radius: 0px; border-top-style: groove; } .jewel.numericstepper .jewel.button.down::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23C92CC6' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; width: 12px; height: 7px; } .jewel.numericstepper .jewel.button.up, .jewel.numericstepper .jewel.button.down { padding: 8.5px 16px; } @media (max-width: 992px) { .jewel.numericstepper .jewel.textinput input { border-radius: 0; } .jewel.numericstepper .jewel.button.up { border: 1px solid #b3b3b3; border-radius: 0 0.25rem 0.25rem 0; margin-left: -1px; height: 100%; } .jewel.numericstepper .jewel.button.down { border: 1px solid #b3b3b3; border-radius: 0.25rem 0 0 0.25rem; border-top-style: solid; margin-right: -1px; height: 100%; } } .popup-content::before { background-color: rgba(0, 0, 0, 0.65); will-change: opacity; transition: opacity 0.4s 0ms; } .popup-content .jewel.popupcontent { border: 0px; border-radius: 10px; padding: 20px; background: white; box-shadow: 0px 0px 6px 1px rgba(1, 1, 1, 0.7) !important; } @media (min-width: 992px) { .popup-content .jewel.popupcontent { box-shadow: none !important; } } .jewel.radiobutton input + span::before { background: white; border: 1px solid #d9d9d9; border-radius: 50%; } .jewel.radiobutton input + span::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='22' height='22' fill-opacity='0'/%3E%3Ccircle fill='%23C92CC6' cx='11' cy='11' r='6'/%3E%3C/svg%3E") no-repeat center center; border: 1px solid transparent; border-radius: 50%; transition: all 0.3s ease; transform: scale(0); } .jewel.radiobutton input:checked + span::after, .jewel.radiobutton input:checked:active + span::after { transform: scale(1); } .jewel.radiobutton input:focus + span::before, .jewel.radiobutton input:checked:focus + span::before, .jewel.radiobutton input:checked:active:focus + span::before { background: #e68ee5; border: 1px solid #C92CC6; border-radius: 50%; } .jewel.radiobutton input[disabled] + span::before { background: #f3f3f3; border: 1px solid #d9d9d9; border-radius: 50%; } .jewel.radiobutton input[disabled] + span { color: silver; } .jewel.radiobutton input[disabled] + span::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='22' height='22' fill-opacity='0'/%3E%3Ccircle fill='%23cccccc' cx='11' cy='11' r='6'/%3E%3C/svg%3E") no-repeat center center; } .jewel.radiobutton span { padding-left: 8px; font-size: 16px; } .jewel.slider input::-ms-fill-lower { background: #C92CC6; border: 1px solid #ac26a9; box-shadow: none; border-radius: 3px; } .jewel.slider input::-ms-fill-upper { background: white; border: 1px solid white; border-radius: 3px; } .jewel.slider input::-webkit-slider-thumb { width: 18px; height: 18px; background: #C92CC6; border: 1px solid #a825a5; box-shadow: none; border-radius: 50%; } .jewel.slider input::-moz-range-thumb { width: 18px; height: 18px; background: #C92CC6; border: 1px solid #a825a5; box-shadow: none; border-radius: 50%; } .jewel.slider input::-ms-thumb { width: 18px; height: 18px; background: #C92CC6; border: 1px solid #a825a5; box-shadow: none; border-radius: 50%; } .jewel.slider input:active::-webkit-slider-thumb, .jewel.slider input:active::-moz-range-thumb { transform: scale(1.4); } .jewel.slider input:active::-ms-thumb { transform: scale(0.8); } .jewel.slider input[disabled]::-ms-fill-lower { background: #e6e6e6; border: 1px solid silver; box-shadow: none; } .jewel.slider input[disabled]::-ms-fill-upper { background: #f3f3f3; border: 1px solid #d9d9d9; box-shadow: none; } .jewel.slider input[disabled]::-webkit-slider-thumb, .jewel.slider input[disabled]::-moz-range-thumb, .jewel.slider input[disabled]::-ms-thumb { background: #f3f3f3; border: 1px solid silver; box-shadow: none; } .jewel.slider input[disabled]:active::-webkit-slider-thumb, .jewel.slider input[disabled]:active::-moz-range-thumb, .jewel.slider input[disabled]:active::-ms-thumb { transform: scale(1); } .jewel.slider input[disabled] + .slider-track-container > .slider-track-fill { background: #e6e6e6; border: 1px solid silver; box-shadow: none; } .jewel.slider input[disabled] + .slider-track-container > .slider-track { background: #f3f3f3; border: 1px solid #d9d9d9; box-shadow: none; } .slider-track-container { top: 50%; } .slider-track-fill { background: #C92CC6; border: 1px solid #ac26a9; box-shadow: none; border-radius: 3px; } .slider-track { background: white; border: 1px solid #d9d9d9; border-radius: 3px; } .jewel.snackbar { will-change: transform; transform: translate(0, 100%); transition: transform 0.4s 0ms; } .jewel.snackbar.open { transform: translate(0); transition: transform 0.4s 0ms; } .jewel.snackbar.primary .jewel.snackbar-content { background: #C92CC6; border: 0px solid; box-shadow: none; } .jewel.snackbar.primary .jewel.snackbar-message { color: #FFFFFF; } .jewel.snackbar.primary .jewel.snackbar-action { color: #E2D70B; } .jewel.snackbar.primary .jewel.snackbar-action:hover { background: #b427b1; border: none; } .jewel.snackbar-content { background: #2C3E50; border-radius: 0.25rem 0.25rem 0px 0px; } .jewel.snackbar-message { color: #FFFFFF; } .jewel.snackbar-action { color: #FFD740; } .jewel.snackbar-action:hover { background-color: #3C4E60; } @media (max-width: 992px) { .jewel.snackbar-content { border-radius: 0px; } } .jewel.tabbar.sameWidths .content > * { flex: 1 0 0%; } .jewel.tabbarbutton { font-size: 1em; font-weight: 500; border: none; background: transparent; outline: none; color: rgba(0, 0, 0, 0.6); text-transform: uppercase; text-decoration: none; letter-spacing: 0.1em; font-weight: 600; transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; } .jewel.tabbarbutton > .content { padding-top: 12px; padding-bottom: 12px; } .jewel.tabbarbutton .indicator > .indicatorContent { height: 2px; background-color: #C92CC6; } .jewel.tabbarbutton.hovered { background: rgba(201, 44, 198, 0.2); } .jewel.tabbarbutton.selected, .jewel.tabbarbutton.selectable:active { color: #8a1e88; background: rgba(201, 44, 198, 0.4); } .jewel.simpletable { background: white; border: 1px solid #d9d9d9; box-shadow: none; border-radius: 0.25rem; } .jewel.simpletable .jewel.tableheadercell:first-of-type { border-left: 0px; } .jewel.simpletable .jewel.tableheadercell { padding: 12px; background: #f3f3f3; box-shadow: none; font-weight: 700; line-height: normal !important; font-size: 1em; color: #808080; border-left: 1px solid #d9d9d9; } .jewel.simpletable .jewel.tablecell:first-of-type { border-left: 0px; } .jewel.simpletable .jewel.tablecell { border-top: 1px solid #d9d9d9; border-left: 1px solid #d9d9d9; } .jewel.simpletable .jewel.tablecell > * { padding: 12px; } .jewel.simpletable .jewel.tfoot .jewel.tablecell { border-left: 0px; background: #f3f3f3; box-shadow: none; } .jewel.table { background: white; border: 1px solid #d9d9d9; box-shadow: none; border-radius: 0.25rem; } .jewel.table .jewel.tableheadercell:first-of-type { border-left: 0px; } .jewel.table .jewel.tableheadercell { padding: 12px; background: #f3f3f3; box-shadow: none; font-weight: 700; line-height: normal !important; font-size: 1em; color: #808080; border-left: 1px solid #d9d9d9; border-bottom: 1px solid #d9d9d9; } .jewel.table .jewel.tablerow:first-child .jewel.tablecell { border-top: 0px solid transparent; } .jewel.table .jewel.tablecell:first-of-type { border-left: 0px; } .jewel.table .jewel.tablecell { border-top: 1px solid #d9d9d9; border-left: 1px solid #d9d9d9; } .jewel.table .jewel.tfoot .jewel.tablecell { border-left: 0px; background: #f3f3f3; box-shadow: none; } .jewel.tableitem { height: 100%; } .jewel.tableitem.hovered { color: #FFFFFF; background: #C92CC6; } .jewel.tableitem.selected, .jewel.tableitem.selectable:active { color: #FFFFFF; background: #b427b1; } .jewel.tableitem.calendar { border-radius: 4px; } .jewel.tableitem.calendar.selected { font-weight: bold; } a:link { color: #C92CC6; } a:active { color: #8a1e88; } .primary-lightest { color: #f4cdf3; } .primary-light { color: #e279e0; } .primary-normal { color: #C92CC6; } .primary-dark { color: #751a74; } .primary-darkest { color: #220721; } .weight-lightest { font-weight: 100; } .weight-light { font-weight: 300; } .weight-regular { font-weight: 400; } .weight-bold { font-weight: 600; } .weight-bolder { font-weight: 800; } h1 { font-size: 2em; margin: 0.8rem 0rem; } h2 { font-size: 2em; margin: 0.58rem 0rem; } h3 { font-size: 1.5em; margin: 0.408rem 0rem; } h4 { font-size: 1.25em; margin: 0.35rem 0rem; } h5 { font-size: 1em; margin: 0.2rem 0rem; } span { font-size: 1em; } div { font-size: 14px; } @media (min-width: 992px) and (max-width: 1200px) { .jewel { font-size: 100%; } h1 { font-size: 2em; } h2 { font-size: 2em; } h3 { font-size: 1.5em; } h4 { font-size: 1.25em; } h5 { font-size: 1em; } } @media (min-width: 768px) and (max-width: 992px) { .jewel { font-size: 99%; } h1 { font-size: 1.9em; } h2 { font-size: 1.9em; } h3 { font-size: 1.4em; } h4 { font-size: 1.1em; } h5 { font-size: 0.98em; } } @media (min-width: 0px) and (max-width: 768px) { .jewel { font-size: 97%; } h1 { font-size: 1.7em; } h2 { font-size: 1.7em; } h3 { font-size: 1.3em; } h4 { font-size: 1em; } h5 { font-size: 0.97em; } } .jewel.textinput { font-weight: 400; color: #808080; } .jewel.textinput input { background: white; border: 1px solid #d9d9d9; border-radius: 0.25rem; transition-duration: 0.3s; transition-timing-function: easein; } .jewel.textinput input:focus { border: 1px solid #C92CC6; } .jewel.textinput input::placeholder, .jewel.textinput input:-ms-input-placeholder { color: #a6a6a6; } .jewel.textinput input[disabled] { background: #f3f3f3; border: 0px solid; box-shadow: none; color: silver; } .jewel.textinput input[disabled]::placeholder, .jewel.textinput input[disabled]:-ms-input-placeholder { color: silver; } .jewel.textinput input[disabled] + i { color: silver; } .jewel.textinput input { margin: 0; padding: 0.679em 14px; } .jewel.textinput.icon input { padding-left: 42px; padding-right: 14px; } .jewel.textinput.icon i.fonticon { left: 14px; } .jewel.textinput.icon i.fonticon.material-icons { left: 10px; } .jewel.textinput.icon.right input { padding-left: 14px; padding-right: 42px; } .jewel.textinput.icon.right i.fonticon { right: 14px; } .jewel.textinput.icon.right i.fonticon.material-icons { right: 10px; } .jewel.textinput.errorBorder input { border: 1px #EC1C24 solid; } .jewel.textarea { font-weight: 400; color: #808080; } .jewel.textarea textarea { margin: 0; padding: 0.72em 1.12em; background: white; border: 1px solid #d9d9d9; border-radius: 0.25rem; transition-duration: 0.3s; transition-timing-function: easein; } .jewel.textarea textarea:focus { border: 1px solid #C92CC6; } .jewel.textarea textarea::placeholder, .jewel.textarea textarea:-ms-input-placeholder { color: #a6a6a6; } .jewel.textarea textarea[disabled] { background: #f3f3f3; border: 0px solid; box-shadow: none; color: silver; } .jewel.textarea textarea[disabled]::placeholder, .jewel.textarea textarea[disabled]:-ms-input-placeholder { color: silver; } .jewel.togglebutton { margin: 0; padding: 0.679em 1.12em; background: #d9d9d9; border: 1px solid #c5c5c5; box-shadow: none; border-radius: 0.25rem; color: #808080; text-shadow: none; font-weight: bold; text-transform: uppercase; } .jewel.togglebutton:hover, .jewel.togglebutton:hover:focus { background: #cccccc; border: 1px solid #c5c5c5; color: #808080; } .jewel.togglebutton:active, .jewel.togglebutton:active:focus { background: #b3b3b3; border: 1px solid #c5c5c5; box-shadow: none; color: #808080; } .jewel.togglebutton:focus { background: #e6e6e6; border: 1px solid #c5c5c5; box-shadow: none; color: #808080; } .jewel.togglebutton[disabled] { background: #f3f3f3 !important; border: 1px solid #d9d9d9 !important; box-shadow: none !important; color: silver; text-shadow: unset; } .jewel.togglebutton.selected { background: #b3b3b3; border: 1px solid #c5c5c5; box-shadow: none; color: #808080; } .jewel.togglebutton[disabled] { font-weight: 400; } .jewel.togglebutton.icon { padding: 0.429em 0.87em; } .jewel.togglebutton.icon i { margin-left: 0px; margin-right: 0px; } .jewel.togglebutton.left-space i { margin-left: 0px; margin-right: 8px; } .jewel.togglebutton.right-space i { margin-left: 8px; margin-right: 0px; } .jewel.togglebutton.primary { background: #C92CC6; border: 1px solid #a825a5; box-shadow: none; border-radius: 0.25rem; color: #FFFFFF; text-shadow: none; } .jewel.togglebutton.primary:hover, .jewel.togglebutton.primary:hover:focus { background: #b427b1; border: 1px solid #a825a5; color: #FFFFFF; } .jewel.togglebutton.primary:active, .jewel.togglebutton.primary:active:focus { background: #8a1e88; border: 1px solid #a825a5; box-shadow: none; color: #FFFFFF; } .jewel.togglebutton.primary:focus { background: #d43bd1; border: 1px solid #a825a5; box-shadow: none; color: #FFFFFF; } .jewel.togglebutton.primary[disabled] { background: #f3f3f3 !important; border: 1px solid #d9d9d9 !important; box-shadow: none !important; color: silver; text-shadow: unset; } .jewel.togglebutton.primary.selected { background: #8a1e88; border: 1px solid #a825a5; box-shadow: none; color: #FFFFFF; } .jewel.togglebutton.outlined { background: rgba(179, 179, 179, 0.05); border: 1px solid #999999; box-shadow: none; color: #8d8d8d; text-shadow: none; } .jewel.togglebutton.outlined:hover, .jewel.togglebutton.outlined:hover:focus { background: rgba(179, 179, 179, 0.15); border: 1px solid #8d8d8d; color: #737373; } .jewel.togglebutton.outlined:active, .jewel.togglebutton.outlined:active:focus { background: rgba(179, 179, 179, 0.25); border: 1px solid #858585; box-shadow: none; color: #737373; } .jewel.togglebutton.outlined:focus { border: 1px solid gray; box-shadow: none; color: #737373; } .jewel.togglebutton.outlined[disabled] { background: rgba(243, 243, 243, 0.1) !important; border: 1px solid #d9d9d9 !important; color: silver; text-shadow: unset; } .jewel.togglebutton.outlined.selected { background: rgba(179, 179, 179, 0.25); border: 1px solid #858585; box-shadow: none; color: #737373; } .jewel.togglebutton.primary.outlined { background: rgba(201, 44, 198, 0.05); border: 1px solid #9f239d; box-shadow: none; color: #8a1e88; text-shadow: none; } .jewel.togglebutton.primary.outlined:hover, .jewel.togglebutton.primary.outlined:hover:focus { background: rgba(201, 44, 198, 0.15); border: 1px solid #8a1e88; color: #60155f; } .jewel.togglebutton.primary.outlined:active, .jewel.togglebutton.primary.outlined:active:focus { background: rgba(201, 44, 198, 0.25); border: 1px solid #7e1c7c; box-shadow: none; color: #60155f; } .jewel.togglebutton.primary.outlined:focus { border: 1px solid #751a74; box-shadow: none; color: #60155f; } .jewel.togglebutton.primary.outlined[disabled] { background: rgba(243, 243, 243, 0.1) !important; border: 1px solid #d9d9d9 !important; color: silver; text-shadow: unset; } .jewel.togglebutton.primary.outlined.selected { background: rgba(201, 44, 198, 0.25); border: 1px solid #7e1c7c; box-shadow: none; color: #60155f; } .jewel.togglebutton.unboxed { background: rgba(179, 179, 179, 0); border: 1px solid transparent; box-shadow: none; color: #8d8d8d; text-shadow: none; } .jewel.togglebutton.unboxed:hover, .jewel.togglebutton.unboxed:hover:focus { background: rgba(179, 179, 179, 0.15); border: 1px solid transparent; color: #737373; } .jewel.togglebutton.unboxed:active, .jewel.togglebutton.unboxed:active:focus { background: rgba(179, 179, 179, 0.25); border: 1px solid transparent; box-shadow: none; color: #737373; } .jewel.togglebutton.unboxed:focus { background: rgba(179, 179, 179, 0.15); border: 1px solid transparent; box-shadow: none; color: #737373; } .jewel.togglebutton.unboxed[disabled] { background: rgba(243, 243, 243, 0) !important; border: 1px solid transparent !important; color: silver; text-shadow: unset; } .jewel.togglebutton.unboxed.selected { background: rgba(179, 179, 179, 0.25); border: 1px solid transparent; box-shadow: none; color: #737373; } .jewel.togglebutton.primary.unboxed { background: rgba(201, 44, 198, 0); border: 1px solid transparent; box-shadow: none; color: #8a1e88; text-shadow: none; } .jewel.togglebutton.primary.unboxed:hover, .jewel.togglebutton.primary.unboxed:hover:focus { background: rgba(201, 44, 198, 0.15); border: 1px solid transparent; color: #60155f; } .jewel.togglebutton.primary.unboxed:active, .jewel.togglebutton.primary.unboxed:active:focus { background: rgba(201, 44, 198, 0.25); border: 1px solid transparent; box-shadow: none; color: #60155f; } .jewel.togglebutton.primary.unboxed:focus { background: rgba(201, 44, 198, 0.15); border: 1px solid transparent; box-shadow: none; color: #60155f; } .jewel.togglebutton.primary.unboxed[disabled] { background: rgba(243, 243, 243, 0) !important; border: 1px solid transparent !important; color: silver; text-shadow: unset; } .jewel.togglebutton.primary.unboxed.selected { background: rgba(201, 44, 198, 0.25); border: 1px solid transparent; box-shadow: none; color: #60155f; } .jewel.tooltip { color: #FFFFFF; background: #404040; box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.4); animation: slide-up 0.4s ease; } .jewel.tooltip.error { background: #EC1C24; } .jewel.tooltip::before { border: solid 8px transparent; } .jewel.tooltip.left-top::before { left: 8px; border-top-color: #EC1C24; } .jewel.tooltip.middle-top::before { margin-bottom: -8px; margin-left: -8px; border-top-color: #EC1C24; } .jewel.tooltip.left-middle::before { margin-top: -8px; margin-right: -8px; border-left-color: #EC1C24; } .jewel.tooltip.right-middle::before { margin-top: -8px; margin-left: -8px; border-right-color: #EC1C24; } .jewel.tooltip.middle-bottom::before { margin-top: -8px; margin-left: -8px; border-bottom-color: #EC1C24; } @keyframes slide-up { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } } .jewel.topappbar .topBarAppHeader { background: #C92CC6; border: 1px solid #a825a5; color: #FFFFFF; text-shadow: none; } .jewel.topappbar .topBarAppHeader.has-drawer { width: calc(100% - 240px); } .jewel.topappbar .jewel.barsection { padding: 8px 12px; } .jewel.topappbar .jewel.barsection button { background: transparent; box-shadow: none; border: none; padding: 12px; fill: #FFFFFF; color: inherit; text-shadow: none; } .jewel.topappbar .jewel.barsection button:hover, .jewel.topappbar .jewel.barsection button:hover:focus, .jewel.topappbar .jewel.barsection button:active, .jewel.topappbar .jewel.barsection button:active:focus, .jewel.topappbar .jewel.barsection button:focus { background: transparent; box-shadow: none; border: none; } .jewel.topappbar .jewel.barsection button[disabled] { background: transparent; box-shadow: none; border: none; } .jewel.topappbar .jewel.bartitle { font-size: 1.4em !important; font-weight: 800; padding-left: 20px; padding-right: 0; } .jewel.label.wizardTitle { color: #C92CC6; font-size: 2em !important; } .jewel.next, .jewel.previous { min-width: 44px; } .jewel.next:hover, .jewel.previous:hover { background: rgba(0, 0, 0, 0.1); border-radius: 5px; } .jewel.next .jewel.button, .jewel.previous .jewel.button { width: calc(100% - 10px); } j|Wizard { gap: 3; itemsVerticalAlign: itemsCentered; } /*# sourceMappingURL=defaults.css.map */
frameworks/themes/Jewel-Light-Flat-Primary-Amethyst-Theme/src/main/resources/defaults.css
@namespace j "library://ns.apache.org/royale/jewel"; @namespace "http://www.w3.org/1999/xhtml"; .jewel.application { background: #e0d6e0; font-family: "Lato", sans-serif; color: #808080; padding: 0px; margin: 0px; } j|Form { gap: 3; } input, select, textarea, button { font-family: inherit; } hr { background-color: #d9d9d9; } .jewel.xsmall { font-size: 0.6em; } .jewel.small { font-size: 0.8em; } .jewel { font-size: 1em; } .jewel.large { font-size: 1.2em; } .jewel.xlarge { font-size: 1.4em; } .jewel.imagebutton { outline: 0; } .jewel.alert { transform: translate(-50%, -60%); margin: 0; padding: 0; min-width: 320px; min-height: 240px; border: 0px solid; background: #f6f3f6; box-shadow: 0px 20px 65px 0px rgba(0, 0, 0, 0.8); border-radius: 3px; opacity: 0; will-change: opacity, transform; } .jewel.alert.open { opacity: 1; transform: translate(-50%, -50%); transition: opacity 0.4s 0ms, transform 0.4s 0ms; } .jewel.alert.open + .backdrop { opacity: 1; transition: opacity 0.4s 0ms; } .jewel.alert .jewel.titlebar { padding: 20px 20px 0px 20px; height: 50px; color: #C92CC6; } .jewel.alert .jewel.titlebar .jewel.label { font-size: 1.45em !important; font-weight: bold; font-color: #C92CC6; } .jewel.alert .content { padding: 20px; top: 50px; bottom: 84px; } .jewel.alert .content .jewel.label { white-space: normal; color: #808080; font-size: 1.1em; font-weight: 400; } .jewel.alert .jewel.controlbar { background: white; border: 0px solid; box-shadow: none; border-radius: 0px 0px 3px 3px; padding: 20px; position: absolute; bottom: 0; width: 100%; height: 84px; } .jewel.alert + .backdrop { opacity: 0; will-change: opacity; background-color: rgba(0, 0, 0, 0.5); } .jewel.badge { border-radius: 500em; color: #808080; font-size: 0.85em !important; line-height: 1em; } .jewel.badge.primary { background: #C92CC6; color: #FFFFFF; } .jewel.button { margin: 0; padding: 0.679em 1.12em; background: #d9d9d9; border: 1px solid #c5c5c5; box-shadow: none; border-radius: 0.25rem; color: #808080; text-shadow: none; font-weight: bold; text-transform: uppercase; } .jewel.button:hover, .jewel.button:hover:focus { background: #cccccc; border: 1px solid #c5c5c5; color: #808080; } .jewel.button:active, .jewel.button:active:focus { background: #b3b3b3; border: 1px solid #c5c5c5; box-shadow: none; color: #808080; } .jewel.button:focus { background: #e6e6e6; border: 1px solid #c5c5c5; box-shadow: none; color: #808080; } .jewel.button[disabled] { background: #f3f3f3 !important; border: 1px solid #d9d9d9 !important; box-shadow: none !important; color: silver; text-shadow: unset; } .jewel.button[disabled]:hover, .jewel.button[disabled]:hover:focus { color: silver; } .jewel.button[disabled] { font-weight: 400; } .jewel.button.icon { padding: 0.429em 0.87em; } .jewel.button.icon span { margin-left: 0px; margin-right: 0px; } .jewel.button.left-space span { margin-left: 8px; margin-right: 0px; } .jewel.button.right-space span { margin-left: 0px; margin-right: 8px; } .jewel.button.primary { background: #C92CC6; border: 1px solid #a825a5; box-shadow: none; border-radius: 0.25rem; color: #FFFFFF; text-shadow: none; } .jewel.button.primary:hover, .jewel.button.primary:hover:focus { background: #b427b1; border: 1px solid #a825a5; color: #FFFFFF; } .jewel.button.primary:active, .jewel.button.primary:active:focus { background: #8a1e88; border: 1px solid #a825a5; box-shadow: none; color: #FFFFFF; } .jewel.button.primary:focus { background: #d43bd1; border: 1px solid #a825a5; box-shadow: none; color: #FFFFFF; } .jewel.button.primary[disabled] { background: #f3f3f3 !important; border: 1px solid #d9d9d9 !important; box-shadow: none !important; color: silver; text-shadow: unset; } .jewel.button.primary[disabled]:hover, .jewel.button.primary[disabled]:hover:focus { color: silver; } .jewel.button.outlined { background: rgba(179, 179, 179, 0.05); border: 1px solid #999999; box-shadow: none; color: #8d8d8d; text-shadow: none; } .jewel.button.outlined:hover, .jewel.button.outlined:hover:focus { background: rgba(179, 179, 179, 0.15); border: 1px solid #8d8d8d; color: #737373; } .jewel.button.outlined:active, .jewel.button.outlined:active:focus { background: rgba(179, 179, 179, 0.25); border: 1px solid #858585; box-shadow: none; color: #737373; } .jewel.button.outlined:focus { border: 1px solid gray; box-shadow: none; color: #737373; } .jewel.button.outlined[disabled] { background: rgba(243, 243, 243, 0.1) !important; border: 1px solid #d9d9d9 !important; color: silver; text-shadow: unset; } .jewel.button.outlined[disabled]:hover, .jewel.button.outlined[disabled]:hover:focus { color: silver; } .jewel.button.primary.outlined { background: rgba(201, 44, 198, 0.05); border: 1px solid #9f239d; box-shadow: none; color: #8a1e88; text-shadow: none; } .jewel.button.primary.outlined:hover, .jewel.button.primary.outlined:hover:focus { background: rgba(201, 44, 198, 0.15); border: 1px solid #8a1e88; color: #60155f; } .jewel.button.primary.outlined:active, .jewel.button.primary.outlined:active:focus { background: rgba(201, 44, 198, 0.25); border: 1px solid #7e1c7c; box-shadow: none; color: #60155f; } .jewel.button.primary.outlined:focus { border: 1px solid #751a74; box-shadow: none; color: #60155f; } .jewel.button.primary.outlined[disabled] { background: rgba(243, 243, 243, 0.1) !important; border: 1px solid #d9d9d9 !important; color: silver; text-shadow: unset; } .jewel.button.primary.outlined[disabled]:hover, .jewel.button.primary.outlined[disabled]:hover:focus { color: silver; } .jewel.button.unboxed { background: rgba(179, 179, 179, 0); border: 1px solid transparent; box-shadow: none; color: #8d8d8d; text-shadow: none; } .jewel.button.unboxed:hover, .jewel.button.unboxed:hover:focus { background: rgba(179, 179, 179, 0.15); border: 1px solid transparent; color: #737373; } .jewel.button.unboxed:active, .jewel.button.unboxed:active:focus { background: rgba(179, 179, 179, 0.25); border: 1px solid transparent; box-shadow: none; color: #737373; } .jewel.button.unboxed:focus { background: rgba(179, 179, 179, 0.15); border: 1px solid transparent; box-shadow: none; color: #737373; } .jewel.button.unboxed[disabled] { background: rgba(243, 243, 243, 0) !important; border: 1px solid transparent !important; color: silver; text-shadow: unset; } .jewel.button.unboxed[disabled]:hover, .jewel.button.unboxed[disabled]:hover:focus { color: silver; } .jewel.button.primary.unboxed { background: rgba(201, 44, 198, 0); border: 1px solid transparent; box-shadow: none; color: #8a1e88; text-shadow: none; } .jewel.button.primary.unboxed:hover, .jewel.button.primary.unboxed:hover:focus { background: rgba(201, 44, 198, 0.15); border: 1px solid transparent; color: #60155f; } .jewel.button.primary.unboxed:active, .jewel.button.primary.unboxed:active:focus { background: rgba(201, 44, 198, 0.25); border: 1px solid transparent; box-shadow: none; color: #60155f; } .jewel.button.primary.unboxed:focus { background: rgba(201, 44, 198, 0.15); border: 1px solid transparent; box-shadow: none; color: #60155f; } .jewel.button.primary.unboxed[disabled] { background: rgba(243, 243, 243, 0) !important; border: 1px solid transparent !important; color: silver; text-shadow: unset; } .jewel.button.primary.unboxed[disabled]:hover, .jewel.button.primary.unboxed[disabled]:hover:focus { color: silver; } .jewel.card { font-size: 1em; font-weight: 400; background: #f6f3f6; border: 1px solid transparent; border-radius: 0.25rem; } .jewel.card.simple { padding: 20px; } .jewel.card .card-header { border-bottom: 1px solid transparent; padding: 12px 20px; } .jewel.card .card-title { font-size: 1.5em; margin: 0.408rem 0rem; letter-spacing: 0.0125em; } .jewel.card .card-primary-content { padding: 20px; } .jewel.card .card-actions { border-top: 1px solid transparent; padding: 18px 20px; } j|Card { gap: 3; } j|CardHeader { gap: 3; } j|CardPrimaryContent { gap: 3; } j|CardActions { gap: 3; } .jewel.checkbox input + span::before { background: white; border: 1px solid #d9d9d9; border-radius: 3px; } .jewel.checkbox input + span::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='22' height='22' fill-opacity='0'/%3E%3Cpolygon fill='%23C92CC6' points='3.50018311 12.4854126 8.48547363 17.4989624 18.4641113 7.47589111 15.5010376 4.51739502 8.48547363 11.5650024 6.52087402 9.47265625'/%3E%3C/svg%3E") no-repeat center center; border: 1px solid transparent; border-radius: 3px; transition: all 0.3s ease; transform: scale(0); } .jewel.checkbox input:checked + span::after, .jewel.checkbox input:checked:active + span::after { transform: scale(1); } .jewel.checkbox input:focus + span::before, .jewel.checkbox input:checked:focus + span::before, .jewel.checkbox input:checked:active:focus + span::before { background: #e68ee5; border: 1px solid #C92CC6; border-radius: 3px; } .jewel.checkbox input[disabled] + span::before { background: #f3f3f3; border: 1px solid #d9d9d9; border-radius: 3px; } .jewel.checkbox input[disabled] + span { color: silver; } .jewel.checkbox input[disabled] + span::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='22' height='22' fill-opacity='0'/%3E%3Cpolygon fill='%23cccccc' points='3.50018311 12.4854126 8.48547363 17.4989624 18.4641113 7.47589111 15.5010376 4.51739502 8.48547363 11.5650024 6.52087402 9.47265625'/%3E%3C/svg%3E") no-repeat center center; } .jewel.checkbox span { padding-left: 8px; } .jewel.combobox .jewel.textinput input { border-radius: 0.25rem 0px 0px 0.25rem; } .jewel.combobox .jewel.button { color: transparent; border-bottom-left-radius: 0px; border-top-left-radius: 0px; border-left: 0px; } .jewel.combobox .jewel.button::before { line-height: 22px; } .jewel.combobox .jewel.button::after { background-size: 66%; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23C92CC6' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; width: 14px; height: 22px; left: calc(50% - 8px); top: calc(50% - 11px); } .jewel.combobox .jewel.button[disabled] { border-left: 0px !important; } .jewel.combobox .jewel.button[disabled]::after { background-size: 66%; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23cccccc' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.datagrid { background: white; border: 1px solid #d9d9d9; box-shadow: none; } .jewel.datagrid .jewel.buttonbar.header { background: #d9d9d9; border: 0 none; box-shadow: none; } .jewel.datagrid .jewel.buttonbar.header .jewel.button.first { border-bottom-left-radius: 0; } .jewel.datagrid .jewel.buttonbar.header .jewel.button.last { border-bottom-right-radius: 0; } .jewel.datagrid .listarea { border-top-width: 1px; border-left-width: 0px; border-right-width: 0px; border-bottom-width: 0px; border-bottom-left-radius: 0.25rem; border-bottom-right-radius: 0.25rem; border-style: solid; border-color: #d9d9d9; } .jewel.datagrid .listarea:focus { border: 1px solid #C92CC6; } .jewel.datagrid .jewel.list:focus { border-color: inherit; } .jewel.datagrid .jewel.list.column { border-radius: 0px; border-bottom-width: 0px; box-shadow: none; } .jewel.datagrid .jewel.list.column.first { border-bottom-left-radius: 0.25rem; } .jewel.datagrid .jewel.list.column.last { border-bottom-right-radius: 0.25rem; } .jewel.datagrid .jewel.list.column .jewel.item.datagrid { border-top: none; border-left: none; border-right: none; border-bottom: 1px solid #ededed; border-right: 0; border-radius: 0; } .jewel.datagrid .jewel.list.column .jewel.item.datagrid.primary.hovered { background: #da58d8; } .jewel.datagrid .jewel.list.column .jewel.item.datagrid.primary.selected, .jewel.datagrid .jewel.list.column .jewel.item.datagrid.primary.selectable:active { background: #d643d3; } .jewel.datechooser .jewel.table { background: white; border: 1px solid #d9d9d9; border-radius: 0.25rem; box-shadow: none; } .jewel.datechooser .jewel.table .jewel.button { background: transparent; border: none; box-shadow: none; } .jewel.datechooser .jewel.table .jewel.tableheadercell { padding: 12px 0px; background: white; border-left: 0px; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow { border-bottom: 1px solid #d9d9d9; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .previousButton, .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .nextButton { border-radius: 50%; color: transparent; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .viewSelector:hover, .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .previousButton:hover, .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .nextButton:hover { background: #f3f3f3; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .viewSelector:active, .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .previousButton:active, .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .nextButton:active { background: #e6e6e6; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .viewSelector::after { width: 14px; height: 8px; padding-right: 8px; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23C92CC6' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); background-position: right 0 center; background-repeat: no-repeat; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .previousButton::after, .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .nextButton::after { width: 14px; height: 14px; top: calc(50% - 7px); } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .previousButton::after { left: calc(50% - 9px); background: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 12' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(-7.000000, -5.000000)'%3E%3Crect x='0' y='0' width='22' height='22'%3E%3C/rect%3E%3Cpath d='M14.9911518,6.4116803 C14.9876664,5.88503401 14.7746504,5.53560917 14.5762939,5.35284424 C14.3779375,5.17007931 14.0808684,5.04951371 13.4608967,5.00170898 L7.01066011,11.0034834 L13.4822102,17.0014648 C14.1196233,16.9113382 14.3962441,16.8099967 14.5762939,16.6435547 C14.7563438,16.4771126 14.9881385,16.1084637 15.0074566,15.5914935 L10.0769967,11.0034834 L14.9911518,6.4116803 Z' fill='%23C92CC6' fill-rule='nonzero'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow .nextButton::after { left: calc(50% - 5px); background: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 12' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(-7.000000, -5.000000)'%3E%3Crect x='0' y='0' width='22' height='22'%3E%3C/rect%3E%3Cpath d='M14.9911518,6.4116803 C14.9876664,5.88503401 14.7746504,5.53560917 14.5762939,5.35284424 C14.3779375,5.17007931 14.0808684,5.04951371 13.4608967,5.00170898 L7.01066011,11.0034834 L13.4822102,17.0014648 C14.1196233,16.9113382 14.3962441,16.8099967 14.5762939,16.6435547 C14.7563438,16.4771126 14.9881385,16.1084637 15.0074566,15.5914935 L10.0769967,11.0034834 L14.9911518,6.4116803 Z' fill='%23C92CC6' fill-rule='nonzero' transform='translate(11.009058, 11.001587) scale(-1, 1) translate(-11.009058, -11.001587) '%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.datechooser .jewel.table .jewel.tablecell { border-top: 0px; border-left: 0px; padding: 4px; } .jewel.datechooser .jewel.table .jewel.tableheadercell.buttonsRow { padding: 4px; } .jewel.datechooser[disabled] { pointer-events: none; } .jewel.datechooser[disabled] .jewel.table { color: silver; text-shadow: unset; background: #f3f3f3; border: 0px solid; } .jewel.datechooser[disabled] .jewel.table .jewel.button { color: silver; text-shadow: unset; font-weight: normal; } .jewel.datechooser[disabled] .jewel.table .jewel.tableheadercell { background: none; color: silver; text-shadow: unset; } .jewel.datechooser[disabled] .jewel.table .jewel.tableheadercell.buttonsRow .viewSelector::after { background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23cccccc' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); } .jewel.datechooser[disabled] .jewel.table .jewel.tableheadercell.buttonsRow .previousButton::after, .jewel.datechooser[disabled] .jewel.table .jewel.tableheadercell.buttonsRow .nextButton::after { background-size: 40%; } .jewel.datechooser[disabled] .jewel.table .jewel.tableheadercell.buttonsRow .previousButton::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 12' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(-7.000000, -5.000000)'%3E%3Crect x='0' y='0' width='22' height='22'%3E%3C/rect%3E%3Cpath d='M14.9911518,6.4116803 C14.9876664,5.88503401 14.7746504,5.53560917 14.5762939,5.35284424 C14.3779375,5.17007931 14.0808684,5.04951371 13.4608967,5.00170898 L7.01066011,11.0034834 L13.4822102,17.0014648 C14.1196233,16.9113382 14.3962441,16.8099967 14.5762939,16.6435547 C14.7563438,16.4771126 14.9881385,16.1084637 15.0074566,15.5914935 L10.0769967,11.0034834 L14.9911518,6.4116803 Z' fill='%23cccccc' fill-rule='nonzero'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.datechooser[disabled] .jewel.table .jewel.tableheadercell.buttonsRow .nextButton::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 8 12' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(-7.000000, -5.000000)'%3E%3Crect x='0' y='0' width='22' height='22'%3E%3C/rect%3E%3Cpath d='M14.9911518,6.4116803 C14.9876664,5.88503401 14.7746504,5.53560917 14.5762939,5.35284424 C14.3779375,5.17007931 14.0808684,5.04951371 13.4608967,5.00170898 L7.01066011,11.0034834 L13.4822102,17.0014648 C14.1196233,16.9113382 14.3962441,16.8099967 14.5762939,16.6435547 C14.7563438,16.4771126 14.9881385,16.1084637 15.0074566,15.5914935 L10.0769967,11.0034834 L14.9911518,6.4116803 Z' fill='%23cccccc' fill-rule='nonzero' transform='translate(11.009058, 11.001587) scale(-1, 1) translate(-11.009058, -11.001587) '%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.datechooser[disabled] .jewel.tableitem { height: 38px; } .jewel.datechooser[disabled] .jewel.tableitem.selected, .jewel.datechooser[disabled] .jewel.tableitem.selectable:active { background: #cccccc; } .calendar.item { padding: 10px; font-size: 1em; } .calendar.item.dayName { font-weight: 600; } .calendar.item.date { color: grey; } .jewel.datefield .jewel.textinput input { border-radius: 0.25rem 0px 0px 0.25rem; } .jewel.datefield .jewel.button { color: transparent; border-bottom-left-radius: 0px; border-top-left-radius: 0px; border-left: 0px; } .jewel.datefield .jewel.button::after { background-size: 66%; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Crect x='0' y='0' width='22' height='22'%3E%3C/rect%3E%3Cpath d='M18.3333333,2.75 L17.4166667,2.75 L17.4166667,0.916666667 L15.5833333,0.916666667 L15.5833333,2.75 L6.41666667,2.75 L6.41666667,0.916666667 L4.58333333,0.916666667 L4.58333333,2.75 L3.66666667,2.75 C2.65833333,2.75 1.83333333,3.575 1.83333333,4.58333333 L1.83333333,19.25 C1.83333333,20.2583333 2.65833333,21.0833333 3.66666667,21.0833333 L18.3333333,21.0833333 C19.3416667,21.0833333 20.1666667,20.2583333 20.1666667,19.25 L20.1666667,4.58333333 C20.1666667,3.575 19.3416667,2.75 18.3333333,2.75 Z M18.3333333,19.25 L3.66666667,19.25 L3.66666667,7.33333333 L18.3333333,7.33333333 L18.3333333,19.25 Z' fill='%23C92CC6' fill-rule='nonzero'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.datefield .jewel.button[disabled] { border-left: 0px !important; } .jewel.datefield .jewel.button[disabled]::after { background-size: 66%; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Crect x='0' y='0' width='22' height='22'%3E%3C/rect%3E%3Cpath d='M18.3333333,2.75 L17.4166667,2.75 L17.4166667,0.916666667 L15.5833333,0.916666667 L15.5833333,2.75 L6.41666667,2.75 L6.41666667,0.916666667 L4.58333333,0.916666667 L4.58333333,2.75 L3.66666667,2.75 C2.65833333,2.75 1.83333333,3.575 1.83333333,4.58333333 L1.83333333,19.25 C1.83333333,20.2583333 2.65833333,21.0833333 3.66666667,21.0833333 L18.3333333,21.0833333 C19.3416667,21.0833333 20.1666667,20.2583333 20.1666667,19.25 L20.1666667,4.58333333 C20.1666667,3.575 19.3416667,2.75 18.3333333,2.75 Z M18.3333333,19.25 L3.66666667,19.25 L3.66666667,7.33333333 L18.3333333,7.33333333 L18.3333333,19.25 Z' fill='%23cccccc' fill-rule='nonzero'%3E%3C/path%3E%3C/g%3E%3C/svg%3E") no-repeat center center; } .jewel.divider { border-bottom-color: #d9d9d9; border-bottom-width: 1px; border-bottom-style: solid; } .jewel.drawer.float { color: rgba(0, 0, 0, 0.8); } .jewel.drawer.float::before { background-color: rgba(0, 0, 0, 0.65); will-change: opacity; transition: opacity 0.4s 0ms; } .jewel.drawer.float .drawermain { box-shadow: 0px 0px 6px 1px rgba(1, 1, 1, 0.7); transform: translateX(-104%); will-change: transform; width: calc(100% - 54px); max-width: 280px; background-color: white; transition: transform 250ms 0ms; } .jewel.drawer.float.open .drawermain { transform: none; transition: transform 300ms 0ms; } .jewel.drawer.fixed .drawermain { width: 240px; transform: translateX(-104%); will-change: transform; transition: transform 250ms 0ms; background-color: white; border-left: 0; border-right: 1px solid #d9d9d9; } .jewel.drawer.fixed.open { width: auto; } .jewel.drawer.fixed.open .drawermain { transition: transform 300ms 0ms; } .jewel.drawerheader { background: #C92CC6; border: 1px solid #a825a5; color: #FFFFFF; padding: 16px; } .jewel.drawerheader div { padding: 16px; } .jewel.drawerfooter { background: #333333; border: 0px solid; color: #FFFFFF; text-shadow: none; } .jewel.drawerfooter .jewel.barsection { padding: 8px 12px; } .jewel.drawerfooter .jewel.barsection button { background: transparent; box-shadow: none; border: none; padding: 12px; fill: #FFFFFF; color: inherit; text-shadow: none; } .jewel.drawerfooter .jewel.barsection button:hover, .jewel.drawerfooter .jewel.barsection button:hover:focus, .jewel.drawerfooter .jewel.barsection button:active, .jewel.drawerfooter .jewel.barsection button:active:focus, .jewel.drawerfooter .jewel.barsection button:focus { background: transparent; box-shadow: none; border: none; } .jewel.drawerfooter .jewel.barsection button[disabled] { background: transparent; box-shadow: none; border: none; } .jewel.dropdownlist { background-color: white; border: 1px solid #d1d1d1; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23C92CC6' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); background-size: 1.08em; background-position: right 0.7em center; background-repeat: no-repeat; border-radius: 0.25rem; } .jewel.dropdownlist[disabled] { background-color: #f3f3f3; border: 1px solid #d9d9d9; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23cccccc' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); box-shadow: none; color: silver; } .jewel.dropdownlist[disabled]::placeholder, .jewel.dropdownlist[disabled]:-ms-input-placeholder { color: silver; } .jewel.dropdownlist[disabled] + i { color: silver; } .jewel.dropdownlist:focus { border: 1px solid #C92CC6; } .jewel.footerbar .footerBarAppHeader { background: #333333; border: 0px solid; color: #FFFFFF; text-shadow: none; } .jewel.footerbar .footerBarAppHeader.has-drawer { width: calc(100% - 240px); } .jewel.footerbar .jewel.barsection { padding: 8px 12px; } .jewel.footerbar .jewel.barsection button { background: transparent; box-shadow: none; border: none; padding: 12px; fill: #FFFFFF; color: inherit; text-shadow: none; } .jewel.footerbar .jewel.barsection button:hover, .jewel.footerbar .jewel.barsection button:hover:focus, .jewel.footerbar .jewel.barsection button:active, .jewel.footerbar .jewel.barsection button:active:focus, .jewel.footerbar .jewel.barsection button:focus { background: transparent; box-shadow: none; border: none; } .jewel.footerbar .jewel.barsection button[disabled] { background: transparent; box-shadow: none; border: none; } .jewel.formheading { color: #9f239d; font-size: 1.4em !important; } .jewel.formheading .jewel.label.spacerLabel { width: 115px; } .jewel.formheading .jewel.label.requiredSpacerLabel { width: 10px; } j|FormHeading { gap: 2; } .jewel.formitem .jewel.label.formlabel { width: 115px; } .jewel.formitem .jewel.label.required { color: #EC1C24; font-size: 1.6em !important; width: 10px; } j|FormItem { gap: 2; itemsVerticalAlign: itemsCentered; } .fonticon.dark { color: #676767; } .fonticon.dark.inactive { color: rgba(128, 128, 128, 0.3); } .fonticon.light { color: white; } .fonticon.light.inactive { color: rgba(255, 255, 255, 0.5); } .jewel.item { background: transparent; } .jewel.item.hovered { color: #FFFFFF; } .jewel.item.selected, .jewel.item.selectable:active { color: #FFFFFF; } .jewel.item.primary.hovered { background: #C92CC6; } .jewel.item.primary.selected, .jewel.item.primary.selectable:active { background: #b427b1; } .jewel.label { line-height: 1em; } .jewel.label.multiline { line-height: normal; max-width: 100%; } .jewel.list { color: #808080; background: white; border: 1px solid #d9d9d9; box-shadow: none; border-radius: 3px; } .jewel.list:focus { border: 1px solid #C92CC6; } .jewel.list[disabled] { pointer-events: none; color: silver; text-shadow: unset; font-weight: normal; background: #f3f3f3; border: 0px solid; box-shadow: none; } .jewel.list[disabled] .jewel.item.selected, .jewel.list[disabled] .jewel.item.selectable:active { background: #cccccc !important; } .jewel.loader { border: 16px solid #f3f3f3; border-radius: 50%; } .jewel.loader.segment { border-top-color: silver; } .jewel.loader.primary.segment { border-top-color: #C92CC6; } .jewel.navigation { background-color: #ffffff; } .jewel.navigation .layout.vertical { align-items: stretch; } .jewel.navigationlink { margin: 0; padding: 0 16px; font-size: 1em; font-weight: 500; color: rgba(0, 0, 0, 0.6); } .jewel.navigationlink.hovered { background: #f3f3f3 !important; } .jewel.navigationlink .hint.fonticon { margin-left: auto; } .jewel.navigationgroup.no-submenu.hovered { background: #f3f3f3 !important; } .navigation-section-group { transition: height 0.5s; overflow: hidden !important; } .navigation-section-group .navigationlink { padding-left: 34px; } .jewel.numericstepper { height: 38px; } .jewel.numericstepper .jewel.textinput { width: calc(100% - 33px); } .jewel.numericstepper .jewel.textinput input { border-radius: 0.25rem 0px 0px 0.25rem; } .jewel.numericstepper .jewel.button { border-radius: 0 0.25rem 0.25rem 0; border-left: 0px; width: 12%; width: 33px; height: 50%; } .jewel.numericstepper .jewel.button, .jewel.numericstepper .jewel.button:hover, .jewel.numericstepper .jewel.button:hover:focus, .jewel.numericstepper .jewel.button:active, .jewel.numericstepper .jewel.button:active:focus { color: transparent; } .jewel.numericstepper .jewel.button.up { border-bottom-right-radius: 0px; } .jewel.numericstepper .jewel.button.up::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23C92CC6' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; width: 12px; height: 7px; } .jewel.numericstepper .jewel.button.down { border-top-right-radius: 0px; border-top-style: groove; } .jewel.numericstepper .jewel.button.down::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(0.000000, -1.000000)' fill='%23C92CC6' fill-rule='nonzero'%3E%3Cg transform='translate(-2.000000, 0.000000)'%3E%3Cpolygon transform='translate(8.000000, 4.705000) scale(1, -1) translate(-8.000000, -4.705000) ' points='3.41 8.41 8 3.83 12.59 8.41 14 7 8 1 2 7'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E") no-repeat center center; width: 12px; height: 7px; } .jewel.numericstepper .jewel.button.up, .jewel.numericstepper .jewel.button.down { padding: 8.5px 16px; } @media (max-width: 992px) { .jewel.numericstepper .jewel.textinput input { border-radius: 0; } .jewel.numericstepper .jewel.button.up { border: 1px solid #b3b3b3; border-radius: 0 0.25rem 0.25rem 0; margin-left: -1px; height: 100%; } .jewel.numericstepper .jewel.button.down { border: 1px solid #b3b3b3; border-radius: 0.25rem 0 0 0.25rem; border-top-style: solid; margin-right: -1px; height: 100%; } } .popup-content::before { background-color: rgba(0, 0, 0, 0.65); will-change: opacity; transition: opacity 0.4s 0ms; } .popup-content .jewel.popupcontent { border: 0px; border-radius: 10px; padding: 20px; background: white; box-shadow: 0px 0px 6px 1px rgba(1, 1, 1, 0.7) !important; } @media (min-width: 992px) { .popup-content .jewel.popupcontent { box-shadow: none !important; } } .jewel.radiobutton input + span::before { background: white; border: 1px solid #d9d9d9; border-radius: 50%; } .jewel.radiobutton input + span::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='22' height='22' fill-opacity='0'/%3E%3Ccircle fill='%23C92CC6' cx='11' cy='11' r='6'/%3E%3C/svg%3E") no-repeat center center; border: 1px solid transparent; border-radius: 50%; transition: all 0.3s ease; transform: scale(0); } .jewel.radiobutton input:checked + span::after, .jewel.radiobutton input:checked:active + span::after { transform: scale(1); } .jewel.radiobutton input:focus + span::before, .jewel.radiobutton input:checked:focus + span::before, .jewel.radiobutton input:checked:active:focus + span::before { background: #e68ee5; border: 1px solid #C92CC6; border-radius: 50%; } .jewel.radiobutton input[disabled] + span::before { background: #f3f3f3; border: 1px solid #d9d9d9; border-radius: 50%; } .jewel.radiobutton input[disabled] + span { color: silver; } .jewel.radiobutton input[disabled] + span::after { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 22 22' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0' y='0' width='22' height='22' fill-opacity='0'/%3E%3Ccircle fill='%23cccccc' cx='11' cy='11' r='6'/%3E%3C/svg%3E") no-repeat center center; } .jewel.radiobutton span { padding-left: 8px; font-size: 16px; } .jewel.slider input::-ms-fill-lower { background: #C92CC6; border: 1px solid #ac26a9; box-shadow: none; border-radius: 3px; } .jewel.slider input::-ms-fill-upper { background: white; border: 1px solid white; border-radius: 3px; } .jewel.slider input::-webkit-slider-thumb { width: 18px; height: 18px; background: #C92CC6; border: 1px solid #a825a5; box-shadow: none; border-radius: 50%; } .jewel.slider input::-moz-range-thumb { width: 18px; height: 18px; background: #C92CC6; border: 1px solid #a825a5; box-shadow: none; border-radius: 50%; } .jewel.slider input::-ms-thumb { width: 18px; height: 18px; background: #C92CC6; border: 1px solid #a825a5; box-shadow: none; border-radius: 50%; } .jewel.slider input:active::-webkit-slider-thumb, .jewel.slider input:active::-moz-range-thumb { transform: scale(1.4); } .jewel.slider input:active::-ms-thumb { transform: scale(0.8); } .jewel.slider input[disabled]::-ms-fill-lower { background: #e6e6e6; border: 1px solid silver; box-shadow: none; } .jewel.slider input[disabled]::-ms-fill-upper { background: #f3f3f3; border: 1px solid #d9d9d9; box-shadow: none; } .jewel.slider input[disabled]::-webkit-slider-thumb, .jewel.slider input[disabled]::-moz-range-thumb, .jewel.slider input[disabled]::-ms-thumb { background: #f3f3f3; border: 1px solid silver; box-shadow: none; } .jewel.slider input[disabled]:active::-webkit-slider-thumb, .jewel.slider input[disabled]:active::-moz-range-thumb, .jewel.slider input[disabled]:active::-ms-thumb { transform: scale(1); } .jewel.slider input[disabled] + .slider-track-container > .slider-track-fill { background: #e6e6e6; border: 1px solid silver; box-shadow: none; } .jewel.slider input[disabled] + .slider-track-container > .slider-track { background: #f3f3f3; border: 1px solid #d9d9d9; box-shadow: none; } .slider-track-container { top: 50%; } .slider-track-fill { background: #C92CC6; border: 1px solid #ac26a9; box-shadow: none; border-radius: 3px; } .slider-track { background: white; border: 1px solid #d9d9d9; border-radius: 3px; } .jewel.snackbar { will-change: transform; transform: translate(0, 100%); transition: transform 0.4s 0ms; } .jewel.snackbar.open { transform: translate(0); transition: transform 0.4s 0ms; } .jewel.snackbar.primary .jewel.snackbar-content { background: #C92CC6; border: 0px solid; box-shadow: none; } .jewel.snackbar.primary .jewel.snackbar-message { color: #FFFFFF; } .jewel.snackbar.primary .jewel.snackbar-action { color: #E2D70B; } .jewel.snackbar.primary .jewel.snackbar-action:hover { background: #b427b1; border: none; } .jewel.snackbar-content { background: #2C3E50; border-radius: 0.25rem 0.25rem 0px 0px; } .jewel.snackbar-message { color: #FFFFFF; } .jewel.snackbar-action { color: #FFD740; } .jewel.snackbar-action:hover { background-color: #3C4E60; } @media (max-width: 992px) { .jewel.snackbar-content { border-radius: 0px; } } .jewel.tabbar.sameWidths .content > * { flex: 1 0 0%; } .jewel.tabbarbutton { font-size: 1em; font-weight: 500; border: none; background: transparent; outline: none; color: rgba(0, 0, 0, 0.6); text-transform: uppercase; text-decoration: none; letter-spacing: 0.1em; font-weight: 600; transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out; } .jewel.tabbarbutton > .content { padding-top: 12px; padding-bottom: 12px; } .jewel.tabbarbutton .indicator > .indicatorContent { height: 2px; background-color: #C92CC6; } .jewel.tabbarbutton.hovered { background: rgba(201, 44, 198, 0.2); } .jewel.tabbarbutton.selected, .jewel.tabbarbutton.selectable:active { color: #8a1e88; background: rgba(201, 44, 198, 0.4); } .jewel.simpletable { background: white; border: 1px solid #d9d9d9; box-shadow: none; border-radius: 0.25rem; } .jewel.simpletable .jewel.tableheadercell:first-of-type { border-left: 0px; } .jewel.simpletable .jewel.tableheadercell { padding: 12px; background: #f3f3f3; box-shadow: none; font-weight: 700; line-height: normal !important; font-size: 1em; color: #808080; border-left: 1px solid #d9d9d9; } .jewel.simpletable .jewel.tablecell:first-of-type { border-left: 0px; } .jewel.simpletable .jewel.tablecell { border-top: 1px solid #d9d9d9; border-left: 1px solid #d9d9d9; } .jewel.simpletable .jewel.tablecell > * { padding: 12px; } .jewel.simpletable .jewel.tfoot .jewel.tablecell { border-left: 0px; background: #f3f3f3; box-shadow: none; } .jewel.table { background: white; border: 1px solid #d9d9d9; box-shadow: none; border-radius: 0.25rem; } .jewel.table .jewel.tableheadercell:first-of-type { border-left: 0px; } .jewel.table .jewel.tableheadercell { padding: 12px; background: #f3f3f3; box-shadow: none; font-weight: 700; line-height: normal !important; font-size: 1em; color: #808080; border-left: 1px solid #d9d9d9; border-bottom: 1px solid #d9d9d9; } .jewel.table .jewel.tablerow:first-child .jewel.tablecell { border-top: 0px solid transparent; } .jewel.table .jewel.tablecell:first-of-type { border-left: 0px; } .jewel.table .jewel.tablecell { border-top: 1px solid #d9d9d9; border-left: 1px solid #d9d9d9; } .jewel.table .jewel.tfoot .jewel.tablecell { border-left: 0px; background: #f3f3f3; box-shadow: none; } .jewel.tableitem { height: 100%; } .jewel.tableitem.hovered { color: #FFFFFF; background: #C92CC6; } .jewel.tableitem.selected, .jewel.tableitem.selectable:active { color: #FFFFFF; background: #b427b1; } .jewel.tableitem.calendar { border-radius: 4px; } .jewel.tableitem.calendar.selected { font-weight: bold; } a:link { color: #C92CC6; } a:active { color: #8a1e88; } .primary-lightest { color: #f4cdf3; } .primary-light { color: #e279e0; } .primary-normal { color: #C92CC6; } .primary-dark { color: #751a74; } .primary-darkest { color: #220721; } .weight-lightest { font-weight: 100; } .weight-light { font-weight: 300; } .weight-regular { font-weight: 400; } .weight-bold { font-weight: 600; } .weight-bolder { font-weight: 800; } h1 { font-size: 2em; margin: 0.8rem 0rem; } h2 { font-size: 2em; margin: 0.58rem 0rem; } h3 { font-size: 1.5em; margin: 0.408rem 0rem; } h4 { font-size: 1.25em; margin: 0.35rem 0rem; } h5 { font-size: 1em; margin: 0.2rem 0rem; } span { font-size: 1em; } div { font-size: 14px; } @media (min-width: 992px) and (max-width: 1200px) { .jewel { font-size: 100%; } h1 { font-size: 2em; } h2 { font-size: 2em; } h3 { font-size: 1.5em; } h4 { font-size: 1.25em; } h5 { font-size: 1em; } } @media (min-width: 768px) and (max-width: 992px) { .jewel { font-size: 99%; } h1 { font-size: 1.9em; } h2 { font-size: 1.9em; } h3 { font-size: 1.4em; } h4 { font-size: 1.1em; } h5 { font-size: 0.98em; } } @media (min-width: 0px) and (max-width: 768px) { .jewel { font-size: 97%; } h1 { font-size: 1.7em; } h2 { font-size: 1.7em; } h3 { font-size: 1.3em; } h4 { font-size: 1em; } h5 { font-size: 0.97em; } } .jewel.textinput { font-weight: 400; color: #808080; } .jewel.textinput input { background: white; border: 1px solid #d9d9d9; border-radius: 0.25rem; transition-duration: 0.3s; transition-timing-function: easein; } .jewel.textinput input:focus { border: 1px solid #C92CC6; } .jewel.textinput input::placeholder, .jewel.textinput input:-ms-input-placeholder { color: #a6a6a6; } .jewel.textinput input[disabled] { background: #f3f3f3; border: 0px solid; box-shadow: none; color: silver; } .jewel.textinput input[disabled]::placeholder, .jewel.textinput input[disabled]:-ms-input-placeholder { color: silver; } .jewel.textinput input[disabled] + i { color: silver; } .jewel.textinput input { margin: 0; padding: 0.679em 14px; } .jewel.textinput.icon input { padding-left: 42px; padding-right: 14px; } .jewel.textinput.icon i.fonticon { left: 14px; } .jewel.textinput.icon i.fonticon.material-icons { left: 10px; } .jewel.textinput.icon.right input { padding-left: 14px; padding-right: 42px; } .jewel.textinput.icon.right i.fonticon { right: 14px; } .jewel.textinput.icon.right i.fonticon.material-icons { right: 10px; } .jewel.textinput.errorBorder input { border: 1px #EC1C24 solid; } .jewel.textarea { font-weight: 400; color: #808080; } .jewel.textarea textarea { margin: 0; padding: 0.72em 1.12em; background: white; border: 1px solid #d9d9d9; border-radius: 0.25rem; transition-duration: 0.3s; transition-timing-function: easein; } .jewel.textarea textarea:focus { border: 1px solid #C92CC6; } .jewel.textarea textarea::placeholder, .jewel.textarea textarea:-ms-input-placeholder { color: #a6a6a6; } .jewel.textarea textarea[disabled] { background: #f3f3f3; border: 0px solid; box-shadow: none; color: silver; } .jewel.textarea textarea[disabled]::placeholder, .jewel.textarea textarea[disabled]:-ms-input-placeholder { color: silver; } .jewel.togglebutton { margin: 0; padding: 0.679em 1.12em; background: #d9d9d9; border: 1px solid #c5c5c5; box-shadow: none; border-radius: 0.25rem; color: #808080; text-shadow: none; font-weight: bold; text-transform: uppercase; } .jewel.togglebutton:hover, .jewel.togglebutton:hover:focus { background: #cccccc; border: 1px solid #c5c5c5; color: #808080; } .jewel.togglebutton:active, .jewel.togglebutton:active:focus { background: #b3b3b3; border: 1px solid #c5c5c5; box-shadow: none; color: #808080; } .jewel.togglebutton:focus { background: #e6e6e6; border: 1px solid #c5c5c5; box-shadow: none; color: #808080; } .jewel.togglebutton[disabled] { background: #f3f3f3 !important; border: 1px solid #d9d9d9 !important; box-shadow: none !important; color: silver; text-shadow: unset; } .jewel.togglebutton.selected { background: #b3b3b3; border: 1px solid #c5c5c5; box-shadow: none; color: #808080; } .jewel.togglebutton[disabled] { font-weight: 400; } .jewel.togglebutton.icon { padding: 0.429em 0.87em; } .jewel.togglebutton.icon i { margin-left: 0px; margin-right: 0px; } .jewel.togglebutton.left-space i { margin-left: 0px; margin-right: 8px; } .jewel.togglebutton.right-space i { margin-left: 8px; margin-right: 0px; } .jewel.togglebutton.primary { background: #C92CC6; border: 1px solid #a825a5; box-shadow: none; border-radius: 0.25rem; color: #FFFFFF; text-shadow: none; } .jewel.togglebutton.primary:hover, .jewel.togglebutton.primary:hover:focus { background: #b427b1; border: 1px solid #a825a5; color: #FFFFFF; } .jewel.togglebutton.primary:active, .jewel.togglebutton.primary:active:focus { background: #8a1e88; border: 1px solid #a825a5; box-shadow: none; color: #FFFFFF; } .jewel.togglebutton.primary:focus { background: #d43bd1; border: 1px solid #a825a5; box-shadow: none; color: #FFFFFF; } .jewel.togglebutton.primary[disabled] { background: #f3f3f3 !important; border: 1px solid #d9d9d9 !important; box-shadow: none !important; color: silver; text-shadow: unset; } .jewel.togglebutton.primary.selected { background: #8a1e88; border: 1px solid #a825a5; box-shadow: none; color: #FFFFFF; } .jewel.togglebutton.outlined { background: rgba(179, 179, 179, 0.05); border: 1px solid #999999; box-shadow: none; color: #8d8d8d; text-shadow: none; } .jewel.togglebutton.outlined:hover, .jewel.togglebutton.outlined:hover:focus { background: rgba(179, 179, 179, 0.15); border: 1px solid #8d8d8d; color: #737373; } .jewel.togglebutton.outlined:active, .jewel.togglebutton.outlined:active:focus { background: rgba(179, 179, 179, 0.25); border: 1px solid #858585; box-shadow: none; color: #737373; } .jewel.togglebutton.outlined:focus { border: 1px solid gray; box-shadow: none; color: #737373; } .jewel.togglebutton.outlined[disabled] { background: rgba(243, 243, 243, 0.1) !important; border: 1px solid #d9d9d9 !important; color: silver; text-shadow: unset; } .jewel.togglebutton.outlined.selected { background: rgba(179, 179, 179, 0.25); border: 1px solid #858585; box-shadow: none; color: #737373; } .jewel.togglebutton.primary.outlined { background: rgba(201, 44, 198, 0.05); border: 1px solid #9f239d; box-shadow: none; color: #8a1e88; text-shadow: none; } .jewel.togglebutton.primary.outlined:hover, .jewel.togglebutton.primary.outlined:hover:focus { background: rgba(201, 44, 198, 0.15); border: 1px solid #8a1e88; color: #60155f; } .jewel.togglebutton.primary.outlined:active, .jewel.togglebutton.primary.outlined:active:focus { background: rgba(201, 44, 198, 0.25); border: 1px solid #7e1c7c; box-shadow: none; color: #60155f; } .jewel.togglebutton.primary.outlined:focus { border: 1px solid #751a74; box-shadow: none; color: #60155f; } .jewel.togglebutton.primary.outlined[disabled] { background: rgba(243, 243, 243, 0.1) !important; border: 1px solid #d9d9d9 !important; color: silver; text-shadow: unset; } .jewel.togglebutton.primary.outlined.selected { background: rgba(201, 44, 198, 0.25); border: 1px solid #7e1c7c; box-shadow: none; color: #60155f; } .jewel.togglebutton.unboxed { background: rgba(179, 179, 179, 0); border: 1px solid transparent; box-shadow: none; color: #8d8d8d; text-shadow: none; } .jewel.togglebutton.unboxed:hover, .jewel.togglebutton.unboxed:hover:focus { background: rgba(179, 179, 179, 0.15); border: 1px solid transparent; color: #737373; } .jewel.togglebutton.unboxed:active, .jewel.togglebutton.unboxed:active:focus { background: rgba(179, 179, 179, 0.25); border: 1px solid transparent; box-shadow: none; color: #737373; } .jewel.togglebutton.unboxed:focus { background: rgba(179, 179, 179, 0.15); border: 1px solid transparent; box-shadow: none; color: #737373; } .jewel.togglebutton.unboxed[disabled] { background: rgba(243, 243, 243, 0) !important; border: 1px solid transparent !important; color: silver; text-shadow: unset; } .jewel.togglebutton.unboxed.selected { background: rgba(179, 179, 179, 0.25); border: 1px solid transparent; box-shadow: none; color: #737373; } .jewel.togglebutton.primary.unboxed { background: rgba(201, 44, 198, 0); border: 1px solid transparent; box-shadow: none; color: #8a1e88; text-shadow: none; } .jewel.togglebutton.primary.unboxed:hover, .jewel.togglebutton.primary.unboxed:hover:focus { background: rgba(201, 44, 198, 0.15); border: 1px solid transparent; color: #60155f; } .jewel.togglebutton.primary.unboxed:active, .jewel.togglebutton.primary.unboxed:active:focus { background: rgba(201, 44, 198, 0.25); border: 1px solid transparent; box-shadow: none; color: #60155f; } .jewel.togglebutton.primary.unboxed:focus { background: rgba(201, 44, 198, 0.15); border: 1px solid transparent; box-shadow: none; color: #60155f; } .jewel.togglebutton.primary.unboxed[disabled] { background: rgba(243, 243, 243, 0) !important; border: 1px solid transparent !important; color: silver; text-shadow: unset; } .jewel.togglebutton.primary.unboxed.selected { background: rgba(201, 44, 198, 0.25); border: 1px solid transparent; box-shadow: none; color: #60155f; } .jewel.tooltip { color: #FFFFFF; background: #404040; box-shadow: 0px 3px 3px 0 rgba(0, 0, 0, 0.4); animation: slide-up 0.4s ease; } .jewel.tooltip.error { background: #EC1C24; } .jewel.tooltip::before { border: solid 8px transparent; } .jewel.tooltip.left-top::before { left: 8px; border-top-color: #EC1C24; } .jewel.tooltip.middle-top::before { margin-bottom: -8px; margin-left: -8px; border-top-color: #EC1C24; } .jewel.tooltip.left-middle::before { margin-top: -8px; margin-right: -8px; border-left-color: #EC1C24; } .jewel.tooltip.right-middle::before { margin-top: -8px; margin-left: -8px; border-right-color: #EC1C24; } .jewel.tooltip.middle-bottom::before { margin-top: -8px; margin-left: -8px; border-bottom-color: #EC1C24; } @keyframes slide-up { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } } .jewel.topappbar .topBarAppHeader { background: #C92CC6; border: 1px solid #a825a5; color: #FFFFFF; text-shadow: none; } .jewel.topappbar .topBarAppHeader.has-drawer { width: calc(100% - 240px); } .jewel.topappbar .jewel.barsection { padding: 8px 12px; } .jewel.topappbar .jewel.barsection button { background: transparent; box-shadow: none; border: none; padding: 12px; fill: #FFFFFF; color: inherit; text-shadow: none; } .jewel.topappbar .jewel.barsection button:hover, .jewel.topappbar .jewel.barsection button:hover:focus, .jewel.topappbar .jewel.barsection button:active, .jewel.topappbar .jewel.barsection button:active:focus, .jewel.topappbar .jewel.barsection button:focus { background: transparent; box-shadow: none; border: none; } .jewel.topappbar .jewel.barsection button[disabled] { background: transparent; box-shadow: none; border: none; } .jewel.topappbar .jewel.bartitle { font-size: 1.4em !important; font-weight: 800; padding-left: 20px; padding-right: 0; } .jewel.label.wizardTitle { color: #C92CC6; font-size: 2em !important; } .jewel.next, .jewel.previous { min-width: 44px; } .jewel.next:hover, .jewel.previous:hover { background: rgba(0, 0, 0, 0.1); border-radius: 5px; } .jewel.next .jewel.button, .jewel.previous .jewel.button { width: calc(100% - 10px); } j|Wizard { gap: 3; itemsVerticalAlign: itemsCentered; } /*# sourceMappingURL=defaults.css.map */
0.461745
0.164752
body{ margin:0; padding:0; font-family: 'Vollkorn', serif; background:url(/src/blog/image/banner.jpg) no-repeat 0 0; background-size:100% 100%; } body a{ transition:0.5s all; -webkit-transition:0.5s all; -moz-transition:0.5s all; -o-transition:0.5s all; -ms-transition:0.5s all; } h1,h2,h3,h4,h5,h6{ margin:0; } p{ margin:0; } ul{ margin:0; padding:0; } /*--header--*/ .label-1 { background: #000; width: 1140px; height: 0; display: block; } .label-3 { border-top: 3px solid #000; height: 6px; } .label-4 { border-top: 1px solid #000; height: 15px; } .label-5 { border-top: 3px solid #000; height: 6px; } .label-6 { border-top: 1px solid #000; height: 15px; } .label-7 { border-top: 3px solid #000; height: 6px; } .label-8 { border-top: 1px solid #000; height: 15px; } .top-menu { margin: 9em 0 0 0; border-top: 3px solid #000; position: relative; border-bottom: 3px solid#000; height: 100px; } .logo { position: relative; bottom: 68px; left: 41%; width: 11%; } .nav { list-style: none; padding: 2em 0; border-top: 1px solid#000; margin: 3px 0; border-bottom: 1px solid; } .copyrights{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;} ul.nav li:nth-child(2) { margin-right: 25em; } ul.nav li { display: inline-block; } .nav li a { display: block; padding: 0px; color: #000; font-size: 1.5em; margin: 0 60px; font-weight: 400; } li.logo { background: none; border: none; } li.logo a { font-size: 5em; color: #17AED2; } div#banner-top { text-align: center; padding-top: 6em; } div#banner-top h1 { font-size: 5.6em; color:#000; font-family: 'Abril Fatface', cursive; } div#banner-top h1 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 15px; width: 204px; height: 80px; display: block; float: left; } div#banner-top h1 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 15px; width: 204px; height: 80px; display: block; float: right; } div#banner-top h2 { font-size: 3.6em; padding: .5em 0; width: 77%; margin: 0 auto; color:#000; } div#banner-top h2 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: left; } div#banner-top h2 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: right; } .header-icons { text-align: center; margin: 2em 0; } .header-icons a span { width: 62px; height: 62px; background: url('/src/blog/image/sc-icon.png') no-repeat 0px 0px; display: inline-block; margin: 0 5px; } .header-icons a span.fb { background-position:0px 0px; } .header-icons a span.fb:hover { background-position:0px -62px; } .header-icons a span.tw { background-position: -62px 0px; } .header-icons a span.tw:hover { background-position: -62px -62px; } .header-icons a span.pin{ background-position: -123px 0px; } .header-icons a span.pin:hover{ background-position: -123px -62px; } .header-icons a span.likdin{ background-position: -186px 0px; } .header-icons a span.likdin:hover{ background-position: -186px -62px; } .header-icons a span.dribble{ background-position: -248px 0px; } .header-icons a span.dribble:hover{ background-position: -248px -62px; } .header-icons a span.be{ background-position: -310px 0px; } .header-icons a span.be:hover{ background-position: -310px -62px; } /*--work--*/ .work { text-align: center; margin: 10em 0 0; } .work p { font-size: 1.4em; margin-bottom: 4em; } .work h3 { font-family: '<NAME>', cursive; font-size: 3.6em; padding: .5em 0; width: 51%; margin: 3% auto 0; color: #000; } .work h3 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: left; } .work h3 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: right; } /*--portfolio--*/ /*-----------------------------------------------------------------------------------*/ .b-link-stripe{ position:relative; display:inline-block; vertical-align:top; font-weight: 300; overflow:hidden; } .b-link-stripe .b-wrapper{ position:absolute; width:100%; height:100%; top:0; left:0; text-align:center; color:#ffffff; overflow:hidden; } .b-link-stripe .b-line{ position:absolute; top:0; bottom:0; width:20%; background:rgba(15, 207, 140, 0.9); transition:all 0.5s linear; -moz-transition:all 0.5s linear; -ms-transition:all 0.5s linear; -o-transition:all 0.5s linear; -webkit-transition:all 0.5s linear; opacity:0; visibility:hidden; /* lt-ie9 */ } /*-----------------------------------------------------------------------------------*/ /* Animation effects /*-----------------------------------------------------------------------------------*/ .b-animate-go{ text-decoration:none; } .b-animate { transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; -webkit-transition: all 0.5s; visibility: hidden; font-size: 15px; font-weight: 400; width: 40%; line-height: 1.3em; margin: 0 auto; top: 35%; } .b-animate img{ margin-top:12%; display: -webkit-inline-box; } /* lt-ie9 */ .b-animate-go:hover .b-animate{ visibility:visible; } .b-from-left{ position:relative; left:-100%; } .b-animate-go:hover .b-from-left{ left:0; } span.m_4{ font-size:14px; font-weight:400; } p.m_5 { margin: 2% auto 5%; width: 70%; color: #283A47; font-size: 1.1em; font-weight: 600; line-height: 1.5em; text-align: center; } .project-top h3 { float: left; color: #324B73; font-weight: 900; font-size: 2em; margin-top: 2em; } /*--team--*/ .span_1_of_4 { width: 22.8%; } .col_1_of_4 { display: block; float: left; margin: 1% 0 1% 2.6%; background: #FFF; } .b-wrapper:hover { background: rgba(49, 153, 255, 0.48); transition: 0.5s all; -webkit-transition: 0.5s all; -o-transition: 0.5s all; -moz-transition: 0.5s all; -ms-transition: 0.5s all; } /* lt-ie9 */ .b-link-stripe:hover .b-line{ visibility:visible; } .b-link-stripe .b-line1{ left:0; } .b-link-stripe .b-line2{ left:20%; transition-delay:0.1s !important; -moz-transition-delay:0.1s !important; -ms-transition-delay:0.1s !important; -o-transition-delay:0.1s !important; -webkit-transition-delay:0.1s !important; } .b-link-stripe .b-line3{ left:40%; transition-delay:0.2s !important; -moz-transition-delay:0.2s !important; -ms-transition-delay:0.2s !important; -o-transition-delay:0.2s !important; -webkit-transition-delay:0.2s !important; } .b-link-stripe .b-line4{ left:60%; transition-delay:0.3s !important; -moz-transition-delay:0.3s !important; -ms-transition-delay:0.3s !important; -o-transition-delay:0.3s !important; -webkit-transition-delay:0.3s !important; } .b-link-stripe .b-line5{ left:80%; transition-delay:0.4s !important; -moz-transition-delay:0.4s !important; -ms-transition-delay:0.4s !important; -o-transition-delay:0.4s !important; -webkit-transition-delay:0.4s !important; } .b-link-stripe:hover .b-line{ opacity:1; } #portfoliolist .portfolio { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; width: 24%; display: none; float: left; overflow: hidden; margin: 0 1% 1% 0; background: none; } .portfolio.icon.mix_all { padding: 0; } div#portfoliolist { padding: 0.5% 0px; } .project h5 { color: #334D72; text-align: center; font-size: 2.6em; font-weight: 600; padding: 1em 0 0em; } .portfolio-wrapper { overflow:hidden; position: relative !important; cursor:pointer; } .portfolio img { max-width:100%; /*--position: relative;--*/ transition: all 300ms!important; -webkit-transition: all 300ms!important; -moz-transition: all 300ms!important; } .portfolio .label { position: absolute; width: 100%; height:40px; bottom:-40px; } .portfolio .label-bg { background: #22B4B8; width: 100%; height:100%; position: absolute; top:0; left:0; } .portfolio .label-text { color:#fff; position: relative; z-index:500; padding:5px 8px; } .portfolio .text-category { display:block; font-size:9px; font-size: 12px; text-transform:uppercase; } /* Self Clearing Goodness */ .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; } .clearfix:before, .clearfix:after, .row:before, .row:after { content: '\0020'; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; } .row:after, .clearfix:after { clear: both; } .row, .clearfix { zoom: 1; } .clear { clear: both; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; } .project { margin-bottom: 8em; } /*--/portfolio--*/ /*--/work--*/ /*--about--*/ .about { text-align: center; margin: 4em 0; } .about h3 { font-family: 'Abril Fatface', cursive; font-size: 3.6em; padding: .5em 0; width: 55%; margin: 3% auto 0; color: #000; } .about p { font-size: 1.3em; } .about h3 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: left; } .about h3 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: right; } .about-right { text-align: left; } .about-right p { padding: 10px 0; line-height: 1.8em; font-size: 1.3em; } .about-info { margin: 6em 0; } .about-icons { margin: 2em 0 0 0; } .about-icons a span { width: 62px; height: 62px; background: url('/src/blog/image/sc-icon.png') no-repeat 0px 0px; display: inline-block; margin: 0 5px 0 0; } .about-icons a span.fb { background-position:0px 0px; } .about-icons a span.fb:hover { background-position:0px -62px; } .about-icons a span.tw { background-position: -62px 0px; } .about-icons a span.tw:hover { background-position: -62px -62px; } .about-icons a span.pin{ background-position: -123px 0px; } .about-icons a span.pin:hover{ background-position: -123px -62px; } .about-icons a span.likdin{ background-position: -186px 0px; } .about-icons a span.likdin:hover{ background-position: -186px -62px; } .about-icons a span.dribble{ background-position: -248px 0px; } .about-icons a span.dribble:hover{ background-position: -248px -62px; } .about-icons a span.be{ background-position: -310px 0px; } .about-icons a span.be:hover{ background-position: -310px -62px; } /*--/about--*/ /*--conatact--*/ .contact { text-align: center; margin: 4em 0; } .contact h3 { font-family: 'Abril Fatface', cursive; font-size: 3.6em; padding: .5em 0; width: 62%; margin: 5% auto 0; color: #000; } .contact p { margin-bottom: 5em; font-size: 1.3em; } .contact h3 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: left; } .contact h3 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: right; } ul.form li { list-style-type: none; border: 4px solid #000; width: 50%; margin: 2% auto 0; } input.text { border: 1px solid #000; outline: none; width: 98%; margin: 4px; padding: 1.2em; } textarea { outline: none; border: 1px solid #000; padding: 1em; width: 98%; height: 200px; margin: 4px; resize: none; } .sub-button { border: 4px solid #000; width: 20%; margin: 2% auto; } input[type="submit"] { border: 1px solid #000; outline: none; background: none; margin: 4px; padding: 1em 4em; font-size: 1.2em; width: 96%; } input[type="submit"]:hover { background: #000; color: #fff; transition:0.5s all; -webkit-transition:0.5s all; -moz-transition:0.5s all; -o-transition:0.5s all; -ms-transition:0.5s all; } .conatct-form { margin-bottom: 5em; } .copyrights { border-top: 1px solid #000; padding: 2em 0 2em; } .copyrights p { margin-bottom: 0; font-size: 1.2em; } /*--/conatct--*/ #toTop { display: none; text-decoration: none; position: fixed; bottom: 10px; right: 25px; overflow: hidden; width: 47px; height: 47px; border: none; text-indent: 100%; background: url(/src/blog/image/top-arrow.png) no-repeat; } /*--top-top--*/ /*--responsive--*/ @media (max-width: 1024px){ .label-2 { width: 941px; } .top-menu { margin: 7em 0 0 0; } .nav li a { margin: 0 49px; } div#banner-top h1 { font-size: 4em; } div#banner-top { padding-top: 4em; } div#banner-top h1 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 3px; width: 200px; height: 59px; } div#banner-top h1 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 6px; width: 223px; height: 58px; } div#banner-top h2 { font-size: 3em; width: 91%; margin: 2% auto; } div#banner-top h2 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 0px; width: 202px; height: 34px; } div#banner-top h2 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 0px; width: 241px; height: 31px; } .work { text-align: center; margin: 8em 0 0; } .work h3 { font-size: 3em; width: 66%; } .about { margin: 0 0; } .about h3 { font-size: 3em; width: 66%; } .contact h3 { font-size: 3em; width: 73%; } .contact p { margin-bottom: 4em; } .copyrights { padding: 2em 0 0em; } ul.nav li:nth-child(2) { margin-right: 17em; } } @media (max-width: 768px){ div#banner-top h1 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 27px -1px; width: 174px; height: 53px; background-size: 150px; } div#banner-top h1 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 0px; width: 174px; height: 53px; background-size: 150px; } div#banner-top h1 { font-size: 2.7em; width: 100%; margin: 0 auto; } div#banner-top h2 { font-size: 2em; width: 100%; margin: 1% auto; } div#banner-top h2 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px -6px; width: 202px; height: 34px; } div#banner-top { padding-top: 1.5em; } .work { margin: 4em 0 0; } .label-2 { width: 718px; background: #000; } .nav li a { margin: 0 21px; } ul.nav li:nth-child(2) { margin-right: 15em; } .logo { position: relative; bottom: 72px; left: 38%; width: 11%; } .work h3 { font-size: 2.6em; width: 82%; } .work h3 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 0px; width: 204px; height: 35px; } .work h3 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 3px; width: 204px; height: 35px; } .work p { font-size: 1.4em; margin-bottom: 3em; } .project { margin-bottom: 5em; } .about h3 { font-size: 2.6em; width: 78%; } .about h3 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 1px; width: 204px; height: 41px; } .about h3 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 6px; width: 204px; height: 39px; } .top-menu { margin: 8% auto 3%; width: 95%; } .about-left { width: 42%; float:left; } .about-right { width: 100%; font-size: 0.875em; padding: 0; } .about-icons { text-align: center; } .about-info { margin: 5em 0 0; } .about-icons { margin: 5em 0 0 0; } div#portfoliolist { padding: 0 13px 0 20px; } .contact h3 { font-size: 2.6em; width: 88%; margin: 4% auto 0; } .b-animate { top: 21%; } ul.form li { width: 68%; } .sub-button { width: 30%; } .label-3 { width: 96%; margin: 0 auto; } .label-4 { width: 96%; margin: 0 auto; } .label-5 { width: 96%; margin: 0 auto; } .label-6 { width: 96%; margin: 0 auto; } .label-7 { width: 96%; margin: 0 auto; } .label-8 { width: 96%; margin: 0 auto; } } @media (max-width: 640px){ .nav li a { margin: 0 16px; } .nav { padding: 1em 0; } .sub-button { width: 35%; } .logo a img { width: 100%; } ul.nav li:nth-child(2) { margin-right: 9em; } .logo { bottom: 50px; left: 38%; width: 17%; } div#banner-top h1 span.left-icon { width: 151px; background-size: 120px; } div#banner-top h1 { font-size: 2.2em; } div#banner-top h1 span.right-icon { width: 160px; background-size: 120px; } div#banner-top h2 span.left-icon { width: 151px; height: 20px; background-size: 154px; } div#banner-top h2 { font-size: 1.5em; width: 100%; margin-left: 1.5em; } div#banner-top h2 span.right-icon { width: 235px; height: 31px; background-size: 154px; } .work h3 { font-size: 2.3em; width: 94%; margin: 2% auto 0; } .label-2 { width: 594px; } .about h3 { font-size: 2.3em; width: 94%; } .about-icons { margin: 2em 0 0 0; } .contact { margin: 3em 0; } .contact h3 { font-size: 2.3em; width: 100%; margin: 2% auto 0; } .contact h3 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px -1px; height: 37px; } .contact h3 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 4px; height: 38px; } ul.form li { width: 80%; } .about-right p { padding: 0px 0; font-size: 1.1em; } .top-menu { margin: 8% auto 5%; width: 96%; height: 72px; } } @media (max-width: 480px){ span.menu:before { content: url(/src/blog/image/nav-icon.png); cursor: pointer; height:32px; } .top-menu { float: right; margin: 0; background: none; border: none; } .top-menu ul{ display:none; } .top-menu ul li { font-size: 12px; display:inline-block; width: 100%; padding: 10px 0; } .top-menu ul li:hover { background: #000; color: #fff; } .top-menu ul li a { padding: 3px; font-size: 13px; width: 100%; font-weight: 600; display: block; margin: 0; color: #fff; } .top-menu ul li a:hover{ color:#fff; } span.menu{ display:block; float:right; margin: 54px 16px 0 0; } .top-menu ul{ margin: 0; z-index: 999; position: absolute; width: 96%; text-align: center; top: 82.8%; left: -6%; background: rgba(0, 0, 0, 0.81); width: 440px; } .nav { padding: 0; } .label-2 { width: 0; background: none; } div#banner-top h1 { font-size: 1.8em; } div#banner-top { padding-top: 6.5em; } div#banner-top h1 span.left-icon { width: 125px; background-size: 99px; height: 26px; } div#banner-top h1 { font-size: 1.3em; } div#banner-top h1 span.right-icon { width: 120px; background-size: 102px; height: 30px; } div#banner-top h2 span.left-icon { display: none; } div#banner-top h2 { font-size: 1em; margin-left: 0; } div#banner-top h2 span.right-icon { display: none; } .logo { bottom: -64px; left: 38%; width: 17%; } div#banner-top { padding-top: 9em; } .header-icons a span { width: 32px; height: 32px; background-size: 193px; } .header-icons a span.fb:hover { background-position: 0px -32px; } .header-icons a span.tw { background-position: -32px 0px; } .header-icons a span.tw:hover { background-position: -32px -32px; } .header-icons a span.pin { background-position: -65px 0px; } .header-icons a span.pin:hover { background-position: -65px -32px; } .header-icons a span.likdin { background-position: -97px 0px; } .header-icons a span.likdin:hover { background-position: -97px -32px; } .header-icons a span.dribble { background-position: -129px 0px; } .header-icons a span.dribble:hover { background-position: -129px -32px; } .header-icons a span.be { background-position: -162px 0px; } .header-icons a span.be:hover { background-position: -162px -32px; } .work { margin: 2em 0 0; } .work h3 span.right-icon { display: none; } .work h3 span.left-icon { display: none; } .about h3 span.left-icon{ display:none; } .about h3 span.right-icon{ display:none; } .contact h3 span.left-icon{ display:none; } .contact h3 span.right-icon{ display:none; } .work p { font-size: 1.1em; margin-bottom: 2em; } .work h3 { margin: 0% auto 0; } .project { margin-bottom: 2em; } #portfoliolist .portfolio { width: 49%; } .about p { font-size: 1.1em; } .about-icons a span { width: 32px; height: 32px; background-size: 193px; } .about-icons a span.fb:hover { background-position: 0px -32px; } .about-icons a span.tw { background-position: -32px 0px; } .about-icons a span.tw:hover { background-position: -32px -32px; } .about-icons a span.pin { background-position: -65px 0px; } .about-icons a span.pin:hover { background-position: -65px -32px; } .about-icons a span.likdin { background-position: -97px 0px; } .about-icons a span.likdin:hover { background-position: -97px -32px; } .about-icons a span.dribble { background-position: -129px 0px; } .about-icons a span.dribble:hover { background-position: -129px -32px; } .about-icons a span.be { background-position: -162px 0px; } .about-icons a span.be:hover { background-position: -162px -32px; } .about-info { margin: 2em 0 0; } .contact { margin: 2em 0; } .contact p { margin-bottom: 2em; font-size: 1.1em; } ul.form li { width: 90%; } .sub-button { width: 50%; } .contact p { margin-bottom: 4em; font-size: 0.9em; } .conatct-form { margin-bottom: 1em; } textarea { margin: 4px 0px -3px 0; } } @media (max-width: 320px){ div#banner-top h1 span.left-icon { background: url(/src/blog/image/left.png) no-repeat -4px 3px; width: 46px; background-size: 50px; height: 26px; } div#banner-top h1 span.right-icon { width: 42px; background-size: 56px; height: 30px; } .header-icons { margin: 1em 0 0; } .work { margin: 1.5em 0 0; } .work h3 { font-size: 1.4em; width: 100%; } .work p { font-size: .81em; margin-bottom: 1em; } span.menu { margin: 39px 8px 0 0; } .logo { bottom: -46px; left: 31%; width: 35%; } .top-menu ul { top: 95.8%; width: 285px; } ul.nav li:nth-child(2) { margin-right: 0; } div#banner-top { padding-top: 7.5em; } .about h3 { font-size: 1.4em; width: 100%; } .about p { font-size: .875em; } .about-left { width: 100%; float: none; margin-bottom: 18px; padding: 0; } .contact h3 { font-size: 1.4em; } .contact p { margin-bottom: 1em; font-size: .875em; line-height: 1.8em; } ul.form li { width: 98%; border: 3px solid #000; } input.text { width: 97%; padding: .5em; } textarea { padding: .5em; width: 96%; height: 125px; } input[type="submit"] { padding: .5em 0em; font-size: 1.1em; width: 94%; } .b-animate { font-size: 12px; width: 74%; } .contact { margin: 1.5em 0; } .copyrights { padding: 2em 0 1em; } div#portfoliolist { padding: 0 0px 0 5px; } .sub-button { border: 3px solid #000; } } /*--/responsive--*/
public/src/blog/css/newstyle.css
body{ margin:0; padding:0; font-family: 'Vollkorn', serif; background:url(/src/blog/image/banner.jpg) no-repeat 0 0; background-size:100% 100%; } body a{ transition:0.5s all; -webkit-transition:0.5s all; -moz-transition:0.5s all; -o-transition:0.5s all; -ms-transition:0.5s all; } h1,h2,h3,h4,h5,h6{ margin:0; } p{ margin:0; } ul{ margin:0; padding:0; } /*--header--*/ .label-1 { background: #000; width: 1140px; height: 0; display: block; } .label-3 { border-top: 3px solid #000; height: 6px; } .label-4 { border-top: 1px solid #000; height: 15px; } .label-5 { border-top: 3px solid #000; height: 6px; } .label-6 { border-top: 1px solid #000; height: 15px; } .label-7 { border-top: 3px solid #000; height: 6px; } .label-8 { border-top: 1px solid #000; height: 15px; } .top-menu { margin: 9em 0 0 0; border-top: 3px solid #000; position: relative; border-bottom: 3px solid#000; height: 100px; } .logo { position: relative; bottom: 68px; left: 41%; width: 11%; } .nav { list-style: none; padding: 2em 0; border-top: 1px solid#000; margin: 3px 0; border-bottom: 1px solid; } .copyrights{text-indent:-9999px;height:0;line-height:0;font-size:0;overflow:hidden;} ul.nav li:nth-child(2) { margin-right: 25em; } ul.nav li { display: inline-block; } .nav li a { display: block; padding: 0px; color: #000; font-size: 1.5em; margin: 0 60px; font-weight: 400; } li.logo { background: none; border: none; } li.logo a { font-size: 5em; color: #17AED2; } div#banner-top { text-align: center; padding-top: 6em; } div#banner-top h1 { font-size: 5.6em; color:#000; font-family: 'Abril Fatface', cursive; } div#banner-top h1 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 15px; width: 204px; height: 80px; display: block; float: left; } div#banner-top h1 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 15px; width: 204px; height: 80px; display: block; float: right; } div#banner-top h2 { font-size: 3.6em; padding: .5em 0; width: 77%; margin: 0 auto; color:#000; } div#banner-top h2 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: left; } div#banner-top h2 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: right; } .header-icons { text-align: center; margin: 2em 0; } .header-icons a span { width: 62px; height: 62px; background: url('/src/blog/image/sc-icon.png') no-repeat 0px 0px; display: inline-block; margin: 0 5px; } .header-icons a span.fb { background-position:0px 0px; } .header-icons a span.fb:hover { background-position:0px -62px; } .header-icons a span.tw { background-position: -62px 0px; } .header-icons a span.tw:hover { background-position: -62px -62px; } .header-icons a span.pin{ background-position: -123px 0px; } .header-icons a span.pin:hover{ background-position: -123px -62px; } .header-icons a span.likdin{ background-position: -186px 0px; } .header-icons a span.likdin:hover{ background-position: -186px -62px; } .header-icons a span.dribble{ background-position: -248px 0px; } .header-icons a span.dribble:hover{ background-position: -248px -62px; } .header-icons a span.be{ background-position: -310px 0px; } .header-icons a span.be:hover{ background-position: -310px -62px; } /*--work--*/ .work { text-align: center; margin: 10em 0 0; } .work p { font-size: 1.4em; margin-bottom: 4em; } .work h3 { font-family: '<NAME>', cursive; font-size: 3.6em; padding: .5em 0; width: 51%; margin: 3% auto 0; color: #000; } .work h3 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: left; } .work h3 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: right; } /*--portfolio--*/ /*-----------------------------------------------------------------------------------*/ .b-link-stripe{ position:relative; display:inline-block; vertical-align:top; font-weight: 300; overflow:hidden; } .b-link-stripe .b-wrapper{ position:absolute; width:100%; height:100%; top:0; left:0; text-align:center; color:#ffffff; overflow:hidden; } .b-link-stripe .b-line{ position:absolute; top:0; bottom:0; width:20%; background:rgba(15, 207, 140, 0.9); transition:all 0.5s linear; -moz-transition:all 0.5s linear; -ms-transition:all 0.5s linear; -o-transition:all 0.5s linear; -webkit-transition:all 0.5s linear; opacity:0; visibility:hidden; /* lt-ie9 */ } /*-----------------------------------------------------------------------------------*/ /* Animation effects /*-----------------------------------------------------------------------------------*/ .b-animate-go{ text-decoration:none; } .b-animate { transition: all 0.5s; -moz-transition: all 0.5s; -ms-transition: all 0.5s; -o-transition: all 0.5s; -webkit-transition: all 0.5s; visibility: hidden; font-size: 15px; font-weight: 400; width: 40%; line-height: 1.3em; margin: 0 auto; top: 35%; } .b-animate img{ margin-top:12%; display: -webkit-inline-box; } /* lt-ie9 */ .b-animate-go:hover .b-animate{ visibility:visible; } .b-from-left{ position:relative; left:-100%; } .b-animate-go:hover .b-from-left{ left:0; } span.m_4{ font-size:14px; font-weight:400; } p.m_5 { margin: 2% auto 5%; width: 70%; color: #283A47; font-size: 1.1em; font-weight: 600; line-height: 1.5em; text-align: center; } .project-top h3 { float: left; color: #324B73; font-weight: 900; font-size: 2em; margin-top: 2em; } /*--team--*/ .span_1_of_4 { width: 22.8%; } .col_1_of_4 { display: block; float: left; margin: 1% 0 1% 2.6%; background: #FFF; } .b-wrapper:hover { background: rgba(49, 153, 255, 0.48); transition: 0.5s all; -webkit-transition: 0.5s all; -o-transition: 0.5s all; -moz-transition: 0.5s all; -ms-transition: 0.5s all; } /* lt-ie9 */ .b-link-stripe:hover .b-line{ visibility:visible; } .b-link-stripe .b-line1{ left:0; } .b-link-stripe .b-line2{ left:20%; transition-delay:0.1s !important; -moz-transition-delay:0.1s !important; -ms-transition-delay:0.1s !important; -o-transition-delay:0.1s !important; -webkit-transition-delay:0.1s !important; } .b-link-stripe .b-line3{ left:40%; transition-delay:0.2s !important; -moz-transition-delay:0.2s !important; -ms-transition-delay:0.2s !important; -o-transition-delay:0.2s !important; -webkit-transition-delay:0.2s !important; } .b-link-stripe .b-line4{ left:60%; transition-delay:0.3s !important; -moz-transition-delay:0.3s !important; -ms-transition-delay:0.3s !important; -o-transition-delay:0.3s !important; -webkit-transition-delay:0.3s !important; } .b-link-stripe .b-line5{ left:80%; transition-delay:0.4s !important; -moz-transition-delay:0.4s !important; -ms-transition-delay:0.4s !important; -o-transition-delay:0.4s !important; -webkit-transition-delay:0.4s !important; } .b-link-stripe:hover .b-line{ opacity:1; } #portfoliolist .portfolio { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; width: 24%; display: none; float: left; overflow: hidden; margin: 0 1% 1% 0; background: none; } .portfolio.icon.mix_all { padding: 0; } div#portfoliolist { padding: 0.5% 0px; } .project h5 { color: #334D72; text-align: center; font-size: 2.6em; font-weight: 600; padding: 1em 0 0em; } .portfolio-wrapper { overflow:hidden; position: relative !important; cursor:pointer; } .portfolio img { max-width:100%; /*--position: relative;--*/ transition: all 300ms!important; -webkit-transition: all 300ms!important; -moz-transition: all 300ms!important; } .portfolio .label { position: absolute; width: 100%; height:40px; bottom:-40px; } .portfolio .label-bg { background: #22B4B8; width: 100%; height:100%; position: absolute; top:0; left:0; } .portfolio .label-text { color:#fff; position: relative; z-index:500; padding:5px 8px; } .portfolio .text-category { display:block; font-size:9px; font-size: 12px; text-transform:uppercase; } /* Self Clearing Goodness */ .container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; } .clearfix:before, .clearfix:after, .row:before, .row:after { content: '\0020'; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; } .row:after, .clearfix:after { clear: both; } .row, .clearfix { zoom: 1; } .clear { clear: both; display: block; overflow: hidden; visibility: hidden; width: 0; height: 0; } .project { margin-bottom: 8em; } /*--/portfolio--*/ /*--/work--*/ /*--about--*/ .about { text-align: center; margin: 4em 0; } .about h3 { font-family: 'Abril Fatface', cursive; font-size: 3.6em; padding: .5em 0; width: 55%; margin: 3% auto 0; color: #000; } .about p { font-size: 1.3em; } .about h3 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: left; } .about h3 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: right; } .about-right { text-align: left; } .about-right p { padding: 10px 0; line-height: 1.8em; font-size: 1.3em; } .about-info { margin: 6em 0; } .about-icons { margin: 2em 0 0 0; } .about-icons a span { width: 62px; height: 62px; background: url('/src/blog/image/sc-icon.png') no-repeat 0px 0px; display: inline-block; margin: 0 5px 0 0; } .about-icons a span.fb { background-position:0px 0px; } .about-icons a span.fb:hover { background-position:0px -62px; } .about-icons a span.tw { background-position: -62px 0px; } .about-icons a span.tw:hover { background-position: -62px -62px; } .about-icons a span.pin{ background-position: -123px 0px; } .about-icons a span.pin:hover{ background-position: -123px -62px; } .about-icons a span.likdin{ background-position: -186px 0px; } .about-icons a span.likdin:hover{ background-position: -186px -62px; } .about-icons a span.dribble{ background-position: -248px 0px; } .about-icons a span.dribble:hover{ background-position: -248px -62px; } .about-icons a span.be{ background-position: -310px 0px; } .about-icons a span.be:hover{ background-position: -310px -62px; } /*--/about--*/ /*--conatact--*/ .contact { text-align: center; margin: 4em 0; } .contact h3 { font-family: 'Abril Fatface', cursive; font-size: 3.6em; padding: .5em 0; width: 62%; margin: 5% auto 0; color: #000; } .contact p { margin-bottom: 5em; font-size: 1.3em; } .contact h3 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: left; } .contact h3 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 10px; width: 204px; height: 50px; display: block; float: right; } ul.form li { list-style-type: none; border: 4px solid #000; width: 50%; margin: 2% auto 0; } input.text { border: 1px solid #000; outline: none; width: 98%; margin: 4px; padding: 1.2em; } textarea { outline: none; border: 1px solid #000; padding: 1em; width: 98%; height: 200px; margin: 4px; resize: none; } .sub-button { border: 4px solid #000; width: 20%; margin: 2% auto; } input[type="submit"] { border: 1px solid #000; outline: none; background: none; margin: 4px; padding: 1em 4em; font-size: 1.2em; width: 96%; } input[type="submit"]:hover { background: #000; color: #fff; transition:0.5s all; -webkit-transition:0.5s all; -moz-transition:0.5s all; -o-transition:0.5s all; -ms-transition:0.5s all; } .conatct-form { margin-bottom: 5em; } .copyrights { border-top: 1px solid #000; padding: 2em 0 2em; } .copyrights p { margin-bottom: 0; font-size: 1.2em; } /*--/conatct--*/ #toTop { display: none; text-decoration: none; position: fixed; bottom: 10px; right: 25px; overflow: hidden; width: 47px; height: 47px; border: none; text-indent: 100%; background: url(/src/blog/image/top-arrow.png) no-repeat; } /*--top-top--*/ /*--responsive--*/ @media (max-width: 1024px){ .label-2 { width: 941px; } .top-menu { margin: 7em 0 0 0; } .nav li a { margin: 0 49px; } div#banner-top h1 { font-size: 4em; } div#banner-top { padding-top: 4em; } div#banner-top h1 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 3px; width: 200px; height: 59px; } div#banner-top h1 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 6px; width: 223px; height: 58px; } div#banner-top h2 { font-size: 3em; width: 91%; margin: 2% auto; } div#banner-top h2 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 0px; width: 202px; height: 34px; } div#banner-top h2 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 0px; width: 241px; height: 31px; } .work { text-align: center; margin: 8em 0 0; } .work h3 { font-size: 3em; width: 66%; } .about { margin: 0 0; } .about h3 { font-size: 3em; width: 66%; } .contact h3 { font-size: 3em; width: 73%; } .contact p { margin-bottom: 4em; } .copyrights { padding: 2em 0 0em; } ul.nav li:nth-child(2) { margin-right: 17em; } } @media (max-width: 768px){ div#banner-top h1 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 27px -1px; width: 174px; height: 53px; background-size: 150px; } div#banner-top h1 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 0px; width: 174px; height: 53px; background-size: 150px; } div#banner-top h1 { font-size: 2.7em; width: 100%; margin: 0 auto; } div#banner-top h2 { font-size: 2em; width: 100%; margin: 1% auto; } div#banner-top h2 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px -6px; width: 202px; height: 34px; } div#banner-top { padding-top: 1.5em; } .work { margin: 4em 0 0; } .label-2 { width: 718px; background: #000; } .nav li a { margin: 0 21px; } ul.nav li:nth-child(2) { margin-right: 15em; } .logo { position: relative; bottom: 72px; left: 38%; width: 11%; } .work h3 { font-size: 2.6em; width: 82%; } .work h3 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 0px; width: 204px; height: 35px; } .work h3 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 3px; width: 204px; height: 35px; } .work p { font-size: 1.4em; margin-bottom: 3em; } .project { margin-bottom: 5em; } .about h3 { font-size: 2.6em; width: 78%; } .about h3 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px 1px; width: 204px; height: 41px; } .about h3 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 6px; width: 204px; height: 39px; } .top-menu { margin: 8% auto 3%; width: 95%; } .about-left { width: 42%; float:left; } .about-right { width: 100%; font-size: 0.875em; padding: 0; } .about-icons { text-align: center; } .about-info { margin: 5em 0 0; } .about-icons { margin: 5em 0 0 0; } div#portfoliolist { padding: 0 13px 0 20px; } .contact h3 { font-size: 2.6em; width: 88%; margin: 4% auto 0; } .b-animate { top: 21%; } ul.form li { width: 68%; } .sub-button { width: 30%; } .label-3 { width: 96%; margin: 0 auto; } .label-4 { width: 96%; margin: 0 auto; } .label-5 { width: 96%; margin: 0 auto; } .label-6 { width: 96%; margin: 0 auto; } .label-7 { width: 96%; margin: 0 auto; } .label-8 { width: 96%; margin: 0 auto; } } @media (max-width: 640px){ .nav li a { margin: 0 16px; } .nav { padding: 1em 0; } .sub-button { width: 35%; } .logo a img { width: 100%; } ul.nav li:nth-child(2) { margin-right: 9em; } .logo { bottom: 50px; left: 38%; width: 17%; } div#banner-top h1 span.left-icon { width: 151px; background-size: 120px; } div#banner-top h1 { font-size: 2.2em; } div#banner-top h1 span.right-icon { width: 160px; background-size: 120px; } div#banner-top h2 span.left-icon { width: 151px; height: 20px; background-size: 154px; } div#banner-top h2 { font-size: 1.5em; width: 100%; margin-left: 1.5em; } div#banner-top h2 span.right-icon { width: 235px; height: 31px; background-size: 154px; } .work h3 { font-size: 2.3em; width: 94%; margin: 2% auto 0; } .label-2 { width: 594px; } .about h3 { font-size: 2.3em; width: 94%; } .about-icons { margin: 2em 0 0 0; } .contact { margin: 3em 0; } .contact h3 { font-size: 2.3em; width: 100%; margin: 2% auto 0; } .contact h3 span.left-icon { background: url(/src/blog/image/left.png) no-repeat 0px -1px; height: 37px; } .contact h3 span.right-icon { background: url(/src/blog/image/right.png) no-repeat 0px 4px; height: 38px; } ul.form li { width: 80%; } .about-right p { padding: 0px 0; font-size: 1.1em; } .top-menu { margin: 8% auto 5%; width: 96%; height: 72px; } } @media (max-width: 480px){ span.menu:before { content: url(/src/blog/image/nav-icon.png); cursor: pointer; height:32px; } .top-menu { float: right; margin: 0; background: none; border: none; } .top-menu ul{ display:none; } .top-menu ul li { font-size: 12px; display:inline-block; width: 100%; padding: 10px 0; } .top-menu ul li:hover { background: #000; color: #fff; } .top-menu ul li a { padding: 3px; font-size: 13px; width: 100%; font-weight: 600; display: block; margin: 0; color: #fff; } .top-menu ul li a:hover{ color:#fff; } span.menu{ display:block; float:right; margin: 54px 16px 0 0; } .top-menu ul{ margin: 0; z-index: 999; position: absolute; width: 96%; text-align: center; top: 82.8%; left: -6%; background: rgba(0, 0, 0, 0.81); width: 440px; } .nav { padding: 0; } .label-2 { width: 0; background: none; } div#banner-top h1 { font-size: 1.8em; } div#banner-top { padding-top: 6.5em; } div#banner-top h1 span.left-icon { width: 125px; background-size: 99px; height: 26px; } div#banner-top h1 { font-size: 1.3em; } div#banner-top h1 span.right-icon { width: 120px; background-size: 102px; height: 30px; } div#banner-top h2 span.left-icon { display: none; } div#banner-top h2 { font-size: 1em; margin-left: 0; } div#banner-top h2 span.right-icon { display: none; } .logo { bottom: -64px; left: 38%; width: 17%; } div#banner-top { padding-top: 9em; } .header-icons a span { width: 32px; height: 32px; background-size: 193px; } .header-icons a span.fb:hover { background-position: 0px -32px; } .header-icons a span.tw { background-position: -32px 0px; } .header-icons a span.tw:hover { background-position: -32px -32px; } .header-icons a span.pin { background-position: -65px 0px; } .header-icons a span.pin:hover { background-position: -65px -32px; } .header-icons a span.likdin { background-position: -97px 0px; } .header-icons a span.likdin:hover { background-position: -97px -32px; } .header-icons a span.dribble { background-position: -129px 0px; } .header-icons a span.dribble:hover { background-position: -129px -32px; } .header-icons a span.be { background-position: -162px 0px; } .header-icons a span.be:hover { background-position: -162px -32px; } .work { margin: 2em 0 0; } .work h3 span.right-icon { display: none; } .work h3 span.left-icon { display: none; } .about h3 span.left-icon{ display:none; } .about h3 span.right-icon{ display:none; } .contact h3 span.left-icon{ display:none; } .contact h3 span.right-icon{ display:none; } .work p { font-size: 1.1em; margin-bottom: 2em; } .work h3 { margin: 0% auto 0; } .project { margin-bottom: 2em; } #portfoliolist .portfolio { width: 49%; } .about p { font-size: 1.1em; } .about-icons a span { width: 32px; height: 32px; background-size: 193px; } .about-icons a span.fb:hover { background-position: 0px -32px; } .about-icons a span.tw { background-position: -32px 0px; } .about-icons a span.tw:hover { background-position: -32px -32px; } .about-icons a span.pin { background-position: -65px 0px; } .about-icons a span.pin:hover { background-position: -65px -32px; } .about-icons a span.likdin { background-position: -97px 0px; } .about-icons a span.likdin:hover { background-position: -97px -32px; } .about-icons a span.dribble { background-position: -129px 0px; } .about-icons a span.dribble:hover { background-position: -129px -32px; } .about-icons a span.be { background-position: -162px 0px; } .about-icons a span.be:hover { background-position: -162px -32px; } .about-info { margin: 2em 0 0; } .contact { margin: 2em 0; } .contact p { margin-bottom: 2em; font-size: 1.1em; } ul.form li { width: 90%; } .sub-button { width: 50%; } .contact p { margin-bottom: 4em; font-size: 0.9em; } .conatct-form { margin-bottom: 1em; } textarea { margin: 4px 0px -3px 0; } } @media (max-width: 320px){ div#banner-top h1 span.left-icon { background: url(/src/blog/image/left.png) no-repeat -4px 3px; width: 46px; background-size: 50px; height: 26px; } div#banner-top h1 span.right-icon { width: 42px; background-size: 56px; height: 30px; } .header-icons { margin: 1em 0 0; } .work { margin: 1.5em 0 0; } .work h3 { font-size: 1.4em; width: 100%; } .work p { font-size: .81em; margin-bottom: 1em; } span.menu { margin: 39px 8px 0 0; } .logo { bottom: -46px; left: 31%; width: 35%; } .top-menu ul { top: 95.8%; width: 285px; } ul.nav li:nth-child(2) { margin-right: 0; } div#banner-top { padding-top: 7.5em; } .about h3 { font-size: 1.4em; width: 100%; } .about p { font-size: .875em; } .about-left { width: 100%; float: none; margin-bottom: 18px; padding: 0; } .contact h3 { font-size: 1.4em; } .contact p { margin-bottom: 1em; font-size: .875em; line-height: 1.8em; } ul.form li { width: 98%; border: 3px solid #000; } input.text { width: 97%; padding: .5em; } textarea { padding: .5em; width: 96%; height: 125px; } input[type="submit"] { padding: .5em 0em; font-size: 1.1em; width: 94%; } .b-animate { font-size: 12px; width: 74%; } .contact { margin: 1.5em 0; } .copyrights { padding: 2em 0 1em; } div#portfoliolist { padding: 0 0px 0 5px; } .sub-button { border: 3px solid #000; } } /*--/responsive--*/
0.339171
0.073963
.bg-home { height: 100%; width: 100%; object-fit: cover; object-position: center; position: absolute; z-index: -1; } .settings-wrapper { z-index: 3; top: 25px; right: 25px; } .settings-wrapper .ionicon-settings { fill: #fff; height: 25px; width: 35px; } .settings-wrapper .dropdown-toggle::after { content: none; } .settings-wrapper .dropdown-menu { background-color: rgba(255, 255, 255, .7); transition: none; width: 600px; min-height: 320px; max-height: 320px; border: none; margin-top: 15px; } .settings-wrapper .tab-content { max-height: 320px; } .settings-wrapper .tab-content .title-menu-content span:first-child { font-size: 22px; font-weight: 600; } .settings-wrapper .tab-content .tab-pane { max-height: 320px; padding: 15px 25px; } .settings-wrapper .nav-pills::after { background-color: #f0f0f0; width: 1px; content: ""; height: 100%; position: absolute; right: 0; } .settings-wrapper .nav-pills>.nav-link { color: #777; } .settings-wrapper .nav-pills>.nav-link.active:first-child { border-top-left-radius: .25rem; } .settings-wrapper .nav-pills>.nav-link.active:last-child { border-bottom-left-radius: .25rem; } .settings-wrapper .nav-pills > .nav-link.active { background-color: #eee; font-weight:600; outline: none; border-top-left-radius: 0px; border-bottom-left-radius: 0px; transition: all .4s ease-in-out; } .content-wrapper { z-index: 2; position: relative; color: #fff; } .content-wrapper .content-top { margin-bottom: 6rem; } .content-wrapper .clocks { font-size: 7rem; font-weight: bold; } .content-wrapper .mantras { font-size: 3rem; } .content-wrapper .clocks, .content-wrapper .mantras { text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25); } /* Input Search */ .input-search-wrapper { width: 550px; margin-top: 20px; border-bottom: 3px solid #fff; } .input-search-wrapper .search-type-button { color: #fff; } .input-search-wrapper .ionicon-search { fill: #fff; height: 25px; width: 25px; } .input-search-wrapper .input-search:focus, .input-search-wrapper .input-search:active, .input-search-wrapper .dropdown-toggle:active, .input-search-wrapper .dropdown-toggle:focus { box-shadow: none; } .input-search-wrapper .input-search { font-size: 22px; color: #fff; } .input-search-wrapper .input-search::placeholder { font-size: 22px; color: #fff; }
assets/css/app.css
.bg-home { height: 100%; width: 100%; object-fit: cover; object-position: center; position: absolute; z-index: -1; } .settings-wrapper { z-index: 3; top: 25px; right: 25px; } .settings-wrapper .ionicon-settings { fill: #fff; height: 25px; width: 35px; } .settings-wrapper .dropdown-toggle::after { content: none; } .settings-wrapper .dropdown-menu { background-color: rgba(255, 255, 255, .7); transition: none; width: 600px; min-height: 320px; max-height: 320px; border: none; margin-top: 15px; } .settings-wrapper .tab-content { max-height: 320px; } .settings-wrapper .tab-content .title-menu-content span:first-child { font-size: 22px; font-weight: 600; } .settings-wrapper .tab-content .tab-pane { max-height: 320px; padding: 15px 25px; } .settings-wrapper .nav-pills::after { background-color: #f0f0f0; width: 1px; content: ""; height: 100%; position: absolute; right: 0; } .settings-wrapper .nav-pills>.nav-link { color: #777; } .settings-wrapper .nav-pills>.nav-link.active:first-child { border-top-left-radius: .25rem; } .settings-wrapper .nav-pills>.nav-link.active:last-child { border-bottom-left-radius: .25rem; } .settings-wrapper .nav-pills > .nav-link.active { background-color: #eee; font-weight:600; outline: none; border-top-left-radius: 0px; border-bottom-left-radius: 0px; transition: all .4s ease-in-out; } .content-wrapper { z-index: 2; position: relative; color: #fff; } .content-wrapper .content-top { margin-bottom: 6rem; } .content-wrapper .clocks { font-size: 7rem; font-weight: bold; } .content-wrapper .mantras { font-size: 3rem; } .content-wrapper .clocks, .content-wrapper .mantras { text-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25); } /* Input Search */ .input-search-wrapper { width: 550px; margin-top: 20px; border-bottom: 3px solid #fff; } .input-search-wrapper .search-type-button { color: #fff; } .input-search-wrapper .ionicon-search { fill: #fff; height: 25px; width: 25px; } .input-search-wrapper .input-search:focus, .input-search-wrapper .input-search:active, .input-search-wrapper .dropdown-toggle:active, .input-search-wrapper .dropdown-toggle:focus { box-shadow: none; } .input-search-wrapper .input-search { font-size: 22px; color: #fff; } .input-search-wrapper .input-search::placeholder { font-size: 22px; color: #fff; }
0.372049
0.052255
CUSTOM BTN VALUES ******************************************************/ .btn { padding: 14px 24px; border: 0 none; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; } .btn:focus, .btn:active:focus, .btn.active:focus { outline: 0 none; } /****************************************************** STANDARD BUTTONS ******************************************************/ .btn-default { border: 2px solid #C4C4C4; color: #737373; padding: 12px 22px; } .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background: #FFFFFF; border-color: #949494; color: #737373; } .btn-default:active, .btn-default.active { border-color: #737373; box-shadow: none; } .btn-primary { background: #0099cc; color: #ffffff; } .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background: #33a6cc; } .btn-primary:active, .btn-primary.active { background: #007299; box-shadow: none; } .btn-success { background: #00bf6f; color: #ffffff; } .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { background: #39bf87; } .btn-success:active, .btn-success.active { background: #008c52; box-shadow: none; } .btn-info { background: #31cde8; color: #ffffff; } .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { background: #5fd4e8; } .btn-info:active, .btn-info.active { background: #35a2b5; box-shadow: none; } .btn-warning { background: #eb8f34; color: #ffffff; } .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { background: #eba259; } .btn-warning:active, .btn-warning.active { background: #b87430; box-shadow: none; } .btn-danger { background: #f25454; color: #ffffff; } .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { background: #f26d6d; } .btn-danger:active, .btn-danger.active { background: #bf4343; box-shadow: none; } /****************************************************** SHARP BUTTONS ******************************************************/ .btn.sharp { border-radius: 0; } /****************************************************** OUTLINE BUTTONS ******************************************************/ .btn.outline { background: none; padding: 12px 22px; } .btn-primary.outline { border: 2px solid #0099cc; color: #FFF; } .btn-primary.outline:hover, .btn-primary.outline:focus, .btn-primary.outline:active, .btn-primary.outline.active, .open > .dropdown-toggle.btn-primary { color: #FFF; border-color: #33a6cc; } .btn-primary.outline:active, .btn-primary.outline.active { border-color: #007299; color: #FFF; box-shadow: none; } .btn-success.outline { border: 2px solid #00bf6f; color: #00bf6f; } .btn-success.outline:hover, .btn-success.outline:focus, .btn-success.outline:active, .btn-success.outline.active, .open > .dropdown-toggle.btn-success { border-color: #39bf87; color: #39bf87; } .btn-success.outline:active, .btn-success.outline.active { border-color: #008c52; color: #008c52; box-shadow: none; } .btn-info.outline { border: 2px solid #31cde8; color: #FFF; } .btn-info.outline:hover, .btn-info.outline:focus, .btn-info.outline:active, .btn-info.outline.active, .open > .dropdown-toggle.btn-info { border-color: #5fd4e8; color: #5fd4e8; } .btn-info.outline:active, .btn-info.outline.active { border-color: #35a2b5; color: #35a2b5; box-shadow: none; } .btn-warning.outline { border: 2px solid #eb8f34; color: #eb8f34; } .btn-warning.outline:hover, .btn-warning.outline:focus, .btn-warning.outline:active, .btn-warning.outline.active, .open > .dropdown-toggle.btn-warning { border-color: #eba259; color: #eba259; } .btn-warning.outline:active, .btn-warning.outline.active { border-color: #b87430; color: #b87430; box-shadow: none; } .btn-danger.outline { border: 2px solid #f25454; color: #f25454; } .btn-danger.outline:hover, .btn-danger.outline:focus, .btn-danger.outline:active, .btn-danger.outline.active, .open > .dropdown-toggle.btn-danger { border-color: #f26d6d; color: #f26d6d; } .btn-danger.outline:active, .btn-danger.outline.active { border-color: #bf4343; color: #bf4343; box-shadow: none; } /****************************************************** GRADIENT BUTTONS ******************************************************/ .btn-primary.gradient { background: -moz-linear-gradient(top, #33a6cc 50%, #0099cc 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#33a6cc), color-stop(50%,#0099cc)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #33a6cc 50%,#0099cc 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #33a6cc 50%,#0099cc 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #33a6cc 50%,#0099cc 50%); /* IE10+ */ background: linear-gradient(to bottom, #33a6cc 50%,#0099cc 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33a6cc', endColorstr='#0099cc',GradientType=0 ); /* IE6-9 */ } .btn-primary.gradient:hover, .btn-primary.gradient:focus, .btn-primary.gradient:active, .btn-primary.gradient.active, .open > .dropdown-toggle.btn-primary { background: -moz-linear-gradient(top, #66b2cc 50%, #33a6cc 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#66b2cc), color-stop(50%,#33a6cc)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #66b2cc 50%,#33a6cc 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #66b2cc 50%,#33a6cc 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #66b2cc 50%,#33a6cc 50%); /* IE10+ */ background: linear-gradient(to bottom, #66b2cc 50%,#33a6cc 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66b2cc', endColorstr='#33a6cc',GradientType=0 ); /* IE6-9 */ } .btn-primary.gradient:active, .btn-primary.gradient.active { background: -moz-linear-gradient(top, #267c99 50%, #007299 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#267c99), color-stop(50%,#007299)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #267c99 50%,#007299 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #267c99 50%,#007299 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #267c99 50%,#007299 50%); /* IE10+ */ background: linear-gradient(to bottom, #267c99 50%,#007299 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#267c99', endColorstr='#007299',GradientType=0 ); /* IE6-9 */ } .btn-success.gradient { background: -moz-linear-gradient(top, #39bf87 50%, #00bf6f 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#39bf87), color-stop(50%,#00bf6f)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #39bf87 50%,#00bf6f 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #39bf87 50%,#00bf6f 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #39bf87 50%,#00bf6f 50%); /* IE10+ */ background: linear-gradient(to bottom, #39bf87 50%,#00bf6f 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#39bf87', endColorstr='#00bf6f',GradientType=0 ); /* IE6-9 */ } .btn-success.gradient:hover, .btn-success.gradient:focus, .btn-success.gradient:active, .btn-success.gradient.active, .open > .dropdown-toggle.btn-success { background: -moz-linear-gradient(top, #73bf9f 50%, #39bf87 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#73bf9f), color-stop(50%,#39bf87)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #73bf9f 50%,#39bf87 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #73bf9f 50%,#39bf87 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #73bf9f 50%,#39bf87 50%); /* IE10+ */ background: linear-gradient(to bottom, #73bf9f 50%,#39bf87 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#73bf9f', endColorstr='#39bf87',GradientType=0 ); /* IE6-9 */ } .btn-success.gradient:active, .btn-success.gradient.active { background: -moz-linear-gradient(top, #2a8c63 50%, #008c52 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#2a8c63), color-stop(50%,#008c52)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #2a8c63 50%,#008c52 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #2a8c63 50%,#008c52 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #2a8c63 50%,#008c52 50%); /* IE10+ */ background: linear-gradient(to bottom, #2a8c63 50%,#008c52 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2a8c63', endColorstr='#008c52',GradientType=0 ); /* IE6-9 */ } .btn-info.gradient { background: -moz-linear-gradient(top, #5fd4e8 50%, #31cde8 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#5fd4e8), color-stop(50%,#31cde8)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #5fd4e8 50%,#31cde8 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #5fd4e8 50%,#31cde8 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #5fd4e8 50%,#31cde8 50%); /* IE10+ */ background: linear-gradient(to bottom, #5fd4e8 50%,#31cde8 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5fd4e8', endColorstr='#31cde8',GradientType=0 ); /* IE6-9 */ } .btn-info.gradient:hover, .btn-info.gradient:focus, .btn-info.gradient:active, .btn-info.gradient.active, .open > .dropdown-toggle.btn-info { background: -moz-linear-gradient(top, #8edae8 50%, #5fd4e8 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#8edae8), color-stop(50%,#5fd4e8)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #8edae8 50%,#5fd4e8 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #8edae8 50%,#5fd4e8 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #8edae8 50%,#5fd4e8 50%); /* IE10+ */ background: linear-gradient(to bottom, #8edae8 50%,#5fd4e8 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8edae8', endColorstr='#5fd4e8',GradientType=0 ); /* IE6-9 */ } .btn-info.gradient:active, .btn-info.gradient.active { background: -moz-linear-gradient(top, #6baab5 50%, #35a2b5 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#6baab5), color-stop(50%,#35a2b5)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #6baab5 50%,#35a2b5 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #6baab5 50%,#35a2b5 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #6baab5 50%,#35a2b5 50%); /* IE10+ */ background: linear-gradient(to bottom, #6baab5 50%,#35a2b5 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6baab5', endColorstr='#35a2b5',GradientType=0 ); /* IE6-9 */ } .btn-warning.gradient { background: -moz-linear-gradient(top, #eba259 50%, #eb8f34 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#eba259), color-stop(50%,#eb8f34)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #eba259 50%,#eb8f34 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #eba259 50%,#eb8f34 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #eba259 50%,#eb8f34 50%); /* IE10+ */ background: linear-gradient(to bottom, #eba259 50%,#eb8f34 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eba259', endColorstr='#eb8f34',GradientType=0 ); /* IE6-9 */ } .btn-warning.gradient:hover, .btn-warning.gradient:focus, .btn-warning.gradient:active, .btn-warning.gradient.active, .open > .dropdown-toggle.btn-warning { background: -moz-linear-gradient(top, #ebb57f 50%, #eba259 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#ebb57f), color-stop(50%,#eba259)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #ebb57f 50%,#eba259 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #ebb57f 50%,#eba259 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #ebb57f 50%,#eba259 50%); /* IE10+ */ background: linear-gradient(to bottom, #ebb57f 50%,#eba259 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebb57f', endColorstr='#eba259',GradientType=0 ); /* IE6-9 */ } .btn-warning.gradient:active, .btn-warning.gradient.active { background: -moz-linear-gradient(top, #b8824d 50%, #b87430 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#b8824d), color-stop(50%,#b87430)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #b8824d 50%,#b87430 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #b8824d 50%,#b87430 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #b8824d 50%,#b87430 50%); /* IE10+ */ background: linear-gradient(to bottom, #b8824d 50%,#b87430 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8824d', endColorstr='#b87430',GradientType=0 ); /* IE6-9 */ } .btn-danger.gradient { background: -moz-linear-gradient(top, #f26d6d 50%, #f25454 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#f26d6d), color-stop(50%,#f25454)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #f26d6d 50%,#f25454 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #f26d6d 50%,#f25454 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #f26d6d 50%,#f25454 50%); /* IE10+ */ background: linear-gradient(to bottom, #f26d6d 50%,#f25454 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f26d6d', endColorstr='#f25454',GradientType=0 ); /* IE6-9 */ } .btn-danger.gradient:hover, .btn-danger.gradient:focus, .btn-danger.gradient:active, .btn-danger.gradient.active, .open > .dropdown-toggle.btn-danger { background: -moz-linear-gradient(top, #f28585 50%, #f26d6d 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#f28585), color-stop(50%,#f26d6d)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #f28585 50%,#f26d6d 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #f28585 50%,#f26d6d 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #f28585 50%,#f26d6d 50%); /* IE10+ */ background: linear-gradient(to bottom, #f28585 50%,#f26d6d 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f28585', endColorstr='#f26d6d',GradientType=0 ); /* IE6-9 */ } .btn-danger.gradient:active, .btn-danger.gradient.active { background: -moz-linear-gradient(top, #bf5656 50%, #bf4343 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#bf5656), color-stop(50%,#bf4343)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #bf5656 50%,#bf4343 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #bf5656 50%,#bf4343 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #bf5656 50%,#bf4343 50%); /* IE10+ */ background: linear-gradient(to bottom, #bf5656 50%,#bf4343 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bf5656', endColorstr='#bf4343',GradientType=0 ); /* IE6-9 */ } /****************************************************** ROUNDED BUTTONS ******************************************************/ .btn.round { border-radius: 24px; } .btn-lg.round { border-radius: 32px; } .btn-sm.round { border-radius: 14px; } .btn-xs.round { border-radius: 10px; } /****************************************************** RAISED BUTTONS ******************************************************/ .btn-primary.raised { box-shadow: 0 3px 0 0 #007299; } .btn-primary.raised:active, .btn-primary.raised.active { background: #33a6cc; box-shadow: none; margin-bottom: -3px; margin-top: 3px; } .btn-success.raised { box-shadow: 0 3px 0 0 #008c52; } .btn-success.raised:active, .btn-success.raised.active { background: #39bf87; box-shadow: none; margin-bottom: -3px; margin-top: 3px; } .btn-info.raised { box-shadow: 0 3px 0 0 #35a2b5; } .btn-info.raised:active, .btn-info.raised.active { background: #5fd4e8; box-shadow: none; margin-bottom: -3px; margin-top: 3px; } .btn-warning.raised { box-shadow: 0 3px 0 0 #b87430; } .btn-warning.raised:active, .btn-warning.raised.active { background: #eba259; box-shadow: none; margin-bottom: -3px; margin-top: 3px; } .btn-danger.raised { box-shadow: 0 3px 0 0 #bf4343; } .btn-danger.raised:active, .btn-danger.raised.active { background: #f26d6d; box-shadow: none; margin-bottom: -3px; margin-top: 3px; } /****************************************************** BUTTON SIZING ******************************************************/ .btn-xs, .btn-group-xs > .btn { padding: 2px 6px; } .btn-sm, .btn-group-sm > .btn { padding: 8px 12px; } .btn-lg { padding: 20px 40px; border-radius: 4px; } .btn-xs.btn-default, .btn-xs.outline { padding: 0px 4px; } .btn-sm.btn-default, .btn-sm.outline { padding: 6px 10px; } .btn-lg.btn-default, .btn-lg.outline { padding: 18px 38px; }
public/purple/css/buttons.css
CUSTOM BTN VALUES ******************************************************/ .btn { padding: 14px 24px; border: 0 none; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; } .btn:focus, .btn:active:focus, .btn.active:focus { outline: 0 none; } /****************************************************** STANDARD BUTTONS ******************************************************/ .btn-default { border: 2px solid #C4C4C4; color: #737373; padding: 12px 22px; } .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background: #FFFFFF; border-color: #949494; color: #737373; } .btn-default:active, .btn-default.active { border-color: #737373; box-shadow: none; } .btn-primary { background: #0099cc; color: #ffffff; } .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary { background: #33a6cc; } .btn-primary:active, .btn-primary.active { background: #007299; box-shadow: none; } .btn-success { background: #00bf6f; color: #ffffff; } .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success { background: #39bf87; } .btn-success:active, .btn-success.active { background: #008c52; box-shadow: none; } .btn-info { background: #31cde8; color: #ffffff; } .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info.active, .open > .dropdown-toggle.btn-info { background: #5fd4e8; } .btn-info:active, .btn-info.active { background: #35a2b5; box-shadow: none; } .btn-warning { background: #eb8f34; color: #ffffff; } .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning.active, .open > .dropdown-toggle.btn-warning { background: #eba259; } .btn-warning:active, .btn-warning.active { background: #b87430; box-shadow: none; } .btn-danger { background: #f25454; color: #ffffff; } .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active, .open > .dropdown-toggle.btn-danger { background: #f26d6d; } .btn-danger:active, .btn-danger.active { background: #bf4343; box-shadow: none; } /****************************************************** SHARP BUTTONS ******************************************************/ .btn.sharp { border-radius: 0; } /****************************************************** OUTLINE BUTTONS ******************************************************/ .btn.outline { background: none; padding: 12px 22px; } .btn-primary.outline { border: 2px solid #0099cc; color: #FFF; } .btn-primary.outline:hover, .btn-primary.outline:focus, .btn-primary.outline:active, .btn-primary.outline.active, .open > .dropdown-toggle.btn-primary { color: #FFF; border-color: #33a6cc; } .btn-primary.outline:active, .btn-primary.outline.active { border-color: #007299; color: #FFF; box-shadow: none; } .btn-success.outline { border: 2px solid #00bf6f; color: #00bf6f; } .btn-success.outline:hover, .btn-success.outline:focus, .btn-success.outline:active, .btn-success.outline.active, .open > .dropdown-toggle.btn-success { border-color: #39bf87; color: #39bf87; } .btn-success.outline:active, .btn-success.outline.active { border-color: #008c52; color: #008c52; box-shadow: none; } .btn-info.outline { border: 2px solid #31cde8; color: #FFF; } .btn-info.outline:hover, .btn-info.outline:focus, .btn-info.outline:active, .btn-info.outline.active, .open > .dropdown-toggle.btn-info { border-color: #5fd4e8; color: #5fd4e8; } .btn-info.outline:active, .btn-info.outline.active { border-color: #35a2b5; color: #35a2b5; box-shadow: none; } .btn-warning.outline { border: 2px solid #eb8f34; color: #eb8f34; } .btn-warning.outline:hover, .btn-warning.outline:focus, .btn-warning.outline:active, .btn-warning.outline.active, .open > .dropdown-toggle.btn-warning { border-color: #eba259; color: #eba259; } .btn-warning.outline:active, .btn-warning.outline.active { border-color: #b87430; color: #b87430; box-shadow: none; } .btn-danger.outline { border: 2px solid #f25454; color: #f25454; } .btn-danger.outline:hover, .btn-danger.outline:focus, .btn-danger.outline:active, .btn-danger.outline.active, .open > .dropdown-toggle.btn-danger { border-color: #f26d6d; color: #f26d6d; } .btn-danger.outline:active, .btn-danger.outline.active { border-color: #bf4343; color: #bf4343; box-shadow: none; } /****************************************************** GRADIENT BUTTONS ******************************************************/ .btn-primary.gradient { background: -moz-linear-gradient(top, #33a6cc 50%, #0099cc 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#33a6cc), color-stop(50%,#0099cc)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #33a6cc 50%,#0099cc 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #33a6cc 50%,#0099cc 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #33a6cc 50%,#0099cc 50%); /* IE10+ */ background: linear-gradient(to bottom, #33a6cc 50%,#0099cc 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33a6cc', endColorstr='#0099cc',GradientType=0 ); /* IE6-9 */ } .btn-primary.gradient:hover, .btn-primary.gradient:focus, .btn-primary.gradient:active, .btn-primary.gradient.active, .open > .dropdown-toggle.btn-primary { background: -moz-linear-gradient(top, #66b2cc 50%, #33a6cc 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#66b2cc), color-stop(50%,#33a6cc)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #66b2cc 50%,#33a6cc 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #66b2cc 50%,#33a6cc 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #66b2cc 50%,#33a6cc 50%); /* IE10+ */ background: linear-gradient(to bottom, #66b2cc 50%,#33a6cc 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#66b2cc', endColorstr='#33a6cc',GradientType=0 ); /* IE6-9 */ } .btn-primary.gradient:active, .btn-primary.gradient.active { background: -moz-linear-gradient(top, #267c99 50%, #007299 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#267c99), color-stop(50%,#007299)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #267c99 50%,#007299 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #267c99 50%,#007299 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #267c99 50%,#007299 50%); /* IE10+ */ background: linear-gradient(to bottom, #267c99 50%,#007299 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#267c99', endColorstr='#007299',GradientType=0 ); /* IE6-9 */ } .btn-success.gradient { background: -moz-linear-gradient(top, #39bf87 50%, #00bf6f 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#39bf87), color-stop(50%,#00bf6f)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #39bf87 50%,#00bf6f 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #39bf87 50%,#00bf6f 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #39bf87 50%,#00bf6f 50%); /* IE10+ */ background: linear-gradient(to bottom, #39bf87 50%,#00bf6f 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#39bf87', endColorstr='#00bf6f',GradientType=0 ); /* IE6-9 */ } .btn-success.gradient:hover, .btn-success.gradient:focus, .btn-success.gradient:active, .btn-success.gradient.active, .open > .dropdown-toggle.btn-success { background: -moz-linear-gradient(top, #73bf9f 50%, #39bf87 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#73bf9f), color-stop(50%,#39bf87)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #73bf9f 50%,#39bf87 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #73bf9f 50%,#39bf87 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #73bf9f 50%,#39bf87 50%); /* IE10+ */ background: linear-gradient(to bottom, #73bf9f 50%,#39bf87 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#73bf9f', endColorstr='#39bf87',GradientType=0 ); /* IE6-9 */ } .btn-success.gradient:active, .btn-success.gradient.active { background: -moz-linear-gradient(top, #2a8c63 50%, #008c52 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#2a8c63), color-stop(50%,#008c52)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #2a8c63 50%,#008c52 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #2a8c63 50%,#008c52 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #2a8c63 50%,#008c52 50%); /* IE10+ */ background: linear-gradient(to bottom, #2a8c63 50%,#008c52 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2a8c63', endColorstr='#008c52',GradientType=0 ); /* IE6-9 */ } .btn-info.gradient { background: -moz-linear-gradient(top, #5fd4e8 50%, #31cde8 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#5fd4e8), color-stop(50%,#31cde8)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #5fd4e8 50%,#31cde8 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #5fd4e8 50%,#31cde8 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #5fd4e8 50%,#31cde8 50%); /* IE10+ */ background: linear-gradient(to bottom, #5fd4e8 50%,#31cde8 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5fd4e8', endColorstr='#31cde8',GradientType=0 ); /* IE6-9 */ } .btn-info.gradient:hover, .btn-info.gradient:focus, .btn-info.gradient:active, .btn-info.gradient.active, .open > .dropdown-toggle.btn-info { background: -moz-linear-gradient(top, #8edae8 50%, #5fd4e8 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#8edae8), color-stop(50%,#5fd4e8)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #8edae8 50%,#5fd4e8 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #8edae8 50%,#5fd4e8 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #8edae8 50%,#5fd4e8 50%); /* IE10+ */ background: linear-gradient(to bottom, #8edae8 50%,#5fd4e8 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8edae8', endColorstr='#5fd4e8',GradientType=0 ); /* IE6-9 */ } .btn-info.gradient:active, .btn-info.gradient.active { background: -moz-linear-gradient(top, #6baab5 50%, #35a2b5 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#6baab5), color-stop(50%,#35a2b5)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #6baab5 50%,#35a2b5 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #6baab5 50%,#35a2b5 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #6baab5 50%,#35a2b5 50%); /* IE10+ */ background: linear-gradient(to bottom, #6baab5 50%,#35a2b5 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6baab5', endColorstr='#35a2b5',GradientType=0 ); /* IE6-9 */ } .btn-warning.gradient { background: -moz-linear-gradient(top, #eba259 50%, #eb8f34 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#eba259), color-stop(50%,#eb8f34)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #eba259 50%,#eb8f34 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #eba259 50%,#eb8f34 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #eba259 50%,#eb8f34 50%); /* IE10+ */ background: linear-gradient(to bottom, #eba259 50%,#eb8f34 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eba259', endColorstr='#eb8f34',GradientType=0 ); /* IE6-9 */ } .btn-warning.gradient:hover, .btn-warning.gradient:focus, .btn-warning.gradient:active, .btn-warning.gradient.active, .open > .dropdown-toggle.btn-warning { background: -moz-linear-gradient(top, #ebb57f 50%, #eba259 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#ebb57f), color-stop(50%,#eba259)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #ebb57f 50%,#eba259 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #ebb57f 50%,#eba259 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #ebb57f 50%,#eba259 50%); /* IE10+ */ background: linear-gradient(to bottom, #ebb57f 50%,#eba259 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebb57f', endColorstr='#eba259',GradientType=0 ); /* IE6-9 */ } .btn-warning.gradient:active, .btn-warning.gradient.active { background: -moz-linear-gradient(top, #b8824d 50%, #b87430 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#b8824d), color-stop(50%,#b87430)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #b8824d 50%,#b87430 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #b8824d 50%,#b87430 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #b8824d 50%,#b87430 50%); /* IE10+ */ background: linear-gradient(to bottom, #b8824d 50%,#b87430 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8824d', endColorstr='#b87430',GradientType=0 ); /* IE6-9 */ } .btn-danger.gradient { background: -moz-linear-gradient(top, #f26d6d 50%, #f25454 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#f26d6d), color-stop(50%,#f25454)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #f26d6d 50%,#f25454 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #f26d6d 50%,#f25454 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #f26d6d 50%,#f25454 50%); /* IE10+ */ background: linear-gradient(to bottom, #f26d6d 50%,#f25454 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f26d6d', endColorstr='#f25454',GradientType=0 ); /* IE6-9 */ } .btn-danger.gradient:hover, .btn-danger.gradient:focus, .btn-danger.gradient:active, .btn-danger.gradient.active, .open > .dropdown-toggle.btn-danger { background: -moz-linear-gradient(top, #f28585 50%, #f26d6d 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#f28585), color-stop(50%,#f26d6d)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #f28585 50%,#f26d6d 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #f28585 50%,#f26d6d 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #f28585 50%,#f26d6d 50%); /* IE10+ */ background: linear-gradient(to bottom, #f28585 50%,#f26d6d 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f28585', endColorstr='#f26d6d',GradientType=0 ); /* IE6-9 */ } .btn-danger.gradient:active, .btn-danger.gradient.active { background: -moz-linear-gradient(top, #bf5656 50%, #bf4343 50%); /* FF3.6+ */ background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#bf5656), color-stop(50%,#bf4343)); /* Chrome,Safari4+ */ background: -webkit-linear-gradient(top, #bf5656 50%,#bf4343 50%); /* Chrome10+,Safari5.1+ */ background: -o-linear-gradient(top, #bf5656 50%,#bf4343 50%); /* Opera 11.10+ */ background: -ms-linear-gradient(top, #bf5656 50%,#bf4343 50%); /* IE10+ */ background: linear-gradient(to bottom, #bf5656 50%,#bf4343 50%); /* W3C */ filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bf5656', endColorstr='#bf4343',GradientType=0 ); /* IE6-9 */ } /****************************************************** ROUNDED BUTTONS ******************************************************/ .btn.round { border-radius: 24px; } .btn-lg.round { border-radius: 32px; } .btn-sm.round { border-radius: 14px; } .btn-xs.round { border-radius: 10px; } /****************************************************** RAISED BUTTONS ******************************************************/ .btn-primary.raised { box-shadow: 0 3px 0 0 #007299; } .btn-primary.raised:active, .btn-primary.raised.active { background: #33a6cc; box-shadow: none; margin-bottom: -3px; margin-top: 3px; } .btn-success.raised { box-shadow: 0 3px 0 0 #008c52; } .btn-success.raised:active, .btn-success.raised.active { background: #39bf87; box-shadow: none; margin-bottom: -3px; margin-top: 3px; } .btn-info.raised { box-shadow: 0 3px 0 0 #35a2b5; } .btn-info.raised:active, .btn-info.raised.active { background: #5fd4e8; box-shadow: none; margin-bottom: -3px; margin-top: 3px; } .btn-warning.raised { box-shadow: 0 3px 0 0 #b87430; } .btn-warning.raised:active, .btn-warning.raised.active { background: #eba259; box-shadow: none; margin-bottom: -3px; margin-top: 3px; } .btn-danger.raised { box-shadow: 0 3px 0 0 #bf4343; } .btn-danger.raised:active, .btn-danger.raised.active { background: #f26d6d; box-shadow: none; margin-bottom: -3px; margin-top: 3px; } /****************************************************** BUTTON SIZING ******************************************************/ .btn-xs, .btn-group-xs > .btn { padding: 2px 6px; } .btn-sm, .btn-group-sm > .btn { padding: 8px 12px; } .btn-lg { padding: 20px 40px; border-radius: 4px; } .btn-xs.btn-default, .btn-xs.outline { padding: 0px 4px; } .btn-sm.btn-default, .btn-sm.outline { padding: 6px 10px; } .btn-lg.btn-default, .btn-lg.outline { padding: 18px 38px; }
0.167832
0.040276
:root { --color-scrollbar-track: #11488c; --color-header: #1a5192; --color-input-focus: #245a98; --color-header-hover: #2f639e; --color-separator: #3b6ca5; --color-toolbar: #4776ab; --color-input-border: #9dc3e2; --color-toolbar-hover: #aecfe8; --color-button-hover: #c0dbed; --color-input-disabled: #d3e6f3; --color-background: #e7f2f9; --color-list-secondary: var(--color-button-hover); --color-input-checkbox: var(--color-header); --color-input-toggle-focus: var(--color-toolbar-hover); --color-input-toggle-indeterminate: var(--color-header-hover); --color-input-toggle-on: var(--color-header); --color-text: #000; --color-textAlt: #fff; --color-textNeither: #888; --color-element-background: #fff; --color-input-text: #000; --color-input-background: #fff; --color-help-content-text: #000; --color-help-content-border: #555; --color-disabled-text: #6b6b6b; --color-header-text: #fff; --color-selected-tab: #fff; --color-help-content: #fff; --color-focus-text: #fff; --color-focus-foreground: rgba(0, 0, 0, 0.75); --color-focus-background: rgba(0, 0, 0, 0.25); --color-display-preview-background: rgba(0, 0, 0, 0.85); --color-add: #0969cf; --color-remove: #cf0909; --color-error: #f44336; --color-error-background: #ffebee; --color-warning: #ffeb3b; --color-warning-background: #fffde7; --color-prism_symbol: #b3e5fc; --color-prism_boolean: #4f9fe5; --color-prism_number: #aed581; --color-prism_string: #ff9e80; --color-prism_keyword: #e91e63; } @media (prefers-color-scheme: dark) { :root { --color-header: #090909; --color-separator: #111111; --color-toolbar-hover: #1b1b1b; --color-background: #212121; --color-header-hover: #373737; --color-toolbar: #434343; --color-input-focus: #cfcfcf; --color-input-disabled: #5a5a5a; --color-button-hover: #e4e4e4; --color-input-border: #f5f5f5; --color-scrollbar-track: #fcfcfc; --color-list-secondary: #4f4f4f; --color-input-checkbox: #e4e4e4; --color-input-toggle-focus: #a9a9a9; --color-input-toggle-indeterminate: #c5c2c2; --color-input-toggle-on: #fff; --color-text: #f5f5f5; --color-textAlt: #111111; --color-element-background: #000; --color-input-text: #f5f5f5; --color-input-background: #000; --color-header-text: #f5f5f5; --color-selected-tab: #000; --color-disabled-text: #777777; --color-focus-text: #000; --color-focus-foreground: #fff; --color-focus-background: rgba(255, 255, 255, 0.5); --color-error-background: #440000; --color-warning-background: #353000; } }
TokaBlockGenerator/css/color.css
:root { --color-scrollbar-track: #11488c; --color-header: #1a5192; --color-input-focus: #245a98; --color-header-hover: #2f639e; --color-separator: #3b6ca5; --color-toolbar: #4776ab; --color-input-border: #9dc3e2; --color-toolbar-hover: #aecfe8; --color-button-hover: #c0dbed; --color-input-disabled: #d3e6f3; --color-background: #e7f2f9; --color-list-secondary: var(--color-button-hover); --color-input-checkbox: var(--color-header); --color-input-toggle-focus: var(--color-toolbar-hover); --color-input-toggle-indeterminate: var(--color-header-hover); --color-input-toggle-on: var(--color-header); --color-text: #000; --color-textAlt: #fff; --color-textNeither: #888; --color-element-background: #fff; --color-input-text: #000; --color-input-background: #fff; --color-help-content-text: #000; --color-help-content-border: #555; --color-disabled-text: #6b6b6b; --color-header-text: #fff; --color-selected-tab: #fff; --color-help-content: #fff; --color-focus-text: #fff; --color-focus-foreground: rgba(0, 0, 0, 0.75); --color-focus-background: rgba(0, 0, 0, 0.25); --color-display-preview-background: rgba(0, 0, 0, 0.85); --color-add: #0969cf; --color-remove: #cf0909; --color-error: #f44336; --color-error-background: #ffebee; --color-warning: #ffeb3b; --color-warning-background: #fffde7; --color-prism_symbol: #b3e5fc; --color-prism_boolean: #4f9fe5; --color-prism_number: #aed581; --color-prism_string: #ff9e80; --color-prism_keyword: #e91e63; } @media (prefers-color-scheme: dark) { :root { --color-header: #090909; --color-separator: #111111; --color-toolbar-hover: #1b1b1b; --color-background: #212121; --color-header-hover: #373737; --color-toolbar: #434343; --color-input-focus: #cfcfcf; --color-input-disabled: #5a5a5a; --color-button-hover: #e4e4e4; --color-input-border: #f5f5f5; --color-scrollbar-track: #fcfcfc; --color-list-secondary: #4f4f4f; --color-input-checkbox: #e4e4e4; --color-input-toggle-focus: #a9a9a9; --color-input-toggle-indeterminate: #c5c2c2; --color-input-toggle-on: #fff; --color-text: #f5f5f5; --color-textAlt: #111111; --color-element-background: #000; --color-input-text: #f5f5f5; --color-input-background: #000; --color-header-text: #f5f5f5; --color-selected-tab: #000; --color-disabled-text: #777777; --color-focus-text: #000; --color-focus-foreground: #fff; --color-focus-background: rgba(255, 255, 255, 0.5); --color-error-background: #440000; --color-warning-background: #353000; } }
0.515864
0.126542
/* -------------- General Page Info -----------------*/ hr { width: 100%; height: 2px; background-color: #7eddb7; border: 0; margin: 40px auto; } body { background-color: black; font-family: Arial; color: #7eddb7; } h1 { background-color: #2b2b2b; padding: 5px; margin: 5px; } h4, h5 { padding: 0px; margin: 0px; } a { color: #7eddb7 } .container { background-color: #2b2b2b; padding: 5px; margin: 20px; } .sub-container { background-color: #464747; padding: 5px; margin: 5px; } .spacer { padding: 0px; } .midspacer { padding: 0px; } .midspacer2{ padding: 0px; } /* -------------- Header Formatting -----------------*/ header { background-color: rgba(0,0,0,.7); position: fixed; z-index: 10; top: 0; left: 0; width: 100%; color: #fff; padding: 5px 100px 5px; display: flex; justify-content: space-around; align-items: center; } header a { text-decoration: none; color: #7eddb7; opacity: .6; cursor: pointer; } header a:hover { opacity: 1; } header nav ul { font-size: 14px; display: flex; flex-direction: row; justify-content: flex-end; } header nav li { margin: 0 6px; } header nav li: first-child { margin-left: 0; } header nav li: last-child { margin-right: 0; } /* -------------- API Form Formatting -----------------*/ .input-parameter { margin: 2px; } #dataParameters { margin-left: 5%; } #api-form { background-color: #464747; padding: 12px; } ul { list-style: none; } /* -------------- FOOTER -----------------*/ footer { background-color: #131622; color: white; text-align: center; background: linear-gradient(to bottom, #2b2b2b, #000 100%); display: flex; flex-direction: column; align-items: center; padding: 5px; margin: 5px; } footer ul { //margin-bottom: 25px; display: flex; flex-direction: row; } footer p { font-size: 14px; color: #7eddb7; //margin-bottom: 10px; } footer ul li { margin: 0 8px; } footer ul li a { font-size: 36px; cursor: pointer; color: #7eddb7; }
qb_api_ajax_styling.css
/* -------------- General Page Info -----------------*/ hr { width: 100%; height: 2px; background-color: #7eddb7; border: 0; margin: 40px auto; } body { background-color: black; font-family: Arial; color: #7eddb7; } h1 { background-color: #2b2b2b; padding: 5px; margin: 5px; } h4, h5 { padding: 0px; margin: 0px; } a { color: #7eddb7 } .container { background-color: #2b2b2b; padding: 5px; margin: 20px; } .sub-container { background-color: #464747; padding: 5px; margin: 5px; } .spacer { padding: 0px; } .midspacer { padding: 0px; } .midspacer2{ padding: 0px; } /* -------------- Header Formatting -----------------*/ header { background-color: rgba(0,0,0,.7); position: fixed; z-index: 10; top: 0; left: 0; width: 100%; color: #fff; padding: 5px 100px 5px; display: flex; justify-content: space-around; align-items: center; } header a { text-decoration: none; color: #7eddb7; opacity: .6; cursor: pointer; } header a:hover { opacity: 1; } header nav ul { font-size: 14px; display: flex; flex-direction: row; justify-content: flex-end; } header nav li { margin: 0 6px; } header nav li: first-child { margin-left: 0; } header nav li: last-child { margin-right: 0; } /* -------------- API Form Formatting -----------------*/ .input-parameter { margin: 2px; } #dataParameters { margin-left: 5%; } #api-form { background-color: #464747; padding: 12px; } ul { list-style: none; } /* -------------- FOOTER -----------------*/ footer { background-color: #131622; color: white; text-align: center; background: linear-gradient(to bottom, #2b2b2b, #000 100%); display: flex; flex-direction: column; align-items: center; padding: 5px; margin: 5px; } footer ul { //margin-bottom: 25px; display: flex; flex-direction: row; } footer p { font-size: 14px; color: #7eddb7; //margin-bottom: 10px; } footer ul li { margin: 0 8px; } footer ul li a { font-size: 36px; cursor: pointer; color: #7eddb7; }
0.315947
0.063337
md-list { display: block; padding: 8px 0px 8px 0px; } md-list .md-subheader { font-size: 14px; font-weight: 500; letter-spacing: 0.010em; line-height: 1.2em; } md-list-item { position: relative; } md-list-item.md-proxy-focus.md-focused .md-no-style { transition: background-color 0.15s linear; } md-list-item.md-no-proxy, md-list-item .md-no-style { position: relative; padding: 0px 16px; -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; } md-list-item.md-no-proxy.md-button, md-list-item .md-no-style.md-button { font-size: inherit; height: inherit; text-align: left; text-transform: none; width: 100%; white-space: normal; -webkit-flex-direction: inherit; -ms-flex-direction: inherit; flex-direction: inherit; -webkit-align-items: inherit; -ms-flex-align: inherit; align-items: inherit; border-radius: 0; } md-list-item.md-no-proxy.md-button > .md-ripple-container, md-list-item .md-no-style.md-button > .md-ripple-container { border-radius: 0; } md-list-item.md-no-proxy:focus, md-list-item .md-no-style:focus { outline: none; } md-list-item.md-with-secondary { position: relative; } md-list-item.md-clickable:hover { cursor: pointer; } md-list-item md-divider { position: absolute; bottom: 0; left: 0; width: 100%; } md-list-item md-divider[md-inset] { left: 96px; width: calc(100% - 96px); margin: 0; } md-list-item, md-list-item .md-list-item-inner { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-align-items: center; -ms-flex-align: center; align-items: center; min-height: 48px; height: auto; } md-list-item > div.md-primary > md-icon:not(.md-avatar-icon), md-list-item > div.md-secondary > md-icon:not(.md-avatar-icon), md-list-item > md-icon:first-child:not(.md-avatar-icon), md-list-item > md-icon.md-secondary:not(.md-avatar-icon), md-list-item .md-list-item-inner > div.md-primary > md-icon:not(.md-avatar-icon), md-list-item .md-list-item-inner > div.md-secondary > md-icon:not(.md-avatar-icon), md-list-item .md-list-item-inner > md-icon:first-child:not(.md-avatar-icon), md-list-item .md-list-item-inner > md-icon.md-secondary:not(.md-avatar-icon) { width: 24px; margin-top: 16px; margin-bottom: 12px; box-sizing: content-box; } md-list-item > div.md-primary > md-checkbox, md-list-item > div.md-secondary > md-checkbox, md-list-item > md-checkbox, md-list-item md-checkbox.md-secondary, md-list-item .md-list-item-inner > div.md-primary > md-checkbox, md-list-item .md-list-item-inner > div.md-secondary > md-checkbox, md-list-item .md-list-item-inner > md-checkbox, md-list-item .md-list-item-inner md-checkbox.md-secondary { -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; } md-list-item > div.md-primary > md-checkbox .md-label, md-list-item > div.md-secondary > md-checkbox .md-label, md-list-item > md-checkbox .md-label, md-list-item md-checkbox.md-secondary .md-label, md-list-item .md-list-item-inner > div.md-primary > md-checkbox .md-label, md-list-item .md-list-item-inner > div.md-secondary > md-checkbox .md-label, md-list-item .md-list-item-inner > md-checkbox .md-label, md-list-item .md-list-item-inner md-checkbox.md-secondary .md-label { display: none; } md-list-item > md-icon:first-child:not(.md-avatar-icon), md-list-item .md-list-item-inner > md-icon:first-child:not(.md-avatar-icon) { margin-right: 32px; } md-list-item > md-checkbox, md-list-item .md-list-item-inner > md-checkbox { width: 24px; margin-left: 3px; margin-right: 29px; margin-top: 16px; } md-list-item .md-avatar, md-list-item .md-avatar-icon, md-list-item .md-list-item-inner .md-avatar, md-list-item .md-list-item-inner .md-avatar-icon { margin-top: 8px; margin-bottom: 8px; margin-right: 16px; border-radius: 50%; box-sizing: content-box; } md-list-item .md-avatar, md-list-item .md-list-item-inner .md-avatar { width: 40px; height: 40px; } md-list-item .md-avatar-icon, md-list-item .md-list-item-inner .md-avatar-icon { padding: 8px; } md-list-item md-checkbox.md-secondary, md-list-item md-switch.md-secondary, md-list-item .md-list-item-inner md-checkbox.md-secondary, md-list-item .md-list-item-inner md-switch.md-secondary { margin-top: 0; margin-bottom: 0; } md-list-item md-checkbox.md-secondary, md-list-item .md-list-item-inner md-checkbox.md-secondary { margin-right: 0; } md-list-item md-switch.md-secondary, md-list-item .md-list-item-inner md-switch.md-secondary { margin-right: -6px; } md-list-item button.md-button.md-secondary-container, md-list-item .md-list-item-inner button.md-button.md-secondary-container { background-color: transparent; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; border-radius: 50%; margin: 0px; min-width: 0px; } md-list-item button.md-button.md-secondary-container .md-ripple, md-list-item button.md-button.md-secondary-container .md-ripple-container, md-list-item .md-list-item-inner button.md-button.md-secondary-container .md-ripple, md-list-item .md-list-item-inner button.md-button.md-secondary-container .md-ripple-container { border-radius: 50%; } md-list-item button.md-button.md-secondary-container.md-icon-button, md-list-item .md-list-item-inner button.md-button.md-secondary-container.md-icon-button { margin-right: -12px; } md-list-item .md-secondary-container, md-list-item .md-secondary, md-list-item .md-list-item-inner .md-secondary-container, md-list-item .md-list-item-inner .md-secondary { position: absolute; top: 50%; right: 16px; margin: 0 0 0 16px; -webkit-transform: translate3d(0, -50%, 0); transform: translate3d(0, -50%, 0); } md-list-item > .md-button.md-secondary-container > .md-secondary, md-list-item .md-list-item-inner > .md-button.md-secondary-container > .md-secondary { margin-left: 0; position: static; } md-list-item > p, md-list-item > .md-list-item-inner > p, md-list-item .md-list-item-inner > p, md-list-item .md-list-item-inner > .md-list-item-inner > p { -webkit-flex: 1; -ms-flex: 1; flex: 1; margin: 0; } md-list-item.md-2-line, md-list-item.md-2-line > .md-no-style, md-list-item.md-3-line, md-list-item.md-3-line > .md-no-style { -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } md-list-item.md-2-line .md-list-item-text, md-list-item.md-2-line > .md-no-style .md-list-item-text, md-list-item.md-3-line .md-list-item-text, md-list-item.md-3-line > .md-no-style .md-list-item-text { -webkit-flex: 1; -ms-flex: 1; flex: 1; margin: auto; text-overflow: ellipsis; } md-list-item.md-2-line .md-list-item-text.md-offset, md-list-item.md-2-line > .md-no-style .md-list-item-text.md-offset, md-list-item.md-3-line .md-list-item-text.md-offset, md-list-item.md-3-line > .md-no-style .md-list-item-text.md-offset { margin-left: 56px; } md-list-item.md-2-line .md-list-item-text h3, md-list-item.md-2-line > .md-no-style .md-list-item-text h3, md-list-item.md-3-line .md-list-item-text h3, md-list-item.md-3-line > .md-no-style .md-list-item-text h3 { font-size: 16px; font-weight: 400; letter-spacing: 0.010em; margin: 0 0 0px 0; line-height: 1.2em; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } md-list-item.md-2-line .md-list-item-text h4, md-list-item.md-2-line > .md-no-style .md-list-item-text h4, md-list-item.md-3-line .md-list-item-text h4, md-list-item.md-3-line > .md-no-style .md-list-item-text h4 { font-size: 14px; letter-spacing: 0.010em; margin: 3px 0 1px 0; font-weight: 400; line-height: 1.2em; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } md-list-item.md-2-line .md-list-item-text p, md-list-item.md-2-line > .md-no-style .md-list-item-text p, md-list-item.md-3-line .md-list-item-text p, md-list-item.md-3-line > .md-no-style .md-list-item-text p { font-size: 14px; font-weight: 500; letter-spacing: 0.010em; margin: 0 0 0 0; line-height: 1.6em; } md-list-item.md-2-line, md-list-item.md-2-line > .md-no-style { height: auto; min-height: 72px; } md-list-item.md-2-line.md-long-text, md-list-item.md-2-line > .md-no-style.md-long-text { margin: 1.6em; } md-list-item.md-2-line > .md-avatar, md-list-item.md-2-line .md-avatar-icon, md-list-item.md-2-line > .md-no-style > .md-avatar, md-list-item.md-2-line > .md-no-style .md-avatar-icon { margin-top: 12px; } md-list-item.md-2-line > md-icon:first-child, md-list-item.md-2-line > .md-no-style > md-icon:first-child { -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; } md-list-item.md-2-line .md-list-item-text, md-list-item.md-2-line > .md-no-style .md-list-item-text { -webkit-flex: 1; -ms-flex: 1; flex: 1; } md-list-item.md-3-line, md-list-item.md-3-line > .md-no-style { height: auto; min-height: 88px; } md-list-item.md-3-line.md-long-text, md-list-item.md-3-line > .md-no-style.md-long-text { margin: 1.6em; } md-list-item.md-3-line > md-icon:first-child, md-list-item.md-3-line > .md-avatar, md-list-item.md-3-line > .md-no-style > md-icon:first-child, md-list-item.md-3-line > .md-no-style > .md-avatar { margin-top: 16px; }
www/lib/angular-material/modules/js/list/list.css
md-list { display: block; padding: 8px 0px 8px 0px; } md-list .md-subheader { font-size: 14px; font-weight: 500; letter-spacing: 0.010em; line-height: 1.2em; } md-list-item { position: relative; } md-list-item.md-proxy-focus.md-focused .md-no-style { transition: background-color 0.15s linear; } md-list-item.md-no-proxy, md-list-item .md-no-style { position: relative; padding: 0px 16px; -webkit-flex: 1 1 auto; -ms-flex: 1 1 auto; flex: 1 1 auto; } md-list-item.md-no-proxy.md-button, md-list-item .md-no-style.md-button { font-size: inherit; height: inherit; text-align: left; text-transform: none; width: 100%; white-space: normal; -webkit-flex-direction: inherit; -ms-flex-direction: inherit; flex-direction: inherit; -webkit-align-items: inherit; -ms-flex-align: inherit; align-items: inherit; border-radius: 0; } md-list-item.md-no-proxy.md-button > .md-ripple-container, md-list-item .md-no-style.md-button > .md-ripple-container { border-radius: 0; } md-list-item.md-no-proxy:focus, md-list-item .md-no-style:focus { outline: none; } md-list-item.md-with-secondary { position: relative; } md-list-item.md-clickable:hover { cursor: pointer; } md-list-item md-divider { position: absolute; bottom: 0; left: 0; width: 100%; } md-list-item md-divider[md-inset] { left: 96px; width: calc(100% - 96px); margin: 0; } md-list-item, md-list-item .md-list-item-inner { display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-justify-content: flex-start; -ms-flex-pack: start; justify-content: flex-start; -webkit-align-items: center; -ms-flex-align: center; align-items: center; min-height: 48px; height: auto; } md-list-item > div.md-primary > md-icon:not(.md-avatar-icon), md-list-item > div.md-secondary > md-icon:not(.md-avatar-icon), md-list-item > md-icon:first-child:not(.md-avatar-icon), md-list-item > md-icon.md-secondary:not(.md-avatar-icon), md-list-item .md-list-item-inner > div.md-primary > md-icon:not(.md-avatar-icon), md-list-item .md-list-item-inner > div.md-secondary > md-icon:not(.md-avatar-icon), md-list-item .md-list-item-inner > md-icon:first-child:not(.md-avatar-icon), md-list-item .md-list-item-inner > md-icon.md-secondary:not(.md-avatar-icon) { width: 24px; margin-top: 16px; margin-bottom: 12px; box-sizing: content-box; } md-list-item > div.md-primary > md-checkbox, md-list-item > div.md-secondary > md-checkbox, md-list-item > md-checkbox, md-list-item md-checkbox.md-secondary, md-list-item .md-list-item-inner > div.md-primary > md-checkbox, md-list-item .md-list-item-inner > div.md-secondary > md-checkbox, md-list-item .md-list-item-inner > md-checkbox, md-list-item .md-list-item-inner md-checkbox.md-secondary { -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; } md-list-item > div.md-primary > md-checkbox .md-label, md-list-item > div.md-secondary > md-checkbox .md-label, md-list-item > md-checkbox .md-label, md-list-item md-checkbox.md-secondary .md-label, md-list-item .md-list-item-inner > div.md-primary > md-checkbox .md-label, md-list-item .md-list-item-inner > div.md-secondary > md-checkbox .md-label, md-list-item .md-list-item-inner > md-checkbox .md-label, md-list-item .md-list-item-inner md-checkbox.md-secondary .md-label { display: none; } md-list-item > md-icon:first-child:not(.md-avatar-icon), md-list-item .md-list-item-inner > md-icon:first-child:not(.md-avatar-icon) { margin-right: 32px; } md-list-item > md-checkbox, md-list-item .md-list-item-inner > md-checkbox { width: 24px; margin-left: 3px; margin-right: 29px; margin-top: 16px; } md-list-item .md-avatar, md-list-item .md-avatar-icon, md-list-item .md-list-item-inner .md-avatar, md-list-item .md-list-item-inner .md-avatar-icon { margin-top: 8px; margin-bottom: 8px; margin-right: 16px; border-radius: 50%; box-sizing: content-box; } md-list-item .md-avatar, md-list-item .md-list-item-inner .md-avatar { width: 40px; height: 40px; } md-list-item .md-avatar-icon, md-list-item .md-list-item-inner .md-avatar-icon { padding: 8px; } md-list-item md-checkbox.md-secondary, md-list-item md-switch.md-secondary, md-list-item .md-list-item-inner md-checkbox.md-secondary, md-list-item .md-list-item-inner md-switch.md-secondary { margin-top: 0; margin-bottom: 0; } md-list-item md-checkbox.md-secondary, md-list-item .md-list-item-inner md-checkbox.md-secondary { margin-right: 0; } md-list-item md-switch.md-secondary, md-list-item .md-list-item-inner md-switch.md-secondary { margin-right: -6px; } md-list-item button.md-button.md-secondary-container, md-list-item .md-list-item-inner button.md-button.md-secondary-container { background-color: transparent; -webkit-align-self: center; -ms-flex-item-align: center; align-self: center; border-radius: 50%; margin: 0px; min-width: 0px; } md-list-item button.md-button.md-secondary-container .md-ripple, md-list-item button.md-button.md-secondary-container .md-ripple-container, md-list-item .md-list-item-inner button.md-button.md-secondary-container .md-ripple, md-list-item .md-list-item-inner button.md-button.md-secondary-container .md-ripple-container { border-radius: 50%; } md-list-item button.md-button.md-secondary-container.md-icon-button, md-list-item .md-list-item-inner button.md-button.md-secondary-container.md-icon-button { margin-right: -12px; } md-list-item .md-secondary-container, md-list-item .md-secondary, md-list-item .md-list-item-inner .md-secondary-container, md-list-item .md-list-item-inner .md-secondary { position: absolute; top: 50%; right: 16px; margin: 0 0 0 16px; -webkit-transform: translate3d(0, -50%, 0); transform: translate3d(0, -50%, 0); } md-list-item > .md-button.md-secondary-container > .md-secondary, md-list-item .md-list-item-inner > .md-button.md-secondary-container > .md-secondary { margin-left: 0; position: static; } md-list-item > p, md-list-item > .md-list-item-inner > p, md-list-item .md-list-item-inner > p, md-list-item .md-list-item-inner > .md-list-item-inner > p { -webkit-flex: 1; -ms-flex: 1; flex: 1; margin: 0; } md-list-item.md-2-line, md-list-item.md-2-line > .md-no-style, md-list-item.md-3-line, md-list-item.md-3-line > .md-no-style { -webkit-align-items: flex-start; -ms-flex-align: start; align-items: flex-start; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; } md-list-item.md-2-line .md-list-item-text, md-list-item.md-2-line > .md-no-style .md-list-item-text, md-list-item.md-3-line .md-list-item-text, md-list-item.md-3-line > .md-no-style .md-list-item-text { -webkit-flex: 1; -ms-flex: 1; flex: 1; margin: auto; text-overflow: ellipsis; } md-list-item.md-2-line .md-list-item-text.md-offset, md-list-item.md-2-line > .md-no-style .md-list-item-text.md-offset, md-list-item.md-3-line .md-list-item-text.md-offset, md-list-item.md-3-line > .md-no-style .md-list-item-text.md-offset { margin-left: 56px; } md-list-item.md-2-line .md-list-item-text h3, md-list-item.md-2-line > .md-no-style .md-list-item-text h3, md-list-item.md-3-line .md-list-item-text h3, md-list-item.md-3-line > .md-no-style .md-list-item-text h3 { font-size: 16px; font-weight: 400; letter-spacing: 0.010em; margin: 0 0 0px 0; line-height: 1.2em; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } md-list-item.md-2-line .md-list-item-text h4, md-list-item.md-2-line > .md-no-style .md-list-item-text h4, md-list-item.md-3-line .md-list-item-text h4, md-list-item.md-3-line > .md-no-style .md-list-item-text h4 { font-size: 14px; letter-spacing: 0.010em; margin: 3px 0 1px 0; font-weight: 400; line-height: 1.2em; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } md-list-item.md-2-line .md-list-item-text p, md-list-item.md-2-line > .md-no-style .md-list-item-text p, md-list-item.md-3-line .md-list-item-text p, md-list-item.md-3-line > .md-no-style .md-list-item-text p { font-size: 14px; font-weight: 500; letter-spacing: 0.010em; margin: 0 0 0 0; line-height: 1.6em; } md-list-item.md-2-line, md-list-item.md-2-line > .md-no-style { height: auto; min-height: 72px; } md-list-item.md-2-line.md-long-text, md-list-item.md-2-line > .md-no-style.md-long-text { margin: 1.6em; } md-list-item.md-2-line > .md-avatar, md-list-item.md-2-line .md-avatar-icon, md-list-item.md-2-line > .md-no-style > .md-avatar, md-list-item.md-2-line > .md-no-style .md-avatar-icon { margin-top: 12px; } md-list-item.md-2-line > md-icon:first-child, md-list-item.md-2-line > .md-no-style > md-icon:first-child { -webkit-align-self: flex-start; -ms-flex-item-align: start; align-self: flex-start; } md-list-item.md-2-line .md-list-item-text, md-list-item.md-2-line > .md-no-style .md-list-item-text { -webkit-flex: 1; -ms-flex: 1; flex: 1; } md-list-item.md-3-line, md-list-item.md-3-line > .md-no-style { height: auto; min-height: 88px; } md-list-item.md-3-line.md-long-text, md-list-item.md-3-line > .md-no-style.md-long-text { margin: 1.6em; } md-list-item.md-3-line > md-icon:first-child, md-list-item.md-3-line > .md-avatar, md-list-item.md-3-line > .md-no-style > md-icon:first-child, md-list-item.md-3-line > .md-no-style > .md-avatar { margin-top: 16px; }
0.274254
0.038466
*, *:before, *:after { box-sizing: border-box; } body { font-family: "Inconsolata", monospace; font-feature-settings: 'liga' 0; font-size: 100%; line-height: 1.6; } @media (min-width: 20em) { body { font-size: 102.5%; } } @media (min-width: 30em) { body { font-size: 105%; } } @media (min-width: 54em) { body { font-size: 107.5%; } } @media (min-width: 64em) { body { font-size: 110%; } } @media (min-width: 76.5em) { body { font-size: 115%; } } @media (min-width: 114em) { body { font-size: 125%; } } h1, h2, h3, h4, h5, h6 { margin: 0; font-family: "Space Mono", monospace; line-height: 1.1; } @media (min-width: 54em) { h1 { font-size: 2.5em; } } @media (min-width: 76.5em) { h1 { font-size: 3em; } } h2 { margin-bottom: 0.25em; font-size: 1.75em; } @media (min-width: 54em) { h2 { font-size: 2em; } } h3 { margin-bottom: 0.1em; font-size: 1.5em; } h4 { margin-bottom: 0.1em; font-size: 1.25em; } p { margin: 0 0 0.75em; } a { color: #0a0a0a; text-decoration: none; transition: color 0.4s ease-in-out; } a:hover, a:active, a:focus { color: #9f8f68; } figure { margin: 0; } img { display: block; width: 100%; max-width: 100%; } blockquote { margin: 2em 0; font-family: "Space Mono", monospace; font-weight: 700; font-size: 1.25em; } cite { display: block; margin-top: 0.125em; font-family: "Inconsolata", monospace; font-weight: 400; font-style: normal; } cite:before { content: "\2014 \0020"; } ol, ul { margin: 0; padding: 0; } /** Text Selection */ ::selection { color: #fff; background-color: #9f8f68; text-shadow: none; } /** Underline Slide from left and back */ /** Button Slide Need to still add hover state in parent element box-shadow: inset 175px 0 0 0 $color-alpha; color: $color-white; */ /** Flex Grid */ /** Box Shadow */ .sidenav { height: 100%; /* 100% Full-height */ width: 0; /* 0 width - change this with JavaScript */ position: fixed; /* Stay in place */ z-index: 999; /* Stay on top */ top: 0; left: 0; background-color: #f8f9f9; /* Black*/ overflow-x: hidden; /* Disable horizontal scroll */ padding-top: 60px; /* Place content 60px from the top */ transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */ } .sidenav a { padding: 8px 8px 8px 32px; text-decoration: none; font-size: 25px; color: #0a0a0a; display: block; transition: 0.3s; } .sidenav a span { position: relative; color: #0a0a0a; } .sidenav a span:after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; border-bottom: 3px solid #9f8f68; transition: width 0.4s ease-in-out; } .sidenav a span:hover:after { width: 100%; } /*.sidenav a span:hover, .offcanvas a span:focus{ border-bottom: 3px solid $color-alpha; }*/ .sidenav .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; margin-left: 50px; border: none; cursor: pointer; color: #0a0a0a; } main > .nav { top: 1.75em; } .nav { left: 4em !important; } @media (min-width: 30em) { left: 4em; } .nav.openbtn { left: 2em !important; position: fixed; top: 1.5em; cursor: pointer; } footer { bottom: 0; height: 60px; /* Height of the footer */ } .fa.fa-bars, .fa.fa-arrow-left { color: #9f8f68; -webkit-text-stroke-width: 0.5px; -webkit-text-stroke-color: black; }
assets/css/custom.css
*, *:before, *:after { box-sizing: border-box; } body { font-family: "Inconsolata", monospace; font-feature-settings: 'liga' 0; font-size: 100%; line-height: 1.6; } @media (min-width: 20em) { body { font-size: 102.5%; } } @media (min-width: 30em) { body { font-size: 105%; } } @media (min-width: 54em) { body { font-size: 107.5%; } } @media (min-width: 64em) { body { font-size: 110%; } } @media (min-width: 76.5em) { body { font-size: 115%; } } @media (min-width: 114em) { body { font-size: 125%; } } h1, h2, h3, h4, h5, h6 { margin: 0; font-family: "Space Mono", monospace; line-height: 1.1; } @media (min-width: 54em) { h1 { font-size: 2.5em; } } @media (min-width: 76.5em) { h1 { font-size: 3em; } } h2 { margin-bottom: 0.25em; font-size: 1.75em; } @media (min-width: 54em) { h2 { font-size: 2em; } } h3 { margin-bottom: 0.1em; font-size: 1.5em; } h4 { margin-bottom: 0.1em; font-size: 1.25em; } p { margin: 0 0 0.75em; } a { color: #0a0a0a; text-decoration: none; transition: color 0.4s ease-in-out; } a:hover, a:active, a:focus { color: #9f8f68; } figure { margin: 0; } img { display: block; width: 100%; max-width: 100%; } blockquote { margin: 2em 0; font-family: "Space Mono", monospace; font-weight: 700; font-size: 1.25em; } cite { display: block; margin-top: 0.125em; font-family: "Inconsolata", monospace; font-weight: 400; font-style: normal; } cite:before { content: "\2014 \0020"; } ol, ul { margin: 0; padding: 0; } /** Text Selection */ ::selection { color: #fff; background-color: #9f8f68; text-shadow: none; } /** Underline Slide from left and back */ /** Button Slide Need to still add hover state in parent element box-shadow: inset 175px 0 0 0 $color-alpha; color: $color-white; */ /** Flex Grid */ /** Box Shadow */ .sidenav { height: 100%; /* 100% Full-height */ width: 0; /* 0 width - change this with JavaScript */ position: fixed; /* Stay in place */ z-index: 999; /* Stay on top */ top: 0; left: 0; background-color: #f8f9f9; /* Black*/ overflow-x: hidden; /* Disable horizontal scroll */ padding-top: 60px; /* Place content 60px from the top */ transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */ } .sidenav a { padding: 8px 8px 8px 32px; text-decoration: none; font-size: 25px; color: #0a0a0a; display: block; transition: 0.3s; } .sidenav a span { position: relative; color: #0a0a0a; } .sidenav a span:after { content: ''; position: absolute; bottom: 0; left: 0; width: 0%; border-bottom: 3px solid #9f8f68; transition: width 0.4s ease-in-out; } .sidenav a span:hover:after { width: 100%; } /*.sidenav a span:hover, .offcanvas a span:focus{ border-bottom: 3px solid $color-alpha; }*/ .sidenav .closebtn { position: absolute; top: 0; right: 25px; font-size: 36px; margin-left: 50px; border: none; cursor: pointer; color: #0a0a0a; } main > .nav { top: 1.75em; } .nav { left: 4em !important; } @media (min-width: 30em) { left: 4em; } .nav.openbtn { left: 2em !important; position: fixed; top: 1.5em; cursor: pointer; } footer { bottom: 0; height: 60px; /* Height of the footer */ } .fa.fa-bars, .fa.fa-arrow-left { color: #9f8f68; -webkit-text-stroke-width: 0.5px; -webkit-text-stroke-color: black; }
0.72086
0.181028
html{ } body { font-family: Verdana; background: #fff; padding-top: 30px; } h1 { text-align:center } br{ display:none } /* * clearfix * see: http://css-tricks.com/snippets/css/clear-fix/ */ .clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } * html .clearfix { zoom: 1; } /* IE6 */ *:first-child+html .clearfix { zoom: 1; } /* IE7 */ #playbackArea { width: 1360px; /* #slide.width + #chat.width + #audioRecording.width */ height: 650px; margin: 0 auto; overflow: hidden; } #audioRecordingWrapper{ float: left; width: 800px; } #audioRecording{ display: block; margin-left: auto; margin-right: auto; width: 100%; } #audioRecordingWrapper .acorn-controls, #videoRecordingWrapper .acorn-controls{ position: relative; top: 0; left: -810px; width: 730px; } #playbackControls{ width: 1360px; margin: 0 auto; margin-top: -50px; } #autoscrollWrapper{ float: left; margin-left: 10px; margin-top: 8px; font-size: 14px; } .webcam{ width: 402px; height: 300px; } #video{ width: 402px; background: white; } /* To remove the white space on top of the audio tag in Firefox * See: http://stackoverflow.com/questions/9527453/firefox-and-html5-audio-element-dont-play-well-together */ @-moz-document url-prefix() { #audioRecordingWrapper{ position: relative; height: 28px; } #audioRecording { position: absolute; bottom: 0; } } #presentation { float: left; position: relative; height: 600px; } #slide { background-image: url('../logo.png'); text-align: center; border: 0px solid #ccc; width: 800px; height: 600px; /* same as slide images */ position: relative; top: -12px; } /* Visually hides text * see: yaccessibilityblog.com/library/css-clip-hidden-content.html */ .visually-hidden { position: absolute !important; clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ clip: rect(1px, 1px, 1px, 1px); padding: 0 !important; border: 0 !important; height: 1px !important; width: 1px !important; overflow: hidden; } #mediaArea { float: right; background: white; width: 402px; } #chatAndMediaArea{ float: right; background: white; height: 600px; width: 402px; } #chat{ margin: 0 auto; padding: 0 10px; border: 0px solid #ccc; height: 300px; overflow: auto; } #chat div{ padding:0px; font-size:13px; } #big {display:none} #mid {display:none} #thumbnails { float: left; width: 130px; height: 600px; /* same as #slide */ background: #fff; border: 0px solid #bbb; margin-right: 10px; overflow-y: scroll; overflow-x: hidden; } #thumbnails img.thumbnail { width: 100px; height: auto; border: 0px solid #eee; margin: 5px; cursor: pointer; vertical-align: bottom; } #thumbnails .thumbnail-wrapper { position: relative; margin: 0; padding: 0; } #thumbnails .thumbnail-wrapper.active { background-color: #D9EDF7; } #thumbnails .thumbnail-wrapper.active img.thumbnail { border-color: #3A87AD; } #thumbnails .thumbnail-label { color: #fff; background: #3A87AD; font-weight: bold; font-size: 12px; position: absolute; bottom: 5px; left: 5px; max-width: 90px; text-align: center; display: none; padding: 2px 5px; cursor: pointer; } #accInfo{ margin: 20px auto; font-size:0.75em; text-align: center; clear: both; padding-top: 75px; } #footer{ margin: 20px auto; font-size:0.75em; color: #666; text-align: center; clear: both; padding-top: 35px; } .circle { height: 12px; width: 12px; border-radius: 50%; } #cursor { position: relative; background: red; z-index: 10; }
public-player/0.81/css/bbb.playback.css
html{ } body { font-family: Verdana; background: #fff; padding-top: 30px; } h1 { text-align:center } br{ display:none } /* * clearfix * see: http://css-tricks.com/snippets/css/clear-fix/ */ .clearfix:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; } * html .clearfix { zoom: 1; } /* IE6 */ *:first-child+html .clearfix { zoom: 1; } /* IE7 */ #playbackArea { width: 1360px; /* #slide.width + #chat.width + #audioRecording.width */ height: 650px; margin: 0 auto; overflow: hidden; } #audioRecordingWrapper{ float: left; width: 800px; } #audioRecording{ display: block; margin-left: auto; margin-right: auto; width: 100%; } #audioRecordingWrapper .acorn-controls, #videoRecordingWrapper .acorn-controls{ position: relative; top: 0; left: -810px; width: 730px; } #playbackControls{ width: 1360px; margin: 0 auto; margin-top: -50px; } #autoscrollWrapper{ float: left; margin-left: 10px; margin-top: 8px; font-size: 14px; } .webcam{ width: 402px; height: 300px; } #video{ width: 402px; background: white; } /* To remove the white space on top of the audio tag in Firefox * See: http://stackoverflow.com/questions/9527453/firefox-and-html5-audio-element-dont-play-well-together */ @-moz-document url-prefix() { #audioRecordingWrapper{ position: relative; height: 28px; } #audioRecording { position: absolute; bottom: 0; } } #presentation { float: left; position: relative; height: 600px; } #slide { background-image: url('../logo.png'); text-align: center; border: 0px solid #ccc; width: 800px; height: 600px; /* same as slide images */ position: relative; top: -12px; } /* Visually hides text * see: yaccessibilityblog.com/library/css-clip-hidden-content.html */ .visually-hidden { position: absolute !important; clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ clip: rect(1px, 1px, 1px, 1px); padding: 0 !important; border: 0 !important; height: 1px !important; width: 1px !important; overflow: hidden; } #mediaArea { float: right; background: white; width: 402px; } #chatAndMediaArea{ float: right; background: white; height: 600px; width: 402px; } #chat{ margin: 0 auto; padding: 0 10px; border: 0px solid #ccc; height: 300px; overflow: auto; } #chat div{ padding:0px; font-size:13px; } #big {display:none} #mid {display:none} #thumbnails { float: left; width: 130px; height: 600px; /* same as #slide */ background: #fff; border: 0px solid #bbb; margin-right: 10px; overflow-y: scroll; overflow-x: hidden; } #thumbnails img.thumbnail { width: 100px; height: auto; border: 0px solid #eee; margin: 5px; cursor: pointer; vertical-align: bottom; } #thumbnails .thumbnail-wrapper { position: relative; margin: 0; padding: 0; } #thumbnails .thumbnail-wrapper.active { background-color: #D9EDF7; } #thumbnails .thumbnail-wrapper.active img.thumbnail { border-color: #3A87AD; } #thumbnails .thumbnail-label { color: #fff; background: #3A87AD; font-weight: bold; font-size: 12px; position: absolute; bottom: 5px; left: 5px; max-width: 90px; text-align: center; display: none; padding: 2px 5px; cursor: pointer; } #accInfo{ margin: 20px auto; font-size:0.75em; text-align: center; clear: both; padding-top: 75px; } #footer{ margin: 20px auto; font-size:0.75em; color: #666; text-align: center; clear: both; padding-top: 35px; } .circle { height: 12px; width: 12px; border-radius: 50%; } #cursor { position: relative; background: red; z-index: 10; }
0.515376
0.053974
.inner { margin-left: auto; margin-right: auto; position: relative } .outer { display: table; position: absolute; height: 100%; width: 100% } .middle { display: table-cell; vertical-align: middle; } .button-38aScr { position: relative; display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; -webkit-box-sizing: border-box; box-sizing: border-box; background: 0; border: 0; border-radius: 3px; font-size: 14px; font-weight: 500; line-height: 16px; padding: 2px 16px; -webkit-user-select: none; -moz-user-select: none; user-select: none } .button-38aScr:disabled { cursor: not-allowed; opacity: .5 } .lookFilled-1Gx00P.colorBrand-3pXr91 { color: #fff; background-color: #5865f2 } .lookFilled-1Gx00P.colorBrand-3pXr91:hover { background-color: #5c6fb1 } .lookFilled-1Gx00P.colorBrand-3pXr91:active { background-color: #4e5d94 } .lookFilled-1Gx00P.colorBrand-3pXr91:disabled { background-color: #5865f2 } .lookFilled-1Gx00P { -webkit-transition: background-color .17s ease, color .17s ease; transition: background-color .17s ease, color .17s ease } .sizeLarge-1vSeWK { width: 130px; height: 44px; min-width: 130px; min-height: 44px } .grow-q77ONN { width: auto } .fullWidth-1orjjo { width: 100% } .lookFilled-1Gx00P .contents-18-Yxp { margin: 0 auto; white-space: nowrap; text-overflow: ellipsis; overflow: hidden } a { text-decoration: none } a:checked { color: #f0f8ff } .flex-1O1GKY { display: -webkit-box; display: flex } .alignCenter-1dQNNs { -webkit-box-align: center; align-items: center } .alignStretch-DpGPf3 { -webkit-box-align: stretch; align-items: stretch } .justifyStart-2NDFzi { -webkit-box-pack: start; justify-content: flex-start } .justifyCenter-3D2jYp { -webkit-box-pack: center; justify-content: center } .noWrap-3jynv6 { flex-wrap: nowrap } .directionRow-3v3tfG { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row } .weightNormal-WI4TcG { font-weight: 400 } .weightSemiBold-NJexzi { font-weight: 600 } .size14-3iUx6q { font-size: 14px } .size16-14cGz5 { font-size: 16px } .height20-mO2eIN { line-height: 20px } .marginTop8-1DLZ1n { margin-top: 8px } .margbot { margin-bottom: 20px } .marginTop40-i-78cZ { margin-top: 40px } body, div, html, span { margin: 0; padding: 0; border: 0; font-weight: inherit; font-style: inherit; font-family: inherit; font-size: 100%; vertical-align: baseline } body { line-height: 1; margin: 0; padding: 0; font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif; overflow: hidden; -webkit-user-select: none; -moz-user-select: none; user-select: none; background: url(media/background.svg) no-repeat center center fixed; background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; } ::-webkit-input-placeholder { font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif } ::-moz-placeholder { font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif } button { font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif; border: 0; cursor: pointer } @font-face { font-family: Whitney; font-weight: 300; src: url(fonts/6c6374bad0b0b6d204d8d6dc4a18d820.woff) format("woff") } @font-face { font-family: Whitney; font-weight: 400; src: url(fonts/e8acd7d9bf6207f99350ca9f9e23b168.woff) format("woff") } @font-face { font-family: Whitney; font-weight: 500; src: url(fonts/3bdef1251a424500c1b3a78dea9b7e57.woff) format("woff") } @font-face { font-family: Whitney; font-weight: 600; src: url(fonts/be0060dafb7a0e31d2a1ca17c0708636.woff) format("woff") } @font-face { font-family: Whitney; font-weight: 700; src: url(fonts/8e12fb4f14d9c4592eb8ec9f22337b04.woff) format("woff") } @font-face { font-family: Ginto; font-weight: 300; src: url(fonts/148d0f25ba9c02a9190be23e882c7f87.woff) format("woff") } @font-face { font-family: Ginto; font-weight: 400; src: url(fonts/32c4f766e4892c054dfd367dbe0fc6dc.woff) format("woff") } @font-face { font-family: Ginto; font-weight: 500; src: url(fonts/32c4f766e4892c054dfd367dbe0fc6dc.woff) format("woff") } @font-face { font-family: Ginto; font-weight: 600; src: url(fonts/88055567e3d928bcb1e67e967081572e.woff) format("woff") } @font-face { font-family: Ginto; font-weight: 700; src: url(fonts/746a4f241e03deffc59b08c5650cf458.woff) format("woff") } ::-webkit-input-placeholder, body, button { font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif } ::-moz-placeholder, body, button { font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif } body, button { font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif } button, div, span { outline: 0 } .nameTag-m8r81H { vertical-align: middle; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; line-height: 17px } .headerText { display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; text-align: center; -webkit-user-select: text; -moz-user-select: text; user-select: text; -webkit-box-align: center; align-items: center } .headerTagUsernameNoNickname-2_H881 { color: #fff } .headerTag-2pZJzA { color: hsla(0, 0%, 100%, .6); flex-wrap: wrap; display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center } .headerTagNoNickname-ENx6no { word-break: break-word; white-space: normal } .icon { position: relative; background-clip: padding-box; background-color: transparent; background-position: 50%; background-size: 100% 100% } .iconradius { border-radius: 50% } .iconsize { width: 100px; height: 100px } .logo-2iEHEq { -webkit-box-flex: 0; flex: 0 0 auto; width: 130px; height: 36px; background: url(media/discordlogo.svg) no-repeat } .authBox-hW6HRx { width: 480px; padding: 40px; font-size: 18px; color: #72767d; background: #36393f; -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .2); box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .2); border-radius: 5px; -webkit-box-sizing: border-box; box-sizing: border-box } .centerimage { width: 100%; text-align: center } .logo-2niOmb { position: fixed; top: 24px; left: 50%; margin-left: -65px; margin-top: 0; } @media (min-width:830px) { .logo-2niOmb { top: 53px; left: 48px; margin: 0 } } @media (max-width:485px) { .authBox-hW6HRx { position: absolute; top: 0; right: 0; bottom: 0; left: 0; padding: 70px 40px 40px; width: 100%; height: 100%; min-height: 500px; display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; background: -webkit-gradient(linear, right top, left bottom, from(#3d4046), to(#1e1e23)); background: linear-gradient(to left bottom, #3d4046, #1e1e23); border-radius: 0 } .authBox-hW6HRx:before { content: ""; position: absolute; top: 20px; height: 36px; width: 112px; background: url(media/discordlogo.svg) no-repeat } } .pill-1dHPfk { display: -webkit-box; display: flex; -webkit-box-align: center; align-items: center; padding: 5px 16px 4px; border-radius: 100px } .theme-dark .pill-1dHPfk { background-color: rgba(32, 34, 37, .3) } .pillMessage-1btqlx { font-size: 16px; white-space: nowrap } .theme-dark .pillMessage-1btqlx { color: #b9bbbe } .pillIcon-BaqtHs { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 4px } .pillIconOnline-2JGlqR { background-color: #43b581 } .button-3k0cO7 { font-size: 16px; line-height: 24px } .colored { display: -webkit-inline-box; display: inline-flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; background-color: #5865f2; color: #fff } .LargeIcon { margin-right: 0; background-repeat: no-repeat; background-size: 100% } footer { margin: 14px; font-size: 12px; padding-top: 24px; position: fixed; left: 0; bottom: 0; width: 100%; display: block; text-align: center } a:link { text-decoration: none } a:visited { color: #00b0f4 }
dist/main.css
.inner { margin-left: auto; margin-right: auto; position: relative } .outer { display: table; position: absolute; height: 100%; width: 100% } .middle { display: table-cell; vertical-align: middle; } .button-38aScr { position: relative; display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; -webkit-box-sizing: border-box; box-sizing: border-box; background: 0; border: 0; border-radius: 3px; font-size: 14px; font-weight: 500; line-height: 16px; padding: 2px 16px; -webkit-user-select: none; -moz-user-select: none; user-select: none } .button-38aScr:disabled { cursor: not-allowed; opacity: .5 } .lookFilled-1Gx00P.colorBrand-3pXr91 { color: #fff; background-color: #5865f2 } .lookFilled-1Gx00P.colorBrand-3pXr91:hover { background-color: #5c6fb1 } .lookFilled-1Gx00P.colorBrand-3pXr91:active { background-color: #4e5d94 } .lookFilled-1Gx00P.colorBrand-3pXr91:disabled { background-color: #5865f2 } .lookFilled-1Gx00P { -webkit-transition: background-color .17s ease, color .17s ease; transition: background-color .17s ease, color .17s ease } .sizeLarge-1vSeWK { width: 130px; height: 44px; min-width: 130px; min-height: 44px } .grow-q77ONN { width: auto } .fullWidth-1orjjo { width: 100% } .lookFilled-1Gx00P .contents-18-Yxp { margin: 0 auto; white-space: nowrap; text-overflow: ellipsis; overflow: hidden } a { text-decoration: none } a:checked { color: #f0f8ff } .flex-1O1GKY { display: -webkit-box; display: flex } .alignCenter-1dQNNs { -webkit-box-align: center; align-items: center } .alignStretch-DpGPf3 { -webkit-box-align: stretch; align-items: stretch } .justifyStart-2NDFzi { -webkit-box-pack: start; justify-content: flex-start } .justifyCenter-3D2jYp { -webkit-box-pack: center; justify-content: center } .noWrap-3jynv6 { flex-wrap: nowrap } .directionRow-3v3tfG { -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-direction: row } .weightNormal-WI4TcG { font-weight: 400 } .weightSemiBold-NJexzi { font-weight: 600 } .size14-3iUx6q { font-size: 14px } .size16-14cGz5 { font-size: 16px } .height20-mO2eIN { line-height: 20px } .marginTop8-1DLZ1n { margin-top: 8px } .margbot { margin-bottom: 20px } .marginTop40-i-78cZ { margin-top: 40px } body, div, html, span { margin: 0; padding: 0; border: 0; font-weight: inherit; font-style: inherit; font-family: inherit; font-size: 100%; vertical-align: baseline } body { line-height: 1; margin: 0; padding: 0; font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif; overflow: hidden; -webkit-user-select: none; -moz-user-select: none; user-select: none; background: url(media/background.svg) no-repeat center center fixed; background-size: cover; -webkit-background-size: cover; -moz-background-size: cover; } ::-webkit-input-placeholder { font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif } ::-moz-placeholder { font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif } button { font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif; border: 0; cursor: pointer } @font-face { font-family: Whitney; font-weight: 300; src: url(fonts/6c6374bad0b0b6d204d8d6dc4a18d820.woff) format("woff") } @font-face { font-family: Whitney; font-weight: 400; src: url(fonts/e8acd7d9bf6207f99350ca9f9e23b168.woff) format("woff") } @font-face { font-family: Whitney; font-weight: 500; src: url(fonts/3bdef1251a424500c1b3a78dea9b7e57.woff) format("woff") } @font-face { font-family: Whitney; font-weight: 600; src: url(fonts/be0060dafb7a0e31d2a1ca17c0708636.woff) format("woff") } @font-face { font-family: Whitney; font-weight: 700; src: url(fonts/8e12fb4f14d9c4592eb8ec9f22337b04.woff) format("woff") } @font-face { font-family: Ginto; font-weight: 300; src: url(fonts/148d0f25ba9c02a9190be23e882c7f87.woff) format("woff") } @font-face { font-family: Ginto; font-weight: 400; src: url(fonts/32c4f766e4892c054dfd367dbe0fc6dc.woff) format("woff") } @font-face { font-family: Ginto; font-weight: 500; src: url(fonts/32c4f766e4892c054dfd367dbe0fc6dc.woff) format("woff") } @font-face { font-family: Ginto; font-weight: 600; src: url(fonts/88055567e3d928bcb1e67e967081572e.woff) format("woff") } @font-face { font-family: Ginto; font-weight: 700; src: url(fonts/746a4f241e03deffc59b08c5650cf458.woff) format("woff") } ::-webkit-input-placeholder, body, button { font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif } ::-moz-placeholder, body, button { font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif } body, button { font-family: Ginto, Helvetica Neue, Helvetica, Arial, sans-serif } button, div, span { outline: 0 } .nameTag-m8r81H { vertical-align: middle; white-space: nowrap; text-overflow: ellipsis; overflow: hidden; line-height: 17px } .headerText { display: -webkit-box; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; flex-direction: column; text-align: center; -webkit-user-select: text; -moz-user-select: text; user-select: text; -webkit-box-align: center; align-items: center } .headerTagUsernameNoNickname-2_H881 { color: #fff } .headerTag-2pZJzA { color: hsla(0, 0%, 100%, .6); flex-wrap: wrap; display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center } .headerTagNoNickname-ENx6no { word-break: break-word; white-space: normal } .icon { position: relative; background-clip: padding-box; background-color: transparent; background-position: 50%; background-size: 100% 100% } .iconradius { border-radius: 50% } .iconsize { width: 100px; height: 100px } .logo-2iEHEq { -webkit-box-flex: 0; flex: 0 0 auto; width: 130px; height: 36px; background: url(media/discordlogo.svg) no-repeat } .authBox-hW6HRx { width: 480px; padding: 40px; font-size: 18px; color: #72767d; background: #36393f; -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .2); box-shadow: 0 2px 10px 0 rgba(0, 0, 0, .2); border-radius: 5px; -webkit-box-sizing: border-box; box-sizing: border-box } .centerimage { width: 100%; text-align: center } .logo-2niOmb { position: fixed; top: 24px; left: 50%; margin-left: -65px; margin-top: 0; } @media (min-width:830px) { .logo-2niOmb { top: 53px; left: 48px; margin: 0 } } @media (max-width:485px) { .authBox-hW6HRx { position: absolute; top: 0; right: 0; bottom: 0; left: 0; padding: 70px 40px 40px; width: 100%; height: 100%; min-height: 500px; display: -webkit-box; display: flex; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; background: -webkit-gradient(linear, right top, left bottom, from(#3d4046), to(#1e1e23)); background: linear-gradient(to left bottom, #3d4046, #1e1e23); border-radius: 0 } .authBox-hW6HRx:before { content: ""; position: absolute; top: 20px; height: 36px; width: 112px; background: url(media/discordlogo.svg) no-repeat } } .pill-1dHPfk { display: -webkit-box; display: flex; -webkit-box-align: center; align-items: center; padding: 5px 16px 4px; border-radius: 100px } .theme-dark .pill-1dHPfk { background-color: rgba(32, 34, 37, .3) } .pillMessage-1btqlx { font-size: 16px; white-space: nowrap } .theme-dark .pillMessage-1btqlx { color: #b9bbbe } .pillIcon-BaqtHs { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 4px } .pillIconOnline-2JGlqR { background-color: #43b581 } .button-3k0cO7 { font-size: 16px; line-height: 24px } .colored { display: -webkit-inline-box; display: inline-flex; -webkit-box-align: center; align-items: center; -webkit-box-pack: center; justify-content: center; background-color: #5865f2; color: #fff } .LargeIcon { margin-right: 0; background-repeat: no-repeat; background-size: 100% } footer { margin: 14px; font-size: 12px; padding-top: 24px; position: fixed; left: 0; bottom: 0; width: 100%; display: block; text-align: center } a:link { text-decoration: none } a:visited { color: #00b0f4 }
0.372962
0.082512
/** CSS to animate sliding down */ .react-slidedown.districtsslidedown { /** overriding default react-slidedown css */ height: 0; transition-property: none; transition-duration: 0.5s; transition-timing-function: ease-in-out; } /** Align divs on same line */ .samelinedivalign { display: flex; flex-direction: row; } /** Table styling Start **************************************************************************************/ /** State & District Table Header color and font-color - Overriding bootstrap classes ************************/ .table > .thead-dark > tr > th.light { background-color: rgb(184, 185, 185); color: rgb(46, 46, 46); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; border: 5px solid rgb(248, 245, 245); border-radius: 12px; } /** State & District Table header hover */ .table > .thead-dark > tr > th.light:hover { background-color: rgb(161, 159, 159); color: rgb(7, 94, 134); } /** To align actual numbers to right for proper visibility */ .table > tbody > tr > td > div > .nondelta { margin-left: auto; margin-right: 0; } /** State level styling start ********************************************************************************/ /** State Table body */ .table > tbody.light { background-color: rgba(250, 164, 164, 0.185); font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif; font-weight: lighter; color: rgb(51, 50, 49); } /** Bordering state table rows */ .table > tbody.light > tr > td { border: 7px solid white; border-radius: 20px; } /** Hovering state table rows */ .table > tbody.light > tr:hover { color: rgb(179, 18, 18); cursor: pointer; } /** CSS to show confirmed in red (state level) */ .table > tbody.light > tr > td > div > .deltaconfirmed { color: red; font-size: small; } /** CSS to show active in orange (state level) */ .table > tbody.light > tr > td > div > .deltaactive { color: orange; font-size: small; } /** CSS to show recovered in green (state level) */ .table > tbody.light > tr > td > div > .deltarecovered { color: green; font-size: small; } /** CSS to show deaths in gray (state level) */ .table > tbody.light > tr > td > div > .deltadeaths { color: gray; font-size: small; } /** State level styling end ************************************************************************************/ /** District level styling start *****************************************************************************/ /** District Table body */ .table > .districtlight { background-color: rgb(225, 225, 247); font-weight: lighter; } /** Bordering district table rows */ .table > tbody.districtlight > tr > td { border: 7px solid white; border-radius: 20px; } /** District hover rows */ tbody.districtlight > tr:hover { color: rgb(58, 58, 252); } /** CSS to show confirmed in red (district level) */ .table > .districtlight > tr > td > div > .deltaconfirmeddistrict { color: red; font-size: small; } /** CSS to show active in orange (district level) */ .table > .districtlight > tr > td > div > .deltaactivedistrict { color: orange; font-size: small; } /** CSS to show recovered in green (district level) */ .table > .districtlight > tr > td > div > .deltarecovereddistrict { color: green; font-size: small; } /** CSS to show deaths in gray (district level) */ .table > .districtlight > tr > td > div > .deltadeceaseddistrict { color: gray; font-size: small; } /** To align actual numbers to right for proper visibility (district level) */ .table > .districtlight > tr > td > div > .nondeltadistrict { margin-left: auto; margin-right: 0; } /** Zonal Colors Start*/ .table > .districtlight > tr > .Red { background-color: rgb(252, 190, 190); } .table > .districtlight > tr > .Orange { background-color: rgb(255, 228, 177); } .table > .districtlight > tr > .Green { background-color: rgb(177, 255, 177); } .districtdivlight { background-color: white; cursor: auto; } /** Zonal Colors End */ /** District level styling End *******************************************************************************/ /** Table styling end ****************************************************************************************/ /** Total count styling Start ********************************************************************************/ /** Overall CSS for all total counts - light mode*/ .nationalcountlight { background-color: rgb(241, 241, 234); color: rgb(125, 173, 247); border: 5px solid white; border-radius: 10px; font-size: larger; font-family: Verdana, Geneva, Tahoma, sans-serif; font-weight: bold; } .totalconfirmed { color: rgb(255, 143, 143); font-size: x-large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } .totalactive { color: rgb(253, 191, 97); font-size: x-large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } .totalrecovered { color: rgb(136, 253, 136); font-size: x-large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } .totaldeaths { color: rgb(158, 157, 157); font-size: x-large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } .totaldeltaconfirmed { color: red; font-size: large; font-weight: bold; } .totaldeltarecovered { color: green; font-size: large; font-weight: bold; } .totaldeltaactive { color: orange; font-size: large; font-weight: bold; } .totaldeltadeaths { color: gray; font-size: large; font-weight: bold; } /** Total count CSS end **************************************************************************************/ /** CSS for Dropdown List Start ******************************************************************************/ .mapdropdown { padding-top: 8px; } /** Confirmed List */ #dropdown-basic-button-confirmed { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: rgb(250, 49, 49); background-color: rgb(252, 208, 208); border-radius: 10px; transition: all 750ms; border: 1px solid rgb(228, 90, 90); } #dropdown-basic-button-confirmed:hover { background-color: rgb(252, 229, 229); cursor: pointer; } #dropdown-basic-button-confirmed:focus { box-shadow: 0 0 3px 2px #f87878; } /** Active List */ #dropdown-basic-button-active { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: rgb(250, 129, 49); background-color: rgb(248, 220, 182); border-radius: 10px; transition: all 750ms; border: 1px solid rgb(173, 108, 34); margin-left: 0; margin-right: auto; } #dropdown-basic-button-active:hover { background-color: rgb(252, 239, 210); cursor: pointer; } #dropdown-basic-button-active:focus { box-shadow: 0 0 3px 2px #e97f05; } /** Recovered/Recovery Rate List */ #dropdown-basic-button-recovered, #dropdown-basic-button-recovery_rate { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: rgb(57, 167, 67); background-color: rgb(198, 253, 197); border-radius: 10px; transition: all 750ms; border: 1px solid rgb(83, 158, 40); margin-left: 0; margin-right: auto; } #dropdown-basic-button-recovered:hover, #dropdown-basic-button-recovery_rate:hover { background-color: rgb(226, 255, 230); cursor: pointer; } #dropdown-basic-button-recovered:focus, #dropdown-basic-button-recovery_rate:focus { box-shadow: 0 0 3px 2px #2be905; } /** Death/Death Rate List */ #dropdown-basic-button-deaths, #dropdown-basic-button-death_rate { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: rgb(61, 61, 63); background-color: rgb(199, 199, 199); border-radius: 10px; transition: all 750ms; border: 1px solid rgb(117, 117, 117); margin-left: 0; margin-right: auto; } #dropdown-basic-button-deaths:hover, #dropdown-basic-button-death_rate:hover { background-color: rgb(224, 226, 226); cursor: pointer; } #dropdown-basic-button-deaths:focus, #dropdown-basic-button-death_rate:focus { box-shadow: 0 0 3px 2px #7c7b7a; } /** Deceased List */ #dropdown-basic-button-deceased { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: rgb(61, 61, 63); background-color: rgb(199, 199, 199); border-radius: 10px; transition: all 750ms; border: 1px solid rgb(117, 117, 117); margin-left: 0; margin-right: auto; } #dropdown-basic-button-deceased:hover { background-color: rgb(224, 226, 226); cursor: pointer; } #dropdown-basic-button-deceased:focus { box-shadow: 0 0 3px 2px #7c7b7a; } /** Zonal List */ #dropdown-basic-button-zones { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: #0c6611; background-color: rgb(255, 210, 143); border-radius: 10px; transition: all 750ms; border: 1px solid #f58013; margin-left: 0; margin-right: auto; } #dropdown-basic-button-zones:hover { background-color: rgb(255, 230, 191); cursor: pointer; } #dropdown-basic-button-zones:focus { box-shadow: 0 0 3px 2px #e97f05d5; } /** Menu items */ #dropdownmenu { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: rgb(18, 18, 19); } #dropdownmenu:hover { background-color: rgb(228, 250, 255); color: rgb(18, 31, 214); cursor: pointer; } /** CSS for Dropdown List End ********************************************************************************/ /** CSS for Linear Gradient Start ****************************************************************************/ #gradientboxlight { margin-right: 0; margin-left: auto; width: auto; height: 30px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: blue; font-weight: bold; font-size: inherit; } /** Used in gradient display */ .fill { flex: 1; text-align: center; } /** CSS for Linear Gradient End ******************************************************************************/ /** CSS for Back Button **************************************************************************************/ .backbutton { background-color: #c8f1fc; color: #040563; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; font-size: large; border-radius: 12px; transition: all 750ms; } .backbutton:hover { background-color: rgb(216, 216, 250); color: #080872; cursor: pointer; } .backbuttondiv { margin-left: auto; margin-right: 0; } /*************************************************************************************************************/ /** CSS for map headings *************************************************************************************/ .headinglight { text-align: justify; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: #06067c; } /*************************************************************************************************************/ /** CSS for date/time-****************************************************************************************/ .asonlight { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: #040563; font-weight: bold; font-size: large; } .tickingclocklight { font-size: medium; color: rgb(12, 12, 167); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; } /*************************************************************************************************************/ /** Total count for State ************************************************************************************/ .statecountlight { background-color: rgb(241, 241, 234); color: rgb(125, 173, 247); border: 5px solid white; border-radius: 10px; font-size: medium; font-family: Verdana, Geneva, Tahoma, sans-serif; font-weight: bold; } .statetotalconfirmed { color: rgb(255, 143, 143); font-size: large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } .statetotalrecovered { color: rgb(136, 253, 136); font-size: large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } .statetotaldeaths { color: rgb(158, 157, 157); font-size: large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } /*************************************************************************************************************/ /** Error Handling Start *************************************************************************************/ .errorheadinglight { font-size: xx-large; text-align: center; background-color: rgb(255, 204, 204); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; border-radius: 25px; border: 8px solid white; } .errorbodylight { font-size: x-large; text-align: center; background-color: rgb(255, 244, 230); color: #040650; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; border-radius: 25px; border: 8px solid white; } .reloadbutton { text-align: center; } /** Error Handling End ***************************************************************************************/ /** Heading & Footer Start CSS *******************************************************************************/ .headertag { font-size: medium; text-align: center; } .headerdivlight { background-color: #ececec; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: #040650; padding: 10px; text-align: center; } .virusicon { content: url("./icons/covid19icon.png"); height: 40px; width: 40px; display: inline-block; } .footer { text-align: center; } .lightbody { background-color: white; } /** icon light mode - change color to yellow */ .toggleiconlight { height: 30px; width: 30px; background-color: #ececec; border: none; background: none; padding: 0; color: #9e9e9e; } .toggleiconlight:focus { outline: none; } .toggleicondiv { float: right; } /** Reload button light mode */ .reloadiconlight { height: 30px; width: 30px; background-color: #ececec; border: none; background: none; padding: 0; color: black; } .reloadiconlight:focus { outline: none; } /** Link styling */ .datasourcelinklight { color: rgb(41, 76, 129); text-decoration: none; } .datasourcelinklight:hover { color: #26887b; text-decoration: none; } /** About Page body styling - light mode */ .aboutlight { text-align: center; background-color: white; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: #040650; height: 100%; width: 100%; } /** About Page components styling*/ .aboutques { width: 50%; text-align: left; margin: auto; } /** LIGHT MODE + GENERIC CSS END *****************************************************************************/ /** DARK MODE START ******************************************************************************************/ /** Table styling Start **************************************************************************************/ /** Common to both tables ************************************************************************************/ .darkbody { background-color: rgb(41, 40, 40); } /** Header div dark mode */ .headerdivdark { background-color: #5a5959; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: #d8d8d8; padding: 10px; text-align: center; } /** Toggle icon dark mode */ .toggleicondark { height: 30px; width: 30px; background-color: #5a5959; border: none; background: none; padding: 0; color: #ffe137; } .toggleicondark:focus { outline: none; } /** Reload icon dark mode */ .reloadicondark { height: 30px; width: 30px; background-color: #5a5959; border: none; background: none; padding: 0; color: #c5c5c5; } .reloadicondark:focus { outline: none; } /** Date/Time dark mode **************************************************************************************/ .asondark { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: #d3d3d3; font-weight: bold; font-size: large; } /** ticking clock dark mode */ .tickingclockdark { font-size: medium; color: rgb(197, 197, 197); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; } /** CSS for dark national count */ .nationalcountdark { background-color: #5a5959; color: rgb(125, 173, 247); border: 5px solid rgb(41, 40, 40); border-radius: 10px; font-size: larger; font-family: Verdana, Geneva, Tahoma, sans-serif; font-weight: bold; } /** State & District Table Header color and font-color - Overriding bootstrap classes - dark mode ************/ .table > .thead-dark > tr > th.dark { background-color: rgb(160, 160, 160); color: rgb(46, 46, 46); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; border: 5px solid rgb(41, 40, 40); border-radius: 12px; } /** State & District Table header hover */ .table > .thead-dark > tr > th.dark:hover { background-color: rgb(161, 159, 159); color: rgb(7, 94, 134); } /** State Table body */ .table > tbody.dark { background-color: rgba(250, 164, 164, 0.185); font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif; font-weight: lighter; color: rgb(190, 190, 190); } /** Bordering state table rows */ .table > tbody.dark > tr > td { border: 7px solid rgb(41, 40, 40); border-radius: 20px; } /** Hovering state table rows */ .table > tbody.dark > tr:hover { color: rgb(179, 18, 18); cursor: pointer; } /** CSS to show confirmed in red (state level) */ .table > tbody.dark > tr > td > div > .deltaconfirmed { color: red; font-size: small; } /** CSS to show active in orange (state level) */ .table > tbody.dark > tr > td > div > .deltaactive { color: orange; font-size: small; } /** CSS to show recovered in green (state level) */ .table > tbody.dark > tr > td > div > .deltarecovered { color: green; font-size: small; } /** CSS to show deaths in gray (state level) */ .table > tbody.dark > tr > td > div > .deltadeaths { color: gray; font-size: small; } /** State level styling end ************************************************************************************/ /** District level styling start *****************************************************************************/ /** District Table body */ .table > .districtdark { background-color: rgb(80, 80, 80); color: rgb(190, 190, 190); } /** Bordering district table rows */ .table > tbody.districtdark > tr > td { border: 7px solid rgb(41, 40, 40); border-radius: 20px; } /** District hover rows */ tbody.districtdark > tr:hover { color: rgb(58, 58, 252); } /** CSS to show confirmed in red (district level) */ .table > .districtdark > tr > td > div > .deltaconfirmeddistrict { color: red; font-size: small; } /** CSS to show active in orange (district level) */ .table > .districtdark > tr > td > div > .deltaactivedistrict { color: orange; font-size: small; } /** CSS to show recovered in green (district level) */ .table > .districtdark > tr > td > div > .deltarecovereddistrict { color: green; font-size: small; } /** CSS to show deaths in gray (district level) */ .table > .districtdark > tr > td > div > .deltadeceaseddistrict { color: gray; font-size: small; } /** To align actual numbers to right for proper visibility (district level) */ .table > .districtdark > tr > td > div > .nondeltadistrict { margin-left: auto; margin-right: 0; } /** Zonal Colors Start - edited for proper visibility with dark mode */ .table > .districtdark > tr > .Red { background-color: rgb(58, 26, 26); } .table > .districtdark > tr > .Orange { background-color: rgb(61, 49, 26); } .table > .districtdark > tr > .Green { background-color: rgb(34, 68, 34); } /** Zonal Colors End */ /** div holding the district table - dark mode */ .districtdivdark { background-color: rgb(41, 40, 40); cursor: auto; } /** State total count - dark mode */ .statecountdark { background-color: #5a5959; color: rgb(125, 173, 247); border: 5px solid rgb(41, 40, 40); border-radius: 10px; font-size: medium; font-family: Verdana, Geneva, Tahoma, sans-serif; font-weight: bold; } /** State heading dark mode */ .headingdark { text-align: justify; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: rgb(194, 192, 192); } /** Gradient text font color for dark mode */ #gradientboxdark { margin-right: 0; margin-left: auto; width: auto; height: 30px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: rgb(194, 192, 192); font-weight: bold; font-size: inherit; } /** API Link styling dark mode */ .datasourcelinkdark { color: #a4a4b6; text-decoration: none; } .datasourcelinkdark:hover { color: #9ef3e8; text-decoration: none; } /** About page body dark mode */ .aboutdark { text-align: center; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: rgb(194, 192, 192); background-color: rgb(41, 40, 40); height: 100%; width: 100%; } .errorheadingdark { font-size: xx-large; text-align: center; background-color: #5a5959; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; border-radius: 25px; border: 8px solid rgb(41, 40, 40); color: rgb(194, 192, 192); } .errorbodydark { font-size: x-large; text-align: center; background-color: rgb(41, 40, 40); color: rgb(194, 192, 192); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; border-radius: 25px; border: 8px solid rgb(41, 40, 40); } /** DARK MODE CSS END ****************************************************************************************/ /* div { border: 2px solid black; } */ /** CSS END FOR PROJECT */
src/App.css
/** CSS to animate sliding down */ .react-slidedown.districtsslidedown { /** overriding default react-slidedown css */ height: 0; transition-property: none; transition-duration: 0.5s; transition-timing-function: ease-in-out; } /** Align divs on same line */ .samelinedivalign { display: flex; flex-direction: row; } /** Table styling Start **************************************************************************************/ /** State & District Table Header color and font-color - Overriding bootstrap classes ************************/ .table > .thead-dark > tr > th.light { background-color: rgb(184, 185, 185); color: rgb(46, 46, 46); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; border: 5px solid rgb(248, 245, 245); border-radius: 12px; } /** State & District Table header hover */ .table > .thead-dark > tr > th.light:hover { background-color: rgb(161, 159, 159); color: rgb(7, 94, 134); } /** To align actual numbers to right for proper visibility */ .table > tbody > tr > td > div > .nondelta { margin-left: auto; margin-right: 0; } /** State level styling start ********************************************************************************/ /** State Table body */ .table > tbody.light { background-color: rgba(250, 164, 164, 0.185); font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif; font-weight: lighter; color: rgb(51, 50, 49); } /** Bordering state table rows */ .table > tbody.light > tr > td { border: 7px solid white; border-radius: 20px; } /** Hovering state table rows */ .table > tbody.light > tr:hover { color: rgb(179, 18, 18); cursor: pointer; } /** CSS to show confirmed in red (state level) */ .table > tbody.light > tr > td > div > .deltaconfirmed { color: red; font-size: small; } /** CSS to show active in orange (state level) */ .table > tbody.light > tr > td > div > .deltaactive { color: orange; font-size: small; } /** CSS to show recovered in green (state level) */ .table > tbody.light > tr > td > div > .deltarecovered { color: green; font-size: small; } /** CSS to show deaths in gray (state level) */ .table > tbody.light > tr > td > div > .deltadeaths { color: gray; font-size: small; } /** State level styling end ************************************************************************************/ /** District level styling start *****************************************************************************/ /** District Table body */ .table > .districtlight { background-color: rgb(225, 225, 247); font-weight: lighter; } /** Bordering district table rows */ .table > tbody.districtlight > tr > td { border: 7px solid white; border-radius: 20px; } /** District hover rows */ tbody.districtlight > tr:hover { color: rgb(58, 58, 252); } /** CSS to show confirmed in red (district level) */ .table > .districtlight > tr > td > div > .deltaconfirmeddistrict { color: red; font-size: small; } /** CSS to show active in orange (district level) */ .table > .districtlight > tr > td > div > .deltaactivedistrict { color: orange; font-size: small; } /** CSS to show recovered in green (district level) */ .table > .districtlight > tr > td > div > .deltarecovereddistrict { color: green; font-size: small; } /** CSS to show deaths in gray (district level) */ .table > .districtlight > tr > td > div > .deltadeceaseddistrict { color: gray; font-size: small; } /** To align actual numbers to right for proper visibility (district level) */ .table > .districtlight > tr > td > div > .nondeltadistrict { margin-left: auto; margin-right: 0; } /** Zonal Colors Start*/ .table > .districtlight > tr > .Red { background-color: rgb(252, 190, 190); } .table > .districtlight > tr > .Orange { background-color: rgb(255, 228, 177); } .table > .districtlight > tr > .Green { background-color: rgb(177, 255, 177); } .districtdivlight { background-color: white; cursor: auto; } /** Zonal Colors End */ /** District level styling End *******************************************************************************/ /** Table styling end ****************************************************************************************/ /** Total count styling Start ********************************************************************************/ /** Overall CSS for all total counts - light mode*/ .nationalcountlight { background-color: rgb(241, 241, 234); color: rgb(125, 173, 247); border: 5px solid white; border-radius: 10px; font-size: larger; font-family: Verdana, Geneva, Tahoma, sans-serif; font-weight: bold; } .totalconfirmed { color: rgb(255, 143, 143); font-size: x-large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } .totalactive { color: rgb(253, 191, 97); font-size: x-large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } .totalrecovered { color: rgb(136, 253, 136); font-size: x-large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } .totaldeaths { color: rgb(158, 157, 157); font-size: x-large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } .totaldeltaconfirmed { color: red; font-size: large; font-weight: bold; } .totaldeltarecovered { color: green; font-size: large; font-weight: bold; } .totaldeltaactive { color: orange; font-size: large; font-weight: bold; } .totaldeltadeaths { color: gray; font-size: large; font-weight: bold; } /** Total count CSS end **************************************************************************************/ /** CSS for Dropdown List Start ******************************************************************************/ .mapdropdown { padding-top: 8px; } /** Confirmed List */ #dropdown-basic-button-confirmed { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: rgb(250, 49, 49); background-color: rgb(252, 208, 208); border-radius: 10px; transition: all 750ms; border: 1px solid rgb(228, 90, 90); } #dropdown-basic-button-confirmed:hover { background-color: rgb(252, 229, 229); cursor: pointer; } #dropdown-basic-button-confirmed:focus { box-shadow: 0 0 3px 2px #f87878; } /** Active List */ #dropdown-basic-button-active { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: rgb(250, 129, 49); background-color: rgb(248, 220, 182); border-radius: 10px; transition: all 750ms; border: 1px solid rgb(173, 108, 34); margin-left: 0; margin-right: auto; } #dropdown-basic-button-active:hover { background-color: rgb(252, 239, 210); cursor: pointer; } #dropdown-basic-button-active:focus { box-shadow: 0 0 3px 2px #e97f05; } /** Recovered/Recovery Rate List */ #dropdown-basic-button-recovered, #dropdown-basic-button-recovery_rate { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: rgb(57, 167, 67); background-color: rgb(198, 253, 197); border-radius: 10px; transition: all 750ms; border: 1px solid rgb(83, 158, 40); margin-left: 0; margin-right: auto; } #dropdown-basic-button-recovered:hover, #dropdown-basic-button-recovery_rate:hover { background-color: rgb(226, 255, 230); cursor: pointer; } #dropdown-basic-button-recovered:focus, #dropdown-basic-button-recovery_rate:focus { box-shadow: 0 0 3px 2px #2be905; } /** Death/Death Rate List */ #dropdown-basic-button-deaths, #dropdown-basic-button-death_rate { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: rgb(61, 61, 63); background-color: rgb(199, 199, 199); border-radius: 10px; transition: all 750ms; border: 1px solid rgb(117, 117, 117); margin-left: 0; margin-right: auto; } #dropdown-basic-button-deaths:hover, #dropdown-basic-button-death_rate:hover { background-color: rgb(224, 226, 226); cursor: pointer; } #dropdown-basic-button-deaths:focus, #dropdown-basic-button-death_rate:focus { box-shadow: 0 0 3px 2px #7c7b7a; } /** Deceased List */ #dropdown-basic-button-deceased { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: rgb(61, 61, 63); background-color: rgb(199, 199, 199); border-radius: 10px; transition: all 750ms; border: 1px solid rgb(117, 117, 117); margin-left: 0; margin-right: auto; } #dropdown-basic-button-deceased:hover { background-color: rgb(224, 226, 226); cursor: pointer; } #dropdown-basic-button-deceased:focus { box-shadow: 0 0 3px 2px #7c7b7a; } /** Zonal List */ #dropdown-basic-button-zones { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: #0c6611; background-color: rgb(255, 210, 143); border-radius: 10px; transition: all 750ms; border: 1px solid #f58013; margin-left: 0; margin-right: auto; } #dropdown-basic-button-zones:hover { background-color: rgb(255, 230, 191); cursor: pointer; } #dropdown-basic-button-zones:focus { box-shadow: 0 0 3px 2px #e97f05d5; } /** Menu items */ #dropdownmenu { font-size: large; width: 170px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; color: rgb(18, 18, 19); } #dropdownmenu:hover { background-color: rgb(228, 250, 255); color: rgb(18, 31, 214); cursor: pointer; } /** CSS for Dropdown List End ********************************************************************************/ /** CSS for Linear Gradient Start ****************************************************************************/ #gradientboxlight { margin-right: 0; margin-left: auto; width: auto; height: 30px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: blue; font-weight: bold; font-size: inherit; } /** Used in gradient display */ .fill { flex: 1; text-align: center; } /** CSS for Linear Gradient End ******************************************************************************/ /** CSS for Back Button **************************************************************************************/ .backbutton { background-color: #c8f1fc; color: #040563; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; font-size: large; border-radius: 12px; transition: all 750ms; } .backbutton:hover { background-color: rgb(216, 216, 250); color: #080872; cursor: pointer; } .backbuttondiv { margin-left: auto; margin-right: 0; } /*************************************************************************************************************/ /** CSS for map headings *************************************************************************************/ .headinglight { text-align: justify; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: #06067c; } /*************************************************************************************************************/ /** CSS for date/time-****************************************************************************************/ .asonlight { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: #040563; font-weight: bold; font-size: large; } .tickingclocklight { font-size: medium; color: rgb(12, 12, 167); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; } /*************************************************************************************************************/ /** Total count for State ************************************************************************************/ .statecountlight { background-color: rgb(241, 241, 234); color: rgb(125, 173, 247); border: 5px solid white; border-radius: 10px; font-size: medium; font-family: Verdana, Geneva, Tahoma, sans-serif; font-weight: bold; } .statetotalconfirmed { color: rgb(255, 143, 143); font-size: large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } .statetotalrecovered { color: rgb(136, 253, 136); font-size: large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } .statetotaldeaths { color: rgb(158, 157, 157); font-size: large; font-weight: bold; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; } /*************************************************************************************************************/ /** Error Handling Start *************************************************************************************/ .errorheadinglight { font-size: xx-large; text-align: center; background-color: rgb(255, 204, 204); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; border-radius: 25px; border: 8px solid white; } .errorbodylight { font-size: x-large; text-align: center; background-color: rgb(255, 244, 230); color: #040650; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; border-radius: 25px; border: 8px solid white; } .reloadbutton { text-align: center; } /** Error Handling End ***************************************************************************************/ /** Heading & Footer Start CSS *******************************************************************************/ .headertag { font-size: medium; text-align: center; } .headerdivlight { background-color: #ececec; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: #040650; padding: 10px; text-align: center; } .virusicon { content: url("./icons/covid19icon.png"); height: 40px; width: 40px; display: inline-block; } .footer { text-align: center; } .lightbody { background-color: white; } /** icon light mode - change color to yellow */ .toggleiconlight { height: 30px; width: 30px; background-color: #ececec; border: none; background: none; padding: 0; color: #9e9e9e; } .toggleiconlight:focus { outline: none; } .toggleicondiv { float: right; } /** Reload button light mode */ .reloadiconlight { height: 30px; width: 30px; background-color: #ececec; border: none; background: none; padding: 0; color: black; } .reloadiconlight:focus { outline: none; } /** Link styling */ .datasourcelinklight { color: rgb(41, 76, 129); text-decoration: none; } .datasourcelinklight:hover { color: #26887b; text-decoration: none; } /** About Page body styling - light mode */ .aboutlight { text-align: center; background-color: white; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: #040650; height: 100%; width: 100%; } /** About Page components styling*/ .aboutques { width: 50%; text-align: left; margin: auto; } /** LIGHT MODE + GENERIC CSS END *****************************************************************************/ /** DARK MODE START ******************************************************************************************/ /** Table styling Start **************************************************************************************/ /** Common to both tables ************************************************************************************/ .darkbody { background-color: rgb(41, 40, 40); } /** Header div dark mode */ .headerdivdark { background-color: #5a5959; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: #d8d8d8; padding: 10px; text-align: center; } /** Toggle icon dark mode */ .toggleicondark { height: 30px; width: 30px; background-color: #5a5959; border: none; background: none; padding: 0; color: #ffe137; } .toggleicondark:focus { outline: none; } /** Reload icon dark mode */ .reloadicondark { height: 30px; width: 30px; background-color: #5a5959; border: none; background: none; padding: 0; color: #c5c5c5; } .reloadicondark:focus { outline: none; } /** Date/Time dark mode **************************************************************************************/ .asondark { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: #d3d3d3; font-weight: bold; font-size: large; } /** ticking clock dark mode */ .tickingclockdark { font-size: medium; color: rgb(197, 197, 197); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; font-weight: normal; } /** CSS for dark national count */ .nationalcountdark { background-color: #5a5959; color: rgb(125, 173, 247); border: 5px solid rgb(41, 40, 40); border-radius: 10px; font-size: larger; font-family: Verdana, Geneva, Tahoma, sans-serif; font-weight: bold; } /** State & District Table Header color and font-color - Overriding bootstrap classes - dark mode ************/ .table > .thead-dark > tr > th.dark { background-color: rgb(160, 160, 160); color: rgb(46, 46, 46); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; border: 5px solid rgb(41, 40, 40); border-radius: 12px; } /** State & District Table header hover */ .table > .thead-dark > tr > th.dark:hover { background-color: rgb(161, 159, 159); color: rgb(7, 94, 134); } /** State Table body */ .table > tbody.dark { background-color: rgba(250, 164, 164, 0.185); font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif; font-weight: lighter; color: rgb(190, 190, 190); } /** Bordering state table rows */ .table > tbody.dark > tr > td { border: 7px solid rgb(41, 40, 40); border-radius: 20px; } /** Hovering state table rows */ .table > tbody.dark > tr:hover { color: rgb(179, 18, 18); cursor: pointer; } /** CSS to show confirmed in red (state level) */ .table > tbody.dark > tr > td > div > .deltaconfirmed { color: red; font-size: small; } /** CSS to show active in orange (state level) */ .table > tbody.dark > tr > td > div > .deltaactive { color: orange; font-size: small; } /** CSS to show recovered in green (state level) */ .table > tbody.dark > tr > td > div > .deltarecovered { color: green; font-size: small; } /** CSS to show deaths in gray (state level) */ .table > tbody.dark > tr > td > div > .deltadeaths { color: gray; font-size: small; } /** State level styling end ************************************************************************************/ /** District level styling start *****************************************************************************/ /** District Table body */ .table > .districtdark { background-color: rgb(80, 80, 80); color: rgb(190, 190, 190); } /** Bordering district table rows */ .table > tbody.districtdark > tr > td { border: 7px solid rgb(41, 40, 40); border-radius: 20px; } /** District hover rows */ tbody.districtdark > tr:hover { color: rgb(58, 58, 252); } /** CSS to show confirmed in red (district level) */ .table > .districtdark > tr > td > div > .deltaconfirmeddistrict { color: red; font-size: small; } /** CSS to show active in orange (district level) */ .table > .districtdark > tr > td > div > .deltaactivedistrict { color: orange; font-size: small; } /** CSS to show recovered in green (district level) */ .table > .districtdark > tr > td > div > .deltarecovereddistrict { color: green; font-size: small; } /** CSS to show deaths in gray (district level) */ .table > .districtdark > tr > td > div > .deltadeceaseddistrict { color: gray; font-size: small; } /** To align actual numbers to right for proper visibility (district level) */ .table > .districtdark > tr > td > div > .nondeltadistrict { margin-left: auto; margin-right: 0; } /** Zonal Colors Start - edited for proper visibility with dark mode */ .table > .districtdark > tr > .Red { background-color: rgb(58, 26, 26); } .table > .districtdark > tr > .Orange { background-color: rgb(61, 49, 26); } .table > .districtdark > tr > .Green { background-color: rgb(34, 68, 34); } /** Zonal Colors End */ /** div holding the district table - dark mode */ .districtdivdark { background-color: rgb(41, 40, 40); cursor: auto; } /** State total count - dark mode */ .statecountdark { background-color: #5a5959; color: rgb(125, 173, 247); border: 5px solid rgb(41, 40, 40); border-radius: 10px; font-size: medium; font-family: Verdana, Geneva, Tahoma, sans-serif; font-weight: bold; } /** State heading dark mode */ .headingdark { text-align: justify; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: rgb(194, 192, 192); } /** Gradient text font color for dark mode */ #gradientboxdark { margin-right: 0; margin-left: auto; width: auto; height: 30px; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: rgb(194, 192, 192); font-weight: bold; font-size: inherit; } /** API Link styling dark mode */ .datasourcelinkdark { color: #a4a4b6; text-decoration: none; } .datasourcelinkdark:hover { color: #9ef3e8; text-decoration: none; } /** About page body dark mode */ .aboutdark { text-align: center; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; color: rgb(194, 192, 192); background-color: rgb(41, 40, 40); height: 100%; width: 100%; } .errorheadingdark { font-size: xx-large; text-align: center; background-color: #5a5959; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; border-radius: 25px; border: 8px solid rgb(41, 40, 40); color: rgb(194, 192, 192); } .errorbodydark { font-size: x-large; text-align: center; background-color: rgb(41, 40, 40); color: rgb(194, 192, 192); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; border-radius: 25px; border: 8px solid rgb(41, 40, 40); } /** DARK MODE CSS END ****************************************************************************************/ /* div { border: 2px solid black; } */ /** CSS END FOR PROJECT */
0.603815
0.134577
Main Wrap --------------------------------------------------------------*/ /* line 5, sass/partials/_main_wrap.scss */ .cmb2-wrap { margin: 0; } /* line 8, sass/partials/_main_wrap.scss */ .cmb2-wrap input, .cmb2-wrap textarea { font-size: 14px; max-width: 100%; padding: 5px; } /* line 18, sass/partials/_main_wrap.scss */ .cmb2-wrap input[type=text].cmb2-oembed { width: 100%; } /* line 23, sass/partials/_main_wrap.scss */ .cmb2-wrap textarea { width: 500px; } /* line 26, sass/partials/_main_wrap.scss */ .cmb2-wrap textarea.cmb2-textarea-code { font-family: "Courier 10 Pitch", Courier, monospace; line-height: 16px; } /* line 34, sass/partials/_main_wrap.scss */ .cmb2-wrap input.cmb2-text-small, .cmb2-wrap input.cmb2-timepicker { width: 100px; } /* line 40, sass/partials/_main_wrap.scss */ .cmb2-wrap input.cmb2-text-money { width: 90px; } /* line 45, sass/partials/_main_wrap.scss */ .cmb2-wrap input.cmb2-text-medium { width: 230px; } /* line 50, sass/partials/_main_wrap.scss */ .cmb2-wrap input.cmb2-upload-file { width: 65%; } /* line 54, sass/partials/_main_wrap.scss */ .cmb2-wrap input.ed_button { padding: 2px 4px; } /* line 59, sass/partials/_main_wrap.scss */ .cmb2-wrap input:not([type="hidden"]) + input, .cmb2-wrap input:not([type="hidden"]) + .button, .cmb2-wrap input:not([type="hidden"]) + select { margin-right: 20px; } /* line 67, sass/partials/_main_wrap.scss */ .cmb2-wrap ul { margin: 0; } /* line 71, sass/partials/_main_wrap.scss */ .cmb2-wrap li { font-size: 14px; line-height: 16px; margin: 1px 0 5px 0; } /* line 82, sass/partials/_main_wrap.scss */ .cmb2-wrap select { font-size: 14px; margin-top: 3px; } /* line 87, sass/partials/_main_wrap.scss */ .cmb2-wrap input:focus, .cmb2-wrap textarea:focus { background: #fffff8; } /* line 92, sass/partials/_main_wrap.scss */ .cmb2-wrap input[type="radio"] { margin: 0 0 0 5px; padding: 0; } /* line 97, sass/partials/_main_wrap.scss */ .cmb2-wrap input[type="checkbox"] { margin: 0 0 0 5px; padding: 0; } /* line 102, sass/partials/_main_wrap.scss */ .cmb2-wrap button, .cmb2-wrap .button { white-space: nowrap; } /* line 107, sass/partials/_main_wrap.scss */ .cmb2-wrap .mceLayout { border: 1px solid #e9e9e9 !important; } /* line 111, sass/partials/_main_wrap.scss */ .cmb2-wrap .mceIframeContainer { background: #fff; } /* line 115, sass/partials/_main_wrap.scss */ .cmb2-wrap .meta_mce { width: 97%; } /* line 118, sass/partials/_main_wrap.scss */ .cmb2-wrap .meta_mce textarea { width: 100%; } /* line 126, sass/partials/_main_wrap.scss */ .cmb2-wrap .wp-color-result, .cmb2-wrap .wp-picker-input-wrap { vertical-align: middle; } /* line 131, sass/partials/_main_wrap.scss */ .cmb2-wrap .wp-color-result, .cmb2-wrap .wp-picker-container { margin: 0 0 0 10px; } /* line 136, sass/partials/_main_wrap.scss */ .cmb2-wrap .cmb-row { margin: 0; } /* line 139, sass/partials/_main_wrap.scss */ .cmb2-wrap .cmb-row:after { content: ''; clear: both; display: block; width: 100%; } /* line 146, sass/partials/_main_wrap.scss */ .cmb2-wrap .cmb-row.cmb-repeat-row { padding: 1.8em 0 0; } /* line 149, sass/partials/_main_wrap.scss */ .cmb2-wrap .cmb-row.cmb-repeat-row:first-of-type { padding: 0; } /* line 154, sass/partials/_main_wrap.scss */ .cmb2-wrap .cmb-row.cmb-repeat .cmb2-metabox-description { padding-top: 0; padding-bottom: 1.8em; } /* line 161, sass/partials/_main_wrap.scss */ .cmb2-metabox { clear: both; margin: 0; } /* line 167, sass/partials/_main_wrap.scss */ .cmb2-metabox > .cmb-row:first-of-type > .cmb-td, .cmb2-metabox > .cmb-row:first-of-type > .cmb-th, .cmb2-metabox .cmb-field-list > .cmb-row:first-of-type > .cmb-td, .cmb2-metabox .cmb-field-list > .cmb-row:first-of-type > .cmb-th { border: 0; } /* line 174, sass/partials/_main_wrap.scss */ .cmb2-metabox > .cmb-row .cmb-repeat-table .cmb-row > .cmb-td { padding-left: 20px; box-sizing: border-box; float: right; } /* line 182, sass/partials/_main_wrap.scss */ .cmb-add-row { margin: 1.8em 0 0; } /* line 186, sass/partials/_main_wrap.scss */ .cmb-nested .cmb-td, .cmb-repeatable-group .cmb-th, .cmb-repeatable-group:first-of-type { border: 0; } /* line 192, sass/partials/_main_wrap.scss */ .cmb-row:last-of-type, .cmb2-wrap .cmb-row:last-of-type, .cmb-repeatable-group:last-of-type { border-bottom: 0; } /* line 198, sass/partials/_main_wrap.scss */ .cmb-repeatable-grouping { border: 1px solid #e9e9e9; padding: 0 1em; max-width: 1000px; } /* line 202, sass/partials/_main_wrap.scss */ .cmb-repeatable-grouping.cmb-row { margin: 0 0 0.8em; } /* line 209, sass/partials/_main_wrap.scss */ .cmb-th { color: #222222; float: right; font-weight: 600; line-height: 1.3; padding: 20px 0 20px 10px; vertical-align: top; width: 200px; } /* line 223, sass/partials/_main_wrap.scss */ .cmb-td { line-height: 1.3; max-width: 100%; padding: 15px 10px; vertical-align: middle; } /* line 232, sass/partials/_main_wrap.scss */ .cmb-type-title .cmb-td { padding: 0; } /* line 237, sass/partials/_main_wrap.scss */ .cmb-th label { display: block; padding: 5px 0; } /* line 242, sass/partials/_main_wrap.scss */ .cmb-th + .cmb-td { float: right; } /* line 246, sass/partials/_main_wrap.scss */ .cmb-td .cmb-td { padding-bottom: 1em; } /* line 250, sass/partials/_main_wrap.scss */ .cmb-remove-row { text-align: left; } /* line 254, sass/partials/_main_wrap.scss */ .empty-row.hidden { display: none; } /* line 260, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-th { padding: 5px; } /* line 264, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-group-title { background-color: #e9e9e9; padding: 8px 2.2em 8px 12px; margin: 0 -1em; min-height: 1.5em; font-size: 14px; line-height: 1.4; } /* line 272, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-group-title h4 { border: 0; margin: 0; font-size: 1.2em; font-weight: 500; padding: 0.5em 0.75em; } /* line 280, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-group-title .cmb-th { display: block; width: 100%; } /* line 286, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-group-description .cmb-th { font-size: 1.2em; display: block; float: none; padding-bottom: 1em; text-align: right; width: 100%; } /* line 27, sass/partials/_mixins.scss */ .cmb-repeatable-group .cmb-group-description .cmb-th label { display: block; margin-top: 0em; padding-bottom: 5px; } /* line 32, sass/partials/_mixins.scss */ .cmb-repeatable-group .cmb-group-description .cmb-th label:after { border-bottom: 1px solid #e9e9e9; content: ''; clear: both; display: block; padding-top: .4em; } /* line 290, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-shift-rows { font-size: 1em; margin-left: 1em; text-decoration: none; } /* line 295, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-shift-rows .dashicons { font-size: 1.5em; height: 1.5em; line-height: 1.2em; width: 1em; } /* line 301, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-shift-rows .dashicons.dashicons-arrow-down-alt2 { line-height: 1.3em; } /* line 308, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb2-upload-button { float: left; } /* line 314, sass/partials/_main_wrap.scss */ p.cmb2-metabox-description { color: #aaaaaa; font-style: italic; margin: 0; padding-top: .5em; } /* line 321, sass/partials/_main_wrap.scss */ span.cmb2-metabox-description { color: #aaaaaa; font-style: italic; } /* line 326, sass/partials/_main_wrap.scss */ .cmb2-metabox-title { margin: 0 0 5px 0; padding: 5px 0 0 0; font-size: 14px; } /* line 332, sass/partials/_main_wrap.scss */ .cmb-inline ul { padding: 4px 0 0 0; } /* line 336, sass/partials/_main_wrap.scss */ .cmb-inline li { display: inline-block; padding-left: 18px; } /* line 341, sass/partials/_main_wrap.scss */ .cmb-type-textarea-code pre { margin: 0; } /* line 347, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status { clear: none; display: inline-block; float: right; margin-left: 10px; width: auto; } /* line 354, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status img { max-width: 350px; } /* line 359, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status img, .cmb2-media-status .embed-status { background: #ffffff; border: 1px solid #e9e9e9; border-radius: 2px; -moz-border-radius: 2px; margin: 15px 0 0 0; padding: 5px; } /* line 369, sass/partials/_main_wrap.scss */ .cmb2-media-status .embed-status { float: right; max-width: 800px; } /* line 374, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status, .cmb2-media-status .embed-status { position: relative; } /* line 377, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status .cmb2-remove-file-button, .cmb2-media-status .embed-status .cmb2-remove-file-button { background: url(../images/ico-delete.png); height: 16px; right: -5px; position: absolute; text-indent: -9999px; top: -5px; width: 16px; } /* line 391, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status .cmb2-remove-file-button { top: 10px; } /* line 396, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status img, .cmb2-media-status .file-status > span { cursor: pointer; } /* line 402, sass/partials/_main_wrap.scss */ .cmb-type-file-list .cmb2-media-status .img-status { clear: none; float: right; margin-left: 10px; width: auto; } /* line 409, sass/partials/_main_wrap.scss */ .cmb-attach-list li { clear: both; display: inline-block; margin-bottom: 25px; width: 100%; } /* line 415, sass/partials/_main_wrap.scss */ .cmb-attach-list li img { cursor: move; float: right; margin-left: 10px; } /* line 422, sass/partials/_main_wrap.scss */ .cmb2-remove-wrapper { margin: 0; } /* line 426, sass/partials/_main_wrap.scss */ .child-cmb2 .cmb-th { text-align: right; } /*-------------------------------------------------------------- Post Metaboxes --------------------------------------------------------------*/ /* line 4, sass/partials/_post_metaboxes.scss */ #poststuff .cmb-group-title { margin-right: -1em; margin-left: -1em; min-height: 1.5em; } /* line 10, sass/partials/_post_metaboxes.scss */ #poststuff .repeatable .cmb-group-title { padding-right: 2.2em; } /* line 16, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-wrap, .cmb-type-group .cmb2-wrap { margin: 0; } /* line 19, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-wrap > .cmb-field-list > .cmb-row, .cmb-type-group .cmb2-wrap > .cmb-field-list > .cmb-row { padding: 1.8em 0; } /* line 25, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-wrap input[type=text].cmb2-oembed, .cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed { width: 100%; } /* line 31, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-row, .cmb-type-group .cmb-row { padding: 0 0 1.8em; margin: 0 0 0.8em; } /* line 35, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-row .cmbhandle, .cmb-type-group .cmb-row .cmbhandle { left: -1em; position: relative; } /* line 41, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-repeatable-grouping, .cmb-type-group .cmb-repeatable-grouping { padding: 0 1em; max-width: 100%; min-width: 1px !important; } /* line 47, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-repeatable-group > .cmb-row, .cmb-type-group .cmb-repeatable-group > .cmb-row { padding-bottom: 0; } /* line 51, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-th, .cmb-type-group .cmb-th { width: 18%; padding: 0 0 0 2%; } /* line 57, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-td, .cmb-type-group .cmb-td { margin-bottom: 0; padding: 0; line-height: 1.3; } /* line 63, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-repeat-row .cmb-td, .cmb-type-group .cmb-repeat-row .cmb-td { padding-bottom: 1.8em; } /* line 67, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-th + .cmb-td, .cmb-type-group .cmb-th + .cmb-td { width: 80%; float: left; } /* line 72, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-row:not(:last-of-type), .postbox-container .cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type), .cmb-type-group .cmb-repeatable-group:not(:last-of-type) { border-bottom: 1px solid #e9e9e9; } /* line 81, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-repeat-group-field, .postbox-container .cmb-remove-field-row, .cmb-type-group .cmb-repeat-group-field, .cmb-type-group .cmb-remove-field-row { padding-top: 1.8em; } /* line 88, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody { display: table; width: 100%; } /* line 92, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text { width: 100%; } /* line 96, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row) { display: table-row; } /* line 100, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td { display: table-cell; float: none; width: 100%; } /* line 106, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td { padding-top: 1.8em; } /* line 110, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row { padding-left: 0; } /*-------------------------------------------------------------- Misc. --------------------------------------------------------------*/ /* line 5, sass/partials/_misc.scss */ #poststuff .cmb-repeatable-group h2 { margin: 0; } /* line 12, sass/partials/_misc.scss */ .edit-tags-php .cmb2-metabox-title, .profile-php .cmb2-metabox-title, .user-edit-php .cmb2-metabox-title { font-size: 1.4em; } /* line 18, sass/partials/_misc.scss */ .cmb2-options-page .cmb2-metabox-title { font-size: 1.3em; margin: 1em 0; } /* line 21, sass/partials/_misc.scss */ .cmb2-options-page .cmb2-metabox-title + p.cmb2-metabox-description { margin-top: -1.6em; margin-bottom: .8em; } /* line 27, sass/partials/_misc.scss */ .postbox .cmb-spinner { float: right; } /*-------------------------------------------------------------- Sidebar Placement Adjustments --------------------------------------------------------------*/ /* line 10, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-wrap > .cmb-field-list > .cmb-row, #side-sortables .cmb2-wrap > .cmb-field-list > .cmb-row { padding: 1.4em 0; } /* line 16, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-wrap input[type=text]:not(.wp-color-picker), #side-sortables .cmb2-wrap input[type=text]:not(.wp-color-picker) { width: 100%; } /* line 20, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-wrap input + input:not(.wp-picker-clear), .inner-sidebar .cmb2-wrap input + select, #side-sortables .cmb2-wrap input + input:not(.wp-picker-clear), #side-sortables .cmb2-wrap input + select { margin-right: 0; margin-top: 1em; display: block; } /* line 26, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-wrap input.cmb2-text-money, #side-sortables .cmb2-wrap input.cmb2-text-money { max-width: 70%; } /* line 28, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-wrap input.cmb2-text-money + .cmb2-metabox-description, #side-sortables .cmb2-wrap input.cmb2-text-money + .cmb2-metabox-description { display: block; } /* line 34, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-wrap label, #side-sortables .cmb2-wrap label { display: block; font-weight: 700; padding: 0 0 5px; } /* line 42, sass/partials/_sidebar_placements.scss */ .inner-sidebar textarea, #side-sortables textarea { max-width: 99%; } /* line 46, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-repeatable-group, #side-sortables .cmb-repeatable-group { border-bottom: 1px solid #e9e9e9; } /* line 50, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-type-group > .cmb-td > .cmb-repeatable-group, #side-sortables .cmb-type-group > .cmb-td > .cmb-repeatable-group { border-bottom: 0; margin-bottom: -1.4em; } /* line 55, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-th, .inner-sidebar .cmb-td, .inner-sidebar .cmb-th + .cmb-td, #side-sortables .cmb-th, #side-sortables .cmb-td, #side-sortables .cmb-th + .cmb-td { width: 100%; display: block; float: none; } /* line 63, sass/partials/_sidebar_placements.scss */ .inner-sidebar .closed .inside, #side-sortables .closed .inside { display: none; } /* line 67, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-td .cmb-td, #side-sortables .cmb-td .cmb-td { padding-bottom: 1em; } /* line 71, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-th, #side-sortables .cmb-th { display: block; float: none; padding-bottom: 1em; text-align: right; width: 100%; padding-right: 0; padding-left: 0; } /* line 27, sass/partials/_mixins.scss */ .inner-sidebar .cmb-th label, #side-sortables .cmb-th label { display: block; margin-top: 0em; padding-bottom: 5px; } /* line 32, sass/partials/_mixins.scss */ .inner-sidebar .cmb-th label:after, #side-sortables .cmb-th label:after { border-bottom: 1px solid #e9e9e9; content: ''; clear: both; display: block; padding-top: .4em; } /* line 14, sass/partials/_mixins.scss */ .inner-sidebar .cmb-th label, #side-sortables .cmb-th label { font-size: 14px; line-height: 1.4em; } /* line 78, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-group-description .cmb-th, #side-sortables .cmb-group-description .cmb-th { padding-top: 0; } /* line 81, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-group-description .cmb2-metabox-description, #side-sortables .cmb-group-description .cmb2-metabox-description { padding: 0; } /* line 88, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-group-title .cmb-th, #side-sortables .cmb-group-title .cmb-th { padding: 0; } /* line 94, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-repeatable-grouping + .cmb-repeatable-grouping, #side-sortables .cmb-repeatable-grouping + .cmb-repeatable-grouping { margin-top: 1em; } /* line 103, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-media-status .img-status img, .inner-sidebar .cmb2-media-status .embed-status img, #side-sortables .cmb2-media-status .img-status img, #side-sortables .cmb2-media-status .embed-status img { max-width: 90%; height: auto; } /* line 111, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-list label, #side-sortables .cmb2-list label { display: inline; font-weight: normal; } /* line 116, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-metabox-description, #side-sortables .cmb2-metabox-description { display: block; padding: 7px 0 0; } /* line 123, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-type-checkbox .cmb-td label, .inner-sidebar .cmb-type-checkbox .cmb2-metabox-description, #side-sortables .cmb-type-checkbox .cmb-td label, #side-sortables .cmb-type-checkbox .cmb2-metabox-description { font-weight: normal; display: inline; } /* line 130, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-row .cmb2-metabox-description, #side-sortables .cmb-row .cmb2-metabox-description { padding-bottom: 1.8em; } /* line 134, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-metabox-title, #side-sortables .cmb2-metabox-title { font-size: 1.2em; font-style: italic; } /* line 139, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-remove-row, #side-sortables .cmb-remove-row { clear: both; padding-top: 12px; padding-bottom: 0; } /* line 146, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td, #side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td { width: auto; clear: none; float: right; padding-top: 0; } /* line 151, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row, #side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row { float: left; margin: 0; } /* line 158, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-upload-button, #side-sortables .cmb2-upload-button { clear: both; margin-top: 12px; } /* line 2, sass/partials/_collapsible_ui.scss */ .cmb2-metabox .cmb-type-group { max-width: 1000px; } /* line 5, sass/partials/_collapsible_ui.scss */ .cmb2-metabox .cmbhandle { color: #aaa; float: left; width: 27px; height: 30px; cursor: pointer; left: -1em; position: relative; } /* line 13, sass/partials/_collapsible_ui.scss */ .cmb2-metabox .cmbhandle:before { content: '\f142'; left: 12px; font: normal 20px/1 'dashicons'; speak: none; display: inline-block; padding: 8px 10px; top: 0; position: relative; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; } /* line 30, sass/partials/_collapsible_ui.scss */ .cmb2-metabox .postbox.closed .cmbhandle:before { content: '\f140'; } /* line 36, sass/partials/_collapsible_ui.scss */ .cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row { -webkit-appearance: none !important; background: none !important; border: none !important; position: absolute; right: 0; top: .5em; line-height: 1em; cursor: pointer; padding: 2px 6px 3px; } /* line 46, sass/partials/_collapsible_ui.scss */ .cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]) { color: #a00; } /* line 48, sass/partials/_collapsible_ui.scss */ .cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]):hover { color: #f00; } /* * jQuery UI CSS Framework 1.8.16 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * http://docs.jquery.com/UI/Theming/API * * WordPress Styles adopted from "jQuery UI Datepicker CSS for WordPress" * https://github.com/stuttter/wp-datepicker-styling * */ /* line 15, sass/partials/_jquery_ui.scss */ * html .cmb2-element.ui-helper-clearfix { height: 1%; } /* line 24, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker, .cmb2-element .ui-datepicker { padding: 0; margin: 0; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; background-color: #fff; border: 1px solid #dfdfdf; border-top: none; -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075); min-width: 17em; width: auto; /* Default Color Scheme */ } /* line 38, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker *, .cmb2-element .ui-datepicker * { padding: 0; font-family: "Open Sans", sans-serif; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } /* line 46, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker table, .cmb2-element .ui-datepicker table { font-size: 13px; margin: 0; border: none; border-collapse: collapse; } /* line 53, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-widget-header, .cmb2-element.ui-datepicker .ui-datepicker-header, .cmb2-element .ui-datepicker .ui-widget-header, .cmb2-element .ui-datepicker .ui-datepicker-header { background-image: none; border: none; color: #fff; font-weight: normal; } /* line 61, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover, .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover { background: transparent; border-color: transparent; cursor: pointer; } /* line 67, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-title, .cmb2-element .ui-datepicker .ui-datepicker-title { margin: 0; padding: 10px 0; color: #fff; font-size: 14px; line-height: 14px; text-align: center; } /* line 75, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-title select, .cmb2-element .ui-datepicker .ui-datepicker-title select { margin-top: -8px; margin-bottom: -8px; } /* line 81, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-prev, .cmb2-element.ui-datepicker .ui-datepicker-next, .cmb2-element .ui-datepicker .ui-datepicker-prev, .cmb2-element .ui-datepicker .ui-datepicker-next { position: relative; top: 0; height: 34px; width: 34px; } /* line 89, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-prev, .cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-next, .cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-prev, .cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-next { border: none; } /* line 94, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-prev, .cmb2-element.ui-datepicker .ui-datepicker-prev-hover, .cmb2-element .ui-datepicker .ui-datepicker-prev, .cmb2-element .ui-datepicker .ui-datepicker-prev-hover { right: 0; } /* line 99, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-next, .cmb2-element.ui-datepicker .ui-datepicker-next-hover, .cmb2-element .ui-datepicker .ui-datepicker-next, .cmb2-element .ui-datepicker .ui-datepicker-next-hover { left: 0; } /* line 104, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-next span, .cmb2-element.ui-datepicker .ui-datepicker-prev span, .cmb2-element .ui-datepicker .ui-datepicker-next span, .cmb2-element .ui-datepicker .ui-datepicker-prev span { display: none; } /* line 109, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-prev, .cmb2-element .ui-datepicker .ui-datepicker-prev { float: right; } /* line 113, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-next, .cmb2-element .ui-datepicker .ui-datepicker-next { float: left; } /* line 117, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-prev:before, .cmb2-element.ui-datepicker .ui-datepicker-next:before, .cmb2-element .ui-datepicker .ui-datepicker-prev:before, .cmb2-element .ui-datepicker .ui-datepicker-next:before { font: normal 20px/34px 'dashicons'; padding-right: 7px; color: #fff; speak: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; width: 34px; height: 34px; } /* line 129, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-prev:before, .cmb2-element .ui-datepicker .ui-datepicker-prev:before { content: '\f341'; } /* line 133, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-next:before, .cmb2-element .ui-datepicker .ui-datepicker-next:before { content: '\f345'; } /* line 137, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-prev-hover:before, .cmb2-element.ui-datepicker .ui-datepicker-next-hover:before, .cmb2-element .ui-datepicker .ui-datepicker-prev-hover:before, .cmb2-element .ui-datepicker .ui-datepicker-next-hover:before { opacity: 0.7; } /* line 142, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker select.ui-datepicker-month, .cmb2-element.ui-datepicker select.ui-datepicker-year, .cmb2-element .ui-datepicker select.ui-datepicker-month, .cmb2-element .ui-datepicker select.ui-datepicker-year { width: 33%; background: transparent; border-color: transparent; box-shadow: none; color: #fff; } /* line 151, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker thead, .cmb2-element .ui-datepicker thead { color: #fff; font-weight: 600; } /* line 154, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker thead th, .cmb2-element .ui-datepicker thead th { font-weight: normal; } /* line 159, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker th, .cmb2-element .ui-datepicker th { padding: 10px; } /* line 163, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td, .cmb2-element .ui-datepicker td { padding: 0; border: 1px solid #f4f4f4; } /* line 168, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td.ui-datepicker-other-month, .cmb2-element .ui-datepicker td.ui-datepicker-other-month { border: transparent; } /* line 172, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td.ui-datepicker-week-end, .cmb2-element .ui-datepicker td.ui-datepicker-week-end { background-color: #f4f4f4; border: 1px solid #f4f4f4; } /* line 175, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today, .cmb2-element .ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today { -webkit-box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.1); box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.1); } /* line 182, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td.ui-datepicker-today, .cmb2-element .ui-datepicker td.ui-datepicker-today { background-color: #f0f0c0; } /* line 186, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td.ui-datepicker-current-day, .cmb2-element .ui-datepicker td.ui-datepicker-current-day { background: #bbdd88; } /* line 190, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td .ui-state-default, .cmb2-element .ui-datepicker td .ui-state-default { background: transparent; border: none; text-align: center; text-decoration: none; width: auto; display: block; padding: 5px 10px; font-weight: normal; color: #444; } /* line 202, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default, .cmb2-element .ui-datepicker td.ui-state-disabled .ui-state-default { opacity: 0.5; } /* line 207, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-widget-header, .cmb2-element.ui-datepicker .ui-datepicker-header, .cmb2-element .ui-datepicker .ui-widget-header, .cmb2-element .ui-datepicker .ui-datepicker-header { background: #00a0d2; } /* line 212, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker thead, .cmb2-element .ui-datepicker thead { background: #32373c; } /* line 216, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td .ui-state-hover, .cmb2-element.ui-datepicker td .ui-state-active, .cmb2-element .ui-datepicker td .ui-state-hover, .cmb2-element .ui-datepicker td .ui-state-active { background: #0073aa; color: #fff; } /* line 221, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div, .cmb2-element .ui-datepicker .ui-timepicker-div { font-size: 14px; } /* line 223, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div dl, .cmb2-element .ui-datepicker .ui-timepicker-div dl { text-align: right; padding: 0 .6em; } /* line 226, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div dl dt, .cmb2-element .ui-datepicker .ui-timepicker-div dl dt { float: right; clear: right; padding: 0 5px 0 0; } /* line 231, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div dl dd, .cmb2-element .ui-datepicker .ui-timepicker-div dl dd { margin: 0 40% 10px 10px; } /* line 233, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div dl dd select, .cmb2-element .ui-datepicker .ui-timepicker-div dl dd select { width: 100%; } /* line 239, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane { padding: .6em; text-align: right; } /* line 243, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-primary, .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-secondary, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-primary, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-secondary { padding: 0 10px 1px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; margin: 0 .4em .4em .6em; } /* line 257, sass/partials/_jquery_ui.scss */ .admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-fresh .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-fresh .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-fresh .cmb2-element .ui-datepicker .ui-datepicker-header { background: #00a0d2; } /* line 262, sass/partials/_jquery_ui.scss */ .admin-color-fresh .cmb2-element.ui-datepicker thead, .admin-color-fresh .cmb2-element .ui-datepicker thead { background: #32373c; } /* line 266, sass/partials/_jquery_ui.scss */ .admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-fresh .cmb2-element .ui-datepicker td .ui-state-hover { background: #0073aa; color: #fff; } /* line 274, sass/partials/_jquery_ui.scss */ .admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-blue .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-blue .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-blue .cmb2-element .ui-datepicker .ui-datepicker-header { background: #52accc; } /* line 279, sass/partials/_jquery_ui.scss */ .admin-color-blue .cmb2-element.ui-datepicker thead, .admin-color-blue .cmb2-element .ui-datepicker thead { background: #4796b3; } /* line 288, sass/partials/_jquery_ui.scss */ .admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-blue .cmb2-element.ui-datepicker td .ui-state-active, .admin-color-blue .cmb2-element .ui-datepicker td .ui-state-hover, .admin-color-blue .cmb2-element .ui-datepicker td .ui-state-active { background: #096484; color: #fff; } /* line 293, sass/partials/_jquery_ui.scss */ .admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today, .admin-color-blue .cmb2-element .ui-datepicker td.ui-datepicker-today { background: #eee; } /* line 302, sass/partials/_jquery_ui.scss */ .admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-coffee .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-coffee .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-coffee .cmb2-element .ui-datepicker .ui-datepicker-header { background: #59524c; } /* line 307, sass/partials/_jquery_ui.scss */ .admin-color-coffee .cmb2-element.ui-datepicker thead, .admin-color-coffee .cmb2-element .ui-datepicker thead { background: #46403c; } /* line 311, sass/partials/_jquery_ui.scss */ .admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-coffee .cmb2-element .ui-datepicker td .ui-state-hover { background: #c7a589; color: #fff; } /* line 319, sass/partials/_jquery_ui.scss */ .admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-datepicker-header { background: #523f6d; } /* line 324, sass/partials/_jquery_ui.scss */ .admin-color-ectoplasm .cmb2-element.ui-datepicker thead, .admin-color-ectoplasm .cmb2-element .ui-datepicker thead { background: #413256; } /* line 328, sass/partials/_jquery_ui.scss */ .admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-ectoplasm .cmb2-element .ui-datepicker td .ui-state-hover { background: #a3b745; color: #fff; } /* line 336, sass/partials/_jquery_ui.scss */ .admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-midnight .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-midnight .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-midnight .cmb2-element .ui-datepicker .ui-datepicker-header { background: #363b3f; } /* line 341, sass/partials/_jquery_ui.scss */ .admin-color-midnight .cmb2-element.ui-datepicker thead, .admin-color-midnight .cmb2-element .ui-datepicker thead { background: #26292c; } /* line 345, sass/partials/_jquery_ui.scss */ .admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-midnight .cmb2-element .ui-datepicker td .ui-state-hover { background: #e14d43; color: #fff; } /* line 353, sass/partials/_jquery_ui.scss */ .admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-ocean .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-ocean .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-ocean .cmb2-element .ui-datepicker .ui-datepicker-header { background: #738e96; } /* line 358, sass/partials/_jquery_ui.scss */ .admin-color-ocean .cmb2-element.ui-datepicker thead, .admin-color-ocean .cmb2-element .ui-datepicker thead { background: #627c83; } /* line 362, sass/partials/_jquery_ui.scss */ .admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-ocean .cmb2-element .ui-datepicker td .ui-state-hover { background: #9ebaa0; color: #fff; } /* line 370, sass/partials/_jquery_ui.scss */ .admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover, .admin-color-sunrise .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header, .admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover { background: #cf4944; } /* line 376, sass/partials/_jquery_ui.scss */ .admin-color-sunrise .cmb2-element.ui-datepicker th, .admin-color-sunrise .cmb2-element .ui-datepicker th { border-color: #be3631; background: #be3631; } /* line 381, sass/partials/_jquery_ui.scss */ .admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-sunrise .cmb2-element .ui-datepicker td .ui-state-hover { background: #dd823b; color: #fff; } /* line 389, sass/partials/_jquery_ui.scss */ .admin-color-light .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-light .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-header { background: #e5e5e5; } /* line 394, sass/partials/_jquery_ui.scss */ .admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month, .admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-year, .admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-month, .admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-year { color: #555; } /* line 399, sass/partials/_jquery_ui.scss */ .admin-color-light .cmb2-element.ui-datepicker thead, .admin-color-light .cmb2-element .ui-datepicker thead { background: #888; } /* line 403, sass/partials/_jquery_ui.scss */ .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title, .admin-color-light .cmb2-element.ui-datepicker td .ui-state-default, .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-prev:before, .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-next:before, .admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-title, .admin-color-light .cmb2-element .ui-datepicker td .ui-state-default, .admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-prev:before, .admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-next:before { color: #555; } /* line 411, sass/partials/_jquery_ui.scss */ .admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-light .cmb2-element.ui-datepicker td .ui-state-active, .admin-color-light .cmb2-element .ui-datepicker td .ui-state-hover, .admin-color-light .cmb2-element .ui-datepicker td .ui-state-active { background: #ccc; } /* line 415, sass/partials/_jquery_ui.scss */ .admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today, .admin-color-light .cmb2-element .ui-datepicker td.ui-datepicker-today { background: #eee; } /* line 423, sass/partials/_jquery_ui.scss */ .admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-datepicker-header { background: #56b274; } /* line 428, sass/partials/_jquery_ui.scss */ .admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker thead { background: #36533f; } /* line 432, sass/partials/_jquery_ui.scss */ .admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker td .ui-state-hover { background: #446950; color: #fff; } /* line 440, sass/partials/_jquery_ui.scss */ .admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-datepicker-header { background: #4ca26a; } /* line 445, sass/partials/_jquery_ui.scss */ .admin-color-bbp-mint .cmb2-element.ui-datepicker thead, .admin-color-bbp-mint .cmb2-element .ui-datepicker thead { background: #4f6d59; } /* line 449, sass/partials/_jquery_ui.scss */ .admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-bbp-mint .cmb2-element .ui-datepicker td .ui-state-hover { background: #5fb37c; color: #fff; } /*# sourceMappingURL=cmb2.css.map */ @media (max-width: 450px) { /* line 209, sass/partials/_main_wrap.scss */ .cmb-th { font-size: 1.2em; display: block; float: none; padding-bottom: 1em; text-align: right; width: 100%; } /* line 27, sass/partials/_mixins.scss */ .cmb-th label { display: block; margin-top: 0em; padding-bottom: 5px; } /* line 32, sass/partials/_mixins.scss */ .cmb-th label:after { border-bottom: 1px solid #e9e9e9; content: ''; clear: both; display: block; padding-top: .4em; } /* line 431, sass/partials/_main_wrap.scss */ .cmb-th, .cmb-td, .cmb-th + .cmb-td { display: block; float: none; width: 100%; } /* line 72, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-row:not(:last-of-type), .postbox-container .cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type), .cmb-type-group .cmb-repeatable-group:not(:last-of-type) { border-bottom: 0; } }
cmb2/css/cmb2-rtl.css
Main Wrap --------------------------------------------------------------*/ /* line 5, sass/partials/_main_wrap.scss */ .cmb2-wrap { margin: 0; } /* line 8, sass/partials/_main_wrap.scss */ .cmb2-wrap input, .cmb2-wrap textarea { font-size: 14px; max-width: 100%; padding: 5px; } /* line 18, sass/partials/_main_wrap.scss */ .cmb2-wrap input[type=text].cmb2-oembed { width: 100%; } /* line 23, sass/partials/_main_wrap.scss */ .cmb2-wrap textarea { width: 500px; } /* line 26, sass/partials/_main_wrap.scss */ .cmb2-wrap textarea.cmb2-textarea-code { font-family: "Courier 10 Pitch", Courier, monospace; line-height: 16px; } /* line 34, sass/partials/_main_wrap.scss */ .cmb2-wrap input.cmb2-text-small, .cmb2-wrap input.cmb2-timepicker { width: 100px; } /* line 40, sass/partials/_main_wrap.scss */ .cmb2-wrap input.cmb2-text-money { width: 90px; } /* line 45, sass/partials/_main_wrap.scss */ .cmb2-wrap input.cmb2-text-medium { width: 230px; } /* line 50, sass/partials/_main_wrap.scss */ .cmb2-wrap input.cmb2-upload-file { width: 65%; } /* line 54, sass/partials/_main_wrap.scss */ .cmb2-wrap input.ed_button { padding: 2px 4px; } /* line 59, sass/partials/_main_wrap.scss */ .cmb2-wrap input:not([type="hidden"]) + input, .cmb2-wrap input:not([type="hidden"]) + .button, .cmb2-wrap input:not([type="hidden"]) + select { margin-right: 20px; } /* line 67, sass/partials/_main_wrap.scss */ .cmb2-wrap ul { margin: 0; } /* line 71, sass/partials/_main_wrap.scss */ .cmb2-wrap li { font-size: 14px; line-height: 16px; margin: 1px 0 5px 0; } /* line 82, sass/partials/_main_wrap.scss */ .cmb2-wrap select { font-size: 14px; margin-top: 3px; } /* line 87, sass/partials/_main_wrap.scss */ .cmb2-wrap input:focus, .cmb2-wrap textarea:focus { background: #fffff8; } /* line 92, sass/partials/_main_wrap.scss */ .cmb2-wrap input[type="radio"] { margin: 0 0 0 5px; padding: 0; } /* line 97, sass/partials/_main_wrap.scss */ .cmb2-wrap input[type="checkbox"] { margin: 0 0 0 5px; padding: 0; } /* line 102, sass/partials/_main_wrap.scss */ .cmb2-wrap button, .cmb2-wrap .button { white-space: nowrap; } /* line 107, sass/partials/_main_wrap.scss */ .cmb2-wrap .mceLayout { border: 1px solid #e9e9e9 !important; } /* line 111, sass/partials/_main_wrap.scss */ .cmb2-wrap .mceIframeContainer { background: #fff; } /* line 115, sass/partials/_main_wrap.scss */ .cmb2-wrap .meta_mce { width: 97%; } /* line 118, sass/partials/_main_wrap.scss */ .cmb2-wrap .meta_mce textarea { width: 100%; } /* line 126, sass/partials/_main_wrap.scss */ .cmb2-wrap .wp-color-result, .cmb2-wrap .wp-picker-input-wrap { vertical-align: middle; } /* line 131, sass/partials/_main_wrap.scss */ .cmb2-wrap .wp-color-result, .cmb2-wrap .wp-picker-container { margin: 0 0 0 10px; } /* line 136, sass/partials/_main_wrap.scss */ .cmb2-wrap .cmb-row { margin: 0; } /* line 139, sass/partials/_main_wrap.scss */ .cmb2-wrap .cmb-row:after { content: ''; clear: both; display: block; width: 100%; } /* line 146, sass/partials/_main_wrap.scss */ .cmb2-wrap .cmb-row.cmb-repeat-row { padding: 1.8em 0 0; } /* line 149, sass/partials/_main_wrap.scss */ .cmb2-wrap .cmb-row.cmb-repeat-row:first-of-type { padding: 0; } /* line 154, sass/partials/_main_wrap.scss */ .cmb2-wrap .cmb-row.cmb-repeat .cmb2-metabox-description { padding-top: 0; padding-bottom: 1.8em; } /* line 161, sass/partials/_main_wrap.scss */ .cmb2-metabox { clear: both; margin: 0; } /* line 167, sass/partials/_main_wrap.scss */ .cmb2-metabox > .cmb-row:first-of-type > .cmb-td, .cmb2-metabox > .cmb-row:first-of-type > .cmb-th, .cmb2-metabox .cmb-field-list > .cmb-row:first-of-type > .cmb-td, .cmb2-metabox .cmb-field-list > .cmb-row:first-of-type > .cmb-th { border: 0; } /* line 174, sass/partials/_main_wrap.scss */ .cmb2-metabox > .cmb-row .cmb-repeat-table .cmb-row > .cmb-td { padding-left: 20px; box-sizing: border-box; float: right; } /* line 182, sass/partials/_main_wrap.scss */ .cmb-add-row { margin: 1.8em 0 0; } /* line 186, sass/partials/_main_wrap.scss */ .cmb-nested .cmb-td, .cmb-repeatable-group .cmb-th, .cmb-repeatable-group:first-of-type { border: 0; } /* line 192, sass/partials/_main_wrap.scss */ .cmb-row:last-of-type, .cmb2-wrap .cmb-row:last-of-type, .cmb-repeatable-group:last-of-type { border-bottom: 0; } /* line 198, sass/partials/_main_wrap.scss */ .cmb-repeatable-grouping { border: 1px solid #e9e9e9; padding: 0 1em; max-width: 1000px; } /* line 202, sass/partials/_main_wrap.scss */ .cmb-repeatable-grouping.cmb-row { margin: 0 0 0.8em; } /* line 209, sass/partials/_main_wrap.scss */ .cmb-th { color: #222222; float: right; font-weight: 600; line-height: 1.3; padding: 20px 0 20px 10px; vertical-align: top; width: 200px; } /* line 223, sass/partials/_main_wrap.scss */ .cmb-td { line-height: 1.3; max-width: 100%; padding: 15px 10px; vertical-align: middle; } /* line 232, sass/partials/_main_wrap.scss */ .cmb-type-title .cmb-td { padding: 0; } /* line 237, sass/partials/_main_wrap.scss */ .cmb-th label { display: block; padding: 5px 0; } /* line 242, sass/partials/_main_wrap.scss */ .cmb-th + .cmb-td { float: right; } /* line 246, sass/partials/_main_wrap.scss */ .cmb-td .cmb-td { padding-bottom: 1em; } /* line 250, sass/partials/_main_wrap.scss */ .cmb-remove-row { text-align: left; } /* line 254, sass/partials/_main_wrap.scss */ .empty-row.hidden { display: none; } /* line 260, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-th { padding: 5px; } /* line 264, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-group-title { background-color: #e9e9e9; padding: 8px 2.2em 8px 12px; margin: 0 -1em; min-height: 1.5em; font-size: 14px; line-height: 1.4; } /* line 272, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-group-title h4 { border: 0; margin: 0; font-size: 1.2em; font-weight: 500; padding: 0.5em 0.75em; } /* line 280, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-group-title .cmb-th { display: block; width: 100%; } /* line 286, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-group-description .cmb-th { font-size: 1.2em; display: block; float: none; padding-bottom: 1em; text-align: right; width: 100%; } /* line 27, sass/partials/_mixins.scss */ .cmb-repeatable-group .cmb-group-description .cmb-th label { display: block; margin-top: 0em; padding-bottom: 5px; } /* line 32, sass/partials/_mixins.scss */ .cmb-repeatable-group .cmb-group-description .cmb-th label:after { border-bottom: 1px solid #e9e9e9; content: ''; clear: both; display: block; padding-top: .4em; } /* line 290, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-shift-rows { font-size: 1em; margin-left: 1em; text-decoration: none; } /* line 295, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-shift-rows .dashicons { font-size: 1.5em; height: 1.5em; line-height: 1.2em; width: 1em; } /* line 301, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb-shift-rows .dashicons.dashicons-arrow-down-alt2 { line-height: 1.3em; } /* line 308, sass/partials/_main_wrap.scss */ .cmb-repeatable-group .cmb2-upload-button { float: left; } /* line 314, sass/partials/_main_wrap.scss */ p.cmb2-metabox-description { color: #aaaaaa; font-style: italic; margin: 0; padding-top: .5em; } /* line 321, sass/partials/_main_wrap.scss */ span.cmb2-metabox-description { color: #aaaaaa; font-style: italic; } /* line 326, sass/partials/_main_wrap.scss */ .cmb2-metabox-title { margin: 0 0 5px 0; padding: 5px 0 0 0; font-size: 14px; } /* line 332, sass/partials/_main_wrap.scss */ .cmb-inline ul { padding: 4px 0 0 0; } /* line 336, sass/partials/_main_wrap.scss */ .cmb-inline li { display: inline-block; padding-left: 18px; } /* line 341, sass/partials/_main_wrap.scss */ .cmb-type-textarea-code pre { margin: 0; } /* line 347, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status { clear: none; display: inline-block; float: right; margin-left: 10px; width: auto; } /* line 354, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status img { max-width: 350px; } /* line 359, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status img, .cmb2-media-status .embed-status { background: #ffffff; border: 1px solid #e9e9e9; border-radius: 2px; -moz-border-radius: 2px; margin: 15px 0 0 0; padding: 5px; } /* line 369, sass/partials/_main_wrap.scss */ .cmb2-media-status .embed-status { float: right; max-width: 800px; } /* line 374, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status, .cmb2-media-status .embed-status { position: relative; } /* line 377, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status .cmb2-remove-file-button, .cmb2-media-status .embed-status .cmb2-remove-file-button { background: url(../images/ico-delete.png); height: 16px; right: -5px; position: absolute; text-indent: -9999px; top: -5px; width: 16px; } /* line 391, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status .cmb2-remove-file-button { top: 10px; } /* line 396, sass/partials/_main_wrap.scss */ .cmb2-media-status .img-status img, .cmb2-media-status .file-status > span { cursor: pointer; } /* line 402, sass/partials/_main_wrap.scss */ .cmb-type-file-list .cmb2-media-status .img-status { clear: none; float: right; margin-left: 10px; width: auto; } /* line 409, sass/partials/_main_wrap.scss */ .cmb-attach-list li { clear: both; display: inline-block; margin-bottom: 25px; width: 100%; } /* line 415, sass/partials/_main_wrap.scss */ .cmb-attach-list li img { cursor: move; float: right; margin-left: 10px; } /* line 422, sass/partials/_main_wrap.scss */ .cmb2-remove-wrapper { margin: 0; } /* line 426, sass/partials/_main_wrap.scss */ .child-cmb2 .cmb-th { text-align: right; } /*-------------------------------------------------------------- Post Metaboxes --------------------------------------------------------------*/ /* line 4, sass/partials/_post_metaboxes.scss */ #poststuff .cmb-group-title { margin-right: -1em; margin-left: -1em; min-height: 1.5em; } /* line 10, sass/partials/_post_metaboxes.scss */ #poststuff .repeatable .cmb-group-title { padding-right: 2.2em; } /* line 16, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-wrap, .cmb-type-group .cmb2-wrap { margin: 0; } /* line 19, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-wrap > .cmb-field-list > .cmb-row, .cmb-type-group .cmb2-wrap > .cmb-field-list > .cmb-row { padding: 1.8em 0; } /* line 25, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-wrap input[type=text].cmb2-oembed, .cmb-type-group .cmb2-wrap input[type=text].cmb2-oembed { width: 100%; } /* line 31, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-row, .cmb-type-group .cmb-row { padding: 0 0 1.8em; margin: 0 0 0.8em; } /* line 35, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-row .cmbhandle, .cmb-type-group .cmb-row .cmbhandle { left: -1em; position: relative; } /* line 41, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-repeatable-grouping, .cmb-type-group .cmb-repeatable-grouping { padding: 0 1em; max-width: 100%; min-width: 1px !important; } /* line 47, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-repeatable-group > .cmb-row, .cmb-type-group .cmb-repeatable-group > .cmb-row { padding-bottom: 0; } /* line 51, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-th, .cmb-type-group .cmb-th { width: 18%; padding: 0 0 0 2%; } /* line 57, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-td, .cmb-type-group .cmb-td { margin-bottom: 0; padding: 0; line-height: 1.3; } /* line 63, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-repeat-row .cmb-td, .cmb-type-group .cmb-repeat-row .cmb-td { padding-bottom: 1.8em; } /* line 67, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-th + .cmb-td, .cmb-type-group .cmb-th + .cmb-td { width: 80%; float: left; } /* line 72, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-row:not(:last-of-type), .postbox-container .cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type), .cmb-type-group .cmb-repeatable-group:not(:last-of-type) { border-bottom: 1px solid #e9e9e9; } /* line 81, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-repeat-group-field, .postbox-container .cmb-remove-field-row, .cmb-type-group .cmb-repeat-group-field, .cmb-type-group .cmb-remove-field-row { padding-top: 1.8em; } /* line 88, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody { display: table; width: 100%; } /* line 92, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody input.regular-text { width: 100%; } /* line 96, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row), .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(.hidden):not(.empty-row) { display: table-row; } /* line 100, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td { display: table-cell; float: none; width: 100%; } /* line 106, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-row:not(:first-of-type) .cmb-td { padding-top: 1.8em; } /* line 110, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .postbox-container .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb-type-group .cmb2-metabox > .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row, .cmb-type-group .cmb2-metabox > .cmb-row .cmb-row.table-layout .cmb-repeat-table .cmb-tbody .cmb-td.cmb-remove-row { padding-left: 0; } /*-------------------------------------------------------------- Misc. --------------------------------------------------------------*/ /* line 5, sass/partials/_misc.scss */ #poststuff .cmb-repeatable-group h2 { margin: 0; } /* line 12, sass/partials/_misc.scss */ .edit-tags-php .cmb2-metabox-title, .profile-php .cmb2-metabox-title, .user-edit-php .cmb2-metabox-title { font-size: 1.4em; } /* line 18, sass/partials/_misc.scss */ .cmb2-options-page .cmb2-metabox-title { font-size: 1.3em; margin: 1em 0; } /* line 21, sass/partials/_misc.scss */ .cmb2-options-page .cmb2-metabox-title + p.cmb2-metabox-description { margin-top: -1.6em; margin-bottom: .8em; } /* line 27, sass/partials/_misc.scss */ .postbox .cmb-spinner { float: right; } /*-------------------------------------------------------------- Sidebar Placement Adjustments --------------------------------------------------------------*/ /* line 10, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-wrap > .cmb-field-list > .cmb-row, #side-sortables .cmb2-wrap > .cmb-field-list > .cmb-row { padding: 1.4em 0; } /* line 16, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-wrap input[type=text]:not(.wp-color-picker), #side-sortables .cmb2-wrap input[type=text]:not(.wp-color-picker) { width: 100%; } /* line 20, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-wrap input + input:not(.wp-picker-clear), .inner-sidebar .cmb2-wrap input + select, #side-sortables .cmb2-wrap input + input:not(.wp-picker-clear), #side-sortables .cmb2-wrap input + select { margin-right: 0; margin-top: 1em; display: block; } /* line 26, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-wrap input.cmb2-text-money, #side-sortables .cmb2-wrap input.cmb2-text-money { max-width: 70%; } /* line 28, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-wrap input.cmb2-text-money + .cmb2-metabox-description, #side-sortables .cmb2-wrap input.cmb2-text-money + .cmb2-metabox-description { display: block; } /* line 34, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-wrap label, #side-sortables .cmb2-wrap label { display: block; font-weight: 700; padding: 0 0 5px; } /* line 42, sass/partials/_sidebar_placements.scss */ .inner-sidebar textarea, #side-sortables textarea { max-width: 99%; } /* line 46, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-repeatable-group, #side-sortables .cmb-repeatable-group { border-bottom: 1px solid #e9e9e9; } /* line 50, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-type-group > .cmb-td > .cmb-repeatable-group, #side-sortables .cmb-type-group > .cmb-td > .cmb-repeatable-group { border-bottom: 0; margin-bottom: -1.4em; } /* line 55, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-th, .inner-sidebar .cmb-td, .inner-sidebar .cmb-th + .cmb-td, #side-sortables .cmb-th, #side-sortables .cmb-td, #side-sortables .cmb-th + .cmb-td { width: 100%; display: block; float: none; } /* line 63, sass/partials/_sidebar_placements.scss */ .inner-sidebar .closed .inside, #side-sortables .closed .inside { display: none; } /* line 67, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-td .cmb-td, #side-sortables .cmb-td .cmb-td { padding-bottom: 1em; } /* line 71, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-th, #side-sortables .cmb-th { display: block; float: none; padding-bottom: 1em; text-align: right; width: 100%; padding-right: 0; padding-left: 0; } /* line 27, sass/partials/_mixins.scss */ .inner-sidebar .cmb-th label, #side-sortables .cmb-th label { display: block; margin-top: 0em; padding-bottom: 5px; } /* line 32, sass/partials/_mixins.scss */ .inner-sidebar .cmb-th label:after, #side-sortables .cmb-th label:after { border-bottom: 1px solid #e9e9e9; content: ''; clear: both; display: block; padding-top: .4em; } /* line 14, sass/partials/_mixins.scss */ .inner-sidebar .cmb-th label, #side-sortables .cmb-th label { font-size: 14px; line-height: 1.4em; } /* line 78, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-group-description .cmb-th, #side-sortables .cmb-group-description .cmb-th { padding-top: 0; } /* line 81, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-group-description .cmb2-metabox-description, #side-sortables .cmb-group-description .cmb2-metabox-description { padding: 0; } /* line 88, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-group-title .cmb-th, #side-sortables .cmb-group-title .cmb-th { padding: 0; } /* line 94, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-repeatable-grouping + .cmb-repeatable-grouping, #side-sortables .cmb-repeatable-grouping + .cmb-repeatable-grouping { margin-top: 1em; } /* line 103, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-media-status .img-status img, .inner-sidebar .cmb2-media-status .embed-status img, #side-sortables .cmb2-media-status .img-status img, #side-sortables .cmb2-media-status .embed-status img { max-width: 90%; height: auto; } /* line 111, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-list label, #side-sortables .cmb2-list label { display: inline; font-weight: normal; } /* line 116, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-metabox-description, #side-sortables .cmb2-metabox-description { display: block; padding: 7px 0 0; } /* line 123, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-type-checkbox .cmb-td label, .inner-sidebar .cmb-type-checkbox .cmb2-metabox-description, #side-sortables .cmb-type-checkbox .cmb-td label, #side-sortables .cmb-type-checkbox .cmb2-metabox-description { font-weight: normal; display: inline; } /* line 130, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-row .cmb2-metabox-description, #side-sortables .cmb-row .cmb2-metabox-description { padding-bottom: 1.8em; } /* line 134, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-metabox-title, #side-sortables .cmb2-metabox-title { font-size: 1.2em; font-style: italic; } /* line 139, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-remove-row, #side-sortables .cmb-remove-row { clear: both; padding-top: 12px; padding-bottom: 0; } /* line 146, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td, #side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td { width: auto; clear: none; float: right; padding-top: 0; } /* line 151, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row, #side-sortables .cmb-type-colorpicker .cmb-repeat-row .cmb-td.cmb-remove-row { float: left; margin: 0; } /* line 158, sass/partials/_sidebar_placements.scss */ .inner-sidebar .cmb2-upload-button, #side-sortables .cmb2-upload-button { clear: both; margin-top: 12px; } /* line 2, sass/partials/_collapsible_ui.scss */ .cmb2-metabox .cmb-type-group { max-width: 1000px; } /* line 5, sass/partials/_collapsible_ui.scss */ .cmb2-metabox .cmbhandle { color: #aaa; float: left; width: 27px; height: 30px; cursor: pointer; left: -1em; position: relative; } /* line 13, sass/partials/_collapsible_ui.scss */ .cmb2-metabox .cmbhandle:before { content: '\f142'; left: 12px; font: normal 20px/1 'dashicons'; speak: none; display: inline-block; padding: 8px 10px; top: 0; position: relative; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-decoration: none !important; } /* line 30, sass/partials/_collapsible_ui.scss */ .cmb2-metabox .postbox.closed .cmbhandle:before { content: '\f140'; } /* line 36, sass/partials/_collapsible_ui.scss */ .cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row { -webkit-appearance: none !important; background: none !important; border: none !important; position: absolute; right: 0; top: .5em; line-height: 1em; cursor: pointer; padding: 2px 6px 3px; } /* line 46, sass/partials/_collapsible_ui.scss */ .cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]) { color: #a00; } /* line 48, sass/partials/_collapsible_ui.scss */ .cmb2-metabox button.dashicons-before.dashicons-no-alt.cmb-remove-group-row:not([disabled]):hover { color: #f00; } /* * jQuery UI CSS Framework 1.8.16 * * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about) * Dual licensed under the MIT or GPL Version 2 licenses. * http://jquery.org/license * * http://docs.jquery.com/UI/Theming/API * * WordPress Styles adopted from "jQuery UI Datepicker CSS for WordPress" * https://github.com/stuttter/wp-datepicker-styling * */ /* line 15, sass/partials/_jquery_ui.scss */ * html .cmb2-element.ui-helper-clearfix { height: 1%; } /* line 24, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker, .cmb2-element .ui-datepicker { padding: 0; margin: 0; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; background-color: #fff; border: 1px solid #dfdfdf; border-top: none; -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075); box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075); min-width: 17em; width: auto; /* Default Color Scheme */ } /* line 38, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker *, .cmb2-element .ui-datepicker * { padding: 0; font-family: "Open Sans", sans-serif; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } /* line 46, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker table, .cmb2-element .ui-datepicker table { font-size: 13px; margin: 0; border: none; border-collapse: collapse; } /* line 53, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-widget-header, .cmb2-element.ui-datepicker .ui-datepicker-header, .cmb2-element .ui-datepicker .ui-widget-header, .cmb2-element .ui-datepicker .ui-datepicker-header { background-image: none; border: none; color: #fff; font-weight: normal; } /* line 61, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover, .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover { background: transparent; border-color: transparent; cursor: pointer; } /* line 67, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-title, .cmb2-element .ui-datepicker .ui-datepicker-title { margin: 0; padding: 10px 0; color: #fff; font-size: 14px; line-height: 14px; text-align: center; } /* line 75, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-title select, .cmb2-element .ui-datepicker .ui-datepicker-title select { margin-top: -8px; margin-bottom: -8px; } /* line 81, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-prev, .cmb2-element.ui-datepicker .ui-datepicker-next, .cmb2-element .ui-datepicker .ui-datepicker-prev, .cmb2-element .ui-datepicker .ui-datepicker-next { position: relative; top: 0; height: 34px; width: 34px; } /* line 89, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-prev, .cmb2-element.ui-datepicker .ui-state-hover.ui-datepicker-next, .cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-prev, .cmb2-element .ui-datepicker .ui-state-hover.ui-datepicker-next { border: none; } /* line 94, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-prev, .cmb2-element.ui-datepicker .ui-datepicker-prev-hover, .cmb2-element .ui-datepicker .ui-datepicker-prev, .cmb2-element .ui-datepicker .ui-datepicker-prev-hover { right: 0; } /* line 99, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-next, .cmb2-element.ui-datepicker .ui-datepicker-next-hover, .cmb2-element .ui-datepicker .ui-datepicker-next, .cmb2-element .ui-datepicker .ui-datepicker-next-hover { left: 0; } /* line 104, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-next span, .cmb2-element.ui-datepicker .ui-datepicker-prev span, .cmb2-element .ui-datepicker .ui-datepicker-next span, .cmb2-element .ui-datepicker .ui-datepicker-prev span { display: none; } /* line 109, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-prev, .cmb2-element .ui-datepicker .ui-datepicker-prev { float: right; } /* line 113, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-next, .cmb2-element .ui-datepicker .ui-datepicker-next { float: left; } /* line 117, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-prev:before, .cmb2-element.ui-datepicker .ui-datepicker-next:before, .cmb2-element .ui-datepicker .ui-datepicker-prev:before, .cmb2-element .ui-datepicker .ui-datepicker-next:before { font: normal 20px/34px 'dashicons'; padding-right: 7px; color: #fff; speak: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; width: 34px; height: 34px; } /* line 129, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-prev:before, .cmb2-element .ui-datepicker .ui-datepicker-prev:before { content: '\f341'; } /* line 133, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-next:before, .cmb2-element .ui-datepicker .ui-datepicker-next:before { content: '\f345'; } /* line 137, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-datepicker-prev-hover:before, .cmb2-element.ui-datepicker .ui-datepicker-next-hover:before, .cmb2-element .ui-datepicker .ui-datepicker-prev-hover:before, .cmb2-element .ui-datepicker .ui-datepicker-next-hover:before { opacity: 0.7; } /* line 142, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker select.ui-datepicker-month, .cmb2-element.ui-datepicker select.ui-datepicker-year, .cmb2-element .ui-datepicker select.ui-datepicker-month, .cmb2-element .ui-datepicker select.ui-datepicker-year { width: 33%; background: transparent; border-color: transparent; box-shadow: none; color: #fff; } /* line 151, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker thead, .cmb2-element .ui-datepicker thead { color: #fff; font-weight: 600; } /* line 154, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker thead th, .cmb2-element .ui-datepicker thead th { font-weight: normal; } /* line 159, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker th, .cmb2-element .ui-datepicker th { padding: 10px; } /* line 163, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td, .cmb2-element .ui-datepicker td { padding: 0; border: 1px solid #f4f4f4; } /* line 168, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td.ui-datepicker-other-month, .cmb2-element .ui-datepicker td.ui-datepicker-other-month { border: transparent; } /* line 172, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td.ui-datepicker-week-end, .cmb2-element .ui-datepicker td.ui-datepicker-week-end { background-color: #f4f4f4; border: 1px solid #f4f4f4; } /* line 175, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today, .cmb2-element .ui-datepicker td.ui-datepicker-week-end.ui-datepicker-today { -webkit-box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.1); box-shadow: inset 0px 0px 1px 0px rgba(0, 0, 0, 0.1); } /* line 182, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td.ui-datepicker-today, .cmb2-element .ui-datepicker td.ui-datepicker-today { background-color: #f0f0c0; } /* line 186, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td.ui-datepicker-current-day, .cmb2-element .ui-datepicker td.ui-datepicker-current-day { background: #bbdd88; } /* line 190, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td .ui-state-default, .cmb2-element .ui-datepicker td .ui-state-default { background: transparent; border: none; text-align: center; text-decoration: none; width: auto; display: block; padding: 5px 10px; font-weight: normal; color: #444; } /* line 202, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td.ui-state-disabled .ui-state-default, .cmb2-element .ui-datepicker td.ui-state-disabled .ui-state-default { opacity: 0.5; } /* line 207, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-widget-header, .cmb2-element.ui-datepicker .ui-datepicker-header, .cmb2-element .ui-datepicker .ui-widget-header, .cmb2-element .ui-datepicker .ui-datepicker-header { background: #00a0d2; } /* line 212, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker thead, .cmb2-element .ui-datepicker thead { background: #32373c; } /* line 216, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker td .ui-state-hover, .cmb2-element.ui-datepicker td .ui-state-active, .cmb2-element .ui-datepicker td .ui-state-hover, .cmb2-element .ui-datepicker td .ui-state-active { background: #0073aa; color: #fff; } /* line 221, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div, .cmb2-element .ui-datepicker .ui-timepicker-div { font-size: 14px; } /* line 223, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div dl, .cmb2-element .ui-datepicker .ui-timepicker-div dl { text-align: right; padding: 0 .6em; } /* line 226, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div dl dt, .cmb2-element .ui-datepicker .ui-timepicker-div dl dt { float: right; clear: right; padding: 0 5px 0 0; } /* line 231, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div dl dd, .cmb2-element .ui-datepicker .ui-timepicker-div dl dd { margin: 0 40% 10px 10px; } /* line 233, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div dl dd select, .cmb2-element .ui-datepicker .ui-timepicker-div dl dd select { width: 100%; } /* line 239, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane { padding: .6em; text-align: right; } /* line 243, sass/partials/_jquery_ui.scss */ .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-primary, .cmb2-element.ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-secondary, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-primary, .cmb2-element .ui-datepicker .ui-timepicker-div + .ui-datepicker-buttonpane .button-secondary { padding: 0 10px 1px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; margin: 0 .4em .4em .6em; } /* line 257, sass/partials/_jquery_ui.scss */ .admin-color-fresh .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-fresh .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-fresh .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-fresh .cmb2-element .ui-datepicker .ui-datepicker-header { background: #00a0d2; } /* line 262, sass/partials/_jquery_ui.scss */ .admin-color-fresh .cmb2-element.ui-datepicker thead, .admin-color-fresh .cmb2-element .ui-datepicker thead { background: #32373c; } /* line 266, sass/partials/_jquery_ui.scss */ .admin-color-fresh .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-fresh .cmb2-element .ui-datepicker td .ui-state-hover { background: #0073aa; color: #fff; } /* line 274, sass/partials/_jquery_ui.scss */ .admin-color-blue .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-blue .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-blue .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-blue .cmb2-element .ui-datepicker .ui-datepicker-header { background: #52accc; } /* line 279, sass/partials/_jquery_ui.scss */ .admin-color-blue .cmb2-element.ui-datepicker thead, .admin-color-blue .cmb2-element .ui-datepicker thead { background: #4796b3; } /* line 288, sass/partials/_jquery_ui.scss */ .admin-color-blue .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-blue .cmb2-element.ui-datepicker td .ui-state-active, .admin-color-blue .cmb2-element .ui-datepicker td .ui-state-hover, .admin-color-blue .cmb2-element .ui-datepicker td .ui-state-active { background: #096484; color: #fff; } /* line 293, sass/partials/_jquery_ui.scss */ .admin-color-blue .cmb2-element.ui-datepicker td.ui-datepicker-today, .admin-color-blue .cmb2-element .ui-datepicker td.ui-datepicker-today { background: #eee; } /* line 302, sass/partials/_jquery_ui.scss */ .admin-color-coffee .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-coffee .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-coffee .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-coffee .cmb2-element .ui-datepicker .ui-datepicker-header { background: #59524c; } /* line 307, sass/partials/_jquery_ui.scss */ .admin-color-coffee .cmb2-element.ui-datepicker thead, .admin-color-coffee .cmb2-element .ui-datepicker thead { background: #46403c; } /* line 311, sass/partials/_jquery_ui.scss */ .admin-color-coffee .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-coffee .cmb2-element .ui-datepicker td .ui-state-hover { background: #c7a589; color: #fff; } /* line 319, sass/partials/_jquery_ui.scss */ .admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-ectoplasm .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-ectoplasm .cmb2-element .ui-datepicker .ui-datepicker-header { background: #523f6d; } /* line 324, sass/partials/_jquery_ui.scss */ .admin-color-ectoplasm .cmb2-element.ui-datepicker thead, .admin-color-ectoplasm .cmb2-element .ui-datepicker thead { background: #413256; } /* line 328, sass/partials/_jquery_ui.scss */ .admin-color-ectoplasm .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-ectoplasm .cmb2-element .ui-datepicker td .ui-state-hover { background: #a3b745; color: #fff; } /* line 336, sass/partials/_jquery_ui.scss */ .admin-color-midnight .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-midnight .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-midnight .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-midnight .cmb2-element .ui-datepicker .ui-datepicker-header { background: #363b3f; } /* line 341, sass/partials/_jquery_ui.scss */ .admin-color-midnight .cmb2-element.ui-datepicker thead, .admin-color-midnight .cmb2-element .ui-datepicker thead { background: #26292c; } /* line 345, sass/partials/_jquery_ui.scss */ .admin-color-midnight .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-midnight .cmb2-element .ui-datepicker td .ui-state-hover { background: #e14d43; color: #fff; } /* line 353, sass/partials/_jquery_ui.scss */ .admin-color-ocean .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-ocean .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-ocean .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-ocean .cmb2-element .ui-datepicker .ui-datepicker-header { background: #738e96; } /* line 358, sass/partials/_jquery_ui.scss */ .admin-color-ocean .cmb2-element.ui-datepicker thead, .admin-color-ocean .cmb2-element .ui-datepicker thead { background: #627c83; } /* line 362, sass/partials/_jquery_ui.scss */ .admin-color-ocean .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-ocean .cmb2-element .ui-datepicker td .ui-state-hover { background: #9ebaa0; color: #fff; } /* line 370, sass/partials/_jquery_ui.scss */ .admin-color-sunrise .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-sunrise .cmb2-element.ui-datepicker .ui-datepicker-header .ui-state-hover, .admin-color-sunrise .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header, .admin-color-sunrise .cmb2-element .ui-datepicker .ui-datepicker-header .ui-state-hover { background: #cf4944; } /* line 376, sass/partials/_jquery_ui.scss */ .admin-color-sunrise .cmb2-element.ui-datepicker th, .admin-color-sunrise .cmb2-element .ui-datepicker th { border-color: #be3631; background: #be3631; } /* line 381, sass/partials/_jquery_ui.scss */ .admin-color-sunrise .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-sunrise .cmb2-element .ui-datepicker td .ui-state-hover { background: #dd823b; color: #fff; } /* line 389, sass/partials/_jquery_ui.scss */ .admin-color-light .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-light .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-header { background: #e5e5e5; } /* line 394, sass/partials/_jquery_ui.scss */ .admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-month, .admin-color-light .cmb2-element.ui-datepicker select.ui-datepicker-year, .admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-month, .admin-color-light .cmb2-element .ui-datepicker select.ui-datepicker-year { color: #555; } /* line 399, sass/partials/_jquery_ui.scss */ .admin-color-light .cmb2-element.ui-datepicker thead, .admin-color-light .cmb2-element .ui-datepicker thead { background: #888; } /* line 403, sass/partials/_jquery_ui.scss */ .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-title, .admin-color-light .cmb2-element.ui-datepicker td .ui-state-default, .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-prev:before, .admin-color-light .cmb2-element.ui-datepicker .ui-datepicker-next:before, .admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-title, .admin-color-light .cmb2-element .ui-datepicker td .ui-state-default, .admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-prev:before, .admin-color-light .cmb2-element .ui-datepicker .ui-datepicker-next:before { color: #555; } /* line 411, sass/partials/_jquery_ui.scss */ .admin-color-light .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-light .cmb2-element.ui-datepicker td .ui-state-active, .admin-color-light .cmb2-element .ui-datepicker td .ui-state-hover, .admin-color-light .cmb2-element .ui-datepicker td .ui-state-active { background: #ccc; } /* line 415, sass/partials/_jquery_ui.scss */ .admin-color-light .cmb2-element.ui-datepicker td.ui-datepicker-today, .admin-color-light .cmb2-element .ui-datepicker td.ui-datepicker-today { background: #eee; } /* line 423, sass/partials/_jquery_ui.scss */ .admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-bbp-evergreen .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker .ui-datepicker-header { background: #56b274; } /* line 428, sass/partials/_jquery_ui.scss */ .admin-color-bbp-evergreen .cmb2-element.ui-datepicker thead, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker thead { background: #36533f; } /* line 432, sass/partials/_jquery_ui.scss */ .admin-color-bbp-evergreen .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-bbp-evergreen .cmb2-element .ui-datepicker td .ui-state-hover { background: #446950; color: #fff; } /* line 440, sass/partials/_jquery_ui.scss */ .admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-widget-header, .admin-color-bbp-mint .cmb2-element.ui-datepicker .ui-datepicker-header, .admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-widget-header, .admin-color-bbp-mint .cmb2-element .ui-datepicker .ui-datepicker-header { background: #4ca26a; } /* line 445, sass/partials/_jquery_ui.scss */ .admin-color-bbp-mint .cmb2-element.ui-datepicker thead, .admin-color-bbp-mint .cmb2-element .ui-datepicker thead { background: #4f6d59; } /* line 449, sass/partials/_jquery_ui.scss */ .admin-color-bbp-mint .cmb2-element.ui-datepicker td .ui-state-hover, .admin-color-bbp-mint .cmb2-element .ui-datepicker td .ui-state-hover { background: #5fb37c; color: #fff; } /*# sourceMappingURL=cmb2.css.map */ @media (max-width: 450px) { /* line 209, sass/partials/_main_wrap.scss */ .cmb-th { font-size: 1.2em; display: block; float: none; padding-bottom: 1em; text-align: right; width: 100%; } /* line 27, sass/partials/_mixins.scss */ .cmb-th label { display: block; margin-top: 0em; padding-bottom: 5px; } /* line 32, sass/partials/_mixins.scss */ .cmb-th label:after { border-bottom: 1px solid #e9e9e9; content: ''; clear: both; display: block; padding-top: .4em; } /* line 431, sass/partials/_main_wrap.scss */ .cmb-th, .cmb-td, .cmb-th + .cmb-td { display: block; float: none; width: 100%; } /* line 72, sass/partials/_post_metaboxes.scss */ .postbox-container .cmb-row:not(:last-of-type), .postbox-container .cmb-repeatable-group:not(:last-of-type), .cmb-type-group .cmb-row:not(:last-of-type), .cmb-type-group .cmb-repeatable-group:not(:last-of-type) { border-bottom: 0; } }
0.169509
0.036118
* @file * Reset most HTML elements styles for the off-canvas dialog. * * This is a generic reset. Drupal-specific classes are reset in components. */ /** * All HTML elements that could be used in off-canvas except div, bdo, bdi, * data, svg, map and math. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element */ #drupal-off-canvas span, #drupal-off-canvas applet, #drupal-off-canvas object, #drupal-off-canvas iframe, #drupal-off-canvas h1, #drupal-off-canvas h2, #drupal-off-canvas h3, #drupal-off-canvas h4, #drupal-off-canvas h5, #drupal-off-canvas h6, #drupal-off-canvas p, #drupal-off-canvas blockquote, #drupal-off-canvas pre, #drupal-off-canvas a, #drupal-off-canvas abbr, #drupal-off-canvas acronym, #drupal-off-canvas address, #drupal-off-canvas big, #drupal-off-canvas button, #drupal-off-canvas cite, #drupal-off-canvas code, #drupal-off-canvas del, #drupal-off-canvas dfn, #drupal-off-canvas em, #drupal-off-canvas img, #drupal-off-canvas ins, #drupal-off-canvas kbd, #drupal-off-canvas q, #drupal-off-canvas s, #drupal-off-canvas samp, #drupal-off-canvas small, #drupal-off-canvas strike, #drupal-off-canvas strong, #drupal-off-canvas sub, #drupal-off-canvas sup, #drupal-off-canvas tt, #drupal-off-canvas var, #drupal-off-canvas b, #drupal-off-canvas u, #drupal-off-canvas i, #drupal-off-canvas center, #drupal-off-canvas dl, #drupal-off-canvas dt, #drupal-off-canvas dd, #drupal-off-canvas ol, #drupal-off-canvas ul, #drupal-off-canvas li, #drupal-off-canvas fieldset, #drupal-off-canvas form, #drupal-off-canvas label, #drupal-off-canvas legend, #drupal-off-canvas table, #drupal-off-canvas caption, #drupal-off-canvas tbody, #drupal-off-canvas tfoot, #drupal-off-canvas thead, #drupal-off-canvas tr, #drupal-off-canvas th, #drupal-off-canvas td, #drupal-off-canvas article, #drupal-off-canvas aside, #drupal-off-canvas canvas, #drupal-off-canvas details, #drupal-off-canvas embed, #drupal-off-canvas figure, #drupal-off-canvas figcaption, #drupal-off-canvas footer, #drupal-off-canvas header, #drupal-off-canvas hgroup, #drupal-off-canvas main, #drupal-off-canvas menu, #drupal-off-canvas meter, #drupal-off-canvas nav, #drupal-off-canvas output, #drupal-off-canvas progress, #drupal-off-canvas ruby, #drupal-off-canvas section, #drupal-off-canvas summary, #drupal-off-canvas time, #drupal-off-canvas mark, #drupal-off-canvas audio, #drupal-off-canvas video, #drupal-off-canvas input, #drupal-off-canvas select, #drupal-off-canvas textarea { animation: none 0s ease 0s 1 normal none running; -webkit-backface-visibility: visible; backface-visibility: visible; background: transparent none repeat 0 0 / auto auto padding-box border-box scroll; border: medium none currentColor; border-collapse: separate; border-image: none; border-radius: 0; border-spacing: 0; bottom: auto; box-shadow: none; box-sizing: content-box; caption-side: top; clear: none; clip: auto; color: #000; columns: auto; column-count: auto; column-fill: balance; grid-column-gap: normal; column-rule: medium none currentColor; column-span: 1; column-width: auto; content: normal; counter-increment: none; counter-reset: none; cursor: auto; direction: ltr; display: inline; empty-cells: show; float: none; font-family: serif; font-size: medium; font-style: normal; font-feature-settings: normal; font-variant: normal; font-weight: normal; font-stretch: normal; line-height: normal; height: auto; -webkit-hyphens: none; -ms-hyphens: none; hyphens: none; left: auto; letter-spacing: normal; list-style: disc outside none; margin: 0; max-height: none; max-width: none; min-height: 0; min-width: 0; opacity: 1; orphans: 2; outline: medium none invert; overflow: visible; overflow-x: visible; overflow-y: visible; padding: 0; page-break-after: auto; page-break-before: auto; page-break-inside: auto; perspective: none; perspective-origin: 50% 50%; position: static; right: auto; -moz-tab-size: 8; tab-size: 8; table-layout: auto; text-align: left; text-align-last: auto; text-decoration: none; text-indent: 0; text-shadow: none; text-transform: none; top: auto; transform: none; transform-origin: 50% 50% 0; transform-style: flat; transition: none 0s ease 0s; unicode-bidi: normal; vertical-align: baseline; visibility: visible; white-space: normal; widows: 2; width: auto; word-spacing: normal; z-index: auto; all: initial; box-sizing: border-box; text-shadow: none; -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: initial } #drupal-off-canvas span:after, #drupal-off-canvas span:before, #drupal-off-canvas applet:after, #drupal-off-canvas applet:before, #drupal-off-canvas object:after, #drupal-off-canvas object:before, #drupal-off-canvas iframe:after, #drupal-off-canvas iframe:before, #drupal-off-canvas h1:after, #drupal-off-canvas h1:before, #drupal-off-canvas h2:after, #drupal-off-canvas h2:before, #drupal-off-canvas h3:after, #drupal-off-canvas h3:before, #drupal-off-canvas h4:after, #drupal-off-canvas h4:before, #drupal-off-canvas h5:after, #drupal-off-canvas h5:before, #drupal-off-canvas h6:after, #drupal-off-canvas h6:before, #drupal-off-canvas p:after, #drupal-off-canvas p:before, #drupal-off-canvas blockquote:after, #drupal-off-canvas blockquote:before, #drupal-off-canvas pre:after, #drupal-off-canvas pre:before, #drupal-off-canvas a:after, #drupal-off-canvas a:before, #drupal-off-canvas abbr:after, #drupal-off-canvas abbr:before, #drupal-off-canvas acronym:after, #drupal-off-canvas acronym:before, #drupal-off-canvas address:after, #drupal-off-canvas address:before, #drupal-off-canvas big:after, #drupal-off-canvas big:before, #drupal-off-canvas button:after, #drupal-off-canvas button:before, #drupal-off-canvas cite:after, #drupal-off-canvas cite:before, #drupal-off-canvas code:after, #drupal-off-canvas code:before, #drupal-off-canvas del:after, #drupal-off-canvas del:before, #drupal-off-canvas dfn:after, #drupal-off-canvas dfn:before, #drupal-off-canvas em:after, #drupal-off-canvas em:before, #drupal-off-canvas img:after, #drupal-off-canvas img:before, #drupal-off-canvas ins:after, #drupal-off-canvas ins:before, #drupal-off-canvas kbd:after, #drupal-off-canvas kbd:before, #drupal-off-canvas q:after, #drupal-off-canvas q:before, #drupal-off-canvas s:after, #drupal-off-canvas s:before, #drupal-off-canvas samp:after, #drupal-off-canvas samp:before, #drupal-off-canvas small:after, #drupal-off-canvas small:before, #drupal-off-canvas strike:after, #drupal-off-canvas strike:before, #drupal-off-canvas strong:after, #drupal-off-canvas strong:before, #drupal-off-canvas sub:after, #drupal-off-canvas sub:before, #drupal-off-canvas sup:after, #drupal-off-canvas sup:before, #drupal-off-canvas tt:after, #drupal-off-canvas tt:before, #drupal-off-canvas var:after, #drupal-off-canvas var:before, #drupal-off-canvas b:after, #drupal-off-canvas b:before, #drupal-off-canvas u:after, #drupal-off-canvas u:before, #drupal-off-canvas i:after, #drupal-off-canvas i:before, #drupal-off-canvas center:after, #drupal-off-canvas center:before, #drupal-off-canvas dl:after, #drupal-off-canvas dl:before, #drupal-off-canvas dt:after, #drupal-off-canvas dt:before, #drupal-off-canvas dd:after, #drupal-off-canvas dd:before, #drupal-off-canvas ol:after, #drupal-off-canvas ol:before, #drupal-off-canvas ul:after, #drupal-off-canvas ul:before, #drupal-off-canvas li:after, #drupal-off-canvas li:before, #drupal-off-canvas fieldset:after, #drupal-off-canvas fieldset:before, #drupal-off-canvas form:after, #drupal-off-canvas form:before, #drupal-off-canvas label:after, #drupal-off-canvas label:before, #drupal-off-canvas legend:after, #drupal-off-canvas legend:before, #drupal-off-canvas table:after, #drupal-off-canvas table:before, #drupal-off-canvas caption:after, #drupal-off-canvas caption:before, #drupal-off-canvas tbody:after, #drupal-off-canvas tbody:before, #drupal-off-canvas tfoot:after, #drupal-off-canvas tfoot:before, #drupal-off-canvas thead:after, #drupal-off-canvas thead:before, #drupal-off-canvas tr:after, #drupal-off-canvas tr:before, #drupal-off-canvas th:after, #drupal-off-canvas th:before, #drupal-off-canvas td:after, #drupal-off-canvas td:before, #drupal-off-canvas article:after, #drupal-off-canvas article:before, #drupal-off-canvas aside:after, #drupal-off-canvas aside:before, #drupal-off-canvas canvas:after, #drupal-off-canvas canvas:before, #drupal-off-canvas details:after, #drupal-off-canvas details:before, #drupal-off-canvas embed:after, #drupal-off-canvas embed:before, #drupal-off-canvas figure:after, #drupal-off-canvas figure:before, #drupal-off-canvas figcaption:after, #drupal-off-canvas figcaption:before, #drupal-off-canvas footer:after, #drupal-off-canvas footer:before, #drupal-off-canvas header:after, #drupal-off-canvas header:before, #drupal-off-canvas hgroup:after, #drupal-off-canvas hgroup:before, #drupal-off-canvas main:after, #drupal-off-canvas main:before, #drupal-off-canvas menu:after, #drupal-off-canvas menu:before, #drupal-off-canvas meter:after, #drupal-off-canvas meter:before, #drupal-off-canvas nav:after, #drupal-off-canvas nav:before, #drupal-off-canvas output:after, #drupal-off-canvas output:before, #drupal-off-canvas progress:after, #drupal-off-canvas progress:before, #drupal-off-canvas ruby:after, #drupal-off-canvas ruby:before, #drupal-off-canvas section:after, #drupal-off-canvas section:before, #drupal-off-canvas summary:after, #drupal-off-canvas summary:before, #drupal-off-canvas time:after, #drupal-off-canvas time:before, #drupal-off-canvas mark:after, #drupal-off-canvas mark:before, #drupal-off-canvas audio:after, #drupal-off-canvas audio:before, #drupal-off-canvas video:after, #drupal-off-canvas video:before, #drupal-off-canvas input:after, #drupal-off-canvas input:before, #drupal-off-canvas select:after, #drupal-off-canvas select:before, #drupal-off-canvas textarea:after, #drupal-off-canvas textarea:before { animation: none 0s ease 0s 1 normal none running; -webkit-backface-visibility: visible; backface-visibility: visible; background: transparent none repeat 0 0 / auto auto padding-box border-box scroll; border: medium none currentColor; border-collapse: separate; border-image: none; border-radius: 0; border-spacing: 0; bottom: auto; box-shadow: none; box-sizing: content-box; caption-side: top; clear: none; clip: auto; color: #000; columns: auto; column-count: auto; column-fill: balance; grid-column-gap: normal; column-rule: medium none currentColor; column-span: 1; column-width: auto; content: normal; counter-increment: none; counter-reset: none; cursor: auto; direction: ltr; display: inline; empty-cells: show; float: none; font-family: serif; font-size: medium; font-style: normal; font-feature-settings: normal; font-variant: normal; font-weight: normal; font-stretch: normal; line-height: normal; height: auto; -webkit-hyphens: none; -ms-hyphens: none; hyphens: none; left: auto; letter-spacing: normal; list-style: disc outside none; margin: 0; max-height: none; max-width: none; min-height: 0; min-width: 0; opacity: 1; orphans: 2; outline: medium none invert; overflow: visible; overflow-x: visible; overflow-y: visible; padding: 0; page-break-after: auto; page-break-before: auto; page-break-inside: auto; perspective: none; perspective-origin: 50% 50%; position: static; right: auto; -moz-tab-size: 8; tab-size: 8; table-layout: auto; text-align: left; text-align-last: auto; text-decoration: none; text-indent: 0; text-shadow: none; text-transform: none; top: auto; transform: none; transform-origin: 50% 50% 0; transform-style: flat; transition: none 0s ease 0s; unicode-bidi: normal; vertical-align: baseline; visibility: visible; white-space: normal; widows: 2; width: auto; word-spacing: normal; z-index: auto; all: initial; box-sizing: border-box; text-shadow: none; -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: initial; } /* Reset size and position on elements. */ #drupal-off-canvas a, #drupal-off-canvas abbr, #drupal-off-canvas acronym, #drupal-off-canvas address, #drupal-off-canvas applet, #drupal-off-canvas article, #drupal-off-canvas aside, #drupal-off-canvas audio, #drupal-off-canvas b, #drupal-off-canvas big, #drupal-off-canvas blockquote, #drupal-off-canvas body, #drupal-off-canvas canvas, #drupal-off-canvas caption, #drupal-off-canvas cite, #drupal-off-canvas code, #drupal-off-canvas dd, #drupal-off-canvas del, #drupal-off-canvas dfn, #drupal-off-canvas dialog, #drupal-off-canvas dl, #drupal-off-canvas dt, #drupal-off-canvas em, #drupal-off-canvas embed, #drupal-off-canvas fieldset, #drupal-off-canvas figcaption, #drupal-off-canvas figure, #drupal-off-canvas footer, #drupal-off-canvas form, #drupal-off-canvas h1, #drupal-off-canvas h2, #drupal-off-canvas h3, #drupal-off-canvas h4, #drupal-off-canvas h5, #drupal-off-canvas h6, #drupal-off-canvas header, #drupal-off-canvas hgroup, #drupal-off-canvas hr, #drupal-off-canvas html, #drupal-off-canvas i, #drupal-off-canvas iframe, #drupal-off-canvas img, #drupal-off-canvas ins, #drupal-off-canvas kbd, #drupal-off-canvas label, #drupal-off-canvas legend, #drupal-off-canvas li, #drupal-off-canvas main, #drupal-off-canvas mark, #drupal-off-canvas menu, #drupal-off-canvas meter, #drupal-off-canvas nav, #drupal-off-canvas object, #drupal-off-canvas ol, #drupal-off-canvas output, #drupal-off-canvas p, #drupal-off-canvas pre, #drupal-off-canvas progress, #drupal-off-canvas q, #drupal-off-canvas rp, #drupal-off-canvas rt, #drupal-off-canvas s, #drupal-off-canvas samp, #drupal-off-canvas section, #drupal-off-canvas small, #drupal-off-canvas span, #drupal-off-canvas strike, #drupal-off-canvas strong, #drupal-off-canvas sub, #drupal-off-canvas sup, #drupal-off-canvas table, #drupal-off-canvas tbody, #drupal-off-canvas td, #drupal-off-canvas tfoot, #drupal-off-canvas th, #drupal-off-canvas thead, #drupal-off-canvas time, #drupal-off-canvas tr, #drupal-off-canvas tt, #drupal-off-canvas u, #drupal-off-canvas ul, #drupal-off-canvas var, #drupal-off-canvas video, #drupal-off-canvas xmp { margin: 0; padding: 0; border: 0; font-size: 100%; } /* * Override the default (display: inline) for browsers that do not recognize HTML5 tags. * IE8 (and lower) requires a shiv: http://ejohn.org/blog/html5-shiv */ #drupal-off-canvas article, #drupal-off-canvas aside, #drupal-off-canvas figcaption, #drupal-off-canvas figure, #drupal-off-canvas footer, #drupal-off-canvas header, #drupal-off-canvas hgroup, #drupal-off-canvas main, #drupal-off-canvas menu, #drupal-off-canvas nav, #drupal-off-canvas section { display: block; border-radius: 0; line-height: normal; } /* * Makes browsers agree. * IE + Opera = font-weight: bold. * Gecko + WebKit = font-weight: bolder. */ #drupal-off-canvas b, #drupal-off-canvas strong { font-weight: bold; } #drupal-off-canvas em, #drupal-off-canvas i { font-style: italic; } #drupal-off-canvas img { vertical-align: middle; color: transparent; font-size: 0; } #drupal-off-canvas ul, #drupal-off-canvas ol { list-style: none; } /* reset table styling. */ #drupal-off-canvas table { border-spacing: 0; border-collapse: collapse; } #drupal-off-canvas table thead, #drupal-off-canvas table tbody, #drupal-off-canvas table tbody tr:nth-child(even), #drupal-off-canvas table tbody tr:nth-child(odd), #drupal-off-canvas table tfoot { border: 0; background: transparent none; } #drupal-off-canvas th, #drupal-off-canvas td, #drupal-off-canvas caption { font-weight: normal; } #drupal-off-canvas q { quotes: none; } #drupal-off-canvas q:before, #drupal-off-canvas q:after { content: none; } #drupal-off-canvas sub, #drupal-off-canvas sup, #drupal-off-canvas small { font-size: 75%; } #drupal-off-canvas sub, #drupal-off-canvas sup { position: relative; vertical-align: baseline; line-height: 0; } #drupal-off-canvas sub { bottom: -0.25em; } #drupal-off-canvas sup { top: -0.5em; } /* * For IE9. Without, occasionally draws shapes * outside the boundaries of <svg> rectangle. */ #drupal-off-canvas svg { overflow: hidden; } /* Specific resets for inputs. */ #drupal-off-canvas input[type="search"]::-webkit-search-decoration { display: none; } #drupal-off-canvas input { margin: 0; padding: 0; } #drupal-off-canvas input[type="checkbox"], #drupal-off-canvas input[type="radio"] { position: static; margin: 0; } #drupal-off-canvas input:invalid, #drupal-off-canvas button:invalid, #drupal-off-canvas select:invalid, #drupal-off-canvas textarea:invalid, #drupal-off-canvas input:focus, #drupal-off-canvas button:focus, #drupal-off-canvas select:focus, #drupal-off-canvas textarea:focus, #drupal-off-canvas input[type="file"]:focus, #drupal-off-canvas input[type="file"]:active, #drupal-off-canvas input[type="radio"]:focus, #drupal-off-canvas input[type="radio"]:active, #drupal-off-canvas input[type="checkbox"]:focus, #drupal-off-canvas input[type="checkbox"]:active { z-index: 1; box-shadow: none; } #drupal-off-canvas input[role="button"] { cursor: pointer; } #drupal-off-canvas button, #drupal-off-canvas input[type="reset"], #drupal-off-canvas input[type="submit"], #drupal-off-canvas input[type="button"] { display: inline-block; overflow: visible; cursor: pointer; vertical-align: middle; text-decoration: none; border: 0; outline: 0; background-image: none; text-shadow: none; -webkit-appearance: none; -moz-appearance: none; } #drupal-off-canvas button:hover, #drupal-off-canvas input[type="reset"]:hover, #drupal-off-canvas input[type="submit"]:hover, #drupal-off-canvas input[type="button"]:hover { text-decoration: none; background-image: none; } #drupal-off-canvas button:active, #drupal-off-canvas input[type="reset"]:active, #drupal-off-canvas input[type="submit"]:active, #drupal-off-canvas input[type="button"]:active { border-color: gray; background-image: none; box-shadow: none; } #drupal-off-canvas button::-moz-focus-inner, #drupal-off-canvas input[type="reset"]::-moz-focus-inner, #drupal-off-canvas input[type="submit"]::-moz-focus-inner, #drupal-off-canvas input[type="button"]::-moz-focus-inner { padding: 0; border: 0; } #drupal-off-canvas textarea, #drupal-off-canvas select, #drupal-off-canvas input[type="date"], #drupal-off-canvas input[type="datetime"], #drupal-off-canvas input[type="datetime-local"], #drupal-off-canvas input[type="email"], #drupal-off-canvas input[type="month"], #drupal-off-canvas input[type="number"], #drupal-off-canvas input[type="password"], #drupal-off-canvas input[type="search"], #drupal-off-canvas input[type="tel"], #drupal-off-canvas input[type="text"], #drupal-off-canvas input[type="time"], #drupal-off-canvas input[type="url"], #drupal-off-canvas input[type="week"] { height: auto; vertical-align: middle; border-radius: 0; } #drupal-off-canvas textarea[disabled], #drupal-off-canvas select[disabled], #drupal-off-canvas input[type="date"][disabled], #drupal-off-canvas input[type="datetime"][disabled], #drupal-off-canvas input[type="datetime-local"][disabled], #drupal-off-canvas input[type="email"][disabled], #drupal-off-canvas input[type="month"][disabled], #drupal-off-canvas input[type="number"][disabled], #drupal-off-canvas input[type="password"][disabled], #drupal-off-canvas input[type="search"][disabled], #drupal-off-canvas input[type="tel"][disabled], #drupal-off-canvas input[type="text"][disabled], #drupal-off-canvas input[type="time"][disabled], #drupal-off-canvas input[type="url"][disabled], #drupal-off-canvas input[type="week"][disabled] { background-color: gray; } #drupal-off-canvas input[type="hidden"] { visibility: hidden; } #drupal-off-canvas button[disabled], #drupal-off-canvas input[disabled], #drupal-off-canvas select[disabled], #drupal-off-canvas select[disabled] option, #drupal-off-canvas select[disabled] optgroup, #drupal-off-canvas textarea[disabled] { cursor: default; -webkit-user-select: none; -ms-user-select: none; user-select: none; box-shadow: none; } #drupal-off-canvas input:-ms-input-placeholder, #drupal-off-canvas textarea:-ms-input-placeholder { color: gray; } #drupal-off-canvas input::placeholder, #drupal-off-canvas textarea::placeholder { color: gray; } #drupal-off-canvas textarea, #drupal-off-canvas select[size], #drupal-off-canvas select[multiple] { height: auto; } #drupal-off-canvas select[size="0"], #drupal-off-canvas select[size="1"] { height: auto; } #drupal-off-canvas textarea { overflow: auto; width: 100%; min-height: 2.5rem; resize: vertical; } #drupal-off-canvas optgroup { color: black; font-weight: normal; font-style: normal; } #drupal-off-canvas optgroup::-moz-focus-inner { padding: 0; border: 0; } #drupal-off-canvas * button { overflow: visible; width: auto; padding: 0; vertical-align: middle; text-decoration: none; color: black; border: 1px solid gray; background: none; } #drupal-off-canvas * textarea, #drupal-off-canvas * select, #drupal-off-canvas *:not(div) textarea, #drupal-off-canvas *:not(div) select { padding: 0; vertical-align: top; color: black; border: 1px solid gray; background: white; }
docroot/core/themes/stable/css/core/dialog/off-canvas.reset.css
* @file * Reset most HTML elements styles for the off-canvas dialog. * * This is a generic reset. Drupal-specific classes are reset in components. */ /** * All HTML elements that could be used in off-canvas except div, bdo, bdi, * data, svg, map and math. * * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element */ #drupal-off-canvas span, #drupal-off-canvas applet, #drupal-off-canvas object, #drupal-off-canvas iframe, #drupal-off-canvas h1, #drupal-off-canvas h2, #drupal-off-canvas h3, #drupal-off-canvas h4, #drupal-off-canvas h5, #drupal-off-canvas h6, #drupal-off-canvas p, #drupal-off-canvas blockquote, #drupal-off-canvas pre, #drupal-off-canvas a, #drupal-off-canvas abbr, #drupal-off-canvas acronym, #drupal-off-canvas address, #drupal-off-canvas big, #drupal-off-canvas button, #drupal-off-canvas cite, #drupal-off-canvas code, #drupal-off-canvas del, #drupal-off-canvas dfn, #drupal-off-canvas em, #drupal-off-canvas img, #drupal-off-canvas ins, #drupal-off-canvas kbd, #drupal-off-canvas q, #drupal-off-canvas s, #drupal-off-canvas samp, #drupal-off-canvas small, #drupal-off-canvas strike, #drupal-off-canvas strong, #drupal-off-canvas sub, #drupal-off-canvas sup, #drupal-off-canvas tt, #drupal-off-canvas var, #drupal-off-canvas b, #drupal-off-canvas u, #drupal-off-canvas i, #drupal-off-canvas center, #drupal-off-canvas dl, #drupal-off-canvas dt, #drupal-off-canvas dd, #drupal-off-canvas ol, #drupal-off-canvas ul, #drupal-off-canvas li, #drupal-off-canvas fieldset, #drupal-off-canvas form, #drupal-off-canvas label, #drupal-off-canvas legend, #drupal-off-canvas table, #drupal-off-canvas caption, #drupal-off-canvas tbody, #drupal-off-canvas tfoot, #drupal-off-canvas thead, #drupal-off-canvas tr, #drupal-off-canvas th, #drupal-off-canvas td, #drupal-off-canvas article, #drupal-off-canvas aside, #drupal-off-canvas canvas, #drupal-off-canvas details, #drupal-off-canvas embed, #drupal-off-canvas figure, #drupal-off-canvas figcaption, #drupal-off-canvas footer, #drupal-off-canvas header, #drupal-off-canvas hgroup, #drupal-off-canvas main, #drupal-off-canvas menu, #drupal-off-canvas meter, #drupal-off-canvas nav, #drupal-off-canvas output, #drupal-off-canvas progress, #drupal-off-canvas ruby, #drupal-off-canvas section, #drupal-off-canvas summary, #drupal-off-canvas time, #drupal-off-canvas mark, #drupal-off-canvas audio, #drupal-off-canvas video, #drupal-off-canvas input, #drupal-off-canvas select, #drupal-off-canvas textarea { animation: none 0s ease 0s 1 normal none running; -webkit-backface-visibility: visible; backface-visibility: visible; background: transparent none repeat 0 0 / auto auto padding-box border-box scroll; border: medium none currentColor; border-collapse: separate; border-image: none; border-radius: 0; border-spacing: 0; bottom: auto; box-shadow: none; box-sizing: content-box; caption-side: top; clear: none; clip: auto; color: #000; columns: auto; column-count: auto; column-fill: balance; grid-column-gap: normal; column-rule: medium none currentColor; column-span: 1; column-width: auto; content: normal; counter-increment: none; counter-reset: none; cursor: auto; direction: ltr; display: inline; empty-cells: show; float: none; font-family: serif; font-size: medium; font-style: normal; font-feature-settings: normal; font-variant: normal; font-weight: normal; font-stretch: normal; line-height: normal; height: auto; -webkit-hyphens: none; -ms-hyphens: none; hyphens: none; left: auto; letter-spacing: normal; list-style: disc outside none; margin: 0; max-height: none; max-width: none; min-height: 0; min-width: 0; opacity: 1; orphans: 2; outline: medium none invert; overflow: visible; overflow-x: visible; overflow-y: visible; padding: 0; page-break-after: auto; page-break-before: auto; page-break-inside: auto; perspective: none; perspective-origin: 50% 50%; position: static; right: auto; -moz-tab-size: 8; tab-size: 8; table-layout: auto; text-align: left; text-align-last: auto; text-decoration: none; text-indent: 0; text-shadow: none; text-transform: none; top: auto; transform: none; transform-origin: 50% 50% 0; transform-style: flat; transition: none 0s ease 0s; unicode-bidi: normal; vertical-align: baseline; visibility: visible; white-space: normal; widows: 2; width: auto; word-spacing: normal; z-index: auto; all: initial; box-sizing: border-box; text-shadow: none; -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: initial } #drupal-off-canvas span:after, #drupal-off-canvas span:before, #drupal-off-canvas applet:after, #drupal-off-canvas applet:before, #drupal-off-canvas object:after, #drupal-off-canvas object:before, #drupal-off-canvas iframe:after, #drupal-off-canvas iframe:before, #drupal-off-canvas h1:after, #drupal-off-canvas h1:before, #drupal-off-canvas h2:after, #drupal-off-canvas h2:before, #drupal-off-canvas h3:after, #drupal-off-canvas h3:before, #drupal-off-canvas h4:after, #drupal-off-canvas h4:before, #drupal-off-canvas h5:after, #drupal-off-canvas h5:before, #drupal-off-canvas h6:after, #drupal-off-canvas h6:before, #drupal-off-canvas p:after, #drupal-off-canvas p:before, #drupal-off-canvas blockquote:after, #drupal-off-canvas blockquote:before, #drupal-off-canvas pre:after, #drupal-off-canvas pre:before, #drupal-off-canvas a:after, #drupal-off-canvas a:before, #drupal-off-canvas abbr:after, #drupal-off-canvas abbr:before, #drupal-off-canvas acronym:after, #drupal-off-canvas acronym:before, #drupal-off-canvas address:after, #drupal-off-canvas address:before, #drupal-off-canvas big:after, #drupal-off-canvas big:before, #drupal-off-canvas button:after, #drupal-off-canvas button:before, #drupal-off-canvas cite:after, #drupal-off-canvas cite:before, #drupal-off-canvas code:after, #drupal-off-canvas code:before, #drupal-off-canvas del:after, #drupal-off-canvas del:before, #drupal-off-canvas dfn:after, #drupal-off-canvas dfn:before, #drupal-off-canvas em:after, #drupal-off-canvas em:before, #drupal-off-canvas img:after, #drupal-off-canvas img:before, #drupal-off-canvas ins:after, #drupal-off-canvas ins:before, #drupal-off-canvas kbd:after, #drupal-off-canvas kbd:before, #drupal-off-canvas q:after, #drupal-off-canvas q:before, #drupal-off-canvas s:after, #drupal-off-canvas s:before, #drupal-off-canvas samp:after, #drupal-off-canvas samp:before, #drupal-off-canvas small:after, #drupal-off-canvas small:before, #drupal-off-canvas strike:after, #drupal-off-canvas strike:before, #drupal-off-canvas strong:after, #drupal-off-canvas strong:before, #drupal-off-canvas sub:after, #drupal-off-canvas sub:before, #drupal-off-canvas sup:after, #drupal-off-canvas sup:before, #drupal-off-canvas tt:after, #drupal-off-canvas tt:before, #drupal-off-canvas var:after, #drupal-off-canvas var:before, #drupal-off-canvas b:after, #drupal-off-canvas b:before, #drupal-off-canvas u:after, #drupal-off-canvas u:before, #drupal-off-canvas i:after, #drupal-off-canvas i:before, #drupal-off-canvas center:after, #drupal-off-canvas center:before, #drupal-off-canvas dl:after, #drupal-off-canvas dl:before, #drupal-off-canvas dt:after, #drupal-off-canvas dt:before, #drupal-off-canvas dd:after, #drupal-off-canvas dd:before, #drupal-off-canvas ol:after, #drupal-off-canvas ol:before, #drupal-off-canvas ul:after, #drupal-off-canvas ul:before, #drupal-off-canvas li:after, #drupal-off-canvas li:before, #drupal-off-canvas fieldset:after, #drupal-off-canvas fieldset:before, #drupal-off-canvas form:after, #drupal-off-canvas form:before, #drupal-off-canvas label:after, #drupal-off-canvas label:before, #drupal-off-canvas legend:after, #drupal-off-canvas legend:before, #drupal-off-canvas table:after, #drupal-off-canvas table:before, #drupal-off-canvas caption:after, #drupal-off-canvas caption:before, #drupal-off-canvas tbody:after, #drupal-off-canvas tbody:before, #drupal-off-canvas tfoot:after, #drupal-off-canvas tfoot:before, #drupal-off-canvas thead:after, #drupal-off-canvas thead:before, #drupal-off-canvas tr:after, #drupal-off-canvas tr:before, #drupal-off-canvas th:after, #drupal-off-canvas th:before, #drupal-off-canvas td:after, #drupal-off-canvas td:before, #drupal-off-canvas article:after, #drupal-off-canvas article:before, #drupal-off-canvas aside:after, #drupal-off-canvas aside:before, #drupal-off-canvas canvas:after, #drupal-off-canvas canvas:before, #drupal-off-canvas details:after, #drupal-off-canvas details:before, #drupal-off-canvas embed:after, #drupal-off-canvas embed:before, #drupal-off-canvas figure:after, #drupal-off-canvas figure:before, #drupal-off-canvas figcaption:after, #drupal-off-canvas figcaption:before, #drupal-off-canvas footer:after, #drupal-off-canvas footer:before, #drupal-off-canvas header:after, #drupal-off-canvas header:before, #drupal-off-canvas hgroup:after, #drupal-off-canvas hgroup:before, #drupal-off-canvas main:after, #drupal-off-canvas main:before, #drupal-off-canvas menu:after, #drupal-off-canvas menu:before, #drupal-off-canvas meter:after, #drupal-off-canvas meter:before, #drupal-off-canvas nav:after, #drupal-off-canvas nav:before, #drupal-off-canvas output:after, #drupal-off-canvas output:before, #drupal-off-canvas progress:after, #drupal-off-canvas progress:before, #drupal-off-canvas ruby:after, #drupal-off-canvas ruby:before, #drupal-off-canvas section:after, #drupal-off-canvas section:before, #drupal-off-canvas summary:after, #drupal-off-canvas summary:before, #drupal-off-canvas time:after, #drupal-off-canvas time:before, #drupal-off-canvas mark:after, #drupal-off-canvas mark:before, #drupal-off-canvas audio:after, #drupal-off-canvas audio:before, #drupal-off-canvas video:after, #drupal-off-canvas video:before, #drupal-off-canvas input:after, #drupal-off-canvas input:before, #drupal-off-canvas select:after, #drupal-off-canvas select:before, #drupal-off-canvas textarea:after, #drupal-off-canvas textarea:before { animation: none 0s ease 0s 1 normal none running; -webkit-backface-visibility: visible; backface-visibility: visible; background: transparent none repeat 0 0 / auto auto padding-box border-box scroll; border: medium none currentColor; border-collapse: separate; border-image: none; border-radius: 0; border-spacing: 0; bottom: auto; box-shadow: none; box-sizing: content-box; caption-side: top; clear: none; clip: auto; color: #000; columns: auto; column-count: auto; column-fill: balance; grid-column-gap: normal; column-rule: medium none currentColor; column-span: 1; column-width: auto; content: normal; counter-increment: none; counter-reset: none; cursor: auto; direction: ltr; display: inline; empty-cells: show; float: none; font-family: serif; font-size: medium; font-style: normal; font-feature-settings: normal; font-variant: normal; font-weight: normal; font-stretch: normal; line-height: normal; height: auto; -webkit-hyphens: none; -ms-hyphens: none; hyphens: none; left: auto; letter-spacing: normal; list-style: disc outside none; margin: 0; max-height: none; max-width: none; min-height: 0; min-width: 0; opacity: 1; orphans: 2; outline: medium none invert; overflow: visible; overflow-x: visible; overflow-y: visible; padding: 0; page-break-after: auto; page-break-before: auto; page-break-inside: auto; perspective: none; perspective-origin: 50% 50%; position: static; right: auto; -moz-tab-size: 8; tab-size: 8; table-layout: auto; text-align: left; text-align-last: auto; text-decoration: none; text-indent: 0; text-shadow: none; text-transform: none; top: auto; transform: none; transform-origin: 50% 50% 0; transform-style: flat; transition: none 0s ease 0s; unicode-bidi: normal; vertical-align: baseline; visibility: visible; white-space: normal; widows: 2; width: auto; word-spacing: normal; z-index: auto; all: initial; box-sizing: border-box; text-shadow: none; -webkit-font-smoothing: antialiased; -webkit-tap-highlight-color: initial; } /* Reset size and position on elements. */ #drupal-off-canvas a, #drupal-off-canvas abbr, #drupal-off-canvas acronym, #drupal-off-canvas address, #drupal-off-canvas applet, #drupal-off-canvas article, #drupal-off-canvas aside, #drupal-off-canvas audio, #drupal-off-canvas b, #drupal-off-canvas big, #drupal-off-canvas blockquote, #drupal-off-canvas body, #drupal-off-canvas canvas, #drupal-off-canvas caption, #drupal-off-canvas cite, #drupal-off-canvas code, #drupal-off-canvas dd, #drupal-off-canvas del, #drupal-off-canvas dfn, #drupal-off-canvas dialog, #drupal-off-canvas dl, #drupal-off-canvas dt, #drupal-off-canvas em, #drupal-off-canvas embed, #drupal-off-canvas fieldset, #drupal-off-canvas figcaption, #drupal-off-canvas figure, #drupal-off-canvas footer, #drupal-off-canvas form, #drupal-off-canvas h1, #drupal-off-canvas h2, #drupal-off-canvas h3, #drupal-off-canvas h4, #drupal-off-canvas h5, #drupal-off-canvas h6, #drupal-off-canvas header, #drupal-off-canvas hgroup, #drupal-off-canvas hr, #drupal-off-canvas html, #drupal-off-canvas i, #drupal-off-canvas iframe, #drupal-off-canvas img, #drupal-off-canvas ins, #drupal-off-canvas kbd, #drupal-off-canvas label, #drupal-off-canvas legend, #drupal-off-canvas li, #drupal-off-canvas main, #drupal-off-canvas mark, #drupal-off-canvas menu, #drupal-off-canvas meter, #drupal-off-canvas nav, #drupal-off-canvas object, #drupal-off-canvas ol, #drupal-off-canvas output, #drupal-off-canvas p, #drupal-off-canvas pre, #drupal-off-canvas progress, #drupal-off-canvas q, #drupal-off-canvas rp, #drupal-off-canvas rt, #drupal-off-canvas s, #drupal-off-canvas samp, #drupal-off-canvas section, #drupal-off-canvas small, #drupal-off-canvas span, #drupal-off-canvas strike, #drupal-off-canvas strong, #drupal-off-canvas sub, #drupal-off-canvas sup, #drupal-off-canvas table, #drupal-off-canvas tbody, #drupal-off-canvas td, #drupal-off-canvas tfoot, #drupal-off-canvas th, #drupal-off-canvas thead, #drupal-off-canvas time, #drupal-off-canvas tr, #drupal-off-canvas tt, #drupal-off-canvas u, #drupal-off-canvas ul, #drupal-off-canvas var, #drupal-off-canvas video, #drupal-off-canvas xmp { margin: 0; padding: 0; border: 0; font-size: 100%; } /* * Override the default (display: inline) for browsers that do not recognize HTML5 tags. * IE8 (and lower) requires a shiv: http://ejohn.org/blog/html5-shiv */ #drupal-off-canvas article, #drupal-off-canvas aside, #drupal-off-canvas figcaption, #drupal-off-canvas figure, #drupal-off-canvas footer, #drupal-off-canvas header, #drupal-off-canvas hgroup, #drupal-off-canvas main, #drupal-off-canvas menu, #drupal-off-canvas nav, #drupal-off-canvas section { display: block; border-radius: 0; line-height: normal; } /* * Makes browsers agree. * IE + Opera = font-weight: bold. * Gecko + WebKit = font-weight: bolder. */ #drupal-off-canvas b, #drupal-off-canvas strong { font-weight: bold; } #drupal-off-canvas em, #drupal-off-canvas i { font-style: italic; } #drupal-off-canvas img { vertical-align: middle; color: transparent; font-size: 0; } #drupal-off-canvas ul, #drupal-off-canvas ol { list-style: none; } /* reset table styling. */ #drupal-off-canvas table { border-spacing: 0; border-collapse: collapse; } #drupal-off-canvas table thead, #drupal-off-canvas table tbody, #drupal-off-canvas table tbody tr:nth-child(even), #drupal-off-canvas table tbody tr:nth-child(odd), #drupal-off-canvas table tfoot { border: 0; background: transparent none; } #drupal-off-canvas th, #drupal-off-canvas td, #drupal-off-canvas caption { font-weight: normal; } #drupal-off-canvas q { quotes: none; } #drupal-off-canvas q:before, #drupal-off-canvas q:after { content: none; } #drupal-off-canvas sub, #drupal-off-canvas sup, #drupal-off-canvas small { font-size: 75%; } #drupal-off-canvas sub, #drupal-off-canvas sup { position: relative; vertical-align: baseline; line-height: 0; } #drupal-off-canvas sub { bottom: -0.25em; } #drupal-off-canvas sup { top: -0.5em; } /* * For IE9. Without, occasionally draws shapes * outside the boundaries of <svg> rectangle. */ #drupal-off-canvas svg { overflow: hidden; } /* Specific resets for inputs. */ #drupal-off-canvas input[type="search"]::-webkit-search-decoration { display: none; } #drupal-off-canvas input { margin: 0; padding: 0; } #drupal-off-canvas input[type="checkbox"], #drupal-off-canvas input[type="radio"] { position: static; margin: 0; } #drupal-off-canvas input:invalid, #drupal-off-canvas button:invalid, #drupal-off-canvas select:invalid, #drupal-off-canvas textarea:invalid, #drupal-off-canvas input:focus, #drupal-off-canvas button:focus, #drupal-off-canvas select:focus, #drupal-off-canvas textarea:focus, #drupal-off-canvas input[type="file"]:focus, #drupal-off-canvas input[type="file"]:active, #drupal-off-canvas input[type="radio"]:focus, #drupal-off-canvas input[type="radio"]:active, #drupal-off-canvas input[type="checkbox"]:focus, #drupal-off-canvas input[type="checkbox"]:active { z-index: 1; box-shadow: none; } #drupal-off-canvas input[role="button"] { cursor: pointer; } #drupal-off-canvas button, #drupal-off-canvas input[type="reset"], #drupal-off-canvas input[type="submit"], #drupal-off-canvas input[type="button"] { display: inline-block; overflow: visible; cursor: pointer; vertical-align: middle; text-decoration: none; border: 0; outline: 0; background-image: none; text-shadow: none; -webkit-appearance: none; -moz-appearance: none; } #drupal-off-canvas button:hover, #drupal-off-canvas input[type="reset"]:hover, #drupal-off-canvas input[type="submit"]:hover, #drupal-off-canvas input[type="button"]:hover { text-decoration: none; background-image: none; } #drupal-off-canvas button:active, #drupal-off-canvas input[type="reset"]:active, #drupal-off-canvas input[type="submit"]:active, #drupal-off-canvas input[type="button"]:active { border-color: gray; background-image: none; box-shadow: none; } #drupal-off-canvas button::-moz-focus-inner, #drupal-off-canvas input[type="reset"]::-moz-focus-inner, #drupal-off-canvas input[type="submit"]::-moz-focus-inner, #drupal-off-canvas input[type="button"]::-moz-focus-inner { padding: 0; border: 0; } #drupal-off-canvas textarea, #drupal-off-canvas select, #drupal-off-canvas input[type="date"], #drupal-off-canvas input[type="datetime"], #drupal-off-canvas input[type="datetime-local"], #drupal-off-canvas input[type="email"], #drupal-off-canvas input[type="month"], #drupal-off-canvas input[type="number"], #drupal-off-canvas input[type="password"], #drupal-off-canvas input[type="search"], #drupal-off-canvas input[type="tel"], #drupal-off-canvas input[type="text"], #drupal-off-canvas input[type="time"], #drupal-off-canvas input[type="url"], #drupal-off-canvas input[type="week"] { height: auto; vertical-align: middle; border-radius: 0; } #drupal-off-canvas textarea[disabled], #drupal-off-canvas select[disabled], #drupal-off-canvas input[type="date"][disabled], #drupal-off-canvas input[type="datetime"][disabled], #drupal-off-canvas input[type="datetime-local"][disabled], #drupal-off-canvas input[type="email"][disabled], #drupal-off-canvas input[type="month"][disabled], #drupal-off-canvas input[type="number"][disabled], #drupal-off-canvas input[type="password"][disabled], #drupal-off-canvas input[type="search"][disabled], #drupal-off-canvas input[type="tel"][disabled], #drupal-off-canvas input[type="text"][disabled], #drupal-off-canvas input[type="time"][disabled], #drupal-off-canvas input[type="url"][disabled], #drupal-off-canvas input[type="week"][disabled] { background-color: gray; } #drupal-off-canvas input[type="hidden"] { visibility: hidden; } #drupal-off-canvas button[disabled], #drupal-off-canvas input[disabled], #drupal-off-canvas select[disabled], #drupal-off-canvas select[disabled] option, #drupal-off-canvas select[disabled] optgroup, #drupal-off-canvas textarea[disabled] { cursor: default; -webkit-user-select: none; -ms-user-select: none; user-select: none; box-shadow: none; } #drupal-off-canvas input:-ms-input-placeholder, #drupal-off-canvas textarea:-ms-input-placeholder { color: gray; } #drupal-off-canvas input::placeholder, #drupal-off-canvas textarea::placeholder { color: gray; } #drupal-off-canvas textarea, #drupal-off-canvas select[size], #drupal-off-canvas select[multiple] { height: auto; } #drupal-off-canvas select[size="0"], #drupal-off-canvas select[size="1"] { height: auto; } #drupal-off-canvas textarea { overflow: auto; width: 100%; min-height: 2.5rem; resize: vertical; } #drupal-off-canvas optgroup { color: black; font-weight: normal; font-style: normal; } #drupal-off-canvas optgroup::-moz-focus-inner { padding: 0; border: 0; } #drupal-off-canvas * button { overflow: visible; width: auto; padding: 0; vertical-align: middle; text-decoration: none; color: black; border: 1px solid gray; background: none; } #drupal-off-canvas * textarea, #drupal-off-canvas * select, #drupal-off-canvas *:not(div) textarea, #drupal-off-canvas *:not(div) select { padding: 0; vertical-align: top; color: black; border: 1px solid gray; background: white; }
0.421076
0.192274
Instructions are provided below for customizing these classes. */ /* =============Width===============*/ /* BY DEFAULT, THERE IS NO MAX WIDTH: If you want the want to restrict the width of the page, remove the comment out slashes and astricks surrounding the ".tmp-container {max-width: 1170px;}". you can change the 1170px to a smaller/larger max width if you'd like */ /* .tmp-container { max-width: 1170px; } */ /* =============Search===============*/ /* BY DEFAULT, Search box is displayed: If you want the to hide the search, remove the comment out slashes and astricks surrounding the ".search-box {display:none;}" below. */ /* #search-box { display: none; } */ /* =============LOGO===============*/ /* THE DEFAULT LOGO HEIGHT IS 65PX: If you want the logo to be smaller (50px), comment out the ".logo-header img {height 65px;}" below and remove the comment out slashes and astricks surrounding the ".logo-header img {height: 50px...margin-top: 18px;}" and the header search input (so the search box size is reduced too). 50px is the MINIMUM HEIGHT for the logo. */ /* .logo-header img { height: 65px; } */ .logo-header img { height: 50px; } .header-search input[type="search"] { height: 30px; margin-top: 16px; } .header-search button[type="submit"] { width: 26px; height: 30px; margin-top: 18px; } /* =============STANDARD CONTENT===============*/ /* TO CHANGE THE TEXT SIZE OF THE CONTENT, FONT, ETC: By default, USGS has set the font size, family, etc. in order to provide a consistent size for content across all pages. If you would prefer not to have any of these pre-defined formats, you can change them below. NOTE: header and footer will not be changed. */ #maincontent { font-family: 'Source Sans Pro',sans-serif; font-size: 14px; line-height: 1.42857; color: #333333; background-color: #fff; padding-left: 15px; padding-right: 15px; } /* =============SEARCH===============*/ /* THIS HIDES THE SEARCH BOX ON VERY SMALL DEVICES: For simplification, search bar is visible on larger screens but is hidden on small screens. If you would prefer not to have the search box at all, you can remove the "@media (max-width:500px) {" and the second closing "}". below */ @media (max-width:500px) { .header-search form { display: none} } /* =============SOCIAL MEDIA===============*/ /* If you would prefer not to have the social media links, you can remove the comment out slashes and astricks surrounding the content below */ /* .footer-social-links { display: none} */ /* Suggestions from <NAME> */ header.header-nav .tmp-container { padding-bottom: 4px !important; } footer.footer .tmp-container { padding-top: 16px !important; } footer.footer hr { margin-bottom: 13px !important; border: 0px !important; border-top: 1px solid #ffffff !important; } .nav { display: block; }
src/UsgsCustom.css
Instructions are provided below for customizing these classes. */ /* =============Width===============*/ /* BY DEFAULT, THERE IS NO MAX WIDTH: If you want the want to restrict the width of the page, remove the comment out slashes and astricks surrounding the ".tmp-container {max-width: 1170px;}". you can change the 1170px to a smaller/larger max width if you'd like */ /* .tmp-container { max-width: 1170px; } */ /* =============Search===============*/ /* BY DEFAULT, Search box is displayed: If you want the to hide the search, remove the comment out slashes and astricks surrounding the ".search-box {display:none;}" below. */ /* #search-box { display: none; } */ /* =============LOGO===============*/ /* THE DEFAULT LOGO HEIGHT IS 65PX: If you want the logo to be smaller (50px), comment out the ".logo-header img {height 65px;}" below and remove the comment out slashes and astricks surrounding the ".logo-header img {height: 50px...margin-top: 18px;}" and the header search input (so the search box size is reduced too). 50px is the MINIMUM HEIGHT for the logo. */ /* .logo-header img { height: 65px; } */ .logo-header img { height: 50px; } .header-search input[type="search"] { height: 30px; margin-top: 16px; } .header-search button[type="submit"] { width: 26px; height: 30px; margin-top: 18px; } /* =============STANDARD CONTENT===============*/ /* TO CHANGE THE TEXT SIZE OF THE CONTENT, FONT, ETC: By default, USGS has set the font size, family, etc. in order to provide a consistent size for content across all pages. If you would prefer not to have any of these pre-defined formats, you can change them below. NOTE: header and footer will not be changed. */ #maincontent { font-family: 'Source Sans Pro',sans-serif; font-size: 14px; line-height: 1.42857; color: #333333; background-color: #fff; padding-left: 15px; padding-right: 15px; } /* =============SEARCH===============*/ /* THIS HIDES THE SEARCH BOX ON VERY SMALL DEVICES: For simplification, search bar is visible on larger screens but is hidden on small screens. If you would prefer not to have the search box at all, you can remove the "@media (max-width:500px) {" and the second closing "}". below */ @media (max-width:500px) { .header-search form { display: none} } /* =============SOCIAL MEDIA===============*/ /* If you would prefer not to have the social media links, you can remove the comment out slashes and astricks surrounding the content below */ /* .footer-social-links { display: none} */ /* Suggestions from <NAME> */ header.header-nav .tmp-container { padding-bottom: 4px !important; } footer.footer .tmp-container { padding-top: 16px !important; } footer.footer hr { margin-bottom: 13px !important; border: 0px !important; border-top: 1px solid #ffffff !important; } .nav { display: block; }
0.289271
0.127598
section { width: 100%; padding: 0; display: table; margin: 0; max-width: none; height: inherit; } h1 { font-family: 'Ostrich Sans'; src: url('/fonts/ostrich-sans-black.eot'); src: url(/fonts/ostrich-sans-black.woff) format('woff'), url('/fonts/ostrich-sans-black.ttf') format('truetype'), url('/fonts/ostrich-sans-black.svg') format('svg'); font-weight: 900; font-style: normal; font-size: 42pt; } h2 { font-family: 'Ostrich Sans'; font-weight: 900; font-style: normal; } h3 { font-family: 'Ostrich Sans'; font-weight: 900; font-style: normal; } h4 { font-weight: 400; font-family: 'Open Sans', sans-serif; color: #012340; } h4.oblique { font-style: oblique; } p { font-weight: 400; font-family: 'Open Sans', sans-serif !important; color: #012340; } ul { text-decoration: none; list-style-type: none; -webkit-padding-start: 0px !important; } /* Animation */ .no-js #loader { display: none; } .js #loader { display: block; position: absolute; left: 100px; top: 0; } .se-pre-con { position: fixed; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 9999; background: url(/test/img/Preloader_7.gif) center no-repeat #fff; } #load-msg { color: #40a8cc; position: fixed; text-align: center; top: 55%; width: 100%; height: 100%; z-index: 9999; } .hideme { opacity:0; margin-top: 20%; } .showme { opacity: 1; width: 100%; margin: 0 auto; text-align: center; font-style: oblique; font-weight: 100; } /* Navbar area */ .navbar { margin-left: -2.5%; height: 80px; background-color: #f2f2f2; box-shadow: 3px 0 7.8px 0.2px rgba(0, 0, 0, 0.8); border-radius: 0px; } @media only screen and (min-width: 600px) { .navbar-brand { position: relative; left: -5px; width: 220px; height: 120px; margin-top: -20px; background-color: #f2f2f2; box-shadow: 1px 0 7.8px 0.2px rgba(0, 0, 0, 0.8); } #logo { height: 80px; width: 220px; padding-right: 24px; margin-left: -4px; margin-top: 15px; } } #navbar2 ul{ margin-top: 1.5%; } #navbar2 ul li a { font-family: 'Open Sans', sans-serif; text-decoration-color: #012340; color: #012340; } #soc-header { margin-top: 7.5%; } #soc-header a { padding: 0 10px 0 10px; text-align: center; } #soc-header a img { max-height: 20px; max-width: 20px; } #soc-header2 { margin: 7.5% 0 0 -10px; padding-left: 0px; padding-right: 0px; text-align: center; } #soc-header2 a { padding: 0 10px 0 10px; text-align: center; } #soc-header2 a img { max-height: 20px; max-width: 20px; width: auto !important; } /* Header */ .intro { height: 100vh; background-image: url(/test/img/DSC00498-v2.jpg); background-size: cover; margin: 0; } #header { margin-top: 15%; margin-bottom: 45%; } .center { width: 50%; margin: 0 auto; } .featured { margin-top: -20vh; } .bottom-center { position: absolute; left: 0; bottom: 0; height: 100px; width: 100%; text-align: center; text-decoration: none; } /* Item 1 */ #featured { background-color: #f2f2f2; box-shadow: 1px 0 7.8px 0.2px rgba(0, 0, 0, 0.8); position: relative; padding: 20px 20px 40px 20px; } #video1 { position: relative; top: -140px; min-height: 360px; margin-bottom: -120px; } #item2 { margin-top: 15px; } #video2 { position: relative; min-height: 360px; } #item3 { margin-top: 15px; } #video3 { position: relative; min-height: 360px; } #bg-2 { height: 100vh; background-image: url(/test/img/proj/large.jpg); background-size: cover; background-position: center; margin: 0; display: table; margin-top: -5vh; } .vertical-center { display: table-cell; vertical-align: middle; } #gallery .container { background-color: #f2f2f2; box-shadow: 1px 0 7.8px 0.2px rgba(0, 0, 0, 0.8); position: relative; padding: 20px 20px 40px 20px; top: -5vh; } .ratio{ position:relative; width: 100%; height: 0; padding-bottom: 50% ; /* % of width, defines aspect ratio*/ background-repeat: no-repeat; background-position: center center; background-size: cover; } /* Gallery style */ div figcaption { padding: 2em; color: #f2f2f2; text-shadow: 2px 2px 5px #333; text-transform: uppercase; font-size: 1.25em; -webkit-backface-visibility: hidden; backface-visibility: hidden; } div figcaption, div figcaption > a { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } figcaption > a { z-index: 1000; text-indent: 100%; white-space: nowrap; font-size: 0; opacity: 0; } figcaption h2 { font-weight: 800; font-size: 24pt; } figcaption h2, figcaption p { margin: 0; } figcaption p { letter-spacing: 1px; font-size: 100%; font-weight: 400; color: #f2f2f2; } #myContent { -moz-column-count: 2; -moz-column-gap: 0px; -webkit-column-count: 2; -webkit-column-gap: 0px; column-count: 2; column-gap: 0px; } div.effect-moses { position: relative; overflow: hidden; margin-top: 0; } #myContent li:nth-of-type(1) { background: -webkit-linear-gradient(105deg, #bf3894 0%, #224f90 50%,#012340 100%); background: linear-gradient(165deg, #bf3894 0%, #224f90 50%,#012340 100%); } #myContent li:nth-of-type(2) { background: -webkit-linear-gradient(-70deg, #A6671B 15%, #024c8b 50%,#012340 100%); background: linear-gradient(-25deg, #A6671B 15%, #024c8b 50%,#012340 100%); } #myContent li:nth-of-type(3) { background: -webkit-linear-gradient(-45deg, #a32a19 15%, #c2d18e 66%,#499384 100%); background: linear-gradient(-45deg, #a32a19 15%, #c2d18e 66%,#499384 100%); } #myContent li:nth-of-type(4) { background: -webkit-linear-gradient(115deg, #A6671B 0%,#faf3e5 100%); background: linear-gradient(-25deg, #A6671B 0%,#faf3e5 100%); } #myContent li:nth-of-type(5) { background: -webkit-linear-gradient(115deg, #CFF09E 0%,#A8DBA8 20%,#79BD9A 40%,#3B8686 60%,#0B486B 100%); background: linear-gradient(115deg, #CFF09E 0%,#A8DBA8 20%,#79BD9A 40%,#3B8686 60%,#0B486B 100%); } #myContent li:nth-of-type(6) { background: -webkit-linear-gradient(115deg, #E1D1B7 0%,#F6E8CB 20%,#B5E1C8 40%,#85B9A3 60%,#322A1D 100%); background: linear-gradient(115deg, #E1D1B7 0%,#F6E8CB 20%,#B5E1C8 40%,#85B9A3 60%,#322A1D 100%); } div.effect-moses h2, div.effect-moses p { padding: 5px; width: 100%; height: 50%; border: none; } div.effect-moses h2 { font-family: 'Open sans', sans-serif; font-weight: 400; padding: 5px; width: 100%; opacity: 0; font-size: 36pt; text-align: center; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(0,25%,0); transform: translate3d(0,25%,0); } div.effect-moses p { float: right; padding: 5px; text-align: center; opacity: 0; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(0,25%,0); transform: translate3d(0,25%,0); } div.effect-moses:hover h2 { -webkit-transform: translate3d(0,50%,0); transform: translate3d(0,50%,0); opacity: 1; } div.effect-moses:hover p { -webkit-transform: translate3d(0,50%,0); transform: translate3d(0,50%,0); opacity: 1; } #myContent img{ display: block; width: 100%; opacity: 0.95; -webkit-transition: opacity 0.35s; transition: opacity 0.35s; } #myContent div.effect-moses:hover img { opacity: 0.3; } @media only screen and (max-width : 1199px), only screen and (max-device-width : 1199px){ #myContent { -moz-column-count: 2; -moz-column-gap: 0px; -webkit-column-count: 2; -webkit-column-gap: 0px; column-count: 2; column-gap: 0px; width: 100%; } } @media only screen and (max-width : 999px), only screen and (max-device-width : 999px){ #myContent { -moz-column-count: 1; -moz-column-gap: 0px; -webkit-column-count: 1; -webkit-column-gap: 0px; column-count: 1; column-gap: 0px; width: 100%; } } @media only screen and (max-width : 799px), only screen and (max-device-width : 799px){ #myContent { -moz-column-count: 1; -moz-column-gap: 0px; -webkit-column-count: 1; -webkit-column-gap: 0px; column-count: 1; column-gap: 0px; width: 100%; } } @media only screen and (max-width : 599px), only screen and (max-device-width : 599px){ #myContent { -moz-column-count: 1; -moz-column-gap: 0px; -webkit-column-count: 1; -webkit-column-gap: 0px; column-count: 1; column-gap: 0px; width: 100%; } } /* Contact Section */ #bg-3 { height: 100vh; padding-bottom: 10vh; background-image: url(/test/img/bg-3-2.jpg); background-size: cover; background-repeat: no-repeat; background-position: 50% 75%; margin-top: -10vh; display: table; padding-bottom: 30vh; } #bg-3 .container { max-width: 400px; width: 100%; margin: 0 auto; position: relative; } #contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea, #contact button[type="submit"] { font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif; } #contact { background: #F9F9F9; padding: 25px; margin: 150px 0; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); } #contact h3 { display: block; font-size: 30px; font-weight: 300; margin-bottom: 10px; } #contact h4 { margin: 5px 0 15px; display: block; font-size: 13px; font-weight: 400; } fieldset { border: medium none !important; margin: 0 0 10px; min-width: 100%; padding: 0; width: 100%; } #contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea { width: 100%; border: 1px solid #ccc; background: #FFF; margin: 0 0 5px; padding: 10px; } #contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover { -webkit-transition: border-color 0.3s ease-in-out; -moz-transition: border-color 0.3s ease-in-out; transition: border-color 0.3s ease-in-out; border: 1px solid #aaa; } #contact textarea { height: 100px; max-width: 100%; resize: none; } #contact button[type="submit"] { cursor: pointer; width: 100%; border: none; background: #4CAF50; color: #FFF; margin: 0 0 5px; padding: 10px; font-size: 15px; } #contact button[type="submit"]:hover { background: #43A047; -webkit-transition: background 0.3s ease-in-out; -moz-transition: background 0.3s ease-in-out; transition: background-color 0.3s ease-in-out; } #contact button[type="submit"]:active { box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5); } .copyright { text-align: center; } #contact input:focus, #contact textarea:focus { outline: 0; border: 1px solid #aaa; } ::-webkit-input-placeholder { color: #888; } :-moz-placeholder { color: #888; } ::-moz-placeholder { color: #888; } :-ms-input-placeholder { color: #888; } .result { background-color: #f2f2f2; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12); box-sizing: border-box; padding: 20px; font-family: 'Open sans', sans-serif; text-align: center; font-weight: 400; } .hidden { display: none; } /* Footer */ .footer-distributed{ background-color: #f2f2f2; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12); box-sizing: border-box; width: 100%; text-align: left; font: bold 16px sans-serif; padding: 55px 50px; margin-top: -36vh; } .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right{ display: inline-block; vertical-align: top; } /* Footer left */ .footer-distributed .footer-left{ width: 40%; } /* The company logo */ .footer-distributed h3{ color: #333; font: normal 36px 'Cookie', cursive; margin: 0; } /* Footer links */ .footer-distributed .footer-links{ color: #333; margin: 20px 0 12px; padding: 0; } .footer-distributed .footer-links a{ display:inline-block; line-height: 1.8; text-decoration: none; color: inherit; } .footer-distributed .footer-company-name{ color: #8f9296; font-size: 14px; font-weight: normal; margin: 0; } /* Footer Center */ .footer-distributed .footer-center{ width: 35%; } .footer-distributed .footer-center i{ background-color: #f2f2f2; color: #333; font-size: 25px; width: 38px; height: 38px; border-radius: 50%; text-align: center; line-height: 42px; margin: 10px 15px; vertical-align: middle; } .footer-distributed .footer-center i.fa-envelope{ font-size: 17px; line-height: 38px; } .footer-distributed .footer-center p{ display: inline-block; color: #333; vertical-align: middle; margin:0; } .footer-distributed .footer-center p span{ display:block; font-weight: normal; font-size:14px; line-height:2; } .footer-distributed .footer-center p a{ color: #5383d3; text-decoration: none;; } /* Footer Right */ .footer-distributed .footer-right{ width: 20%; } .footer-distributed .footer-company-about{ line-height: 20px; color: #92999f; font-size: 11px; font-weight: normal; margin: 0; } .footer-distributed .footer-company-about span{ display: block; color: #333; font-size: 14px; font-weight: bold; margin-bottom: 20px; } .footer-distributed .footer-icons{ margin-top: 25px; } .footer-distributed .footer-icons a{ display: inline-block; width: 35px; height: 35px; cursor: pointer; background-color: #f2f2f2; border-radius: 2px; font-size: 20px; color: #333; text-align: center; line-height: 35px; margin-right: 3px; margin-bottom: 5px; } /* If you don't want the footer to be responsive, remove these media queries */ @media (max-width: 880px) { .footer-distributed{ font: bold 14px sans-serif; } .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right{ display: block; width: 100%; margin-bottom: 40px; text-align: center; } .footer-distributed .footer-center i{ margin-left: 0; } } @media only screen and (max-width: 599px) { .navbar { height: auto; } .navbar-brand { opacity: 0; } #logo { display: none; } .icon-bar { background-color: #012340; } .featured { margin-top: -5vh; } }
css/main.css
section { width: 100%; padding: 0; display: table; margin: 0; max-width: none; height: inherit; } h1 { font-family: 'Ostrich Sans'; src: url('/fonts/ostrich-sans-black.eot'); src: url(/fonts/ostrich-sans-black.woff) format('woff'), url('/fonts/ostrich-sans-black.ttf') format('truetype'), url('/fonts/ostrich-sans-black.svg') format('svg'); font-weight: 900; font-style: normal; font-size: 42pt; } h2 { font-family: 'Ostrich Sans'; font-weight: 900; font-style: normal; } h3 { font-family: 'Ostrich Sans'; font-weight: 900; font-style: normal; } h4 { font-weight: 400; font-family: 'Open Sans', sans-serif; color: #012340; } h4.oblique { font-style: oblique; } p { font-weight: 400; font-family: 'Open Sans', sans-serif !important; color: #012340; } ul { text-decoration: none; list-style-type: none; -webkit-padding-start: 0px !important; } /* Animation */ .no-js #loader { display: none; } .js #loader { display: block; position: absolute; left: 100px; top: 0; } .se-pre-con { position: fixed; left: 0px; top: 0px; width: 100%; height: 100%; z-index: 9999; background: url(/test/img/Preloader_7.gif) center no-repeat #fff; } #load-msg { color: #40a8cc; position: fixed; text-align: center; top: 55%; width: 100%; height: 100%; z-index: 9999; } .hideme { opacity:0; margin-top: 20%; } .showme { opacity: 1; width: 100%; margin: 0 auto; text-align: center; font-style: oblique; font-weight: 100; } /* Navbar area */ .navbar { margin-left: -2.5%; height: 80px; background-color: #f2f2f2; box-shadow: 3px 0 7.8px 0.2px rgba(0, 0, 0, 0.8); border-radius: 0px; } @media only screen and (min-width: 600px) { .navbar-brand { position: relative; left: -5px; width: 220px; height: 120px; margin-top: -20px; background-color: #f2f2f2; box-shadow: 1px 0 7.8px 0.2px rgba(0, 0, 0, 0.8); } #logo { height: 80px; width: 220px; padding-right: 24px; margin-left: -4px; margin-top: 15px; } } #navbar2 ul{ margin-top: 1.5%; } #navbar2 ul li a { font-family: 'Open Sans', sans-serif; text-decoration-color: #012340; color: #012340; } #soc-header { margin-top: 7.5%; } #soc-header a { padding: 0 10px 0 10px; text-align: center; } #soc-header a img { max-height: 20px; max-width: 20px; } #soc-header2 { margin: 7.5% 0 0 -10px; padding-left: 0px; padding-right: 0px; text-align: center; } #soc-header2 a { padding: 0 10px 0 10px; text-align: center; } #soc-header2 a img { max-height: 20px; max-width: 20px; width: auto !important; } /* Header */ .intro { height: 100vh; background-image: url(/test/img/DSC00498-v2.jpg); background-size: cover; margin: 0; } #header { margin-top: 15%; margin-bottom: 45%; } .center { width: 50%; margin: 0 auto; } .featured { margin-top: -20vh; } .bottom-center { position: absolute; left: 0; bottom: 0; height: 100px; width: 100%; text-align: center; text-decoration: none; } /* Item 1 */ #featured { background-color: #f2f2f2; box-shadow: 1px 0 7.8px 0.2px rgba(0, 0, 0, 0.8); position: relative; padding: 20px 20px 40px 20px; } #video1 { position: relative; top: -140px; min-height: 360px; margin-bottom: -120px; } #item2 { margin-top: 15px; } #video2 { position: relative; min-height: 360px; } #item3 { margin-top: 15px; } #video3 { position: relative; min-height: 360px; } #bg-2 { height: 100vh; background-image: url(/test/img/proj/large.jpg); background-size: cover; background-position: center; margin: 0; display: table; margin-top: -5vh; } .vertical-center { display: table-cell; vertical-align: middle; } #gallery .container { background-color: #f2f2f2; box-shadow: 1px 0 7.8px 0.2px rgba(0, 0, 0, 0.8); position: relative; padding: 20px 20px 40px 20px; top: -5vh; } .ratio{ position:relative; width: 100%; height: 0; padding-bottom: 50% ; /* % of width, defines aspect ratio*/ background-repeat: no-repeat; background-position: center center; background-size: cover; } /* Gallery style */ div figcaption { padding: 2em; color: #f2f2f2; text-shadow: 2px 2px 5px #333; text-transform: uppercase; font-size: 1.25em; -webkit-backface-visibility: hidden; backface-visibility: hidden; } div figcaption, div figcaption > a { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } figcaption > a { z-index: 1000; text-indent: 100%; white-space: nowrap; font-size: 0; opacity: 0; } figcaption h2 { font-weight: 800; font-size: 24pt; } figcaption h2, figcaption p { margin: 0; } figcaption p { letter-spacing: 1px; font-size: 100%; font-weight: 400; color: #f2f2f2; } #myContent { -moz-column-count: 2; -moz-column-gap: 0px; -webkit-column-count: 2; -webkit-column-gap: 0px; column-count: 2; column-gap: 0px; } div.effect-moses { position: relative; overflow: hidden; margin-top: 0; } #myContent li:nth-of-type(1) { background: -webkit-linear-gradient(105deg, #bf3894 0%, #224f90 50%,#012340 100%); background: linear-gradient(165deg, #bf3894 0%, #224f90 50%,#012340 100%); } #myContent li:nth-of-type(2) { background: -webkit-linear-gradient(-70deg, #A6671B 15%, #024c8b 50%,#012340 100%); background: linear-gradient(-25deg, #A6671B 15%, #024c8b 50%,#012340 100%); } #myContent li:nth-of-type(3) { background: -webkit-linear-gradient(-45deg, #a32a19 15%, #c2d18e 66%,#499384 100%); background: linear-gradient(-45deg, #a32a19 15%, #c2d18e 66%,#499384 100%); } #myContent li:nth-of-type(4) { background: -webkit-linear-gradient(115deg, #A6671B 0%,#faf3e5 100%); background: linear-gradient(-25deg, #A6671B 0%,#faf3e5 100%); } #myContent li:nth-of-type(5) { background: -webkit-linear-gradient(115deg, #CFF09E 0%,#A8DBA8 20%,#79BD9A 40%,#3B8686 60%,#0B486B 100%); background: linear-gradient(115deg, #CFF09E 0%,#A8DBA8 20%,#79BD9A 40%,#3B8686 60%,#0B486B 100%); } #myContent li:nth-of-type(6) { background: -webkit-linear-gradient(115deg, #E1D1B7 0%,#F6E8CB 20%,#B5E1C8 40%,#85B9A3 60%,#322A1D 100%); background: linear-gradient(115deg, #E1D1B7 0%,#F6E8CB 20%,#B5E1C8 40%,#85B9A3 60%,#322A1D 100%); } div.effect-moses h2, div.effect-moses p { padding: 5px; width: 100%; height: 50%; border: none; } div.effect-moses h2 { font-family: 'Open sans', sans-serif; font-weight: 400; padding: 5px; width: 100%; opacity: 0; font-size: 36pt; text-align: center; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(0,25%,0); transform: translate3d(0,25%,0); } div.effect-moses p { float: right; padding: 5px; text-align: center; opacity: 0; -webkit-transition: opacity 0.35s, -webkit-transform 0.35s; transition: opacity 0.35s, transform 0.35s; -webkit-transform: translate3d(0,25%,0); transform: translate3d(0,25%,0); } div.effect-moses:hover h2 { -webkit-transform: translate3d(0,50%,0); transform: translate3d(0,50%,0); opacity: 1; } div.effect-moses:hover p { -webkit-transform: translate3d(0,50%,0); transform: translate3d(0,50%,0); opacity: 1; } #myContent img{ display: block; width: 100%; opacity: 0.95; -webkit-transition: opacity 0.35s; transition: opacity 0.35s; } #myContent div.effect-moses:hover img { opacity: 0.3; } @media only screen and (max-width : 1199px), only screen and (max-device-width : 1199px){ #myContent { -moz-column-count: 2; -moz-column-gap: 0px; -webkit-column-count: 2; -webkit-column-gap: 0px; column-count: 2; column-gap: 0px; width: 100%; } } @media only screen and (max-width : 999px), only screen and (max-device-width : 999px){ #myContent { -moz-column-count: 1; -moz-column-gap: 0px; -webkit-column-count: 1; -webkit-column-gap: 0px; column-count: 1; column-gap: 0px; width: 100%; } } @media only screen and (max-width : 799px), only screen and (max-device-width : 799px){ #myContent { -moz-column-count: 1; -moz-column-gap: 0px; -webkit-column-count: 1; -webkit-column-gap: 0px; column-count: 1; column-gap: 0px; width: 100%; } } @media only screen and (max-width : 599px), only screen and (max-device-width : 599px){ #myContent { -moz-column-count: 1; -moz-column-gap: 0px; -webkit-column-count: 1; -webkit-column-gap: 0px; column-count: 1; column-gap: 0px; width: 100%; } } /* Contact Section */ #bg-3 { height: 100vh; padding-bottom: 10vh; background-image: url(/test/img/bg-3-2.jpg); background-size: cover; background-repeat: no-repeat; background-position: 50% 75%; margin-top: -10vh; display: table; padding-bottom: 30vh; } #bg-3 .container { max-width: 400px; width: 100%; margin: 0 auto; position: relative; } #contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea, #contact button[type="submit"] { font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif; } #contact { background: #F9F9F9; padding: 25px; margin: 150px 0; box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24); } #contact h3 { display: block; font-size: 30px; font-weight: 300; margin-bottom: 10px; } #contact h4 { margin: 5px 0 15px; display: block; font-size: 13px; font-weight: 400; } fieldset { border: medium none !important; margin: 0 0 10px; min-width: 100%; padding: 0; width: 100%; } #contact input[type="text"], #contact input[type="email"], #contact input[type="tel"], #contact input[type="url"], #contact textarea { width: 100%; border: 1px solid #ccc; background: #FFF; margin: 0 0 5px; padding: 10px; } #contact input[type="text"]:hover, #contact input[type="email"]:hover, #contact input[type="tel"]:hover, #contact input[type="url"]:hover, #contact textarea:hover { -webkit-transition: border-color 0.3s ease-in-out; -moz-transition: border-color 0.3s ease-in-out; transition: border-color 0.3s ease-in-out; border: 1px solid #aaa; } #contact textarea { height: 100px; max-width: 100%; resize: none; } #contact button[type="submit"] { cursor: pointer; width: 100%; border: none; background: #4CAF50; color: #FFF; margin: 0 0 5px; padding: 10px; font-size: 15px; } #contact button[type="submit"]:hover { background: #43A047; -webkit-transition: background 0.3s ease-in-out; -moz-transition: background 0.3s ease-in-out; transition: background-color 0.3s ease-in-out; } #contact button[type="submit"]:active { box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5); } .copyright { text-align: center; } #contact input:focus, #contact textarea:focus { outline: 0; border: 1px solid #aaa; } ::-webkit-input-placeholder { color: #888; } :-moz-placeholder { color: #888; } ::-moz-placeholder { color: #888; } :-ms-input-placeholder { color: #888; } .result { background-color: #f2f2f2; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12); box-sizing: border-box; padding: 20px; font-family: 'Open sans', sans-serif; text-align: center; font-weight: 400; } .hidden { display: none; } /* Footer */ .footer-distributed{ background-color: #f2f2f2; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12); box-sizing: border-box; width: 100%; text-align: left; font: bold 16px sans-serif; padding: 55px 50px; margin-top: -36vh; } .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right{ display: inline-block; vertical-align: top; } /* Footer left */ .footer-distributed .footer-left{ width: 40%; } /* The company logo */ .footer-distributed h3{ color: #333; font: normal 36px 'Cookie', cursive; margin: 0; } /* Footer links */ .footer-distributed .footer-links{ color: #333; margin: 20px 0 12px; padding: 0; } .footer-distributed .footer-links a{ display:inline-block; line-height: 1.8; text-decoration: none; color: inherit; } .footer-distributed .footer-company-name{ color: #8f9296; font-size: 14px; font-weight: normal; margin: 0; } /* Footer Center */ .footer-distributed .footer-center{ width: 35%; } .footer-distributed .footer-center i{ background-color: #f2f2f2; color: #333; font-size: 25px; width: 38px; height: 38px; border-radius: 50%; text-align: center; line-height: 42px; margin: 10px 15px; vertical-align: middle; } .footer-distributed .footer-center i.fa-envelope{ font-size: 17px; line-height: 38px; } .footer-distributed .footer-center p{ display: inline-block; color: #333; vertical-align: middle; margin:0; } .footer-distributed .footer-center p span{ display:block; font-weight: normal; font-size:14px; line-height:2; } .footer-distributed .footer-center p a{ color: #5383d3; text-decoration: none;; } /* Footer Right */ .footer-distributed .footer-right{ width: 20%; } .footer-distributed .footer-company-about{ line-height: 20px; color: #92999f; font-size: 11px; font-weight: normal; margin: 0; } .footer-distributed .footer-company-about span{ display: block; color: #333; font-size: 14px; font-weight: bold; margin-bottom: 20px; } .footer-distributed .footer-icons{ margin-top: 25px; } .footer-distributed .footer-icons a{ display: inline-block; width: 35px; height: 35px; cursor: pointer; background-color: #f2f2f2; border-radius: 2px; font-size: 20px; color: #333; text-align: center; line-height: 35px; margin-right: 3px; margin-bottom: 5px; } /* If you don't want the footer to be responsive, remove these media queries */ @media (max-width: 880px) { .footer-distributed{ font: bold 14px sans-serif; } .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right{ display: block; width: 100%; margin-bottom: 40px; text-align: center; } .footer-distributed .footer-center i{ margin-left: 0; } } @media only screen and (max-width: 599px) { .navbar { height: auto; } .navbar-brand { opacity: 0; } #logo { display: none; } .icon-bar { background-color: #012340; } .featured { margin-top: -5vh; } }
0.291687
0.059702
@charset "UTF-8"; * { padding: 0; margin: 0; font-family: 'Roboto', sans-serif; text-decoration: none; -webkit-box-sizing: border-box; box-sizing: border-box; } .notification-panel { padding: 1rem; background: #e5e5e5; position: fixed; z-index: 2; top: 0; left: 0; -webkit-transition: top 400ms ease-in-out; transition: top 400ms ease-in-out; width: 100%; -webkit-box-shadow: 1px 0px 5px grey; box-shadow: 1px 0px 5px grey; } .notification-panel-content { max-width: 720px; margin: 0 auto; display: -webkit-box; display: -ms-flexbox; display: flex; color: #4e4e4e; } @media (max-width: 665px) { .notification-panel-content { display: -ms-grid; display: grid; width: 100%; font-size: 0.8rem; } } @media (max-width: 480px) { .notification-panel-content { width: 100%; font-size: 0.8rem; display: -ms-grid; display: grid; } } .notification-panel-content button { width: 100px; padding: 0.5rem 1rem; border: none; border-radius: 2px; background: #007bc1; color: #fff; margin-left: 1rem; font-size: 0.9rem; cursor: pointer; } @media (max-width: 665px) { .notification-panel-content button { margin-left: 0; margin-top: 1rem; width: 80px; } } @media (max-width: 480px) { .notification-panel-content button { margin-left: 0; margin-top: 1rem; width: 80px; } } .body-container { max-width: 1366px; margin: 0 auto; position: relative; top: 70px; -webkit-transition: top 400ms ease-in-out; transition: top 400ms ease-in-out; } @media (max-width: 665px) { .body-container { top: 110px; } } @media (max-width: 360px) { .body-container { top: 126px; } } .body-container .page-header { width: 100%; position: relative; } .body-container .page-header img { width: 100%; height: auto; vertical-align: middle; } @media (max-width: 665px) { .body-container .page-header img { height: 400px; width: 100%; -o-object-fit: cover; object-fit: cover; } } .body-container .page-header .page-header-blue { position: absolute; top: 0; left: 0; background: rgba(0, 112, 255, 0.4); width: 100%; height: 100%; } .body-container .page-header .logo { position: absolute; top: 1rem; left: 1rem; width: 30px; height: auto; } .body-container .page-header .hero-shot { position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); text-align: center; color: #fff; } @media (max-width: 960px) { .body-container .page-header .hero-shot { width: 60%; } } @media (max-width: 480px) { .body-container .page-header .hero-shot { width: 62%; } } .body-container .page-header .hero-shot h2 { font-weight: 300; font-size: 3rem; margin-bottom: 1rem; } @media (max-width: 665px) { .body-container .page-header .hero-shot h2 { font-size: 2rem; } } @media (max-width: 480px) { .body-container .page-header .hero-shot h2 { font-size: 1.5rem; } } .body-container .page-header .hero-shot h3 { font-size: 1.5rem; margin-bottom: 10px; } @media (max-width: 665px) { .body-container .page-header .hero-shot h3 { font-size: 1rem; } } .body-container .page-header .hero-shot p { font-size: 1.2rem; margin-bottom: 10px; } @media (max-width: 665px) { .body-container .page-header .hero-shot p { font-size: 1rem; } } .body-container .page-header .hero-shot button { border: 1px solid #fff; border-radius: 2px; padding: 0.5rem 1rem; background: none; color: #fff; font-size: 1rem; margin-top: 0.5rem; cursor: pointer; } .body-container .page-header .hero-shot button:hover { background: #fff; color: #007bc1; } .body-container .highlight-panel { padding: 3rem 2rem; background: #e5e5e5; } .body-container .highlight-panel h3 { text-align: center; font-weight: 300; font-size: 2rem; color: #4e4e4e; } @media (max-width: 665px) { .body-container .highlight-panel h3 { font-size: 1.5rem; } } .body-container .highlight-panel .paragraph { font-weight: 400; color: grey; width: 550px; margin: 0 auto; text-align: center; line-height: 1.5; margin-top: 1rem; } @media (max-width: 665px) { .body-container .highlight-panel .paragraph { width: auto; } } .body-container .highlight-panel .panel-tiles { margin-top: 3rem; display: -ms-grid; display: grid; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; grid-gap: 2rem; } @media (max-width: 960px) { .body-container .highlight-panel .panel-tiles { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } } @media (max-width: 480px) { .body-container .highlight-panel .panel-tiles { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } } .body-container .highlight-panel .panel-tiles .tiles-item { border: 1px solid #ababab; padding: 1.5rem; } .body-container .highlight-panel .panel-tiles .tiles-item .paragraph-tile { font-weight: 300; color: #4e4e4e; } .body-container .highlight-panel .panel-tiles .tiles-item .paragraph-title { font-weight: 300; color: grey; font-size: 0.9rem; line-height: 1.5; } .body-container .highlight-panel .panel-tiles .tiles-item .tiles-item-title { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-bottom: 1rem; } .body-container .highlight-panel .panel-tiles .tiles-item .tiles-item-title i { font-size: 1.7rem; color: grey; } .body-container footer { padding: 2rem 0; background: #220627; } .body-container footer p { text-align: center; color: #fff; } .newsletter-panel { width: 100%; position: fixed; bottom: -100%; left: 0; z-index: 3; -webkit-transition: bottom 400ms ease-in-out; transition: bottom 400ms ease-in-out; } .newsletter-panel .panel-wrapper { max-width: 1366px; margin: 0 auto; } .newsletter-panel .panel-wrapper .panel-content { max-width: 640px; background: rgba(0, 133, 243, 0.9); position: relative; color: #fff; padding: 1.5rem; } .newsletter-panel .panel-wrapper .panel-content .close { position: absolute; top: 0.5rem; right: 0.5rem; color: #fff; cursor: pointer; } .newsletter-panel .panel-wrapper .panel-content h2 { font-size: 1.3rem; margin-bottom: 1rem; } .newsletter-panel .panel-wrapper .panel-content p { font-weight: 300; line-height: 1.5; } .newsletter-panel .panel-wrapper .panel-content form { margin-top: 1rem; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } @media (max-width: 480px) { .newsletter-panel .panel-wrapper .panel-content form { display: block; width: 100%; } } .newsletter-panel .panel-wrapper .panel-content form input { width: 100%; padding: 0.5rem; border: none; font-size: 0.9rem; } .newsletter-panel .panel-wrapper .panel-content form button { margin-left: 1rem; width: 150px; padding: 0.5rem 0; border: none; color: #fff; border-radius: 3px; background: #ff8000; font-weight: bold; cursor: pointer; font-size: 0.9rem; } @media (max-width: 480px) { .newsletter-panel .panel-wrapper .panel-content form button { margin-left: 0; width: 100%; margin-top: 1rem; } } .newsletter-panel .panel-wrapper .panel-content form button:hover { background: ​ #cc6600; } /*# sourceMappingURL=main.css.map */
main.css
@charset "UTF-8"; * { padding: 0; margin: 0; font-family: 'Roboto', sans-serif; text-decoration: none; -webkit-box-sizing: border-box; box-sizing: border-box; } .notification-panel { padding: 1rem; background: #e5e5e5; position: fixed; z-index: 2; top: 0; left: 0; -webkit-transition: top 400ms ease-in-out; transition: top 400ms ease-in-out; width: 100%; -webkit-box-shadow: 1px 0px 5px grey; box-shadow: 1px 0px 5px grey; } .notification-panel-content { max-width: 720px; margin: 0 auto; display: -webkit-box; display: -ms-flexbox; display: flex; color: #4e4e4e; } @media (max-width: 665px) { .notification-panel-content { display: -ms-grid; display: grid; width: 100%; font-size: 0.8rem; } } @media (max-width: 480px) { .notification-panel-content { width: 100%; font-size: 0.8rem; display: -ms-grid; display: grid; } } .notification-panel-content button { width: 100px; padding: 0.5rem 1rem; border: none; border-radius: 2px; background: #007bc1; color: #fff; margin-left: 1rem; font-size: 0.9rem; cursor: pointer; } @media (max-width: 665px) { .notification-panel-content button { margin-left: 0; margin-top: 1rem; width: 80px; } } @media (max-width: 480px) { .notification-panel-content button { margin-left: 0; margin-top: 1rem; width: 80px; } } .body-container { max-width: 1366px; margin: 0 auto; position: relative; top: 70px; -webkit-transition: top 400ms ease-in-out; transition: top 400ms ease-in-out; } @media (max-width: 665px) { .body-container { top: 110px; } } @media (max-width: 360px) { .body-container { top: 126px; } } .body-container .page-header { width: 100%; position: relative; } .body-container .page-header img { width: 100%; height: auto; vertical-align: middle; } @media (max-width: 665px) { .body-container .page-header img { height: 400px; width: 100%; -o-object-fit: cover; object-fit: cover; } } .body-container .page-header .page-header-blue { position: absolute; top: 0; left: 0; background: rgba(0, 112, 255, 0.4); width: 100%; height: 100%; } .body-container .page-header .logo { position: absolute; top: 1rem; left: 1rem; width: 30px; height: auto; } .body-container .page-header .hero-shot { position: absolute; top: 50%; left: 50%; -webkit-transform: translate(-50%, -50%); transform: translate(-50%, -50%); text-align: center; color: #fff; } @media (max-width: 960px) { .body-container .page-header .hero-shot { width: 60%; } } @media (max-width: 480px) { .body-container .page-header .hero-shot { width: 62%; } } .body-container .page-header .hero-shot h2 { font-weight: 300; font-size: 3rem; margin-bottom: 1rem; } @media (max-width: 665px) { .body-container .page-header .hero-shot h2 { font-size: 2rem; } } @media (max-width: 480px) { .body-container .page-header .hero-shot h2 { font-size: 1.5rem; } } .body-container .page-header .hero-shot h3 { font-size: 1.5rem; margin-bottom: 10px; } @media (max-width: 665px) { .body-container .page-header .hero-shot h3 { font-size: 1rem; } } .body-container .page-header .hero-shot p { font-size: 1.2rem; margin-bottom: 10px; } @media (max-width: 665px) { .body-container .page-header .hero-shot p { font-size: 1rem; } } .body-container .page-header .hero-shot button { border: 1px solid #fff; border-radius: 2px; padding: 0.5rem 1rem; background: none; color: #fff; font-size: 1rem; margin-top: 0.5rem; cursor: pointer; } .body-container .page-header .hero-shot button:hover { background: #fff; color: #007bc1; } .body-container .highlight-panel { padding: 3rem 2rem; background: #e5e5e5; } .body-container .highlight-panel h3 { text-align: center; font-weight: 300; font-size: 2rem; color: #4e4e4e; } @media (max-width: 665px) { .body-container .highlight-panel h3 { font-size: 1.5rem; } } .body-container .highlight-panel .paragraph { font-weight: 400; color: grey; width: 550px; margin: 0 auto; text-align: center; line-height: 1.5; margin-top: 1rem; } @media (max-width: 665px) { .body-container .highlight-panel .paragraph { width: auto; } } .body-container .highlight-panel .panel-tiles { margin-top: 3rem; display: -ms-grid; display: grid; -ms-grid-columns: 1fr 1fr 1fr; grid-template-columns: 1fr 1fr 1fr; grid-gap: 2rem; } @media (max-width: 960px) { .body-container .highlight-panel .panel-tiles { -ms-grid-columns: 1fr 1fr; grid-template-columns: 1fr 1fr; } } @media (max-width: 480px) { .body-container .highlight-panel .panel-tiles { -ms-grid-columns: 1fr; grid-template-columns: 1fr; } } .body-container .highlight-panel .panel-tiles .tiles-item { border: 1px solid #ababab; padding: 1.5rem; } .body-container .highlight-panel .panel-tiles .tiles-item .paragraph-tile { font-weight: 300; color: #4e4e4e; } .body-container .highlight-panel .panel-tiles .tiles-item .paragraph-title { font-weight: 300; color: grey; font-size: 0.9rem; line-height: 1.5; } .body-container .highlight-panel .panel-tiles .tiles-item .tiles-item-title { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-bottom: 1rem; } .body-container .highlight-panel .panel-tiles .tiles-item .tiles-item-title i { font-size: 1.7rem; color: grey; } .body-container footer { padding: 2rem 0; background: #220627; } .body-container footer p { text-align: center; color: #fff; } .newsletter-panel { width: 100%; position: fixed; bottom: -100%; left: 0; z-index: 3; -webkit-transition: bottom 400ms ease-in-out; transition: bottom 400ms ease-in-out; } .newsletter-panel .panel-wrapper { max-width: 1366px; margin: 0 auto; } .newsletter-panel .panel-wrapper .panel-content { max-width: 640px; background: rgba(0, 133, 243, 0.9); position: relative; color: #fff; padding: 1.5rem; } .newsletter-panel .panel-wrapper .panel-content .close { position: absolute; top: 0.5rem; right: 0.5rem; color: #fff; cursor: pointer; } .newsletter-panel .panel-wrapper .panel-content h2 { font-size: 1.3rem; margin-bottom: 1rem; } .newsletter-panel .panel-wrapper .panel-content p { font-weight: 300; line-height: 1.5; } .newsletter-panel .panel-wrapper .panel-content form { margin-top: 1rem; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } @media (max-width: 480px) { .newsletter-panel .panel-wrapper .panel-content form { display: block; width: 100%; } } .newsletter-panel .panel-wrapper .panel-content form input { width: 100%; padding: 0.5rem; border: none; font-size: 0.9rem; } .newsletter-panel .panel-wrapper .panel-content form button { margin-left: 1rem; width: 150px; padding: 0.5rem 0; border: none; color: #fff; border-radius: 3px; background: #ff8000; font-weight: bold; cursor: pointer; font-size: 0.9rem; } @media (max-width: 480px) { .newsletter-panel .panel-wrapper .panel-content form button { margin-left: 0; width: 100%; margin-top: 1rem; } } .newsletter-panel .panel-wrapper .panel-content form button:hover { background: ​ #cc6600; } /*# sourceMappingURL=main.css.map */
0.371593
0.049245
#west {border:solid 1px;background:#2c3b41;} #west .layout-panel-west .panel-header{ padding-left:5px; width:220px;border-color: #1e282c;background:#1e282c;color:#777; line-height:25px;;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#1e282c,endColorstr=#1e282c,GradientType=0)} #west .layout-panel-west .panel-header .panel-title{padding-left:20px;color:#b8c7ce;} .label-mes{position:absolute;top:3px;display:none;margin-left:13px;padding:2px 3px;border-radius:3px;text-align:center;font-size:9px;line-height:.9;} .label-success{background-color:#00a65a !important;} #west .tree-icon{color:#fff;} #west .tree-hit{margin-top:8px;} #west .tree-node{padding-left:20px;height:38px;line-height:38px;border-bottom: dashed 0px #565656;} #west .tree-title{ padding-left:4px;color:#fff;} #west .tree-file{overflow:hidden;background: url('');} #west .tree-folder, .tree-folder-open{background: url('');} #west .tree-node-selected{background: #1e282c;} #west .tree-node-hover{background:#1e282c; color: #fff;} #west .tree-node-hover .tree-title{color: #fff;} #west .panel-header{padding-left: 20px;} #west .panel-body{background: #f9fafc;} #west .panel-icon{left: 14px;} #west .panel-title{padding-left:15px;color:#b8c7ce;font-size: 12px; } #west .accordion{border:0px;background: #222d32;} #west .accordion-body {border:0px;background:#2c3b41;} #west .accordion .accordion-header{border-top:solid 1px #2c3b41;border-left:3px #222d32 solid;background: #222d32;color:#fff;} #west .accordion .accordion-header-selected{border-left:3px #dd4b39 solid;background: #222d32;border-bottom:solid 0px #2c3b41;} #west .accordion .accordion-header:hover{border-left:3px #dd4b39 solid;background: #1e282c;color: #fff;} #west .accordion .accordion-header-selected .panel-title{color:#fff;} #west .accordion .accordion-header .panel-title:hover{color: #fff;} #west .layout-split-west{border-right: 3px solid #efefef;} #west .tree-collapsed { display:inline-block; margin-right:0px;background:url(''); color:#fff;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;} #west .tree-collapsed:before{content:"\f0da";} #west .tree-expanded { display:inline-block; margin-right:0px;background:url(''); color:#fff;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;} #west .tree-expanded:before{content:"\f0d7";} #center .tabs-panels{border-bottom: 0px;} #west .panel-header,#west .panel-body{border:0px;} .panel-icon, .panel-tool {margin-top:-6px;} #west .panel-tool a{opacity:0.8;filter:alpha(opacity=20);} #west .panel-tool a:hover{opacity:1;filter:alpha(opacity=100);} #west .accordion-collapse { background: url('../../themes/default/images/accordion_arrows2.png') no-repeat 0 0; } #west .accordion-expand { background: url('../../themes/default/images/accordion_arrows2.png') no-repeat -16px 0; } .accordion-header .accordion-collapse {background: url('../../themes/default/images/accordion_arrows3.png') no-repeat 0 0;} .accordion-header .accordion-expand {background: url('../../themes/default/images/accordion_arrows3.png') no-repeat -16px 0;} .user-image {float: left;margin-top: 10px;margin-right: 10px;width: 30px;border-radius: 50%;} .user-name { float: left;display:block;overflow:hidden;padding-top:0;font-family:'Microsoft YaHei',Arial,Verdana;} .user-header{ padding-top:20px; background:#dd4b39; color:#fff;text-align:center;font-family:'Microsoft YaHei',Arial,Verdana;} .user-header img{width:100px;height:100px;border-radius:50%;} .tabs li.tabs-selected a.tabs-inner{border-bottom-color: #dd4b39;} .banner{width: 100%;height: 50px;background: #dd4b39;color: #fff;} .banner .l-btn-text{/* margin:0px; */} .banner .webname{width: 215px;background:#d73925; text-align:left; padding-left:10px; font-weight:bold; font-size: 20px;line-height: 25px; } .panel-icon, .panel-tool {margin-top:-6px;} #west .panel-tool a{opacity:0.8;filter:alpha(opacity=20);} /*easyui inner*/ .window{padding: 0;border-width: 3px 1px 1px 1px;-webkit-border-radius: 5px;border-radius: 5px;box-shadow:1px 1px 50px rgba(0,0,0,.3);border-top-color: #DD4B39;} .window .window-body{border-width:0px;} .window .window-header .panel-tool{right: 12px;} .window .window-header{border-color: #e7eaec;background:#f9f9f9;} .window .window-header .panel-icon{left: 12px;color: #444;font-weight: normal;font-size: 14px;} .window .window-header .panel-with-icon{padding-left:30px;font-weight:normal;font-size:13px;} .window .window-header .panel-icon, .window .window-header .panel-tool{margin-top:-8px;} .window-proxy-mask, .window-mask{background:#D6D6D6;} .datagrid-row{} .datagrid-row-selected{background: #e7eaec;color: #000;} .datagrid-header-row{padding:0 10px 0 10px;background: #f9f9f9;} .datagrid-row-over, .datagrid-header td.datagrid-header-over{background: #e7eaec;} .datagrid-cell, .datagrid-cell-group, .datagrid-header-rownumber, .datagrid-cell-rownumber{padding:0 7px;text-overflow: ellipsis;} .accordion .accordion-header-selected {background: #e76150;} /*btn*/ .bannerbtn{padding:18px 10px 6px 10px;height:25px;color:#fff;text-decoration:none;line-height:36px;} .bannerbtn:hover{background:#d73925;filter:none;} .endbtndiv{padding:8px 10px 8px 0;border-top:1px solid #f0f0f0;background:#f9f9f9;text-align:right;} .switchbutton-on{background:#eb5f4e;color:#fff;} .switchbutton-off{background:#E1E1E1;color:#000;} /*顶部菜单*/ .bannerMenu{padding:5px;height:40px;color:#fff;text-decoration:none;font-size:18px;line-height:40px;filter:none;} .bannerMenu lable{font-size:24px;} .bannerMenu span{font-size:13px;font-family:'Microsoft YaHei',Arial,Verdana;letter-spacing:1px} #north .topmenu{border-right:1px #d73925 solid;background:#dd4b39;text-align:center} #north .topmenu:hover{background:#d73925;text-align:center} #north .selected{border-right:1px #d73925 solid;background:#d73925;text-align:center} #north .splitborder{width:1px;background:#d73925;}
public/topjui/topjui/themes/default/topjui.red.css
#west {border:solid 1px;background:#2c3b41;} #west .layout-panel-west .panel-header{ padding-left:5px; width:220px;border-color: #1e282c;background:#1e282c;color:#777; line-height:25px;;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#1e282c,endColorstr=#1e282c,GradientType=0)} #west .layout-panel-west .panel-header .panel-title{padding-left:20px;color:#b8c7ce;} .label-mes{position:absolute;top:3px;display:none;margin-left:13px;padding:2px 3px;border-radius:3px;text-align:center;font-size:9px;line-height:.9;} .label-success{background-color:#00a65a !important;} #west .tree-icon{color:#fff;} #west .tree-hit{margin-top:8px;} #west .tree-node{padding-left:20px;height:38px;line-height:38px;border-bottom: dashed 0px #565656;} #west .tree-title{ padding-left:4px;color:#fff;} #west .tree-file{overflow:hidden;background: url('');} #west .tree-folder, .tree-folder-open{background: url('');} #west .tree-node-selected{background: #1e282c;} #west .tree-node-hover{background:#1e282c; color: #fff;} #west .tree-node-hover .tree-title{color: #fff;} #west .panel-header{padding-left: 20px;} #west .panel-body{background: #f9fafc;} #west .panel-icon{left: 14px;} #west .panel-title{padding-left:15px;color:#b8c7ce;font-size: 12px; } #west .accordion{border:0px;background: #222d32;} #west .accordion-body {border:0px;background:#2c3b41;} #west .accordion .accordion-header{border-top:solid 1px #2c3b41;border-left:3px #222d32 solid;background: #222d32;color:#fff;} #west .accordion .accordion-header-selected{border-left:3px #dd4b39 solid;background: #222d32;border-bottom:solid 0px #2c3b41;} #west .accordion .accordion-header:hover{border-left:3px #dd4b39 solid;background: #1e282c;color: #fff;} #west .accordion .accordion-header-selected .panel-title{color:#fff;} #west .accordion .accordion-header .panel-title:hover{color: #fff;} #west .layout-split-west{border-right: 3px solid #efefef;} #west .tree-collapsed { display:inline-block; margin-right:0px;background:url(''); color:#fff;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;} #west .tree-collapsed:before{content:"\f0da";} #west .tree-expanded { display:inline-block; margin-right:0px;background:url(''); color:#fff;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;} #west .tree-expanded:before{content:"\f0d7";} #center .tabs-panels{border-bottom: 0px;} #west .panel-header,#west .panel-body{border:0px;} .panel-icon, .panel-tool {margin-top:-6px;} #west .panel-tool a{opacity:0.8;filter:alpha(opacity=20);} #west .panel-tool a:hover{opacity:1;filter:alpha(opacity=100);} #west .accordion-collapse { background: url('../../themes/default/images/accordion_arrows2.png') no-repeat 0 0; } #west .accordion-expand { background: url('../../themes/default/images/accordion_arrows2.png') no-repeat -16px 0; } .accordion-header .accordion-collapse {background: url('../../themes/default/images/accordion_arrows3.png') no-repeat 0 0;} .accordion-header .accordion-expand {background: url('../../themes/default/images/accordion_arrows3.png') no-repeat -16px 0;} .user-image {float: left;margin-top: 10px;margin-right: 10px;width: 30px;border-radius: 50%;} .user-name { float: left;display:block;overflow:hidden;padding-top:0;font-family:'Microsoft YaHei',Arial,Verdana;} .user-header{ padding-top:20px; background:#dd4b39; color:#fff;text-align:center;font-family:'Microsoft YaHei',Arial,Verdana;} .user-header img{width:100px;height:100px;border-radius:50%;} .tabs li.tabs-selected a.tabs-inner{border-bottom-color: #dd4b39;} .banner{width: 100%;height: 50px;background: #dd4b39;color: #fff;} .banner .l-btn-text{/* margin:0px; */} .banner .webname{width: 215px;background:#d73925; text-align:left; padding-left:10px; font-weight:bold; font-size: 20px;line-height: 25px; } .panel-icon, .panel-tool {margin-top:-6px;} #west .panel-tool a{opacity:0.8;filter:alpha(opacity=20);} /*easyui inner*/ .window{padding: 0;border-width: 3px 1px 1px 1px;-webkit-border-radius: 5px;border-radius: 5px;box-shadow:1px 1px 50px rgba(0,0,0,.3);border-top-color: #DD4B39;} .window .window-body{border-width:0px;} .window .window-header .panel-tool{right: 12px;} .window .window-header{border-color: #e7eaec;background:#f9f9f9;} .window .window-header .panel-icon{left: 12px;color: #444;font-weight: normal;font-size: 14px;} .window .window-header .panel-with-icon{padding-left:30px;font-weight:normal;font-size:13px;} .window .window-header .panel-icon, .window .window-header .panel-tool{margin-top:-8px;} .window-proxy-mask, .window-mask{background:#D6D6D6;} .datagrid-row{} .datagrid-row-selected{background: #e7eaec;color: #000;} .datagrid-header-row{padding:0 10px 0 10px;background: #f9f9f9;} .datagrid-row-over, .datagrid-header td.datagrid-header-over{background: #e7eaec;} .datagrid-cell, .datagrid-cell-group, .datagrid-header-rownumber, .datagrid-cell-rownumber{padding:0 7px;text-overflow: ellipsis;} .accordion .accordion-header-selected {background: #e76150;} /*btn*/ .bannerbtn{padding:18px 10px 6px 10px;height:25px;color:#fff;text-decoration:none;line-height:36px;} .bannerbtn:hover{background:#d73925;filter:none;} .endbtndiv{padding:8px 10px 8px 0;border-top:1px solid #f0f0f0;background:#f9f9f9;text-align:right;} .switchbutton-on{background:#eb5f4e;color:#fff;} .switchbutton-off{background:#E1E1E1;color:#000;} /*顶部菜单*/ .bannerMenu{padding:5px;height:40px;color:#fff;text-decoration:none;font-size:18px;line-height:40px;filter:none;} .bannerMenu lable{font-size:24px;} .bannerMenu span{font-size:13px;font-family:'Microsoft YaHei',Arial,Verdana;letter-spacing:1px} #north .topmenu{border-right:1px #d73925 solid;background:#dd4b39;text-align:center} #north .topmenu:hover{background:#d73925;text-align:center} #north .selected{border-right:1px #d73925 solid;background:#d73925;text-align:center} #north .splitborder{width:1px;background:#d73925;}
0.246261
0.052887
body { font-size: .875rem; } .feather { width: 16px; height: 16px; vertical-align: text-bottom; } /* * Sidebar */ .sidebar { position: fixed; top: 0; bottom: 0; left: 0; z-index: 100; /* Behind the navbar */ padding: 48px 0 0; /* Height of navbar */ box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1); } .sidebar-sticky { position: relative; top: 0; height: calc(100vh - 48px); padding-top: .5rem; overflow-x: hidden; overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */ } @supports ((position: -webkit-sticky) or (position: sticky)) { .sidebar-sticky { position: -webkit-sticky; position: sticky; } } .sidebar .nav-link { font-weight: 500; color: #333; } .sidebar .nav-link .feather { margin-right: 4px; color: #999; } .sidebar .nav-link.active { color: #007bff; } .sidebar .nav-link:hover .feather, .sidebar .nav-link.active .feather { color: inherit; } .sidebar-heading { font-size: .75rem; text-transform: uppercase; } /* * Content */ [role="main"] { padding-top: 48px; /* Space for fixed navbar */ } /* * Navbar */ .navbar-brand { padding-top: .75rem; padding-bottom: .75rem; font-size: 1rem; background-color: rgba(0, 0, 0, .25); box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25); } .navbar .form-control { padding: .75rem 1rem; border-width: 0; border-radius: 0; } .form-control-dark { color: #fff; background-color: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .1); } .form-control-dark:focus { border-color: transparent; box-shadow: 0 0 0 3px rgba(255, 255, 255, .25); } table { background-color: white; border-collapse: collapse; border-radius: 5px; overflow: hidden; } .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th { border: 0; vertical-align: middle; } th{ height: 40px; } th, .td-first{ background-color: #343a40; color: white; } td{ background-color: white; } .values-tables, th{ border-bottom: 1px solid #ddd; } .td-first, .th{ border-bottom: 1px solid #343a40; } /* teste */ /* Button used to open the contact form - fixed at the bottom of the page */ .open-button { background-color: #555; color: white; padding: 16px 20px; border: none; cursor: pointer; opacity: 0.8; position: fixed; bottom: 23px; right: 28px; width: 280px; } /* The popup form - hidden by default */ .form-popup { display: none; position: fixed; bottom: 0; right: 15px; border: 3px solid #f1f1f1; z-index: 9; } /* Add styles to the form container */ .form-container { max-width: 300px; padding: 10px; background-color: white; } /* Full-width input fields */ .form-container input[type=text], .form-container input[type=password] { width: 100%; padding: 15px; margin: 5px 0 22px 0; border: none; background: #f1f1f1; } /* When the inputs get focus, do something */ .form-container input[type=text]:focus, .form-container input[type=password]:focus { background-color: #ddd; outline: none; } /* Set a style for the submit/login button */ .form-container .btn { background-color: #4CAF50; color: white; padding: 16px 20px; border: none; cursor: pointer; width: 100%; margin-bottom:10px; opacity: 0.8; } /* Add a red background color to the cancel button */ .form-container .cancel { background-color: red; } /* Add some hover effects to buttons */ .form-container .btn:hover, .open-button:hover { opacity: 1; }
static/dashboard.css
body { font-size: .875rem; } .feather { width: 16px; height: 16px; vertical-align: text-bottom; } /* * Sidebar */ .sidebar { position: fixed; top: 0; bottom: 0; left: 0; z-index: 100; /* Behind the navbar */ padding: 48px 0 0; /* Height of navbar */ box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1); } .sidebar-sticky { position: relative; top: 0; height: calc(100vh - 48px); padding-top: .5rem; overflow-x: hidden; overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */ } @supports ((position: -webkit-sticky) or (position: sticky)) { .sidebar-sticky { position: -webkit-sticky; position: sticky; } } .sidebar .nav-link { font-weight: 500; color: #333; } .sidebar .nav-link .feather { margin-right: 4px; color: #999; } .sidebar .nav-link.active { color: #007bff; } .sidebar .nav-link:hover .feather, .sidebar .nav-link.active .feather { color: inherit; } .sidebar-heading { font-size: .75rem; text-transform: uppercase; } /* * Content */ [role="main"] { padding-top: 48px; /* Space for fixed navbar */ } /* * Navbar */ .navbar-brand { padding-top: .75rem; padding-bottom: .75rem; font-size: 1rem; background-color: rgba(0, 0, 0, .25); box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25); } .navbar .form-control { padding: .75rem 1rem; border-width: 0; border-radius: 0; } .form-control-dark { color: #fff; background-color: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .1); } .form-control-dark:focus { border-color: transparent; box-shadow: 0 0 0 3px rgba(255, 255, 255, .25); } table { background-color: white; border-collapse: collapse; border-radius: 5px; overflow: hidden; } .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th { border: 0; vertical-align: middle; } th{ height: 40px; } th, .td-first{ background-color: #343a40; color: white; } td{ background-color: white; } .values-tables, th{ border-bottom: 1px solid #ddd; } .td-first, .th{ border-bottom: 1px solid #343a40; } /* teste */ /* Button used to open the contact form - fixed at the bottom of the page */ .open-button { background-color: #555; color: white; padding: 16px 20px; border: none; cursor: pointer; opacity: 0.8; position: fixed; bottom: 23px; right: 28px; width: 280px; } /* The popup form - hidden by default */ .form-popup { display: none; position: fixed; bottom: 0; right: 15px; border: 3px solid #f1f1f1; z-index: 9; } /* Add styles to the form container */ .form-container { max-width: 300px; padding: 10px; background-color: white; } /* Full-width input fields */ .form-container input[type=text], .form-container input[type=password] { width: 100%; padding: 15px; margin: 5px 0 22px 0; border: none; background: #f1f1f1; } /* When the inputs get focus, do something */ .form-container input[type=text]:focus, .form-container input[type=password]:focus { background-color: #ddd; outline: none; } /* Set a style for the submit/login button */ .form-container .btn { background-color: #4CAF50; color: white; padding: 16px 20px; border: none; cursor: pointer; width: 100%; margin-bottom:10px; opacity: 0.8; } /* Add a red background color to the cancel button */ .form-container .cancel { background-color: red; } /* Add some hover effects to buttons */ .form-container .btn:hover, .open-button:hover { opacity: 1; }
0.383757
0.068164
* { margin: 0; padding: 0; } html, body { height: 100%; } body { background-color: #222222; color: #dddddd; font-family: 'Noto Sans', helvetica, arial, clean, sans-serif; font-size: 13.34px; *font-size: small; text-align: center; } h1, h2, h3, h4, h5, h6 { font-size: 100%; } h1 { margin-bottom: 1em; } p { margin: 1em 0; } a { color: #33dd00; border: none; } a:visited { color: #44ee00; } a:hover { color: #96ff6f; } b { color: #cc0000; font-weight: bold; } table { font-size: inherit; font: 100%; } hr { height: 0; border: 0; border-bottom: 1px dashed #b5e853; color: #b5e853; } /*****************************************************************************/ /* /* Home /* /*****************************************************************************/ ul.posts { list-style-type: none; margin-bottom: 2em; } ul.posts li { line-height: 1.75em; } ul.posts span { color: #a7a7a7; font-family: "Roboto Mono", monospace; font-size: 80%; } /*****************************************************************************/ /* /* Site /* /*****************************************************************************/ .site { font-size: 110%; text-align: justify; width: 60em; margin: 3em auto 2em auto; line-height: 1.5em; } .title { color: #a00; font-weight: bold; margin-bottom: 2em; } .site .title a { color: #a00; text-decoration: none; } .site .title a:hover { color: black; } .site .title a.extra { color: #aaa; text-decoration: none; margin-left: 1em; } .site .title a.extra:hover { color: black; } .site .meta { color: #aaa; } .site .footer { font-size: 80%; color: #888; border-top: 2px dashed #459311; margin-top: 2em; overflow: hidden; } .site .footer .contact { float: left; margin-right: 3em; } .site .footer .contact a { color: #459412; } .site .footer .rss { margin-top: 1.1em; margin-right: -.2em; float: right; } .site .footer .rss img { border: 0; } /*****************************************************************************/ /* /* Posts /* /*****************************************************************************/ #post { } /* standard */ #post pre { border: 1px solid #888; background-color: #3a3a3a; padding: 0 .4em; } .post-title { color: #43e702; font-weight: bold; font-size: 180%; margin-bottom: 0.5em; } h3 { font-size: 140%; color: #43e702; margin-top: 1.5em; } .post-date { color: #a7a7a7; font-style: italic; font-size: 80%; margin-bottom: 0.2em; } #post ul, #post ol { margin-left: 1.35em; } #post code { border: 1px solid #888; background-color: #3a3a3a; padding: 0 .2em; } #post pre code { border: none; } #post img { max-width: 60em; padding: 1em 0; } /* terminal */ #post pre.terminal { border: 1px solid black; background-color: #333; color: white; } #post pre.terminal code { background-color: #333; } #related { margin-top: 2em; } #related h2 { margin-bottom: 1em; }
css/screen.css
* { margin: 0; padding: 0; } html, body { height: 100%; } body { background-color: #222222; color: #dddddd; font-family: 'Noto Sans', helvetica, arial, clean, sans-serif; font-size: 13.34px; *font-size: small; text-align: center; } h1, h2, h3, h4, h5, h6 { font-size: 100%; } h1 { margin-bottom: 1em; } p { margin: 1em 0; } a { color: #33dd00; border: none; } a:visited { color: #44ee00; } a:hover { color: #96ff6f; } b { color: #cc0000; font-weight: bold; } table { font-size: inherit; font: 100%; } hr { height: 0; border: 0; border-bottom: 1px dashed #b5e853; color: #b5e853; } /*****************************************************************************/ /* /* Home /* /*****************************************************************************/ ul.posts { list-style-type: none; margin-bottom: 2em; } ul.posts li { line-height: 1.75em; } ul.posts span { color: #a7a7a7; font-family: "Roboto Mono", monospace; font-size: 80%; } /*****************************************************************************/ /* /* Site /* /*****************************************************************************/ .site { font-size: 110%; text-align: justify; width: 60em; margin: 3em auto 2em auto; line-height: 1.5em; } .title { color: #a00; font-weight: bold; margin-bottom: 2em; } .site .title a { color: #a00; text-decoration: none; } .site .title a:hover { color: black; } .site .title a.extra { color: #aaa; text-decoration: none; margin-left: 1em; } .site .title a.extra:hover { color: black; } .site .meta { color: #aaa; } .site .footer { font-size: 80%; color: #888; border-top: 2px dashed #459311; margin-top: 2em; overflow: hidden; } .site .footer .contact { float: left; margin-right: 3em; } .site .footer .contact a { color: #459412; } .site .footer .rss { margin-top: 1.1em; margin-right: -.2em; float: right; } .site .footer .rss img { border: 0; } /*****************************************************************************/ /* /* Posts /* /*****************************************************************************/ #post { } /* standard */ #post pre { border: 1px solid #888; background-color: #3a3a3a; padding: 0 .4em; } .post-title { color: #43e702; font-weight: bold; font-size: 180%; margin-bottom: 0.5em; } h3 { font-size: 140%; color: #43e702; margin-top: 1.5em; } .post-date { color: #a7a7a7; font-style: italic; font-size: 80%; margin-bottom: 0.2em; } #post ul, #post ol { margin-left: 1.35em; } #post code { border: 1px solid #888; background-color: #3a3a3a; padding: 0 .2em; } #post pre code { border: none; } #post img { max-width: 60em; padding: 1em 0; } /* terminal */ #post pre.terminal { border: 1px solid black; background-color: #333; color: white; } #post pre.terminal code { background-color: #333; } #related { margin-top: 2em; } #related h2 { margin-bottom: 1em; }
0.466359
0.116111
@import url(https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;900&display=swap); @charset "UTF-8"; /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ /* Document ========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * Render the `main` element consistently in IE. */ main { display: block; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: 0.67em 0; } /* Grouping content ========================================================================== */ /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * Remove the gray background on active links in IE 10. */ a { background-color: transparent; } /** * 1. Remove the bottom border in Chrome 57- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ -webkit-text-decoration: underline dotted; text-decoration: underline dotted; /* 2 */ } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Remove the border on images inside links in IE 10. */ img { border-style: none; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers. * 2. Remove the margin in Firefox and Safari. */ button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. * 1. Show the overflow in Edge. */ button, input { /* 1 */ overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * Correct the inability to style clickable types in iOS and Safari. */ button, [type=button], [type=reset], [type=submit] { -webkit-appearance: button; } /** * Remove the inner border and padding in Firefox. */ button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner { border-style: none; padding: 0; } /** * Restore the focus styles unset by the previous rule. */ button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Correct the padding in Firefox. */ fieldset { padding: 0.35em 0.75em 0.625em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } /** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { vertical-align: baseline; } /** * Remove the default vertical scrollbar in IE 10+. */ textarea { overflow: auto; } /** * 1. Add the correct box sizing in IE 10. * 2. Remove the padding in IE 10. */ [type=checkbox], [type=radio] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type=search] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ } /** * Remove the inner padding in Chrome and Safari on macOS. */ [type=search]::-webkit-search-decoration { -webkit-appearance: none; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /* Interactive ========================================================================== */ /* * Add the correct display in Edge, IE 10+, and Firefox. */ details { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* Misc ========================================================================== */ /** * Add the correct display in IE 10+. */ template { display: none; } /** * Add the correct display in IE 10. */ [hidden] { display: none; } :root { touch-action: pan-x pan-y; height: 100%; } button { padding: 0; } * { box-sizing: border-box; } body { font-family: "Mulish", sans-serif; padding-bottom: 100px; color: #000E33; } a { text-decoration: none; color: #000E33; } main { padding: 0 0 30px 0; } .logo { z-index: 20; font-size: 0; width: 180px; } .logo img { width: 100%; } .header { padding: 30px 0px 30px; } .header__nav { display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 20px; } .header__top { display: flex; align-items: center; justify-content: flex-end; gap: 20px; } .header__top a { color: #899bb5; font-size: 15px; padding: 0 12px; transition: all 0.2s ease-in-out; } .header__top a:hover { color: #DBB42B; } .header__wrap { display: flex; align-items: flex-end; justify-content: space-between; } .header__list { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; } .header__link { padding: 7px 12px; font-size: 20px; font-weight: 600; color: #00195c; text-decoration: none; border-radius: 4px; transition: all 0.2s ease-in-out; } .header__link.active { border-bottom: 1px solid #00195c; color: #fff; background-color: #00195c; } .header__link:hover { background-color: #00195c; color: #fff; } .burger-menu { display: none; } .container { width: 2200px; max-width: 95%; margin: 0 auto; } .row { display: flex; justify-content: flex-start; align-items: flex-start; gap: 20px; margin-bottom: 20px; } .row--3pcs { flex-wrap: wrap; } .row--3pcs .category-block__item, .row--3pcs .block--sm { width: calc(33.3333333333% - 14px) !important; margin-bottom: 40px; } .row--2pcs { flex-wrap: wrap; } .row--2pcs .block--lg { width: 48% !important; margin-bottom: 30px; } .row.feed { justify-content: flex-start; } .row.break { align-items: stretch; } .inset-height { min-height: 340px; } .block { border-radius: 10px; position: relative; background-color: #899bb5; text-decoration: none; color: #00195c; cursor: pointer; } .block:after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(196, 196, 196, 0) 8%, #000E33 60%, #000E33 100%); border-radius: 10px; transition: all 0.2s ease-in-out; z-index: 2; opacity: 0.5; } .block:hover:after { background-color: rgba(27, 27, 27, 0.5); } .block__image { width: 100%; padding-top: 70%; background-size: cover; background-position: 50% 50%; background-repeat: no-repeat; border-radius: 10px; background-color: #899bb5; background-image: url("/public/images/bg.jpg"); opacity: 0; transition: opacity 0.5s ease-in-out; } .block.loaded .block__image { opacity: 1; } .block__title { position: absolute; bottom: 40px; left: 40px; right: 60px; font-size: 35px; line-height: 1.21; font-weight: 700; line-height: 1.21; color: #fff; max-height: 127.05px; -webkit-line-clamp: 3; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; display: -webkit-box; z-index: 3; } .block__badge { position: absolute; left: 0; top: 30px; min-width: 35%; background-color: #fff; padding: 6px 30px; font-size: 18px; font-weight: 700; text-transform: uppercase; z-index: 3; line-height: 1.21; } .block--lg { width: 50%; } .block--sm { width: 33.3333333333%; } .block--sm .block__badge { font-size: 15.66px; padding: 6px 30px; } .block--sm .block__title { font-size: 24px; line-height: 1.21; bottom: 30px; left: 30px; max-height: 87.12px; font-weight: 600; } .feed { gap: 50px; margin: 50px 0; } .feed__item { text-decoration: none; color: #000E33; position: relative; transition: all 0.2s ease-in-out; width: 25%; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; min-height: 123px; gap: 15px; } .feed__item:first-child::after { display: none; } .feed__item:hover { color: #5060EF; } .feed__title { font-size: 20px; line-height: 1.21; display: -webkit-box; max-height: 96.8px; -webkit-line-clamp: 4; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow-y: hidden; font-weight: 300; } .feed__time { font-weight: 700; font-size: 18px; } .promo__btns { display: flex; justify-content: center; align-items: center; } .promo__btn { padding: 16px; background-color: transparent; cursor: pointer; border: 1px solid #00195c; display: block; width: 60px; height: 60px; border-radius: 50%; margin: 0 8px; display: flex; align-items: center; justify-content: center; } .promo__btn svg { fill: #00195c; height: 26px; transition: all 0.2s ease-in-out; } .promo__btn:hover svg { transform: scale(1.15); } .fb-size { width: 1200px; height: 630px; } .clear { color: #F49424; } .clear .weather__temp { color: #F49424; } .clouds, .drizzle, .rain { color: #0237BF; } .clouds .weather__temp, .drizzle .weather__temp, .rain .weather__temp { color: #0237BF; } .snow { color: #2FADE2; } .snow .weather__temp { color: #2FADE2; } .thunderstorm { color: #8719DE; } .thunderstorm .weather__temp { color: #8719DE; } .mist, .ash, .haze, .fog, .dust, .mist, .smoke, .sand, .tornado { color: #5C8AFF; } .mist .weather__temp, .ash .weather__temp, .haze .weather__temp, .fog .weather__temp, .dust .weather__temp, .mist .weather__temp, .smoke .weather__temp, .sand .weather__temp, .tornado .weather__temp { color: #5C8AFF; } .weather { border: 1px solid #00195c; border-radius: 10px; padding: 50px; width: 50%; position: relative; overflow: hidden; background-position: 170% 140%; background-repeat: no-repeat; background-size: 80%; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; } .weather__overlay { width: 100%; height: 100%; position: absolute; top: 0; left: 0; } .weather__badge { background-color: #00195c; padding: 4px 30px; display: flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer; position: absolute; top: 30px; left: 0; } .weather__badge svg { fill: #fff; width: 15px; height: 15px; } .weather__badge span { color: #fff; font-size: 18px; font-weight: 200; } .weather__today { padding-top: 10px; z-index: 2; } .weather__today .weather__temp { font-size: 110px; font-weight: 300; } .weather__today .weather__svg { height: 170px; } .weather__today .weather__info { font-size: 35px; font-weight: 100; line-height: 1; } .weather__today-wrap { display: flex; width: 100%; align-items: center; justify-content: flex-start; gap: 15px; margin-bottom: 20px; } .weather__other { z-index: 2; display: flex; justify-content: space-between; align-items: center; } .weather__other .weather__svg { height: 120px; } .weather__other .weather__info { text-align: center; } .weather__other .weather__data { display: flex; flex-direction: column; align-items: center; justify-content: center; align-items: center; gap: 5px; } .weather__other .weather__temp { font-weight: 600; font-size: 36px; } .weather__other .weather__date { font-size: 22px; } .weather__other .weather__day { font-weight: 700; font-size: 25px; } .quote { border: 1px solid #00195c; border-radius: 10px; color: #00195c; padding: 30px; width: 50%; display: flex; flex-direction: column; align-items: inherit; justify-content: space-between; } .quote__svg { fill: #00195c; width: 30px; height: 30px; margin-bottom: 20px; } .quote__text { font-size: 26px; font-weight: 400; line-height: 1.21; display: block; margin: 0 auto; text-align: center; margin-bottom: 25px; } .quote__author-wrap { width: 100%; margin-top: 20px; display: flex; justify-content: flex-end; align-items: center; } .quote__author { position: relative; font-size: 20px; font-weight: 600; } .quote__author::before { content: ""; position: absolute; left: -35px; top: 50%; display: block; width: 25px; height: 1px; background-color: #00195c; } .joke { width: 50%; padding: 25px; background-color: #F4F4F4; position: relative; border-radius: 10px; display: flex; flex-direction: column; justify-content: space-between; align-items: stretch; } .joke__text { display: block; font-size: 24px; font-weight: 300; text-align: center; margin: 25px 15px 25px 15px; } .joke__title { display: block; font-size: 22px; font-weight: 500; text-align: center; position: relative; } .joke__title:before, .joke__title:after { content: ""; width: 100%; height: 4px; display: block; background-color: #00195c; position: absolute; top: 50%; width: 30%; } .joke__title::before { left: 0; } .joke__title::after { right: 0; } .joke.error-data::before { display: none; } .joke .promo__btns:before, .joke .promo__btns:after { content: ""; width: 100%; height: 4px; display: block; background-color: #00195c; } .joke .promo__btn:nth-last-child(1) { margin-right: 16px; } .joke .promo__btn:nth-last-child(2) { margin-left: 16px; } .currency { width: 50%; padding: 20px; border: 1px solid #00195c; border-radius: 10px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; position: relative; overflow: hidden; background-position: 50% 50%; background-repeat: no-repeat; background-size: 45%; } .currency .horoscope__overlay { opacity: 0.97; } .currency table { border: none; margin: 30px auto 0; width: 75%; z-index: 2; } .currency table td, .currency table th { border: none; text-align: right; } .currency table td span, .currency table th span { font-size: 32px; color: #000E33; } .currency table td svg, .currency table th svg { width: 15px; height: 15px; margin-left: 5px; } .currency table td img, .currency table th img { width: 50%; } .currency table td { padding: 15px 0; text-align: left; } .currency__sum { display: flex; align-items: center; justify-content: flex-end; } .currency__wrap { display: flex; align-items: flex-end; justify-content: center; gap: 20px; margin-bottom: 30px; } .currency__badge { background-color: #00195c; padding: 5px 35px; color: #fff; position: absolute; top: 30px; left: 0; font-size: 18px; z-index: 2; line-height: 1; } .currency__title { font-size: 26px; font-weight: 400; width: 60%; } .currency__name { font-size: 27px; font-weight: 600; color: #00195c; text-align: left !important; padding-left: 10px !important; } .horoscope { width: 50%; display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; padding: 45px 35px; border: 1px solid #00195c; border-radius: 10px; background-size: 50%; background-repeat: no-repeat; background-position: 30% 50%; overflow: hidden; } .horoscope__overlay { background-color: #fff; display: block; border-radius: 10px; width: 200%; height: 200%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; opacity: 0.95; } .horoscope__bg { z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; } .horoscope__name { font-size: 35px; font-weight: 700; text-align: center; margin-bottom: 10px; color: #00195c; z-index: 2; } .horoscope__btn { margin-bottom: 10px; background-color: transparent; border: none; cursor: pointer; z-index: 2; } .horoscope__btn svg { width: 20px; height: 20px; margin-left: 10px; fill: #00195c; } .horoscope__text { z-index: 3; font-size: 22px; text-align: center; display: block; } .horoscope__aside { display: flex; flex-direction: column; align-items: center; justify-content: space-between; z-index: 3; gap: 40px; } .horoscope__aside img { width: 75px; height: 75px; } .horoscope__aside .promo__btns { flex-direction: column; gap: 15px; } .horoscope__aside .promo__btn { margin: 0; } .video { width: 50%; border-radius: 10px; } .video .article__video-wrap { height: 100%; margin: 0; border-radius: 10px; } .video-slider { margin-bottom: 40px; } .video-slider__slide { width: calc(25% - 22.5px) !important; } .video-slider__slide:visited { color: #00195c; } .video-slider__slide:hover .play-btn { transform: translate(-50%, 0) scale(1.2); } .video-slider__img-wrap { width: 100%; height: 210px; position: relative; font-size: 0; border-radius: 10px; background-size: cover; background-position: 50% 50%; background-repeat: no-repeat; background-image: url("/public/images/bg.jpg"); opacity: 0; transition: opacity 0.5s ease-in-out; } .video-slider__img-wrap.loaded { opacity: 1; } .video-slider__title { display: -webkit-box; margin-top: 40px; line-height: 1.21; font-size: 20px; max-height: 72.6px; -webkit-line-clamp: 3; -webkit-box-orient: vertical; text-overflow: ellipsis; font-weight: 400; color: #000E33; padding: 0 7px; } .category-block__wrap { margin-bottom: 30px; } .category-block__item { width: 25% !important; } .category-block__item.swiper-slide { width: calc(25% - 22.5px) !important; } .category-block__badge { background-color: #00195c; padding: 7px 20px 7px 20px; color: #fff; font-size: 15px; font-weight: 300; width: -webkit-fit-content; width: -moz-fit-content; width: fit-content; margin: 25px 0; z-index: 3; } .category-block__name { font-size: 35px; color: #00195c; font-weight: 600; text-transform: uppercase; margin-bottom: 30px; margin-top: 50px; display: block; padding-left: 15px; position: relative; z-index: 3; } .category-block__name:before { content: ""; display: block; width: 10px; height: 10px; border-radius: 50%; background-color: #DBB42B; position: absolute; bottom: 20%; left: 0; } .category-block__img { background-size: cover; background-position: 50% 50%; background-repeat: no-repeat; padding-top: 70%; border-radius: 10px; background-image: url("/public/images/bg.jpg"); position: relative; transition: all 0.5s ease-in-out; opacity: 0; transition: opacity 0.5s ease-in-out; } .category-block__img:after { content: ""; display: block; width: 100%; height: 100%; position: absolute; top: 0; left: 0; border-radius: 10px; background-color: rgba(27, 27, 27, 0.3); transition: all 0.2s ease-in-out; opacity: 0; } .category-block__img:hover:after { opacity: 1; } .category-block__img.loaded { opacity: 1; } .category-block__title { color: #000E33; font-weight: 600; font-size: 20px; max-height: 72.6px; -webkit-line-clamp: 3; -webkit-box-orient: vertical; text-overflow: ellipsis; display: -webkit-box; overflow: hidden; } .play-btn { width: 50px; height: 50px; background-color: #00195c; border-radius: 50%; position: absolute; transform: translate(-50%, 0); border: none; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease-in-out; } .play-btn svg { width: 20px; height: 20px; fill: #fff; pointer-events: none; } .play-btn--slider { left: 50%; bottom: -25px; } .play-btn--news { background-color: #F4F4F4; width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%); } .play-btn--news svg { width: 120px; height: 120px; fill: #00195c; } .play-btn--break { width: 120px !important; height: 120px !important; } .play-btn--break svg { width: 60px !important; height: 60px !important; } .swiper-pagination { bottom: 20px !important; } .swiper-pagination-bullet { width: 20px !important; height: 20px !important; background-color: #fff !important; border: 1px solid #00195c !important; margin: 0 8px !important; } .swiper-pagination-bullet-active { background-color: #00195c !important; } .list { margin: 30px 0; display: flex; align-items: center; justify-content: flex-start; } .list__title { font-weight: 400; display: inline-block; margin: 0 20px 0 0; font-size: 35px; color: #00195c; text-transform: uppercase; } .list__name { background-color: #00195c; color: #fff; font-weight: 300; padding: 8px 20px; text-transform: uppercase; font-size: 18px; } .list__img-wrap { width: 100px; height: 100px; border-radius: 50%; position: relative; overflow: hidden; margin-bottom: 20px; background-size: cover; background-position: 50% 50%; background-repeat: no-repeat; } .list--author { display: flex; align-items: center; justify-content: flex-start; flex-direction: column; font-size: 26px; color: #00195c; font-weight: 400; } .article { padding-bottom: 0px !important; } .article__emotions { display: flex; align-items: center; justify-content: flex-start; gap: 40px; } .article__emotions svg { width: 30px; height: 30px; margin-right: 24px; fill: #00195c; transition: all 0.2s ease-in-out; pointer-events: none; } .article__emotions span { font-size: 24px; color: #00195c; } .article__emotions button { background-color: transparent; border: none; cursor: pointer; } .article__emotions button:hover svg { transform: scale(1.15); } .article__emotions button.disable svg { fill: #899bb5; } .article__emotions button.disable + span { color: #899bb5; } .article__info-date { position: absolute; display: flex; align-items: center; justify-content: center; gap: 10px; } .article__info-date span { font-size: 20px; } .article__info-date svg { fill: #00195c; width: 20px; height: 20px; } .article__emotion { display: flex; align-items: center; justify-content: flex-start; margin: 0 8px; } .notification { font-size: 15px; margin: 0 5px 5px; padding: 15px 15px 15px 20px; color: #F4F4F4 !important; height: -webkit-fit-content !important; height: -moz-fit-content !important; height: fit-content !important; } .notification.success { background: #5060EF; border-left: 5px solid #00195c; } .notification.error { background: #e54d42; border-left: 5px solid #b82e24; } .news-error { display: flex; align-items: center; justify-content: space-between; flex-direction: column; gap: 20px; } .news-error span { color: #899bb5; } .news-error button { background-color: transparent; border: none; cursor: pointer; } .news-error button svg { fill: #899bb5; width: 70px; height: 70px; transition: all 0.5s ease-in-out; } .news-error button:hover svg { transform: rotate(90deg); } .modal { background-color: rgba(59, 70, 102, 0.8); width: 100vw; height: 100vh; position: fixed; left: 0; top: 0; z-index: 10; display: none; } .modal.opened { display: block; } .modal__content { background-color: #fff; padding: 60px 40px 40px 40px; position: fixed; top: 50%; left: 50%; width: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); border-radius: 10px; overflow: hidden; z-index: 15; display: flex; align-items: center; justify-content: space-between; flex-direction: column; gap: 20px; } .modal__message { font-size: 24px; text-align: center; margin-bottom: 15px; } .modal__list { padding: 0; margin: 0; display: grid; gap: 5px; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr); } .modal__list-item { width: -webkit-fit-content; width: -moz-fit-content; width: fit-content; padding: 6px 13px; font-size: 18px; list-style: none; border-radius: 10px; background-color: #fff; color: #00195c; cursor: pointer; } .modal__list-item--active { background-color: #00195c; color: #fff; } .modal__list-item:hover { background-color: #00195c; color: #fff; } .modal__btn { border: 1px solid #00195c; border-radius: 10px; background-color: transparent; font-size: 18px; padding: 10px 25px; color: #00195c; cursor: pointer; } .modal__close { background-color: transparent; border: none; width: 35px; height: 35px; position: absolute; right: 20px; top: 20px; cursor: pointer; } .modal__close svg { width: 100%; height: 100%; fill: #00195c; } .inset-error { display: flex; flex-direction: column; align-items: center; text-align: center; color: #899bb5; margin-top: 40px; } .inset-error span { font-size: 30px; font-weight: 300; } .inset-error svg { width: 50px; height: 50px; stroke: #899bb5; margin-top: 10px; } @media screen and (max-width: 1400px) { .weather { background-position: 180% -200%; } .weather__today .weather__temp { font-size: 100px; } .weather__other .weather__svg { height: 100px; } .weather__other .weather__date { font-size: 20px; } .weather__other .weather__day { font-size: 22px; } .weather__other .weather__temp { font-size: 34px; } .currency table { width: 85%; } } @media screen and (max-width: 1200px) { .weather { background-position: 180% -100%; padding: 30px; } .weather__today .weather__temp { font-size: 90px; } .weather__today .weather__svg { height: 150px; } .weather__other .weather__svg { height: 80px; } .weather__other .weather__date { font-size: 18px; } .weather__other .weather__day { font-size: 20px; } .weather__other .weather__temp { font-size: 32px; } .currency table { width: 90%; } } @media screen and (max-width: 992px) { .inset-height { min-height: 240px; } .logo { margin: 0 auto; width: 160px; } .burger-menu { display: block; } .header { padding: 20px 0; border-bottom: 1px solid #CCD5E5; position: relative; transition: all 0.2s ease-in-out; } .header__top { order: 2; flex-direction: column; } .header__top a { font-size: 20px; } .header__nav { background-color: #fff; width: 100%; transition: all 0.2s ease-in-out; height: 0px; display: none; gap: 50px; } .header__list { gap: 30px; padding: 20px ​0; flex-direction: column; } .header__wrap { flex-direction: column; gap: 40px; } .block--sm .block__title { font-size: 20.88px; bottom: 20px; left: 20px; max-height: 75.7944px; } .block--sm .block__badge { top: 25px; min-width: 45%; font-size: 13.86px; } .block__badge { min-width: 45%; top: 30px; padding: 6px 20px; font-size: 15.66px; } .block__title { font-size: 26.95px; bottom: 30px; left: 30px; max-height: 97.8285px; } .feed { gap: 30px; } .feed__item { min-height: 110px; } .feed__title { font-size: 17.4px; max-height: 84.216px; } .feed__time { font-size: 15.66px; } .promo__btn { padding: 10px; width: 55px; height: 55px; } .promo__btn svg { height: 23px; } .weather { background-position: 180% -160%; } .weather__today-wrap { margin-bottom: 0; } .weather__other .weather__svg { height: 70px; } .weather__other .weather__date { font-size: 14px; } .weather__other .weather__day { font-size: 18px; } .weather__other .weather__temp { font-size: 30px; } .quote__text { font-size: 22.62px; } .quote__svg { margin-bottom: 20px; } .quote__author { font-size: 17.4px; } .joke__text { font-size: 22.62px; } .horoscope { flex-direction: column; background-position: 50% 80%; } .horoscope__text { font-size: 19.14px; } .horoscope__bg { order: 2; } .horoscope__aside { flex-direction: row; width: 100%; } .horoscope__aside .promo__btns { flex-direction: row; } .currency table { width: 100%; } .currency table td span { font-size: 30px; } .play-btn--news { width: 240px; height: 240px; } .play-btn--news svg { width: 100px; height: 100px; } .play-btn--break { width: 120px !important; height: 120px !important; } .play-btn--break svg { width: 60px !important; height: 60px !important; } .modal__content { width: 60%; } .inset-error span { font-size: 26px; } .inset-error svg { width: 40px; height: 40px; } } @media screen and (max-width: 768px) { .row { gap: 10px; margin-bottom: 10px; } .row--3pcs .block--sm { width: calc(50% - 10px) !important; margin-bottom: 20px; } .row--3pcs .category-block__item { width: calc(33.3333333333% - 7px) !important; } .row--2pcs .block--lg { width: 100% !important; margin-bottom: 20px; } .row.break { gap: 10px; } .feed { flex-direction: column; margin: 30px 0; gap: 20px; } .feed__title { order: 2; margin-bottom: 15px; width: 85%; } .feed__time { width: 15%; } .feed__item { flex-direction: row; justify-content: flex-start; align-items: flex-start; gap: 15px; width: 100%; min-height: unset; } .feed__item:after { left: 0; right: 0; top: -20%; width: 100%; height: 1px; } .block--sm .block__title { font-size: 18.48px; right: 15px; left: 15px; bottom: 15px; max-height: 67.0824px; font-weight: 400; } .block__badge { min-width: 35%; padding: 6px 25px; } .block__title { font-size: 18.48px; bottom: 25px; left: 25px; right: 25px; max-height: 67.0824px; } .video-slider__slide { width: calc(33.3333333333% - 7px) !important; } .video-slider__img-wrap { height: 200px; } .video-slider__title { font-size: 17.4px; max-height: 63.162px; } .category-block__item { width: 250px !important; } .category-block__item.swiper-slide { width: calc(33.3333333333% - 7px) !important; } .category-block__name { font-size: 30.45px; margin-bottom: 20px; margin-top: 40px; } .category-block__badge { padding: 7px 20px 7px 10px; font-size: 13.05px; margin: 17px 0; } .category-block__title { font-size: 17.4px; max-height: 63.162px; } .category-block__slide { width: 35% !important; } .break { flex-direction: column; } .quote, .joke, .horoscope, .video, .currency, .weather { width: 100%; } .video .article__video-wrap { height: 50vh; } .weather { background-position: 180% 160%; } .list { flex-direction: column; align-items: flex-start; } .list__title { font-size: 30.45px; } .list__name { width: -webkit-fit-content; width: -moz-fit-content; width: fit-content; display: block; margin-top: 10px; font-size: 15.66px; } .modal__content { width: 80%; } } @media screen and (max-width: 576px) { .inset-height { min-height: 220px; } .logo { font-size: 30px; padding-left: 10px; width: 140px; } .logo::before { width: 6px; height: 6px; } .header { padding: 20px 0; } .header__link { font-size: 20px; } .row { flex-wrap: wrap; } .row--3pcs .block--sm { width: 100% !important; margin-bottom: 0; } .row--3pcs .category-block__item { width: 100% !important; margin-bottom: 25px; } .row--2pcs .block--lg { margin-bottom: 0; } .block { width: 100%; } .block--lg { width: 100%; } .block--lg .block__title { font-weight: 500; right: 25px; left: 25px; bottom: 25px; overflow: hidden; } .block--lg .block__badge { font-size: 13.86px; padding: 6px 25px; top: 25px; } .block--sm { width: 100%; } .block--sm .block__title { font-weight: 500; right: 25px; left: 25px; bottom: 25px; overflow: hidden; } .block--sm .block__badge { font-size: 13.86px; padding: 6px 25px; top: 25px; min-width: 35%; } .feed__title { line-height: 1.21; font-size: 15.4px; max-height: 55.902px; } .feed__time { font-size: 13.86px; } .play-btn--news { width: 100px; height: 100px; } .play-btn--news svg { width: 35px; height: 35px; margin-left: 7px; } .play-btn--break { width: 120px !important; height: 120px !important; } .play-btn--break svg { width: 60px !important; height: 60px !important; } .video-slider__title { font-size: 15.4px; max-height: 55.902px; } .video-slider__slide { width: calc(50% - 7px) !important; } .category-block__item { width: 200px !important; } .category-block__item.swiper-slide { width: calc(50% - 7px) !important; } .category-block__title { font-size: 15.4px; max-height: 55.902px; } .category-block__badge { font-size: 11.55px; } .weather { background-position: 180% -180%; } .weather__data { gap: 8px; } .weather__today .weather__temp { font-size: 80px; } .weather__today .weather__svg { height: 140px; } .weather__other .weather__svg { height: 60px; } .weather__other .weather__temp { font-size: 28px; } .horoscope { background-size: 80%; } .horoscope__aside img { width: 65px; height: 65px; } .horoscope__name { font-size: 30.45px; } .currency table { width: 100%; } .quote__text { font-size: 20.02px; } .joke__text { font-size: 20.02px; } .list__title { font-size: 26.95px; } .list__name { font-size: 13.86px; } .article__emotions { gap: 15px; } .article__emotions span { font-size: 20.88px; } .article__emotions svg { width: 32px; height: 27px; margin-right: 10px; } .modal__content { width: 90%; padding: 40px 30px 30px 30px; gap: 13px; } .modal__message { font-size: 18.48px; } .modal__list-item { padding: 5px 15px; font-size: 13.86px; } .modal__btn { padding: 8px ​20px; font-size: 15.66px; } .modal__close { width: 30px; height: 30px; top: 15px; right: 15px; } .modal__list { gap: 8px; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(4, 1fr); } } @media screen and (max-width: 400px) { .horoscope { padding: 35px ​25px; } .video-slider__slide { width: 160px ​ !important; } .video-slider__img-wrap { height: 160px; } .promo__btn { width: 48px; height: 48px; } .promo__btn svg { height: 20px; } .article__actions { gap: 15px; padding: 10px 0; } .article__emotions svg { width: 25px; margin-right: 10px; } .modal__list { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(7, 1fr); } } .burger-wrapper { cursor: pointer; margin: auto; position: absolute; width: 50px; height: 50px; z-index: 100; top: 50%; left: 3%; z-index: 100; transform: translate(0, -50%); background-color: #fff; } .burger-wrapper .hamburger { background: #00195c; width: 30px; height: 1.5px; position: absolute; left: 50%; top: 50%; transition: all 10ms 300ms ease; transform: translate(-50%, -50%); } .burger-wrapper .hamburger:before, .burger-wrapper .hamburger:after { transition: top 300ms 350ms ease, transform 300ms 50ms ease; position: absolute; background: #00195c; width: 30px; height: 1.5px; content: ""; } .burger-wrapper .hamburger:before { top: -9px; } .burger-wrapper .hamburger:after { top: 9px; width: 18px; } .menu-trigger:checked .main { padding-top: 20px; } .menu-trigger:checked ~ .burger-wrapper:active, .menu-trigger:checked ~ .burger-wrapper:hover, .menu-trigger:checked ~ .burger-wrapper:focus { background-color: transparent; box-shadow: none; } .menu-trigger:checked ~ .burger-wrapper .hamburger { background: transparent; } .menu-trigger:checked ~ .burger-wrapper .hamburger:after, .menu-trigger:checked ~ .burger-wrapper .hamburger:before { transition: top 300ms 50ms ease, transform 300ms 350ms ease; top: 0; } .menu-trigger:checked ~ .burger-wrapper .hamburger:before { transform: rotate(45deg); } .menu-trigger:checked ~ .burger-wrapper .hamburger:after { width: 30px; transform: rotate(-45deg); } .menu-trigger:checked ~ .header__wrap { gap: 40px; } .open .header { z-index: 5; } .open .header__nav { position: absolute; background-color: #fff; z-index: 10; height: 100vh; display: flex; align-items: center; justify-content: center; top: 0; left: 0; } .hidden { display: none; } .lds-ellipsis { display: block; position: relative; width: 80px; height: 33px; margin: 0 auto; } .lds-ellipsis div { position: absolute; top: 10px; width: 13px; height: 13px; border-radius: 50%; background: #00195c; -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0); animation-timing-function: cubic-bezier(0, 1, 1, 0); } .lds-ellipsis div:nth-child(1) { left: 8px; -webkit-animation: lds-ellipsis1 0.6s infinite; animation: lds-ellipsis1 0.6s infinite; } .lds-ellipsis div:nth-child(2) { left: 8px; -webkit-animation: lds-ellipsis2 0.6s infinite; animation: lds-ellipsis2 0.6s infinite; } .lds-ellipsis div:nth-child(3) { left: 32px; -webkit-animation: lds-ellipsis2 0.6s infinite; animation: lds-ellipsis2 0.6s infinite; } .lds-ellipsis div:nth-child(4) { left: 56px; -webkit-animation: lds-ellipsis3 0.6s infinite; animation: lds-ellipsis3 0.6s infinite; } @-webkit-keyframes lds-ellipsis1 { 0% { transform: scale(0); } 100% { transform: scale(1); } } @keyframes lds-ellipsis1 { 0% { transform: scale(0); } 100% { transform: scale(1); } } @-webkit-keyframes lds-ellipsis3 { 0% { transform: scale(1); } 100% { transform: scale(0); } } @keyframes lds-ellipsis3 { 0% { transform: scale(1); } 100% { transform: scale(0); } } @-webkit-keyframes lds-ellipsis2 { 0% { transform: translate(0, 0); } 100% { transform: translate(24px, 0); } } @keyframes lds-ellipsis2 { 0% { transform: translate(0, 0); } 100% { transform: translate(24px, 0); } } .fade-enter-active, .fade-leave-active { transition: opacity 0.5s ease; } .fade-enter-from, .fade-leave-to { opacity: 0; } .error { height: 80vh; display: flex; align-items: center; justify-content: center; flex-direction: column; color: #00195c; gap: 30px; } .error__img { position: relative; } .error__code { position: absolute; bottom: -15%; left: 50%; transform: translate(-50%, 0); font-size: 120px; margin: 0; line-height: 1; font-weight: 700; } .error__message { font-size: 40px; font-weight: 500; } .temp { background-repeat: no-repeat; background-size: contain; background-position: center; } .temp--feed { width: 25%; height: 131px; background-image: url("/images/placeholders/block-feed.svg"); } .temp--lg { width: 50%; height: 360px; background-image: url("/images/placeholders/block-lg.svg"); } .temp--sm { width: 33.3333333333%; height: 210px; background-image: url("/images/placeholders/block-sm.svg"); } @media screen and (max-width: 1220px) { .temp--feed { height: 123px; background-image: url("/images/placeholders/block-feed_1220.svg"); } .temp--lg { width: 50%; height: 360px; background-image: url("/images/placeholders/block-lg_1220.svg"); } .temp--sm { height: 210px; background-image: url("/images/placeholders/block-sm_1220.svg"); } } @media screen and (max-width: 992px) { .temp--feed { height: 116px; background-image: url("/images/placeholders/block-feed_992.svg"); } .temp--lg { width: 50%; height: 280px; background-image: url("/images/placeholders/block-lg_992.svg"); } .temp--sm { height: 180px; background-image: url("/images/placeholders/block-sm_992.svg"); } } @media screen and (max-width: 768px) { .temp--feed { width: 100%; height: 64px; background-image: url("/images/placeholders/block-feed_768.svg"); } } @media screen and (max-width: 576px) { .temp--feed { width: 100%; height: 50px; } .temp--lg, .temp--sm { width: 100%; height: 200px; background-size: cover; background-image: url("/images/placeholders/block_576.svg"); } .error__img img { width: 80%; display: block; margin: 0 auto; } .error__code { font-size: 90px; margin: 0; line-height: 1; font-weight: 700; } .error__message { font-size: 30px; } }
public/css/app.css
@import url(https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;900&display=swap); @charset "UTF-8"; /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ /* Document ========================================================================== */ /** * 1. Correct the line height in all browsers. * 2. Prevent adjustments of font size after orientation changes in iOS. */ html { line-height: 1.15; /* 1 */ -webkit-text-size-adjust: 100%; /* 2 */ } /* Sections ========================================================================== */ /** * Remove the margin in all browsers. */ body { margin: 0; } /** * Render the `main` element consistently in IE. */ main { display: block; } /** * Correct the font size and margin on `h1` elements within `section` and * `article` contexts in Chrome, Firefox, and Safari. */ h1 { font-size: 2em; margin: 0.67em 0; } /* Grouping content ========================================================================== */ /** * 1. Add the correct box sizing in Firefox. * 2. Show the overflow in Edge and IE. */ hr { box-sizing: content-box; /* 1 */ height: 0; /* 1 */ overflow: visible; /* 2 */ } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ pre { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /* Text-level semantics ========================================================================== */ /** * Remove the gray background on active links in IE 10. */ a { background-color: transparent; } /** * 1. Remove the bottom border in Chrome 57- * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. */ abbr[title] { border-bottom: none; /* 1 */ text-decoration: underline; /* 2 */ -webkit-text-decoration: underline dotted; text-decoration: underline dotted; /* 2 */ } /** * Add the correct font weight in Chrome, Edge, and Safari. */ b, strong { font-weight: bolder; } /** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */ code, kbd, samp { font-family: monospace, monospace; /* 1 */ font-size: 1em; /* 2 */ } /** * Add the correct font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` elements from affecting the line height in * all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sub { bottom: -0.25em; } sup { top: -0.5em; } /* Embedded content ========================================================================== */ /** * Remove the border on images inside links in IE 10. */ img { border-style: none; } /* Forms ========================================================================== */ /** * 1. Change the font styles in all browsers. * 2. Remove the margin in Firefox and Safari. */ button, input, optgroup, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 1 */ line-height: 1.15; /* 1 */ margin: 0; /* 2 */ } /** * Show the overflow in IE. * 1. Show the overflow in Edge. */ button, input { /* 1 */ overflow: visible; } /** * Remove the inheritance of text transform in Edge, Firefox, and IE. * 1. Remove the inheritance of text transform in Firefox. */ button, select { /* 1 */ text-transform: none; } /** * Correct the inability to style clickable types in iOS and Safari. */ button, [type=button], [type=reset], [type=submit] { -webkit-appearance: button; } /** * Remove the inner border and padding in Firefox. */ button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner { border-style: none; padding: 0; } /** * Restore the focus styles unset by the previous rule. */ button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring { outline: 1px dotted ButtonText; } /** * Correct the padding in Firefox. */ fieldset { padding: 0.35em 0.75em 0.625em; } /** * 1. Correct the text wrapping in Edge and IE. * 2. Correct the color inheritance from `fieldset` elements in IE. * 3. Remove the padding so developers are not caught out when they zero out * `fieldset` elements in all browsers. */ legend { box-sizing: border-box; /* 1 */ color: inherit; /* 2 */ display: table; /* 1 */ max-width: 100%; /* 1 */ padding: 0; /* 3 */ white-space: normal; /* 1 */ } /** * Add the correct vertical alignment in Chrome, Firefox, and Opera. */ progress { vertical-align: baseline; } /** * Remove the default vertical scrollbar in IE 10+. */ textarea { overflow: auto; } /** * 1. Add the correct box sizing in IE 10. * 2. Remove the padding in IE 10. */ [type=checkbox], [type=radio] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Correct the cursor style of increment and decrement buttons in Chrome. */ [type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button { height: auto; } /** * 1. Correct the odd appearance in Chrome and Safari. * 2. Correct the outline style in Safari. */ [type=search] { -webkit-appearance: textfield; /* 1 */ outline-offset: -2px; /* 2 */ } /** * Remove the inner padding in Chrome and Safari on macOS. */ [type=search]::-webkit-search-decoration { -webkit-appearance: none; } /** * 1. Correct the inability to style clickable types in iOS and Safari. * 2. Change font properties to `inherit` in Safari. */ ::-webkit-file-upload-button { -webkit-appearance: button; /* 1 */ font: inherit; /* 2 */ } /* Interactive ========================================================================== */ /* * Add the correct display in Edge, IE 10+, and Firefox. */ details { display: block; } /* * Add the correct display in all browsers. */ summary { display: list-item; } /* Misc ========================================================================== */ /** * Add the correct display in IE 10+. */ template { display: none; } /** * Add the correct display in IE 10. */ [hidden] { display: none; } :root { touch-action: pan-x pan-y; height: 100%; } button { padding: 0; } * { box-sizing: border-box; } body { font-family: "Mulish", sans-serif; padding-bottom: 100px; color: #000E33; } a { text-decoration: none; color: #000E33; } main { padding: 0 0 30px 0; } .logo { z-index: 20; font-size: 0; width: 180px; } .logo img { width: 100%; } .header { padding: 30px 0px 30px; } .header__nav { display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 20px; } .header__top { display: flex; align-items: center; justify-content: flex-end; gap: 20px; } .header__top a { color: #899bb5; font-size: 15px; padding: 0 12px; transition: all 0.2s ease-in-out; } .header__top a:hover { color: #DBB42B; } .header__wrap { display: flex; align-items: flex-end; justify-content: space-between; } .header__list { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; } .header__link { padding: 7px 12px; font-size: 20px; font-weight: 600; color: #00195c; text-decoration: none; border-radius: 4px; transition: all 0.2s ease-in-out; } .header__link.active { border-bottom: 1px solid #00195c; color: #fff; background-color: #00195c; } .header__link:hover { background-color: #00195c; color: #fff; } .burger-menu { display: none; } .container { width: 2200px; max-width: 95%; margin: 0 auto; } .row { display: flex; justify-content: flex-start; align-items: flex-start; gap: 20px; margin-bottom: 20px; } .row--3pcs { flex-wrap: wrap; } .row--3pcs .category-block__item, .row--3pcs .block--sm { width: calc(33.3333333333% - 14px) !important; margin-bottom: 40px; } .row--2pcs { flex-wrap: wrap; } .row--2pcs .block--lg { width: 48% !important; margin-bottom: 30px; } .row.feed { justify-content: flex-start; } .row.break { align-items: stretch; } .inset-height { min-height: 340px; } .block { border-radius: 10px; position: relative; background-color: #899bb5; text-decoration: none; color: #00195c; cursor: pointer; } .block:after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(180deg, rgba(196, 196, 196, 0) 8%, #000E33 60%, #000E33 100%); border-radius: 10px; transition: all 0.2s ease-in-out; z-index: 2; opacity: 0.5; } .block:hover:after { background-color: rgba(27, 27, 27, 0.5); } .block__image { width: 100%; padding-top: 70%; background-size: cover; background-position: 50% 50%; background-repeat: no-repeat; border-radius: 10px; background-color: #899bb5; background-image: url("/public/images/bg.jpg"); opacity: 0; transition: opacity 0.5s ease-in-out; } .block.loaded .block__image { opacity: 1; } .block__title { position: absolute; bottom: 40px; left: 40px; right: 60px; font-size: 35px; line-height: 1.21; font-weight: 700; line-height: 1.21; color: #fff; max-height: 127.05px; -webkit-line-clamp: 3; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow: hidden; display: -webkit-box; z-index: 3; } .block__badge { position: absolute; left: 0; top: 30px; min-width: 35%; background-color: #fff; padding: 6px 30px; font-size: 18px; font-weight: 700; text-transform: uppercase; z-index: 3; line-height: 1.21; } .block--lg { width: 50%; } .block--sm { width: 33.3333333333%; } .block--sm .block__badge { font-size: 15.66px; padding: 6px 30px; } .block--sm .block__title { font-size: 24px; line-height: 1.21; bottom: 30px; left: 30px; max-height: 87.12px; font-weight: 600; } .feed { gap: 50px; margin: 50px 0; } .feed__item { text-decoration: none; color: #000E33; position: relative; transition: all 0.2s ease-in-out; width: 25%; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; min-height: 123px; gap: 15px; } .feed__item:first-child::after { display: none; } .feed__item:hover { color: #5060EF; } .feed__title { font-size: 20px; line-height: 1.21; display: -webkit-box; max-height: 96.8px; -webkit-line-clamp: 4; -webkit-box-orient: vertical; text-overflow: ellipsis; overflow-y: hidden; font-weight: 300; } .feed__time { font-weight: 700; font-size: 18px; } .promo__btns { display: flex; justify-content: center; align-items: center; } .promo__btn { padding: 16px; background-color: transparent; cursor: pointer; border: 1px solid #00195c; display: block; width: 60px; height: 60px; border-radius: 50%; margin: 0 8px; display: flex; align-items: center; justify-content: center; } .promo__btn svg { fill: #00195c; height: 26px; transition: all 0.2s ease-in-out; } .promo__btn:hover svg { transform: scale(1.15); } .fb-size { width: 1200px; height: 630px; } .clear { color: #F49424; } .clear .weather__temp { color: #F49424; } .clouds, .drizzle, .rain { color: #0237BF; } .clouds .weather__temp, .drizzle .weather__temp, .rain .weather__temp { color: #0237BF; } .snow { color: #2FADE2; } .snow .weather__temp { color: #2FADE2; } .thunderstorm { color: #8719DE; } .thunderstorm .weather__temp { color: #8719DE; } .mist, .ash, .haze, .fog, .dust, .mist, .smoke, .sand, .tornado { color: #5C8AFF; } .mist .weather__temp, .ash .weather__temp, .haze .weather__temp, .fog .weather__temp, .dust .weather__temp, .mist .weather__temp, .smoke .weather__temp, .sand .weather__temp, .tornado .weather__temp { color: #5C8AFF; } .weather { border: 1px solid #00195c; border-radius: 10px; padding: 50px; width: 50%; position: relative; overflow: hidden; background-position: 170% 140%; background-repeat: no-repeat; background-size: 80%; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; } .weather__overlay { width: 100%; height: 100%; position: absolute; top: 0; left: 0; } .weather__badge { background-color: #00195c; padding: 4px 30px; display: flex; align-items: center; justify-content: center; gap: 7px; cursor: pointer; position: absolute; top: 30px; left: 0; } .weather__badge svg { fill: #fff; width: 15px; height: 15px; } .weather__badge span { color: #fff; font-size: 18px; font-weight: 200; } .weather__today { padding-top: 10px; z-index: 2; } .weather__today .weather__temp { font-size: 110px; font-weight: 300; } .weather__today .weather__svg { height: 170px; } .weather__today .weather__info { font-size: 35px; font-weight: 100; line-height: 1; } .weather__today-wrap { display: flex; width: 100%; align-items: center; justify-content: flex-start; gap: 15px; margin-bottom: 20px; } .weather__other { z-index: 2; display: flex; justify-content: space-between; align-items: center; } .weather__other .weather__svg { height: 120px; } .weather__other .weather__info { text-align: center; } .weather__other .weather__data { display: flex; flex-direction: column; align-items: center; justify-content: center; align-items: center; gap: 5px; } .weather__other .weather__temp { font-weight: 600; font-size: 36px; } .weather__other .weather__date { font-size: 22px; } .weather__other .weather__day { font-weight: 700; font-size: 25px; } .quote { border: 1px solid #00195c; border-radius: 10px; color: #00195c; padding: 30px; width: 50%; display: flex; flex-direction: column; align-items: inherit; justify-content: space-between; } .quote__svg { fill: #00195c; width: 30px; height: 30px; margin-bottom: 20px; } .quote__text { font-size: 26px; font-weight: 400; line-height: 1.21; display: block; margin: 0 auto; text-align: center; margin-bottom: 25px; } .quote__author-wrap { width: 100%; margin-top: 20px; display: flex; justify-content: flex-end; align-items: center; } .quote__author { position: relative; font-size: 20px; font-weight: 600; } .quote__author::before { content: ""; position: absolute; left: -35px; top: 50%; display: block; width: 25px; height: 1px; background-color: #00195c; } .joke { width: 50%; padding: 25px; background-color: #F4F4F4; position: relative; border-radius: 10px; display: flex; flex-direction: column; justify-content: space-between; align-items: stretch; } .joke__text { display: block; font-size: 24px; font-weight: 300; text-align: center; margin: 25px 15px 25px 15px; } .joke__title { display: block; font-size: 22px; font-weight: 500; text-align: center; position: relative; } .joke__title:before, .joke__title:after { content: ""; width: 100%; height: 4px; display: block; background-color: #00195c; position: absolute; top: 50%; width: 30%; } .joke__title::before { left: 0; } .joke__title::after { right: 0; } .joke.error-data::before { display: none; } .joke .promo__btns:before, .joke .promo__btns:after { content: ""; width: 100%; height: 4px; display: block; background-color: #00195c; } .joke .promo__btn:nth-last-child(1) { margin-right: 16px; } .joke .promo__btn:nth-last-child(2) { margin-left: 16px; } .currency { width: 50%; padding: 20px; border: 1px solid #00195c; border-radius: 10px; display: flex; flex-direction: column; align-items: stretch; justify-content: center; position: relative; overflow: hidden; background-position: 50% 50%; background-repeat: no-repeat; background-size: 45%; } .currency .horoscope__overlay { opacity: 0.97; } .currency table { border: none; margin: 30px auto 0; width: 75%; z-index: 2; } .currency table td, .currency table th { border: none; text-align: right; } .currency table td span, .currency table th span { font-size: 32px; color: #000E33; } .currency table td svg, .currency table th svg { width: 15px; height: 15px; margin-left: 5px; } .currency table td img, .currency table th img { width: 50%; } .currency table td { padding: 15px 0; text-align: left; } .currency__sum { display: flex; align-items: center; justify-content: flex-end; } .currency__wrap { display: flex; align-items: flex-end; justify-content: center; gap: 20px; margin-bottom: 30px; } .currency__badge { background-color: #00195c; padding: 5px 35px; color: #fff; position: absolute; top: 30px; left: 0; font-size: 18px; z-index: 2; line-height: 1; } .currency__title { font-size: 26px; font-weight: 400; width: 60%; } .currency__name { font-size: 27px; font-weight: 600; color: #00195c; text-align: left !important; padding-left: 10px !important; } .horoscope { width: 50%; display: flex; align-items: center; justify-content: space-between; gap: 20px; position: relative; padding: 45px 35px; border: 1px solid #00195c; border-radius: 10px; background-size: 50%; background-repeat: no-repeat; background-position: 30% 50%; overflow: hidden; } .horoscope__overlay { background-color: #fff; display: block; border-radius: 10px; width: 200%; height: 200%; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; opacity: 0.95; } .horoscope__bg { z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; } .horoscope__name { font-size: 35px; font-weight: 700; text-align: center; margin-bottom: 10px; color: #00195c; z-index: 2; } .horoscope__btn { margin-bottom: 10px; background-color: transparent; border: none; cursor: pointer; z-index: 2; } .horoscope__btn svg { width: 20px; height: 20px; margin-left: 10px; fill: #00195c; } .horoscope__text { z-index: 3; font-size: 22px; text-align: center; display: block; } .horoscope__aside { display: flex; flex-direction: column; align-items: center; justify-content: space-between; z-index: 3; gap: 40px; } .horoscope__aside img { width: 75px; height: 75px; } .horoscope__aside .promo__btns { flex-direction: column; gap: 15px; } .horoscope__aside .promo__btn { margin: 0; } .video { width: 50%; border-radius: 10px; } .video .article__video-wrap { height: 100%; margin: 0; border-radius: 10px; } .video-slider { margin-bottom: 40px; } .video-slider__slide { width: calc(25% - 22.5px) !important; } .video-slider__slide:visited { color: #00195c; } .video-slider__slide:hover .play-btn { transform: translate(-50%, 0) scale(1.2); } .video-slider__img-wrap { width: 100%; height: 210px; position: relative; font-size: 0; border-radius: 10px; background-size: cover; background-position: 50% 50%; background-repeat: no-repeat; background-image: url("/public/images/bg.jpg"); opacity: 0; transition: opacity 0.5s ease-in-out; } .video-slider__img-wrap.loaded { opacity: 1; } .video-slider__title { display: -webkit-box; margin-top: 40px; line-height: 1.21; font-size: 20px; max-height: 72.6px; -webkit-line-clamp: 3; -webkit-box-orient: vertical; text-overflow: ellipsis; font-weight: 400; color: #000E33; padding: 0 7px; } .category-block__wrap { margin-bottom: 30px; } .category-block__item { width: 25% !important; } .category-block__item.swiper-slide { width: calc(25% - 22.5px) !important; } .category-block__badge { background-color: #00195c; padding: 7px 20px 7px 20px; color: #fff; font-size: 15px; font-weight: 300; width: -webkit-fit-content; width: -moz-fit-content; width: fit-content; margin: 25px 0; z-index: 3; } .category-block__name { font-size: 35px; color: #00195c; font-weight: 600; text-transform: uppercase; margin-bottom: 30px; margin-top: 50px; display: block; padding-left: 15px; position: relative; z-index: 3; } .category-block__name:before { content: ""; display: block; width: 10px; height: 10px; border-radius: 50%; background-color: #DBB42B; position: absolute; bottom: 20%; left: 0; } .category-block__img { background-size: cover; background-position: 50% 50%; background-repeat: no-repeat; padding-top: 70%; border-radius: 10px; background-image: url("/public/images/bg.jpg"); position: relative; transition: all 0.5s ease-in-out; opacity: 0; transition: opacity 0.5s ease-in-out; } .category-block__img:after { content: ""; display: block; width: 100%; height: 100%; position: absolute; top: 0; left: 0; border-radius: 10px; background-color: rgba(27, 27, 27, 0.3); transition: all 0.2s ease-in-out; opacity: 0; } .category-block__img:hover:after { opacity: 1; } .category-block__img.loaded { opacity: 1; } .category-block__title { color: #000E33; font-weight: 600; font-size: 20px; max-height: 72.6px; -webkit-line-clamp: 3; -webkit-box-orient: vertical; text-overflow: ellipsis; display: -webkit-box; overflow: hidden; } .play-btn { width: 50px; height: 50px; background-color: #00195c; border-radius: 50%; position: absolute; transform: translate(-50%, 0); border: none; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease-in-out; } .play-btn svg { width: 20px; height: 20px; fill: #fff; pointer-events: none; } .play-btn--slider { left: 50%; bottom: -25px; } .play-btn--news { background-color: #F4F4F4; width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%); } .play-btn--news svg { width: 120px; height: 120px; fill: #00195c; } .play-btn--break { width: 120px !important; height: 120px !important; } .play-btn--break svg { width: 60px !important; height: 60px !important; } .swiper-pagination { bottom: 20px !important; } .swiper-pagination-bullet { width: 20px !important; height: 20px !important; background-color: #fff !important; border: 1px solid #00195c !important; margin: 0 8px !important; } .swiper-pagination-bullet-active { background-color: #00195c !important; } .list { margin: 30px 0; display: flex; align-items: center; justify-content: flex-start; } .list__title { font-weight: 400; display: inline-block; margin: 0 20px 0 0; font-size: 35px; color: #00195c; text-transform: uppercase; } .list__name { background-color: #00195c; color: #fff; font-weight: 300; padding: 8px 20px; text-transform: uppercase; font-size: 18px; } .list__img-wrap { width: 100px; height: 100px; border-radius: 50%; position: relative; overflow: hidden; margin-bottom: 20px; background-size: cover; background-position: 50% 50%; background-repeat: no-repeat; } .list--author { display: flex; align-items: center; justify-content: flex-start; flex-direction: column; font-size: 26px; color: #00195c; font-weight: 400; } .article { padding-bottom: 0px !important; } .article__emotions { display: flex; align-items: center; justify-content: flex-start; gap: 40px; } .article__emotions svg { width: 30px; height: 30px; margin-right: 24px; fill: #00195c; transition: all 0.2s ease-in-out; pointer-events: none; } .article__emotions span { font-size: 24px; color: #00195c; } .article__emotions button { background-color: transparent; border: none; cursor: pointer; } .article__emotions button:hover svg { transform: scale(1.15); } .article__emotions button.disable svg { fill: #899bb5; } .article__emotions button.disable + span { color: #899bb5; } .article__info-date { position: absolute; display: flex; align-items: center; justify-content: center; gap: 10px; } .article__info-date span { font-size: 20px; } .article__info-date svg { fill: #00195c; width: 20px; height: 20px; } .article__emotion { display: flex; align-items: center; justify-content: flex-start; margin: 0 8px; } .notification { font-size: 15px; margin: 0 5px 5px; padding: 15px 15px 15px 20px; color: #F4F4F4 !important; height: -webkit-fit-content !important; height: -moz-fit-content !important; height: fit-content !important; } .notification.success { background: #5060EF; border-left: 5px solid #00195c; } .notification.error { background: #e54d42; border-left: 5px solid #b82e24; } .news-error { display: flex; align-items: center; justify-content: space-between; flex-direction: column; gap: 20px; } .news-error span { color: #899bb5; } .news-error button { background-color: transparent; border: none; cursor: pointer; } .news-error button svg { fill: #899bb5; width: 70px; height: 70px; transition: all 0.5s ease-in-out; } .news-error button:hover svg { transform: rotate(90deg); } .modal { background-color: rgba(59, 70, 102, 0.8); width: 100vw; height: 100vh; position: fixed; left: 0; top: 0; z-index: 10; display: none; } .modal.opened { display: block; } .modal__content { background-color: #fff; padding: 60px 40px 40px 40px; position: fixed; top: 50%; left: 50%; width: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); border-radius: 10px; overflow: hidden; z-index: 15; display: flex; align-items: center; justify-content: space-between; flex-direction: column; gap: 20px; } .modal__message { font-size: 24px; text-align: center; margin-bottom: 15px; } .modal__list { padding: 0; margin: 0; display: grid; gap: 5px; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr); } .modal__list-item { width: -webkit-fit-content; width: -moz-fit-content; width: fit-content; padding: 6px 13px; font-size: 18px; list-style: none; border-radius: 10px; background-color: #fff; color: #00195c; cursor: pointer; } .modal__list-item--active { background-color: #00195c; color: #fff; } .modal__list-item:hover { background-color: #00195c; color: #fff; } .modal__btn { border: 1px solid #00195c; border-radius: 10px; background-color: transparent; font-size: 18px; padding: 10px 25px; color: #00195c; cursor: pointer; } .modal__close { background-color: transparent; border: none; width: 35px; height: 35px; position: absolute; right: 20px; top: 20px; cursor: pointer; } .modal__close svg { width: 100%; height: 100%; fill: #00195c; } .inset-error { display: flex; flex-direction: column; align-items: center; text-align: center; color: #899bb5; margin-top: 40px; } .inset-error span { font-size: 30px; font-weight: 300; } .inset-error svg { width: 50px; height: 50px; stroke: #899bb5; margin-top: 10px; } @media screen and (max-width: 1400px) { .weather { background-position: 180% -200%; } .weather__today .weather__temp { font-size: 100px; } .weather__other .weather__svg { height: 100px; } .weather__other .weather__date { font-size: 20px; } .weather__other .weather__day { font-size: 22px; } .weather__other .weather__temp { font-size: 34px; } .currency table { width: 85%; } } @media screen and (max-width: 1200px) { .weather { background-position: 180% -100%; padding: 30px; } .weather__today .weather__temp { font-size: 90px; } .weather__today .weather__svg { height: 150px; } .weather__other .weather__svg { height: 80px; } .weather__other .weather__date { font-size: 18px; } .weather__other .weather__day { font-size: 20px; } .weather__other .weather__temp { font-size: 32px; } .currency table { width: 90%; } } @media screen and (max-width: 992px) { .inset-height { min-height: 240px; } .logo { margin: 0 auto; width: 160px; } .burger-menu { display: block; } .header { padding: 20px 0; border-bottom: 1px solid #CCD5E5; position: relative; transition: all 0.2s ease-in-out; } .header__top { order: 2; flex-direction: column; } .header__top a { font-size: 20px; } .header__nav { background-color: #fff; width: 100%; transition: all 0.2s ease-in-out; height: 0px; display: none; gap: 50px; } .header__list { gap: 30px; padding: 20px ​0; flex-direction: column; } .header__wrap { flex-direction: column; gap: 40px; } .block--sm .block__title { font-size: 20.88px; bottom: 20px; left: 20px; max-height: 75.7944px; } .block--sm .block__badge { top: 25px; min-width: 45%; font-size: 13.86px; } .block__badge { min-width: 45%; top: 30px; padding: 6px 20px; font-size: 15.66px; } .block__title { font-size: 26.95px; bottom: 30px; left: 30px; max-height: 97.8285px; } .feed { gap: 30px; } .feed__item { min-height: 110px; } .feed__title { font-size: 17.4px; max-height: 84.216px; } .feed__time { font-size: 15.66px; } .promo__btn { padding: 10px; width: 55px; height: 55px; } .promo__btn svg { height: 23px; } .weather { background-position: 180% -160%; } .weather__today-wrap { margin-bottom: 0; } .weather__other .weather__svg { height: 70px; } .weather__other .weather__date { font-size: 14px; } .weather__other .weather__day { font-size: 18px; } .weather__other .weather__temp { font-size: 30px; } .quote__text { font-size: 22.62px; } .quote__svg { margin-bottom: 20px; } .quote__author { font-size: 17.4px; } .joke__text { font-size: 22.62px; } .horoscope { flex-direction: column; background-position: 50% 80%; } .horoscope__text { font-size: 19.14px; } .horoscope__bg { order: 2; } .horoscope__aside { flex-direction: row; width: 100%; } .horoscope__aside .promo__btns { flex-direction: row; } .currency table { width: 100%; } .currency table td span { font-size: 30px; } .play-btn--news { width: 240px; height: 240px; } .play-btn--news svg { width: 100px; height: 100px; } .play-btn--break { width: 120px !important; height: 120px !important; } .play-btn--break svg { width: 60px !important; height: 60px !important; } .modal__content { width: 60%; } .inset-error span { font-size: 26px; } .inset-error svg { width: 40px; height: 40px; } } @media screen and (max-width: 768px) { .row { gap: 10px; margin-bottom: 10px; } .row--3pcs .block--sm { width: calc(50% - 10px) !important; margin-bottom: 20px; } .row--3pcs .category-block__item { width: calc(33.3333333333% - 7px) !important; } .row--2pcs .block--lg { width: 100% !important; margin-bottom: 20px; } .row.break { gap: 10px; } .feed { flex-direction: column; margin: 30px 0; gap: 20px; } .feed__title { order: 2; margin-bottom: 15px; width: 85%; } .feed__time { width: 15%; } .feed__item { flex-direction: row; justify-content: flex-start; align-items: flex-start; gap: 15px; width: 100%; min-height: unset; } .feed__item:after { left: 0; right: 0; top: -20%; width: 100%; height: 1px; } .block--sm .block__title { font-size: 18.48px; right: 15px; left: 15px; bottom: 15px; max-height: 67.0824px; font-weight: 400; } .block__badge { min-width: 35%; padding: 6px 25px; } .block__title { font-size: 18.48px; bottom: 25px; left: 25px; right: 25px; max-height: 67.0824px; } .video-slider__slide { width: calc(33.3333333333% - 7px) !important; } .video-slider__img-wrap { height: 200px; } .video-slider__title { font-size: 17.4px; max-height: 63.162px; } .category-block__item { width: 250px !important; } .category-block__item.swiper-slide { width: calc(33.3333333333% - 7px) !important; } .category-block__name { font-size: 30.45px; margin-bottom: 20px; margin-top: 40px; } .category-block__badge { padding: 7px 20px 7px 10px; font-size: 13.05px; margin: 17px 0; } .category-block__title { font-size: 17.4px; max-height: 63.162px; } .category-block__slide { width: 35% !important; } .break { flex-direction: column; } .quote, .joke, .horoscope, .video, .currency, .weather { width: 100%; } .video .article__video-wrap { height: 50vh; } .weather { background-position: 180% 160%; } .list { flex-direction: column; align-items: flex-start; } .list__title { font-size: 30.45px; } .list__name { width: -webkit-fit-content; width: -moz-fit-content; width: fit-content; display: block; margin-top: 10px; font-size: 15.66px; } .modal__content { width: 80%; } } @media screen and (max-width: 576px) { .inset-height { min-height: 220px; } .logo { font-size: 30px; padding-left: 10px; width: 140px; } .logo::before { width: 6px; height: 6px; } .header { padding: 20px 0; } .header__link { font-size: 20px; } .row { flex-wrap: wrap; } .row--3pcs .block--sm { width: 100% !important; margin-bottom: 0; } .row--3pcs .category-block__item { width: 100% !important; margin-bottom: 25px; } .row--2pcs .block--lg { margin-bottom: 0; } .block { width: 100%; } .block--lg { width: 100%; } .block--lg .block__title { font-weight: 500; right: 25px; left: 25px; bottom: 25px; overflow: hidden; } .block--lg .block__badge { font-size: 13.86px; padding: 6px 25px; top: 25px; } .block--sm { width: 100%; } .block--sm .block__title { font-weight: 500; right: 25px; left: 25px; bottom: 25px; overflow: hidden; } .block--sm .block__badge { font-size: 13.86px; padding: 6px 25px; top: 25px; min-width: 35%; } .feed__title { line-height: 1.21; font-size: 15.4px; max-height: 55.902px; } .feed__time { font-size: 13.86px; } .play-btn--news { width: 100px; height: 100px; } .play-btn--news svg { width: 35px; height: 35px; margin-left: 7px; } .play-btn--break { width: 120px !important; height: 120px !important; } .play-btn--break svg { width: 60px !important; height: 60px !important; } .video-slider__title { font-size: 15.4px; max-height: 55.902px; } .video-slider__slide { width: calc(50% - 7px) !important; } .category-block__item { width: 200px !important; } .category-block__item.swiper-slide { width: calc(50% - 7px) !important; } .category-block__title { font-size: 15.4px; max-height: 55.902px; } .category-block__badge { font-size: 11.55px; } .weather { background-position: 180% -180%; } .weather__data { gap: 8px; } .weather__today .weather__temp { font-size: 80px; } .weather__today .weather__svg { height: 140px; } .weather__other .weather__svg { height: 60px; } .weather__other .weather__temp { font-size: 28px; } .horoscope { background-size: 80%; } .horoscope__aside img { width: 65px; height: 65px; } .horoscope__name { font-size: 30.45px; } .currency table { width: 100%; } .quote__text { font-size: 20.02px; } .joke__text { font-size: 20.02px; } .list__title { font-size: 26.95px; } .list__name { font-size: 13.86px; } .article__emotions { gap: 15px; } .article__emotions span { font-size: 20.88px; } .article__emotions svg { width: 32px; height: 27px; margin-right: 10px; } .modal__content { width: 90%; padding: 40px 30px 30px 30px; gap: 13px; } .modal__message { font-size: 18.48px; } .modal__list-item { padding: 5px 15px; font-size: 13.86px; } .modal__btn { padding: 8px ​20px; font-size: 15.66px; } .modal__close { width: 30px; height: 30px; top: 15px; right: 15px; } .modal__list { gap: 8px; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(4, 1fr); } } @media screen and (max-width: 400px) { .horoscope { padding: 35px ​25px; } .video-slider__slide { width: 160px ​ !important; } .video-slider__img-wrap { height: 160px; } .promo__btn { width: 48px; height: 48px; } .promo__btn svg { height: 20px; } .article__actions { gap: 15px; padding: 10px 0; } .article__emotions svg { width: 25px; margin-right: 10px; } .modal__list { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(7, 1fr); } } .burger-wrapper { cursor: pointer; margin: auto; position: absolute; width: 50px; height: 50px; z-index: 100; top: 50%; left: 3%; z-index: 100; transform: translate(0, -50%); background-color: #fff; } .burger-wrapper .hamburger { background: #00195c; width: 30px; height: 1.5px; position: absolute; left: 50%; top: 50%; transition: all 10ms 300ms ease; transform: translate(-50%, -50%); } .burger-wrapper .hamburger:before, .burger-wrapper .hamburger:after { transition: top 300ms 350ms ease, transform 300ms 50ms ease; position: absolute; background: #00195c; width: 30px; height: 1.5px; content: ""; } .burger-wrapper .hamburger:before { top: -9px; } .burger-wrapper .hamburger:after { top: 9px; width: 18px; } .menu-trigger:checked .main { padding-top: 20px; } .menu-trigger:checked ~ .burger-wrapper:active, .menu-trigger:checked ~ .burger-wrapper:hover, .menu-trigger:checked ~ .burger-wrapper:focus { background-color: transparent; box-shadow: none; } .menu-trigger:checked ~ .burger-wrapper .hamburger { background: transparent; } .menu-trigger:checked ~ .burger-wrapper .hamburger:after, .menu-trigger:checked ~ .burger-wrapper .hamburger:before { transition: top 300ms 50ms ease, transform 300ms 350ms ease; top: 0; } .menu-trigger:checked ~ .burger-wrapper .hamburger:before { transform: rotate(45deg); } .menu-trigger:checked ~ .burger-wrapper .hamburger:after { width: 30px; transform: rotate(-45deg); } .menu-trigger:checked ~ .header__wrap { gap: 40px; } .open .header { z-index: 5; } .open .header__nav { position: absolute; background-color: #fff; z-index: 10; height: 100vh; display: flex; align-items: center; justify-content: center; top: 0; left: 0; } .hidden { display: none; } .lds-ellipsis { display: block; position: relative; width: 80px; height: 33px; margin: 0 auto; } .lds-ellipsis div { position: absolute; top: 10px; width: 13px; height: 13px; border-radius: 50%; background: #00195c; -webkit-animation-timing-function: cubic-bezier(0, 1, 1, 0); animation-timing-function: cubic-bezier(0, 1, 1, 0); } .lds-ellipsis div:nth-child(1) { left: 8px; -webkit-animation: lds-ellipsis1 0.6s infinite; animation: lds-ellipsis1 0.6s infinite; } .lds-ellipsis div:nth-child(2) { left: 8px; -webkit-animation: lds-ellipsis2 0.6s infinite; animation: lds-ellipsis2 0.6s infinite; } .lds-ellipsis div:nth-child(3) { left: 32px; -webkit-animation: lds-ellipsis2 0.6s infinite; animation: lds-ellipsis2 0.6s infinite; } .lds-ellipsis div:nth-child(4) { left: 56px; -webkit-animation: lds-ellipsis3 0.6s infinite; animation: lds-ellipsis3 0.6s infinite; } @-webkit-keyframes lds-ellipsis1 { 0% { transform: scale(0); } 100% { transform: scale(1); } } @keyframes lds-ellipsis1 { 0% { transform: scale(0); } 100% { transform: scale(1); } } @-webkit-keyframes lds-ellipsis3 { 0% { transform: scale(1); } 100% { transform: scale(0); } } @keyframes lds-ellipsis3 { 0% { transform: scale(1); } 100% { transform: scale(0); } } @-webkit-keyframes lds-ellipsis2 { 0% { transform: translate(0, 0); } 100% { transform: translate(24px, 0); } } @keyframes lds-ellipsis2 { 0% { transform: translate(0, 0); } 100% { transform: translate(24px, 0); } } .fade-enter-active, .fade-leave-active { transition: opacity 0.5s ease; } .fade-enter-from, .fade-leave-to { opacity: 0; } .error { height: 80vh; display: flex; align-items: center; justify-content: center; flex-direction: column; color: #00195c; gap: 30px; } .error__img { position: relative; } .error__code { position: absolute; bottom: -15%; left: 50%; transform: translate(-50%, 0); font-size: 120px; margin: 0; line-height: 1; font-weight: 700; } .error__message { font-size: 40px; font-weight: 500; } .temp { background-repeat: no-repeat; background-size: contain; background-position: center; } .temp--feed { width: 25%; height: 131px; background-image: url("/images/placeholders/block-feed.svg"); } .temp--lg { width: 50%; height: 360px; background-image: url("/images/placeholders/block-lg.svg"); } .temp--sm { width: 33.3333333333%; height: 210px; background-image: url("/images/placeholders/block-sm.svg"); } @media screen and (max-width: 1220px) { .temp--feed { height: 123px; background-image: url("/images/placeholders/block-feed_1220.svg"); } .temp--lg { width: 50%; height: 360px; background-image: url("/images/placeholders/block-lg_1220.svg"); } .temp--sm { height: 210px; background-image: url("/images/placeholders/block-sm_1220.svg"); } } @media screen and (max-width: 992px) { .temp--feed { height: 116px; background-image: url("/images/placeholders/block-feed_992.svg"); } .temp--lg { width: 50%; height: 280px; background-image: url("/images/placeholders/block-lg_992.svg"); } .temp--sm { height: 180px; background-image: url("/images/placeholders/block-sm_992.svg"); } } @media screen and (max-width: 768px) { .temp--feed { width: 100%; height: 64px; background-image: url("/images/placeholders/block-feed_768.svg"); } } @media screen and (max-width: 576px) { .temp--feed { width: 100%; height: 50px; } .temp--lg, .temp--sm { width: 100%; height: 200px; background-size: cover; background-image: url("/images/placeholders/block_576.svg"); } .error__img img { width: 80%; display: block; margin: 0 auto; } .error__code { font-size: 90px; margin: 0; line-height: 1; font-weight: 700; } .error__message { font-size: 30px; } }
0.61115
0.089256
.box { top:0; /* margin-left:-100px;*/ } @-webkit-keyframes movingbox{ from{left:50%;-webkit-transform: rotate(0deg); opacity:0} to{left:0;-webkit-transform: rotate(360deg); opacity:1} } /*#index .box1, #index .box2, #index .box3, #index .box4 { opacity:0;} */ #index .box1 { -webkit-animation:slideInRight 1s forwards; -moz-animation:slideInRight 1s forwards; -o-animation:slideInRight 1s forwards; animation:slideInRight 1s forwards; -webkit-animation-delay: 1.1s; -moz-animation-delay: 1.1s; -o-animation-delay: 1.1s; animation-delay: 1.1s; } #index .box2 { -webkit-animation:flipInXX 1s forwards; -moz-animation:flipInXX 1s forwards; -o-animation:flipInXX 1s forwards; animation:flipInXX 1s forwards; -webkit-animation-delay: 1s; -moz-animation-delay: 1s; -o-animation-delay: 1s; animation-delay: 1s; } #index .box3 { -webkit-animation:fadeInN 1s forwards; -moz-animation:fadeInN 1s forwards; -o-animation:fadeInN 1s forwards; animation:fadeInN 1s forwards; -webkit-animation-delay: 1.3s; -moz-animation-delay: 1.3s; -o-animation-delay: 1.3s; animation-delay: 1.3s; } #index .box4 { -webkit-animation:expandUp 1s forwards; -moz-animation:expandUp 1s forwards; -o-animation:expandUp 1s forwards; animation:expandUp 1s forwards; -webkit-animation-delay: 1.4s; -moz-animation-delay: 1.4s; -o-animation-delay: 1.4s; animation-delay: 1.4s; } #index .box5 { -webkit-animation:bigEntrance 1.3s forwards; -moz-animation:bigEntrance 1.3s forwards; -o-animation:bigEntrance 1.3s forwards; animation:bigEntrance 1.3s forwards; -webkit-animation-delay: 1.5s; -moz-animation-delay: 1.5s; -o-animation-delay: 1.5s; animation-delay: 1.5s; } #index .box6 { -webkit-animation:expandUp 1s forwards; -moz-animation:expandUp 1s forwards; -o-animation:expandUp 1s forwards; animation:expandUp 1s forwards; -webkit-animation-delay: 1.6s; -moz-animation-delay: 1.6s; -o-animation-delay: 1.6s; animation-delay: 1.6s; } @-webkit-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @-moz-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @-o-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .fadeIn { -webkit-animation-name: fadeIn; -moz-animation-name: fadeIn; -o-animation-name: fadeIn; animation-name: fadeIn; } @-webkit-keyframes flipInXX { from { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg) translateX(150px); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg) translateX(30%); transform: perspective(400px) rotate3d(1, 0, 0, -20deg) translateX(30%); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } 95% { -webkit-transform: perspective(400px); transform: perspective(400px); } to { -webkit-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-moz-keyframes flipInXX { from { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; -moz-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; -moz-animation-timing-function: ease-in; animation-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } 95% { -webkit-transform: perspective(400px); -moz-transform: perspective(400px); transform: perspective(400px); } to { -moz-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-o-keyframes flipInXX { from { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } 95% { -webkit-transform: perspective(400px); transform: perspective(400px); } to { -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @keyframes flipInXX { from { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; -moz-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; -moz-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } 95% { -webkit-transform: perspective(400px); -moz-transform: perspective(400px); transform: perspective(400px); } to { -webkit-transform: translate(0, 0); -moz-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } /** * SlideInRight Keyframes Animation */ @-webkit-keyframes slideInRight { 0% { -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity:1; } } @-moz-keyframes slideInRight { 0% { -webkit-transform: translate3d(100%, 0, 0); -moz-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity:1; } } @-o-keyframes slideInRight { 0% { -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity:1; } } @keyframes slideInRight { 0% { -webkit-transform: translate3d(100%, 0, 0); -moz-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity:1; } } @-moz-keyframes slideInLeft { 0% { -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: none; -moz-transform: none; transform: none; opacity:1; } } @-o-keyframes slideInLeft { 0% { transform: translate3d(-100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: none; -o-transform: none; transform: none; opacity:1; } } @keyframes slideInLeft { 0% { -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; opacity:1; } } @-webkit-keyframes slideInLeft { 0% { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: none; transform: none; opacity:1; } } /* .mainblock { padding-left:7%; padding-right:7%} */ /*.mainblock img:nth-child(2) { margin-left:35px} .mainblock img:last-child { margin-left: 28px; margin-top: -9px; } */ /* Hover section */ .hvr-bounce-in { display: inline-block; vertical-align: middle; /* -webkit-transform: perspective(1px) translateZ(0); transform: perspective(1px) translateZ(0); box-shadow: 0 0 1px transparent;*/ -webkit-transition-duration: 0.15s; -moz-transition-duration: 0.15s; -o-transition-duration: 0.15s; transition-duration: 0.15s; } .hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -ms-transform: scale(1.2); -o-transform: scale(1.2); transform: scale(1.2); /*transform-origin: 50 50%; -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); */ image-rendering: optimizeSpeed; /* */ image-rendering: -moz-crisp-edges; /* Firefox */ image-rendering: -o-crisp-edges; /* Opera */ image-rendering: -webkit-optimize-contrast; /* Chrome (and Safari) */ image-rendering: optimize-contrast; /* CSS3 Proposed */ -ms-interpolation-mode: nearest-neighbor; /* IE8+ */ } @-webkit-keyframes rotatey2 { 0% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} 25% {transform:rotate(1deg); -ms-transform:rotate(1deg); -moz-transform:rotate(1deg); -webkit-transform:rotate(1deg); -o-transform:rotate(1deg);} 50% {transform:rotate(-1deg); -ms-transform:rotate(-1deg); -moz-transform:rotate(-1deg); -webkit-transform:rotate(-1deg); -o-transform:rotate(-1deg);} 100% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} } @-moz-keyframes rotatey2 { 0% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} 25% {transform:rotate(1deg); -ms-transform:rotate(1deg); -moz-transform:rotate(1deg); -webkit-transform:rotate(1deg); -o-transform:rotate(1deg);} 50% {transform:rotate(-1deg); -ms-transform:rotate(-1deg); -moz-transform:rotate(-1deg); -webkit-transform:rotate(-1deg); -o-transform:rotate(-1deg);} 100% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} } @-o-keyframes rotatey2 { 0% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} 25% {transform:rotate(1deg); -ms-transform:rotate(1deg); -moz-transform:rotate(1deg); -webkit-transform:rotate(1deg); -o-transform:rotate(1deg);} 50% {transform:rotate(-1deg); -ms-transform:rotate(-1deg); -moz-transform:rotate(-1deg); -webkit-transform:rotate(-1deg); -o-transform:rotate(-1deg);} 100% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} } @keyframes rotatey2 { 0% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} 25% {transform:rotate(1deg); -ms-transform:rotate(1deg); -moz-transform:rotate(1deg); -webkit-transform:rotate(1deg); -o-transform:rotate(1deg);} 50% {transform:rotate(-1deg); -ms-transform:rotate(-1deg); -moz-transform:rotate(-1deg); -webkit-transform:rotate(-1deg); -o-transform:rotate(-1deg);} 100% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} } /* Wobble To Top Right */ @-webkit-keyframes hvr-wobble-to-top-right { 16.65% { -webkit-transform: translate(8px, -8px); transform: translate(8px, -8px); } 33.3% { -webkit-transform: translate(-6px, 6px); transform: translate(-6px, 6px); } 49.95% { -webkit-transform: translate(4px, -4px); transform: translate(4px, -4px); } 66.6% { -webkit-transform: translate(-2px, 2px); transform: translate(-2px, 2px); } 83.25% { -webkit-transform: translate(1px, -1px); transform: translate(1px, -1px); } 100% { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } @-moz-keyframes hvr-wobble-to-top-right { 16.65% { -webkit-transform: translate(8px, -8px); -moz-transform: translate(8px, -8px); transform: translate(8px, -8px); } 33.3% { -webkit-transform: translate(-6px, 6px); -moz-transform: translate(-6px, 6px); transform: translate(-6px, 6px); } 49.95% { -webkit-transform: translate(4px, -4px); -moz-transform: translate(4px, -4px); transform: translate(4px, -4px); } 66.6% { -webkit-transform: translate(-2px, 2px); -moz-transform: translate(-2px, 2px); transform: translate(-2px, 2px); } 83.25% { -webkit-transform: translate(1px, -1px); -moz-transform: translate(1px, -1px); transform: translate(1px, -1px); } 100% { -webkit-transform: translate(0, 0); -moz-transform: translate(0, 0); transform: translate(0, 0); } } @-o-keyframes hvr-wobble-to-top-right { 16.65% { -webkit-transform: translate(8px, -8px); -o-transform: translate(8px, -8px); transform: translate(8px, -8px); } 33.3% { -webkit-transform: translate(-6px, 6px); -o-transform: translate(-6px, 6px); transform: translate(-6px, 6px); } 49.95% { -webkit-transform: translate(4px, -4px); -o-transform: translate(4px, -4px); transform: translate(4px, -4px); } 66.6% { -webkit-transform: translate(-2px, 2px); -o-transform: translate(-2px, 2px); transform: translate(-2px, 2px); } 83.25% { -webkit-transform: translate(1px, -1px); -o-transform: translate(1px, -1px); transform: translate(1px, -1px); } 100% { -webkit-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } } @keyframes hvr-wobble-to-top-right { 16.65% { -webkit-transform: translate(8px, -8px); -moz-transform: translate(8px, -8px); -o-transform: translate(8px, -8px); transform: translate(8px, -8px); } 33.3% { -webkit-transform: translate(-6px, 6px); -moz-transform: translate(-6px, 6px); -o-transform: translate(-6px, 6px); transform: translate(-6px, 6px); } 49.95% { -webkit-transform: translate(4px, -4px); -moz-transform: translate(4px, -4px); -o-transform: translate(4px, -4px); transform: translate(4px, -4px); } 66.6% { -webkit-transform: translate(-2px, 2px); -moz-transform: translate(-2px, 2px); -o-transform: translate(-2px, 2px); transform: translate(-2px, 2px); } 83.25% { -webkit-transform: translate(1px, -1px); -moz-transform: translate(1px, -1px); -o-transform: translate(1px, -1px); transform: translate(1px, -1px); } 100% { -webkit-transform: translate(0, 0); -moz-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } } /*.hvr-wobble-to-top-right:hover, .hvr-wobble-to-top-right:focus, .hvr-wobble-to-top-right:active {*/ /* Wobble Top */ @-webkit-keyframes hvr-wobble-top { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } @-moz-keyframes hvr-wobble-top { 16.65% { -webkit-transform: skew(-12deg); -moz-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); -moz-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); -moz-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); -moz-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); -moz-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); -moz-transform: skew(0); transform: skew(0); } } @-o-keyframes hvr-wobble-top { 16.65% { -webkit-transform: skew(-12deg); -o-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); -o-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); -o-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); -o-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); -o-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); -o-transform: skew(0); transform: skew(0); } } @keyframes hvr-wobble-top { 16.65% { -webkit-transform: skew(-12deg); -moz-transform: skew(-12deg); -o-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); -moz-transform: skew(10deg); -o-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); -moz-transform: skew(-6deg); -o-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); -moz-transform: skew(4deg); -o-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); -moz-transform: skew(-2deg); -o-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); -moz-transform: skew(0); -o-transform: skew(0); transform: skew(0); } } .blocktitle { font-family: 'Myriadsetpro', sans-serif; white-space: nowrap; font-size:-webkit-calc(10.5px - -0.5vw); font-size:-moz-calc(10.5px - -0.5vw); font-size:calc(10.5px - -0.5vw); font-weight:900; text-transform: uppercase; opacity:0; -webkit-animation-duration: 1s; -moz-animation-duration: 1s; -o-animation-duration: 1s; animation-duration: 1s; text-shadow: 1px 0px 2px #e3e2e2; position: relative; margin-left: auto; margin-right: auto; clear:both; bottom:-10px; } @-webkit-keyframes fadeInUp { from { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @-moz-keyframes fadeInUp { from { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); -moz-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } to { opacity: 1; -webkit-transform: none; -moz-transform: none; transform: none; } } @-o-keyframes fadeInUp { from { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } to { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none; } } @keyframes fadeInUp { from { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); -moz-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } to { opacity: 1; -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; } } @-webkit-keyframes bounceInLeft { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); } 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { -webkit-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } to { -webkit-transform: none; transform: none; opacity: 1; } } @-moz-keyframes bounceInLeft { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); -moz-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); } 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0); -moz-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { -webkit-transform: translate3d(-10px, 0, 0); -moz-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { -webkit-transform: translate3d(5px, 0, 0); -moz-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } to { -webkit-transform: none; -moz-transform: none; transform: none; opacity: 1; } } @-o-keyframes bounceInLeft { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); } 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { -webkit-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } to { -webkit-transform: none; -o-transform: none; transform: none; opacity: 1; } } @keyframes bounceInLeft { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); -moz-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); } 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0); -moz-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { -webkit-transform: translate3d(-10px, 0, 0); -moz-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { -webkit-transform: translate3d(5px, 0, 0); -moz-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } to { -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; opacity: 1; } } /*.bounceInLeft { -webkit-animation-name: bounceInLeft; animation-name: bounceInLeft; animation-fill-mode:forwards; animation:bounceInLeft; -webkit-animation:bounceInLeft; } */ .box2 p::before ,.box2 p::after { left: 56% !important; } /*.cl-effect-12 p { border-bottom: 2px solid #000; content: attr(data-hover); -webkit-transition: max-width 0.5s; -moz-transition: max-width 0.5s; transition: max-width 0.5s; }*/ @-webkit-keyframes cleffect { to { -webkit-transform: none; -moz-transform: noen; transform: none; }} @-moz-keyframes cleffect { to { -webkit-transform: none; -moz-transform: noen; transform: none; }} @-o-keyframes cleffect { to { -webkit-transform: none; -moz-transform: noen; -o-transform: none; transform: none; }} @keyframes cleffect { to { -webkit-transform: none; -moz-transform: noen; -o-transform: none; transform: none; }} @-webkit-keyframes cleffect-st { to { opacity: 1; -webkit-transform: translateX(-50%) translateY(-50%) scale(1); -moz-transform: translateX(-50%) translateY(-50%) scale(1); transform: translateX(-50%) translateY(-50%) scale(1); max-width: 100%; }} @-moz-keyframes cleffect-st { to { opacity: 1; -webkit-transform: translateX(-50%) translateY(-50%) scale(1); -moz-transform: translateX(-50%) translateY(-50%) scale(1); transform: translateX(-50%) translateY(-50%) scale(1); max-width: 100%; }} @-o-keyframes cleffect-st { to { opacity: 1; -webkit-transform: translateX(-50%) translateY(-50%) scale(1); -moz-transform: translateX(-50%) translateY(-50%) scale(1); -o-transform: translateX(-50%) translateY(-50%) scale(1); transform: translateX(-50%) translateY(-50%) scale(1); max-width: 100%; }} @keyframes cleffect-st { to { opacity: 1; -webkit-transform: translateX(-50%) translateY(-50%) scale(1); -moz-transform: translateX(-50%) translateY(-50%) scale(1); -o-transform: translateX(-50%) translateY(-50%) scale(1); transform: translateX(-50%) translateY(-50%) scale(1); max-width: 100%; }} @-webkit-keyframes smooth { 0% { opacity: 1;} 100% { opacity: 0; } } @-moz-keyframes smooth { 0% { opacity: 1;} 100% { opacity: 0; } } @-o-keyframes smooth { 0% { opacity: 1;} 100% { opacity: 0; } } @keyframes smooth { 0% { opacity: 1;} 100% { opacity: 0; } } .anim_two::before, .anim_two::after { left: 56% !important; } /* .cl-effect-12:hover p:before, .cl-effect-12:hover p:after, .cl-effect-12:focus p:after, .cl-effect-12:focus p:after { opacity: 1; -webkit-transform: translateX(-50%) translateY(-50%) scale(1); -moz-transform: translateX(-50%) translateY(-50%) scale(1); transform: translateX(-50%) translateY(-50%) scale(1); max-width: 100%; -webkit-animation: smooth .5s ease-out; -moz-animation: smooth .5s ease-out; -o-animation: smooth .5s ease-out; -ms-animation: smooth .5s ease-out; animation: smooth .5s ease-out; animation-fill-mode:forwards; -webkit-animation-fill-mode:forwards; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; animation-delay:3s; -webkit-animation-delay:3s; } */ /* 9 blocks */ .mainContent { -webkit-perspective: 80em; -moz-perspective: 80em; perspective: 80em; margin: 0 auto; } .box { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-box-shadow: 0px 0px 50px rgba(122, 227, 126, 0.35); -moz-box-shadow: 0px 0px 50px rgba(122, 227, 126, 0.35); box-shadow: 0px 0px 50px rgba(122, 227, 126, 0.35); opacity: 0; } .bx1 { -webkit-animation-delay: 0s !important; -moz-animation-delay: 0s !important; -o-animation-delay: 0s !important; animation-delay: 0s !important; z-index: 9; } .box:nth-child(1) .box-banner { } .bx2 { -webkit-animation-delay: 0.10666667s !important; -moz-animation-delay: 0.10666667s !important; -o-animation-delay: 0.10666667s !important; animation-delay: 0.10666667s !important; z-index: 8; } .box:nth-child(2) .box-banner { } .bx3 { -webkit-animation-delay: 0.21333333s !important; -moz-animation-delay: 0.21333333s !important; -o-animation-delay: 0.21333333s !important; animation-delay: 0.21333333s !important; z-index: 7; } .box:nth-child(3) .box-banner { } .bx4 { -webkit-animation-delay: 0.32s !important; -moz-animation-delay: 0.32s !important; -o-animation-delay: 0.32s !important; animation-delay: 0.32s !important; z-index: 6; } .box:nth-child(4) .box-banner { } .bx5 { -webkit-animation-delay: 0.42666667s !important; -moz-animation-delay: 0.42666667s !important; -o-animation-delay: 0.42666667s !important; animation-delay: 0.42666667s !important; z-index: 5; } .box:nth-child(5) .box-banner { } .bx6 { -webkit-animation-delay: 0.53333333s !important; -moz-animation-delay: 0.53333333s !important; -o-animation-delay: 0.53333333s !important; animation-delay: 0.53333333s !important; z-index: 4; } .box:nth-child(6) .box-banner { } .bx7 { -webkit-animation-delay: 0.64s !important; -moz-animation-delay: 0.64s !important; -o-animation-delay: 0.64s !important; animation-delay: 0.64s !important; z-index: 3; } .box:nth-child(7) .box-banner { } .bx8 { -webkit-animation-delay: 0.74666667s !important; -moz-animation-delay: 0.74666667s !important; -o-animation-delay: 0.74666667s !important; animation-delay: 0.74666667s !important; z-index: 2; } .box:nth-child(8) .box-banner { } .bx9 { -webkit-animation-delay: 0.85333333s !important; -moz-animation-delay: 0.85333333s !important; -o-animation-delay: 0.85333333s !important; animation-delay: 0.85333333s !important; z-index: 1; } .box:nth-child(9) .box-banner { } .box h2 { margin: 0; margin-bottom: 10px; } .box p { margin: 0; } .box .box-banner { background: #CCCCCC; height: 80px; margin: 0px -15px; margin-bottom: 6px; background-position: center center; } .box.no-text .box-banner { height: 129px; } .begin .box { opacity: 1; -webkit-animation: animateBoxesFromTopToBottom 1.2s backwards; -moz-animation: animateBoxesFromTopToBottom 1.2s backwards; -o-animation: animateBoxesFromTopToBottom 1.2s backwards; animation: animateBoxesFromTopToBottom 1.2s backwards; } @-webkit-keyframes animateBoxesFromTopToBottom { 0% { -webkit-transform: rotateX(90deg) translateY(-150%); transform: rotateX(90deg) translateY(-150%); opacity: 0; } 100% { -webkit-transform: rotateX(0deg) translateY(0%); transform: rotateX(0deg) translateY(0%); opacity: 1; } } @-moz-keyframes animateBoxesFromTopToBottom { 0% { -moz-transform: rotateX(90deg) translateY(-150%); transform: rotateX(90deg) translateY(-150%); opacity: 0; } 100% { -moz-transform: rotateX(0deg) translateY(0%); transform: rotateX(0deg) translateY(0%); opacity: 1; } } @-o-keyframes animateBoxesFromTopToBottom { 0% { transform: rotateX(90deg) translateY(-150%); opacity: 0; } 100% { transform: rotateX(0deg) translateY(0%); opacity: 1; } } @keyframes animateBoxesFromTopToBottom { 0% { -webkit-transform: rotateX(90deg) translateY(-150%); -moz-transform: rotateX(90deg) translateY(-150%); transform: rotateX(90deg) translateY(-150%); opacity: 0; } 100% { -webkit-transform: rotateX(0deg) translateY(0%); -moz-transform: rotateX(0deg) translateY(0%); transform: rotateX(0deg) translateY(0%); opacity: 1; } } @-webkit-keyframes fadeInLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @-moz-keyframes fadeInLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: none; -moz-transform: none; transform: none; } } @-o-keyframes fadeInLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none; } } @keyframes fadeInLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; } } .fadeInLeft { -webkit-animation-name: fadeInLeft; -moz-animation-name: fadeInLeft; -o-animation-name: fadeInLeft; animation-name: fadeInLeft; } .revealOnScroll { opacity: 0; } /* super-button */ .wrapperb { height: 100%; display:inline-block; /* background: rgba(0, 0, 0, 0.1);*/ } /* .wrapperb:after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .innerb { position: absolute; } */ .buttonn:hover { background: rgba(158, 255, 171, 0.1);} .buttonn { position: relative; display: block; width: 190px; height: 30px; color: green; font-size: 16px; line-height: 200%; text-decoration: none; text-align: center; z-index: 1; } .buttonn span { position: absolute; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; -webkit-transition-duration: 0.2s; transition-duration: 0.2s; -moz-transition-timing-function: ease-out; -o-transition-timing-function: ease-out; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; z-index: 1; } .buttonn .borderr { border: 1px solid green; top: 0; bottom: 0; left: 0; right: 0; /* background-color: rgba(0, 0, 0, 0.1);*/ } .buttonn .topp, .buttonn .bottomm, .buttonn .leftt, .buttonn .rightt { background-color: green; height: 1px; width: 0; } .buttonn .leftt, .buttonn .rightt { height: 0; width: 1px; } .buttonn .topp { top: -5px; left: -15px; } .buttonn .bottomm { bottom: -5px; right: -15px; } .buttonn .leftt { top: -15px; right: -5px; } .buttonn .rightt { bottom: -15px; left: -5px; } .buttonn:hover { color: green; /* text-decoration: underline; text-decoration-style: dotted; text-decoration-color: #36623e;*/ } .textt {display:inline-block; line-height:1.1em; } .buttonn:hover .textt { border-bottom: 1px darkgreen dashed; } .buttonn:hover .borderr { cursor:pointer; top: -5px; bottom: -5px; left: -5px; right: -5px; } .buttonn:hover .topp, .buttonn:hover .bottomm { width: 190px; } .buttonn:hover .leftt, .buttonn:hover .rightt { height: 30px; } .buttonn:hover .topp { left: -5px; } .buttonn:hover .bottomm { right: -5px; } .buttonn:hover .leftt { top: -5px; } .buttonn:hover .rightt { bottom: -5px; } .buttonn .textt { position: relative; letter-spacing: .03em; } @media (max-width:992px) { .buttonn { width: 154px; height: 25px; line-height: 170%; font-size: 15px; } .buttonn:hover .topp, .buttonn:hover .bottomm { width: 154px; } .buttonn:hover .leftt, .buttonn:hover .rightt { height: 25px; } .buttonn .textt { position: relative; letter-spacing: .03em; } } /* block.css */ .B1 { display: inline-block; } /* A */ .p-item-title { margin-top: 5px; font-family: "Myriad Pro Semibold", sans-serif; font-size: 18px; } /*.mt5 { margin-top: 5px;}*/ .call-back { cursor:pointer; display: inline-block; *display: inline; width:128px; padding: 7px 25px 7px 18px; font-size:17px; line-height: 25px; font-weight: normal; text-align: center; text-shadow: 0 1px 1px #0C077B; color: #fff; background-color: #68b075; background-image: -webkit-linear-gradient(to bottom, #57a669 40%, #82bd88 64%, #a8d2a5 96%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #57a669), color-stop(64%, #82bd88), color-stop(96%, #a8d2a5)); background-image: -webkit-linear-gradient(top, #57a669 40%, #82bd88 64%, #a8d2a5 96%); background-image: -moz-linear-gradient(top, #57a669 40%, #82bd88 64%, #a8d2a5 96%); background-image: -o-linear-gradient(top, #57a669 40%, #82bd88 64%, #a8d2a5 96%); background-image: linear-gradient(to bottom, #57a669 40%, #82bd88 64%, #a8d2a5 96%); background-repeat: repeat-x; border:none; text-decoration: none; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; *zoom: 1; -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.85); -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.85); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.85); } .call-back:hover { background-position: 0 15px; -webkit-transition: background-position 0.1s linear; -moz-transition: background-position 0.1s linear; -o-transition: background-position 0.1s linear; transition: background-position 0.1s linear; color: #fff; text-decoration: none; } .call-back:active { outline: 0; position: relative; top:1px; } @media (min-width:768px) { .span3 {float:left; } } @media (max-width:767px) { .span3{ margin: 0 auto !important; margin-bottom:40px !important; }} .span3 { width: 214px !important; /* height: 379px;*/ -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px; /* height:310px; width: 230px;*/ border:2px solid green; background: #f2fdec; margin-top: 30px; text-align: center; } .col-centered{ float: none; margin: 0 auto; } .span3 a:focus { color: #fff; } /* new */ .span3{ -webkit-transition-duration: 0.5s; /*Webkit: Animation duration*/ -moz-transition-duration: 0.5s; /*Mozilla duration version*/ -o-transition-duration: 0.5s; /*Opera duration version*/ transition-duration: 0.5s; /*Opera duration version*/ opacity: 0; /*initial opacity of images*/ margin: 0 0 5px 0; /*margin between images*/ } @media (min-width:768px) { .span3[data-nohover="0"]:hover{ -webkit-transform:scale(1.2); /*Webkit: Scale up image to 1.2x original size*/ -moz-transform:scale(1.2); /*Mozilla scale version*/ -o-transform:scale(1.2); /*Opera scale version*/ -ms-transform:scale(1.2); transform:scale(1.2); /*Opera scale version*/ box-shadow:0px 0px 30px gray; /*CSS3 shadow: 30px blurred shadow all around image*/ -webkit-box-shadow:0px 0px 30px gray; /*Safari shadow version*/ -moz-box-shadow:0px 0px 30px gray; /*Mozilla shadow version*/ box-shadow:0px 0px 30px gray; /*Mozilla shadow version*/ opacity: 1; } } @media (min-width: 992px) { .pull-right-md { float: right; }} .pull-center-md { float: none; margin: 0 auto !important; } @media (max-width: 991px) { .pull-right-md, .pull-left-md { float: none; margin: 0 auto !important; } } #idmodal h3, #idmodal h3 { margin: 8px 0 0; text-align: center; color: #488e57; font-size: -webkit-calc(13px - -0.5vw); font-size: -moz-calc(13px - -0.5vw); font-size: calc(13px - -0.5vw); } #idmodal .modal-header { padding: 5px 12px; border-bottom: 1px solid #829a87; } .sel p {font-weight:700; display:inline;} form sup { color:red } @media (min-width: 768px) { .modal-sm { width:350px !important }} @media (max-width: 768px) { .modal-sm { width:70% !important }} .modal-footer { font-size: 11px !important; } .modal-footer { padding-right: 5px; padding-left: 5px; text-align:center; } .blockBB { border: 4px solid #427e50; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25); -moz-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25); box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25); -webkit-transition: all .15s ease-out; -o-transition: all .15s ease-out; -moz-transition: all .15s ease-out; transition: all .15s ease-out; -webkit-transform:scale(0.95); -moz-transform:scale(0.95); -ms-transform:scale(0.95); -o-transform:scale(0.95); transform:scale(0.95); width:auto; height: auto; display: inline-block; /* display:contents; */ } .blockBB:hover { -webkit-transform:scale(1); -moz-transform:scale(1); -ms-transform:scale(1); -o-transform:scale(1); transform:scale(1); border: 4px solid #ffc107; /* #5ba96d; orange #ffc107;*/ -webkit-box-shadow: 4px 5px 15px rgba(0,0,0,0.7); -moz-box-shadow: 4px 5px 15px rgba(0,0,0,0.7); box-shadow: 4px 5px 15px rgba(0,0,0,0.7); } /* gallery */ .gallery-index { text-align: center; } .butt a {margin-bottom:20px; margin-top:8px}
frontend/web/assets/css/boxes2.css
.box { top:0; /* margin-left:-100px;*/ } @-webkit-keyframes movingbox{ from{left:50%;-webkit-transform: rotate(0deg); opacity:0} to{left:0;-webkit-transform: rotate(360deg); opacity:1} } /*#index .box1, #index .box2, #index .box3, #index .box4 { opacity:0;} */ #index .box1 { -webkit-animation:slideInRight 1s forwards; -moz-animation:slideInRight 1s forwards; -o-animation:slideInRight 1s forwards; animation:slideInRight 1s forwards; -webkit-animation-delay: 1.1s; -moz-animation-delay: 1.1s; -o-animation-delay: 1.1s; animation-delay: 1.1s; } #index .box2 { -webkit-animation:flipInXX 1s forwards; -moz-animation:flipInXX 1s forwards; -o-animation:flipInXX 1s forwards; animation:flipInXX 1s forwards; -webkit-animation-delay: 1s; -moz-animation-delay: 1s; -o-animation-delay: 1s; animation-delay: 1s; } #index .box3 { -webkit-animation:fadeInN 1s forwards; -moz-animation:fadeInN 1s forwards; -o-animation:fadeInN 1s forwards; animation:fadeInN 1s forwards; -webkit-animation-delay: 1.3s; -moz-animation-delay: 1.3s; -o-animation-delay: 1.3s; animation-delay: 1.3s; } #index .box4 { -webkit-animation:expandUp 1s forwards; -moz-animation:expandUp 1s forwards; -o-animation:expandUp 1s forwards; animation:expandUp 1s forwards; -webkit-animation-delay: 1.4s; -moz-animation-delay: 1.4s; -o-animation-delay: 1.4s; animation-delay: 1.4s; } #index .box5 { -webkit-animation:bigEntrance 1.3s forwards; -moz-animation:bigEntrance 1.3s forwards; -o-animation:bigEntrance 1.3s forwards; animation:bigEntrance 1.3s forwards; -webkit-animation-delay: 1.5s; -moz-animation-delay: 1.5s; -o-animation-delay: 1.5s; animation-delay: 1.5s; } #index .box6 { -webkit-animation:expandUp 1s forwards; -moz-animation:expandUp 1s forwards; -o-animation:expandUp 1s forwards; animation:expandUp 1s forwards; -webkit-animation-delay: 1.6s; -moz-animation-delay: 1.6s; -o-animation-delay: 1.6s; animation-delay: 1.6s; } @-webkit-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @-moz-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @-o-keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } } .fadeIn { -webkit-animation-name: fadeIn; -moz-animation-name: fadeIn; -o-animation-name: fadeIn; animation-name: fadeIn; } @-webkit-keyframes flipInXX { from { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg) translateX(150px); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg) translateX(30%); transform: perspective(400px) rotate3d(1, 0, 0, -20deg) translateX(30%); -webkit-animation-timing-function: ease-in; animation-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } 95% { -webkit-transform: perspective(400px); transform: perspective(400px); } to { -webkit-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-moz-keyframes flipInXX { from { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; -moz-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; -moz-animation-timing-function: ease-in; animation-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } 95% { -webkit-transform: perspective(400px); -moz-transform: perspective(400px); transform: perspective(400px); } to { -moz-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @-o-keyframes flipInXX { from { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } 95% { -webkit-transform: perspective(400px); transform: perspective(400px); } to { -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } @keyframes flipInXX { from { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, 90deg); transform: perspective(400px) rotate3d(1, 0, 0, 90deg); -webkit-animation-timing-function: ease-in; -moz-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in; opacity: 0; } 40% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, -20deg); transform: perspective(400px) rotate3d(1, 0, 0, -20deg); -webkit-animation-timing-function: ease-in; -moz-animation-timing-function: ease-in; -o-animation-timing-function: ease-in; animation-timing-function: ease-in; } 60% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, 10deg); transform: perspective(400px) rotate3d(1, 0, 0, 10deg); opacity: 1; } 80% { -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); -moz-transform: perspective(400px) rotate3d(1, 0, 0, -5deg); transform: perspective(400px) rotate3d(1, 0, 0, -5deg); } 95% { -webkit-transform: perspective(400px); -moz-transform: perspective(400px); transform: perspective(400px); } to { -webkit-transform: translate(0, 0); -moz-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); opacity: 1; } } /** * SlideInRight Keyframes Animation */ @-webkit-keyframes slideInRight { 0% { -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity:1; } } @-moz-keyframes slideInRight { 0% { -webkit-transform: translate3d(100%, 0, 0); -moz-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity:1; } } @-o-keyframes slideInRight { 0% { -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity:1; } } @keyframes slideInRight { 0% { -webkit-transform: translate3d(100%, 0, 0); -moz-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); opacity:1; } } @-moz-keyframes slideInLeft { 0% { -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: none; -moz-transform: none; transform: none; opacity:1; } } @-o-keyframes slideInLeft { 0% { transform: translate3d(-100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: none; -o-transform: none; transform: none; opacity:1; } } @keyframes slideInLeft { 0% { -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; opacity:1; } } @-webkit-keyframes slideInLeft { 0% { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); visibility: visible; opacity:0; } 100% { -webkit-transform: none; transform: none; opacity:1; } } /* .mainblock { padding-left:7%; padding-right:7%} */ /*.mainblock img:nth-child(2) { margin-left:35px} .mainblock img:last-child { margin-left: 28px; margin-top: -9px; } */ /* Hover section */ .hvr-bounce-in { display: inline-block; vertical-align: middle; /* -webkit-transform: perspective(1px) translateZ(0); transform: perspective(1px) translateZ(0); box-shadow: 0 0 1px transparent;*/ -webkit-transition-duration: 0.15s; -moz-transition-duration: 0.15s; -o-transition-duration: 0.15s; transition-duration: 0.15s; } .hvr-bounce-in:hover, .hvr-bounce-in:focus, .hvr-bounce-in:active { -webkit-transform: scale(1.2); -moz-transform: scale(1.2); -ms-transform: scale(1.2); -o-transform: scale(1.2); transform: scale(1.2); /*transform-origin: 50 50%; -webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36); */ image-rendering: optimizeSpeed; /* */ image-rendering: -moz-crisp-edges; /* Firefox */ image-rendering: -o-crisp-edges; /* Opera */ image-rendering: -webkit-optimize-contrast; /* Chrome (and Safari) */ image-rendering: optimize-contrast; /* CSS3 Proposed */ -ms-interpolation-mode: nearest-neighbor; /* IE8+ */ } @-webkit-keyframes rotatey2 { 0% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} 25% {transform:rotate(1deg); -ms-transform:rotate(1deg); -moz-transform:rotate(1deg); -webkit-transform:rotate(1deg); -o-transform:rotate(1deg);} 50% {transform:rotate(-1deg); -ms-transform:rotate(-1deg); -moz-transform:rotate(-1deg); -webkit-transform:rotate(-1deg); -o-transform:rotate(-1deg);} 100% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} } @-moz-keyframes rotatey2 { 0% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} 25% {transform:rotate(1deg); -ms-transform:rotate(1deg); -moz-transform:rotate(1deg); -webkit-transform:rotate(1deg); -o-transform:rotate(1deg);} 50% {transform:rotate(-1deg); -ms-transform:rotate(-1deg); -moz-transform:rotate(-1deg); -webkit-transform:rotate(-1deg); -o-transform:rotate(-1deg);} 100% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} } @-o-keyframes rotatey2 { 0% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} 25% {transform:rotate(1deg); -ms-transform:rotate(1deg); -moz-transform:rotate(1deg); -webkit-transform:rotate(1deg); -o-transform:rotate(1deg);} 50% {transform:rotate(-1deg); -ms-transform:rotate(-1deg); -moz-transform:rotate(-1deg); -webkit-transform:rotate(-1deg); -o-transform:rotate(-1deg);} 100% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} } @keyframes rotatey2 { 0% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} 25% {transform:rotate(1deg); -ms-transform:rotate(1deg); -moz-transform:rotate(1deg); -webkit-transform:rotate(1deg); -o-transform:rotate(1deg);} 50% {transform:rotate(-1deg); -ms-transform:rotate(-1deg); -moz-transform:rotate(-1deg); -webkit-transform:rotate(-1deg); -o-transform:rotate(-1deg);} 100% {transform:rotate(0deg); -ms-transform:rotate(0deg); -moz-transform:rotate(0deg); -webkit-transform:rotate(0deg); -o-transform:rotate(0deg);} } /* Wobble To Top Right */ @-webkit-keyframes hvr-wobble-to-top-right { 16.65% { -webkit-transform: translate(8px, -8px); transform: translate(8px, -8px); } 33.3% { -webkit-transform: translate(-6px, 6px); transform: translate(-6px, 6px); } 49.95% { -webkit-transform: translate(4px, -4px); transform: translate(4px, -4px); } 66.6% { -webkit-transform: translate(-2px, 2px); transform: translate(-2px, 2px); } 83.25% { -webkit-transform: translate(1px, -1px); transform: translate(1px, -1px); } 100% { -webkit-transform: translate(0, 0); transform: translate(0, 0); } } @-moz-keyframes hvr-wobble-to-top-right { 16.65% { -webkit-transform: translate(8px, -8px); -moz-transform: translate(8px, -8px); transform: translate(8px, -8px); } 33.3% { -webkit-transform: translate(-6px, 6px); -moz-transform: translate(-6px, 6px); transform: translate(-6px, 6px); } 49.95% { -webkit-transform: translate(4px, -4px); -moz-transform: translate(4px, -4px); transform: translate(4px, -4px); } 66.6% { -webkit-transform: translate(-2px, 2px); -moz-transform: translate(-2px, 2px); transform: translate(-2px, 2px); } 83.25% { -webkit-transform: translate(1px, -1px); -moz-transform: translate(1px, -1px); transform: translate(1px, -1px); } 100% { -webkit-transform: translate(0, 0); -moz-transform: translate(0, 0); transform: translate(0, 0); } } @-o-keyframes hvr-wobble-to-top-right { 16.65% { -webkit-transform: translate(8px, -8px); -o-transform: translate(8px, -8px); transform: translate(8px, -8px); } 33.3% { -webkit-transform: translate(-6px, 6px); -o-transform: translate(-6px, 6px); transform: translate(-6px, 6px); } 49.95% { -webkit-transform: translate(4px, -4px); -o-transform: translate(4px, -4px); transform: translate(4px, -4px); } 66.6% { -webkit-transform: translate(-2px, 2px); -o-transform: translate(-2px, 2px); transform: translate(-2px, 2px); } 83.25% { -webkit-transform: translate(1px, -1px); -o-transform: translate(1px, -1px); transform: translate(1px, -1px); } 100% { -webkit-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } } @keyframes hvr-wobble-to-top-right { 16.65% { -webkit-transform: translate(8px, -8px); -moz-transform: translate(8px, -8px); -o-transform: translate(8px, -8px); transform: translate(8px, -8px); } 33.3% { -webkit-transform: translate(-6px, 6px); -moz-transform: translate(-6px, 6px); -o-transform: translate(-6px, 6px); transform: translate(-6px, 6px); } 49.95% { -webkit-transform: translate(4px, -4px); -moz-transform: translate(4px, -4px); -o-transform: translate(4px, -4px); transform: translate(4px, -4px); } 66.6% { -webkit-transform: translate(-2px, 2px); -moz-transform: translate(-2px, 2px); -o-transform: translate(-2px, 2px); transform: translate(-2px, 2px); } 83.25% { -webkit-transform: translate(1px, -1px); -moz-transform: translate(1px, -1px); -o-transform: translate(1px, -1px); transform: translate(1px, -1px); } 100% { -webkit-transform: translate(0, 0); -moz-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); } } /*.hvr-wobble-to-top-right:hover, .hvr-wobble-to-top-right:focus, .hvr-wobble-to-top-right:active {*/ /* Wobble Top */ @-webkit-keyframes hvr-wobble-top { 16.65% { -webkit-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); transform: skew(0); } } @-moz-keyframes hvr-wobble-top { 16.65% { -webkit-transform: skew(-12deg); -moz-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); -moz-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); -moz-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); -moz-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); -moz-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); -moz-transform: skew(0); transform: skew(0); } } @-o-keyframes hvr-wobble-top { 16.65% { -webkit-transform: skew(-12deg); -o-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); -o-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); -o-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); -o-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); -o-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); -o-transform: skew(0); transform: skew(0); } } @keyframes hvr-wobble-top { 16.65% { -webkit-transform: skew(-12deg); -moz-transform: skew(-12deg); -o-transform: skew(-12deg); transform: skew(-12deg); } 33.3% { -webkit-transform: skew(10deg); -moz-transform: skew(10deg); -o-transform: skew(10deg); transform: skew(10deg); } 49.95% { -webkit-transform: skew(-6deg); -moz-transform: skew(-6deg); -o-transform: skew(-6deg); transform: skew(-6deg); } 66.6% { -webkit-transform: skew(4deg); -moz-transform: skew(4deg); -o-transform: skew(4deg); transform: skew(4deg); } 83.25% { -webkit-transform: skew(-2deg); -moz-transform: skew(-2deg); -o-transform: skew(-2deg); transform: skew(-2deg); } 100% { -webkit-transform: skew(0); -moz-transform: skew(0); -o-transform: skew(0); transform: skew(0); } } .blocktitle { font-family: 'Myriadsetpro', sans-serif; white-space: nowrap; font-size:-webkit-calc(10.5px - -0.5vw); font-size:-moz-calc(10.5px - -0.5vw); font-size:calc(10.5px - -0.5vw); font-weight:900; text-transform: uppercase; opacity:0; -webkit-animation-duration: 1s; -moz-animation-duration: 1s; -o-animation-duration: 1s; animation-duration: 1s; text-shadow: 1px 0px 2px #e3e2e2; position: relative; margin-left: auto; margin-right: auto; clear:both; bottom:-10px; } @-webkit-keyframes fadeInUp { from { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @-moz-keyframes fadeInUp { from { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); -moz-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } to { opacity: 1; -webkit-transform: none; -moz-transform: none; transform: none; } } @-o-keyframes fadeInUp { from { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } to { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none; } } @keyframes fadeInUp { from { opacity: 0; -webkit-transform: translate3d(0, 100%, 0); -moz-transform: translate3d(0, 100%, 0); transform: translate3d(0, 100%, 0); } to { opacity: 1; -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; } } @-webkit-keyframes bounceInLeft { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); } 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { -webkit-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } to { -webkit-transform: none; transform: none; opacity: 1; } } @-moz-keyframes bounceInLeft { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); -moz-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); } 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0); -moz-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { -webkit-transform: translate3d(-10px, 0, 0); -moz-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { -webkit-transform: translate3d(5px, 0, 0); -moz-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } to { -webkit-transform: none; -moz-transform: none; transform: none; opacity: 1; } } @-o-keyframes bounceInLeft { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); } 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { -webkit-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { -webkit-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } to { -webkit-transform: none; -o-transform: none; transform: none; opacity: 1; } } @keyframes bounceInLeft { from, 60%, 75%, 90%, to { -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); -moz-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); -o-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000); } 0% { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } 60% { opacity: 1; -webkit-transform: translate3d(25px, 0, 0); -moz-transform: translate3d(25px, 0, 0); transform: translate3d(25px, 0, 0); } 75% { -webkit-transform: translate3d(-10px, 0, 0); -moz-transform: translate3d(-10px, 0, 0); transform: translate3d(-10px, 0, 0); } 90% { -webkit-transform: translate3d(5px, 0, 0); -moz-transform: translate3d(5px, 0, 0); transform: translate3d(5px, 0, 0); } to { -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; opacity: 1; } } /*.bounceInLeft { -webkit-animation-name: bounceInLeft; animation-name: bounceInLeft; animation-fill-mode:forwards; animation:bounceInLeft; -webkit-animation:bounceInLeft; } */ .box2 p::before ,.box2 p::after { left: 56% !important; } /*.cl-effect-12 p { border-bottom: 2px solid #000; content: attr(data-hover); -webkit-transition: max-width 0.5s; -moz-transition: max-width 0.5s; transition: max-width 0.5s; }*/ @-webkit-keyframes cleffect { to { -webkit-transform: none; -moz-transform: noen; transform: none; }} @-moz-keyframes cleffect { to { -webkit-transform: none; -moz-transform: noen; transform: none; }} @-o-keyframes cleffect { to { -webkit-transform: none; -moz-transform: noen; -o-transform: none; transform: none; }} @keyframes cleffect { to { -webkit-transform: none; -moz-transform: noen; -o-transform: none; transform: none; }} @-webkit-keyframes cleffect-st { to { opacity: 1; -webkit-transform: translateX(-50%) translateY(-50%) scale(1); -moz-transform: translateX(-50%) translateY(-50%) scale(1); transform: translateX(-50%) translateY(-50%) scale(1); max-width: 100%; }} @-moz-keyframes cleffect-st { to { opacity: 1; -webkit-transform: translateX(-50%) translateY(-50%) scale(1); -moz-transform: translateX(-50%) translateY(-50%) scale(1); transform: translateX(-50%) translateY(-50%) scale(1); max-width: 100%; }} @-o-keyframes cleffect-st { to { opacity: 1; -webkit-transform: translateX(-50%) translateY(-50%) scale(1); -moz-transform: translateX(-50%) translateY(-50%) scale(1); -o-transform: translateX(-50%) translateY(-50%) scale(1); transform: translateX(-50%) translateY(-50%) scale(1); max-width: 100%; }} @keyframes cleffect-st { to { opacity: 1; -webkit-transform: translateX(-50%) translateY(-50%) scale(1); -moz-transform: translateX(-50%) translateY(-50%) scale(1); -o-transform: translateX(-50%) translateY(-50%) scale(1); transform: translateX(-50%) translateY(-50%) scale(1); max-width: 100%; }} @-webkit-keyframes smooth { 0% { opacity: 1;} 100% { opacity: 0; } } @-moz-keyframes smooth { 0% { opacity: 1;} 100% { opacity: 0; } } @-o-keyframes smooth { 0% { opacity: 1;} 100% { opacity: 0; } } @keyframes smooth { 0% { opacity: 1;} 100% { opacity: 0; } } .anim_two::before, .anim_two::after { left: 56% !important; } /* .cl-effect-12:hover p:before, .cl-effect-12:hover p:after, .cl-effect-12:focus p:after, .cl-effect-12:focus p:after { opacity: 1; -webkit-transform: translateX(-50%) translateY(-50%) scale(1); -moz-transform: translateX(-50%) translateY(-50%) scale(1); transform: translateX(-50%) translateY(-50%) scale(1); max-width: 100%; -webkit-animation: smooth .5s ease-out; -moz-animation: smooth .5s ease-out; -o-animation: smooth .5s ease-out; -ms-animation: smooth .5s ease-out; animation: smooth .5s ease-out; animation-fill-mode:forwards; -webkit-animation-fill-mode:forwards; -webkit-animation-iteration-count: 1; animation-iteration-count: 1; animation-delay:3s; -webkit-animation-delay:3s; } */ /* 9 blocks */ .mainContent { -webkit-perspective: 80em; -moz-perspective: 80em; perspective: 80em; margin: 0 auto; } .box { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-box-shadow: 0px 0px 50px rgba(122, 227, 126, 0.35); -moz-box-shadow: 0px 0px 50px rgba(122, 227, 126, 0.35); box-shadow: 0px 0px 50px rgba(122, 227, 126, 0.35); opacity: 0; } .bx1 { -webkit-animation-delay: 0s !important; -moz-animation-delay: 0s !important; -o-animation-delay: 0s !important; animation-delay: 0s !important; z-index: 9; } .box:nth-child(1) .box-banner { } .bx2 { -webkit-animation-delay: 0.10666667s !important; -moz-animation-delay: 0.10666667s !important; -o-animation-delay: 0.10666667s !important; animation-delay: 0.10666667s !important; z-index: 8; } .box:nth-child(2) .box-banner { } .bx3 { -webkit-animation-delay: 0.21333333s !important; -moz-animation-delay: 0.21333333s !important; -o-animation-delay: 0.21333333s !important; animation-delay: 0.21333333s !important; z-index: 7; } .box:nth-child(3) .box-banner { } .bx4 { -webkit-animation-delay: 0.32s !important; -moz-animation-delay: 0.32s !important; -o-animation-delay: 0.32s !important; animation-delay: 0.32s !important; z-index: 6; } .box:nth-child(4) .box-banner { } .bx5 { -webkit-animation-delay: 0.42666667s !important; -moz-animation-delay: 0.42666667s !important; -o-animation-delay: 0.42666667s !important; animation-delay: 0.42666667s !important; z-index: 5; } .box:nth-child(5) .box-banner { } .bx6 { -webkit-animation-delay: 0.53333333s !important; -moz-animation-delay: 0.53333333s !important; -o-animation-delay: 0.53333333s !important; animation-delay: 0.53333333s !important; z-index: 4; } .box:nth-child(6) .box-banner { } .bx7 { -webkit-animation-delay: 0.64s !important; -moz-animation-delay: 0.64s !important; -o-animation-delay: 0.64s !important; animation-delay: 0.64s !important; z-index: 3; } .box:nth-child(7) .box-banner { } .bx8 { -webkit-animation-delay: 0.74666667s !important; -moz-animation-delay: 0.74666667s !important; -o-animation-delay: 0.74666667s !important; animation-delay: 0.74666667s !important; z-index: 2; } .box:nth-child(8) .box-banner { } .bx9 { -webkit-animation-delay: 0.85333333s !important; -moz-animation-delay: 0.85333333s !important; -o-animation-delay: 0.85333333s !important; animation-delay: 0.85333333s !important; z-index: 1; } .box:nth-child(9) .box-banner { } .box h2 { margin: 0; margin-bottom: 10px; } .box p { margin: 0; } .box .box-banner { background: #CCCCCC; height: 80px; margin: 0px -15px; margin-bottom: 6px; background-position: center center; } .box.no-text .box-banner { height: 129px; } .begin .box { opacity: 1; -webkit-animation: animateBoxesFromTopToBottom 1.2s backwards; -moz-animation: animateBoxesFromTopToBottom 1.2s backwards; -o-animation: animateBoxesFromTopToBottom 1.2s backwards; animation: animateBoxesFromTopToBottom 1.2s backwards; } @-webkit-keyframes animateBoxesFromTopToBottom { 0% { -webkit-transform: rotateX(90deg) translateY(-150%); transform: rotateX(90deg) translateY(-150%); opacity: 0; } 100% { -webkit-transform: rotateX(0deg) translateY(0%); transform: rotateX(0deg) translateY(0%); opacity: 1; } } @-moz-keyframes animateBoxesFromTopToBottom { 0% { -moz-transform: rotateX(90deg) translateY(-150%); transform: rotateX(90deg) translateY(-150%); opacity: 0; } 100% { -moz-transform: rotateX(0deg) translateY(0%); transform: rotateX(0deg) translateY(0%); opacity: 1; } } @-o-keyframes animateBoxesFromTopToBottom { 0% { transform: rotateX(90deg) translateY(-150%); opacity: 0; } 100% { transform: rotateX(0deg) translateY(0%); opacity: 1; } } @keyframes animateBoxesFromTopToBottom { 0% { -webkit-transform: rotateX(90deg) translateY(-150%); -moz-transform: rotateX(90deg) translateY(-150%); transform: rotateX(90deg) translateY(-150%); opacity: 0; } 100% { -webkit-transform: rotateX(0deg) translateY(0%); -moz-transform: rotateX(0deg) translateY(0%); transform: rotateX(0deg) translateY(0%); opacity: 1; } } @-webkit-keyframes fadeInLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: none; transform: none; } } @-moz-keyframes fadeInLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: none; -moz-transform: none; transform: none; } } @-o-keyframes fadeInLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: none; -o-transform: none; transform: none; } } @keyframes fadeInLeft { from { opacity: 0; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } to { opacity: 1; -webkit-transform: none; -moz-transform: none; -o-transform: none; transform: none; } } .fadeInLeft { -webkit-animation-name: fadeInLeft; -moz-animation-name: fadeInLeft; -o-animation-name: fadeInLeft; animation-name: fadeInLeft; } .revealOnScroll { opacity: 0; } /* super-button */ .wrapperb { height: 100%; display:inline-block; /* background: rgba(0, 0, 0, 0.1);*/ } /* .wrapperb:after { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; } .innerb { position: absolute; } */ .buttonn:hover { background: rgba(158, 255, 171, 0.1);} .buttonn { position: relative; display: block; width: 190px; height: 30px; color: green; font-size: 16px; line-height: 200%; text-decoration: none; text-align: center; z-index: 1; } .buttonn span { position: absolute; -moz-transition-property: all; -o-transition-property: all; -webkit-transition-property: all; transition-property: all; -moz-transition-duration: 0.2s; -o-transition-duration: 0.2s; -webkit-transition-duration: 0.2s; transition-duration: 0.2s; -moz-transition-timing-function: ease-out; -o-transition-timing-function: ease-out; -webkit-transition-timing-function: ease-out; transition-timing-function: ease-out; z-index: 1; } .buttonn .borderr { border: 1px solid green; top: 0; bottom: 0; left: 0; right: 0; /* background-color: rgba(0, 0, 0, 0.1);*/ } .buttonn .topp, .buttonn .bottomm, .buttonn .leftt, .buttonn .rightt { background-color: green; height: 1px; width: 0; } .buttonn .leftt, .buttonn .rightt { height: 0; width: 1px; } .buttonn .topp { top: -5px; left: -15px; } .buttonn .bottomm { bottom: -5px; right: -15px; } .buttonn .leftt { top: -15px; right: -5px; } .buttonn .rightt { bottom: -15px; left: -5px; } .buttonn:hover { color: green; /* text-decoration: underline; text-decoration-style: dotted; text-decoration-color: #36623e;*/ } .textt {display:inline-block; line-height:1.1em; } .buttonn:hover .textt { border-bottom: 1px darkgreen dashed; } .buttonn:hover .borderr { cursor:pointer; top: -5px; bottom: -5px; left: -5px; right: -5px; } .buttonn:hover .topp, .buttonn:hover .bottomm { width: 190px; } .buttonn:hover .leftt, .buttonn:hover .rightt { height: 30px; } .buttonn:hover .topp { left: -5px; } .buttonn:hover .bottomm { right: -5px; } .buttonn:hover .leftt { top: -5px; } .buttonn:hover .rightt { bottom: -5px; } .buttonn .textt { position: relative; letter-spacing: .03em; } @media (max-width:992px) { .buttonn { width: 154px; height: 25px; line-height: 170%; font-size: 15px; } .buttonn:hover .topp, .buttonn:hover .bottomm { width: 154px; } .buttonn:hover .leftt, .buttonn:hover .rightt { height: 25px; } .buttonn .textt { position: relative; letter-spacing: .03em; } } /* block.css */ .B1 { display: inline-block; } /* A */ .p-item-title { margin-top: 5px; font-family: "Myriad Pro Semibold", sans-serif; font-size: 18px; } /*.mt5 { margin-top: 5px;}*/ .call-back { cursor:pointer; display: inline-block; *display: inline; width:128px; padding: 7px 25px 7px 18px; font-size:17px; line-height: 25px; font-weight: normal; text-align: center; text-shadow: 0 1px 1px #0C077B; color: #fff; background-color: #68b075; background-image: -webkit-linear-gradient(to bottom, #57a669 40%, #82bd88 64%, #a8d2a5 96%); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(40%, #57a669), color-stop(64%, #82bd88), color-stop(96%, #a8d2a5)); background-image: -webkit-linear-gradient(top, #57a669 40%, #82bd88 64%, #a8d2a5 96%); background-image: -moz-linear-gradient(top, #57a669 40%, #82bd88 64%, #a8d2a5 96%); background-image: -o-linear-gradient(top, #57a669 40%, #82bd88 64%, #a8d2a5 96%); background-image: linear-gradient(to bottom, #57a669 40%, #82bd88 64%, #a8d2a5 96%); background-repeat: repeat-x; border:none; text-decoration: none; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px; *zoom: 1; -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.85); -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.85); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.85); } .call-back:hover { background-position: 0 15px; -webkit-transition: background-position 0.1s linear; -moz-transition: background-position 0.1s linear; -o-transition: background-position 0.1s linear; transition: background-position 0.1s linear; color: #fff; text-decoration: none; } .call-back:active { outline: 0; position: relative; top:1px; } @media (min-width:768px) { .span3 {float:left; } } @media (max-width:767px) { .span3{ margin: 0 auto !important; margin-bottom:40px !important; }} .span3 { width: 214px !important; /* height: 379px;*/ -webkit-border-radius: 7px; -moz-border-radius: 7px; border-radius: 7px; /* height:310px; width: 230px;*/ border:2px solid green; background: #f2fdec; margin-top: 30px; text-align: center; } .col-centered{ float: none; margin: 0 auto; } .span3 a:focus { color: #fff; } /* new */ .span3{ -webkit-transition-duration: 0.5s; /*Webkit: Animation duration*/ -moz-transition-duration: 0.5s; /*Mozilla duration version*/ -o-transition-duration: 0.5s; /*Opera duration version*/ transition-duration: 0.5s; /*Opera duration version*/ opacity: 0; /*initial opacity of images*/ margin: 0 0 5px 0; /*margin between images*/ } @media (min-width:768px) { .span3[data-nohover="0"]:hover{ -webkit-transform:scale(1.2); /*Webkit: Scale up image to 1.2x original size*/ -moz-transform:scale(1.2); /*Mozilla scale version*/ -o-transform:scale(1.2); /*Opera scale version*/ -ms-transform:scale(1.2); transform:scale(1.2); /*Opera scale version*/ box-shadow:0px 0px 30px gray; /*CSS3 shadow: 30px blurred shadow all around image*/ -webkit-box-shadow:0px 0px 30px gray; /*Safari shadow version*/ -moz-box-shadow:0px 0px 30px gray; /*Mozilla shadow version*/ box-shadow:0px 0px 30px gray; /*Mozilla shadow version*/ opacity: 1; } } @media (min-width: 992px) { .pull-right-md { float: right; }} .pull-center-md { float: none; margin: 0 auto !important; } @media (max-width: 991px) { .pull-right-md, .pull-left-md { float: none; margin: 0 auto !important; } } #idmodal h3, #idmodal h3 { margin: 8px 0 0; text-align: center; color: #488e57; font-size: -webkit-calc(13px - -0.5vw); font-size: -moz-calc(13px - -0.5vw); font-size: calc(13px - -0.5vw); } #idmodal .modal-header { padding: 5px 12px; border-bottom: 1px solid #829a87; } .sel p {font-weight:700; display:inline;} form sup { color:red } @media (min-width: 768px) { .modal-sm { width:350px !important }} @media (max-width: 768px) { .modal-sm { width:70% !important }} .modal-footer { font-size: 11px !important; } .modal-footer { padding-right: 5px; padding-left: 5px; text-align:center; } .blockBB { border: 4px solid #427e50; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; -webkit-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25); -moz-box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25); box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.25); -webkit-transition: all .15s ease-out; -o-transition: all .15s ease-out; -moz-transition: all .15s ease-out; transition: all .15s ease-out; -webkit-transform:scale(0.95); -moz-transform:scale(0.95); -ms-transform:scale(0.95); -o-transform:scale(0.95); transform:scale(0.95); width:auto; height: auto; display: inline-block; /* display:contents; */ } .blockBB:hover { -webkit-transform:scale(1); -moz-transform:scale(1); -ms-transform:scale(1); -o-transform:scale(1); transform:scale(1); border: 4px solid #ffc107; /* #5ba96d; orange #ffc107;*/ -webkit-box-shadow: 4px 5px 15px rgba(0,0,0,0.7); -moz-box-shadow: 4px 5px 15px rgba(0,0,0,0.7); box-shadow: 4px 5px 15px rgba(0,0,0,0.7); } /* gallery */ .gallery-index { text-align: center; } .butt a {margin-bottom:20px; margin-top:8px}
0.260484
0.120698
[Table of CSS] 1. General 2. Table 3. Helper Class 4. Bootstrap Classes 5. Animation 6. Toggle Button 7. Modal 8. Header 9. Sidebar 10. Content 11. Login 12. Dashboard 13. Activity 14. Select2 15. Nav tabs 16. Holidays 17. Delete Modal 18. Edit Profile 19. Chat 20. Focus Label 21. Leave 22. Employee 23. Events 24. Profile 25. Notifications 26. Roles & Permissions 27. Chat Right Sidebar 28. Projects 29. Invoice 30. Task 31. Project View 32. Payslip 33. Attendance 34. Ticket 35. Client Profile 36. Inbox 37. Mail View 38. Voice call 39. Video Call 40. Outgoing call 41. Incoming call 42. Contacts 43. Chat Sidebar 44. Jobs 45. Job Details 46. Notification Settings 47. Leave Settings 48. Termination 49. Loader 50. Payroll Items 51. Error 52. Lock Screen 53. OTP 54. Salary Settings 55. Components 56. Search 57. Knowledgebase 58. FAQ 59. Employee Dashboard 60. Performance Review 61. Kanban Board 62. File Manager 63. Subscriptions 64. Responsive ========================================*/ @font-face { font-family: 'Material Icons'; font-style: normal; font-weight: 400; src: url(../fonts/MaterialIcons-Regular.eot); /* For IE6-8 */ src: local('Material Icons'), local('MaterialIcons-Regular'), url(../fonts/MaterialIcons-Regular.woff2) format('woff2'), url(../fonts/MaterialIcons-Regular.woff) format('woff'), url(../fonts/MaterialIcons-Regular.ttf) format('truetype'); } @font-face { font-family: 'CircularStd'; font-style: normal; font-weight: 400; src: local('Circular Std Book'), url('../fonts/CircularStd-Book.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: italic; font-weight: 400; src: local('Circular Std Book Italic'), url('../fonts/CircularStd-BookItalic.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: normal; font-weight: 500; src: local('Circular Std Medium'), url('../fonts/CircularStd-Medium.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: italic; font-weight: 500; src: local('Circular Std Medium Italic'), url('../fonts/CircularStd-MediumItalic.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: normal; font-weight: 600; src: local('Circular Std Bold'), url('../fonts/CircularStd-Bold.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: italic; font-weight: 600; src: local('Circular Std Bold Italic'), url('../fonts/CircularStd-BoldItalic.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: normal; font-weight: 800; src: local('Circular Std Black'), url('../fonts/CircularStd-Black.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: italic; font-weight: 800; src: local('Circular Std Black Italic'), url('../fonts/CircularStd-BlackItalic.woff') format('woff'); } /*----------------- 1. General -----------------------*/ html { height: 100%; } body { font-family: 'CircularStd', sans-serif; font-size: .9375rem; color: #1f1f1f; background-color: #f7f7f7; min-height: 100%; overflow-x: hidden; } h1, h2, h3, h4, h5, h6 { font-family: CircularStd; margin-top: 0; font-weight: 500; } h1, .h1 { font-size: 2.25rem; } h2, .h2 { font-size: 1.875rem; } h3, .h3 { font-size: 1.5rem; } h4, .h4 { font-size: 1.125rem; } h5, .h5 { font-size: 0.875rem; } h6, .h6 { font-size: 0.75rem; } a:hover, a:active, a:focus { text-decoration: none; outline: none; } .form-control { border-color: #e3e3e3; box-shadow: none; font-size: 15px; height: 44px; } .form-control:focus { border-color: #ccc; box-shadow: none; outline: 0 none; } .form-control[disabled], fieldset[disabled] .form-control { cursor: not-allowed; } input, button, a { transition: all 0.4s ease; -moz-transition: all 0.4s ease; -o-transition: all 0.4s ease; -ms-transition: all 0.4s ease; -webkit-transition: all 0.4s ease; } input, input:focus, button, button:focus { outline: none; } input[type="file"] { height: auto; } input[type=text], input[type=password] { -webkit-appearance: none; -moz-appearance: none; appearance: none; } textarea.form-control { resize: vertical; } .navbar-nav > li { float: left; } .form-control-lg.form-control { border-radius: 4px; height: 46px; } .form-control-sm.form-control { height: 30px; border-radius: 0; } .input-group.input-group-lg .form-control { height: 46px; } .material-icons { font-family: 'Material Icons'; font-weight: normal; font-style: normal; font-size: 24px; display: inline-block; line-height: 1; text-transform: none; letter-spacing: normal; word-wrap: normal; white-space: nowrap; direction: ltr; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; -moz-osx-font-smoothing: grayscale; font-feature-settings: 'liga'; } .input-group-text { background-color: #f7f7f7; border-color: #e3e3e3; } select.form-control[multiple] option, select.form-control[size] option { border-radius: 3px; padding: 7px 12px; } select.form-control[multiple], select.form-control[size] { height: 200px; padding: 7px; } /*----------------- 2. Table -----------------------*/ .table-responsive { white-space: nowrap; width: 100%; } .table { color: #333; } .table.table-white { background-color: #fff; } .table thead th { font-weight: 500; letter-spacing: 0.05em; } .table-striped > tbody > tr:nth-of-type(2n+1) { background-color: #f6f6f6; } table.table td h2 { display: inline-block; font-size: inherit; font-weight: 400; margin: 0; padding: 0; vertical-align: middle; } table.table td h2.table-avatar { align-items: center; display: inline-flex; font-size: inherit; font-weight: 400; margin: 0; padding: 0; vertical-align: middle; white-space: nowrap; } table.table td h2.table-avatar.blue-link a { color: #007bff; } table.table td h2 a { color: #333; } table.table td h2 a:hover { color: #f43b48; } table.table td h2 span { color: #888; display: block; font-size: 12px; margin-top: 3px; } table.dataTable { margin-bottom: 15px !important; margin-top: 15px !important; } .table-nowrap td, .table-nowrap th { white-space: nowrap } .table-hover tbody tr:hover { background-color: #f7f7f7; color: #212529; } table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting { padding-right: 30px !important; } .table.custom-table > tbody > tr > td, .table.custom-table > tbody > tr > th, .table.custom-table > tfoot > tr > td, .table.custom-table > tfoot > tr > th, .table.custom-table > thead > tr > td, .table.custom-table > thead > tr > th { padding: 10px 20px !important; } /*----------------- 3. Helper Class -----------------------*/ .p-20 { padding: 20px !important; } .p-t-0 { padding-top: 0 !important; } .m-0 { margin: 0 !important; } .m-r-5 { margin-right: 5px !important; } .m-r-10 { margin-right: 10px !important; } .m-l-5 { margin-left: 5px !important; } .m-l-15 { margin-left: 15px !important; } .m-t-5 { margin-top: 5px !important; } .m-t-0 { margin-top: 0 !important; } .m-t-10 { margin-top: 10px !important; } .m-t-15 { margin-top: 15px !important; } .m-t-20 { margin-top: 20px !important; } .m-t-30 { margin-top: 30px !important; } .m-t-50 { margin-top: 50px !important; } .m-b-5 { margin-bottom: 5px !important; } .m-b-10 { margin-bottom: 10px !important; } .m-b-15 { margin-bottom: 15px !important; } .m-b-20 { margin-bottom: 20px !important; } .m-b-30 { margin-bottom: 30px !important; } .w-40 { width: 40px; } .btn-md { height: 40px; } .block { display: block !important; } .text-ellipsis { display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .text-muted-light { color: #aaa; } .text-xs { font-size:.75rem !important; } .text-sm { font-size:.875rem !important; } .text-lg { font-size:1.25rem !important; } .text-xl { font-size:1.5rem !important; } .font-18 { font-size: 18px; } .btn.btn-rounded { border-radius: 50px; } /*----------------- 4. Bootstrap Classes -----------------------*/ .btn { border-radius: 5px; } .btn.disabled, .btn:disabled { cursor: not-allowed; } .btn-white { background-color: #fff; border: 1px solid #ccc; color: #333; } .btn-white:focus, .btn-white:hover { background-color: #f7f7f7; } .rounded, .circle { border-radius: 500px; } .bg-purple, .badge-purple { background-color: #7460ee !important; } .bg-primary, .badge-primary { background-color: #f43b48 !important; } .bg-success, .badge-success { background-color: #55ce63 !important; } .bg-info, .badge-info { background-color: #009efb !important; } .bg-warning, .badge-warning { background-color: #ffbc34 !important; } .bg-danger, .badge-danger { background-color: #f62d51 !important; } .bg-white { background-color: #fff; } .text-primary, .dropdown-menu > li > a.text-primary { color: #f43b48 !important; } .text-success, .dropdown-menu > li > a.text-success { color: #55ce63 !important; } .text-danger, .dropdown-menu > li > a.text-danger { color: #f62d51 !important; } .text-info, .dropdown-menu > li > a.text-info { color: #009efb !important; } .text-warning, .dropdown-menu > li > a.text-warning { color: #ffbc34 !important; } .text-purple, .dropdown-menu > li > a.text-purple { color: #7460ee !important; } .text-muted { color: #8e8e8e !important; } .btn-purple { background-color: #7460ee; border: 1px solid #7460ee; color: #fff; } .btn-purple:hover, .btn-purple:focus { background-color: #482fe9; border: 1px solid #482fe9; } .btn-primary { background-color: #f43b48; border: 1px solid #f43b48; } .btn-primary:hover, .btn-primary:focus, .btn-primary.active, .btn-primary:active, .open > .dropdown-toggle.btn-primary { background-color: #f10e1d; border: 1px solid #f10e1d; } .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary.focus:active, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover { background-color: #f10e1d; border: 1px solid #f10e1d; } .btn-primary.active:not(:disabled):not(.disabled), .btn-primary:active:not(:disabled):not(.disabled), .show > .btn-primary.dropdown-toggle { background-color: #f10e1d; border-color: #f10e1d; color: #fff; } .btn-primary.active:focus:not(:disabled):not(.disabled), .btn-primary:active:focus:not(:disabled):not(.disabled), .show > .btn-primary.dropdown-toggle:focus { box-shadow: unset; } .btn-primary.disabled, .btn-primary:disabled { background-color: #f43b48; border-color: #f43b48; color: #fff; } .btn-success { background-color: #55ce63; border: 1px solid #55ce63 } .btn-success:hover, .btn-success:focus, .btn-success.active, .btn-success:active, .open > .dropdown-toggle.btn-success { background: #4ab657; border: 1px solid #4ab657; color: #fff; } .btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success.focus:active, .btn-success:active:focus, .btn-success:active:hover, .open > .dropdown-toggle.btn-success.focus, .open > .dropdown-toggle.btn-success:focus, .open > .dropdown-toggle.btn-success:hover { background: #4ab657; border: 1px solid #4ab657 } .btn-success.active:focus:not(:disabled):not(.disabled), .btn-success:active:focus:not(:disabled):not(.disabled), .show > .btn-success.dropdown-toggle:focus { box-shadow: unset; } .btn-success.disabled, .btn-success:disabled { background-color: #55ce63; border-color: #55ce63; color: #fff; } .btn-info { background-color: #009efb; border: 1px solid #009efb } .btn-info:hover, .btn-info:focus, .btn-info.active, .btn-info:active, .open > .dropdown-toggle.btn-info { background-color: #028ee1; border: 1px solid #028ee1 } .btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info.focus:active, .btn-info:active:focus, .btn-info:active:hover, .open > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:hover { background-color: #028ee1; border: 1px solid #028ee1 } .btn-info.active:focus:not(:disabled):not(.disabled), .btn-info:active:focus:not(:disabled):not(.disabled), .show > .btn-info.dropdown-toggle:focus { box-shadow: unset; } .btn-info.disabled, .btn-info:disabled { background-color: #009efb; border-color: #009efb; color: #fff; } .btn-warning { background: #ffbc34; border: 1px solid #ffbc34 } .btn-warning:hover, .btn-warning:focus, .btn-warning.active, .btn-warning:active, .open > .dropdown-toggle.btn-warning { background: #e9ab2e; border: 1px solid #e9ab2e } .btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning.focus:active, .btn-warning:active:focus, .btn-warning:active:hover, .open > .dropdown-toggle.btn-warning.focus, .open > .dropdown-toggle.btn-warning:focus, .open > .dropdown-toggle.btn-warning:hover { background: #e9ab2e; border: 1px solid #e9ab2e } .btn-warning.active:focus:not(:disabled):not(.disabled), .btn-warning:active:focus:not(:disabled):not(.disabled), .show > .btn-warning.dropdown-toggle:focus { box-shadow: unset; } .btn-warning.disabled, .btn-warning:disabled { background-color: #ffbc34; border-color: #ffbc34; color: #fff; } .btn-danger { background: #f62d51; border: 1px solid #f62d51 } .btn-danger:hover, .btn-danger:focus, .btn-danger.active, .btn-danger:active, .open > .dropdown-toggle.btn-danger { background-color: #e6294b; border: 1px solid #e6294b } .btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger.focus:active, .btn-danger:active:focus, .btn-danger:active:hover, .open > .dropdown-toggle.btn-danger.focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger:hover { background: #e9ab2e; border: 1px solid #e9ab2e } .btn-danger.active:focus:not(:disabled):not(.disabled), .btn-danger:active:focus:not(:disabled):not(.disabled), .show > .btn-danger.dropdown-toggle:focus { box-shadow: unset; } .btn-danger.disabled, .btn-danger:disabled { background-color: #f62d51; border-color: #f62d51; color: #fff; } .btn-custom { background: #f43b48; background: -moz-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -webkit-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -ms-linear-gradient(left, #f43b48 0%, #453a94 100%); background: linear-gradient(to right, #f43b48 0%, #453a94 100%); color: #fff; } .btn-custom.focus, .btn-custom:focus, .btn-custom:hover { background: #f43b48; background: -moz-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -webkit-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -ms-linear-gradient(left, #f43b48 0%, #453a94 100%); background: linear-gradient(to right, #f43b48 0%, #453a94 100%); color: #fff; } .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover { background-color: #f43b48; border-color: #f43b48; } .pagination > li > a, .pagination > li > span { color: #f43b48; } .page-link:hover { color: #f43b48; } .page-link:focus { box-shadow: unset; } .page-item.active .page-link { background-color: #f43b48; border-color: #f43b48; } .dropdown-menu { border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 3px; transform-origin: left top 0; box-shadow: inherit; background-color: #fff; } .navbar-nav .open .dropdown-menu { background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.1); } .dropdown-menu { font-size: 13px; } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { box-shadow: none; } .btn-link { color: #333; } .nav .open > a, .nav .open > a:focus, .nav .open > a:hover { background-color: rgba(0, 0, 0, 0.2); } .form-text { color: #999; font-size: 12px; margin-bottom: 7px; margin-top: 7px; } .btn.focus, .btn:focus { box-shadow: unset; } .dropdown-item.active, .dropdown-item:active { background-color: #f43b48; } .list-group-item { border: 1px solid #e3e3e3; } .custom-file { height: 44px; } .custom-file .custom-file-label { border: 1px solid #e3e3e3; height: 44px; margin-bottom: 0; padding: 10px 15px; } .custom-file-label::after { background-color: #f2f2f2; height: 42px; padding: 10px 15px; } .custom-file input[type="file"] { height: 44px; } .bg-inverse-primary { background: rgba(77, 138, 240, .2) !important; color: #4d8af0 !important; } .bg-inverse-secondary { background: rgba(194, 198, 209, .2) !important; color: #c2c6d1 !important; } .bg-inverse-success { background-color:rgba(15, 183, 107,0.12) !important; color: #26af48 !important; } .bg-inverse-purple { background: rgba(108, 97, 246, .2) !important; color: #6c61f6 !important; } .bg-inverse-warning { background-color: rgba(255, 152, 0,0.12) !important; color: #f39c12 !important; } .bg-inverse-danger { background-color: rgba(242, 17, 54,0.12) !important; color: #e63c3c !important; } .bg-inverse-light { background: rgba(223, 223, 223, .2) !important; color: #dfdfdf !important; } .bg-inverse-dark { background: rgba(116, 118, 123, .2) !important; color: #74767b !important; } .bg-inverse-white { background: rgba(255, 255, 255, .2) !important; color: #fff !important; } .bg-inverse-info { background-color: rgba(2, 182, 179,0.12) !important; color: #1db9aa !important; } .bg-inverse-default { background-color: rgba(40, 52, 71,0.12) !important; color: #283447 !important; } .bg-gradient-primary { background: linear-gradient( to right, #6e00ff 10%, #6e00ff 100%); } .bg-gradient-secondary { background: linear-gradient(to bottom right,#f35c38 0,#f35c38 100%); } .bg-gradient-success { background: linear-gradient(to bottom right,#0ba408 0,#28e224 100%); } .bg-gradient-info { background: linear-gradient(to bottom right,#69c7de 0, #1e9fc4 100%); } .bg-gradient-warning { background: linear-gradient(to bottom right,#ecd53e 0,#efaf28 100%) } .bg-gradient-teal { background: linear-gradient(to bottom right,#00796b 0,#4db6ac 100%); } .bg-gradient-blue { background: linear-gradient(to right,#1976d2 0,#64b5f6 100%); } .bg-gradient-danger { background: linear-gradient(to right,#f95058 0,#f33540 100%); } .bg-gradient-purple { background: linear-gradient(to right,#8a56e6 0,#6f3cca 100%); } /*----------------- 5. Animation -----------------------*/ @-moz-keyframes pulse { 0% { -moz-transform: scale(0); opacity: 0.0; } 25% { -moz-transform: scale(0); opacity: 0.1; } 50% { -moz-transform: scale(0.1); opacity: 0.3; } 75% { -moz-transform: scale(0.5); opacity: 0.5; } 100% { -moz-transform: scale(1); opacity: 0.0; } } @-webkit-keyframes pulse { 0% { -webkit-transform: scale(0); opacity: 0.0; } 25% { -webkit-transform: scale(0); opacity: 0.1; } 50% { -webkit-transform: scale(0.1); opacity: 0.3; } 75% { -webkit-transform: scale(0.5); opacity: 0.5; } 100% { -webkit-transform: scale(1); opacity: 0.0; } } @-webkit-keyframes taskHighlighter { 0% { background: #FEEB99; } 100% { background: #fff; } } @keyframes taskHighlighter { 0% { background: #FEEB99; } 100% { background: #fff; } } /*----------------- 6. Toggle Button -----------------------*/ .check { display: block; margin: 0; padding: 0; width: 0; height: 0; visibility: hidden; opacity: 0; pointer-events: none; position: absolute; } .checktoggle { background-color: #e0001a; border-radius: 12px; cursor: pointer; display: block; font-size: 0; height: 24px; margin-bottom: 0; position: relative; width: 48px; } .checktoggle:after { content: ' '; display: block; position: absolute; top: 50%; left: 0; transform: translate(5px, -50%); width: 16px; height: 16px; background-color: #fff; border-radius: 50%; transition: left 300ms ease, transform 300ms ease; } .check:checked + .checktoggle { background-color: #55ce63; } .check:checked + .checktoggle:after { left: 100%; transform: translate(calc(-100% - 5px), -50%); } .onoffswitch { margin-left: auto; position: relative; width: 73px; -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none; } .onoffswitch-checkbox { display: none; } .onoffswitch-label { display: block; overflow: hidden; cursor: pointer; border-radius: 20px; margin-bottom: 0; } .onoffswitch-inner { display: block; margin-left: -100%; transition: margin 0.3s ease-in 0s; width: 200%; } .onoffswitch-inner:before, .onoffswitch-inner:after { box-sizing: border-box; color: #fff; display: block; float: left; font-size: 16px; height: 30px; line-height: 32px; padding: 0; width: 50%; } .onoffswitch-inner:before { background-color: #55ce63; color: #fff; content: "ON"; padding-left: 14px; } .onoffswitch-inner:after { content: "OFF"; padding-right: 14px; background-color: #ccc; color: #fff; text-align: right; } .onoffswitch-switch { background: #fff; border-radius: 20px; bottom: 0; display: block; height: 20px; margin: 5px; position: absolute; right: 43px; top: 0; transition: all 0.3s ease-in 0s; width: 20px; } .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0px; } .switch { cursor: pointer; position: relative; } .switch input { position: absolute; opacity: 0; filter: alpha(opacity=0); } .switch input:checked+span { background-color: #55ce63; } .switch input:checked+span:after { left: 31px; } .switch span { position: relative; width: 60px; height: 30px; border-radius: 30px; background-color: #fff; border: 1px solid #eee; border-color: rgba(0, 0, 0, 0.1); display: inline-block; -webkit-transition: background-color 0.2s; transition: background-color 0.2s; } .switch span:after { content: ""; position: absolute; background-color: #fff; width: 26px; top: 1px; bottom: 1px; border-radius: 30px; -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25); box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25); -webkit-transition: left 0.2s; transition: left 0.2s; } .rating-list { display: flex; justify-content: center } .rating-list > span { display: inline-block; margin-right: 4px; } .rating-list span a { background-color: #ccc; border-radius: 4px; color: #333; display: inline-flex; justify-content: center; align-items: center; width: 50px; height: 50px; font-size: 18px; font-weight: 600; margin-bottom:5px; } .rating-list span.rating-bad a { background-color: #ad0d20; color: #fff; } .rating-list span.rating-normal a { background-color: #dccc00; color: #fff; } .rating-list span.rating-good a { background-color: #00a100; color: #fff; } .rating-text { font-size: 12px; max-width: 157px; display: inline-block; margin-top: 5px; } .rating-list > span.rating-normal { text-align: center; } .rating-list > span.rating-good { text-align: right; } .custom_check { color: #555; display: inline-block; position: relative; font-size: 14px; font-size: .9375rem; padding-left: 30px; margin-bottom: 10px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none } .custom_check input { position: absolute; opacity: 0; cursor: pointer } .custom_check input:checked ~ .checkmark { background-color: #ff9b44; border: 1px solid transparent } .custom_check .checkmark { position: absolute; top: 0; left: 0; height: 20px; width: 20px; border: 1px solid #d2d8dd; background-color: #fff; border-radius: 3px; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out } .custom_check .checkmark:after { content: ""; position: absolute; display: none; left: 7px; top: 3px; width: 5px; height: 10px; border: solid white; border-width: 0 2px 2px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg) } .custom_check input:checked ~ .checkmark:after { display: block } .custom_radio { color: #555; display: inline-block; position: relative; font-size: 14px; font-size: 0.9375rem; padding-left: 30px; margin-bottom: 10px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none } .radio_input .custom_radio + .custom_radio { margin-left: 15px; } .custom_radio input { position: absolute; opacity: 0 } .custom_radio input:checked ~ .checkmark:after { opacity: 1 } .custom_radio .checkmark { position: absolute; top: 0; left: 0; height: 20px; width: 20px; background-color: #fff; border: 1px solid #ccc; border-radius: 50% } .custom_radio .checkmark:after { display: block; content: ""; position: absolute; opacity: 0; top: 3px; left: 3px; width: 12px; height: 12px; border-radius: 50%; background: #ff9b44; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out } .setting-performance-table.table>tbody>tr>td, .setting-performance-table.table>tbody>tr>th, .setting-performance-table.table>tfoot>tr>td, .setting-performance-table.table>tfoot>tr>th, .setting-performance-table.table>thead>tr>td, .setting-performance-table.table>thead>tr>th { vertical-align: middle; } .setting-performance-table textarea.form-control { resize: none; height:44px!important; padding-top:10px!important; } /*----------------- 7. Modal -----------------------*/ .modal { -webkit-overflow-scrolling: touch; } .modal-footer.text-center { justify-content: center; } .modal-footer.text-left { justify-content: flex-start; } .modal-dialog.modal-md { max-width: 600px; } .custom-modal .modal-content { border: 0; border-radius: 10px; } .custom-modal .modal-footer { border: 0; } .custom-modal .modal-header { border: 0; justify-content: center; padding: 30px 30px 0; } .custom-modal .modal-footer { border: 0; justify-content: center; padding: 0 30px 30px; } .custom-modal .modal-body { padding: 30px; } .custom-modal .close { background-color: #a0a0a0; border-radius: 50%; color: #fff; font-size: 13px; height: 20px; line-height: 20px; margin: 0; opacity: 1; padding: 0; position: absolute; right: 10px; top: 10px; width: 20px; z-index: 99; } .custom-modal .modal-title { font-size: 22px; } .modal-backdrop.show { opacity: 0.4; -webkit-transition-duration: 400ms; transition-duration: 400ms; } .modal .card { box-shadow: unset; } /*----------------- 8. Header -----------------------*/ .header { background: #f43b48; background: -moz-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -webkit-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -ms-linear-gradient(left, #f43b48 0%, #453a94 100%); background: linear-gradient(to right, #f43b48 0%, #453a94 100%); border-bottom: 1px solid transparent; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); height: 60px; left: 0; position: fixed; right: 0; top: 0; z-index: 1002; } .header .header-left { float: left; height: 60px; padding: 0 20px; position: relative; text-align: center; width: 230px; z-index: -1 !important; transition: all 0.2s ease-in-out; } .header .header-right { float: right; height: 60px; padding: 0 20px; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; font-size: 36px; color: #fff; position: relative; right: 42.5%; text-align: center; width: 230px; z-index: 1; transition: all 0.2s ease-in-out; } .header .header-left .logo { display: inline-block; line-height: 60px; width: 40px; } .bar-icon { display: inline-block; width: 21px; } .bar-icon span { background-color: #fff; border-radius: 500px; display: block; float: left; height: 2px; margin-bottom: 5px; width: 21px; } .bar-icon span:nth-child(2) { width: 15px; } .bar-icon span:nth-child(3) { margin-bottom: 0; } .header .navbar-nav .badge { position: absolute; right: 7px; top: 4px; } .header .dropdown-menu > li > a { position: relative; } .header .dropdown-toggle::after { display: none; } .header .has-arrow .dropdown-toggle:after { border-top: 0; border-left: 0; border-bottom: 2px solid #fff; border-right: 2px solid #fff; content: ''; height: 8px; display: inline-block; pointer-events: none; -webkit-transform-origin: 66% 66%; -ms-transform-origin: 66% 66%; transform-origin: 66% 66%; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); -webkit-transition: all 0.15s ease-in-out; transition: all 0.15s ease-in-out; width: 8px; vertical-align: 2px; } .header .has-arrow .dropdown-toggle[aria-expanded="true"]:after { -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); transform: rotate(-135deg); } .page-title-box { border-radius: 0; float: left; height: 60px; margin-bottom: 0; padding: 17px 20px; } .page-title-box h3 { color: #fff; font-size: 20px; font-weight: normal; margin: 0; } .user-menu { float: right; margin: 0; position: relative; z-index: 99; } .user-menu.nav > li > a { color: #fff; font-size: 15px; line-height: 60px; padding: 0 15px; height: 60px; } .user-menu.nav > li > a:hover, .user-menu.nav > li > a:focus { background-color: rgba(0, 0, 0, 0.2); } .flag-nav img { margin-right: 5px; } .flag-nav .dropdown-menu { max-height: 150px; min-width: 120px; overflow-y: auto; } .flag-nav .dropdown-menu .dropdown-item { padding: 5px 15px; } .user-img { display: inline-block; position: relative; } .main-drop .user-img img { border-radius: 50%; width: 30px; } .user-img .status { border: 2px solid #fff; bottom: 0; height: 10px; margin: 0; position: absolute; right: 0; width: 10px; } .user-menu .user-img .status { bottom: 12px; } .status { background-color: #263238; border-radius: 50%; display: inline-block; height: 10px; width: 10px; } .status.online { background-color: #55ce63; } .status.offline { background-color: #f62d51; } .status.away { background-color: #faa937; } .main-drop .dropdown-menu { min-width: 130px; padding: 0; } /*----------------- 9. Sidebar -----------------------*/ .sidebar { background-color: #34444c; border-right: 1px solid transparent; bottom: 0; left: 0; margin-top: 0; position: fixed; top: 60px; transition: all 0.2s ease-in-out 0s; width: 230px; z-index: 1001; } .sidebar.opened { -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; } .sidebar-inner { height: 100%; transition: all 0.2s ease-in-out 0s; } .sidebar-menu { padding: 10px 0; z-index: 1 !important; } .sidebar-menu ul { font-size: 15px; list-style-type: none; margin: 0; padding: 0; position: relative; } .sidebar-menu li a { color: #b7c0cd; display: block; font-size: 15px; height: auto; padding: 0 20px; } .sidebar-menu li a:hover { color: #fff; } .sidebar-menu li.active a { color: #fff; background-color: rgba(0, 0, 0, 0.2); } .menu-title { color: #ebecf1; display: flex; font-size: 34px; opacity: 1; padding: 5px 15px; white-space: nowrap; } .menu-title > i { float: right; line-height: 40px; } .sidebar-menu li.menu-title a { color: #f43b48; display: inline-block; margin-left: auto; padding: 0; } .sidebar-menu li.menu-title a.btn { color: #fff; display: block; float: none; font-size: 15px; margin-bottom: 15px; padding: 10px 15px; } .sidebar-menu ul ul a.active { color: #f43b48; text-decoration: underline; } .mobile-user-menu { color: #fff; display: none; float: right; font-size: 24px; height: 60px; line-height: 60px; padding: 0 20px; position: absolute; right: 0; text-align: right; top: 0; width: 60px; z-index: 10; } .mobile-user-menu > a { color: #fff; padding: 0; } .mobile-user-menu a:hover { color: #fff; } .mobile-user-menu > .dropdown-menu { min-width: 130px; } .mobile-user-menu > .dropdown-menu > a { line-height: 23px; } .profile-rightbar { display: none !important; color: #f43b48; font-size: 26px; margin-left: 15px; } .mobile_btn { display: none; float: left; } .sidebar .sidebar-menu > ul > li > a span { transition: all 0.2s ease-in-out 0s; display: inline-block; margin-left: 15px; white-space: nowrap; } .sidebar .sidebar-menu > ul > li > a span.chat-user { margin-left: 0; overflow: hidden; text-overflow: ellipsis; } .sidebar .sidebar-menu > ul > li > a span.badge { margin-left: auto; } .sidebar-menu ul ul a { display: block; font-size: 14px; padding: 9px 10px 9px 50px; position: relative; } .sidebar-menu ul ul { display: none; } .sidebar-menu ul ul ul a { padding-left: 70px; } .sidebar-menu ul ul ul ul a { padding-left: 90px; } .sidebar-menu > ul > li { position: relative; } .sidebar-menu .menu-arrow { -webkit-transition: -webkit-transform 0.15s; -o-transition: -o-transform 0.15s; transition: transform .15s; position: absolute; right: 15px; display: inline-block; font-family: 'FontAwesome'; text-rendering: auto; line-height: 40px; font-size: 18px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); line-height: 18px; top: 11px; } .sidebar-menu .menu-arrow:before { content: "\f105"; } .sidebar-menu li a.subdrop .menu-arrow { -ms-transform: rotate(90deg); -webkit-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); } .noti-dot:before { content: ''; width: 5px; height: 5px; border: 5px solid #f43b48; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; background-color: #f43b48; z-index: 10; position: absolute; right: 37px; top: 15px; } .noti-dot:after { content: ''; border: 4px solid #f43b48; background: transparent; -webkit-border-radius: 60px; -moz-border-radius: 60px; border-radius: 60px; height: 24px; width: 24px; -webkit-animation: pulse 3s ease-out; -moz-animation: pulse 3s ease-out; animation: pulse 3s ease-out; -webkit-animation-iteration-count: infinite; -moz-animation-iteration-count: infinite; animation-iteration-count: infinite; position: absolute; top: 8px; right: 30px; z-index: 1; opacity: 0; } .sidebar-menu ul ul a .menu-arrow { top: 6px; } .sidebar-menu a { line-height: 1.3; transition: unset; -moz-transition: unset; -o-transition: unset; -ms-transition: unset; -webkit-transition: unset; } .sidebar-menu > ul > li > a { padding: 8px 15px; align-items: center; display: flex; justify-content: flex-start; position: relative; transition: all 0.2s ease-in-out 0s; } .sidebar-menu ul li a i { display: inline-block; font-size: 24px; line-height: 24px; text-align: left; vertical-align: middle; width: 20px; transition: all 0.2s ease-in-out 0s; } .sidebar-menu ul li.menu-title a i { font-size: 16px !important; margin-right: 0; text-align: right; width: auto; } .sidebar-menu li a > .badge { color: #fff; } /*----------------- 10. Content -----------------------*/ .page-wrapper { left: 0; margin-left: 230px; padding-top: 60px; position: relative; transition: all 0.2s ease-in-out; } .page-wrapper > .content { padding: 30px; } .page-header { margin-bottom: 1.875rem; } .page-header .breadcrumb { background-color: transparent; color: #6c757d; font-size: 1rem; font-weight: 500; margin-bottom: 0; padding: 0; } .page-header .breadcrumb a { color: #333; } .card { border: 1px solid #ededed; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); margin-bottom: 30px; } .card-title { color: #1f1f1f; font-size: 20px; font-weight: 500; margin-bottom: 20px; } .card-header { background-color: #fff; } .card-footer { background-color: #fff; } .page-title { color: #1f1f1f; font-size: 26px; font-weight: 500; margin-bottom: 5px; } .page-sub-title { color: #565656; font-size: 18px; font-weight: normal; margin-bottom: 20px; } .add-btn { background-color: #f43b48; border: 1px solid #f43b48; border-radius: 50px; color: #fff; float: right; font-weight: 500; min-width: 140px; } .add-btn:hover, .add-btn:focus, .add-btn:active { background-color: #f10e1d; border: 1px solid #f10e1d; color: #fff; } .add-btn i { margin-right: 5px; } .cal-icon { position: relative; width: 100%; } .cal-icon:after { color: #979797; content: "\f073"; display: block; font-family: "FontAwesome"; font-size: 15px; margin: auto; position: absolute; right: 15px; top: 10px; } .form-focus .cal-icon:after { top: 15px; } /*----------------- 11. Login -----------------------*/ .account-page { align-items: center ; display: flex; } .account-page .main-wrapper { display: flex; flex-wrap: wrap; justify-content: center; width: 100%; } .account-content { padding: 20px 0; } .account-title { font-size: 26px; font-weight: 500; margin-bottom: 5px; text-align: center; } .account-subtitle { color: #4c4c4c; font-size: 18px; margin-bottom: 30px; text-align: center; } .account-box { background-color: #fff; border: 1px solid #ededed; border-radius: 4px; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); margin: 0 auto; overflow: hidden; width: 480px; } .account-wrapper { padding: 30px; } .account-logo { margin-bottom: 30px; text-align: center; } .account-box .form-group { margin-bottom: 25px; } .account-box .account-btn { background: #f43b48; background: -moz-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -webkit-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -ms-linear-gradient(left, #f43b48 0%, #453a94 100%); background: linear-gradient(to right, #f43b48 0%, #453a94 100%); border: 0; border-radius: 4px; display: block; font-size: 22px; padding: 10px 26px; width: 100%; } .account-box .account-btn:hover, .account-box .account-btn:focus { border: 0; opacity: 0.8; } .account-box .form-control { background-color: #fbfbfb; border: 1px solid #e3e3e3; border-radius: 4px; height: 46px; } .account-box label { color: #1f1f1f; font-size: 16px; font-weight: normal; margin-bottom: 5px; } .account-logo img { width: 100px; } .account-footer { text-align: center; } .account-footer p { margin-bottom: 0; } .account-footer a { color: #f43b48; } .account-footer a:hover { color: #f43b48; } /*----------------- 12. Dashboard -----------------------*/ .card-table .card-header { background-color: #fff; border-bottom: 1px solid #ddd; padding: 15px; } .card-table .card-body { padding: 0; } .card-table .card-footer { background-color: #fff; text-align: center; } .card-table .card-footer a { color: #333; } .card-title > a.btn { color: #fff; } .custom-table tr { background-color: #fff; box-shadow: 0 0 3px #e5e5e5; } .table.custom-table > tbody > tr > td, .table.custom-table > tbody > tr > th, .table.custom-table > tfoot > tr > td, .table.custom-table > tfoot > tr > th, .table.custom-table > thead > tr > td, .table.custom-table > thead > tr > th { padding: 10px 8px; vertical-align: middle; } .table.custom-table > tbody > tr > td:first-child, .table.custom-table > thead > tr > th:first-child { padding-left: 15px; } .table.custom-table > tbody > tr > td:last-child, .table.custom-table > thead > tr > th:last-child { padding-right: 15px; } .dash-widget-icon { background-color: rgba(244, 59, 72, 0.2); border-radius: 100%; color: #f43b48; display: inline-block; float: left; font-size: 30px; height: 60px; line-height: 60px; margin-right: 10px; text-align: center; width: 60px; } .dash-widget-info { text-align: right; } .dash-widget-info > h3 { font-size: 30px; font-weight: 600; } .dash-widget-info > span { font-size: 16px; } .dash-statistics .stats-info { margin-bottom: 5px; } .dash-statistics .stats-info:last-child { margin-bottom: 0; } .dash-statistics .progress { height: 4px; } .dash-statistics .stats-list { height: auto; } .leave-info-box { border: 1px solid #e5e5e5; padding: 15px; margin-bottom: 15px; } .leave-info-box:last-child { margin-bottom: 0; } .load-more a { background-color: #fff; border: 1px solid #eaeaea; border-radius: 3px; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); display: inline-block; font-size: 14px; padding: 5px 15px; } /*----------------- 13. Activity -----------------------*/ .activity-box { position: relative; } .activity-list { list-style: none; margin: 0 0 0 10px; padding: 0; position: relative; } .activity .activity-list { list-style: none; margin: 0; padding: 0; position: relative; } .activity .activity-list > li .activity-user { height: 32px; margin: 0; padding: 0; position: absolute; top: 12px; left: 8px; width: 32px; } .activity .activity-list > li .activity-content { background-color: #fff; margin: 0 0 0 40px; padding: 0; position: relative; } .activity-list::before { background: #ddd; bottom: 0; content: ""; left: 23px; position: absolute; top: 8px; width: 2px; } .activity .activity-list li::before { background: #ddd; bottom: 0; content: ""; left: 22px; position: absolute; top: 12px; width: 2px; } .activity-list li::before { background: #eee; bottom: 0; content: ""; left: 8px; position: absolute; top: 8px; width: 2px; } .activity-list > li { background-color: #fff; margin-bottom: 10px; padding: 10px; position: relative; border: 1px solid #ededed; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); } .activity-list > li:last-child .activity-content { margin-bottom: 0; } .activity-user .avatar { height: 32px; line-height: 32px; margin: 0; width: 32px; } .activity-list > li .activity-user { background: #fff; height: 32px; left: -7px; margin: 0; padding: 0; position: absolute; top: 3px; width: 32px; } .activity-list > li .activity-content { background-color: #fff; margin: 0 0 20px 40px; padding: 0; position: relative; } .activity-list > li .activity-content .timeline-content { color: #9e9e9e; } .activity-list > li .activity-content .timeline-content a { color: #616161; } .activity-list > li .time { color: #bdbdbd; display: block; font-size: 13px; } /*----------------- 14. Select2 -----------------------*/ .select2-container .select2-selection--single { border: 1px solid #e3e3e3; border-radius: 0.25rem; height: 44px; } .select2-container--default .select2-selection--single .select2-selection__arrow { height: 42px; right: 7px; } .select2-container--default .select2-selection--single .select2-selection__arrow b { border-color: #ccc transparent transparent; border-style: solid; border-width: 6px 6px 0; height: 0; left: 50%; margin-left: -10px; margin-top: -2px; position: absolute; top: 50%; width: 0; } .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { border-color: transparent transparent #ccc; border-width: 0 6px 6px; } .select2-container .select2-selection--single .select2-selection__rendered { padding-right: 30px; padding-left: 15px; } .select2-container--default .select2-selection--single .select2-selection__rendered { color: #676767; font-size: 15px; font-weight: normal; line-height: 42px; } .select2-container--default .select2-results__option--highlighted[aria-selected] { background-color: #f43b48; } /*----------------- 15. Nav Tabs -----------------------*/ .nav-tabs .nav-link { border-radius: 0; } .nav-tabs > li > a { margin-right: 0; color: #888; border-radius: 0; } .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover { background-color: #eee; border-color: transparent; color: #333; } .nav-tabs.nav-justified > li > a { border-radius: 0; margin-bottom: 0; } .nav-tabs.nav-justified > li > a:hover, .nav-tabs.nav-justified > li > a:focus { border-bottom-color: #ddd; } .nav-tabs.nav-justified.nav-tabs-solid > li > a { border-color: transparent; } .nav-tabs.nav-tabs-solid > li > a { color: #333; } .nav-tabs.nav-tabs-solid > li > a.active, .nav-tabs.nav-tabs-solid > li > a.active:hover, .nav-tabs.nav-tabs-solid > li > a.active:focus { background-color: #f43b48; border-color: #f43b48; color: #fff; } .nav-tabs.nav-tabs-solid.nav-tabs-rounded { border-radius: 50px; } .nav-tabs.nav-tabs-solid.nav-tabs-rounded > li > a { border-radius: 50px; } .nav-tabs.nav-tabs-solid.nav-tabs-rounded > li > a.active, .nav-tabs.nav-tabs-solid.nav-tabs-rounded > li > a.active:hover, .nav-tabs.nav-tabs-solid.nav-tabs-rounded > li > a.active:focus { border-radius: 50px; } .nav-tabs-justified > li > a { border-radius: 0; margin-bottom: 0; } .nav-tabs-justified > li > a:hover, .nav-tabs-justified > li > a:focus { border-bottom-color: #ddd; } .nav-tabs-justified.nav-tabs-solid > li > a { border-color: transparent; } .tab-content { padding-top: 20px; } /*----------------- 16. Holidays -----------------------*/ .custom-table tr.holiday-completed { color: #aaa; } .dropdown.action-label { display: inline-block; } .action-label > a { display: inline-block; min-width: 103px; } .action-label .btn-sm { padding: 4px; } /*----------------- 17. Delete Modal -----------------------*/ .form-header { text-align: center; margin-bottom: 30px; } .form-header h3 { color: #333; font-size: 22px; font-weight: 500; margin-bottom: 10px; } .form-header p { color: #929292; font-size: 15px; margin-bottom: 0; } .modal-btn > .row { margin-left: -8px; margin-right: -8px; } .modal-btn > .row > div { padding-left: 8px; padding-right: 8px; } .continue-btn { background-color: #fff; border: 1px solid #f43b48; border-radius: 50px; color: #f43b48; display: block; font-size: 18px; font-weight: 600; padding: 10px 20px; text-align: center; } .continue-btn:hover, .continue-btn:focus, .continue-btn:active { background-color: #f43b48; border: 1px solid #f43b48; color: #fff; } .cancel-btn { background-color: #fff; border: 1px solid #f43b48; border-radius: 50px; color: #f43b48; display: block; font-size: 18px; font-weight: 600; padding: 10px 20px; text-align: center; } .cancel-btn:hover, .cancel-btn:focus, .cancel-btn:active { background-color: #f43b48; border: 1px solid #f43b48; color: #fff; } /*----------------- 18. Edit Profile -----------------------*/ .profile-img-wrap { height: 120px; position: absolute; width: 120px; background: #fff; overflow: hidden; } .profile-basic { margin-left: 140px; } .profile-basic .cal-icon { width: 100%; } .profile-img-wrap img { border-radius: 50%; height: 120px; width: 120px; } .fileupload.btn { position: absolute; right: 0; bottom: 0; background: rgba(33, 33, 33, 0.5); border-radius: 0; padding: 3px 10px; border: none; } .fileupload input.upload { cursor: pointer; filter: alpha(opacity=0); font-size: 20px; margin: 0; opacity: 0; padding: 0; position: absolute; right: -3px; top: -3px; padding: 5px; } .btn-text { color: #fff; } .submit-section { text-align: center; margin-top: 40px; } .submit-btn { border-radius: 50px; font-size: 18px; font-weight: 600; min-width: 200px; padding: 10px 20px; } .form-scroll { max-height: 400px; overflow-y: auto; } .profile-img-wrap.edit-img { border-radius: 50%; margin: 0 auto 30px; position: relative; } .profile-img-wrap.edit-img .fileupload.btn { left: 0; } /*----------------- 19. Chat -----------------------*/ .chat-avatar-sm { display: inline-block; float: left; margin-left: 0 !important; margin-right: 10px; position: relative; width: 24px; } .chat-avatar-sm img { width:24px; } .chat-avatar-sm.user-img .status { bottom: 0; right: -3px; } .chat-main-row { bottom: 0; left: 0; overflow: auto; padding-bottom: inherit; padding-top: inherit; position: absolute; right: 0; top: 0; } .chat-main-wrapper { display: table; height: 100%; table-layout: fixed; width: 100%; } .message-view { display: table-cell; height: 100%; float: none; padding: 0; position: static; vertical-align: top; width: 75%; } .chat-window { display: table; height: 100%; table-layout: fixed; width: 100%; background-color: #f7f7f7; } .fixed-header { background-color: #fff; border-bottom: 1px solid #eaeaea; padding: 10px 15px; } .fixed-header .navbar { border: 0 none; margin: 0; min-height: auto; padding: 0; } .fixed-header .user-info a { color: #555; text-transform: uppercase; } .typing-text { color: #f43b48; font-size: 12px; text-transform: lowercase; } .last-seen { color: #888; display: block; font-size: 12px; } .custom-menu { margin-top: 6px; } .fixed-header .custom-menu { margin: 0 0 1px; } .custom-menu.nav > li > a { color: #bbb; font-size: 26px; line-height: 32px; margin-left: 15px; padding: 0; } .custom-menu.navbar-nav > li > a:hover, .custom-menu.navbar-nav > li > a:focus { background-color: transparent; } .custom-menu .dropdown-menu { left: auto; right: 0; } .search-box { margin-top: 5px; } .search-box .input-group { background-color: #f7f7f7; border: 1px solid #e3e3e3; border-radius: 50px; } .search-box .input-group .form-control { background: transparent; border: none; } .search-box .btn { background-color: transparent; } .search-input { border-radius: 5px; } .chat-contents { display: table-row; height: 100%; } .chat-content-wrap { height: 100%; position: relative; width: 100%; } .chat-wrap-inner { bottom: 0; left: 0; overflow: auto; position: absolute; right: 0; top: 0; } .chats { padding: 30px 15px; } .chat-body { display: block; margin: 10px 0 0; overflow: hidden; } .chat-body:first-child { margin-top: 0 } .chat-right .chat-content { background-color: #f2f2f2; border: 1px solid #e3e3e3; border-radius: 20px 2px 2px 20px; clear: both; color: #727272; display: block; float: right; margin: 0; max-width: 60%; padding: 8px 15px; position: relative; } .chat-right .chat-body { padding-left: 48px; padding-right: 10px; } .chat-bubble { display: block; width: 100%; float: left; margin-bottom: 10px; } .chat-bubble:hover .chat-action-btns { display: block; float: left; } .chat-right .chat-bubble:hover .chat-action-btns { float: right; display: block; } .chat.chat-right .chat-bubble:last-child .chat-content { border-bottom-right-radius: 20px; } .chat.chat-right .chat-bubble:first-child .chat-content { border-top-right-radius: 20px; } .chat-content > p { margin-bottom: 0; } .chat-time { color: rgba(0, 0, 0, 0.5); display: block; font-size: 12px; } .chat-right .chat-time { text-align: right; } .chat-bubble .chat-action-btns { display: none; } .chat-action-btns { float: right; } .chat-action-btns ul { list-style: none; padding: 0; margin: 15px 15px 0 15px; } .chat-action-btns ul > li { display: inline-block; margin-left: 5px; font-size: 18px; } .chat-right .chat-action-btns { float: left; } .chat-bubble .chat-action-btns a { color: #8c8c8c; } .chat-line { border-bottom: 1px solid #eaeaea; height: 12px; margin: 7px 0 20px; position: relative; text-align: center; } .chat-date { background-color: #f7f7f7; color: #727272; font-size: 12px; padding: 0 11px; } .chat-avatar { float: right; } .chat-avatar .avatar { line-height: 30px; height: 30px; width: 30px; } .chat-left .chat-avatar { float: left } .chat-left .chat-body { margin-right: 0; margin-left: 30px; padding-right: 20px; } .chat-left .chat-content { background-color: #fff; border: 1px solid #eaeaea; color: #888; float: left; position: relative; padding: 8px 15px; border-radius: 2px 20px 20px 2px; max-width: 60%; } .avatar { background-color: #aaa; border-radius: 50%; color: #fff; display: inline-block; font-weight: 500; height: 38px; line-height: 38px; margin: 0 10px 0 0; text-align: center; text-decoration: none; text-transform: uppercase; vertical-align: middle; width: 38px; position: relative; white-space: nowrap; } .avatar:hover { color: #fff; } .avatar.avatar-xs { width: 24px; height: 24px } .avatar > img { border-radius: 50%; display: block; overflow: hidden; width: 100%; } .chat.chat-left .chat-bubble:first-child .chat-content { border-top-left-radius: 20px; margin-top: 0; } .chat.chat-left .chat-bubble:last-child .chat-content { border-bottom-left-radius: 20px; } .chat-left .chat-time { color: #a9a9a9 } .attach-list { color: #a3a3a3; padding: 5px 0 0; line-height: 24px; margin: 0; list-style: none; } .attach-list i { margin-right: 3px; font-size: 16px; } .chat-footer { background-color: #fff; border-top: 1px solid #eaeaea; padding: 15px; } .message-bar { display: table; height: 44px; position: relative; width: 100%; } .message-bar .message-inner { display: table-row; height: 100%; padding: 0 8px; width: 100%; } .message-bar .link { color: #777; display: table-cell; font-size: 20px; padding: 0 10px; position: relative; vertical-align: middle; width: 30px; } .message-bar .message-area { display: table-cell; } .message-area .input-group .form-control { background-color: #fff; border: 1px solid #eaeaea; box-shadow: none; color: #555; display: block; font-size: 14px; height: 44px; margin: 0; padding: 6px 12px; resize: none; } .message-area .btn { height: 44px; width: 50px; } .profile-right { display: table-cell; height: 100%; float: none; padding: 0; position: static; vertical-align: top; } .display-table { display: table; table-layout: fixed; border-spacing: 0; width: 100%; height: 100%; } .table-row { display: table-row; height: 100%; } .table-body { position: relative; height: 100%; width: 100%; } .table-content { bottom: 0; left: 0; overflow: auto; position: absolute; right: 0; top: 0; } .chat-profile-img { padding: 30px; position: relative; text-align: center; } .edit-profile-img { height: 120px; margin: 0 auto; position: relative; width: 120px; cursor: pointer; } .edit-profile-img img { border-radius: 50%; height: auto; margin: 0; width: 120px; } .change-img { background-color: rgba(0, 0, 0, 0.3); border-radius: 50%; color: #fff; display: none; height: 100%; left: 0; line-height: 120px; position: absolute; top: 0; width: 100%; } .edit-profile-img:hover .change-img { display: block; } .edit-profile-img img { height: auto; margin: 0; width: 120px; border-radius: 50%; } .user-name { color: #333; } .edit-btn { border-radius: 40px; height: 36px; position: absolute; right: 15px; top: 15px; width: 36px; } .chat-profile-info { padding: 15px; } .user-det-list { list-style: none; padding: 0; } .user-det-list > li { padding: 6px 15px; } .user-det-list .text-muted { color: #888; } .transfer-files .tab-content { padding-top: 0; } .files-list { list-style: none; padding-left: 0; } .files-list > li { border-bottom: 1px solid #eaeaea; border-radius: inherit; margin: 2px 0 0; padding: 10px; } .files-cont { position: relative; } .file-type { height: 48px; position: absolute; width: 48px; } .files-icon { background-color: #f3f7f9; border: 1px solid #e4eaec; border-radius: 4px; display: inline-block; height: 38px; line-height: 38px; text-align: center; width: 38px; } .files-icon i { color: #76838f; font-size: 20px; } .files-info { padding: 0 30px 0 50px; } .file-name a { color: #333; } .files-action { display: none; height: 30px; list-style: none; padding-left: 0; position: absolute; right: 0; text-align: right; top: 10px; width: 30px; } .files-list > li:hover .files-action { display: block; } .file-date { color: #888; font-size: 12px; } .file-author a { color: #f43b48; font-size: 12px; text-decoration: underline; } .files-action .dropdown-menu { left: auto; right: 0; } .files-action > li > a { color: #777; } .chat-img-attach { border-radius: 4px; margin-bottom: 12px; margin-left: 12px; position: relative; float: right; } .chat-img-attach img { border-radius: 4px; display: inline-block; height: auto; max-width: 100%; } .chat-placeholder { background: rgba(69, 81, 97, 0.6); border-radius: 4px; color: #fff; display: flex; flex-direction: column; height: 100%; justify-content: flex-end; left: 0; padding: 13px; position: absolute; top: 0; width: 100%; } .chat-img-name { font-size: 12px; font-weight: 700; line-height: 16px; } .chat-file-desc { font-size: 11px; } .chat-right .chat-content.img-content { background-color: transparent; border: 0; color: #76838f; padding: 0; text-align: right; } .chat-right .img-content .chat-time { color: #a3a3a3; } .chat-left .chat-img-attach { float: left; } .chat-left .chat-img-attach { float: left; margin-left: 0; margin-right: 12px; } .input-group .form-control-lg.form-control { border-radius: 4px 0 0 4px; height: 46px; } .chat-user-list { list-style: none; margin: 0; padding: 0; } .chat-user-list .media { border-bottom: 1px solid #eaeaea; border-radius: inherit; padding: 10px; background-color: #fff; } .chat-user-list .media:hover { background-color: #f7f7f7; } .designation { color: #9e9e9e; font-size: 12px; } .online-date { color: #9e9e9e; font-size: 12px; } .drop-zone { width: 100%; height: 205px; border: 2px dashed #adb7be; text-align: center; padding: 25px 0 0; margin-bottom: 20px; } .drop-zone .drop-zone-caption { font-weight: 600; } .upload-list { padding: 0; list-style: none; margin: 0; } .upload-list .file-list { background-color: #fff; border-top: 1px solid #e3e3e3; padding: 10px 0; } .upload-list .file-list:first-child { border-top: none } .upload-list .upload-wrap { position: relative; padding: 0 20px 0 0; margin: 0 0 5px } .upload-list .file-name, .upload-list .file-size { display: inline-block; vertical-align: top; white-space: nowrap; } .upload-list .file-name { padding-right: 15px; overflow: hidden; max-width: 100%; text-overflow: ellipsis } .upload-list .file-size { color: #888; } .upload-list .file-close { border: none; background: none; color: #ccc; position: absolute; right: 0; top: 2px; } .upload-list .file-close:hover { color: #f62d51 } .upload-list .upload-process { font-size: 10px; color: #888; } .upload-list .progress { margin-bottom: 5px; } .upload-list .file-name i { color: #888; margin: 0 5px 0 0; vertical-align: middle; } .upload-drop-zone { background-color: #fff; border: 2px dashed #e3e3e3; color: #ccc; height: 200px; line-height: 200px; margin-bottom: 20px; text-align: center; } .upload-drop-zone.drop { color: #222; border-color: #222; } .upload-text { font-size: 24px; margin-left: 10px; } .files-share-list { border: 1px solid #eaeaea; border-radius: 4px; margin-bottom: 20px; padding: 15px; } /*----------------- 20. Focus Label -----------------------*/ .form-focus { height: 50px; position: relative; } .form-focus .focus-label { font-size: 16px; font-weight: 400; opacity: 0.4; pointer-events: none; position: absolute; -webkit-transform: translate3d(0, 22px, 0) scale(1); -ms-transform: translate3d(0, 22px, 0) scale(1); -o-transform: translate3d(0, 22px, 0) scale(1); transform: translate3d(0, 22px, 0) scale(1); transform-origin: left top; transition: 240ms; left: 12px; top: -8px; z-index: 1; color: #888; margin-bottom: 0; } .form-focus.focused .focus-label { opacity: 1; font-weight: 300; top: -14px; font-size: 12px; z-index: 1; } .form-focus .form-control:focus ~ .focus-label, .form-focus .form-control:-webkit-autofill ~ .focus-label { opacity: 1; font-weight: 300; top: -14px; font-size: 12px; z-index: 1; } .form-focus .form-control { height: 50px; padding: 21px 12px 6px; } .form-focus .form-control::-webkit-input-placeholder { color: transparent; transition: 240ms; } .form-focus .form-control:focus::-webkit-input-placeholder { transition: none; } .form-focus.focused .form-control::-webkit-input-placeholder { color: #bbb; } .form-focus.select-focus .focus-label { opacity: 1; font-weight: 300; top: -20px; font-size: 12px; z-index: 1; } .form-focus .select2-container .select2-selection--single { border: 1px solid #e3e3e3; height: 50px; } .form-focus .select2-container--default .select2-selection--single .select2-selection__arrow { height: 48px; right: 7px; } .form-focus .select2-container--default .select2-selection--single .select2-selection__arrow b { border-color: #ccc transparent transparent; border-style: solid; border-width: 6px 6px 0; height: 0; left: 50%; margin-left: -10px; margin-top: -2px; position: absolute; top: 50%; width: 0; } .form-focus .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { border-color: transparent transparent #ccc; border-width: 0 6px 6px; } .form-focus .select2-container .select2-selection--single .select2-selection__rendered { padding-right: 30px; padding-left: 12px; padding-top: 10px; } .form-focus .select2-container--default .select2-selection--single .select2-selection__rendered { color: #676767; font-size: 14px; font-weight: normal; line-height: 38px; } .form-focus .select2-container--default .select2-results__option--highlighted[aria-selected] { background-color: #fc6075; } /*----------------- 21. Leave -----------------------*/ .filter-row .btn { min-height: 50px; padding: 12px; text-transform: uppercase; } .action-label .label { display: inline-block; min-width: 85px; padding: 0.5em 0.6em; } .action-label i { margin-right: 3px; } .action-label .dropdown-menu .dropdown-item { padding: 5px 10px; } /*----------------- 22. Employee -----------------------*/ .action-icon { color: #777; font-size: 18px; display: inline-block; } .table .dropdown-menu { font-size: 13px; min-width: 120px; padding: 0; } .table .dropdown-menu .dropdown-item { padding: 5px 10px; } .dropdown-action .dropdown-toggle::after { display: none; } .profile-widget { background-color: #fff; border: 1px solid #ededed; border-radius: 4px; margin-bottom: 30px; padding: 20px; text-align: center; position: relative; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); overflow: hidden; } .profile-widget .user-name > a { color: #333; } .dropdown.profile-action { position: absolute; right: 5px; text-align: right; top: 10px; } .profile-action .dropdown-toggle::after { display: none; } .profile-img { cursor: pointer; height: 80px; margin: 0 auto; position: relative; width: 80px; } .profile-img .avatar { font-size: 24px; height: 80px; line-height: 80px; margin: 0; width: 80px; } .mobile-no > a { color: #777; display: inline-block; } .staff-mail > a { color: #777; display: inline-block; margin-top: 5px; } .staff-action-btns { margin-top: 10px; } .staff-id { font-size: 14px; font-weight: 500; margin-top: 5px; } .view-icons { float: right; margin-right: 10px; } .view-icons .btn { background-color: #fff; border: 1px solid #e3e3e3; color: #888; font-size: 18px; margin-right: 5px; min-width: 40px; padding: 4px; } .view-icons .btn.active { color: #333; } /*----------------- 23. Events -----------------------*/ .calendar { float: left; margin-bottom: 0; } .fc-view { margin-top: 30px; } .none-border .modal-footer { border-top: none; } .fc-toolbar h2 { font-size: 18px; font-weight: 600; font-family: 'CircularStd', sans-serif; line-height: 30px; text-transform: uppercase; } .fc-day-grid-event .fc-time { font-family: 'CircularStd', sans-serif; } .fc-day { background: #fff; } .fc-toolbar .fc-state-active, .fc-toolbar .ui-state-active, .fc-toolbar button:focus, .fc-toolbar button:hover, .fc-toolbar .ui-state-hover { z-index: 0; } .fc th.fc-widget-header { background: #eeeeee; font-size: 14px; line-height: 20px; padding: 10px 0; text-transform: uppercase; } .fc-unthemed th, .fc-unthemed td, .fc-unthemed thead, .fc-unthemed tbody, .fc-unthemed .fc-divider, .fc-unthemed .fc-row, .fc-unthemed .fc-popover { border-color: #f3f3f3; } .fc-button { background: #f1f1f1; border: none; color: #797979; text-transform: capitalize; box-shadow: none !important; border-radius: 3px !important; margin: 0 3px !important; padding: 6px 12px !important; height: auto !important; } .fc-text-arrow { font-family: inherit; font-size: 16px; } .fc-state-hover { background: #f3f3f3; } .fc-state-highlight { background: #f0f0f0; } .fc-state-down, .fc-state-active, .fc-state-disabled { background-color: #f43b48 !important; color: #fff !important; text-shadow: none !important; } .fc-cell-overlay { background: #f0f0f0; } .fc-unthemed .fc-today { background: #fff; } .fc-event { border-radius: 2px; border: none; cursor: move; font-size: 13px; margin: 1px 7px; padding: 5px 5px; text-align: center; } .external-event { cursor: move; margin: 10px 0; padding: 6px 10px; } .external-event.bg-primary { background-color: rgba(127, 193, 252, 0.3) !important; color: #7fc1fc; } .external-event.bg-success { background-color: rgba(75, 211, 150, 0.3) !important; color: #4bd396; } .external-event.bg-info { background-color: rgba(58, 201, 214, 0.3) !important; color: #3ac9d6; } .external-event.bg-warning { background-color: rgba(249, 200, 81, 0.3) !important; color: #f9c851; } .external-event.bg-danger { background-color: rgba(245, 112, 122, 0.3) !important; color: #f5707a; } .external-event.bg-pink { background-color: rgba(240, 98, 146, 0.3) !important; color: #f06292; } .external-event.bg-purple { background-color: rgba(107, 95, 181, 0.3) !important; color: #6b5fb5; } .external-event.bg-inverse { background-color: rgba(59, 62, 71, 0.3) !important; color: #3b3e47; } .external-event.bg-orange { background-color: rgba(255, 152, 0, 0.3) !important; color: #ff9800; } .external-event.bg-brown { background-color: rgba(141, 110, 99, 0.3) !important; color: #8d6e63; } .external-event.bg-teal { background-color: rgba(38, 166, 154, 0.3) !important; color: #26a69a; } .fc-basic-view td.fc-week-number span { padding-right: 8px; font-weight: 700; font-family: 'CircularStd', sans-serif; } .fc-basic-view td.fc-day-number { padding-right: 8px; font-weight: 700; font-family: 'CircularStd', sans-serif; } .event-form .input-group .form-control { height: 40px; } /*----------------- 24. Profile -----------------------*/ .profile-details { text-align: center; } .personal-info li .title { color: #4f4f4f; float: left; font-weight: 500; margin-right: 30px; width: 25%; } .personal-info li .text { color: #8e8e8e; display: block; overflow: hidden; } .personal-info li { margin-bottom: 10px; } .personal-info { list-style: none; margin-bottom: 0; padding: 0; } .profile-view { position: relative; } .profile-view .profile-img-wrap { height: 120px; width: 120px; } .profile-view .profile-img { width: 120px; height: 120px; } .profile-view .profile-img .avatar { font-size: 24px; height: 120px; line-height: 120px; margin: 0; width: 120px; } .profile-view .profile-basic { margin-left: 140px; padding-right: 50px; } .profile-view .pro-edit { position: absolute; right: 0; top: 0; } .edit-icon { background-color: #eee; border: 1px solid #e3e3e3; border-radius: 24px; color: #bbb; float: right; font-size: 12px; line-height: 24px; min-height: 26px; text-align: center; width: 26px; } .edit-icon:hover { background-color: #f43b48; border-color: #f43b48; color: #fff; } .delete-icon { color: #e30b0b; float: right; font-size: 18px; } .delete-icon:hover { color: #e30b0b; } .staff-msg { margin-top: 30px; } .experience-box { position: relative; } .experience-list { list-style: none; margin: 0; padding: 0; position: relative; } .experience-list::before { background: #ddd; bottom: 0; content: ""; left: 8px; position: absolute; top: 8px; width: 2px; } .experience-list > li { position: relative; } .experience-list > li:last-child .experience-content { margin-bottom: 0; } .experience-user .avatar { height: 32px; line-height: 32px; margin: 0; width: 32px; } .experience-list > li .experience-user { background: #fff; height: 10px; left: 4px; margin: 0; padding: 0; position: absolute; top: 4px; width: 10px; } .experience-list > li .experience-content { background-color: #fff; margin: 0 0 20px 40px; padding: 0; position: relative; } .experience-list > li .experience-content .timeline-content { color: #9e9e9e; } .experience-list > li .experience-content .timeline-content a.name { color: #616161; font-weight: bold; } .experience-list > li .time { color: #bdbdbd; display: block; font-size: 12px; line-height: 1.35; } .before-circle { background-color: #ddd; border-radius: 50%; height: 10px; width: 10px; } .skills > span { border: 1px solid #ccc; border-radius: 500px; display: inline-block; margin-bottom: 10px; padding: 6px 12px; text-align: center; } .profile-info-left { border-right: 2px dashed #ccc; } .bootstrap-tagsinput { background-color: #fff; border: 1px solid #e3e3e3; border-radius: 0; box-shadow: unset; display: block; min-height: 44px; padding: 6px 6px 0; } .bootstrap-tagsinput .badge { font-size: 14px; font-weight: normal; margin-bottom: 6px; padding: 10px 15px; } .add-more a { color: #f43b48; } .add-more a:hover { color: #f10e1d; } .avatar-box { float: left; } .pro-overview .personal-info li .title { width: 50%; } .profile-box { min-height: 250px; } /*----------------- 25. Notifications -----------------------*/ .notifications { padding: 0; } .notifications .noti-content { height: 290px; width: 350px; overflow-y: auto; position: relative; } .notifications .notification-heading { margin: 0; font-size: 14px; font-weight: normal; line-height: 1.45; color: #616161; } .notifications .notification-time { font-size: 12px; line-height: 1.35; color: #bdbdbd; } .notification-list { list-style: none; padding: 0; margin: 0; } .notifications ul.notification-list > li{ margin-top: 0; border-bottom: 1px solid #f5f5f5; } .notifications ul.notification-list > li:last-child { border-bottom: none; } .notifications ul.notification-list > li a { display: block; padding: 12px; border-radius: 2px; } .notifications ul.notification-list > li a:hover { background-color: #fafafa; } .notifications ul.notification-list > li .list-item { border: 0; padding: 0; position: relative; } .notifications .media { margin-top: 0; border-bottom: 1px solid #f5f5f5; } .notifications .media:last-child { border-bottom: none; } .notifications .media a { display: block; padding: 12px; border-radius: 2px; } .notifications .media a:hover { background-color: #fafafa; } .notifications .media-list .media-left { padding-right: 8px; } .topnav-dropdown-header { border-bottom: 1px solid #eee; text-align: center; } .topnav-dropdown-header, .topnav-dropdown-footer { font-size: 12px; height: 32px; line-height: 32px; padding-left: 12px; padding-right: 12px; } .topnav-dropdown-header .notification-title { color: #333; display: block; float: left; font-size: 14px; } .topnav-dropdown-header .clear-noti { color: #f83f37; float: right; font-size: 11px; text-transform: uppercase; } .topnav-dropdown-footer a { display: block; text-align: center; color: #333; } .user-menu.nav > li > a .badge { color: #fff; font-weight: 700; position: absolute; right: 3px; top: 6px; } .user-menu.nav > li > a .badge { background-color: #7460ee; } .user-menu.nav > li > a > i { font-size: 20px; line-height: 60px; } .noti-details { color: #989c9e; margin-bottom: 0; } .noti-title { color: #333; } .noti-time { margin: 0; } /*----------------- 26. Roles & Permissions -----------------------*/ .roles-menu { margin-top: 20px; } .roles-menu > ul { background-color: #fff; border: 1px solid #e3e3e3; list-style: none; margin: 0; padding: 0; } .roles-menu > ul > li { display: block; position: relative; } .roles-menu > ul > li a { border-left: 3px solid transparent; color: #333; display: block; padding: 10px 15px; position: relative; } .roles-menu > ul > li.active a { border-color: #f43b48; color: #f43b48; } .roles-menu > ul > li a:hover { background-color: #eee; border-color: #f43b48; } .role-action { float: right; display: none; } .roles-menu > ul > li a:hover .role-action { display: block; } .slide-nav .sidebar { margin-left: 0; } /*----------------- 27. Chat Right Sidebar -----------------------*/ .fixed-header .custom-menu { margin: 1px 0 0; } .topnav-dropdown-footer { border-top: 1px solid #eee; } .list-box { list-style: none; padding-left: 0; } .list-item { border-bottom: 1px solid #eaeaea; padding: 10px; position: relative; } .list-left { height: 48px; position: absolute; width: 48px; } .files-icon { background-color: #f5f5f5; border: 1px solid #ddd; border-radius: 4px; display: inline-block; height: 38px; line-height: 38px; text-align: center; width: 38px; } .files-icon i { color: #777; font-size: 20px; } .list-body { padding: 0 0 0 50px; } .message-author { color: #333; float: left; font-weight: 500; width: 175px; display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .message-time { color: #888; float: right; font-size: 11px; } .message-content { color: #333; font-size: 13px; display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .files-action .dropdown-menu { left: auto; right: 0; } /*----------------- 28. Projects -----------------------*/ .team-members { display: inline-flex; flex-wrap: wrap; list-style: none; margin-bottom: 0; padding: 0; } .team-members > li:first-child a { margin-left: 0; } .team-members > li > a { border: 2px solid #fff; border-radius: 100%; display: block; height: 30px; overflow: hidden; width: 30px; } .team-members .all-users { line-height: 28px; opacity: 0.8; } .all-users { background-color: #ff5e3a; color: #fff; font-size: 10px; font-weight: 800; line-height: 34px; text-align: center; } .all-users:hover, .all-users:active { color: #fff; } .team-members img { width: 100%; } .project-title { margin: 0 0 5px; } .project-title > h5 { font-size: 16px; margin-bottom: 0; margin-top: 0; } .project-title > a { color: #333; } .avatar-dropdown .dropdown-menu { min-width: unset; width: 100px; padding: 0; } .avatar-dropdown .avatar-group { min-height: 88px; padding: 2px; white-space: normal; } .avatar-dropdown .avatar-group .avatar { margin: 2px; } .avatar-dropdown .avatar-pagination { border-top: 1px solid rgba(0, 0, 0, 0.1); } .avatar-dropdown .page-link { padding: .3rem 0.55rem; border-radius: 0 !important; border: 0; } .avatar-dropdown .dropdown-toggle::after { display: none; } /*----------------- 29. Invoice -----------------------*/ .invoice-details, .invoice-payment-details > li span { float: right; text-align: right; } .table .team-members { flex-wrap: nowrap; } .table .team-members > li > a { width: 32px; height: 32px; } .table .team-members .all-users { line-height: 30px; } .attach-files > ul { list-style: none; margin: 0; padding: 0; } .attach-files li { display: inline-block; margin-right: 10px; position: relative; } .attach-files li img { width: 50px; } .file-remove { color: #f00; position: absolute; right: -6px; top: -7px; } .attach-files li:last-child { margin-right: 0; } .inv-logo { height: auto; margin-bottom: 20px; max-height: 100px; width: auto; } /*----------------- 30. Task -----------------------*/ .task-chat-contents { background-color: #fff; } .task-chat-contents .chat-left .chat-content { max-width: 100%; } .task-chat-view { border-left: 1px solid #eaeaea; } .task-left-sidebar { width: 58.3333%; } .task-right-sidebar { width: 41.6667%; } .task-chat-view .chat-left .chat-content { border: 0; padding: 0; } .task-chat-view .chat-left .chat-body { margin-left: 50px; } .task-chat-view .chat-date { background-color: #fff; } .task-chat-view .chats { padding: 15px 15px 30px; } .task-chat-view .avatar { width: 30px; height: 30px; line-height: 30px; } .followers-add { background-color: #fff; border: 1px solid #ccc; border-radius: 50%; color: #ccc; display: inline-block; font-size: 20px; height: 30px; line-height: 30px; text-align: center; width: 30px; } .followers-add:hover { border: 1px solid #8c8c8c; color: #8c8c8c; } .completed-task-msg { margin-bottom: 30px; margin-left: 50px; } .task-chat-contents .chat.chat-left { margin-bottom: 20px; } .file-attached { color: #333; font-size: 13px; } .file-attached i { font-size: 16px; } .task-attach-img > img { border: 1px solid #eaeaea; max-width: 100%; } .attach-img-download { margin-bottom: 5px; } .task-chat-view .chat-left .chat-time { color: #a3a3a3; display: inline-block; font-size: 11px; } .task-chat-user { color: #333; font-size: 13px; } .task-chat-view .chat-content > p { font-size: 13px; margin-bottom: 0; } .task-time { color: #a3a3a3; display: inline-block; font-size: 11px; } .task-success { color: #55ce63; font-size: 13px; } .task-success a { color: #55ce63; } .task-attach-img { margin-bottom: 20px; } .task-assign { float: left; } .assign-title { float: left; margin-right: 10px; margin-top: 5px; } .task-assign > a { float: left; } .followers-add > i { line-height: 28px; } .task-followers { display: flex; margin-top: 15px; } .followers-title { margin: 5px 10px 0 0; } .task-line { border-color: #eaeaea; } .task-information { color: #a3a3a3; font-size: 11px; line-height: 17px; min-width: 1px; margin-left: 50px; } .task-info-line { overflow-wrap: break-word; } .task-user { color: #888; font-weight: 500; } .task-information .task-time { display: inline-block; padding-left: 10px; } .task-btn-right { display: none !important; } .task:hover .task-btn-right { display: table-cell !important; } .task-action-btn.task-check { text-align: left !important; width: 40px; } .add-task-btn { cursor: pointer; padding: 6px 10px; text-transform: uppercase; } .action-circle { background-color: #fff; border: 1px solid #ccc; border-radius: 100%; height: 20px; width: 20px; display: inline-block; text-align: center; cursor: pointer; -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; } .action-circle .material-icons { color: #ccc; font-size: 18px; vertical-align: -3px; } .action-circle.completed { background: #35BA67; border: 1px solid #2fa65c; } .action-circle.completed .material-icons { color: #fff; } .action-circle.large { height: 24px; width: 24px; } .action-circle.large .material-icons { font-size: 16px; vertical-align: -4px; } .task-wrapper { padding: 20px; width: 100%; margin: 0 auto; box-sizing: border-box; } .task-wrapper .mark-all-tasks { text-align: right; padding-bottom: 15px; } .task-wrapper .mark-all-tasks .mark-all-tasks-container { overflow: hidden; position: relative; } .task-wrapper .mark-all-tasks .mark-all-btn { cursor: pointer; display: inline-block; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .task-wrapper .mark-all-tasks .mark-all-btn#mark-all-finished { color: #35BA67; } .task-wrapper .mark-all-tasks .mark-all-btn#mark-all-incomplete { color: #666; } .task-wrapper .mark-all-tasks .mark-all-btn#mark-all-incomplete .action-circle { border: 1px solid #666; } .task-wrapper .mark-all-tasks .mark-all-btn#mark-all-incomplete .action-circle .material-icons { color: #666; } .task-wrapper .mark-all-tasks .mark-all-btn.move-up { -webkit-transform: translateY(-30px); -moz-transform: translateY(-30px); -ms-transform: translateY(-30px); -o-transform: translateY(-30px); transform: translateY(-30px); position: absolute; right: 0; } .task-wrapper .mark-all-tasks .mark-all-btn.move-down { -webkit-transform: translateY(30px); -moz-transform: translateY(30px); -ms-transform: translateY(30px); -o-transform: translateY(30px); transform: translateY(30px); position: absolute; right: 0; } .task-wrapper .task-list-header h3, .task-wrapper .task-list-footer h3 { font-size: 24px; font-weight: 400; color: #666; } .task-wrapper .task-list-body { max-height: 500px; overflow: auto; } .task-wrapper #task-list { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid #eaeaea; } .task-wrapper #task-list li { margin: 0; padding: 0; } .task-wrapper #task-list li .task-container { display: table; background: #fff; padding: 8px 15px; width: 100%; border: 1px solid #eaeaea; border-bottom: none; box-sizing: border-box; position: relative; -webkit-transition: background 200ms ease; -moz-transition: background 200ms ease; -ms-transition: background 200ms ease; -o-transition: background 200ms ease; transition: background 200ms ease; } .task-wrapper #task-list li .task-container .task-label { display: table-cell; font-weight: 400; vertical-align: middle; color: #333; word-break: break-all; } .task-wrapper #task-list li .task-container .task-action-btn { display: table-cell; vertical-align: middle; text-align: right; } .task-wrapper #task-list li .task-container .task-action-btn .action-circle:hover { border: 1px solid #8c8c8c; background: #fff; } .task-wrapper #task-list li .task-container .task-action-btn .action-circle:hover .material-icons { color: #8c8c8c; } .task-wrapper #task-list li .task-container:hover { background: #EBEEEF; } .task-wrapper #task-list li.completed .task-container { background: #f9f9f9; } .task-wrapper #task-list li.completed .task-container .complete-btn { background: #35BA67; border: 1px solid #2fa65c; } .task-wrapper #task-list li.completed .task-container .complete-btn .material-icons { color: #fff; } .task-wrapper #task-list li.completed .task-container .complete-btn:hover { background: #35BA67; border: 1px solid #2fa65c; } .task-wrapper #task-list li.completed .task-container .complete-btn:hover .material-icons { color: #fff; } .task-wrapper #task-list li.completed .task-container .task-label { color: #ccc; } .task-wrapper #task-list li.new .task-container { -webkit-animation: taskHighlighter 2000ms linear 1; animation: taskHighlighter 2000ms linear 1; } .task-wrapper .task-list-footer { position: relative; } .task-wrapper .task-list-footer .add-task-btn-wrapper { text-align: center; } .task-wrapper .task-list-footer .add-task-btn { cursor: pointer; border: 2px solid #9B1BCC; display: inline-block; height: 35px; width: 35px; border-radius: 10px; -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; } .task-wrapper .task-list-footer .add-task-btn.hide { opacity: 1; visibility: visible; display: block; } .task-wrapper .task-list-footer .add-task-btn:hover { background: #9B1BCC; } .task-wrapper .task-list-footer .add-task-btn:hover .material-icons { color: #EBEEEF; } .task-wrapper .task-list-footer .add-task-btn .material-icons { color: #9B1BCC; font-size: 34px; } .task-wrapper .task-list-footer .new-task-wrapper { -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; max-height: 0; overflow: hidden; } .task-wrapper .task-list-footer .new-task-wrapper::after { content: ""; display: block; clear: both; } .task-wrapper .task-list-footer .new-task-wrapper textarea { box-sizing: border-box; width: 100%; border: 1px solid #eaeaea; border-top: 0; height: 45px; resize: none; padding: 10px 15px; margin-bottom: 20px; -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; } .task-wrapper .task-list-footer .new-task-wrapper textarea:focus { border: 1px solid #bfbfbf; outline: none; } .task-wrapper .task-list-footer .new-task-wrapper textarea.error { border: 1px solid #D93737; outline: none; } .task-wrapper .task-list-footer .new-task-wrapper .error-message { color: #D93737; font-style: italic; } .task-wrapper .task-list-footer .new-task-wrapper .btn { padding: 6px 12px; float: right; cursor: pointer; } .task-wrapper .task-list-footer .new-task-wrapper .add-new-task-btn { background: #fff; border: 1px solid #ccc; } .task-wrapper .task-list-footer .new-task-wrapper.visible { max-height: 300px; overflow: auto; } .notification-popup { z-index: 1051; position: fixed; top: 20px; right: 10px; width: 300px; display: inline-block; background: #1F8FEF; border: 1px solid #1082e4; color: #fff; padding: 20px; opacity: .8; border-radius: 2px; box-sizing: border-box; -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; } .notification-popup.success { background: #35BA67; border: 1px solid #2fa65c; } .notification-popup p { margin-top: 0; margin-bottom: 0px; } .notification-popup .task { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 100%; display: inline-block; } .notification-popup .notification-text { font-size: 14px; display: inline-block; overflow: hidden; } .notification-popup.hide { opacity: 0; visibility: hidden; } .sidebar-overlay { display: none; position: fixed; z-index: 90; height: 100%; left: 0; top: 60px; width: 100%; z-index: 1040; background-color: rgba(0, 0, 0, 0.6); } .sidebar-overlay.opened { display: block; } .sidebar-menu.opened { opacity: 1; -webkit-transform: translateX(0px); -moz-transform: translateX(0px); -ms-transform: translateX(0px); -o-transform: translateX(0px); transform: translateX(0px); margin-left: 0; } html.menu-opened { overflow: hidden; } html.menu-opened body { overflow: hidden; } .task-chat-view.opened { margin-right: 0; } .chat-profile-view.opened { margin-right: 0; } .task-header { display: flex; } .task-header .assignee-info { align-items: center; border: 1px solid transparent; border-radius: 10px; display: inline-flex; flex: 0 1 180px; padding: 5px 10px 5px 5px; position: relative; } .task-header .assignee-info > a { align-items: center; color: #333; display: flex; } .task-header .task-head-title { color: #8e8e8e; font-size: 12px; } .task-assignee { font-size: 13px; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .assignee-info:hover { border-color: #e3e3e3; } .remove-icon { align-items: center; background-color: #e3e3e3; border-radius: 50%; color: #333; cursor: pointer; display: flex; height: 20px; justify-content: center; margin-right: 10px; position: absolute; right: 0; top: 50%; transform: translateY(-50%); visibility: hidden; width: 20px; } .remove-icon:hover { background-color: #d3d3d3; } .task-header .assignee-info:hover .remove-icon { visibility: visible; } .remove-icon i { color: #8e8e8e; font-size: 12px; } .due-icon span { align-items: center; background-color: #fff; border: 1px solid #ccc; border-radius: 50%; color: #ccc; display: flex; height: 30px; justify-content: center; line-height: 30px; margin-right: 10px; width: 30px; } .due-icon span i { font-size: 18px; } .task-due-date { align-items: center; border: 1px solid transparent; border-radius: 10px; display: flex; flex: 0 0 160px; margin-left: 10px; padding: 5px 10px 5px 5px; position: relative; } .task-due-date:hover { border-color: #e3e3e3; } .task-header .task-due-date > a { align-items: center; color: #333; display: flex; } .due-info .due-date { color: #f62d51; font-size: 13px; } .task-header .task-due-date:hover .remove-icon { visibility: visible; } .task-desc { align-items: flex-start; display: flex; margin-bottom: 15px; margin-top: 5px; } .task-textarea { display: flex; width: 100%; } .task-desc-icon { color: #ccc; margin-right: 10px; margin-top: 5px; } .task-textarea .form-control { border: 1px solid transparent; border-radius: 5px; font-size: 13px; resize: none; } .task-textarea:hover .form-control { border-color: #e3e3e3; } .task-complete-btn { align-items: center; background-color: #fff; border: 1px solid #ccc; border-radius: 5px; color: #333; display: flex; font-size: 14px; padding: 6px 10px; } .task-complete-btn:hover { background-color: #f7f7f7; color: #333; } .task-complete-btn i { font-size: 20px; margin-right: 3px; } .task-completed { background-color: #35ba67; border-color: #2fa65c; color: #fff; } .task-completed:hover { background-color: #35ba67; border-color: #2fa65c; color: #fff; } /*----------------- 31. Project View -----------------------*/ .project-user .list-box { margin: 0; } .project-files i { color: #76838f; font-size: 50px; } .project-user .list-item { border: 0 none; padding: 10px 0; } .table-border { border: 1px solid #ddd; } .file-size { color: #888; } .project-task .task-wrapper { padding: 0; } .project-task .tab-content { min-height: 200px; } .uploaded-box { background-color: #fff; border: 1px solid #ddd; border-radius: 4px; display: block; margin-bottom: 20px; padding: 4px; } .uploaded-box .uploaded-img-name { color: #333; padding: 9px; text-align:center; } /*----------------- 32. Payslip -----------------------*/ .payslip-title { margin-bottom: 20px; text-align: center; text-decoration: underline; text-transform: uppercase; } /*----------------- 33. Attendance -----------------------*/ .first-off { white-space: pre-wrap; } .stats-info { background-color: #fff; border: 1px solid #e5e5e5; border-radius: 4px; margin-bottom: 20px; padding: 15px; text-align: center; } .stats-info h6 { color: #1f1f1f; font-size: 16px; font-weight: normal; line-height: 18px; margin-bottom: 5px; } .stats-info h4 { font-size: 24px; margin-bottom: 0; } .stats-info h4 span { color: #727272; font-size: 12px; } .punch-det { background-color: #f9f9f9; border: 1px solid #e3e3e3; border-radius: 4px; margin-bottom: 20px; padding: 10px 15px; } .punch-det h6 { line-height: 20px; margin-bottom: 0; } .punch-det p { color: #727272; font-size: 14px; margin-bottom: 0; } .punch-info { margin-bottom: 20px; } .punch-hours { align-items: center; background-color: #f9f9f9; border: 5px solid #e3e3e3; border-radius: 50%; display: flex; font-size: 18px; height: 120px; justify-content: center; margin: 0 auto; width: 120px; } .punch-btn-section { margin-bottom: 20px; text-align: center; } .punch-btn { border-radius: 50px; font-size: 18px; font-weight: 600; max-width: 100%; padding: 8px 40px; } .punch-status .stats-box { margin-bottom: 0; } .stats-list { height: 331px; overflow-y: auto; } .att-statistics .stats-info { margin-bottom: 5px; } .att-statistics .progress { height: 4px; } .statistics .row { margin-left: -5px; margin-right: -5px; } .statistics .row > div { padding-left: 5px; padding-right: 5px; } .stats-box { background-color: #f9f9f9; border: 1px solid #e3e3e3; margin-bottom: 15px; padding: 5px; } .stats-box p { margin: 0; font-size: 12px; } .stats-box > h6 { margin-bottom: 0; } .stats-info:last-child .progress { margin-bottom: 0; } .stats-info p { display: flex; font-size: 12px; justify-content: space-between; margin-bottom: 5px; } .recent-activity .res-activity-list { height: 328px; list-style-type: none; margin-bottom: 0; overflow-y: auto; padding-left: 30px; position: relative; } .recent-activity .res-activity-list li { margin-bottom: 15px; position: relative; } .recent-activity .res-activity-list li:last-child { margin-bottom: 0; } .recent-activity .res-activity-list li:before { width: 10px; height: 10px; left: -30px; top: 0px; border: 2px solid #f43b48; margin-right: 15px; z-index: 2; background: #fff; } .recent-activity .res-activity-list li:before { content: ""; position: absolute; border-radius: 100%; } .recent-activity .res-activity-list:after { content: ""; border: 1px solid #e5e5e5; position: absolute; top: 0; bottom: 0; left: 4px; } .recent-activity .res-activity-time { color: #bbb; font-size: 12px; } .recent-activity h6 { line-height: 14px; margin-bottom: 0; } .recent-activity p { font-size: 13px; margin-bottom: 0; } .half-day { width: 15px; } /*----------------- 34. Ticket -----------------------*/ .ticket-header { padding: 6px 0; } .ticket-priority { font-size: 14px; } .ticket-chat-view { width:33.3333%; } .dataTables_wrapper.container-fluid { padding-left: 0; padding-right: 0; } /*----------------- 35. Client Profile -----------------------*/ .tab-box { border-bottom: 0; margin-bottom: 10px; padding: 0; } .team-members a.followers-add { background-color: #fff; border: 1px solid #ccc; border-radius: 50%; color: #ccc; display: inline-block; font-size: 20px; height: 30px; line-height: 30px; text-align: center; width: 30px; } /*----------------- 36. Inbox -----------------------*/ .table-inbox input[type="radio"], .table-inbox input[type="checkbox"] { cursor: pointer; } .mail-list { list-style: none; padding: 0; } .mail-list > li > a { color: #333; display: block; padding: 10px; } .mail-list > li.active > a { color: #f43b48; font-weight: bold; } .unread .name, .unread .subject, .unread .mail-date { color: #000; font-weight: 600; } .table-inbox .fa-star { color: #ffd200; } .table-inbox .starred.fa-star { color: #ffd200; } .table.table-inbox > tbody > tr > td, .table.table-inbox > tbody > tr > th, .table.table-inbox > tfoot > tr > td, .table.table-inbox > tfoot > tr > th, .table.table-inbox > thead > tr > td, .table.table-inbox > thead > tr > th { border-bottom: 1px solid #f2f2f2; border-top: 0; } .table-inbox { font-size: 14px; margin-bottom: 0; } .note-editor.note-frame { border: 1px solid #ccc; box-shadow: inherit; } .note-editor.note-frame .note-statusbar { background-color: #fff; } .note-editor.note-frame.fullscreen { top: 60px; } .mail-title { font-weight: bold; text-transform: uppercase; } .form-control.search-message { border-radius: 4px; height: 38px; margin-left: 5px; width: 180px; } .table-inbox tr { cursor: pointer; } table.table-inbox tbody tr.checked { background-color: #ffffcc; } .mail-label { font-size: 16px !important; margin-right: 5px; } /*----------------- 37. Mail View -----------------------*/ .attachments { list-style: none; margin: 0; padding: 0; } .attachments li { border: 1px solid #eee; float: left; margin-bottom: 10px; margin-right: 10px; width: 200px; } .attach-file { color: #777; font-size: 70px; padding: 10px; text-align: center; min-height: 153px; } .attach-file > i { line-height: 133px; } .attach-info { background-color: #f4f4f4; padding: 10px; } .attach-filename { color: #777; font-weight: bold; } .attach-filesize { color: #999; font-size: 12px; } .attach-file img { height: auto; max-width: 100%; } .mailview-header { border-bottom: 1px solid #ddd; margin-bottom: 20px; padding-bottom: 15px; } .mailview-footer { border-top: 1px solid #ddd; margin-top: 20px; padding-top: 15px; } .mailview-footer .btn-white { min-width: 102px; } .sender-img { float: left; margin-right: 10px; width: 40px; } .sender-name { display: block; } .receiver-name { color: #777; } .right-action { text-align: right; } .mail-view-title { font-weight: 500; font-size: 24px; margin: 0; } .mail-view-action { float: right; } .mail-sent-time { float: right; } /*----------------- 38. Voice call -----------------------*/ .voice-call-avatar { flex-direction: column; display: flex; align-items: center; justify-content: center; flex: 2; } .voice-call-avatar .call-avatar { margin: 15px; width: 150px; height: 150px; border-radius: 100%; border: 1px solid rgba(0, 0, 0, 0.1); padding: 3px; background-color: #fff; } .call-duration { display: inline-block; font-size: 30px; margin-top: 4px; position: absolute; left: 0; } .voice-call-avatar .call-timing-count { padding: 5px; } .voice-call-avatar .username { font-size: 18px; text-transform: uppercase; } .call-icons { text-align: center; position: relative; } .call-icons .call-items { border-radius: 5px; padding: 0; margin: 0; list-style: none; display: inline-block; } .call-icons .call-items .call-item { display: inline-block; text-align: center; margin-right: 5px; } .call-icons .call-items .call-item:last-child { margin-right: 0; } .call-icons .call-items .call-item a { color: #777; border: 1px solid #ddd; width: 50px; height: 50px; line-height: 50px; border-radius: 50px; display: inline-block; font-size: 20px; } .call-icons .call-items .call-item a i { width: 18px; height: 18px; } .user-video { bottom: 0; left: 0; overflow: auto; position: absolute; right: 0; top: 0; z-index: 10; } .user-video img { width: auto; max-width: 100%; height: auto; max-height: 100%; display: block; margin: 0 auto; } .user-video video { width: auto; max-width: 100%; height: auto; max-height: 100%; display: block; margin: 0 auto; } .my-video { position: absolute; z-index: 99; bottom: 20px; right: 20px; } .my-video ul { margin: 0; padding: 0; list-style: none; } .my-video ul li { float: left; width: 120px; margin-right: 10px; } .my-video ul li img { border: 3px solid #fff; border-radius: 6px; } .end-call { position: absolute; top: 7px; right: 0; } .end-call a { background-color: #f06060; border-radius: 50px; color: #fff; display: inline-block; line-height: 10px; padding: 8px 25px; text-transform: uppercase; } .call-users { position: absolute; z-index: 99; bottom: 20px; right: 20px; } .call-users ul { margin: 0; padding: 0; list-style: none; } .call-users ul li { float: left; width: 80px; margin-left: 10px; } .call-users ul li img { border-radius: 6px; padding: 2px; background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.1); } .call-mute { width: 80px; height: 80px; background-color: rgba(0, 0, 0, 0.5); position: absolute; display: inline-block; text-align: center; line-height: 80px; border-radius: 6px; font-size: 30px; color: #fff; display: none; top: 0; border: 3px solid transparent; } .call-users ul li a:hover .call-mute { display: block; } .call-details { margin: 10px 0 0px; display: flex; } .call-info { margin-left: 10px; width: 100%; } .call-user-details, .call-timing { display: block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } .call-description { white-space: nowrap; vertical-align: bottom; } .call-timing { color: #727272; display: flex; font-size: 14px; margin-top: 1px; overflow: hidden; white-space: pre; } /*----------------- 39. Video Call -----------------------*/ .content-full { height: 100%; position: relative; width: 100%; } .video-window .fixed-header { padding: 0; border: 0; } .video-window .fixed-header .nav > li > a { padding: 18px 15px; } /*----------------- 40. Outgoing Call -----------------------*/ .call-box { display: block; background: #f43b48; background: -moz-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -webkit-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -ms-linear-gradient(left, #f43b48 0%, #453a94 100%); background: linear-gradient(to right, #f43b48 0%, #453a94 100%); position: sticky; top: 0; z-index: 99; overflow-y: auto; overflow-x: hidden; } .call-box .call-wrapper { display: flex; align-items: center; justify-content: center; height: calc(100vh - 60px); text-align: center; } .call-box .call-wrapper .call-avatar { margin-bottom: 50px; cursor: pointer; animation: ripple 2s infinite; } .call-box .call-wrapper .call-user { margin-bottom: 50px; } .call-box .call-wrapper .call-user h4 { color: #fff; } .call-box .call-wrapper .call-user span { display: block; color: #fff; font-weight: 500; text-align: center; } .call-box .call-wrapper .call-items { display: flex; align-items: center; justify-content: center; } .call-box .call-wrapper .call-items .call-item { background-color: rgba(255, 255, 255, 0.2); border: 1px solid transparent; border-radius: 100%; color: #fff; line-height: 0; margin: 0 5px; padding: 15px; } .call-box .call-wrapper .call-items .call-item:hover { opacity: 0.9; } .call-box .call-wrapper .call-items .call-item:first-child { margin-top: -30px; } .call-box .call-wrapper .call-items .call-item:last-child { margin-top: -30px; } .call-box .call-wrapper .call-items .call-item.call-end { padding: 20px; margin: 30px 20px 0; background: #f06060; border: 1px solid #f06060; color: #fff; line-height: 0; border-radius: 100%; } .call-box .call-wrapper .call-items .call-item.call-start { padding: 20px; margin: 30px 20px 0; background: #55ce63; border: 1px solid #55ce63; color: #fff; line-height: 0; border-radius: 100%; } .call-box.incoming-box .call-wrapper .call-items .call-item.call-start { margin: 0 10px; } .call-box.incoming-box .call-wrapper .call-items .call-item.call-end { margin: 0 10px; } .call-box .call-avatar { border-radius: 100%; height: 150px; max-width: 150px; min-width: 150px; position: relative; width: 100%; } .call-box .btn { background: rgba(0, 0, 0, 0); transition: all 0.3s ease 0s; } @-webkit-keyframes ripple { 0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1); } 100% { -webkit-box-shadow: 0 0 0 50px rgba(0, 0, 0, 0); } } @keyframes ripple { 0% { -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1); box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1); } 100% { -moz-box-shadow: 0 0 0 50px rgba(0, 0, 0, 0); box-shadow: 0 0 0 50px rgba(0, 0, 0, 0); } } /*----------------- 41. Incoming Call -----------------------*/ .incoming-btns { margin-top: 20px; } /*----------------- 42. Contacts -----------------------*/ .contacts-header { background-color: #fff; border-bottom: 1px solid #eaeaea; padding: 10px 15px; } .contacts-header .navbar { border: 0 none; margin: 0; min-height: auto; } .contacts-header .user-info a { color: #76838f; text-transform: uppercase; } .contact-left { display: table-cell; height: 100%; float: none; padding: 0; position: static; vertical-align: top; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; width: 100%; } .contacts-list { position: relative; padding: 0 70px 0 20px; } .contact-list { list-style: none; padding-left: 0; margin: 0; } .contact-list > li { background-color: #fff; border-bottom: 1px solid #eaeaea; border-radius: inherit; padding: 10px; } .contact-cont { position: relative; } .contact-type { height: 48px; position: absolute; width: 48px; } .contact-icon { background-color: #f3f7f9; border: 1px solid #e4eaec; border-radius: 4px; display: inline-block; height: 38px; line-height: 38px; text-align: center; width: 38px; } .contact-icon i { color: #76838f; font-size: 20px; } .contact-info { padding: 0 30px 0 50px; } .contact-action { height: 30px; list-style: none; padding-left: 0; position: absolute; right: 0; text-align: right; top: 10px; width: 30px; } .contact-date { color: #888; font-size: 12px; } .contact-author a { color: #1d6ad2; font-size: 12px; text-decoration: underline; } .contact-action .dropdown-menu { left: auto; right: 0; } .contact-alphapets { background-color: #fff; border-left: 1px solid #ddd; bottom: 0; height: 100%; overflow: hidden; padding-bottom: 114px; position: fixed; right: 0; top: 114px; width: 50px; } .contact-box { display: inline-table; height: 100%; padding: 30px 15px; position: relative; width: 100%; } .alphapets-inner { height: 100%; overflow: auto; } .alphapets-inner a { display: block; text-align: center; padding: 2px; color: #333; } /*----------------- 43. Chat Sidebar -----------------------*/ .chat-sidebar { background-color: #fff; border-left: 1px solid #eaeaea; width: 300px; } .chat-sidebar .chat-contents { background-color: #fff; } .chat-sidebar .chat-left .chat-content { border: 0; padding: 0; border-radius: 0 !important; background-color: transparent; max-width: 100%; } .chat-sidebar .chat-left .chat-body { margin-left: 50px; padding-right: 0; } .chat-sidebar .chat-date { background-color: #fff; } .chat-sidebar .chats { padding: 15px 15px 30px; } .chat-sidebar .avatar { width: 30px; height: 30px; line-height: 30px; } .chat-sidebar .chat.chat-left { margin-bottom: 20px; } .chat-sidebar .chat.chat-left:last-child { margin-bottom: 0; } .chat-sidebar .chat-left .chat-time { color: #888; display: inline-block; font-size: 11px; } .chat-sidebar .chat-content > p { font-size: 13px; margin-bottom: 0; } .chat-sidebar.opened { margin-right: 0; } /*----------------- 44. Jobs -----------------------*/ .apply-btn { background: #f43b48; background: -moz-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -webkit-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -ms-linear-gradient(left, #f43b48 0%, #453a94 100%); background: linear-gradient(to right, #f43b48 0%, #453a94 100%); border-color: transparent; box-shadow: 0 6px 15px rgba(36, 37, 38, 0.08); color: #fff; position: absolute; right: 20px; top: 20px; } .job-list { background-color: #fff; border: 1px solid #ededed; border-radius: 4px; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); display: block; margin-bottom: 35px; position: relative; transition: all 0.3s ease 0s; } .job-list-det { align-items: flex-start; display: flex; align-items: center; padding: 20px; } .job-list .job-list-desc { flex: 1 1 0; } .job-list h4.job-department { color: #777; font-size: 14px; margin-bottom: 0; } .job-list h3.job-list-title { color: #333; font-size: 18px; font-weight: 600; line-height: 18px; } .job-list .job-list-footer { background-color: #f9f9f9; border-radius: 0 0 4px 4px; position: relative; padding: 20px; } .job-list .job-list-footer ul { list-style: none; margin: 0; padding: 0; } .job-list .job-list-footer ul li { color: #777; display: inline-block; margin-right: 14px; } .job-list .job-list-footer ul li i { color: #777; margin-right: 3px; position: relative; } .job-list .job-list-footer ul li:last-child { margin-right: 0; } .page-wrapper.job-wrapper { margin-left: 0; } .job-types { background-color: transparent; border: 1px solid #f43b48; color: #f43b48; border-radius: 4px; display: inline-block; padding: 6px 12px; text-align: center; } /*----------------- 45. Job Details -----------------------*/ .job-info { background-color: #fff; border: 1px solid #efefef; float: left; margin: 0 0 30px; padding: 30px; position: relative; width: 100%; } .job-title { color: #585858; font-size: 22px; font-weight: 600; margin-bottom: 5px; } .job-info .job-dept { color: #737882; display: block; font-size: 16px; font-weight: 500; margin-bottom: 20px; } .job-post-det { display: inline-block; margin-bottom: 5px; width: 100%; color: #737882; list-style: none; margin: 0; padding: 0; } .job-content li { line-height: 28px; } .job-post-det li { float: left; list-style: none; margin-bottom: 10px; margin-right: 20px; } .job-det-info { background-color: #fff; margin: 0 0 15px; padding: 0 0 6px; } .info-list { color: #888; padding-top: 20px; } .info-list span { color: #f43b48; float: left; font-size: 20px; line-height: 14px; } .info-list p { line-height: 1.7; margin: 0 0 0 40px; } .info-list > h5 { color: #585858; font-size: 14px; font-weight: 600; margin-bottom: 5px; margin-left: 40px; text-transform: uppercase; } .app-ends { color: #46cd38; font-size: 13px; } .job-btn { border: 2px solid #f43b48; color: #f43b48; display: block; font-size: 16px; font-weight: 600; margin-bottom: 20px; padding: 15px; text-transform: uppercase; transition: all 0.3s ease 0s; } .job-btn:hover { background-color: #f43b48; color: #fff; } .job-widget { background-color: #fff; border: 1px solid #efefef; float: left; margin: 0 0 30px; padding: 30px; position: relative; width: 100%; } .job-desc-title h2 { font-size: 20px; margin-bottom: 0; } .job-widget h4 { color: #585858; font-size: 16px; font-weight: 600; margin: 0 0 20px; } .job-description > p { color: #727272; line-height: 28px; } .square-list { list-style: none; padding: 0; margin-bottom: 0; } .square-list li { color: #727272; line-height: 24px; list-style: none; margin: 10px 0 0 20px; position: relative; } .square-list li:first-child { margin-top: 0 } .square-list li:before { font-family: fontawesome; margin: 0; position: relative; color: #f43b48; float: left; margin-left: -20px; display: block; content: "\f0c8"; font-size: 8px } .text-blue { color: #009ce7; } /*----------------- 46. Notification Settings -----------------------*/ .notification-list .list-group-item { padding: 15px; } .notification-list .status-toggle { float: right; } /*----------------- 47. Leave Settings -----------------------*/ .leave-item { max-width: 653px; } .leave-row { display: flex; margin-bottom: 15px; } .carry-forward-itemview { margin-bottom: 15px; } .earned-leave-itemview { margin-bottom: 15px; } .leave-row .leave-left { flex: 1 1 auto; } .leave-row .leave-left .input-box { max-width: 410px; } .leave-item .form-group { margin-bottom: 0; } .leave-right { align-items: center; display: flex; flex: 0 0 200px; justify-content: end; margin-top: 31px; min-height: 44px; text-align: right; } .leave-right .btn { min-height: 44px; min-width: 75px; } .leave-right .btn + .btn { margin-left: 10px; } .leave-edit-btn { color: #216ef4; background-color: transparent; border: 0; padding: 0 6px; transition: unset; } .leave-edit-btn[disabled] { cursor: not-allowed; opacity: 0.65; } .leave-inline-form { align-items: center; display: flex; min-height: 44px; } .leave-header { align-items: center; color: #212536; display: flex; justify-content: space-between; margin-bottom: 20px; } .leave-header .title { flex: 1 1 auto; } .leave-header .leave-action { flex: 1 1 auto; text-align: right; } .leave-table .l-name { width: 200px; } .leave-table .l-days { width: 140px; } .leave-box .subtitle { color: #8e8e8e; font-size: 14px; font-weight: normal; margin: 5px auto 0 5px; } .leave-duallist { background-color: #f9f9f9; border: 1px solid #e3e3e3; display: block; padding: 15px; } .card-title.with-switch { display: flex; justify-content: space-between; } .btn.leave-delete-btn { font-weight: 500; margin-left: 10px; min-height: 30px; padding: 2px 15px; } /*----------------- 48. Termination -----------------------*/ .add-group-btn { display: flex; } .add-group-btn .btn { align-items: center; display: flex; margin-left: 10px; } .add-group-btn .btn i { margin-right: 5px; } .bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover { background-color: #f43b48; text-shadow: unset; } /*----------------- 49. Loader -----------------------*/ #loader-wrapper { background-color: #fff; bottom: 0; height: 100%; left: 0; position: fixed; right: 0; top: 0; width: 100%; z-index: 9999; } #loader { background-position: center center; background-repeat: no-repeat; height: 200px; left: 50%; margin: -100px 0 0 -100px; position: absolute; top: 50%; width: 200px; } .loader-ellips { font-size: 20px; position: relative; width: 64px; margin: 100px auto 0; } .loader-ellips__dot { display: block; width: 1em; height: 1em; border-radius: 0.5em; position: absolute; animation-duration: 0.5s; animation-timing-function: ease; animation-iteration-count: infinite; } .loader-ellips__dot:nth-child(1), .loader-ellips__dot:nth-child(2) { left: 0; } .loader-ellips__dot:nth-child(3) { left: 1.5em; } .loader-ellips__dot:nth-child(4) { left: 3em; } .loader-ellips__dot:nth-child(1) { animation-name: reveal; } .loader-ellips__dot:nth-child(2), .loader-ellips__dot:nth-child(3) { animation-name: slide; } .loader-ellips__dot:nth-child(4) { animation-name: reveal; animation-direction: reverse; } @keyframes reveal { from { transform: scale(0.001); } to { transform: scale(1); } } @keyframes slide { to { transform: translateX(1.5em) } } .loader-ellips__dot:nth-child(1) { background: #404040; } .loader-ellips__dot:nth-child(2) { background: #f43b48; } .loader-ellips__dot:nth-child(3) { background: #404040; } .loader-ellips__dot:nth-child(4) { background: #404040; } /*----------------- 50. Payroll Items -----------------------*/ .page-menu .nav-tabs > li > a { font-size: 18px; } .table-radius.table { width: 100%; background: #fff; border-spacing: 0; border-radius: 0.25rem; margin-bottom: 0; } .table-radius.table thead td, .table-radius.table thead th { border-top: 0 none !important; padding: 20px !important; } .table-radius.table tbody td, .table-radius.table tbody th { padding: 15px 20px !important; } /*----------------- 51. Error -----------------------*/ .error-page { align-items: center; background-color: rgba(244, 59, 72, 0.2); color: #1f1f1f; display: flex; } .error-page .main-wrapper { display: flex; flex-wrap: wrap; justify-content: center; width: 100%; } .error-box { margin: 0 auto; max-width: 480px; padding: 40px 0; text-align: center; width: 100%; } .error-box h1 { color: #f43b48; font-size: 10em; } .error-box p { margin-bottom: 30px; } .error-box .btn { border-radius: 50px; font-size: 18px; font-weight: 600; min-width: 200px; padding: 10px 20px; } /*----------------- 52. Lock Screen -----------------------*/ .lock-user { margin-bottom: 20px; text-align: center; } .lock-user img { margin-bottom: 15px; width: 100px; } /*----------------- 53. OTP -----------------------*/ .otp-wrap { margin-bottom: 30px; text-align: center; } .otp-input { background-color: #fff; border: 1px solid #e3e3e3; border-radius: 4px; display: inline-block; font-size: 24px; font-weight: 500; height: 70px; line-height: 29px; margin-right: 15px; text-align: center; width: 70px; } .otp-input:last-child { margin-right: 0; } /*----------------- 54. Salary Settings -----------------------*/ .settings-widget + .settings-widget { margin-top: 30px; } .row.row-sm { margin-left: -5px; margin-right: -5px; } .row.row-sm > div { padding-left: 5px; padding-right: 5px; } .set-btn { min-height: 44px; } /*----------------- 55. Components -----------------------*/ .comp-buttons .btn { margin-bottom: 5px; } .comp-dropdowns .btn-group { margin-bottom: 5px; } .progress-example .progress { margin-bottom: 1.5rem; } .progress-xs { height: 4px; } .progress-sm { height: 15px; } .progress.progress-sm { height: 6px; } .progress.progress-md { height: 8px; } .progress.progress-lg { height: 18px; } .stickyside .sidebar-menu > ul > li > a.active { color: #f43b48; } .comp-section { margin-bottom: 30px; padding-bottom: 30px; padding-top: 30px; } .comp-section:last-child { margin-bottom: 0; padding-bottom: 0; } .comp-section .section-title { font-size: 1.125rem; margin-bottom: 20px; text-decoration: underline; text-transform: uppercase; } /*----------------- 56. Search -----------------------*/ .main-search { margin-bottom: 20px; } .search-result { margin-bottom: 30px; } .search-result u { color: #f43b48; } .search-result p { color: #777; margin-bottom: 0; } .search-lists .nav-tabs.nav-tabs-solid { background-color: #fff; border: 1px solid #e3e3e3; } .top-nav-search form { margin-top: 10px; position: relative; width: 230px; } .top-nav-search .form-control { background-color: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50px; color: #fff; height: 40px; padding: 10px 50px 10px 15px; } .top-nav-search .btn { background-color: transparent; border-color: transparent; color: rgba(255, 255, 255, 0.7); min-height: 40px; padding: 7px 15px; position: absolute; right: 0; top: 0; } .top-nav-search .form-control::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.7); } .top-nav-search .form-control::-moz-placeholder { color: rgba(255, 255, 255, 0.7); } .top-nav-search .form-control:-ms-input-placeholder { color: rgba(255, 255, 255, 0.7); } .top-nav-search .form-control::-ms-input-placeholder { color: rgba(255, 255, 255, 0.7); } .top-nav-search .form-control::placeholder { color: rgba(255, 255, 255, 0.7); } .responsive-search { display: none; color: #333; font-size: 20px; height: 60px; line-height: 60px; padding: 0 15px; } .top-nav-search.active form { display: block; left: 0; position: absolute; } /*----------------- 57. Knowledgebase -----------------------*/ .topics { background-color: #fff; border: 1px solid #ededed; border-radius: 4px; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); margin-bottom: 30px; padding: 20px; } .topics .topic-title { color: #333; margin-bottom: 20px; padding: 0 25px 0 0; position: relative; } .topics .topic-title a { color: #333; font-size: 20px; font-weight: 500; text-decoration: none; } .topics .topic-title a:hover { color: #f43b48; } .topics .topic-title a span { color: #f43b48; } .topics .topic-title a i { color: #f43b48; margin-right: 5px; } .topics .topics-list { padding: 0; margin: 0; } .topics .topics-list li { list-style: none; line-height: 2; } .topics .topics-list li a { padding-left: 25px; color: #555; font-size: 14px; font-weight: 400; text-decoration: none; outline: 0 none; } .topics .topics-list li a:hover { color: #f43b48; } .topics .topics-list li:before { font-family: FontAwesome; content: "\f016"; color: #555; font-size: 15px; left: 0; position: absolute; top: 0; } .topics .topics-list li { position: relative; } .widget { background-color: #fff; border: 1px solid #ededed; border-radius: 4px; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); margin-bottom: 30px; padding: 20px; } .widget:last-child { margin-bottom: 0; } .widget h4 { color: #333; font-size: 18px; font-weight: 500; line-height: 25px; } .widget > ul { margin-bottom: 0; padding: 0; margin: 0; } .widget-category li { line-height: 35px; list-style: none; position: relative; } .widget-category li:before { font-family: FontAwesome; content: "\f016"; color: #555; font-size: 18px; left: 0; position: absolute; top: 0; } .widget-category li a { color: #5e6977; padding-left: 25px; } .widget-category li a:hover { color: #f43b48; } .post { margin-bottom: 50px; } .post .meta { background-color: #f9f9f9; border: 1px solid #efefef; font-size: 12px; margin: 0 0 20px; padding: 10px; } .post .meta p { padding: 15px 0; } .post .meta li { display: inline-block; color: #86939e; } .post .meta li span { color: #43484d; } .post .meta li:after { content: "/"; padding: 0 10px; } .post .meta li:last-child:after { content: none; } .post img { padding: 40px 0; max-width: 100%; } .feedback { background-color: #f9f9f9; border: 1px solid #efefef; padding: 20px; margin-bottom: 50px; } .feedback h3 { color: #333; font-size: 24px; margin-bottom: 20px; } .feedback p:last-child { margin-bottom: 0; } .post .meta a { color: #f43b48; } .widget .widget-title i { color: #f43b48; font-size: 24px; margin-right: 10px; } .post h1.post-title { font-size: 32px; font-weight: 400; margin-bottom: 20px; } .post h2 { font-size: 24px; font-weight: 400; } .post > p { margin-bottom: 20px; } .comment-section { float: left; width: 100%; } .comment-section h3 { font-size: 24px; font-weight: 400; margin-bottom: 30px; } ul.comment-list { border-top: 0; float: left; list-style: none; margin: 0; padding: 0; width: 100%; } ul.comment-list li { border: 0; box-sizing: border-box; clear: both; float: left; list-style: outside none none; margin: 0 0 30px; padding: 0 0 0 70px; position: relative; width: 100%; } ul.comment-list li:last-child { margin-bottom: 0; } ul.comment-list li div.comment { border-bottom: 1px solid #ccc; margin-bottom: 20px; padding-bottom: 20px; } ul.comment-list li .comment-author { left: 0; position: absolute; top: 0; width: 100%; } ul.comment-list li .comment-author img { border-radius: 50px; float: left; height: 50px; margin: 0; max-height: 50px; max-width: 50px; width: 50px; } ul.comment-list li .comment-details { margin: 10px 0; padding: 0 0 10px; position: relative; } ul.comment-list li .author-name > a { color: #2f363f; font-size: 18px; font-weight: 500; line-height: 19px; text-transform: capitalize; } ul.comment-list li .author-name span { float: left; font-size: 14px; width: 100%; } ul.comment-list li .comment-body { float: left; margin: 10px 0 0; width: 100%; } ul.comment-list li .comment-body p { line-height: 28px; } ul.comment-list li .reply a { clear: both; color: #2f363f; display: inline-block; font-size: 15px; font-weight: 500; margin: 10px 0 0; } ul.comment-list li ul.children { border: 0 none; clear: both; float: left; margin: 10px 0; padding: 0; width: 100%; } .comment-section .comment-reply { float: left; margin-top: 30px; width: 100%; } .comment-reply form { float: left; margin-bottom: 20px; width: 100%; } .comment-reply .form-control { background-color: #f9f9f9; border: 1px solid #e7e7e7; border-radius: 0; min-height: 50px; } .comment-reply .form-control:focus { box-shadow: unset; } /*----------------- 58. FAQ -----------------------*/ .faq-card .card-header { background-color: #fff; padding: 20px; position: relative; } .faq-card .card { border-color: #ddd; border-radius: 3px; box-shadow: none; margin-bottom: 20px; overflow: hidden; } .faq-card .card .card-header h4 { margin-bottom: 0; } .faq-card .card .card-header h4 > a { color: #090909; display: block; font-size: 20px; font-weight: 400; padding-right: 60px; position: relative; } .faq-card .card .card-header h4 > a:after { font-family: FontAwesome; font-size: 19px; position: absolute; right: 0px; font-weight: 400; } .faq-card .card .card-header h4 > a.collapsed:after { content: "\f067"; } .faq-card .card .card-header h4 > a:not(.collapsed):after { content: "\f068"; } .faq-card .card .card-header h4 > label { color: #fff; cursor: pointer; display: flex; font-size: 24px; font-weight: 400; margin: 0; padding-right: 60px; position: relative; } .faq-card .card .card-header h4 > label:after { font-family: FontAwesome; font-size: 19px; position: absolute; right: 0px; font-weight: 400; top: 0; } .faq-card .card .card-header h4 > label.collapsed:after { content: "\f067"; } .faq-card .card .card-header h4 > label:not(.collapsed):after { content: "\f068"; } .small-container { margin: auto; max-width: 1100px; padding: 30px; } .inner-header { margin-bottom: 30px; } /*----------------- 59. Employee Dashboard -----------------------*/ .welcome-box { background-color: #fff; border-bottom: 1px solid #ededed; display: flex; margin: -30px -30px 30px; padding: 20px; position: relative; } .welcome-img { margin-right: 15px; } .welcome-img img { border-radius: 8px; width: 60px; } .welcome-det p { color: #777; font-size: 18px; margin-bottom: 0; } .dash-section { margin-bottom: 30px; } .dash-list { background-color: white; border-color: #f1f6f8; color: #2e424d; display: flex; margin: 10px 0 0; } .dash-card-container { display: flex; flex-direction: row; flex-grow: 1; } .dash-card-icon { align-items: center; display: flex; flex-direction: row; font-size: 26px; padding-right: 15px; } .dash-card-icon i { width: 30px; } .dash-card-content { align-items: center; display: flex; flex-direction: row; } .e-avatar { background-color: #fff; border: 3px solid #e7e7e7; border-radius: 50%; height: 45px; position: relative; width: 45px; margin-left: -20px; } .e-avatar:first-of-type { margin-left: 0 !important; } .dash-card-avatars { align-items: center; display: flex; flex-grow: 1; justify-content: flex-end; padding: 0 15px; } .e-avatar > img { border-radius: 50%; width: 100%; } .dash-sec-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; } .dash-info-list .dash-card { background-color: #fff; border: 1px solid #eaeaea; border-radius: 8px; color: #575757; display: flex; flex-direction: column; flex-grow: 1; height: auto; padding: 15px; } .dash-card-content p { font-size: 22px; margin-bottom: 0; } .dash-sec-content .dash-info-list + .dash-info-list { margin-top: 15px; } .dash-sidebar h5 { color: inherit; font-size: 13px; font-weight: 700; line-height: 1.5; margin-bottom: 15px; text-transform: uppercase; } .dash-sidebar p { color: #777; font-size: 13px; font-weight: 600; line-height: 1.5; margin-bottom: 0; text-transform: uppercase; } .dash-sidebar .card { border-radius: 8px; box-shadow: unset; } .time-list { display: flex; flex-grow: 1; margin-bottom: 20px; } .request-btn { text-align: center; } .dash-stats-list { align-items: center; display: flex; flex-flow: column wrap; flex-grow: 1; padding-left: 15px; padding-right: 15px; } .dash-stats-list + .dash-stats-list { border-left: 1px solid #e7e7e7; } .dash-stats-list h4 { color: #1f1f1f; font-size: 21px; font-weight: 700; line-height: 1.5; margin-bottom: 0; } /*----------------- 60. Performance Review -----------------------*/ .review-table tr { background-color: #fff; } .review-section { margin-bottom: 30px; } .review-header { background-color: #fff; border: 1px solid #dee2e6; margin-bottom: 0; padding: 15px; text-align: center; } .review-header h3 { font-size: 1.4rem; margin-bottom: 3px; } .review-header p { margin-bottom: 0; } .review-table .form-control { height: 36px; } .grade-span .badge { border-radius: 3px; display: inline-block; font-size: 13px; min-width: 75px; padding: 4px 12px; text-align: center; } .review-table .select2-container .select2-selection--single { height: 36px; } .review-table .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 34px; } .review-table .select2-container--default .select2-selection--single .select2-selection__arrow { height: 34px; } /*----------------- 61. Kanban Board -----------------------*/ .card > .task-header { line-height: 15px; display: flex; justify-content: space-between; } .task-header { font-size: 14px; font-weight: 500; padding: 15px 15px 5px; } .task-header a { color: #1f1f1f; } .task-body { padding: 0 15px 15px; font-size: 13px; } .kanban-list:last-child { margin-right: 0; } .kanban-list > .kanban-header { align-items: center; display: flex; justify-content: space-between; padding: 10px 20px; } .kanban-list > .kanban-header > .status-title { color: #fff; font-size: 16px; font-weight: 500; } .kanban-list > .kanban-wrap { padding: 20px; } .kanban-list > .kanban-wrap > .drag-placeholder { height: 146px; -webkit-border-radius: 2px; border-radius: 2px; background-color: rgba(0, 0, 0, 0.05); margin-bottom: 12px; } .kanban-list > .kanban-wrap.ks-empty > .card.drop-here { display: block; } .kanban-list > .kanban-wrap > .card { border: 1px solid #e3e3e3; border-radius: 2px; box-shadow: unset; margin: 0 0 12px; } .kanban-list > .kanban-wrap > .card.drop-here { display: none; text-align: center; background: transparent; padding: 15px; border-style: dashed; } .kanban-list > .kanban-wrap > .card.drop-here > a { color: #333; font-weight: 500; } .kanban-list > .kanban-wrap > .card:last-child { margin-bottom: 0; } .kanban-list > .kanban-wrap > .card.ui-sortable-helper { box-shadow: 0 2px 20px 0 #d7dceb; } .kanban-list > .kanban-wrap > .card > .task-header { font-size: 14px; font-weight: 500; border: none; padding: 15px 15px 5px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; } .kanban-list > .kanban-wrap > .card > .task-body { padding: 0 15px 15px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-info { display: flex; align-items: center; font-size: 12px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-info > .progress { margin-bottom: 0; margin-right: 10px; width: 100%; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-info > .progress .progress-bar { background-color: #42a5f5; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-footer { display: flex; align-items: center; justify-content: space-between; font-size: 12px; margin-top: 10px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-footer .ks-icon { color: #d7dceb; font-size: 20px; display: inline-block; margin-right: 3px; position: relative; top: 1px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-footer > .task-users > .task-avatar > img { width: 24px; height: 24px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-footer > .task-users > .ks-amount { font-size: 10px; font-weight: 500; display: inline-block; margin-left: 3px; position: relative; top: 1px; } .kanban-list.kanban-danger { background-color: #fef7f6; } .kanban-list.kanban-danger > .kanban-header { background-color: #ef5350; } .kanban-list.kanban-danger > .kanban-wrap > .card.drop-here { border-color: #f7c1b7; } .kanban-list.kanban-danger > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-info > .progress .progress-bar { background-color: #ef5350; } .kanban-list.kanban-success { background-color: #edf7ee; } .kanban-list.kanban-success > .kanban-header { background-color: #4caf50; } .kanban-list.kanban-success > .kanban-wrap > .card.drop-here { border-color: #abebc6; } .kanban-list.kanban-success > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-info > .progress .progress-bar { background-color: #4caf50; } .kanban-list.kanban-info { background-color: #e7f3fe; } .kanban-list.kanban-info > .kanban-header { background-color: #42a5f5; } .kanban-list.kanban-info > .kanban-wrap > .card.drop-here { border-color: #a6dbf9; } .kanban-list.kanban-warning { background-color: #fdfcf3; } .kanban-list.kanban-warning > .kanban-header { background-color: #ffb300; } .kanban-list.kanban-warning > .kanban-wrap > .card.drop-here { border: 1px solid #f2e49e; } .kanban-list.kanban-warning > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-info > .progress .progress-bar { background-color: #ffb300; } .task-avatar { border-radius: 50%; position: relative; } .kanban-box.ui-sortable-handle { cursor: move; } .card > .task-board-header { line-height: 15px; display: flex; justify-content: space-between; } .task-board-header { font-size: 14px; font-weight: 500; padding: 15px 15px 5px; display: flex; justify-content: space-between; } .task-board-header a { color: #1f1f1f; } .task-board-body { padding: 0 15px 15px; font-size: 13px; } .progress > .progress-bar { background-color: #25628F; } .kanban-cont { display: flex; overflow: auto; padding-bottom: 20px; } .kanban-list { align-self: flex-start; margin-right: 30px; min-width: 300px; width: 300px; } .kanban-list:last-child { margin-right: 0; } .kanban-list > .kanban-header { align-items: center; display: flex; justify-content: space-between; padding: 10px 20px; } .kanban-list > .kanban-header > .status-title { color: #fff; font-size: 16px; font-weight: 500; } .kanban-list > .kanban-wrap { padding: 20px; } .kanban-list > .kanban-wrap > .drag-placeholder { height: 146px; -webkit-border-radius: 2px; border-radius: 2px; background-color: rgba(0, 0, 0, 0.05); margin-bottom: 12px; } .kanban-list > .kanban-wrap > .card { background-color: #fff; border: 1px solid #e3e3e3; border-radius: 2px; box-shadow: unset; margin: 0 0 12px; } .kanban-list > .kanban-wrap > .card.active { box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3); } .kanban-list > .kanban-wrap > .card:last-child { margin-bottom: 0; } .kanban-list > .kanban-wrap > .card.ui-sortable-helper { box-shadow: 0 2px 20px 0 #d7dceb; } .kanban-list > .kanban-wrap > .card > .task-board-header { font-size: 14px; font-weight: 500; border: none; padding: 15px 15px 5px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; } .kanban-list > .kanban-wrap > .card > .task-board-body { padding: 0 15px 15px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info { display: flex; align-items: center; font-size: 12px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress { margin-bottom: 0; margin-right: 10px; width: 100%; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress .progress-bar { background-color: #42a5f5; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-footer { display: flex; justify-content: space-between; font-size: 12px; margin-top: 10px; align-items: end; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-footer > .task-users > .task-avatar > img { width: 24px; height: 24px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-footer > .task-users > .task-user-count { font-size: 10px; font-weight: 500; display: inline-block; margin-left: 3px; position: relative; top: 1px; } .kanban-list.kanban-danger > .kanban-wrap > .card.active { border-color: #ef5350; } .kanban-list.kanban-success > .kanban-wrap > .card.active { border-color: #4caf50; } .kanban-list.kanban-info > .kanban-wrap > .card.active { border-color: #42a5f5; } .kanban-list.kanban-warning > .kanban-wrap > .card.active { border-color: #ffb300; } .kanban-list.kanban-danger { background-color: #fef7f6; } .kanban-list.kanban-danger > .kanban-header { background-color: #ef5350; } .kanban-list.kanban-danger > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress .progress-bar { background-color: #ef5350; } .kanban-list.kanban-success { background-color: #edf7ee; } .kanban-list.kanban-success > .kanban-header { background-color: #4caf50; } .kanban-list.kanban-success > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress .progress-bar { background-color: #4caf50; } .kanban-list.kanban-info { background-color: #e7f3fe; } .kanban-list.kanban-info > .kanban-header { background-color: #42a5f5; } .kanban-list.kanban-warning { background-color: #fdfcf3; } .kanban-list.kanban-warning > .kanban-header { background-color: #ffb300; } .kanban-list.kanban-warning > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress .progress-bar { background-color: #ffb300; } .kanban-list.kanban-purple { background-color: #f1effd; } .kanban-list.kanban-purple > .kanban-header { background-color: #7460ee; } .kanban-list.kanban-purple > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress .progress-bar { background-color: #7460ee; } .kanban-list.kanban-primary { background-color: #fff5ec; } .kanban-list.kanban-primary > .kanban-header { background-color: #ff9b44; } .kanban-list.kanban-primary > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress .progress-bar { background-color: #ff9b44; } .task-avatar { border-radius: 50%; position: relative; } .kanban-box.ui-sortable-handle { cursor: move; } .kanban-action > a { color: #fff; background-color: rgba(0, 0, 0, 0.3); display: inline-flex; align-items: center; width: 22px; height: 22px; border-radius: 50%; justify-content: center; } .task-board-color .board-color-list { display: flex; height: 45px; } .task-board-color .board-color-list .board-control { position: relative; display: -webkit-inline-box; display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex; min-height: 1.5rem; padding-left: 1.5rem; margin-right: 1rem; cursor: pointer; padding-left: 0; cursor: pointer; width: 36px; height: 36px; } .task-board-color .board-control-input { position: absolute; z-index: -1; opacity: 0; } .board-control > .board-control-input:checked ~ .board-indicator:before { content: "\f00c"; display: block; width: 16px; height: 16px; -webkit-border-radius: 2px; border-radius: 2px; color: #fff; border: none; position: relative; font-family: FontAwesome; text-align: center; line-height: 16px; } .board-control > .board-control-input:checked ~ .board-indicator::before { width: 36px; height: 36px; line-height: 36px; } .board-control > .board-indicator { width: 36px; height: 36px; } .board-control.board-primary > .board-indicator { background: #ff9b44; } .board-control.board-success > .board-indicator { background: #4caf50; } .board-control.board-info > .board-indicator { background: #42a5f5; } .board-control.board-purple > .board-indicator { background: #7460ee; } .board-control.board-warning > .board-indicator { background: #ffb300; } .board-control.board-danger > .board-indicator { background: #ef5350; } .kanban-board.task-wrapper .kanban-list { width: 100%; } .board-view-header { margin-bottom: 30px; } .pro-teams { display: inline-flex; margin-right: 15px; text-align: center; margin-bottom: 20px; } .pro-teams .pro-team-members { margin-left: 15px; display: flex; align-items: center; } .pro-teams h4 { margin-bottom: 0; margin-right: 6px; font-size: 16px; } .pro-team-lead { display: flex; align-items: center; } .board-view-header .view-icons { float: right; margin-right: 0; background-color: #fff; border: 1px solid #ccc; padding: 2px 7px; border-radius: 4px; } .board-view-header .view-icons .btn { margin: 0; padding: 0; } .board-view-header .view-icons a.btn + a.btn { margin-left: 5px; } .pro-progress-bar { display: flex; align-items: center; } .pro-progress-bar h4 { margin-bottom: 0; margin-right: 10px; font-size: 13px; text-transform: uppercase; } .pro-progress-bar .progress { width: 100%; margin-bottom: 0; margin-right: 10px; height: 15px; background-color: #e3e3e3; box-shadow: unset; } .pro-progress-bar .progress > .progress-bar { background-color: #ff9b44; } .pro-teams .avatar-group { display: inline-flex; } .pro-teams .avatar-group .avatar { margin-right: 0; position: relative; display: inline-block; width: 34px; height: 34px; background-color: transparent; } .pro-teams .avatar-group .avatar + .avatar { margin-left: -.75rem; } .pro-teams .avatar-group .avatar .border { border: 3px solid #fff !important; } .pro-teams .avatar-group .avatar > img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; border-radius: 50%; } .border-white { border-color: #fff !important; } .pro-teams .avatar-group .avatar:hover { z-index: 1; } .pro-teams .avatar .avatar-title { font-size: 14px; border-radius: 50%; } .pro-teams .avatar-title { width: 100%; height: 100%; background-color: #ff9b44; color: #fff; display: flex; align-items: center; justify-content: center; } .task-date { display: block; } .task-priority { padding: .3em .6em .3em; } .task-follower-list { display: flex; margin-top: 15px; } .task-follower-list span { position: relative; } .task-follower-list span i { cursor: pointer; position: absolute; top: -5px; right: 5px; color: #f00; } .add-new-task { text-align: center; padding: 0 20px 20px; } .add-new-task a { color: #333; font-size: 14px; } .project-add-form { display: none; margin-top: 10px; } .project-add-form.opened { display: block; } #myOverviewDiv { position: absolute; width: 200px; height: 100px; top: 10px; left: 10px; background-color: #f2f2f2; z-index: 300; /* make sure its in front */ border: solid 1px #7986cb; } /*----------------- 62. File Manager -----------------------*/ .wday-box input { opacity: 0; } .wday-box .checkmark { border: 2px solid #ff9b44; width: 40px; height: 40px; line-height: 35px; padding-left: 13px!important; color: #ff9b44; display: block; } .wday-box input:checked ~ .checkmark { background: #ff9b44; color:#fff; } .table-responsive { white-space: nowrap; } .user-add-shedule-list a { display: inline-block; padding: 10px; border: 1px dashed #a7a7a7; color: #a7a7a7; border-radius: 5px; } .user-add-shedule-list h2 a { border: 2px dashed #1EB53A; padding: 10px; color: #1EB53A; } .user-add-shedule-list span { justify-content: center; display: flex; } .file-wrap { border: 1px solid #e0e3e4; display: flex; flex-wrap: wrap; position: relative; } .file-wrap .file-sidebar { border-right: 1px solid #e0e3e4; left: 0; position: absolute; z-index: 5; width: 300px; transition: 0.3s ease-in-out; } .file-wrap .file-sidebar .file-header { align-items: center; background-color: #fff; border-bottom: 1px solid #e0e3e4; color: #324148; display: flex; height: 72px; justify-content: space-between; padding: 0 15px; } .file-wrap .file-sidebar .file-header span { font-size: 20px; font-weight: 600; text-transform: capitalize; } .file-wrap .file-sidebar .file-search { background-color: #f5f5f6; border-bottom: 1px solid #e5e5e5; padding: 10px 15px; width: 100%; } .file-wrap .file-sidebar .file-search .input-group { width: 100%; } .file-wrap .file-sidebar .file-search .input-group .form-control { background-color: #fff; border-radius: 50px; padding-left: 36px; } .file-wrap .file-sidebar .file-search .input-group .form-control:focus { border-color: #ccc; box-shadow: none; } .file-wrap .file-sidebar .file-search .input-group .input-group-prepend { align-items: center; bottom: 0; color: #666; display: flex; left: 15px; pointer-events: none; position: absolute; top: 0; z-index: 4; } .file-wrap .file-scroll { max-height: calc(100vh - 259px); min-height: 497px; overflow-y: auto; } .file-wrap .file-sidebar .file-pro-list { background-color: #fff; padding: 15px; } .file-side-close { display: none; background-color: #eee; border: 1px solid #e3e3e3; border-radius: 24px; color: #bbb; font-size: 14px; line-height: 24px; min-height: 26px; text-align: center; width: 26px; position: absolute; right: 15px; } .file-wrap .file-content { flex: 0 0 100%; max-width: 100%; } .file-wrap .file-content .file-header { align-items: center; background-color: #fff; border-bottom: 1px solid #e0e3e4; display: flex; height: 72px; justify-content: space-between; padding: 0 15px; } .file-wrap .file-content .file-body { background-color: #f5f5f6; } .dropdown-file { position: absolute; top: 10px; right: 10px; } .dropdown-file .dropdown-link { color: #777; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; } .dropdown-file .dropdown-link:hover, .dropdown-file .dropdown-link:focus { color: #1b2e4b; } .dropdown-file .dropdown-item { font-size: 12px; display: flex; align-items: center; padding: 5px 10px; } .card-file { padding: 10px; position: relative; transition: all 0.2s ease-in-out; } .card-file:hover, .card-file:focus { border-color: #ccc; } .card-file .card-body { padding: 15px 0 0; } .card-file .card-footer { font-size: 11px; color: #a9a9a9; padding: 10px 0 0; border-top-width: 0; background-color: transparent; } .card-file h6 { margin-bottom: 0; font-size: 0.875rem; } .card-file h6 a { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: block; width: 100%; color: #333; } .card-file span { font-size: 12px; color: #888; } .card-file-thumb { align-items: center; background-color: #f5f5f5; color: #777; display: flex; font-size: 48px; height: 120px; justify-content: center; } .file-wrap .file-content .file-body .file-content-inner { padding: 15px; width: 100%; } .file-wrap.file-sidebar-toggle .file-sidebar { left: -331px; } .file-wrap.file-sidebar-toggle .file-cont-wrap { margin-left: 0; } .file-wrap .file-cont-wrap { display: flex; flex-wrap: wrap; margin-left: 300px; transition: 0.4s ease-in-out; } .file-wrap .file-cont-wrap .file-cont-inner { flex: 0 0 100%; max-width: 100%; } .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header { align-items: center; background: #fff; border-bottom: 1px solid #e0e3e4; display: flex; height: 72px; justify-content: space-between; padding: 0 15px; } .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header > span { color: #333; font-size: 20px; font-weight: 600; } .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header .file-sidebar-toggle { color: #333; } .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header .file-options { display: flex; } .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header .file-options > a, .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header .file-options > span { color: #333; display: inline-block; font-size: 20px; margin-left: 25px; } .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header .file-options > a:first-child, .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header .file-options > span:first-child { margin-left: 0; } .file-wrap .file-content .file-search { background-color: #f5f5f6; border-bottom: 1px solid #e5e5e5; padding: 10px 15px; width: 100%; } .file-wrap .file-content .file-search .input-group { width: 100%; } .file-wrap .file-content .file-search .input-group .form-control { background-color: #fff; border-radius: 50px; padding-left: 36px; } .file-wrap .file-content .file-search .input-group .form-control:focus { border-color: #ccc; box-shadow: none; } .file-wrap .file-content .file-search .input-group .input-group-prepend { align-items: center; bottom: 0; color: #666; display: flex; left: 15px; pointer-events: none; position: absolute; top: 0; z-index: 4; } .btn-file { display: inline-block; overflow: hidden; position: relative; vertical-align: middle; } .btn-file input { cursor: pointer; direction: ltr; filter: alpha(opacity=0); font-size: 23px; height: 100%; margin: 0; opacity: 0; position: absolute; right: 0; top: 0; width: 100%; } .file-menu { display: inline-block; margin: 0 0 10px; padding: 0; width: 100%; } .file-menu li { display: inline-block; width: 100%; } .file-menu li + li { margin-top: 2px; } .file-menu li a { color: #333; display: inline-block; padding: 10px 15px; width: 100%; text-transform: capitalize; -webkit-transition: 0.3s ease; -moz-transition: 0.3s ease; transition: 0.3s ease; } .file-menu li a i { font-size: 16px; padding-right: 10px; color: #878787; } .file-menu li a:hover, .file-menu li.active a, .file-menu li a:focus { background: rgba(33, 33, 33, 0.05); } .show-more { text-align: center; } .show-more a { position: relative; padding: 0 20px 0 15px; } .show-more a:before { content: '\f107'; top: 50%; right: 0; position: absolute; font-size: 18px; line-height: inherit; font-family: 'FontAwesome'; transform: translateY(-50%); } /*----------------- 63. Subscriptions -----------------------*/ .pricing-box { text-align: center; } .pricing-box ul { list-style: none; margin: 0; padding: 0; text-align: left; } .pricing-box ul li { line-height: 35px; } .pricing-box ul li i { color: #00bf6f; margin-right: 5px; } .equal-height-cards > div > div.card { height: 100%; } .mb-30 { margin-bottom: 30px !important; } /*----------------- 64. Responsive -----------------------*/ @media only screen and (min-width: 991px) { #toggle_btn { left: 70px; } } @media only screen and (min-width: 991px) { #toggle_btn { color: #999; float: left; position: relative; top: 20px; font-size: 26px; line-height: 60px; padding: 0 10px; } .mini-sidebar .header-left .logo img { height: auto; max-height: 100px; width: auto; } .mini-sidebar .header .header-left { padding: 0 5px; width: 60px; } .mini-sidebar .sidebar { width: 60px; } .mini-sidebar.expand-menu .sidebar { width: 230px; } .mini-sidebar .menu-title { visibility: hidden; white-space: nowrap; } .mini-sidebar.expand-menu .menu-title { visibility: visible; } .mini-sidebar .menu-title a { visibility: hidden; } .mini-sidebar.expand-menu .menu-title a { visibility: visible; } .mini-sidebar .sidebar .noti-dot:before { display: none; } .mini-sidebar .sidebar .noti-dot:after { display: none; } .mini-sidebar.expand-menu .sidebar .noti-dot:before { display: block; } .mini-sidebar.expand-menu .sidebar .noti-dot:after { display: block; } .modal-open.mini-sidebar .sidebar { z-index: 1001; } .mini-sidebar .sidebar .sidebar-menu ul > li > a span { display: none; transition: all 0.2s ease-in-out; opacity: 0; } .mini-sidebar .sidebar .sidebar-menu ul > li > a span.chat-avatar-sm { display: inline-block; opacity: 1; } .mini-sidebar .sidebar .sidebar-menu ul > li > a span.status { display: inline-block; opacity: 1; } .mini-sidebar.expand-menu .sidebar .sidebar-menu ul > li > a span { display: inline; opacity: 1; } .mini-sidebar .sidebar .sidebar-menu > ul > li > a i { font-size: 30px; width: 30px; } .mini-sidebar.expand-menu .sidebar .sidebar-menu > ul > li > a i { font-size: 24px; width: 20px; } .mini-sidebar .page-wrapper { margin-left: 60px; } } @media only screen and (min-width: 768px) { .modal-md { width: 600px; } .nav-tabs.nav-justified.nav-tabs-top { border-bottom: 1px solid #ddd; } .nav-tabs.nav-justified.nav-tabs-top > li > a, .nav-tabs.nav-justified.nav-tabs-top > li > a:hover, .nav-tabs.nav-justified.nav-tabs-top > li > a:focus { border-width: 2px 0 0 0; } .nav-tabs.nav-tabs-top > li { margin-bottom: 0; } .nav-tabs.nav-tabs-top > li > a, .nav-tabs.nav-tabs-top > li > a:hover, .nav-tabs.nav-tabs-top > li > a:focus { border-width: 2px 0 0 0; } .nav-tabs.nav-tabs-top > li.open > a, .nav-tabs.nav-tabs-top > li > a:hover, .nav-tabs.nav-tabs-top > li > a:focus { border-top-color: #ddd; } .nav-tabs.nav-tabs-top > li+li > a { margin-left: 1px; } .nav-tabs.nav-tabs-top > li > a.active, .nav-tabs.nav-tabs-top > li > a.active:hover, .nav-tabs.nav-tabs-top > li > a.active:focus { border-top-color: #f43b48; } .nav-tabs.nav-tabs-bottom > li { margin-bottom: -1px; } .nav-tabs.nav-tabs-bottom > li > a.active, .nav-tabs.nav-tabs-bottom > li > a.active:hover, .nav-tabs.nav-tabs-bottom > li > a.active:focus { border-bottom-width: 2px; border-color: transparent; border-bottom-color: #f43b48; background-color: transparent; transition: none 0s ease 0s; -moz-transition: none 0s ease 0s; -o-transition: none 0s ease 0s; -ms-transition: none 0s ease 0s; -webkit-transition: none 0s ease 0s; } .nav-tabs.nav-tabs-solid { background-color: #fafafa; border: 0; } .nav-tabs.nav-tabs-solid > li { margin-bottom: 0; } .nav-tabs.nav-tabs-solid > li > a { border-color: transparent; } .nav-tabs.nav-tabs-solid > li > a:hover, .nav-tabs.nav-tabs-solid > li > a:focus { background-color: #f5f5f5; } .nav-tabs.nav-tabs-solid > .open:not(.active) > a { background-color: #f5f5f5; border-color: transparent; } .nav-tabs-justified.nav-tabs-top { border-bottom: 1px solid #ddd; } .nav-tabs-justified.nav-tabs-top > li > a, .nav-tabs-justified.nav-tabs-top > li > a:hover, .nav-tabs-justified.nav-tabs-top > li > a:focus { border-width: 2px 0 0 0; } } @media only screen and (max-width: 1199.98px) { .page-title-box { display: none; } .file-wrap .file-sidebar { left: -331px; } .file-wrap .file-cont-wrap { margin-left: 0; } .file-wrap.file-sidebar-toggle .file-sidebar { left: 0; } .file-wrap.file-sidebar-toggle .file-cont-wrap { margin-left: 0; } .file-side-close { display: inline-block; } } @media only screen and (max-width: 991.98px) { .profile-rightbar { display: inline-block !important; } .profile-info-left { border-right: none; border-bottom: 2px dashed #ccc; margin-bottom: 20px; padding-bottom: 20px; } .task-right-sidebar .task-chat-view { display: block; position: fixed; right: 0; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; margin-right: 0; } .task-chat-view { display: none; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; right: 0; transform: translateX(0px); z-index: 1041; width: 300px; position: fixed; transition: all 0.4s ease 0s; margin-right: -300px; display: table-cell; top: 0; padding-bottom: 60px; margin-top: 60px; } .chat-profile-view { display: none; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; right: 0; transform: translateX(0px); z-index: 1041; width: 300px; position: fixed; transition: all 0.4s ease 0s; margin-right: -300px; display: table-cell; top: 0; padding-bottom: 60px; margin-top: 60px; } .message-view.task-view { width: 100%; } .float-left.ticket-view-details { width: 90%; } .chat-main-row { left: 0; } .header .header-left { position: absolute; width: 100%; } .mobile_btn { display: block; } .page-title-box { display: none; } .sidebar { margin-left: -225px; width: 225px; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; z-index: 1041; } .page-wrapper { margin-left: 0; padding-left: 0; padding-right: 0; } a.mobile_btn { color: #fff; font-size: 24px; height: 60px; left: 0; line-height: 60px; padding: 0 20px; position: absolute; top: 0; width: 60px; z-index: 10; } #toggle_btn { display: none; } .page-wrapper { -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; } .responsive-search { color: #fff; display: inline-block; } .top-nav-search form { display: none; } .top-nav-search .form-control { background-color: #fff; border-color: #e3e3e3; color: #333; } .top-nav-search .btn { color: #999; } .top-nav-search .form-control::-webkit-input-placeholder { color: #999; } .top-nav-search .form-control::-moz-placeholder { color: #999; } .top-nav-search .form-control:-ms-input-placeholder { color: #999; } .top-nav-search .form-control::-ms-input-placeholder { color: #999; } .top-nav-search .form-control::placeholder { color: #999; } .header .has-arrow .dropdown-toggle > span:nth-child(2) { display: none; } .header .has-arrow .dropdown-toggle::after { display: none; } } @media only screen and (max-width: 767.98px) { body { font-size: 0.875rem; } h1, .h1 { font-size: 2rem; } h2, .h2 { font-size: 1.75rem; } h3, .h3 { font-size: 1.375rem; } h4, .h4 { font-size: 1rem; } h5, .h5 { font-size: 0.9375rem; } h6, .h6 { font-size: 0.75rem; } .page-title, .dash-widget-info > h3, .account-title { font-size: 1.5rem; } .dash-card-content p, .stats-info h4, .account-box .account-btn, .job-title { font-size: 1.25rem; } .card-title, .dash-stats-list h4, .custom-modal .modal-title, .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header > span, .faq-card .card .card-header h4 > a, .lead { font-size: 1.125rem; } .btn, .welcome-det p, .kanban-list > .kanban-header > .status-title, .account-box label, .job-info .job-dept, .form-focus .focus-label { font-size: 0.9375rem; } .onoffswitch-inner::before, .onoffswitch-inner::after, .form-control, .user-menu.nav > li > a, .page-header .breadcrumb { font-size: 0.875rem; } .btn-group-sm > .btn, .btn-sm { font-size: 0.8125rem; } .comp-section .section-title, .voice-call-avatar .username, .page-menu .nav-tabs > li > a, .btn-group-lg > .btn, .btn-lg, .account-subtitle, .job-list h3.job-list-title { font-size: 1rem; } .message-content { font-size: 0.75rem; } .user-menu.nav > li > a { padding: 0 10px; } .top-nav-search form { width: 210px; } .profile-info-left { border-right: none; border-bottom: 2px dashed #ccc; margin-bottom: 20px; padding-bottom: 20px; } .navbar-nav .open .dropdown-menu { float: left; position: absolute; } .notifications { right: -48px; } .notifications::before, .notifications::after { right: 60px; } .header { z-index: 1040; } .task-wrapper #task-list li .task-container .task-label { padding-right: 50px; word-break: unset; } .task-btn-right { position: absolute; right: 8px; } .task-wrapper #task-list li .task-container { padding: 8px 10px; } .task-action-btn.task-check { width: 36px; } .roles-menu { margin-bottom: 20px; } .contacts-list { padding: 0 70px 0 15px; } .left-action { text-align: center; margin-bottom: 15px; } .right-action { text-align: center; } .top-action-left .float-left { float: none !important; } .top-action-left .btn-group { margin-bottom: 15px; } .top-action-right { text-align: center; } .top-action-right a.btn.btn-white { margin-bottom: 15px; } .mail-sent-time { float: left; margin-top: 10px; width: 100%; } .nav-tabs.nav-justified { border-bottom: 1px solid #ddd; } .nav-tabs.nav-justified > li > a.active, .nav-tabs.nav-justified > li > a.active:hover, .nav-tabs.nav-justified > li > a.active:focus { border-color: transparent transparent transparent #f43b48; border-left-width: 2px; } .nav-tabs { border-bottom: 0; position: relative; background-color: #fff; padding: 5px 0; border: 1px solid #ddd; border-radius: 3px; } .nav-tabs .nav-item { margin-bottom: 0; } .nav-tabs > li > a { border-width: 2px; border-left-color: transparent; } .nav-tabs .nav-link { border-width: 2px; } .nav-tabs> li > a:hover, .nav-tabs>li>a:focus { background-color: #fafafa; } .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active, .nav-tabs> li > a.active, .nav-tabs> li > a.active:hover, .nav-tabs> li > a.active:focus { background-color: #f5f5f5; border-color: transparent transparent transparent #f43b48; border-left-width: 2px; } .nav-tabs > li.open:not(.active) > a, .nav-tabs > li.open:not(.active) > a:hover, .nav-tabs > li.open:not(.active) > a:focus { background-color: #fafafa; } .nav-tabs.nav-tabs-solid { padding: 5px; } .nav-tabs.nav-tabs-solid.nav-tabs-rounded { border-radius: 5px; } .nav-tabs.nav-tabs-solid > li > a { border-left-width: 0!important; } .nav-tabs-justified { border-bottom: 1px solid #ddd; } .nav-tabs-justified > li > a.active, .nav-tabs-justified > li > a.active:hover, .nav-tabs-justified > li > a.active:focus { border-width: 0 0 0 2px; border-left-color: #f43b48; } .my-video ul li { width: 80px; } .voice-call-avatar .call-avatar { width: 120px; height: 120px; } .product-info { margin: 20px 0 30px; } .profile-bg { height: 280px; } .flag-nav > a > span { display: none; } .equal-height-cards > div > div.card { height: unset; } } @media only screen and (max-width: 575.98px) { .contact-cat { padding-right: 70px; } .user-menu { display: none; } .mobile-user-menu { display: block; } .search-box { display: none; } .filter-row { margin-bottom: 15px; } .page-wrapper > .content { padding: 15px; } .profile-view .profile-basic { margin-left: 0; padding-right: 0; } .profile-img-wrap { position: relative; margin: 0 auto; } .profile-info-left { text-align: center; } .profile-basic { margin-left: 0; margin-top: 15px; } .page-title { font-size: 18px; } .fc-toolbar .fc-right { display: inline-block; float: none; margin: 10px auto 0; width: 200px; clear: both; } .fc-toolbar .fc-left { float: none; margin: 0 auto; width: 200px; } .upload-text { font-size: 18px; } .call-duration { display: block; margin-top: 0; margin-bottom: 10px; position: inherit; } .end-call { margin-top: 10px; position: inherit; } .chat-panel .chats { padding: 15px 0; } .chat-right .chat-content { max-width: 90%; } .chat-right .chat-body { padding-left: 0; padding-right: 0; } .chat-left .chat-content { max-width: 90%; } .chat-left .chat-body { padding-left: 0; padding-right: 0; } .chat-avatar .avatar { height: 20px; line-height: 20px; width: 20px; } .account-box { width: 100%; margin-bottom: 20px; } .float-left.ticket-view-details { width: 80%; } .custom-menu > li > a { margin-left: 10px; } .contact-alphapets { top: 113px; } .account-page .main-wrapper { flex-direction: column; } .otp-input { font-size: 18px; height: 50px; margin-right: 10px; width: 52px; } .account-wrapper { padding: 15px; } .leave-right { flex: 0 0 auto; } .pagination-lg .page-link { font-size: 1.2rem; padding: 0.5rem 0.85rem; } .call-box .call-avatar { height: 100px; max-width: 100px; min-width: 100px; } .call-box .call-wrapper .call-items .call-item { padding: 10px; } .call-box .call-wrapper .call-items .call-item.call-end { margin: 30px 5px 0; padding: 10px; } .submit-section .submit-btn { margin: 0 0 10px !important; } .leave-row { display: block; } .leave-box .subtitle { display: none; } .leave-right { margin-top: 20px; } .leave-inline-form { display: block; } .page-header .breadcrumb { display: none; } .add-btn { font-size: 14px; min-width: inherit; } } /*Project Board*/ .page-header .page-title i { color: #e6e9ef; } .page-header .page-title i:hover, .page-header .page-title i:active { color: #ffcb00; } [contenteditable="true"]:active, [contenteditable="true"]:focus{ border:1px dashed #e6e9ef; outline:none; /* padding:5px;*/ } .page-header .text-truncate { width:330px; } .avatar-group { display: inline-flex; } .avatar-group .avatar + .avatar { margin-left: -.75rem; } .avatar-group .avatar-xs + .avatar-xs { margin-left: -1.25rem; } .avatar-group .avatar-sm+.avatar-sm { margin-left: -1.75rem; } .avatar-group .avatar-lg + .avatar-lg { margin-left: -1rem; } .avatar-group .avatar-xl + .avatar-xl { margin-left: -1.28125rem; } .avatar-group .avatar:hover { z-index: 1; } .avatar-title { width: 100%; height: 100%; background-color: #2962ff; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; }
public/dashboard/css/style.css
[Table of CSS] 1. General 2. Table 3. Helper Class 4. Bootstrap Classes 5. Animation 6. Toggle Button 7. Modal 8. Header 9. Sidebar 10. Content 11. Login 12. Dashboard 13. Activity 14. Select2 15. Nav tabs 16. Holidays 17. Delete Modal 18. Edit Profile 19. Chat 20. Focus Label 21. Leave 22. Employee 23. Events 24. Profile 25. Notifications 26. Roles & Permissions 27. Chat Right Sidebar 28. Projects 29. Invoice 30. Task 31. Project View 32. Payslip 33. Attendance 34. Ticket 35. Client Profile 36. Inbox 37. Mail View 38. Voice call 39. Video Call 40. Outgoing call 41. Incoming call 42. Contacts 43. Chat Sidebar 44. Jobs 45. Job Details 46. Notification Settings 47. Leave Settings 48. Termination 49. Loader 50. Payroll Items 51. Error 52. Lock Screen 53. OTP 54. Salary Settings 55. Components 56. Search 57. Knowledgebase 58. FAQ 59. Employee Dashboard 60. Performance Review 61. Kanban Board 62. File Manager 63. Subscriptions 64. Responsive ========================================*/ @font-face { font-family: 'Material Icons'; font-style: normal; font-weight: 400; src: url(../fonts/MaterialIcons-Regular.eot); /* For IE6-8 */ src: local('Material Icons'), local('MaterialIcons-Regular'), url(../fonts/MaterialIcons-Regular.woff2) format('woff2'), url(../fonts/MaterialIcons-Regular.woff) format('woff'), url(../fonts/MaterialIcons-Regular.ttf) format('truetype'); } @font-face { font-family: 'CircularStd'; font-style: normal; font-weight: 400; src: local('Circular Std Book'), url('../fonts/CircularStd-Book.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: italic; font-weight: 400; src: local('Circular Std Book Italic'), url('../fonts/CircularStd-BookItalic.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: normal; font-weight: 500; src: local('Circular Std Medium'), url('../fonts/CircularStd-Medium.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: italic; font-weight: 500; src: local('Circular Std Medium Italic'), url('../fonts/CircularStd-MediumItalic.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: normal; font-weight: 600; src: local('Circular Std Bold'), url('../fonts/CircularStd-Bold.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: italic; font-weight: 600; src: local('Circular Std Bold Italic'), url('../fonts/CircularStd-BoldItalic.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: normal; font-weight: 800; src: local('Circular Std Black'), url('../fonts/CircularStd-Black.woff') format('woff'); } @font-face { font-family: 'CircularStd'; font-style: italic; font-weight: 800; src: local('Circular Std Black Italic'), url('../fonts/CircularStd-BlackItalic.woff') format('woff'); } /*----------------- 1. General -----------------------*/ html { height: 100%; } body { font-family: 'CircularStd', sans-serif; font-size: .9375rem; color: #1f1f1f; background-color: #f7f7f7; min-height: 100%; overflow-x: hidden; } h1, h2, h3, h4, h5, h6 { font-family: CircularStd; margin-top: 0; font-weight: 500; } h1, .h1 { font-size: 2.25rem; } h2, .h2 { font-size: 1.875rem; } h3, .h3 { font-size: 1.5rem; } h4, .h4 { font-size: 1.125rem; } h5, .h5 { font-size: 0.875rem; } h6, .h6 { font-size: 0.75rem; } a:hover, a:active, a:focus { text-decoration: none; outline: none; } .form-control { border-color: #e3e3e3; box-shadow: none; font-size: 15px; height: 44px; } .form-control:focus { border-color: #ccc; box-shadow: none; outline: 0 none; } .form-control[disabled], fieldset[disabled] .form-control { cursor: not-allowed; } input, button, a { transition: all 0.4s ease; -moz-transition: all 0.4s ease; -o-transition: all 0.4s ease; -ms-transition: all 0.4s ease; -webkit-transition: all 0.4s ease; } input, input:focus, button, button:focus { outline: none; } input[type="file"] { height: auto; } input[type=text], input[type=password] { -webkit-appearance: none; -moz-appearance: none; appearance: none; } textarea.form-control { resize: vertical; } .navbar-nav > li { float: left; } .form-control-lg.form-control { border-radius: 4px; height: 46px; } .form-control-sm.form-control { height: 30px; border-radius: 0; } .input-group.input-group-lg .form-control { height: 46px; } .material-icons { font-family: 'Material Icons'; font-weight: normal; font-style: normal; font-size: 24px; display: inline-block; line-height: 1; text-transform: none; letter-spacing: normal; word-wrap: normal; white-space: nowrap; direction: ltr; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; -moz-osx-font-smoothing: grayscale; font-feature-settings: 'liga'; } .input-group-text { background-color: #f7f7f7; border-color: #e3e3e3; } select.form-control[multiple] option, select.form-control[size] option { border-radius: 3px; padding: 7px 12px; } select.form-control[multiple], select.form-control[size] { height: 200px; padding: 7px; } /*----------------- 2. Table -----------------------*/ .table-responsive { white-space: nowrap; width: 100%; } .table { color: #333; } .table.table-white { background-color: #fff; } .table thead th { font-weight: 500; letter-spacing: 0.05em; } .table-striped > tbody > tr:nth-of-type(2n+1) { background-color: #f6f6f6; } table.table td h2 { display: inline-block; font-size: inherit; font-weight: 400; margin: 0; padding: 0; vertical-align: middle; } table.table td h2.table-avatar { align-items: center; display: inline-flex; font-size: inherit; font-weight: 400; margin: 0; padding: 0; vertical-align: middle; white-space: nowrap; } table.table td h2.table-avatar.blue-link a { color: #007bff; } table.table td h2 a { color: #333; } table.table td h2 a:hover { color: #f43b48; } table.table td h2 span { color: #888; display: block; font-size: 12px; margin-top: 3px; } table.dataTable { margin-bottom: 15px !important; margin-top: 15px !important; } .table-nowrap td, .table-nowrap th { white-space: nowrap } .table-hover tbody tr:hover { background-color: #f7f7f7; color: #212529; } table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting { padding-right: 30px !important; } .table.custom-table > tbody > tr > td, .table.custom-table > tbody > tr > th, .table.custom-table > tfoot > tr > td, .table.custom-table > tfoot > tr > th, .table.custom-table > thead > tr > td, .table.custom-table > thead > tr > th { padding: 10px 20px !important; } /*----------------- 3. Helper Class -----------------------*/ .p-20 { padding: 20px !important; } .p-t-0 { padding-top: 0 !important; } .m-0 { margin: 0 !important; } .m-r-5 { margin-right: 5px !important; } .m-r-10 { margin-right: 10px !important; } .m-l-5 { margin-left: 5px !important; } .m-l-15 { margin-left: 15px !important; } .m-t-5 { margin-top: 5px !important; } .m-t-0 { margin-top: 0 !important; } .m-t-10 { margin-top: 10px !important; } .m-t-15 { margin-top: 15px !important; } .m-t-20 { margin-top: 20px !important; } .m-t-30 { margin-top: 30px !important; } .m-t-50 { margin-top: 50px !important; } .m-b-5 { margin-bottom: 5px !important; } .m-b-10 { margin-bottom: 10px !important; } .m-b-15 { margin-bottom: 15px !important; } .m-b-20 { margin-bottom: 20px !important; } .m-b-30 { margin-bottom: 30px !important; } .w-40 { width: 40px; } .btn-md { height: 40px; } .block { display: block !important; } .text-ellipsis { display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .text-muted-light { color: #aaa; } .text-xs { font-size:.75rem !important; } .text-sm { font-size:.875rem !important; } .text-lg { font-size:1.25rem !important; } .text-xl { font-size:1.5rem !important; } .font-18 { font-size: 18px; } .btn.btn-rounded { border-radius: 50px; } /*----------------- 4. Bootstrap Classes -----------------------*/ .btn { border-radius: 5px; } .btn.disabled, .btn:disabled { cursor: not-allowed; } .btn-white { background-color: #fff; border: 1px solid #ccc; color: #333; } .btn-white:focus, .btn-white:hover { background-color: #f7f7f7; } .rounded, .circle { border-radius: 500px; } .bg-purple, .badge-purple { background-color: #7460ee !important; } .bg-primary, .badge-primary { background-color: #f43b48 !important; } .bg-success, .badge-success { background-color: #55ce63 !important; } .bg-info, .badge-info { background-color: #009efb !important; } .bg-warning, .badge-warning { background-color: #ffbc34 !important; } .bg-danger, .badge-danger { background-color: #f62d51 !important; } .bg-white { background-color: #fff; } .text-primary, .dropdown-menu > li > a.text-primary { color: #f43b48 !important; } .text-success, .dropdown-menu > li > a.text-success { color: #55ce63 !important; } .text-danger, .dropdown-menu > li > a.text-danger { color: #f62d51 !important; } .text-info, .dropdown-menu > li > a.text-info { color: #009efb !important; } .text-warning, .dropdown-menu > li > a.text-warning { color: #ffbc34 !important; } .text-purple, .dropdown-menu > li > a.text-purple { color: #7460ee !important; } .text-muted { color: #8e8e8e !important; } .btn-purple { background-color: #7460ee; border: 1px solid #7460ee; color: #fff; } .btn-purple:hover, .btn-purple:focus { background-color: #482fe9; border: 1px solid #482fe9; } .btn-primary { background-color: #f43b48; border: 1px solid #f43b48; } .btn-primary:hover, .btn-primary:focus, .btn-primary.active, .btn-primary:active, .open > .dropdown-toggle.btn-primary { background-color: #f10e1d; border: 1px solid #f10e1d; } .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary.focus:active, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover { background-color: #f10e1d; border: 1px solid #f10e1d; } .btn-primary.active:not(:disabled):not(.disabled), .btn-primary:active:not(:disabled):not(.disabled), .show > .btn-primary.dropdown-toggle { background-color: #f10e1d; border-color: #f10e1d; color: #fff; } .btn-primary.active:focus:not(:disabled):not(.disabled), .btn-primary:active:focus:not(:disabled):not(.disabled), .show > .btn-primary.dropdown-toggle:focus { box-shadow: unset; } .btn-primary.disabled, .btn-primary:disabled { background-color: #f43b48; border-color: #f43b48; color: #fff; } .btn-success { background-color: #55ce63; border: 1px solid #55ce63 } .btn-success:hover, .btn-success:focus, .btn-success.active, .btn-success:active, .open > .dropdown-toggle.btn-success { background: #4ab657; border: 1px solid #4ab657; color: #fff; } .btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success.focus:active, .btn-success:active:focus, .btn-success:active:hover, .open > .dropdown-toggle.btn-success.focus, .open > .dropdown-toggle.btn-success:focus, .open > .dropdown-toggle.btn-success:hover { background: #4ab657; border: 1px solid #4ab657 } .btn-success.active:focus:not(:disabled):not(.disabled), .btn-success:active:focus:not(:disabled):not(.disabled), .show > .btn-success.dropdown-toggle:focus { box-shadow: unset; } .btn-success.disabled, .btn-success:disabled { background-color: #55ce63; border-color: #55ce63; color: #fff; } .btn-info { background-color: #009efb; border: 1px solid #009efb } .btn-info:hover, .btn-info:focus, .btn-info.active, .btn-info:active, .open > .dropdown-toggle.btn-info { background-color: #028ee1; border: 1px solid #028ee1 } .btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info.focus:active, .btn-info:active:focus, .btn-info:active:hover, .open > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:hover { background-color: #028ee1; border: 1px solid #028ee1 } .btn-info.active:focus:not(:disabled):not(.disabled), .btn-info:active:focus:not(:disabled):not(.disabled), .show > .btn-info.dropdown-toggle:focus { box-shadow: unset; } .btn-info.disabled, .btn-info:disabled { background-color: #009efb; border-color: #009efb; color: #fff; } .btn-warning { background: #ffbc34; border: 1px solid #ffbc34 } .btn-warning:hover, .btn-warning:focus, .btn-warning.active, .btn-warning:active, .open > .dropdown-toggle.btn-warning { background: #e9ab2e; border: 1px solid #e9ab2e } .btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning.focus:active, .btn-warning:active:focus, .btn-warning:active:hover, .open > .dropdown-toggle.btn-warning.focus, .open > .dropdown-toggle.btn-warning:focus, .open > .dropdown-toggle.btn-warning:hover { background: #e9ab2e; border: 1px solid #e9ab2e } .btn-warning.active:focus:not(:disabled):not(.disabled), .btn-warning:active:focus:not(:disabled):not(.disabled), .show > .btn-warning.dropdown-toggle:focus { box-shadow: unset; } .btn-warning.disabled, .btn-warning:disabled { background-color: #ffbc34; border-color: #ffbc34; color: #fff; } .btn-danger { background: #f62d51; border: 1px solid #f62d51 } .btn-danger:hover, .btn-danger:focus, .btn-danger.active, .btn-danger:active, .open > .dropdown-toggle.btn-danger { background-color: #e6294b; border: 1px solid #e6294b } .btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger.focus:active, .btn-danger:active:focus, .btn-danger:active:hover, .open > .dropdown-toggle.btn-danger.focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger:hover { background: #e9ab2e; border: 1px solid #e9ab2e } .btn-danger.active:focus:not(:disabled):not(.disabled), .btn-danger:active:focus:not(:disabled):not(.disabled), .show > .btn-danger.dropdown-toggle:focus { box-shadow: unset; } .btn-danger.disabled, .btn-danger:disabled { background-color: #f62d51; border-color: #f62d51; color: #fff; } .btn-custom { background: #f43b48; background: -moz-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -webkit-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -ms-linear-gradient(left, #f43b48 0%, #453a94 100%); background: linear-gradient(to right, #f43b48 0%, #453a94 100%); color: #fff; } .btn-custom.focus, .btn-custom:focus, .btn-custom:hover { background: #f43b48; background: -moz-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -webkit-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -ms-linear-gradient(left, #f43b48 0%, #453a94 100%); background: linear-gradient(to right, #f43b48 0%, #453a94 100%); color: #fff; } .pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover { background-color: #f43b48; border-color: #f43b48; } .pagination > li > a, .pagination > li > span { color: #f43b48; } .page-link:hover { color: #f43b48; } .page-link:focus { box-shadow: unset; } .page-item.active .page-link { background-color: #f43b48; border-color: #f43b48; } .dropdown-menu { border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 3px; transform-origin: left top 0; box-shadow: inherit; background-color: #fff; } .navbar-nav .open .dropdown-menu { background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.1); } .dropdown-menu { font-size: 13px; } .btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active { box-shadow: none; } .btn-link { color: #333; } .nav .open > a, .nav .open > a:focus, .nav .open > a:hover { background-color: rgba(0, 0, 0, 0.2); } .form-text { color: #999; font-size: 12px; margin-bottom: 7px; margin-top: 7px; } .btn.focus, .btn:focus { box-shadow: unset; } .dropdown-item.active, .dropdown-item:active { background-color: #f43b48; } .list-group-item { border: 1px solid #e3e3e3; } .custom-file { height: 44px; } .custom-file .custom-file-label { border: 1px solid #e3e3e3; height: 44px; margin-bottom: 0; padding: 10px 15px; } .custom-file-label::after { background-color: #f2f2f2; height: 42px; padding: 10px 15px; } .custom-file input[type="file"] { height: 44px; } .bg-inverse-primary { background: rgba(77, 138, 240, .2) !important; color: #4d8af0 !important; } .bg-inverse-secondary { background: rgba(194, 198, 209, .2) !important; color: #c2c6d1 !important; } .bg-inverse-success { background-color:rgba(15, 183, 107,0.12) !important; color: #26af48 !important; } .bg-inverse-purple { background: rgba(108, 97, 246, .2) !important; color: #6c61f6 !important; } .bg-inverse-warning { background-color: rgba(255, 152, 0,0.12) !important; color: #f39c12 !important; } .bg-inverse-danger { background-color: rgba(242, 17, 54,0.12) !important; color: #e63c3c !important; } .bg-inverse-light { background: rgba(223, 223, 223, .2) !important; color: #dfdfdf !important; } .bg-inverse-dark { background: rgba(116, 118, 123, .2) !important; color: #74767b !important; } .bg-inverse-white { background: rgba(255, 255, 255, .2) !important; color: #fff !important; } .bg-inverse-info { background-color: rgba(2, 182, 179,0.12) !important; color: #1db9aa !important; } .bg-inverse-default { background-color: rgba(40, 52, 71,0.12) !important; color: #283447 !important; } .bg-gradient-primary { background: linear-gradient( to right, #6e00ff 10%, #6e00ff 100%); } .bg-gradient-secondary { background: linear-gradient(to bottom right,#f35c38 0,#f35c38 100%); } .bg-gradient-success { background: linear-gradient(to bottom right,#0ba408 0,#28e224 100%); } .bg-gradient-info { background: linear-gradient(to bottom right,#69c7de 0, #1e9fc4 100%); } .bg-gradient-warning { background: linear-gradient(to bottom right,#ecd53e 0,#efaf28 100%) } .bg-gradient-teal { background: linear-gradient(to bottom right,#00796b 0,#4db6ac 100%); } .bg-gradient-blue { background: linear-gradient(to right,#1976d2 0,#64b5f6 100%); } .bg-gradient-danger { background: linear-gradient(to right,#f95058 0,#f33540 100%); } .bg-gradient-purple { background: linear-gradient(to right,#8a56e6 0,#6f3cca 100%); } /*----------------- 5. Animation -----------------------*/ @-moz-keyframes pulse { 0% { -moz-transform: scale(0); opacity: 0.0; } 25% { -moz-transform: scale(0); opacity: 0.1; } 50% { -moz-transform: scale(0.1); opacity: 0.3; } 75% { -moz-transform: scale(0.5); opacity: 0.5; } 100% { -moz-transform: scale(1); opacity: 0.0; } } @-webkit-keyframes pulse { 0% { -webkit-transform: scale(0); opacity: 0.0; } 25% { -webkit-transform: scale(0); opacity: 0.1; } 50% { -webkit-transform: scale(0.1); opacity: 0.3; } 75% { -webkit-transform: scale(0.5); opacity: 0.5; } 100% { -webkit-transform: scale(1); opacity: 0.0; } } @-webkit-keyframes taskHighlighter { 0% { background: #FEEB99; } 100% { background: #fff; } } @keyframes taskHighlighter { 0% { background: #FEEB99; } 100% { background: #fff; } } /*----------------- 6. Toggle Button -----------------------*/ .check { display: block; margin: 0; padding: 0; width: 0; height: 0; visibility: hidden; opacity: 0; pointer-events: none; position: absolute; } .checktoggle { background-color: #e0001a; border-radius: 12px; cursor: pointer; display: block; font-size: 0; height: 24px; margin-bottom: 0; position: relative; width: 48px; } .checktoggle:after { content: ' '; display: block; position: absolute; top: 50%; left: 0; transform: translate(5px, -50%); width: 16px; height: 16px; background-color: #fff; border-radius: 50%; transition: left 300ms ease, transform 300ms ease; } .check:checked + .checktoggle { background-color: #55ce63; } .check:checked + .checktoggle:after { left: 100%; transform: translate(calc(-100% - 5px), -50%); } .onoffswitch { margin-left: auto; position: relative; width: 73px; -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none; } .onoffswitch-checkbox { display: none; } .onoffswitch-label { display: block; overflow: hidden; cursor: pointer; border-radius: 20px; margin-bottom: 0; } .onoffswitch-inner { display: block; margin-left: -100%; transition: margin 0.3s ease-in 0s; width: 200%; } .onoffswitch-inner:before, .onoffswitch-inner:after { box-sizing: border-box; color: #fff; display: block; float: left; font-size: 16px; height: 30px; line-height: 32px; padding: 0; width: 50%; } .onoffswitch-inner:before { background-color: #55ce63; color: #fff; content: "ON"; padding-left: 14px; } .onoffswitch-inner:after { content: "OFF"; padding-right: 14px; background-color: #ccc; color: #fff; text-align: right; } .onoffswitch-switch { background: #fff; border-radius: 20px; bottom: 0; display: block; height: 20px; margin: 5px; position: absolute; right: 43px; top: 0; transition: all 0.3s ease-in 0s; width: 20px; } .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner { margin-left: 0; } .onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch { right: 0px; } .switch { cursor: pointer; position: relative; } .switch input { position: absolute; opacity: 0; filter: alpha(opacity=0); } .switch input:checked+span { background-color: #55ce63; } .switch input:checked+span:after { left: 31px; } .switch span { position: relative; width: 60px; height: 30px; border-radius: 30px; background-color: #fff; border: 1px solid #eee; border-color: rgba(0, 0, 0, 0.1); display: inline-block; -webkit-transition: background-color 0.2s; transition: background-color 0.2s; } .switch span:after { content: ""; position: absolute; background-color: #fff; width: 26px; top: 1px; bottom: 1px; border-radius: 30px; -webkit-box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25); box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25); -webkit-transition: left 0.2s; transition: left 0.2s; } .rating-list { display: flex; justify-content: center } .rating-list > span { display: inline-block; margin-right: 4px; } .rating-list span a { background-color: #ccc; border-radius: 4px; color: #333; display: inline-flex; justify-content: center; align-items: center; width: 50px; height: 50px; font-size: 18px; font-weight: 600; margin-bottom:5px; } .rating-list span.rating-bad a { background-color: #ad0d20; color: #fff; } .rating-list span.rating-normal a { background-color: #dccc00; color: #fff; } .rating-list span.rating-good a { background-color: #00a100; color: #fff; } .rating-text { font-size: 12px; max-width: 157px; display: inline-block; margin-top: 5px; } .rating-list > span.rating-normal { text-align: center; } .rating-list > span.rating-good { text-align: right; } .custom_check { color: #555; display: inline-block; position: relative; font-size: 14px; font-size: .9375rem; padding-left: 30px; margin-bottom: 10px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none } .custom_check input { position: absolute; opacity: 0; cursor: pointer } .custom_check input:checked ~ .checkmark { background-color: #ff9b44; border: 1px solid transparent } .custom_check .checkmark { position: absolute; top: 0; left: 0; height: 20px; width: 20px; border: 1px solid #d2d8dd; background-color: #fff; border-radius: 3px; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out } .custom_check .checkmark:after { content: ""; position: absolute; display: none; left: 7px; top: 3px; width: 5px; height: 10px; border: solid white; border-width: 0 2px 2px 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg) } .custom_check input:checked ~ .checkmark:after { display: block } .custom_radio { color: #555; display: inline-block; position: relative; font-size: 14px; font-size: 0.9375rem; padding-left: 30px; margin-bottom: 10px; cursor: pointer; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none } .radio_input .custom_radio + .custom_radio { margin-left: 15px; } .custom_radio input { position: absolute; opacity: 0 } .custom_radio input:checked ~ .checkmark:after { opacity: 1 } .custom_radio .checkmark { position: absolute; top: 0; left: 0; height: 20px; width: 20px; background-color: #fff; border: 1px solid #ccc; border-radius: 50% } .custom_radio .checkmark:after { display: block; content: ""; position: absolute; opacity: 0; top: 3px; left: 3px; width: 12px; height: 12px; border-radius: 50%; background: #ff9b44; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; -webkit-transition: all 0.3s ease-in-out; -ms-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out } .setting-performance-table.table>tbody>tr>td, .setting-performance-table.table>tbody>tr>th, .setting-performance-table.table>tfoot>tr>td, .setting-performance-table.table>tfoot>tr>th, .setting-performance-table.table>thead>tr>td, .setting-performance-table.table>thead>tr>th { vertical-align: middle; } .setting-performance-table textarea.form-control { resize: none; height:44px!important; padding-top:10px!important; } /*----------------- 7. Modal -----------------------*/ .modal { -webkit-overflow-scrolling: touch; } .modal-footer.text-center { justify-content: center; } .modal-footer.text-left { justify-content: flex-start; } .modal-dialog.modal-md { max-width: 600px; } .custom-modal .modal-content { border: 0; border-radius: 10px; } .custom-modal .modal-footer { border: 0; } .custom-modal .modal-header { border: 0; justify-content: center; padding: 30px 30px 0; } .custom-modal .modal-footer { border: 0; justify-content: center; padding: 0 30px 30px; } .custom-modal .modal-body { padding: 30px; } .custom-modal .close { background-color: #a0a0a0; border-radius: 50%; color: #fff; font-size: 13px; height: 20px; line-height: 20px; margin: 0; opacity: 1; padding: 0; position: absolute; right: 10px; top: 10px; width: 20px; z-index: 99; } .custom-modal .modal-title { font-size: 22px; } .modal-backdrop.show { opacity: 0.4; -webkit-transition-duration: 400ms; transition-duration: 400ms; } .modal .card { box-shadow: unset; } /*----------------- 8. Header -----------------------*/ .header { background: #f43b48; background: -moz-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -webkit-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -ms-linear-gradient(left, #f43b48 0%, #453a94 100%); background: linear-gradient(to right, #f43b48 0%, #453a94 100%); border-bottom: 1px solid transparent; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); height: 60px; left: 0; position: fixed; right: 0; top: 0; z-index: 1002; } .header .header-left { float: left; height: 60px; padding: 0 20px; position: relative; text-align: center; width: 230px; z-index: -1 !important; transition: all 0.2s ease-in-out; } .header .header-right { float: right; height: 60px; padding: 0 20px; font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; font-size: 36px; color: #fff; position: relative; right: 42.5%; text-align: center; width: 230px; z-index: 1; transition: all 0.2s ease-in-out; } .header .header-left .logo { display: inline-block; line-height: 60px; width: 40px; } .bar-icon { display: inline-block; width: 21px; } .bar-icon span { background-color: #fff; border-radius: 500px; display: block; float: left; height: 2px; margin-bottom: 5px; width: 21px; } .bar-icon span:nth-child(2) { width: 15px; } .bar-icon span:nth-child(3) { margin-bottom: 0; } .header .navbar-nav .badge { position: absolute; right: 7px; top: 4px; } .header .dropdown-menu > li > a { position: relative; } .header .dropdown-toggle::after { display: none; } .header .has-arrow .dropdown-toggle:after { border-top: 0; border-left: 0; border-bottom: 2px solid #fff; border-right: 2px solid #fff; content: ''; height: 8px; display: inline-block; pointer-events: none; -webkit-transform-origin: 66% 66%; -ms-transform-origin: 66% 66%; transform-origin: 66% 66%; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); -webkit-transition: all 0.15s ease-in-out; transition: all 0.15s ease-in-out; width: 8px; vertical-align: 2px; } .header .has-arrow .dropdown-toggle[aria-expanded="true"]:after { -webkit-transform: rotate(-135deg); -ms-transform: rotate(-135deg); transform: rotate(-135deg); } .page-title-box { border-radius: 0; float: left; height: 60px; margin-bottom: 0; padding: 17px 20px; } .page-title-box h3 { color: #fff; font-size: 20px; font-weight: normal; margin: 0; } .user-menu { float: right; margin: 0; position: relative; z-index: 99; } .user-menu.nav > li > a { color: #fff; font-size: 15px; line-height: 60px; padding: 0 15px; height: 60px; } .user-menu.nav > li > a:hover, .user-menu.nav > li > a:focus { background-color: rgba(0, 0, 0, 0.2); } .flag-nav img { margin-right: 5px; } .flag-nav .dropdown-menu { max-height: 150px; min-width: 120px; overflow-y: auto; } .flag-nav .dropdown-menu .dropdown-item { padding: 5px 15px; } .user-img { display: inline-block; position: relative; } .main-drop .user-img img { border-radius: 50%; width: 30px; } .user-img .status { border: 2px solid #fff; bottom: 0; height: 10px; margin: 0; position: absolute; right: 0; width: 10px; } .user-menu .user-img .status { bottom: 12px; } .status { background-color: #263238; border-radius: 50%; display: inline-block; height: 10px; width: 10px; } .status.online { background-color: #55ce63; } .status.offline { background-color: #f62d51; } .status.away { background-color: #faa937; } .main-drop .dropdown-menu { min-width: 130px; padding: 0; } /*----------------- 9. Sidebar -----------------------*/ .sidebar { background-color: #34444c; border-right: 1px solid transparent; bottom: 0; left: 0; margin-top: 0; position: fixed; top: 60px; transition: all 0.2s ease-in-out 0s; width: 230px; z-index: 1001; } .sidebar.opened { -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; } .sidebar-inner { height: 100%; transition: all 0.2s ease-in-out 0s; } .sidebar-menu { padding: 10px 0; z-index: 1 !important; } .sidebar-menu ul { font-size: 15px; list-style-type: none; margin: 0; padding: 0; position: relative; } .sidebar-menu li a { color: #b7c0cd; display: block; font-size: 15px; height: auto; padding: 0 20px; } .sidebar-menu li a:hover { color: #fff; } .sidebar-menu li.active a { color: #fff; background-color: rgba(0, 0, 0, 0.2); } .menu-title { color: #ebecf1; display: flex; font-size: 34px; opacity: 1; padding: 5px 15px; white-space: nowrap; } .menu-title > i { float: right; line-height: 40px; } .sidebar-menu li.menu-title a { color: #f43b48; display: inline-block; margin-left: auto; padding: 0; } .sidebar-menu li.menu-title a.btn { color: #fff; display: block; float: none; font-size: 15px; margin-bottom: 15px; padding: 10px 15px; } .sidebar-menu ul ul a.active { color: #f43b48; text-decoration: underline; } .mobile-user-menu { color: #fff; display: none; float: right; font-size: 24px; height: 60px; line-height: 60px; padding: 0 20px; position: absolute; right: 0; text-align: right; top: 0; width: 60px; z-index: 10; } .mobile-user-menu > a { color: #fff; padding: 0; } .mobile-user-menu a:hover { color: #fff; } .mobile-user-menu > .dropdown-menu { min-width: 130px; } .mobile-user-menu > .dropdown-menu > a { line-height: 23px; } .profile-rightbar { display: none !important; color: #f43b48; font-size: 26px; margin-left: 15px; } .mobile_btn { display: none; float: left; } .sidebar .sidebar-menu > ul > li > a span { transition: all 0.2s ease-in-out 0s; display: inline-block; margin-left: 15px; white-space: nowrap; } .sidebar .sidebar-menu > ul > li > a span.chat-user { margin-left: 0; overflow: hidden; text-overflow: ellipsis; } .sidebar .sidebar-menu > ul > li > a span.badge { margin-left: auto; } .sidebar-menu ul ul a { display: block; font-size: 14px; padding: 9px 10px 9px 50px; position: relative; } .sidebar-menu ul ul { display: none; } .sidebar-menu ul ul ul a { padding-left: 70px; } .sidebar-menu ul ul ul ul a { padding-left: 90px; } .sidebar-menu > ul > li { position: relative; } .sidebar-menu .menu-arrow { -webkit-transition: -webkit-transform 0.15s; -o-transition: -o-transform 0.15s; transition: transform .15s; position: absolute; right: 15px; display: inline-block; font-family: 'FontAwesome'; text-rendering: auto; line-height: 40px; font-size: 18px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; -webkit-transform: translate(0, 0); -ms-transform: translate(0, 0); -o-transform: translate(0, 0); transform: translate(0, 0); line-height: 18px; top: 11px; } .sidebar-menu .menu-arrow:before { content: "\f105"; } .sidebar-menu li a.subdrop .menu-arrow { -ms-transform: rotate(90deg); -webkit-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); } .noti-dot:before { content: ''; width: 5px; height: 5px; border: 5px solid #f43b48; -webkit-border-radius: 30px; -moz-border-radius: 30px; border-radius: 30px; background-color: #f43b48; z-index: 10; position: absolute; right: 37px; top: 15px; } .noti-dot:after { content: ''; border: 4px solid #f43b48; background: transparent; -webkit-border-radius: 60px; -moz-border-radius: 60px; border-radius: 60px; height: 24px; width: 24px; -webkit-animation: pulse 3s ease-out; -moz-animation: pulse 3s ease-out; animation: pulse 3s ease-out; -webkit-animation-iteration-count: infinite; -moz-animation-iteration-count: infinite; animation-iteration-count: infinite; position: absolute; top: 8px; right: 30px; z-index: 1; opacity: 0; } .sidebar-menu ul ul a .menu-arrow { top: 6px; } .sidebar-menu a { line-height: 1.3; transition: unset; -moz-transition: unset; -o-transition: unset; -ms-transition: unset; -webkit-transition: unset; } .sidebar-menu > ul > li > a { padding: 8px 15px; align-items: center; display: flex; justify-content: flex-start; position: relative; transition: all 0.2s ease-in-out 0s; } .sidebar-menu ul li a i { display: inline-block; font-size: 24px; line-height: 24px; text-align: left; vertical-align: middle; width: 20px; transition: all 0.2s ease-in-out 0s; } .sidebar-menu ul li.menu-title a i { font-size: 16px !important; margin-right: 0; text-align: right; width: auto; } .sidebar-menu li a > .badge { color: #fff; } /*----------------- 10. Content -----------------------*/ .page-wrapper { left: 0; margin-left: 230px; padding-top: 60px; position: relative; transition: all 0.2s ease-in-out; } .page-wrapper > .content { padding: 30px; } .page-header { margin-bottom: 1.875rem; } .page-header .breadcrumb { background-color: transparent; color: #6c757d; font-size: 1rem; font-weight: 500; margin-bottom: 0; padding: 0; } .page-header .breadcrumb a { color: #333; } .card { border: 1px solid #ededed; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); margin-bottom: 30px; } .card-title { color: #1f1f1f; font-size: 20px; font-weight: 500; margin-bottom: 20px; } .card-header { background-color: #fff; } .card-footer { background-color: #fff; } .page-title { color: #1f1f1f; font-size: 26px; font-weight: 500; margin-bottom: 5px; } .page-sub-title { color: #565656; font-size: 18px; font-weight: normal; margin-bottom: 20px; } .add-btn { background-color: #f43b48; border: 1px solid #f43b48; border-radius: 50px; color: #fff; float: right; font-weight: 500; min-width: 140px; } .add-btn:hover, .add-btn:focus, .add-btn:active { background-color: #f10e1d; border: 1px solid #f10e1d; color: #fff; } .add-btn i { margin-right: 5px; } .cal-icon { position: relative; width: 100%; } .cal-icon:after { color: #979797; content: "\f073"; display: block; font-family: "FontAwesome"; font-size: 15px; margin: auto; position: absolute; right: 15px; top: 10px; } .form-focus .cal-icon:after { top: 15px; } /*----------------- 11. Login -----------------------*/ .account-page { align-items: center ; display: flex; } .account-page .main-wrapper { display: flex; flex-wrap: wrap; justify-content: center; width: 100%; } .account-content { padding: 20px 0; } .account-title { font-size: 26px; font-weight: 500; margin-bottom: 5px; text-align: center; } .account-subtitle { color: #4c4c4c; font-size: 18px; margin-bottom: 30px; text-align: center; } .account-box { background-color: #fff; border: 1px solid #ededed; border-radius: 4px; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); margin: 0 auto; overflow: hidden; width: 480px; } .account-wrapper { padding: 30px; } .account-logo { margin-bottom: 30px; text-align: center; } .account-box .form-group { margin-bottom: 25px; } .account-box .account-btn { background: #f43b48; background: -moz-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -webkit-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -ms-linear-gradient(left, #f43b48 0%, #453a94 100%); background: linear-gradient(to right, #f43b48 0%, #453a94 100%); border: 0; border-radius: 4px; display: block; font-size: 22px; padding: 10px 26px; width: 100%; } .account-box .account-btn:hover, .account-box .account-btn:focus { border: 0; opacity: 0.8; } .account-box .form-control { background-color: #fbfbfb; border: 1px solid #e3e3e3; border-radius: 4px; height: 46px; } .account-box label { color: #1f1f1f; font-size: 16px; font-weight: normal; margin-bottom: 5px; } .account-logo img { width: 100px; } .account-footer { text-align: center; } .account-footer p { margin-bottom: 0; } .account-footer a { color: #f43b48; } .account-footer a:hover { color: #f43b48; } /*----------------- 12. Dashboard -----------------------*/ .card-table .card-header { background-color: #fff; border-bottom: 1px solid #ddd; padding: 15px; } .card-table .card-body { padding: 0; } .card-table .card-footer { background-color: #fff; text-align: center; } .card-table .card-footer a { color: #333; } .card-title > a.btn { color: #fff; } .custom-table tr { background-color: #fff; box-shadow: 0 0 3px #e5e5e5; } .table.custom-table > tbody > tr > td, .table.custom-table > tbody > tr > th, .table.custom-table > tfoot > tr > td, .table.custom-table > tfoot > tr > th, .table.custom-table > thead > tr > td, .table.custom-table > thead > tr > th { padding: 10px 8px; vertical-align: middle; } .table.custom-table > tbody > tr > td:first-child, .table.custom-table > thead > tr > th:first-child { padding-left: 15px; } .table.custom-table > tbody > tr > td:last-child, .table.custom-table > thead > tr > th:last-child { padding-right: 15px; } .dash-widget-icon { background-color: rgba(244, 59, 72, 0.2); border-radius: 100%; color: #f43b48; display: inline-block; float: left; font-size: 30px; height: 60px; line-height: 60px; margin-right: 10px; text-align: center; width: 60px; } .dash-widget-info { text-align: right; } .dash-widget-info > h3 { font-size: 30px; font-weight: 600; } .dash-widget-info > span { font-size: 16px; } .dash-statistics .stats-info { margin-bottom: 5px; } .dash-statistics .stats-info:last-child { margin-bottom: 0; } .dash-statistics .progress { height: 4px; } .dash-statistics .stats-list { height: auto; } .leave-info-box { border: 1px solid #e5e5e5; padding: 15px; margin-bottom: 15px; } .leave-info-box:last-child { margin-bottom: 0; } .load-more a { background-color: #fff; border: 1px solid #eaeaea; border-radius: 3px; box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); display: inline-block; font-size: 14px; padding: 5px 15px; } /*----------------- 13. Activity -----------------------*/ .activity-box { position: relative; } .activity-list { list-style: none; margin: 0 0 0 10px; padding: 0; position: relative; } .activity .activity-list { list-style: none; margin: 0; padding: 0; position: relative; } .activity .activity-list > li .activity-user { height: 32px; margin: 0; padding: 0; position: absolute; top: 12px; left: 8px; width: 32px; } .activity .activity-list > li .activity-content { background-color: #fff; margin: 0 0 0 40px; padding: 0; position: relative; } .activity-list::before { background: #ddd; bottom: 0; content: ""; left: 23px; position: absolute; top: 8px; width: 2px; } .activity .activity-list li::before { background: #ddd; bottom: 0; content: ""; left: 22px; position: absolute; top: 12px; width: 2px; } .activity-list li::before { background: #eee; bottom: 0; content: ""; left: 8px; position: absolute; top: 8px; width: 2px; } .activity-list > li { background-color: #fff; margin-bottom: 10px; padding: 10px; position: relative; border: 1px solid #ededed; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); } .activity-list > li:last-child .activity-content { margin-bottom: 0; } .activity-user .avatar { height: 32px; line-height: 32px; margin: 0; width: 32px; } .activity-list > li .activity-user { background: #fff; height: 32px; left: -7px; margin: 0; padding: 0; position: absolute; top: 3px; width: 32px; } .activity-list > li .activity-content { background-color: #fff; margin: 0 0 20px 40px; padding: 0; position: relative; } .activity-list > li .activity-content .timeline-content { color: #9e9e9e; } .activity-list > li .activity-content .timeline-content a { color: #616161; } .activity-list > li .time { color: #bdbdbd; display: block; font-size: 13px; } /*----------------- 14. Select2 -----------------------*/ .select2-container .select2-selection--single { border: 1px solid #e3e3e3; border-radius: 0.25rem; height: 44px; } .select2-container--default .select2-selection--single .select2-selection__arrow { height: 42px; right: 7px; } .select2-container--default .select2-selection--single .select2-selection__arrow b { border-color: #ccc transparent transparent; border-style: solid; border-width: 6px 6px 0; height: 0; left: 50%; margin-left: -10px; margin-top: -2px; position: absolute; top: 50%; width: 0; } .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { border-color: transparent transparent #ccc; border-width: 0 6px 6px; } .select2-container .select2-selection--single .select2-selection__rendered { padding-right: 30px; padding-left: 15px; } .select2-container--default .select2-selection--single .select2-selection__rendered { color: #676767; font-size: 15px; font-weight: normal; line-height: 42px; } .select2-container--default .select2-results__option--highlighted[aria-selected] { background-color: #f43b48; } /*----------------- 15. Nav Tabs -----------------------*/ .nav-tabs .nav-link { border-radius: 0; } .nav-tabs > li > a { margin-right: 0; color: #888; border-radius: 0; } .nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover { background-color: #eee; border-color: transparent; color: #333; } .nav-tabs.nav-justified > li > a { border-radius: 0; margin-bottom: 0; } .nav-tabs.nav-justified > li > a:hover, .nav-tabs.nav-justified > li > a:focus { border-bottom-color: #ddd; } .nav-tabs.nav-justified.nav-tabs-solid > li > a { border-color: transparent; } .nav-tabs.nav-tabs-solid > li > a { color: #333; } .nav-tabs.nav-tabs-solid > li > a.active, .nav-tabs.nav-tabs-solid > li > a.active:hover, .nav-tabs.nav-tabs-solid > li > a.active:focus { background-color: #f43b48; border-color: #f43b48; color: #fff; } .nav-tabs.nav-tabs-solid.nav-tabs-rounded { border-radius: 50px; } .nav-tabs.nav-tabs-solid.nav-tabs-rounded > li > a { border-radius: 50px; } .nav-tabs.nav-tabs-solid.nav-tabs-rounded > li > a.active, .nav-tabs.nav-tabs-solid.nav-tabs-rounded > li > a.active:hover, .nav-tabs.nav-tabs-solid.nav-tabs-rounded > li > a.active:focus { border-radius: 50px; } .nav-tabs-justified > li > a { border-radius: 0; margin-bottom: 0; } .nav-tabs-justified > li > a:hover, .nav-tabs-justified > li > a:focus { border-bottom-color: #ddd; } .nav-tabs-justified.nav-tabs-solid > li > a { border-color: transparent; } .tab-content { padding-top: 20px; } /*----------------- 16. Holidays -----------------------*/ .custom-table tr.holiday-completed { color: #aaa; } .dropdown.action-label { display: inline-block; } .action-label > a { display: inline-block; min-width: 103px; } .action-label .btn-sm { padding: 4px; } /*----------------- 17. Delete Modal -----------------------*/ .form-header { text-align: center; margin-bottom: 30px; } .form-header h3 { color: #333; font-size: 22px; font-weight: 500; margin-bottom: 10px; } .form-header p { color: #929292; font-size: 15px; margin-bottom: 0; } .modal-btn > .row { margin-left: -8px; margin-right: -8px; } .modal-btn > .row > div { padding-left: 8px; padding-right: 8px; } .continue-btn { background-color: #fff; border: 1px solid #f43b48; border-radius: 50px; color: #f43b48; display: block; font-size: 18px; font-weight: 600; padding: 10px 20px; text-align: center; } .continue-btn:hover, .continue-btn:focus, .continue-btn:active { background-color: #f43b48; border: 1px solid #f43b48; color: #fff; } .cancel-btn { background-color: #fff; border: 1px solid #f43b48; border-radius: 50px; color: #f43b48; display: block; font-size: 18px; font-weight: 600; padding: 10px 20px; text-align: center; } .cancel-btn:hover, .cancel-btn:focus, .cancel-btn:active { background-color: #f43b48; border: 1px solid #f43b48; color: #fff; } /*----------------- 18. Edit Profile -----------------------*/ .profile-img-wrap { height: 120px; position: absolute; width: 120px; background: #fff; overflow: hidden; } .profile-basic { margin-left: 140px; } .profile-basic .cal-icon { width: 100%; } .profile-img-wrap img { border-radius: 50%; height: 120px; width: 120px; } .fileupload.btn { position: absolute; right: 0; bottom: 0; background: rgba(33, 33, 33, 0.5); border-radius: 0; padding: 3px 10px; border: none; } .fileupload input.upload { cursor: pointer; filter: alpha(opacity=0); font-size: 20px; margin: 0; opacity: 0; padding: 0; position: absolute; right: -3px; top: -3px; padding: 5px; } .btn-text { color: #fff; } .submit-section { text-align: center; margin-top: 40px; } .submit-btn { border-radius: 50px; font-size: 18px; font-weight: 600; min-width: 200px; padding: 10px 20px; } .form-scroll { max-height: 400px; overflow-y: auto; } .profile-img-wrap.edit-img { border-radius: 50%; margin: 0 auto 30px; position: relative; } .profile-img-wrap.edit-img .fileupload.btn { left: 0; } /*----------------- 19. Chat -----------------------*/ .chat-avatar-sm { display: inline-block; float: left; margin-left: 0 !important; margin-right: 10px; position: relative; width: 24px; } .chat-avatar-sm img { width:24px; } .chat-avatar-sm.user-img .status { bottom: 0; right: -3px; } .chat-main-row { bottom: 0; left: 0; overflow: auto; padding-bottom: inherit; padding-top: inherit; position: absolute; right: 0; top: 0; } .chat-main-wrapper { display: table; height: 100%; table-layout: fixed; width: 100%; } .message-view { display: table-cell; height: 100%; float: none; padding: 0; position: static; vertical-align: top; width: 75%; } .chat-window { display: table; height: 100%; table-layout: fixed; width: 100%; background-color: #f7f7f7; } .fixed-header { background-color: #fff; border-bottom: 1px solid #eaeaea; padding: 10px 15px; } .fixed-header .navbar { border: 0 none; margin: 0; min-height: auto; padding: 0; } .fixed-header .user-info a { color: #555; text-transform: uppercase; } .typing-text { color: #f43b48; font-size: 12px; text-transform: lowercase; } .last-seen { color: #888; display: block; font-size: 12px; } .custom-menu { margin-top: 6px; } .fixed-header .custom-menu { margin: 0 0 1px; } .custom-menu.nav > li > a { color: #bbb; font-size: 26px; line-height: 32px; margin-left: 15px; padding: 0; } .custom-menu.navbar-nav > li > a:hover, .custom-menu.navbar-nav > li > a:focus { background-color: transparent; } .custom-menu .dropdown-menu { left: auto; right: 0; } .search-box { margin-top: 5px; } .search-box .input-group { background-color: #f7f7f7; border: 1px solid #e3e3e3; border-radius: 50px; } .search-box .input-group .form-control { background: transparent; border: none; } .search-box .btn { background-color: transparent; } .search-input { border-radius: 5px; } .chat-contents { display: table-row; height: 100%; } .chat-content-wrap { height: 100%; position: relative; width: 100%; } .chat-wrap-inner { bottom: 0; left: 0; overflow: auto; position: absolute; right: 0; top: 0; } .chats { padding: 30px 15px; } .chat-body { display: block; margin: 10px 0 0; overflow: hidden; } .chat-body:first-child { margin-top: 0 } .chat-right .chat-content { background-color: #f2f2f2; border: 1px solid #e3e3e3; border-radius: 20px 2px 2px 20px; clear: both; color: #727272; display: block; float: right; margin: 0; max-width: 60%; padding: 8px 15px; position: relative; } .chat-right .chat-body { padding-left: 48px; padding-right: 10px; } .chat-bubble { display: block; width: 100%; float: left; margin-bottom: 10px; } .chat-bubble:hover .chat-action-btns { display: block; float: left; } .chat-right .chat-bubble:hover .chat-action-btns { float: right; display: block; } .chat.chat-right .chat-bubble:last-child .chat-content { border-bottom-right-radius: 20px; } .chat.chat-right .chat-bubble:first-child .chat-content { border-top-right-radius: 20px; } .chat-content > p { margin-bottom: 0; } .chat-time { color: rgba(0, 0, 0, 0.5); display: block; font-size: 12px; } .chat-right .chat-time { text-align: right; } .chat-bubble .chat-action-btns { display: none; } .chat-action-btns { float: right; } .chat-action-btns ul { list-style: none; padding: 0; margin: 15px 15px 0 15px; } .chat-action-btns ul > li { display: inline-block; margin-left: 5px; font-size: 18px; } .chat-right .chat-action-btns { float: left; } .chat-bubble .chat-action-btns a { color: #8c8c8c; } .chat-line { border-bottom: 1px solid #eaeaea; height: 12px; margin: 7px 0 20px; position: relative; text-align: center; } .chat-date { background-color: #f7f7f7; color: #727272; font-size: 12px; padding: 0 11px; } .chat-avatar { float: right; } .chat-avatar .avatar { line-height: 30px; height: 30px; width: 30px; } .chat-left .chat-avatar { float: left } .chat-left .chat-body { margin-right: 0; margin-left: 30px; padding-right: 20px; } .chat-left .chat-content { background-color: #fff; border: 1px solid #eaeaea; color: #888; float: left; position: relative; padding: 8px 15px; border-radius: 2px 20px 20px 2px; max-width: 60%; } .avatar { background-color: #aaa; border-radius: 50%; color: #fff; display: inline-block; font-weight: 500; height: 38px; line-height: 38px; margin: 0 10px 0 0; text-align: center; text-decoration: none; text-transform: uppercase; vertical-align: middle; width: 38px; position: relative; white-space: nowrap; } .avatar:hover { color: #fff; } .avatar.avatar-xs { width: 24px; height: 24px } .avatar > img { border-radius: 50%; display: block; overflow: hidden; width: 100%; } .chat.chat-left .chat-bubble:first-child .chat-content { border-top-left-radius: 20px; margin-top: 0; } .chat.chat-left .chat-bubble:last-child .chat-content { border-bottom-left-radius: 20px; } .chat-left .chat-time { color: #a9a9a9 } .attach-list { color: #a3a3a3; padding: 5px 0 0; line-height: 24px; margin: 0; list-style: none; } .attach-list i { margin-right: 3px; font-size: 16px; } .chat-footer { background-color: #fff; border-top: 1px solid #eaeaea; padding: 15px; } .message-bar { display: table; height: 44px; position: relative; width: 100%; } .message-bar .message-inner { display: table-row; height: 100%; padding: 0 8px; width: 100%; } .message-bar .link { color: #777; display: table-cell; font-size: 20px; padding: 0 10px; position: relative; vertical-align: middle; width: 30px; } .message-bar .message-area { display: table-cell; } .message-area .input-group .form-control { background-color: #fff; border: 1px solid #eaeaea; box-shadow: none; color: #555; display: block; font-size: 14px; height: 44px; margin: 0; padding: 6px 12px; resize: none; } .message-area .btn { height: 44px; width: 50px; } .profile-right { display: table-cell; height: 100%; float: none; padding: 0; position: static; vertical-align: top; } .display-table { display: table; table-layout: fixed; border-spacing: 0; width: 100%; height: 100%; } .table-row { display: table-row; height: 100%; } .table-body { position: relative; height: 100%; width: 100%; } .table-content { bottom: 0; left: 0; overflow: auto; position: absolute; right: 0; top: 0; } .chat-profile-img { padding: 30px; position: relative; text-align: center; } .edit-profile-img { height: 120px; margin: 0 auto; position: relative; width: 120px; cursor: pointer; } .edit-profile-img img { border-radius: 50%; height: auto; margin: 0; width: 120px; } .change-img { background-color: rgba(0, 0, 0, 0.3); border-radius: 50%; color: #fff; display: none; height: 100%; left: 0; line-height: 120px; position: absolute; top: 0; width: 100%; } .edit-profile-img:hover .change-img { display: block; } .edit-profile-img img { height: auto; margin: 0; width: 120px; border-radius: 50%; } .user-name { color: #333; } .edit-btn { border-radius: 40px; height: 36px; position: absolute; right: 15px; top: 15px; width: 36px; } .chat-profile-info { padding: 15px; } .user-det-list { list-style: none; padding: 0; } .user-det-list > li { padding: 6px 15px; } .user-det-list .text-muted { color: #888; } .transfer-files .tab-content { padding-top: 0; } .files-list { list-style: none; padding-left: 0; } .files-list > li { border-bottom: 1px solid #eaeaea; border-radius: inherit; margin: 2px 0 0; padding: 10px; } .files-cont { position: relative; } .file-type { height: 48px; position: absolute; width: 48px; } .files-icon { background-color: #f3f7f9; border: 1px solid #e4eaec; border-radius: 4px; display: inline-block; height: 38px; line-height: 38px; text-align: center; width: 38px; } .files-icon i { color: #76838f; font-size: 20px; } .files-info { padding: 0 30px 0 50px; } .file-name a { color: #333; } .files-action { display: none; height: 30px; list-style: none; padding-left: 0; position: absolute; right: 0; text-align: right; top: 10px; width: 30px; } .files-list > li:hover .files-action { display: block; } .file-date { color: #888; font-size: 12px; } .file-author a { color: #f43b48; font-size: 12px; text-decoration: underline; } .files-action .dropdown-menu { left: auto; right: 0; } .files-action > li > a { color: #777; } .chat-img-attach { border-radius: 4px; margin-bottom: 12px; margin-left: 12px; position: relative; float: right; } .chat-img-attach img { border-radius: 4px; display: inline-block; height: auto; max-width: 100%; } .chat-placeholder { background: rgba(69, 81, 97, 0.6); border-radius: 4px; color: #fff; display: flex; flex-direction: column; height: 100%; justify-content: flex-end; left: 0; padding: 13px; position: absolute; top: 0; width: 100%; } .chat-img-name { font-size: 12px; font-weight: 700; line-height: 16px; } .chat-file-desc { font-size: 11px; } .chat-right .chat-content.img-content { background-color: transparent; border: 0; color: #76838f; padding: 0; text-align: right; } .chat-right .img-content .chat-time { color: #a3a3a3; } .chat-left .chat-img-attach { float: left; } .chat-left .chat-img-attach { float: left; margin-left: 0; margin-right: 12px; } .input-group .form-control-lg.form-control { border-radius: 4px 0 0 4px; height: 46px; } .chat-user-list { list-style: none; margin: 0; padding: 0; } .chat-user-list .media { border-bottom: 1px solid #eaeaea; border-radius: inherit; padding: 10px; background-color: #fff; } .chat-user-list .media:hover { background-color: #f7f7f7; } .designation { color: #9e9e9e; font-size: 12px; } .online-date { color: #9e9e9e; font-size: 12px; } .drop-zone { width: 100%; height: 205px; border: 2px dashed #adb7be; text-align: center; padding: 25px 0 0; margin-bottom: 20px; } .drop-zone .drop-zone-caption { font-weight: 600; } .upload-list { padding: 0; list-style: none; margin: 0; } .upload-list .file-list { background-color: #fff; border-top: 1px solid #e3e3e3; padding: 10px 0; } .upload-list .file-list:first-child { border-top: none } .upload-list .upload-wrap { position: relative; padding: 0 20px 0 0; margin: 0 0 5px } .upload-list .file-name, .upload-list .file-size { display: inline-block; vertical-align: top; white-space: nowrap; } .upload-list .file-name { padding-right: 15px; overflow: hidden; max-width: 100%; text-overflow: ellipsis } .upload-list .file-size { color: #888; } .upload-list .file-close { border: none; background: none; color: #ccc; position: absolute; right: 0; top: 2px; } .upload-list .file-close:hover { color: #f62d51 } .upload-list .upload-process { font-size: 10px; color: #888; } .upload-list .progress { margin-bottom: 5px; } .upload-list .file-name i { color: #888; margin: 0 5px 0 0; vertical-align: middle; } .upload-drop-zone { background-color: #fff; border: 2px dashed #e3e3e3; color: #ccc; height: 200px; line-height: 200px; margin-bottom: 20px; text-align: center; } .upload-drop-zone.drop { color: #222; border-color: #222; } .upload-text { font-size: 24px; margin-left: 10px; } .files-share-list { border: 1px solid #eaeaea; border-radius: 4px; margin-bottom: 20px; padding: 15px; } /*----------------- 20. Focus Label -----------------------*/ .form-focus { height: 50px; position: relative; } .form-focus .focus-label { font-size: 16px; font-weight: 400; opacity: 0.4; pointer-events: none; position: absolute; -webkit-transform: translate3d(0, 22px, 0) scale(1); -ms-transform: translate3d(0, 22px, 0) scale(1); -o-transform: translate3d(0, 22px, 0) scale(1); transform: translate3d(0, 22px, 0) scale(1); transform-origin: left top; transition: 240ms; left: 12px; top: -8px; z-index: 1; color: #888; margin-bottom: 0; } .form-focus.focused .focus-label { opacity: 1; font-weight: 300; top: -14px; font-size: 12px; z-index: 1; } .form-focus .form-control:focus ~ .focus-label, .form-focus .form-control:-webkit-autofill ~ .focus-label { opacity: 1; font-weight: 300; top: -14px; font-size: 12px; z-index: 1; } .form-focus .form-control { height: 50px; padding: 21px 12px 6px; } .form-focus .form-control::-webkit-input-placeholder { color: transparent; transition: 240ms; } .form-focus .form-control:focus::-webkit-input-placeholder { transition: none; } .form-focus.focused .form-control::-webkit-input-placeholder { color: #bbb; } .form-focus.select-focus .focus-label { opacity: 1; font-weight: 300; top: -20px; font-size: 12px; z-index: 1; } .form-focus .select2-container .select2-selection--single { border: 1px solid #e3e3e3; height: 50px; } .form-focus .select2-container--default .select2-selection--single .select2-selection__arrow { height: 48px; right: 7px; } .form-focus .select2-container--default .select2-selection--single .select2-selection__arrow b { border-color: #ccc transparent transparent; border-style: solid; border-width: 6px 6px 0; height: 0; left: 50%; margin-left: -10px; margin-top: -2px; position: absolute; top: 50%; width: 0; } .form-focus .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b { border-color: transparent transparent #ccc; border-width: 0 6px 6px; } .form-focus .select2-container .select2-selection--single .select2-selection__rendered { padding-right: 30px; padding-left: 12px; padding-top: 10px; } .form-focus .select2-container--default .select2-selection--single .select2-selection__rendered { color: #676767; font-size: 14px; font-weight: normal; line-height: 38px; } .form-focus .select2-container--default .select2-results__option--highlighted[aria-selected] { background-color: #fc6075; } /*----------------- 21. Leave -----------------------*/ .filter-row .btn { min-height: 50px; padding: 12px; text-transform: uppercase; } .action-label .label { display: inline-block; min-width: 85px; padding: 0.5em 0.6em; } .action-label i { margin-right: 3px; } .action-label .dropdown-menu .dropdown-item { padding: 5px 10px; } /*----------------- 22. Employee -----------------------*/ .action-icon { color: #777; font-size: 18px; display: inline-block; } .table .dropdown-menu { font-size: 13px; min-width: 120px; padding: 0; } .table .dropdown-menu .dropdown-item { padding: 5px 10px; } .dropdown-action .dropdown-toggle::after { display: none; } .profile-widget { background-color: #fff; border: 1px solid #ededed; border-radius: 4px; margin-bottom: 30px; padding: 20px; text-align: center; position: relative; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); overflow: hidden; } .profile-widget .user-name > a { color: #333; } .dropdown.profile-action { position: absolute; right: 5px; text-align: right; top: 10px; } .profile-action .dropdown-toggle::after { display: none; } .profile-img { cursor: pointer; height: 80px; margin: 0 auto; position: relative; width: 80px; } .profile-img .avatar { font-size: 24px; height: 80px; line-height: 80px; margin: 0; width: 80px; } .mobile-no > a { color: #777; display: inline-block; } .staff-mail > a { color: #777; display: inline-block; margin-top: 5px; } .staff-action-btns { margin-top: 10px; } .staff-id { font-size: 14px; font-weight: 500; margin-top: 5px; } .view-icons { float: right; margin-right: 10px; } .view-icons .btn { background-color: #fff; border: 1px solid #e3e3e3; color: #888; font-size: 18px; margin-right: 5px; min-width: 40px; padding: 4px; } .view-icons .btn.active { color: #333; } /*----------------- 23. Events -----------------------*/ .calendar { float: left; margin-bottom: 0; } .fc-view { margin-top: 30px; } .none-border .modal-footer { border-top: none; } .fc-toolbar h2 { font-size: 18px; font-weight: 600; font-family: 'CircularStd', sans-serif; line-height: 30px; text-transform: uppercase; } .fc-day-grid-event .fc-time { font-family: 'CircularStd', sans-serif; } .fc-day { background: #fff; } .fc-toolbar .fc-state-active, .fc-toolbar .ui-state-active, .fc-toolbar button:focus, .fc-toolbar button:hover, .fc-toolbar .ui-state-hover { z-index: 0; } .fc th.fc-widget-header { background: #eeeeee; font-size: 14px; line-height: 20px; padding: 10px 0; text-transform: uppercase; } .fc-unthemed th, .fc-unthemed td, .fc-unthemed thead, .fc-unthemed tbody, .fc-unthemed .fc-divider, .fc-unthemed .fc-row, .fc-unthemed .fc-popover { border-color: #f3f3f3; } .fc-button { background: #f1f1f1; border: none; color: #797979; text-transform: capitalize; box-shadow: none !important; border-radius: 3px !important; margin: 0 3px !important; padding: 6px 12px !important; height: auto !important; } .fc-text-arrow { font-family: inherit; font-size: 16px; } .fc-state-hover { background: #f3f3f3; } .fc-state-highlight { background: #f0f0f0; } .fc-state-down, .fc-state-active, .fc-state-disabled { background-color: #f43b48 !important; color: #fff !important; text-shadow: none !important; } .fc-cell-overlay { background: #f0f0f0; } .fc-unthemed .fc-today { background: #fff; } .fc-event { border-radius: 2px; border: none; cursor: move; font-size: 13px; margin: 1px 7px; padding: 5px 5px; text-align: center; } .external-event { cursor: move; margin: 10px 0; padding: 6px 10px; } .external-event.bg-primary { background-color: rgba(127, 193, 252, 0.3) !important; color: #7fc1fc; } .external-event.bg-success { background-color: rgba(75, 211, 150, 0.3) !important; color: #4bd396; } .external-event.bg-info { background-color: rgba(58, 201, 214, 0.3) !important; color: #3ac9d6; } .external-event.bg-warning { background-color: rgba(249, 200, 81, 0.3) !important; color: #f9c851; } .external-event.bg-danger { background-color: rgba(245, 112, 122, 0.3) !important; color: #f5707a; } .external-event.bg-pink { background-color: rgba(240, 98, 146, 0.3) !important; color: #f06292; } .external-event.bg-purple { background-color: rgba(107, 95, 181, 0.3) !important; color: #6b5fb5; } .external-event.bg-inverse { background-color: rgba(59, 62, 71, 0.3) !important; color: #3b3e47; } .external-event.bg-orange { background-color: rgba(255, 152, 0, 0.3) !important; color: #ff9800; } .external-event.bg-brown { background-color: rgba(141, 110, 99, 0.3) !important; color: #8d6e63; } .external-event.bg-teal { background-color: rgba(38, 166, 154, 0.3) !important; color: #26a69a; } .fc-basic-view td.fc-week-number span { padding-right: 8px; font-weight: 700; font-family: 'CircularStd', sans-serif; } .fc-basic-view td.fc-day-number { padding-right: 8px; font-weight: 700; font-family: 'CircularStd', sans-serif; } .event-form .input-group .form-control { height: 40px; } /*----------------- 24. Profile -----------------------*/ .profile-details { text-align: center; } .personal-info li .title { color: #4f4f4f; float: left; font-weight: 500; margin-right: 30px; width: 25%; } .personal-info li .text { color: #8e8e8e; display: block; overflow: hidden; } .personal-info li { margin-bottom: 10px; } .personal-info { list-style: none; margin-bottom: 0; padding: 0; } .profile-view { position: relative; } .profile-view .profile-img-wrap { height: 120px; width: 120px; } .profile-view .profile-img { width: 120px; height: 120px; } .profile-view .profile-img .avatar { font-size: 24px; height: 120px; line-height: 120px; margin: 0; width: 120px; } .profile-view .profile-basic { margin-left: 140px; padding-right: 50px; } .profile-view .pro-edit { position: absolute; right: 0; top: 0; } .edit-icon { background-color: #eee; border: 1px solid #e3e3e3; border-radius: 24px; color: #bbb; float: right; font-size: 12px; line-height: 24px; min-height: 26px; text-align: center; width: 26px; } .edit-icon:hover { background-color: #f43b48; border-color: #f43b48; color: #fff; } .delete-icon { color: #e30b0b; float: right; font-size: 18px; } .delete-icon:hover { color: #e30b0b; } .staff-msg { margin-top: 30px; } .experience-box { position: relative; } .experience-list { list-style: none; margin: 0; padding: 0; position: relative; } .experience-list::before { background: #ddd; bottom: 0; content: ""; left: 8px; position: absolute; top: 8px; width: 2px; } .experience-list > li { position: relative; } .experience-list > li:last-child .experience-content { margin-bottom: 0; } .experience-user .avatar { height: 32px; line-height: 32px; margin: 0; width: 32px; } .experience-list > li .experience-user { background: #fff; height: 10px; left: 4px; margin: 0; padding: 0; position: absolute; top: 4px; width: 10px; } .experience-list > li .experience-content { background-color: #fff; margin: 0 0 20px 40px; padding: 0; position: relative; } .experience-list > li .experience-content .timeline-content { color: #9e9e9e; } .experience-list > li .experience-content .timeline-content a.name { color: #616161; font-weight: bold; } .experience-list > li .time { color: #bdbdbd; display: block; font-size: 12px; line-height: 1.35; } .before-circle { background-color: #ddd; border-radius: 50%; height: 10px; width: 10px; } .skills > span { border: 1px solid #ccc; border-radius: 500px; display: inline-block; margin-bottom: 10px; padding: 6px 12px; text-align: center; } .profile-info-left { border-right: 2px dashed #ccc; } .bootstrap-tagsinput { background-color: #fff; border: 1px solid #e3e3e3; border-radius: 0; box-shadow: unset; display: block; min-height: 44px; padding: 6px 6px 0; } .bootstrap-tagsinput .badge { font-size: 14px; font-weight: normal; margin-bottom: 6px; padding: 10px 15px; } .add-more a { color: #f43b48; } .add-more a:hover { color: #f10e1d; } .avatar-box { float: left; } .pro-overview .personal-info li .title { width: 50%; } .profile-box { min-height: 250px; } /*----------------- 25. Notifications -----------------------*/ .notifications { padding: 0; } .notifications .noti-content { height: 290px; width: 350px; overflow-y: auto; position: relative; } .notifications .notification-heading { margin: 0; font-size: 14px; font-weight: normal; line-height: 1.45; color: #616161; } .notifications .notification-time { font-size: 12px; line-height: 1.35; color: #bdbdbd; } .notification-list { list-style: none; padding: 0; margin: 0; } .notifications ul.notification-list > li{ margin-top: 0; border-bottom: 1px solid #f5f5f5; } .notifications ul.notification-list > li:last-child { border-bottom: none; } .notifications ul.notification-list > li a { display: block; padding: 12px; border-radius: 2px; } .notifications ul.notification-list > li a:hover { background-color: #fafafa; } .notifications ul.notification-list > li .list-item { border: 0; padding: 0; position: relative; } .notifications .media { margin-top: 0; border-bottom: 1px solid #f5f5f5; } .notifications .media:last-child { border-bottom: none; } .notifications .media a { display: block; padding: 12px; border-radius: 2px; } .notifications .media a:hover { background-color: #fafafa; } .notifications .media-list .media-left { padding-right: 8px; } .topnav-dropdown-header { border-bottom: 1px solid #eee; text-align: center; } .topnav-dropdown-header, .topnav-dropdown-footer { font-size: 12px; height: 32px; line-height: 32px; padding-left: 12px; padding-right: 12px; } .topnav-dropdown-header .notification-title { color: #333; display: block; float: left; font-size: 14px; } .topnav-dropdown-header .clear-noti { color: #f83f37; float: right; font-size: 11px; text-transform: uppercase; } .topnav-dropdown-footer a { display: block; text-align: center; color: #333; } .user-menu.nav > li > a .badge { color: #fff; font-weight: 700; position: absolute; right: 3px; top: 6px; } .user-menu.nav > li > a .badge { background-color: #7460ee; } .user-menu.nav > li > a > i { font-size: 20px; line-height: 60px; } .noti-details { color: #989c9e; margin-bottom: 0; } .noti-title { color: #333; } .noti-time { margin: 0; } /*----------------- 26. Roles & Permissions -----------------------*/ .roles-menu { margin-top: 20px; } .roles-menu > ul { background-color: #fff; border: 1px solid #e3e3e3; list-style: none; margin: 0; padding: 0; } .roles-menu > ul > li { display: block; position: relative; } .roles-menu > ul > li a { border-left: 3px solid transparent; color: #333; display: block; padding: 10px 15px; position: relative; } .roles-menu > ul > li.active a { border-color: #f43b48; color: #f43b48; } .roles-menu > ul > li a:hover { background-color: #eee; border-color: #f43b48; } .role-action { float: right; display: none; } .roles-menu > ul > li a:hover .role-action { display: block; } .slide-nav .sidebar { margin-left: 0; } /*----------------- 27. Chat Right Sidebar -----------------------*/ .fixed-header .custom-menu { margin: 1px 0 0; } .topnav-dropdown-footer { border-top: 1px solid #eee; } .list-box { list-style: none; padding-left: 0; } .list-item { border-bottom: 1px solid #eaeaea; padding: 10px; position: relative; } .list-left { height: 48px; position: absolute; width: 48px; } .files-icon { background-color: #f5f5f5; border: 1px solid #ddd; border-radius: 4px; display: inline-block; height: 38px; line-height: 38px; text-align: center; width: 38px; } .files-icon i { color: #777; font-size: 20px; } .list-body { padding: 0 0 0 50px; } .message-author { color: #333; float: left; font-weight: 500; width: 175px; display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .message-time { color: #888; float: right; font-size: 11px; } .message-content { color: #333; font-size: 13px; display: block; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .files-action .dropdown-menu { left: auto; right: 0; } /*----------------- 28. Projects -----------------------*/ .team-members { display: inline-flex; flex-wrap: wrap; list-style: none; margin-bottom: 0; padding: 0; } .team-members > li:first-child a { margin-left: 0; } .team-members > li > a { border: 2px solid #fff; border-radius: 100%; display: block; height: 30px; overflow: hidden; width: 30px; } .team-members .all-users { line-height: 28px; opacity: 0.8; } .all-users { background-color: #ff5e3a; color: #fff; font-size: 10px; font-weight: 800; line-height: 34px; text-align: center; } .all-users:hover, .all-users:active { color: #fff; } .team-members img { width: 100%; } .project-title { margin: 0 0 5px; } .project-title > h5 { font-size: 16px; margin-bottom: 0; margin-top: 0; } .project-title > a { color: #333; } .avatar-dropdown .dropdown-menu { min-width: unset; width: 100px; padding: 0; } .avatar-dropdown .avatar-group { min-height: 88px; padding: 2px; white-space: normal; } .avatar-dropdown .avatar-group .avatar { margin: 2px; } .avatar-dropdown .avatar-pagination { border-top: 1px solid rgba(0, 0, 0, 0.1); } .avatar-dropdown .page-link { padding: .3rem 0.55rem; border-radius: 0 !important; border: 0; } .avatar-dropdown .dropdown-toggle::after { display: none; } /*----------------- 29. Invoice -----------------------*/ .invoice-details, .invoice-payment-details > li span { float: right; text-align: right; } .table .team-members { flex-wrap: nowrap; } .table .team-members > li > a { width: 32px; height: 32px; } .table .team-members .all-users { line-height: 30px; } .attach-files > ul { list-style: none; margin: 0; padding: 0; } .attach-files li { display: inline-block; margin-right: 10px; position: relative; } .attach-files li img { width: 50px; } .file-remove { color: #f00; position: absolute; right: -6px; top: -7px; } .attach-files li:last-child { margin-right: 0; } .inv-logo { height: auto; margin-bottom: 20px; max-height: 100px; width: auto; } /*----------------- 30. Task -----------------------*/ .task-chat-contents { background-color: #fff; } .task-chat-contents .chat-left .chat-content { max-width: 100%; } .task-chat-view { border-left: 1px solid #eaeaea; } .task-left-sidebar { width: 58.3333%; } .task-right-sidebar { width: 41.6667%; } .task-chat-view .chat-left .chat-content { border: 0; padding: 0; } .task-chat-view .chat-left .chat-body { margin-left: 50px; } .task-chat-view .chat-date { background-color: #fff; } .task-chat-view .chats { padding: 15px 15px 30px; } .task-chat-view .avatar { width: 30px; height: 30px; line-height: 30px; } .followers-add { background-color: #fff; border: 1px solid #ccc; border-radius: 50%; color: #ccc; display: inline-block; font-size: 20px; height: 30px; line-height: 30px; text-align: center; width: 30px; } .followers-add:hover { border: 1px solid #8c8c8c; color: #8c8c8c; } .completed-task-msg { margin-bottom: 30px; margin-left: 50px; } .task-chat-contents .chat.chat-left { margin-bottom: 20px; } .file-attached { color: #333; font-size: 13px; } .file-attached i { font-size: 16px; } .task-attach-img > img { border: 1px solid #eaeaea; max-width: 100%; } .attach-img-download { margin-bottom: 5px; } .task-chat-view .chat-left .chat-time { color: #a3a3a3; display: inline-block; font-size: 11px; } .task-chat-user { color: #333; font-size: 13px; } .task-chat-view .chat-content > p { font-size: 13px; margin-bottom: 0; } .task-time { color: #a3a3a3; display: inline-block; font-size: 11px; } .task-success { color: #55ce63; font-size: 13px; } .task-success a { color: #55ce63; } .task-attach-img { margin-bottom: 20px; } .task-assign { float: left; } .assign-title { float: left; margin-right: 10px; margin-top: 5px; } .task-assign > a { float: left; } .followers-add > i { line-height: 28px; } .task-followers { display: flex; margin-top: 15px; } .followers-title { margin: 5px 10px 0 0; } .task-line { border-color: #eaeaea; } .task-information { color: #a3a3a3; font-size: 11px; line-height: 17px; min-width: 1px; margin-left: 50px; } .task-info-line { overflow-wrap: break-word; } .task-user { color: #888; font-weight: 500; } .task-information .task-time { display: inline-block; padding-left: 10px; } .task-btn-right { display: none !important; } .task:hover .task-btn-right { display: table-cell !important; } .task-action-btn.task-check { text-align: left !important; width: 40px; } .add-task-btn { cursor: pointer; padding: 6px 10px; text-transform: uppercase; } .action-circle { background-color: #fff; border: 1px solid #ccc; border-radius: 100%; height: 20px; width: 20px; display: inline-block; text-align: center; cursor: pointer; -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; } .action-circle .material-icons { color: #ccc; font-size: 18px; vertical-align: -3px; } .action-circle.completed { background: #35BA67; border: 1px solid #2fa65c; } .action-circle.completed .material-icons { color: #fff; } .action-circle.large { height: 24px; width: 24px; } .action-circle.large .material-icons { font-size: 16px; vertical-align: -4px; } .task-wrapper { padding: 20px; width: 100%; margin: 0 auto; box-sizing: border-box; } .task-wrapper .mark-all-tasks { text-align: right; padding-bottom: 15px; } .task-wrapper .mark-all-tasks .mark-all-tasks-container { overflow: hidden; position: relative; } .task-wrapper .mark-all-tasks .mark-all-btn { cursor: pointer; display: inline-block; -webkit-transition: all 200ms ease; -moz-transition: all 200ms ease; -ms-transition: all 200ms ease; -o-transition: all 200ms ease; transition: all 200ms ease; } .task-wrapper .mark-all-tasks .mark-all-btn#mark-all-finished { color: #35BA67; } .task-wrapper .mark-all-tasks .mark-all-btn#mark-all-incomplete { color: #666; } .task-wrapper .mark-all-tasks .mark-all-btn#mark-all-incomplete .action-circle { border: 1px solid #666; } .task-wrapper .mark-all-tasks .mark-all-btn#mark-all-incomplete .action-circle .material-icons { color: #666; } .task-wrapper .mark-all-tasks .mark-all-btn.move-up { -webkit-transform: translateY(-30px); -moz-transform: translateY(-30px); -ms-transform: translateY(-30px); -o-transform: translateY(-30px); transform: translateY(-30px); position: absolute; right: 0; } .task-wrapper .mark-all-tasks .mark-all-btn.move-down { -webkit-transform: translateY(30px); -moz-transform: translateY(30px); -ms-transform: translateY(30px); -o-transform: translateY(30px); transform: translateY(30px); position: absolute; right: 0; } .task-wrapper .task-list-header h3, .task-wrapper .task-list-footer h3 { font-size: 24px; font-weight: 400; color: #666; } .task-wrapper .task-list-body { max-height: 500px; overflow: auto; } .task-wrapper #task-list { list-style: none; margin: 0; padding: 0; border-bottom: 1px solid #eaeaea; } .task-wrapper #task-list li { margin: 0; padding: 0; } .task-wrapper #task-list li .task-container { display: table; background: #fff; padding: 8px 15px; width: 100%; border: 1px solid #eaeaea; border-bottom: none; box-sizing: border-box; position: relative; -webkit-transition: background 200ms ease; -moz-transition: background 200ms ease; -ms-transition: background 200ms ease; -o-transition: background 200ms ease; transition: background 200ms ease; } .task-wrapper #task-list li .task-container .task-label { display: table-cell; font-weight: 400; vertical-align: middle; color: #333; word-break: break-all; } .task-wrapper #task-list li .task-container .task-action-btn { display: table-cell; vertical-align: middle; text-align: right; } .task-wrapper #task-list li .task-container .task-action-btn .action-circle:hover { border: 1px solid #8c8c8c; background: #fff; } .task-wrapper #task-list li .task-container .task-action-btn .action-circle:hover .material-icons { color: #8c8c8c; } .task-wrapper #task-list li .task-container:hover { background: #EBEEEF; } .task-wrapper #task-list li.completed .task-container { background: #f9f9f9; } .task-wrapper #task-list li.completed .task-container .complete-btn { background: #35BA67; border: 1px solid #2fa65c; } .task-wrapper #task-list li.completed .task-container .complete-btn .material-icons { color: #fff; } .task-wrapper #task-list li.completed .task-container .complete-btn:hover { background: #35BA67; border: 1px solid #2fa65c; } .task-wrapper #task-list li.completed .task-container .complete-btn:hover .material-icons { color: #fff; } .task-wrapper #task-list li.completed .task-container .task-label { color: #ccc; } .task-wrapper #task-list li.new .task-container { -webkit-animation: taskHighlighter 2000ms linear 1; animation: taskHighlighter 2000ms linear 1; } .task-wrapper .task-list-footer { position: relative; } .task-wrapper .task-list-footer .add-task-btn-wrapper { text-align: center; } .task-wrapper .task-list-footer .add-task-btn { cursor: pointer; border: 2px solid #9B1BCC; display: inline-block; height: 35px; width: 35px; border-radius: 10px; -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; } .task-wrapper .task-list-footer .add-task-btn.hide { opacity: 1; visibility: visible; display: block; } .task-wrapper .task-list-footer .add-task-btn:hover { background: #9B1BCC; } .task-wrapper .task-list-footer .add-task-btn:hover .material-icons { color: #EBEEEF; } .task-wrapper .task-list-footer .add-task-btn .material-icons { color: #9B1BCC; font-size: 34px; } .task-wrapper .task-list-footer .new-task-wrapper { -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; max-height: 0; overflow: hidden; } .task-wrapper .task-list-footer .new-task-wrapper::after { content: ""; display: block; clear: both; } .task-wrapper .task-list-footer .new-task-wrapper textarea { box-sizing: border-box; width: 100%; border: 1px solid #eaeaea; border-top: 0; height: 45px; resize: none; padding: 10px 15px; margin-bottom: 20px; -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; } .task-wrapper .task-list-footer .new-task-wrapper textarea:focus { border: 1px solid #bfbfbf; outline: none; } .task-wrapper .task-list-footer .new-task-wrapper textarea.error { border: 1px solid #D93737; outline: none; } .task-wrapper .task-list-footer .new-task-wrapper .error-message { color: #D93737; font-style: italic; } .task-wrapper .task-list-footer .new-task-wrapper .btn { padding: 6px 12px; float: right; cursor: pointer; } .task-wrapper .task-list-footer .new-task-wrapper .add-new-task-btn { background: #fff; border: 1px solid #ccc; } .task-wrapper .task-list-footer .new-task-wrapper.visible { max-height: 300px; overflow: auto; } .notification-popup { z-index: 1051; position: fixed; top: 20px; right: 10px; width: 300px; display: inline-block; background: #1F8FEF; border: 1px solid #1082e4; color: #fff; padding: 20px; opacity: .8; border-radius: 2px; box-sizing: border-box; -webkit-transition: all 300ms ease; -moz-transition: all 300ms ease; -ms-transition: all 300ms ease; -o-transition: all 300ms ease; transition: all 300ms ease; } .notification-popup.success { background: #35BA67; border: 1px solid #2fa65c; } .notification-popup p { margin-top: 0; margin-bottom: 0px; } .notification-popup .task { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 100%; display: inline-block; } .notification-popup .notification-text { font-size: 14px; display: inline-block; overflow: hidden; } .notification-popup.hide { opacity: 0; visibility: hidden; } .sidebar-overlay { display: none; position: fixed; z-index: 90; height: 100%; left: 0; top: 60px; width: 100%; z-index: 1040; background-color: rgba(0, 0, 0, 0.6); } .sidebar-overlay.opened { display: block; } .sidebar-menu.opened { opacity: 1; -webkit-transform: translateX(0px); -moz-transform: translateX(0px); -ms-transform: translateX(0px); -o-transform: translateX(0px); transform: translateX(0px); margin-left: 0; } html.menu-opened { overflow: hidden; } html.menu-opened body { overflow: hidden; } .task-chat-view.opened { margin-right: 0; } .chat-profile-view.opened { margin-right: 0; } .task-header { display: flex; } .task-header .assignee-info { align-items: center; border: 1px solid transparent; border-radius: 10px; display: inline-flex; flex: 0 1 180px; padding: 5px 10px 5px 5px; position: relative; } .task-header .assignee-info > a { align-items: center; color: #333; display: flex; } .task-header .task-head-title { color: #8e8e8e; font-size: 12px; } .task-assignee { font-size: 13px; max-width: 120px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .assignee-info:hover { border-color: #e3e3e3; } .remove-icon { align-items: center; background-color: #e3e3e3; border-radius: 50%; color: #333; cursor: pointer; display: flex; height: 20px; justify-content: center; margin-right: 10px; position: absolute; right: 0; top: 50%; transform: translateY(-50%); visibility: hidden; width: 20px; } .remove-icon:hover { background-color: #d3d3d3; } .task-header .assignee-info:hover .remove-icon { visibility: visible; } .remove-icon i { color: #8e8e8e; font-size: 12px; } .due-icon span { align-items: center; background-color: #fff; border: 1px solid #ccc; border-radius: 50%; color: #ccc; display: flex; height: 30px; justify-content: center; line-height: 30px; margin-right: 10px; width: 30px; } .due-icon span i { font-size: 18px; } .task-due-date { align-items: center; border: 1px solid transparent; border-radius: 10px; display: flex; flex: 0 0 160px; margin-left: 10px; padding: 5px 10px 5px 5px; position: relative; } .task-due-date:hover { border-color: #e3e3e3; } .task-header .task-due-date > a { align-items: center; color: #333; display: flex; } .due-info .due-date { color: #f62d51; font-size: 13px; } .task-header .task-due-date:hover .remove-icon { visibility: visible; } .task-desc { align-items: flex-start; display: flex; margin-bottom: 15px; margin-top: 5px; } .task-textarea { display: flex; width: 100%; } .task-desc-icon { color: #ccc; margin-right: 10px; margin-top: 5px; } .task-textarea .form-control { border: 1px solid transparent; border-radius: 5px; font-size: 13px; resize: none; } .task-textarea:hover .form-control { border-color: #e3e3e3; } .task-complete-btn { align-items: center; background-color: #fff; border: 1px solid #ccc; border-radius: 5px; color: #333; display: flex; font-size: 14px; padding: 6px 10px; } .task-complete-btn:hover { background-color: #f7f7f7; color: #333; } .task-complete-btn i { font-size: 20px; margin-right: 3px; } .task-completed { background-color: #35ba67; border-color: #2fa65c; color: #fff; } .task-completed:hover { background-color: #35ba67; border-color: #2fa65c; color: #fff; } /*----------------- 31. Project View -----------------------*/ .project-user .list-box { margin: 0; } .project-files i { color: #76838f; font-size: 50px; } .project-user .list-item { border: 0 none; padding: 10px 0; } .table-border { border: 1px solid #ddd; } .file-size { color: #888; } .project-task .task-wrapper { padding: 0; } .project-task .tab-content { min-height: 200px; } .uploaded-box { background-color: #fff; border: 1px solid #ddd; border-radius: 4px; display: block; margin-bottom: 20px; padding: 4px; } .uploaded-box .uploaded-img-name { color: #333; padding: 9px; text-align:center; } /*----------------- 32. Payslip -----------------------*/ .payslip-title { margin-bottom: 20px; text-align: center; text-decoration: underline; text-transform: uppercase; } /*----------------- 33. Attendance -----------------------*/ .first-off { white-space: pre-wrap; } .stats-info { background-color: #fff; border: 1px solid #e5e5e5; border-radius: 4px; margin-bottom: 20px; padding: 15px; text-align: center; } .stats-info h6 { color: #1f1f1f; font-size: 16px; font-weight: normal; line-height: 18px; margin-bottom: 5px; } .stats-info h4 { font-size: 24px; margin-bottom: 0; } .stats-info h4 span { color: #727272; font-size: 12px; } .punch-det { background-color: #f9f9f9; border: 1px solid #e3e3e3; border-radius: 4px; margin-bottom: 20px; padding: 10px 15px; } .punch-det h6 { line-height: 20px; margin-bottom: 0; } .punch-det p { color: #727272; font-size: 14px; margin-bottom: 0; } .punch-info { margin-bottom: 20px; } .punch-hours { align-items: center; background-color: #f9f9f9; border: 5px solid #e3e3e3; border-radius: 50%; display: flex; font-size: 18px; height: 120px; justify-content: center; margin: 0 auto; width: 120px; } .punch-btn-section { margin-bottom: 20px; text-align: center; } .punch-btn { border-radius: 50px; font-size: 18px; font-weight: 600; max-width: 100%; padding: 8px 40px; } .punch-status .stats-box { margin-bottom: 0; } .stats-list { height: 331px; overflow-y: auto; } .att-statistics .stats-info { margin-bottom: 5px; } .att-statistics .progress { height: 4px; } .statistics .row { margin-left: -5px; margin-right: -5px; } .statistics .row > div { padding-left: 5px; padding-right: 5px; } .stats-box { background-color: #f9f9f9; border: 1px solid #e3e3e3; margin-bottom: 15px; padding: 5px; } .stats-box p { margin: 0; font-size: 12px; } .stats-box > h6 { margin-bottom: 0; } .stats-info:last-child .progress { margin-bottom: 0; } .stats-info p { display: flex; font-size: 12px; justify-content: space-between; margin-bottom: 5px; } .recent-activity .res-activity-list { height: 328px; list-style-type: none; margin-bottom: 0; overflow-y: auto; padding-left: 30px; position: relative; } .recent-activity .res-activity-list li { margin-bottom: 15px; position: relative; } .recent-activity .res-activity-list li:last-child { margin-bottom: 0; } .recent-activity .res-activity-list li:before { width: 10px; height: 10px; left: -30px; top: 0px; border: 2px solid #f43b48; margin-right: 15px; z-index: 2; background: #fff; } .recent-activity .res-activity-list li:before { content: ""; position: absolute; border-radius: 100%; } .recent-activity .res-activity-list:after { content: ""; border: 1px solid #e5e5e5; position: absolute; top: 0; bottom: 0; left: 4px; } .recent-activity .res-activity-time { color: #bbb; font-size: 12px; } .recent-activity h6 { line-height: 14px; margin-bottom: 0; } .recent-activity p { font-size: 13px; margin-bottom: 0; } .half-day { width: 15px; } /*----------------- 34. Ticket -----------------------*/ .ticket-header { padding: 6px 0; } .ticket-priority { font-size: 14px; } .ticket-chat-view { width:33.3333%; } .dataTables_wrapper.container-fluid { padding-left: 0; padding-right: 0; } /*----------------- 35. Client Profile -----------------------*/ .tab-box { border-bottom: 0; margin-bottom: 10px; padding: 0; } .team-members a.followers-add { background-color: #fff; border: 1px solid #ccc; border-radius: 50%; color: #ccc; display: inline-block; font-size: 20px; height: 30px; line-height: 30px; text-align: center; width: 30px; } /*----------------- 36. Inbox -----------------------*/ .table-inbox input[type="radio"], .table-inbox input[type="checkbox"] { cursor: pointer; } .mail-list { list-style: none; padding: 0; } .mail-list > li > a { color: #333; display: block; padding: 10px; } .mail-list > li.active > a { color: #f43b48; font-weight: bold; } .unread .name, .unread .subject, .unread .mail-date { color: #000; font-weight: 600; } .table-inbox .fa-star { color: #ffd200; } .table-inbox .starred.fa-star { color: #ffd200; } .table.table-inbox > tbody > tr > td, .table.table-inbox > tbody > tr > th, .table.table-inbox > tfoot > tr > td, .table.table-inbox > tfoot > tr > th, .table.table-inbox > thead > tr > td, .table.table-inbox > thead > tr > th { border-bottom: 1px solid #f2f2f2; border-top: 0; } .table-inbox { font-size: 14px; margin-bottom: 0; } .note-editor.note-frame { border: 1px solid #ccc; box-shadow: inherit; } .note-editor.note-frame .note-statusbar { background-color: #fff; } .note-editor.note-frame.fullscreen { top: 60px; } .mail-title { font-weight: bold; text-transform: uppercase; } .form-control.search-message { border-radius: 4px; height: 38px; margin-left: 5px; width: 180px; } .table-inbox tr { cursor: pointer; } table.table-inbox tbody tr.checked { background-color: #ffffcc; } .mail-label { font-size: 16px !important; margin-right: 5px; } /*----------------- 37. Mail View -----------------------*/ .attachments { list-style: none; margin: 0; padding: 0; } .attachments li { border: 1px solid #eee; float: left; margin-bottom: 10px; margin-right: 10px; width: 200px; } .attach-file { color: #777; font-size: 70px; padding: 10px; text-align: center; min-height: 153px; } .attach-file > i { line-height: 133px; } .attach-info { background-color: #f4f4f4; padding: 10px; } .attach-filename { color: #777; font-weight: bold; } .attach-filesize { color: #999; font-size: 12px; } .attach-file img { height: auto; max-width: 100%; } .mailview-header { border-bottom: 1px solid #ddd; margin-bottom: 20px; padding-bottom: 15px; } .mailview-footer { border-top: 1px solid #ddd; margin-top: 20px; padding-top: 15px; } .mailview-footer .btn-white { min-width: 102px; } .sender-img { float: left; margin-right: 10px; width: 40px; } .sender-name { display: block; } .receiver-name { color: #777; } .right-action { text-align: right; } .mail-view-title { font-weight: 500; font-size: 24px; margin: 0; } .mail-view-action { float: right; } .mail-sent-time { float: right; } /*----------------- 38. Voice call -----------------------*/ .voice-call-avatar { flex-direction: column; display: flex; align-items: center; justify-content: center; flex: 2; } .voice-call-avatar .call-avatar { margin: 15px; width: 150px; height: 150px; border-radius: 100%; border: 1px solid rgba(0, 0, 0, 0.1); padding: 3px; background-color: #fff; } .call-duration { display: inline-block; font-size: 30px; margin-top: 4px; position: absolute; left: 0; } .voice-call-avatar .call-timing-count { padding: 5px; } .voice-call-avatar .username { font-size: 18px; text-transform: uppercase; } .call-icons { text-align: center; position: relative; } .call-icons .call-items { border-radius: 5px; padding: 0; margin: 0; list-style: none; display: inline-block; } .call-icons .call-items .call-item { display: inline-block; text-align: center; margin-right: 5px; } .call-icons .call-items .call-item:last-child { margin-right: 0; } .call-icons .call-items .call-item a { color: #777; border: 1px solid #ddd; width: 50px; height: 50px; line-height: 50px; border-radius: 50px; display: inline-block; font-size: 20px; } .call-icons .call-items .call-item a i { width: 18px; height: 18px; } .user-video { bottom: 0; left: 0; overflow: auto; position: absolute; right: 0; top: 0; z-index: 10; } .user-video img { width: auto; max-width: 100%; height: auto; max-height: 100%; display: block; margin: 0 auto; } .user-video video { width: auto; max-width: 100%; height: auto; max-height: 100%; display: block; margin: 0 auto; } .my-video { position: absolute; z-index: 99; bottom: 20px; right: 20px; } .my-video ul { margin: 0; padding: 0; list-style: none; } .my-video ul li { float: left; width: 120px; margin-right: 10px; } .my-video ul li img { border: 3px solid #fff; border-radius: 6px; } .end-call { position: absolute; top: 7px; right: 0; } .end-call a { background-color: #f06060; border-radius: 50px; color: #fff; display: inline-block; line-height: 10px; padding: 8px 25px; text-transform: uppercase; } .call-users { position: absolute; z-index: 99; bottom: 20px; right: 20px; } .call-users ul { margin: 0; padding: 0; list-style: none; } .call-users ul li { float: left; width: 80px; margin-left: 10px; } .call-users ul li img { border-radius: 6px; padding: 2px; background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.1); } .call-mute { width: 80px; height: 80px; background-color: rgba(0, 0, 0, 0.5); position: absolute; display: inline-block; text-align: center; line-height: 80px; border-radius: 6px; font-size: 30px; color: #fff; display: none; top: 0; border: 3px solid transparent; } .call-users ul li a:hover .call-mute { display: block; } .call-details { margin: 10px 0 0px; display: flex; } .call-info { margin-left: 10px; width: 100%; } .call-user-details, .call-timing { display: block; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } .call-description { white-space: nowrap; vertical-align: bottom; } .call-timing { color: #727272; display: flex; font-size: 14px; margin-top: 1px; overflow: hidden; white-space: pre; } /*----------------- 39. Video Call -----------------------*/ .content-full { height: 100%; position: relative; width: 100%; } .video-window .fixed-header { padding: 0; border: 0; } .video-window .fixed-header .nav > li > a { padding: 18px 15px; } /*----------------- 40. Outgoing Call -----------------------*/ .call-box { display: block; background: #f43b48; background: -moz-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -webkit-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -ms-linear-gradient(left, #f43b48 0%, #453a94 100%); background: linear-gradient(to right, #f43b48 0%, #453a94 100%); position: sticky; top: 0; z-index: 99; overflow-y: auto; overflow-x: hidden; } .call-box .call-wrapper { display: flex; align-items: center; justify-content: center; height: calc(100vh - 60px); text-align: center; } .call-box .call-wrapper .call-avatar { margin-bottom: 50px; cursor: pointer; animation: ripple 2s infinite; } .call-box .call-wrapper .call-user { margin-bottom: 50px; } .call-box .call-wrapper .call-user h4 { color: #fff; } .call-box .call-wrapper .call-user span { display: block; color: #fff; font-weight: 500; text-align: center; } .call-box .call-wrapper .call-items { display: flex; align-items: center; justify-content: center; } .call-box .call-wrapper .call-items .call-item { background-color: rgba(255, 255, 255, 0.2); border: 1px solid transparent; border-radius: 100%; color: #fff; line-height: 0; margin: 0 5px; padding: 15px; } .call-box .call-wrapper .call-items .call-item:hover { opacity: 0.9; } .call-box .call-wrapper .call-items .call-item:first-child { margin-top: -30px; } .call-box .call-wrapper .call-items .call-item:last-child { margin-top: -30px; } .call-box .call-wrapper .call-items .call-item.call-end { padding: 20px; margin: 30px 20px 0; background: #f06060; border: 1px solid #f06060; color: #fff; line-height: 0; border-radius: 100%; } .call-box .call-wrapper .call-items .call-item.call-start { padding: 20px; margin: 30px 20px 0; background: #55ce63; border: 1px solid #55ce63; color: #fff; line-height: 0; border-radius: 100%; } .call-box.incoming-box .call-wrapper .call-items .call-item.call-start { margin: 0 10px; } .call-box.incoming-box .call-wrapper .call-items .call-item.call-end { margin: 0 10px; } .call-box .call-avatar { border-radius: 100%; height: 150px; max-width: 150px; min-width: 150px; position: relative; width: 100%; } .call-box .btn { background: rgba(0, 0, 0, 0); transition: all 0.3s ease 0s; } @-webkit-keyframes ripple { 0% { -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1); } 100% { -webkit-box-shadow: 0 0 0 50px rgba(0, 0, 0, 0); } } @keyframes ripple { 0% { -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1); box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1); } 100% { -moz-box-shadow: 0 0 0 50px rgba(0, 0, 0, 0); box-shadow: 0 0 0 50px rgba(0, 0, 0, 0); } } /*----------------- 41. Incoming Call -----------------------*/ .incoming-btns { margin-top: 20px; } /*----------------- 42. Contacts -----------------------*/ .contacts-header { background-color: #fff; border-bottom: 1px solid #eaeaea; padding: 10px 15px; } .contacts-header .navbar { border: 0 none; margin: 0; min-height: auto; } .contacts-header .user-info a { color: #76838f; text-transform: uppercase; } .contact-left { display: table-cell; height: 100%; float: none; padding: 0; position: static; vertical-align: top; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; width: 100%; } .contacts-list { position: relative; padding: 0 70px 0 20px; } .contact-list { list-style: none; padding-left: 0; margin: 0; } .contact-list > li { background-color: #fff; border-bottom: 1px solid #eaeaea; border-radius: inherit; padding: 10px; } .contact-cont { position: relative; } .contact-type { height: 48px; position: absolute; width: 48px; } .contact-icon { background-color: #f3f7f9; border: 1px solid #e4eaec; border-radius: 4px; display: inline-block; height: 38px; line-height: 38px; text-align: center; width: 38px; } .contact-icon i { color: #76838f; font-size: 20px; } .contact-info { padding: 0 30px 0 50px; } .contact-action { height: 30px; list-style: none; padding-left: 0; position: absolute; right: 0; text-align: right; top: 10px; width: 30px; } .contact-date { color: #888; font-size: 12px; } .contact-author a { color: #1d6ad2; font-size: 12px; text-decoration: underline; } .contact-action .dropdown-menu { left: auto; right: 0; } .contact-alphapets { background-color: #fff; border-left: 1px solid #ddd; bottom: 0; height: 100%; overflow: hidden; padding-bottom: 114px; position: fixed; right: 0; top: 114px; width: 50px; } .contact-box { display: inline-table; height: 100%; padding: 30px 15px; position: relative; width: 100%; } .alphapets-inner { height: 100%; overflow: auto; } .alphapets-inner a { display: block; text-align: center; padding: 2px; color: #333; } /*----------------- 43. Chat Sidebar -----------------------*/ .chat-sidebar { background-color: #fff; border-left: 1px solid #eaeaea; width: 300px; } .chat-sidebar .chat-contents { background-color: #fff; } .chat-sidebar .chat-left .chat-content { border: 0; padding: 0; border-radius: 0 !important; background-color: transparent; max-width: 100%; } .chat-sidebar .chat-left .chat-body { margin-left: 50px; padding-right: 0; } .chat-sidebar .chat-date { background-color: #fff; } .chat-sidebar .chats { padding: 15px 15px 30px; } .chat-sidebar .avatar { width: 30px; height: 30px; line-height: 30px; } .chat-sidebar .chat.chat-left { margin-bottom: 20px; } .chat-sidebar .chat.chat-left:last-child { margin-bottom: 0; } .chat-sidebar .chat-left .chat-time { color: #888; display: inline-block; font-size: 11px; } .chat-sidebar .chat-content > p { font-size: 13px; margin-bottom: 0; } .chat-sidebar.opened { margin-right: 0; } /*----------------- 44. Jobs -----------------------*/ .apply-btn { background: #f43b48; background: -moz-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -webkit-linear-gradient(left, #f43b48 0%, #453a94 100%); background: -ms-linear-gradient(left, #f43b48 0%, #453a94 100%); background: linear-gradient(to right, #f43b48 0%, #453a94 100%); border-color: transparent; box-shadow: 0 6px 15px rgba(36, 37, 38, 0.08); color: #fff; position: absolute; right: 20px; top: 20px; } .job-list { background-color: #fff; border: 1px solid #ededed; border-radius: 4px; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); display: block; margin-bottom: 35px; position: relative; transition: all 0.3s ease 0s; } .job-list-det { align-items: flex-start; display: flex; align-items: center; padding: 20px; } .job-list .job-list-desc { flex: 1 1 0; } .job-list h4.job-department { color: #777; font-size: 14px; margin-bottom: 0; } .job-list h3.job-list-title { color: #333; font-size: 18px; font-weight: 600; line-height: 18px; } .job-list .job-list-footer { background-color: #f9f9f9; border-radius: 0 0 4px 4px; position: relative; padding: 20px; } .job-list .job-list-footer ul { list-style: none; margin: 0; padding: 0; } .job-list .job-list-footer ul li { color: #777; display: inline-block; margin-right: 14px; } .job-list .job-list-footer ul li i { color: #777; margin-right: 3px; position: relative; } .job-list .job-list-footer ul li:last-child { margin-right: 0; } .page-wrapper.job-wrapper { margin-left: 0; } .job-types { background-color: transparent; border: 1px solid #f43b48; color: #f43b48; border-radius: 4px; display: inline-block; padding: 6px 12px; text-align: center; } /*----------------- 45. Job Details -----------------------*/ .job-info { background-color: #fff; border: 1px solid #efefef; float: left; margin: 0 0 30px; padding: 30px; position: relative; width: 100%; } .job-title { color: #585858; font-size: 22px; font-weight: 600; margin-bottom: 5px; } .job-info .job-dept { color: #737882; display: block; font-size: 16px; font-weight: 500; margin-bottom: 20px; } .job-post-det { display: inline-block; margin-bottom: 5px; width: 100%; color: #737882; list-style: none; margin: 0; padding: 0; } .job-content li { line-height: 28px; } .job-post-det li { float: left; list-style: none; margin-bottom: 10px; margin-right: 20px; } .job-det-info { background-color: #fff; margin: 0 0 15px; padding: 0 0 6px; } .info-list { color: #888; padding-top: 20px; } .info-list span { color: #f43b48; float: left; font-size: 20px; line-height: 14px; } .info-list p { line-height: 1.7; margin: 0 0 0 40px; } .info-list > h5 { color: #585858; font-size: 14px; font-weight: 600; margin-bottom: 5px; margin-left: 40px; text-transform: uppercase; } .app-ends { color: #46cd38; font-size: 13px; } .job-btn { border: 2px solid #f43b48; color: #f43b48; display: block; font-size: 16px; font-weight: 600; margin-bottom: 20px; padding: 15px; text-transform: uppercase; transition: all 0.3s ease 0s; } .job-btn:hover { background-color: #f43b48; color: #fff; } .job-widget { background-color: #fff; border: 1px solid #efefef; float: left; margin: 0 0 30px; padding: 30px; position: relative; width: 100%; } .job-desc-title h2 { font-size: 20px; margin-bottom: 0; } .job-widget h4 { color: #585858; font-size: 16px; font-weight: 600; margin: 0 0 20px; } .job-description > p { color: #727272; line-height: 28px; } .square-list { list-style: none; padding: 0; margin-bottom: 0; } .square-list li { color: #727272; line-height: 24px; list-style: none; margin: 10px 0 0 20px; position: relative; } .square-list li:first-child { margin-top: 0 } .square-list li:before { font-family: fontawesome; margin: 0; position: relative; color: #f43b48; float: left; margin-left: -20px; display: block; content: "\f0c8"; font-size: 8px } .text-blue { color: #009ce7; } /*----------------- 46. Notification Settings -----------------------*/ .notification-list .list-group-item { padding: 15px; } .notification-list .status-toggle { float: right; } /*----------------- 47. Leave Settings -----------------------*/ .leave-item { max-width: 653px; } .leave-row { display: flex; margin-bottom: 15px; } .carry-forward-itemview { margin-bottom: 15px; } .earned-leave-itemview { margin-bottom: 15px; } .leave-row .leave-left { flex: 1 1 auto; } .leave-row .leave-left .input-box { max-width: 410px; } .leave-item .form-group { margin-bottom: 0; } .leave-right { align-items: center; display: flex; flex: 0 0 200px; justify-content: end; margin-top: 31px; min-height: 44px; text-align: right; } .leave-right .btn { min-height: 44px; min-width: 75px; } .leave-right .btn + .btn { margin-left: 10px; } .leave-edit-btn { color: #216ef4; background-color: transparent; border: 0; padding: 0 6px; transition: unset; } .leave-edit-btn[disabled] { cursor: not-allowed; opacity: 0.65; } .leave-inline-form { align-items: center; display: flex; min-height: 44px; } .leave-header { align-items: center; color: #212536; display: flex; justify-content: space-between; margin-bottom: 20px; } .leave-header .title { flex: 1 1 auto; } .leave-header .leave-action { flex: 1 1 auto; text-align: right; } .leave-table .l-name { width: 200px; } .leave-table .l-days { width: 140px; } .leave-box .subtitle { color: #8e8e8e; font-size: 14px; font-weight: normal; margin: 5px auto 0 5px; } .leave-duallist { background-color: #f9f9f9; border: 1px solid #e3e3e3; display: block; padding: 15px; } .card-title.with-switch { display: flex; justify-content: space-between; } .btn.leave-delete-btn { font-weight: 500; margin-left: 10px; min-height: 30px; padding: 2px 15px; } /*----------------- 48. Termination -----------------------*/ .add-group-btn { display: flex; } .add-group-btn .btn { align-items: center; display: flex; margin-left: 10px; } .add-group-btn .btn i { margin-right: 5px; } .bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover { background-color: #f43b48; text-shadow: unset; } /*----------------- 49. Loader -----------------------*/ #loader-wrapper { background-color: #fff; bottom: 0; height: 100%; left: 0; position: fixed; right: 0; top: 0; width: 100%; z-index: 9999; } #loader { background-position: center center; background-repeat: no-repeat; height: 200px; left: 50%; margin: -100px 0 0 -100px; position: absolute; top: 50%; width: 200px; } .loader-ellips { font-size: 20px; position: relative; width: 64px; margin: 100px auto 0; } .loader-ellips__dot { display: block; width: 1em; height: 1em; border-radius: 0.5em; position: absolute; animation-duration: 0.5s; animation-timing-function: ease; animation-iteration-count: infinite; } .loader-ellips__dot:nth-child(1), .loader-ellips__dot:nth-child(2) { left: 0; } .loader-ellips__dot:nth-child(3) { left: 1.5em; } .loader-ellips__dot:nth-child(4) { left: 3em; } .loader-ellips__dot:nth-child(1) { animation-name: reveal; } .loader-ellips__dot:nth-child(2), .loader-ellips__dot:nth-child(3) { animation-name: slide; } .loader-ellips__dot:nth-child(4) { animation-name: reveal; animation-direction: reverse; } @keyframes reveal { from { transform: scale(0.001); } to { transform: scale(1); } } @keyframes slide { to { transform: translateX(1.5em) } } .loader-ellips__dot:nth-child(1) { background: #404040; } .loader-ellips__dot:nth-child(2) { background: #f43b48; } .loader-ellips__dot:nth-child(3) { background: #404040; } .loader-ellips__dot:nth-child(4) { background: #404040; } /*----------------- 50. Payroll Items -----------------------*/ .page-menu .nav-tabs > li > a { font-size: 18px; } .table-radius.table { width: 100%; background: #fff; border-spacing: 0; border-radius: 0.25rem; margin-bottom: 0; } .table-radius.table thead td, .table-radius.table thead th { border-top: 0 none !important; padding: 20px !important; } .table-radius.table tbody td, .table-radius.table tbody th { padding: 15px 20px !important; } /*----------------- 51. Error -----------------------*/ .error-page { align-items: center; background-color: rgba(244, 59, 72, 0.2); color: #1f1f1f; display: flex; } .error-page .main-wrapper { display: flex; flex-wrap: wrap; justify-content: center; width: 100%; } .error-box { margin: 0 auto; max-width: 480px; padding: 40px 0; text-align: center; width: 100%; } .error-box h1 { color: #f43b48; font-size: 10em; } .error-box p { margin-bottom: 30px; } .error-box .btn { border-radius: 50px; font-size: 18px; font-weight: 600; min-width: 200px; padding: 10px 20px; } /*----------------- 52. Lock Screen -----------------------*/ .lock-user { margin-bottom: 20px; text-align: center; } .lock-user img { margin-bottom: 15px; width: 100px; } /*----------------- 53. OTP -----------------------*/ .otp-wrap { margin-bottom: 30px; text-align: center; } .otp-input { background-color: #fff; border: 1px solid #e3e3e3; border-radius: 4px; display: inline-block; font-size: 24px; font-weight: 500; height: 70px; line-height: 29px; margin-right: 15px; text-align: center; width: 70px; } .otp-input:last-child { margin-right: 0; } /*----------------- 54. Salary Settings -----------------------*/ .settings-widget + .settings-widget { margin-top: 30px; } .row.row-sm { margin-left: -5px; margin-right: -5px; } .row.row-sm > div { padding-left: 5px; padding-right: 5px; } .set-btn { min-height: 44px; } /*----------------- 55. Components -----------------------*/ .comp-buttons .btn { margin-bottom: 5px; } .comp-dropdowns .btn-group { margin-bottom: 5px; } .progress-example .progress { margin-bottom: 1.5rem; } .progress-xs { height: 4px; } .progress-sm { height: 15px; } .progress.progress-sm { height: 6px; } .progress.progress-md { height: 8px; } .progress.progress-lg { height: 18px; } .stickyside .sidebar-menu > ul > li > a.active { color: #f43b48; } .comp-section { margin-bottom: 30px; padding-bottom: 30px; padding-top: 30px; } .comp-section:last-child { margin-bottom: 0; padding-bottom: 0; } .comp-section .section-title { font-size: 1.125rem; margin-bottom: 20px; text-decoration: underline; text-transform: uppercase; } /*----------------- 56. Search -----------------------*/ .main-search { margin-bottom: 20px; } .search-result { margin-bottom: 30px; } .search-result u { color: #f43b48; } .search-result p { color: #777; margin-bottom: 0; } .search-lists .nav-tabs.nav-tabs-solid { background-color: #fff; border: 1px solid #e3e3e3; } .top-nav-search form { margin-top: 10px; position: relative; width: 230px; } .top-nav-search .form-control { background-color: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 50px; color: #fff; height: 40px; padding: 10px 50px 10px 15px; } .top-nav-search .btn { background-color: transparent; border-color: transparent; color: rgba(255, 255, 255, 0.7); min-height: 40px; padding: 7px 15px; position: absolute; right: 0; top: 0; } .top-nav-search .form-control::-webkit-input-placeholder { color: rgba(255, 255, 255, 0.7); } .top-nav-search .form-control::-moz-placeholder { color: rgba(255, 255, 255, 0.7); } .top-nav-search .form-control:-ms-input-placeholder { color: rgba(255, 255, 255, 0.7); } .top-nav-search .form-control::-ms-input-placeholder { color: rgba(255, 255, 255, 0.7); } .top-nav-search .form-control::placeholder { color: rgba(255, 255, 255, 0.7); } .responsive-search { display: none; color: #333; font-size: 20px; height: 60px; line-height: 60px; padding: 0 15px; } .top-nav-search.active form { display: block; left: 0; position: absolute; } /*----------------- 57. Knowledgebase -----------------------*/ .topics { background-color: #fff; border: 1px solid #ededed; border-radius: 4px; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); margin-bottom: 30px; padding: 20px; } .topics .topic-title { color: #333; margin-bottom: 20px; padding: 0 25px 0 0; position: relative; } .topics .topic-title a { color: #333; font-size: 20px; font-weight: 500; text-decoration: none; } .topics .topic-title a:hover { color: #f43b48; } .topics .topic-title a span { color: #f43b48; } .topics .topic-title a i { color: #f43b48; margin-right: 5px; } .topics .topics-list { padding: 0; margin: 0; } .topics .topics-list li { list-style: none; line-height: 2; } .topics .topics-list li a { padding-left: 25px; color: #555; font-size: 14px; font-weight: 400; text-decoration: none; outline: 0 none; } .topics .topics-list li a:hover { color: #f43b48; } .topics .topics-list li:before { font-family: FontAwesome; content: "\f016"; color: #555; font-size: 15px; left: 0; position: absolute; top: 0; } .topics .topics-list li { position: relative; } .widget { background-color: #fff; border: 1px solid #ededed; border-radius: 4px; box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.2); margin-bottom: 30px; padding: 20px; } .widget:last-child { margin-bottom: 0; } .widget h4 { color: #333; font-size: 18px; font-weight: 500; line-height: 25px; } .widget > ul { margin-bottom: 0; padding: 0; margin: 0; } .widget-category li { line-height: 35px; list-style: none; position: relative; } .widget-category li:before { font-family: FontAwesome; content: "\f016"; color: #555; font-size: 18px; left: 0; position: absolute; top: 0; } .widget-category li a { color: #5e6977; padding-left: 25px; } .widget-category li a:hover { color: #f43b48; } .post { margin-bottom: 50px; } .post .meta { background-color: #f9f9f9; border: 1px solid #efefef; font-size: 12px; margin: 0 0 20px; padding: 10px; } .post .meta p { padding: 15px 0; } .post .meta li { display: inline-block; color: #86939e; } .post .meta li span { color: #43484d; } .post .meta li:after { content: "/"; padding: 0 10px; } .post .meta li:last-child:after { content: none; } .post img { padding: 40px 0; max-width: 100%; } .feedback { background-color: #f9f9f9; border: 1px solid #efefef; padding: 20px; margin-bottom: 50px; } .feedback h3 { color: #333; font-size: 24px; margin-bottom: 20px; } .feedback p:last-child { margin-bottom: 0; } .post .meta a { color: #f43b48; } .widget .widget-title i { color: #f43b48; font-size: 24px; margin-right: 10px; } .post h1.post-title { font-size: 32px; font-weight: 400; margin-bottom: 20px; } .post h2 { font-size: 24px; font-weight: 400; } .post > p { margin-bottom: 20px; } .comment-section { float: left; width: 100%; } .comment-section h3 { font-size: 24px; font-weight: 400; margin-bottom: 30px; } ul.comment-list { border-top: 0; float: left; list-style: none; margin: 0; padding: 0; width: 100%; } ul.comment-list li { border: 0; box-sizing: border-box; clear: both; float: left; list-style: outside none none; margin: 0 0 30px; padding: 0 0 0 70px; position: relative; width: 100%; } ul.comment-list li:last-child { margin-bottom: 0; } ul.comment-list li div.comment { border-bottom: 1px solid #ccc; margin-bottom: 20px; padding-bottom: 20px; } ul.comment-list li .comment-author { left: 0; position: absolute; top: 0; width: 100%; } ul.comment-list li .comment-author img { border-radius: 50px; float: left; height: 50px; margin: 0; max-height: 50px; max-width: 50px; width: 50px; } ul.comment-list li .comment-details { margin: 10px 0; padding: 0 0 10px; position: relative; } ul.comment-list li .author-name > a { color: #2f363f; font-size: 18px; font-weight: 500; line-height: 19px; text-transform: capitalize; } ul.comment-list li .author-name span { float: left; font-size: 14px; width: 100%; } ul.comment-list li .comment-body { float: left; margin: 10px 0 0; width: 100%; } ul.comment-list li .comment-body p { line-height: 28px; } ul.comment-list li .reply a { clear: both; color: #2f363f; display: inline-block; font-size: 15px; font-weight: 500; margin: 10px 0 0; } ul.comment-list li ul.children { border: 0 none; clear: both; float: left; margin: 10px 0; padding: 0; width: 100%; } .comment-section .comment-reply { float: left; margin-top: 30px; width: 100%; } .comment-reply form { float: left; margin-bottom: 20px; width: 100%; } .comment-reply .form-control { background-color: #f9f9f9; border: 1px solid #e7e7e7; border-radius: 0; min-height: 50px; } .comment-reply .form-control:focus { box-shadow: unset; } /*----------------- 58. FAQ -----------------------*/ .faq-card .card-header { background-color: #fff; padding: 20px; position: relative; } .faq-card .card { border-color: #ddd; border-radius: 3px; box-shadow: none; margin-bottom: 20px; overflow: hidden; } .faq-card .card .card-header h4 { margin-bottom: 0; } .faq-card .card .card-header h4 > a { color: #090909; display: block; font-size: 20px; font-weight: 400; padding-right: 60px; position: relative; } .faq-card .card .card-header h4 > a:after { font-family: FontAwesome; font-size: 19px; position: absolute; right: 0px; font-weight: 400; } .faq-card .card .card-header h4 > a.collapsed:after { content: "\f067"; } .faq-card .card .card-header h4 > a:not(.collapsed):after { content: "\f068"; } .faq-card .card .card-header h4 > label { color: #fff; cursor: pointer; display: flex; font-size: 24px; font-weight: 400; margin: 0; padding-right: 60px; position: relative; } .faq-card .card .card-header h4 > label:after { font-family: FontAwesome; font-size: 19px; position: absolute; right: 0px; font-weight: 400; top: 0; } .faq-card .card .card-header h4 > label.collapsed:after { content: "\f067"; } .faq-card .card .card-header h4 > label:not(.collapsed):after { content: "\f068"; } .small-container { margin: auto; max-width: 1100px; padding: 30px; } .inner-header { margin-bottom: 30px; } /*----------------- 59. Employee Dashboard -----------------------*/ .welcome-box { background-color: #fff; border-bottom: 1px solid #ededed; display: flex; margin: -30px -30px 30px; padding: 20px; position: relative; } .welcome-img { margin-right: 15px; } .welcome-img img { border-radius: 8px; width: 60px; } .welcome-det p { color: #777; font-size: 18px; margin-bottom: 0; } .dash-section { margin-bottom: 30px; } .dash-list { background-color: white; border-color: #f1f6f8; color: #2e424d; display: flex; margin: 10px 0 0; } .dash-card-container { display: flex; flex-direction: row; flex-grow: 1; } .dash-card-icon { align-items: center; display: flex; flex-direction: row; font-size: 26px; padding-right: 15px; } .dash-card-icon i { width: 30px; } .dash-card-content { align-items: center; display: flex; flex-direction: row; } .e-avatar { background-color: #fff; border: 3px solid #e7e7e7; border-radius: 50%; height: 45px; position: relative; width: 45px; margin-left: -20px; } .e-avatar:first-of-type { margin-left: 0 !important; } .dash-card-avatars { align-items: center; display: flex; flex-grow: 1; justify-content: flex-end; padding: 0 15px; } .e-avatar > img { border-radius: 50%; width: 100%; } .dash-sec-title { font-size: 18px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; } .dash-info-list .dash-card { background-color: #fff; border: 1px solid #eaeaea; border-radius: 8px; color: #575757; display: flex; flex-direction: column; flex-grow: 1; height: auto; padding: 15px; } .dash-card-content p { font-size: 22px; margin-bottom: 0; } .dash-sec-content .dash-info-list + .dash-info-list { margin-top: 15px; } .dash-sidebar h5 { color: inherit; font-size: 13px; font-weight: 700; line-height: 1.5; margin-bottom: 15px; text-transform: uppercase; } .dash-sidebar p { color: #777; font-size: 13px; font-weight: 600; line-height: 1.5; margin-bottom: 0; text-transform: uppercase; } .dash-sidebar .card { border-radius: 8px; box-shadow: unset; } .time-list { display: flex; flex-grow: 1; margin-bottom: 20px; } .request-btn { text-align: center; } .dash-stats-list { align-items: center; display: flex; flex-flow: column wrap; flex-grow: 1; padding-left: 15px; padding-right: 15px; } .dash-stats-list + .dash-stats-list { border-left: 1px solid #e7e7e7; } .dash-stats-list h4 { color: #1f1f1f; font-size: 21px; font-weight: 700; line-height: 1.5; margin-bottom: 0; } /*----------------- 60. Performance Review -----------------------*/ .review-table tr { background-color: #fff; } .review-section { margin-bottom: 30px; } .review-header { background-color: #fff; border: 1px solid #dee2e6; margin-bottom: 0; padding: 15px; text-align: center; } .review-header h3 { font-size: 1.4rem; margin-bottom: 3px; } .review-header p { margin-bottom: 0; } .review-table .form-control { height: 36px; } .grade-span .badge { border-radius: 3px; display: inline-block; font-size: 13px; min-width: 75px; padding: 4px 12px; text-align: center; } .review-table .select2-container .select2-selection--single { height: 36px; } .review-table .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 34px; } .review-table .select2-container--default .select2-selection--single .select2-selection__arrow { height: 34px; } /*----------------- 61. Kanban Board -----------------------*/ .card > .task-header { line-height: 15px; display: flex; justify-content: space-between; } .task-header { font-size: 14px; font-weight: 500; padding: 15px 15px 5px; } .task-header a { color: #1f1f1f; } .task-body { padding: 0 15px 15px; font-size: 13px; } .kanban-list:last-child { margin-right: 0; } .kanban-list > .kanban-header { align-items: center; display: flex; justify-content: space-between; padding: 10px 20px; } .kanban-list > .kanban-header > .status-title { color: #fff; font-size: 16px; font-weight: 500; } .kanban-list > .kanban-wrap { padding: 20px; } .kanban-list > .kanban-wrap > .drag-placeholder { height: 146px; -webkit-border-radius: 2px; border-radius: 2px; background-color: rgba(0, 0, 0, 0.05); margin-bottom: 12px; } .kanban-list > .kanban-wrap.ks-empty > .card.drop-here { display: block; } .kanban-list > .kanban-wrap > .card { border: 1px solid #e3e3e3; border-radius: 2px; box-shadow: unset; margin: 0 0 12px; } .kanban-list > .kanban-wrap > .card.drop-here { display: none; text-align: center; background: transparent; padding: 15px; border-style: dashed; } .kanban-list > .kanban-wrap > .card.drop-here > a { color: #333; font-weight: 500; } .kanban-list > .kanban-wrap > .card:last-child { margin-bottom: 0; } .kanban-list > .kanban-wrap > .card.ui-sortable-helper { box-shadow: 0 2px 20px 0 #d7dceb; } .kanban-list > .kanban-wrap > .card > .task-header { font-size: 14px; font-weight: 500; border: none; padding: 15px 15px 5px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; } .kanban-list > .kanban-wrap > .card > .task-body { padding: 0 15px 15px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-info { display: flex; align-items: center; font-size: 12px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-info > .progress { margin-bottom: 0; margin-right: 10px; width: 100%; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-info > .progress .progress-bar { background-color: #42a5f5; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-footer { display: flex; align-items: center; justify-content: space-between; font-size: 12px; margin-top: 10px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-footer .ks-icon { color: #d7dceb; font-size: 20px; display: inline-block; margin-right: 3px; position: relative; top: 1px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-footer > .task-users > .task-avatar > img { width: 24px; height: 24px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-footer > .task-users > .ks-amount { font-size: 10px; font-weight: 500; display: inline-block; margin-left: 3px; position: relative; top: 1px; } .kanban-list.kanban-danger { background-color: #fef7f6; } .kanban-list.kanban-danger > .kanban-header { background-color: #ef5350; } .kanban-list.kanban-danger > .kanban-wrap > .card.drop-here { border-color: #f7c1b7; } .kanban-list.kanban-danger > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-info > .progress .progress-bar { background-color: #ef5350; } .kanban-list.kanban-success { background-color: #edf7ee; } .kanban-list.kanban-success > .kanban-header { background-color: #4caf50; } .kanban-list.kanban-success > .kanban-wrap > .card.drop-here { border-color: #abebc6; } .kanban-list.kanban-success > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-info > .progress .progress-bar { background-color: #4caf50; } .kanban-list.kanban-info { background-color: #e7f3fe; } .kanban-list.kanban-info > .kanban-header { background-color: #42a5f5; } .kanban-list.kanban-info > .kanban-wrap > .card.drop-here { border-color: #a6dbf9; } .kanban-list.kanban-warning { background-color: #fdfcf3; } .kanban-list.kanban-warning > .kanban-header { background-color: #ffb300; } .kanban-list.kanban-warning > .kanban-wrap > .card.drop-here { border: 1px solid #f2e49e; } .kanban-list.kanban-warning > .kanban-wrap > .card > .kanban-box > .task-body > .kanban-info > .progress .progress-bar { background-color: #ffb300; } .task-avatar { border-radius: 50%; position: relative; } .kanban-box.ui-sortable-handle { cursor: move; } .card > .task-board-header { line-height: 15px; display: flex; justify-content: space-between; } .task-board-header { font-size: 14px; font-weight: 500; padding: 15px 15px 5px; display: flex; justify-content: space-between; } .task-board-header a { color: #1f1f1f; } .task-board-body { padding: 0 15px 15px; font-size: 13px; } .progress > .progress-bar { background-color: #25628F; } .kanban-cont { display: flex; overflow: auto; padding-bottom: 20px; } .kanban-list { align-self: flex-start; margin-right: 30px; min-width: 300px; width: 300px; } .kanban-list:last-child { margin-right: 0; } .kanban-list > .kanban-header { align-items: center; display: flex; justify-content: space-between; padding: 10px 20px; } .kanban-list > .kanban-header > .status-title { color: #fff; font-size: 16px; font-weight: 500; } .kanban-list > .kanban-wrap { padding: 20px; } .kanban-list > .kanban-wrap > .drag-placeholder { height: 146px; -webkit-border-radius: 2px; border-radius: 2px; background-color: rgba(0, 0, 0, 0.05); margin-bottom: 12px; } .kanban-list > .kanban-wrap > .card { background-color: #fff; border: 1px solid #e3e3e3; border-radius: 2px; box-shadow: unset; margin: 0 0 12px; } .kanban-list > .kanban-wrap > .card.active { box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3); } .kanban-list > .kanban-wrap > .card:last-child { margin-bottom: 0; } .kanban-list > .kanban-wrap > .card.ui-sortable-helper { box-shadow: 0 2px 20px 0 #d7dceb; } .kanban-list > .kanban-wrap > .card > .task-board-header { font-size: 14px; font-weight: 500; border: none; padding: 15px 15px 5px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; } .kanban-list > .kanban-wrap > .card > .task-board-body { padding: 0 15px 15px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info { display: flex; align-items: center; font-size: 12px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress { margin-bottom: 0; margin-right: 10px; width: 100%; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress .progress-bar { background-color: #42a5f5; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-footer { display: flex; justify-content: space-between; font-size: 12px; margin-top: 10px; align-items: end; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-footer > .task-users > .task-avatar > img { width: 24px; height: 24px; } .kanban-list > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-footer > .task-users > .task-user-count { font-size: 10px; font-weight: 500; display: inline-block; margin-left: 3px; position: relative; top: 1px; } .kanban-list.kanban-danger > .kanban-wrap > .card.active { border-color: #ef5350; } .kanban-list.kanban-success > .kanban-wrap > .card.active { border-color: #4caf50; } .kanban-list.kanban-info > .kanban-wrap > .card.active { border-color: #42a5f5; } .kanban-list.kanban-warning > .kanban-wrap > .card.active { border-color: #ffb300; } .kanban-list.kanban-danger { background-color: #fef7f6; } .kanban-list.kanban-danger > .kanban-header { background-color: #ef5350; } .kanban-list.kanban-danger > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress .progress-bar { background-color: #ef5350; } .kanban-list.kanban-success { background-color: #edf7ee; } .kanban-list.kanban-success > .kanban-header { background-color: #4caf50; } .kanban-list.kanban-success > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress .progress-bar { background-color: #4caf50; } .kanban-list.kanban-info { background-color: #e7f3fe; } .kanban-list.kanban-info > .kanban-header { background-color: #42a5f5; } .kanban-list.kanban-warning { background-color: #fdfcf3; } .kanban-list.kanban-warning > .kanban-header { background-color: #ffb300; } .kanban-list.kanban-warning > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress .progress-bar { background-color: #ffb300; } .kanban-list.kanban-purple { background-color: #f1effd; } .kanban-list.kanban-purple > .kanban-header { background-color: #7460ee; } .kanban-list.kanban-purple > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress .progress-bar { background-color: #7460ee; } .kanban-list.kanban-primary { background-color: #fff5ec; } .kanban-list.kanban-primary > .kanban-header { background-color: #ff9b44; } .kanban-list.kanban-primary > .kanban-wrap > .card > .kanban-box > .task-board-body > .kanban-info > .progress .progress-bar { background-color: #ff9b44; } .task-avatar { border-radius: 50%; position: relative; } .kanban-box.ui-sortable-handle { cursor: move; } .kanban-action > a { color: #fff; background-color: rgba(0, 0, 0, 0.3); display: inline-flex; align-items: center; width: 22px; height: 22px; border-radius: 50%; justify-content: center; } .task-board-color .board-color-list { display: flex; height: 45px; } .task-board-color .board-color-list .board-control { position: relative; display: -webkit-inline-box; display: -webkit-inline-flex; display: -ms-inline-flexbox; display: inline-flex; min-height: 1.5rem; padding-left: 1.5rem; margin-right: 1rem; cursor: pointer; padding-left: 0; cursor: pointer; width: 36px; height: 36px; } .task-board-color .board-control-input { position: absolute; z-index: -1; opacity: 0; } .board-control > .board-control-input:checked ~ .board-indicator:before { content: "\f00c"; display: block; width: 16px; height: 16px; -webkit-border-radius: 2px; border-radius: 2px; color: #fff; border: none; position: relative; font-family: FontAwesome; text-align: center; line-height: 16px; } .board-control > .board-control-input:checked ~ .board-indicator::before { width: 36px; height: 36px; line-height: 36px; } .board-control > .board-indicator { width: 36px; height: 36px; } .board-control.board-primary > .board-indicator { background: #ff9b44; } .board-control.board-success > .board-indicator { background: #4caf50; } .board-control.board-info > .board-indicator { background: #42a5f5; } .board-control.board-purple > .board-indicator { background: #7460ee; } .board-control.board-warning > .board-indicator { background: #ffb300; } .board-control.board-danger > .board-indicator { background: #ef5350; } .kanban-board.task-wrapper .kanban-list { width: 100%; } .board-view-header { margin-bottom: 30px; } .pro-teams { display: inline-flex; margin-right: 15px; text-align: center; margin-bottom: 20px; } .pro-teams .pro-team-members { margin-left: 15px; display: flex; align-items: center; } .pro-teams h4 { margin-bottom: 0; margin-right: 6px; font-size: 16px; } .pro-team-lead { display: flex; align-items: center; } .board-view-header .view-icons { float: right; margin-right: 0; background-color: #fff; border: 1px solid #ccc; padding: 2px 7px; border-radius: 4px; } .board-view-header .view-icons .btn { margin: 0; padding: 0; } .board-view-header .view-icons a.btn + a.btn { margin-left: 5px; } .pro-progress-bar { display: flex; align-items: center; } .pro-progress-bar h4 { margin-bottom: 0; margin-right: 10px; font-size: 13px; text-transform: uppercase; } .pro-progress-bar .progress { width: 100%; margin-bottom: 0; margin-right: 10px; height: 15px; background-color: #e3e3e3; box-shadow: unset; } .pro-progress-bar .progress > .progress-bar { background-color: #ff9b44; } .pro-teams .avatar-group { display: inline-flex; } .pro-teams .avatar-group .avatar { margin-right: 0; position: relative; display: inline-block; width: 34px; height: 34px; background-color: transparent; } .pro-teams .avatar-group .avatar + .avatar { margin-left: -.75rem; } .pro-teams .avatar-group .avatar .border { border: 3px solid #fff !important; } .pro-teams .avatar-group .avatar > img { width: 100%; height: 100%; -o-object-fit: cover; object-fit: cover; border-radius: 50%; } .border-white { border-color: #fff !important; } .pro-teams .avatar-group .avatar:hover { z-index: 1; } .pro-teams .avatar .avatar-title { font-size: 14px; border-radius: 50%; } .pro-teams .avatar-title { width: 100%; height: 100%; background-color: #ff9b44; color: #fff; display: flex; align-items: center; justify-content: center; } .task-date { display: block; } .task-priority { padding: .3em .6em .3em; } .task-follower-list { display: flex; margin-top: 15px; } .task-follower-list span { position: relative; } .task-follower-list span i { cursor: pointer; position: absolute; top: -5px; right: 5px; color: #f00; } .add-new-task { text-align: center; padding: 0 20px 20px; } .add-new-task a { color: #333; font-size: 14px; } .project-add-form { display: none; margin-top: 10px; } .project-add-form.opened { display: block; } #myOverviewDiv { position: absolute; width: 200px; height: 100px; top: 10px; left: 10px; background-color: #f2f2f2; z-index: 300; /* make sure its in front */ border: solid 1px #7986cb; } /*----------------- 62. File Manager -----------------------*/ .wday-box input { opacity: 0; } .wday-box .checkmark { border: 2px solid #ff9b44; width: 40px; height: 40px; line-height: 35px; padding-left: 13px!important; color: #ff9b44; display: block; } .wday-box input:checked ~ .checkmark { background: #ff9b44; color:#fff; } .table-responsive { white-space: nowrap; } .user-add-shedule-list a { display: inline-block; padding: 10px; border: 1px dashed #a7a7a7; color: #a7a7a7; border-radius: 5px; } .user-add-shedule-list h2 a { border: 2px dashed #1EB53A; padding: 10px; color: #1EB53A; } .user-add-shedule-list span { justify-content: center; display: flex; } .file-wrap { border: 1px solid #e0e3e4; display: flex; flex-wrap: wrap; position: relative; } .file-wrap .file-sidebar { border-right: 1px solid #e0e3e4; left: 0; position: absolute; z-index: 5; width: 300px; transition: 0.3s ease-in-out; } .file-wrap .file-sidebar .file-header { align-items: center; background-color: #fff; border-bottom: 1px solid #e0e3e4; color: #324148; display: flex; height: 72px; justify-content: space-between; padding: 0 15px; } .file-wrap .file-sidebar .file-header span { font-size: 20px; font-weight: 600; text-transform: capitalize; } .file-wrap .file-sidebar .file-search { background-color: #f5f5f6; border-bottom: 1px solid #e5e5e5; padding: 10px 15px; width: 100%; } .file-wrap .file-sidebar .file-search .input-group { width: 100%; } .file-wrap .file-sidebar .file-search .input-group .form-control { background-color: #fff; border-radius: 50px; padding-left: 36px; } .file-wrap .file-sidebar .file-search .input-group .form-control:focus { border-color: #ccc; box-shadow: none; } .file-wrap .file-sidebar .file-search .input-group .input-group-prepend { align-items: center; bottom: 0; color: #666; display: flex; left: 15px; pointer-events: none; position: absolute; top: 0; z-index: 4; } .file-wrap .file-scroll { max-height: calc(100vh - 259px); min-height: 497px; overflow-y: auto; } .file-wrap .file-sidebar .file-pro-list { background-color: #fff; padding: 15px; } .file-side-close { display: none; background-color: #eee; border: 1px solid #e3e3e3; border-radius: 24px; color: #bbb; font-size: 14px; line-height: 24px; min-height: 26px; text-align: center; width: 26px; position: absolute; right: 15px; } .file-wrap .file-content { flex: 0 0 100%; max-width: 100%; } .file-wrap .file-content .file-header { align-items: center; background-color: #fff; border-bottom: 1px solid #e0e3e4; display: flex; height: 72px; justify-content: space-between; padding: 0 15px; } .file-wrap .file-content .file-body { background-color: #f5f5f6; } .dropdown-file { position: absolute; top: 10px; right: 10px; } .dropdown-file .dropdown-link { color: #777; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; } .dropdown-file .dropdown-link:hover, .dropdown-file .dropdown-link:focus { color: #1b2e4b; } .dropdown-file .dropdown-item { font-size: 12px; display: flex; align-items: center; padding: 5px 10px; } .card-file { padding: 10px; position: relative; transition: all 0.2s ease-in-out; } .card-file:hover, .card-file:focus { border-color: #ccc; } .card-file .card-body { padding: 15px 0 0; } .card-file .card-footer { font-size: 11px; color: #a9a9a9; padding: 10px 0 0; border-top-width: 0; background-color: transparent; } .card-file h6 { margin-bottom: 0; font-size: 0.875rem; } .card-file h6 a { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; display: block; width: 100%; color: #333; } .card-file span { font-size: 12px; color: #888; } .card-file-thumb { align-items: center; background-color: #f5f5f5; color: #777; display: flex; font-size: 48px; height: 120px; justify-content: center; } .file-wrap .file-content .file-body .file-content-inner { padding: 15px; width: 100%; } .file-wrap.file-sidebar-toggle .file-sidebar { left: -331px; } .file-wrap.file-sidebar-toggle .file-cont-wrap { margin-left: 0; } .file-wrap .file-cont-wrap { display: flex; flex-wrap: wrap; margin-left: 300px; transition: 0.4s ease-in-out; } .file-wrap .file-cont-wrap .file-cont-inner { flex: 0 0 100%; max-width: 100%; } .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header { align-items: center; background: #fff; border-bottom: 1px solid #e0e3e4; display: flex; height: 72px; justify-content: space-between; padding: 0 15px; } .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header > span { color: #333; font-size: 20px; font-weight: 600; } .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header .file-sidebar-toggle { color: #333; } .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header .file-options { display: flex; } .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header .file-options > a, .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header .file-options > span { color: #333; display: inline-block; font-size: 20px; margin-left: 25px; } .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header .file-options > a:first-child, .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header .file-options > span:first-child { margin-left: 0; } .file-wrap .file-content .file-search { background-color: #f5f5f6; border-bottom: 1px solid #e5e5e5; padding: 10px 15px; width: 100%; } .file-wrap .file-content .file-search .input-group { width: 100%; } .file-wrap .file-content .file-search .input-group .form-control { background-color: #fff; border-radius: 50px; padding-left: 36px; } .file-wrap .file-content .file-search .input-group .form-control:focus { border-color: #ccc; box-shadow: none; } .file-wrap .file-content .file-search .input-group .input-group-prepend { align-items: center; bottom: 0; color: #666; display: flex; left: 15px; pointer-events: none; position: absolute; top: 0; z-index: 4; } .btn-file { display: inline-block; overflow: hidden; position: relative; vertical-align: middle; } .btn-file input { cursor: pointer; direction: ltr; filter: alpha(opacity=0); font-size: 23px; height: 100%; margin: 0; opacity: 0; position: absolute; right: 0; top: 0; width: 100%; } .file-menu { display: inline-block; margin: 0 0 10px; padding: 0; width: 100%; } .file-menu li { display: inline-block; width: 100%; } .file-menu li + li { margin-top: 2px; } .file-menu li a { color: #333; display: inline-block; padding: 10px 15px; width: 100%; text-transform: capitalize; -webkit-transition: 0.3s ease; -moz-transition: 0.3s ease; transition: 0.3s ease; } .file-menu li a i { font-size: 16px; padding-right: 10px; color: #878787; } .file-menu li a:hover, .file-menu li.active a, .file-menu li a:focus { background: rgba(33, 33, 33, 0.05); } .show-more { text-align: center; } .show-more a { position: relative; padding: 0 20px 0 15px; } .show-more a:before { content: '\f107'; top: 50%; right: 0; position: absolute; font-size: 18px; line-height: inherit; font-family: 'FontAwesome'; transform: translateY(-50%); } /*----------------- 63. Subscriptions -----------------------*/ .pricing-box { text-align: center; } .pricing-box ul { list-style: none; margin: 0; padding: 0; text-align: left; } .pricing-box ul li { line-height: 35px; } .pricing-box ul li i { color: #00bf6f; margin-right: 5px; } .equal-height-cards > div > div.card { height: 100%; } .mb-30 { margin-bottom: 30px !important; } /*----------------- 64. Responsive -----------------------*/ @media only screen and (min-width: 991px) { #toggle_btn { left: 70px; } } @media only screen and (min-width: 991px) { #toggle_btn { color: #999; float: left; position: relative; top: 20px; font-size: 26px; line-height: 60px; padding: 0 10px; } .mini-sidebar .header-left .logo img { height: auto; max-height: 100px; width: auto; } .mini-sidebar .header .header-left { padding: 0 5px; width: 60px; } .mini-sidebar .sidebar { width: 60px; } .mini-sidebar.expand-menu .sidebar { width: 230px; } .mini-sidebar .menu-title { visibility: hidden; white-space: nowrap; } .mini-sidebar.expand-menu .menu-title { visibility: visible; } .mini-sidebar .menu-title a { visibility: hidden; } .mini-sidebar.expand-menu .menu-title a { visibility: visible; } .mini-sidebar .sidebar .noti-dot:before { display: none; } .mini-sidebar .sidebar .noti-dot:after { display: none; } .mini-sidebar.expand-menu .sidebar .noti-dot:before { display: block; } .mini-sidebar.expand-menu .sidebar .noti-dot:after { display: block; } .modal-open.mini-sidebar .sidebar { z-index: 1001; } .mini-sidebar .sidebar .sidebar-menu ul > li > a span { display: none; transition: all 0.2s ease-in-out; opacity: 0; } .mini-sidebar .sidebar .sidebar-menu ul > li > a span.chat-avatar-sm { display: inline-block; opacity: 1; } .mini-sidebar .sidebar .sidebar-menu ul > li > a span.status { display: inline-block; opacity: 1; } .mini-sidebar.expand-menu .sidebar .sidebar-menu ul > li > a span { display: inline; opacity: 1; } .mini-sidebar .sidebar .sidebar-menu > ul > li > a i { font-size: 30px; width: 30px; } .mini-sidebar.expand-menu .sidebar .sidebar-menu > ul > li > a i { font-size: 24px; width: 20px; } .mini-sidebar .page-wrapper { margin-left: 60px; } } @media only screen and (min-width: 768px) { .modal-md { width: 600px; } .nav-tabs.nav-justified.nav-tabs-top { border-bottom: 1px solid #ddd; } .nav-tabs.nav-justified.nav-tabs-top > li > a, .nav-tabs.nav-justified.nav-tabs-top > li > a:hover, .nav-tabs.nav-justified.nav-tabs-top > li > a:focus { border-width: 2px 0 0 0; } .nav-tabs.nav-tabs-top > li { margin-bottom: 0; } .nav-tabs.nav-tabs-top > li > a, .nav-tabs.nav-tabs-top > li > a:hover, .nav-tabs.nav-tabs-top > li > a:focus { border-width: 2px 0 0 0; } .nav-tabs.nav-tabs-top > li.open > a, .nav-tabs.nav-tabs-top > li > a:hover, .nav-tabs.nav-tabs-top > li > a:focus { border-top-color: #ddd; } .nav-tabs.nav-tabs-top > li+li > a { margin-left: 1px; } .nav-tabs.nav-tabs-top > li > a.active, .nav-tabs.nav-tabs-top > li > a.active:hover, .nav-tabs.nav-tabs-top > li > a.active:focus { border-top-color: #f43b48; } .nav-tabs.nav-tabs-bottom > li { margin-bottom: -1px; } .nav-tabs.nav-tabs-bottom > li > a.active, .nav-tabs.nav-tabs-bottom > li > a.active:hover, .nav-tabs.nav-tabs-bottom > li > a.active:focus { border-bottom-width: 2px; border-color: transparent; border-bottom-color: #f43b48; background-color: transparent; transition: none 0s ease 0s; -moz-transition: none 0s ease 0s; -o-transition: none 0s ease 0s; -ms-transition: none 0s ease 0s; -webkit-transition: none 0s ease 0s; } .nav-tabs.nav-tabs-solid { background-color: #fafafa; border: 0; } .nav-tabs.nav-tabs-solid > li { margin-bottom: 0; } .nav-tabs.nav-tabs-solid > li > a { border-color: transparent; } .nav-tabs.nav-tabs-solid > li > a:hover, .nav-tabs.nav-tabs-solid > li > a:focus { background-color: #f5f5f5; } .nav-tabs.nav-tabs-solid > .open:not(.active) > a { background-color: #f5f5f5; border-color: transparent; } .nav-tabs-justified.nav-tabs-top { border-bottom: 1px solid #ddd; } .nav-tabs-justified.nav-tabs-top > li > a, .nav-tabs-justified.nav-tabs-top > li > a:hover, .nav-tabs-justified.nav-tabs-top > li > a:focus { border-width: 2px 0 0 0; } } @media only screen and (max-width: 1199.98px) { .page-title-box { display: none; } .file-wrap .file-sidebar { left: -331px; } .file-wrap .file-cont-wrap { margin-left: 0; } .file-wrap.file-sidebar-toggle .file-sidebar { left: 0; } .file-wrap.file-sidebar-toggle .file-cont-wrap { margin-left: 0; } .file-side-close { display: inline-block; } } @media only screen and (max-width: 991.98px) { .profile-rightbar { display: inline-block !important; } .profile-info-left { border-right: none; border-bottom: 2px dashed #ccc; margin-bottom: 20px; padding-bottom: 20px; } .task-right-sidebar .task-chat-view { display: block; position: fixed; right: 0; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; margin-right: 0; } .task-chat-view { display: none; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; right: 0; transform: translateX(0px); z-index: 1041; width: 300px; position: fixed; transition: all 0.4s ease 0s; margin-right: -300px; display: table-cell; top: 0; padding-bottom: 60px; margin-top: 60px; } .chat-profile-view { display: none; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; right: 0; transform: translateX(0px); z-index: 1041; width: 300px; position: fixed; transition: all 0.4s ease 0s; margin-right: -300px; display: table-cell; top: 0; padding-bottom: 60px; margin-top: 60px; } .message-view.task-view { width: 100%; } .float-left.ticket-view-details { width: 90%; } .chat-main-row { left: 0; } .header .header-left { position: absolute; width: 100%; } .mobile_btn { display: block; } .page-title-box { display: none; } .sidebar { margin-left: -225px; width: 225px; -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; z-index: 1041; } .page-wrapper { margin-left: 0; padding-left: 0; padding-right: 0; } a.mobile_btn { color: #fff; font-size: 24px; height: 60px; left: 0; line-height: 60px; padding: 0 20px; position: absolute; top: 0; width: 60px; z-index: 10; } #toggle_btn { display: none; } .page-wrapper { -webkit-transition: all 0.4s ease; -moz-transition: all 0.4s ease; transition: all 0.4s ease; } .responsive-search { color: #fff; display: inline-block; } .top-nav-search form { display: none; } .top-nav-search .form-control { background-color: #fff; border-color: #e3e3e3; color: #333; } .top-nav-search .btn { color: #999; } .top-nav-search .form-control::-webkit-input-placeholder { color: #999; } .top-nav-search .form-control::-moz-placeholder { color: #999; } .top-nav-search .form-control:-ms-input-placeholder { color: #999; } .top-nav-search .form-control::-ms-input-placeholder { color: #999; } .top-nav-search .form-control::placeholder { color: #999; } .header .has-arrow .dropdown-toggle > span:nth-child(2) { display: none; } .header .has-arrow .dropdown-toggle::after { display: none; } } @media only screen and (max-width: 767.98px) { body { font-size: 0.875rem; } h1, .h1 { font-size: 2rem; } h2, .h2 { font-size: 1.75rem; } h3, .h3 { font-size: 1.375rem; } h4, .h4 { font-size: 1rem; } h5, .h5 { font-size: 0.9375rem; } h6, .h6 { font-size: 0.75rem; } .page-title, .dash-widget-info > h3, .account-title { font-size: 1.5rem; } .dash-card-content p, .stats-info h4, .account-box .account-btn, .job-title { font-size: 1.25rem; } .card-title, .dash-stats-list h4, .custom-modal .modal-title, .file-wrap .file-cont-wrap .file-cont-inner .file-cont-header > span, .faq-card .card .card-header h4 > a, .lead { font-size: 1.125rem; } .btn, .welcome-det p, .kanban-list > .kanban-header > .status-title, .account-box label, .job-info .job-dept, .form-focus .focus-label { font-size: 0.9375rem; } .onoffswitch-inner::before, .onoffswitch-inner::after, .form-control, .user-menu.nav > li > a, .page-header .breadcrumb { font-size: 0.875rem; } .btn-group-sm > .btn, .btn-sm { font-size: 0.8125rem; } .comp-section .section-title, .voice-call-avatar .username, .page-menu .nav-tabs > li > a, .btn-group-lg > .btn, .btn-lg, .account-subtitle, .job-list h3.job-list-title { font-size: 1rem; } .message-content { font-size: 0.75rem; } .user-menu.nav > li > a { padding: 0 10px; } .top-nav-search form { width: 210px; } .profile-info-left { border-right: none; border-bottom: 2px dashed #ccc; margin-bottom: 20px; padding-bottom: 20px; } .navbar-nav .open .dropdown-menu { float: left; position: absolute; } .notifications { right: -48px; } .notifications::before, .notifications::after { right: 60px; } .header { z-index: 1040; } .task-wrapper #task-list li .task-container .task-label { padding-right: 50px; word-break: unset; } .task-btn-right { position: absolute; right: 8px; } .task-wrapper #task-list li .task-container { padding: 8px 10px; } .task-action-btn.task-check { width: 36px; } .roles-menu { margin-bottom: 20px; } .contacts-list { padding: 0 70px 0 15px; } .left-action { text-align: center; margin-bottom: 15px; } .right-action { text-align: center; } .top-action-left .float-left { float: none !important; } .top-action-left .btn-group { margin-bottom: 15px; } .top-action-right { text-align: center; } .top-action-right a.btn.btn-white { margin-bottom: 15px; } .mail-sent-time { float: left; margin-top: 10px; width: 100%; } .nav-tabs.nav-justified { border-bottom: 1px solid #ddd; } .nav-tabs.nav-justified > li > a.active, .nav-tabs.nav-justified > li > a.active:hover, .nav-tabs.nav-justified > li > a.active:focus { border-color: transparent transparent transparent #f43b48; border-left-width: 2px; } .nav-tabs { border-bottom: 0; position: relative; background-color: #fff; padding: 5px 0; border: 1px solid #ddd; border-radius: 3px; } .nav-tabs .nav-item { margin-bottom: 0; } .nav-tabs > li > a { border-width: 2px; border-left-color: transparent; } .nav-tabs .nav-link { border-width: 2px; } .nav-tabs> li > a:hover, .nav-tabs>li>a:focus { background-color: #fafafa; } .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active, .nav-tabs> li > a.active, .nav-tabs> li > a.active:hover, .nav-tabs> li > a.active:focus { background-color: #f5f5f5; border-color: transparent transparent transparent #f43b48; border-left-width: 2px; } .nav-tabs > li.open:not(.active) > a, .nav-tabs > li.open:not(.active) > a:hover, .nav-tabs > li.open:not(.active) > a:focus { background-color: #fafafa; } .nav-tabs.nav-tabs-solid { padding: 5px; } .nav-tabs.nav-tabs-solid.nav-tabs-rounded { border-radius: 5px; } .nav-tabs.nav-tabs-solid > li > a { border-left-width: 0!important; } .nav-tabs-justified { border-bottom: 1px solid #ddd; } .nav-tabs-justified > li > a.active, .nav-tabs-justified > li > a.active:hover, .nav-tabs-justified > li > a.active:focus { border-width: 0 0 0 2px; border-left-color: #f43b48; } .my-video ul li { width: 80px; } .voice-call-avatar .call-avatar { width: 120px; height: 120px; } .product-info { margin: 20px 0 30px; } .profile-bg { height: 280px; } .flag-nav > a > span { display: none; } .equal-height-cards > div > div.card { height: unset; } } @media only screen and (max-width: 575.98px) { .contact-cat { padding-right: 70px; } .user-menu { display: none; } .mobile-user-menu { display: block; } .search-box { display: none; } .filter-row { margin-bottom: 15px; } .page-wrapper > .content { padding: 15px; } .profile-view .profile-basic { margin-left: 0; padding-right: 0; } .profile-img-wrap { position: relative; margin: 0 auto; } .profile-info-left { text-align: center; } .profile-basic { margin-left: 0; margin-top: 15px; } .page-title { font-size: 18px; } .fc-toolbar .fc-right { display: inline-block; float: none; margin: 10px auto 0; width: 200px; clear: both; } .fc-toolbar .fc-left { float: none; margin: 0 auto; width: 200px; } .upload-text { font-size: 18px; } .call-duration { display: block; margin-top: 0; margin-bottom: 10px; position: inherit; } .end-call { margin-top: 10px; position: inherit; } .chat-panel .chats { padding: 15px 0; } .chat-right .chat-content { max-width: 90%; } .chat-right .chat-body { padding-left: 0; padding-right: 0; } .chat-left .chat-content { max-width: 90%; } .chat-left .chat-body { padding-left: 0; padding-right: 0; } .chat-avatar .avatar { height: 20px; line-height: 20px; width: 20px; } .account-box { width: 100%; margin-bottom: 20px; } .float-left.ticket-view-details { width: 80%; } .custom-menu > li > a { margin-left: 10px; } .contact-alphapets { top: 113px; } .account-page .main-wrapper { flex-direction: column; } .otp-input { font-size: 18px; height: 50px; margin-right: 10px; width: 52px; } .account-wrapper { padding: 15px; } .leave-right { flex: 0 0 auto; } .pagination-lg .page-link { font-size: 1.2rem; padding: 0.5rem 0.85rem; } .call-box .call-avatar { height: 100px; max-width: 100px; min-width: 100px; } .call-box .call-wrapper .call-items .call-item { padding: 10px; } .call-box .call-wrapper .call-items .call-item.call-end { margin: 30px 5px 0; padding: 10px; } .submit-section .submit-btn { margin: 0 0 10px !important; } .leave-row { display: block; } .leave-box .subtitle { display: none; } .leave-right { margin-top: 20px; } .leave-inline-form { display: block; } .page-header .breadcrumb { display: none; } .add-btn { font-size: 14px; min-width: inherit; } } /*Project Board*/ .page-header .page-title i { color: #e6e9ef; } .page-header .page-title i:hover, .page-header .page-title i:active { color: #ffcb00; } [contenteditable="true"]:active, [contenteditable="true"]:focus{ border:1px dashed #e6e9ef; outline:none; /* padding:5px;*/ } .page-header .text-truncate { width:330px; } .avatar-group { display: inline-flex; } .avatar-group .avatar + .avatar { margin-left: -.75rem; } .avatar-group .avatar-xs + .avatar-xs { margin-left: -1.25rem; } .avatar-group .avatar-sm+.avatar-sm { margin-left: -1.75rem; } .avatar-group .avatar-lg + .avatar-lg { margin-left: -1rem; } .avatar-group .avatar-xl + .avatar-xl { margin-left: -1.28125rem; } .avatar-group .avatar:hover { z-index: 1; } .avatar-title { width: 100%; height: 100%; background-color: #2962ff; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; }
0.407805
0.17892
:root { --primary-text-color: #757575; --title-text-color: #212121; --accent-color: #2196F3; --hero-title-color: #FFFFFF; --contacts-color: rgba(255, 255, 255, 0.6); --hero-background-color: #2F303A; --main-background-color: #E5E5E5; --secondary-background-color: #F5F4FA; } /*Body*/ .page { color: var(--primary-text-color); background-color: #FFFFFF; font-family: roboto, sans-serif; letter-spacing: 0.03em; } .list { list-style: none; } /*header*/ .header-style { background-color: var(--hero-title-color); letter-spacing: 0.02em; font-weight: 500; font-size: 14px; line-height: 1.14; } /*site-nav*/ .site-nav a { color: var(--title-text-color); } .site-nav a.current { color: var(--accent-color); } .site-nav a:hover, .site-nav a:focus { color: var(--accent-color); } .portfolio-filtr button:hover, .portfolio-filtr button:focus { background-color:var(--accent-color); color:var(--hero-title-color) ; } .contact-info a:hover, .contact-info a:focus { color: var(--accent-color); } .contact-info { color: var(--primary-text-color); font-weight: 400; font-size: 14px; line-height: 1.71; } /*hero*/ .hero { color: var(--hero-title-color); background-color: var(--hero-background-color); letter-spacing: 0.06em; } .hero-title { font-weight: 900; font-size: 44px; line-height: 1.36; text-align:center; } .hero-button { color: var(--hero-title-color); background-color: var(--accent-color); font-size: 16px; line-height: 1.88; font-weight: 700; letter-spacing: 0.06em; text-align:center; } .current-portfolio-button { color: var(--hero-title-color); background-color: var(--accent-color); font-weight: 500; font-size: 16px; line-height: 1.63; letter-spacing: 0.03em; } .portfolio-button { color: var(--title-text-color); background-color: var(--secondary-background-color); font-weight: 500; font-size: 16px; line-height: 1.63; letter-spacing: 0.03em; } /*section*/ .prima-section-title, .second-section-title { color: var(--title-text-color); } .team-title { color: var(--title-text-color); font-weight: 500; font-size: 16px; line-height: 1.19; } .prima-section-title { font-size: 14px; line-height: 1.14; font-weight: 700; } .prima-section-text { font-weight: 400; font-size: 14px; line-height: 1.71; } .second-section-title { font-weight: 700; font-size: 36px; line-height: 1.17; text-align:center; } .company-team p { font-weight: 400; font-size: 16px; line-height: 1.19; } .portfolio-title { color: var( --title-text-color); font-weight: 700; font-size: 18px; line-height: 2; letter-spacing: 0.06em; } .portfolio-type { color: var(--primary-text-color); font-weight: 400; font-size: 16px; line-height: 1.88; letter-spacing: 0.03em; } button { font-family: inherit; } /*team*/ .team { background-color: var(--secondary-background-color); } a { text-decoration: none; } /*footer*/ footer { background-color: var(--hero-background-color); } .footer-contact { color:rgba(255, 255, 255, 0.6); }
css/style.css
:root { --primary-text-color: #757575; --title-text-color: #212121; --accent-color: #2196F3; --hero-title-color: #FFFFFF; --contacts-color: rgba(255, 255, 255, 0.6); --hero-background-color: #2F303A; --main-background-color: #E5E5E5; --secondary-background-color: #F5F4FA; } /*Body*/ .page { color: var(--primary-text-color); background-color: #FFFFFF; font-family: roboto, sans-serif; letter-spacing: 0.03em; } .list { list-style: none; } /*header*/ .header-style { background-color: var(--hero-title-color); letter-spacing: 0.02em; font-weight: 500; font-size: 14px; line-height: 1.14; } /*site-nav*/ .site-nav a { color: var(--title-text-color); } .site-nav a.current { color: var(--accent-color); } .site-nav a:hover, .site-nav a:focus { color: var(--accent-color); } .portfolio-filtr button:hover, .portfolio-filtr button:focus { background-color:var(--accent-color); color:var(--hero-title-color) ; } .contact-info a:hover, .contact-info a:focus { color: var(--accent-color); } .contact-info { color: var(--primary-text-color); font-weight: 400; font-size: 14px; line-height: 1.71; } /*hero*/ .hero { color: var(--hero-title-color); background-color: var(--hero-background-color); letter-spacing: 0.06em; } .hero-title { font-weight: 900; font-size: 44px; line-height: 1.36; text-align:center; } .hero-button { color: var(--hero-title-color); background-color: var(--accent-color); font-size: 16px; line-height: 1.88; font-weight: 700; letter-spacing: 0.06em; text-align:center; } .current-portfolio-button { color: var(--hero-title-color); background-color: var(--accent-color); font-weight: 500; font-size: 16px; line-height: 1.63; letter-spacing: 0.03em; } .portfolio-button { color: var(--title-text-color); background-color: var(--secondary-background-color); font-weight: 500; font-size: 16px; line-height: 1.63; letter-spacing: 0.03em; } /*section*/ .prima-section-title, .second-section-title { color: var(--title-text-color); } .team-title { color: var(--title-text-color); font-weight: 500; font-size: 16px; line-height: 1.19; } .prima-section-title { font-size: 14px; line-height: 1.14; font-weight: 700; } .prima-section-text { font-weight: 400; font-size: 14px; line-height: 1.71; } .second-section-title { font-weight: 700; font-size: 36px; line-height: 1.17; text-align:center; } .company-team p { font-weight: 400; font-size: 16px; line-height: 1.19; } .portfolio-title { color: var( --title-text-color); font-weight: 700; font-size: 18px; line-height: 2; letter-spacing: 0.06em; } .portfolio-type { color: var(--primary-text-color); font-weight: 400; font-size: 16px; line-height: 1.88; letter-spacing: 0.03em; } button { font-family: inherit; } /*team*/ .team { background-color: var(--secondary-background-color); } a { text-decoration: none; } /*footer*/ footer { background-color: var(--hero-background-color); } .footer-contact { color:rgba(255, 255, 255, 0.6); }
0.425486
0.130618
* html { font-size: 100%; } /* line 64, ../../../../../../Applications/Fire.app/Contents/Resources/lib/ruby/compass_0.12/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss */ html { font-size: 16px; line-height: 1.5em; } /* line 3, ../sass/core/_typography.scss */ h1 { font-size: 2.5em; line-height: 1.2em; } /* line 6, ../sass/core/_typography.scss */ h2 { font-size: 1.5em; line-height: 2em; } /* line 9, ../sass/core/_typography.scss */ h3 { font-size: 1.25em; line-height: 1.2em; } /* line 12, ../sass/core/_typography.scss */ h4 { font-size: 1em; line-height: 1.5em; } /* line 15, ../sass/core/_typography.scss */ h5 { font-size: 0.875em; line-height: 1.71429em; } /* line 18, ../sass/core/_typography.scss */ h6 { font-size: 0.75em; line-height: 2em; } /* line 21, ../sass/core/_typography.scss */ p { font-size: 1em; line-height: 1.5em; } /* line 24, ../sass/core/_typography.scss */ .uppercase { text-transform: uppercase; } /* line 27, ../sass/core/_typography.scss */ .lowercase { text-transform: lowercase; } /* line 30, ../sass/core/_typography.scss */ .ellipsis { word-wrap: break-word; } /* line 5, ../sass/core/_global.scss */ body { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; background-color: #faf7f1; color: rgb(0, 0, 0); font-size: 16px; line-height: 24px; padding: 20px 0; } /* line 16, ../sass/core/_global.scss */ a { color: black; text-decoration: none; border-bottom: 1px solid black; } /* line 24, ../../../../../../Applications/Fire.app/Contents/Resources/lib/ruby/compass_0.12/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ a:hover { color: rgba(0, 0, 0, 0.47); } /* line 21, ../sass/core/_global.scss */ a:hover { text-decoration: none; } /* line 28, ../sass/core/_global.scss */ #content { position: relative; height: auto; margin-top: 30px; } @media (min-width: 768px) { /* line 28, ../sass/core/_global.scss */ #content { height: inherit; } } /* line 91, ../../../../../../Applications/Fire.app/Contents/Resources/lib/ruby/compass_extensions/susy-1.0.9/sass/susy/_media.scss */ .lte-ie9 #content { height: inherit; } /* line 37, ../sass/core/_global.scss */ #footer { margin: 2.25em auto; } /* line 39, ../sass/core/_global.scss */ #footer p { font-size: 14px; line-height: 1; } /* line 2, ../sass/partials/_bootstrap.scss */ .navbar { border-width: 0; background-color: #00acb3; border-bottom: 1px solid #00858a; -webkit-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.52); -moz-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.52); box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.52); color: #ffffff; font-family: arial,sans-serif; top: 0; position: fixed; width: inherit; } /* line 13, ../sass/partials/_bootstrap.scss */ .navbar a { cursor: pointer; font-weight: bold; } /* line 18, ../sass/partials/_bootstrap.scss */ .navbar li > a, .navbar .navbar-toggle { color: #efefef; } /* line 21, ../sass/partials/_bootstrap.scss */ .navbar li > a.btn { color: #666666; } /* line 25, ../sass/partials/_bootstrap.scss */ .navbar .dropdown-menu li a, .navbar .dropdown-menu li a:hover { color: white; } /* line 28, ../sass/partials/_bootstrap.scss */ .navbar .dropdown-menu li > a { padding-left: 30px; } /* line 31, ../sass/partials/_bootstrap.scss */ .navbar .dropdown-menu .divider { background-color: rgba(255, 255, 255, 0.1); } /* line 38, ../sass/partials/_bootstrap.scss */ .navbar li > a:hover, .navbar li > a:focus, .navbar .open, .navbar .open > a, .navbar .open > a:hover, .navbar .open > a:focus { background-color: #007b80; color: #fff; } /* line 42, ../sass/partials/_bootstrap.scss */ .navbar .logo { color: #fffffe; font-size: 20px; font-weight: 700; } /* line 47, ../sass/partials/_bootstrap.scss */ .navbar .navbar-toggle, .navbar .close { outline: 0; } /* line 50, ../sass/partials/_bootstrap.scss */ .navbar .navbar-toggle .icon-bar { background-color: #fff; } /* line 54, ../sass/partials/_bootstrap.scss */ .navbar .nav .caret, .navbar .nav a:hover .caret { border-top-color: #fffffe; border-bottom-color: #fffffe; } /* line 60, ../sass/partials/_bootstrap.scss */ .navbar .nav .open > a .caret, .navbar .nav .open > a:hover .caret, .navbar .nav .open > a:focus .caret { border-top-color: #fffffe; border-bottom-color: #fffffe; } @media (min-width: 768px) { /* line 66, ../sass/partials/_bootstrap.scss */ .navbar .dropdown-menu li a { color: #00acb3; } /* line 69, ../sass/partials/_bootstrap.scss */ .navbar .dropdown-menu .divider { background-color: #eee; } /* line 72, ../sass/partials/_bootstrap.scss */ .navbar .navbar-form { width: 40%; } } /* line 66, ../sass/partials/_bootstrap.scss */ .lte-ie9 .navbar .dropdown-menu li a { color: #00acb3; } /* line 69, ../sass/partials/_bootstrap.scss */ .lte-ie9 .navbar .dropdown-menu .divider { background-color: #eee; } /* line 72, ../sass/partials/_bootstrap.scss */ .lte-ie9 .navbar .navbar-form { width: 40%; } @media (min-width: 1024px) { /* line 77, ../sass/partials/_bootstrap.scss */ .navbar .navbar-form { width: 30%; } } /* line 77, ../sass/partials/_bootstrap.scss */ .lte-ie9 .navbar .navbar-form { width: 30%; } /* line 84, ../sass/partials/_bootstrap.scss */ .dropdown-menu { font-size: 16px; } /* line 89, ../sass/partials/_bootstrap.scss */ .row { height: inherit; } /* line 95, ../sass/partials/_bootstrap.scss */ textarea.form-control { margin: auto auto; width: 100%; min-height: 140px; font-size: 20px; line-height: 30px; color: #333; resize: none; padding: 5px; padding-bottom: 20px; } /* line 108, ../sass/partials/_bootstrap.scss */ label.checkbox { font-size: 18px; cursor: pointer; display: inline-block; vertical-align: bottom; margin: 0 10px 10px 10px; } /* line 117, ../sass/partials/_bootstrap.scss */ .btn-default { border: 2px solid #9bd4d9; } /* line 120, ../sass/partials/_bootstrap.scss */ .btn-default:hover { border: 2px solid #9bd4d9; } /* line 124, ../sass/partials/_bootstrap.scss */ .btn-default.active { border: 2px solid white; -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.7); -moz-box-shadow: 0 0 20px rgba(255, 255, 255, 0.7); box-shadow: 0 0 20px rgba(255, 255, 255, 0.7); } /* line 1, ../sass/partials/_corner.scss */ .left-bottom-corner { position: relative; text-align: center; } /* line 4, ../sass/partials/_corner.scss */ .left-bottom-corner div { margin: 0 auto; } /* line 2, ../sass/partials/_generator.scss */ #generator h1 { font-size: 24px; line-height:24px; color: #000; margin:0; padding:0; width: 100%; height:65px; display:inline-block; margin:auto auto; margin-bottom:25px; margin-top:20px; font-weight: 900; } /* line 20, ../sass/partials/_generator.scss */ #generator h2 { display: none; } /* line 23, ../sass/partials/_generator.scss */ #generator #settings { max-width: 500px; margin: 0 auto; } @media (min-width: 768px) { /* line 28, ../sass/partials/_generator.scss */ #generator h1 { display: block; } } /* line 28, ../sass/partials/_generator.scss */ .lte-ie9 #generator h1 { display: block; } /* line 33, ../sass/partials/_generator.scss */ #uploading { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.5); color: white; text-align: center; padding: 5px 0; display: none; z-index: 99999; } /* line 45, ../sass/partials/_generator.scss */ #generating { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.5); color: white; text-align: center; padding: 5px 0; display: none; z-index: 99999; } /* line 58, ../sass/partials/_generator.scss */ #templates .btn { margin: 2px 1px; padding: 0; background-size: cover; background-position: center; width: 18%; } /* line 65, ../sass/partials/_generator.scss */ #templates img { width: 100%; } /* line 70, ../sass/partials/_generator.scss */ .control-box { margin: 3em 0; } /* line 74, ../sass/partials/_generator.scss */ .banana { display: none; } /* line 1, ../sass/partials/_gototop.scss */ .gototop { position: fixed; bottom: 10px; right: 10px; width: 50px; height: 50px; z-index: 100000; cursor: pointer; background: #00acb3; color: #FFFFFF; text-align: center; font-size: 30px; line-height: 50px; border-radius: 3px; display: none; } /* line 17, ../sass/partials/_gototop.scss */ .gototop .glyphicon { bottom: 0; left: 1px; } /* line 1, ../sass/partials/_mobile.scss */ #show { width: 60px; height: 60px; background: #fff; text-align: center; line-height: 60px; position: fixed; bottom: -5px; left: 0; margin: 0 auto; font-size: 26px; cursor: pointer; -moz-border-radius-topright: 10px; -webkit-border-top-right-radius: 10px; border-top-right-radius: 10px; -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75); -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75); box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75); z-index: 99999; } /* line 16, ../sass/partials/_mobile.scss */ #show:hover { background: #eee; } @media (min-width: 768px) { /* line 1, ../sass/partials/_mobile.scss */ #show { display: none; } } /* line 91, ../../../../../../Applications/Fire.app/Contents/Resources/lib/ruby/compass_extensions/susy-1.0.9/sass/susy/_media.scss */ .lte-ie9 #show { display: none; } /* line 23, ../sass/partials/_mobile.scss */ .mobile-hide { display: none; } @media (min-width: 768px) { /* line 23, ../sass/partials/_mobile.scss */ .mobile-hide { display: initial; } } /* line 91, ../../../../../../Applications/Fire.app/Contents/Resources/lib/ruby/compass_extensions/susy-1.0.9/sass/susy/_media.scss */ .lte-ie9 .mobile-hide { display: initial; } /* line 1, ../sass/partials/_preview.scss */ .preview { position: relative; max-width: 500px; margin: 0 auto; border: 2px solid #00ada9; } /* line 17, ../sass/partials/_preview.scss */ .preview:after { z-index: -1; content: ""; display: block; padding-top: 100%; } /* line 26, ../sass/partials/_preview.scss */ .preview #userimage, .preview #coverimage { width: 100%; max-width: 500px; position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto auto; } /* line 35, ../sass/partials/_preview.scss */ .preview #userimage .inner, .preview #coverimage .inner { width: 78%; padding-top: 100%; background-repeat: no-repeat; background-size: 100% auto; background-position: 50% 50%; margin-left: 11%; } /* line 46, ../sass/partials/_preview.scss */ .preview #coverimage { overflow: hidden; } /* line 49, ../sass/partials/_preview.scss */ .preview #dragger { position: absolute; top: 0; left: 0; width: 0; height: 0; cursor: move; } /* line 58, ../sass/partials/_preview.scss */ .preview #size-slider { position: absolute; bottom: -40px; left: 0; right: 0; z-index: 100; margin: 0 20px; } /* line 67, ../sass/partials/_preview.scss */ .preview #size-slider.ui-widget-content { -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; height: 1px; } /* line 71, ../sass/partials/_preview.scss */ .preview #size-slider.ui-widget-content:before { content: ""; position: absolute; top: -21px; left: 0; display: block; width: 110%; height: 40px; background: white; -webkit-border-radius: 20px; -moz-border-radius: 20px; -ms-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; margin-left: -5%; } /* line 86, ../sass/partials/_preview.scss */ .preview #size-slider .ui-state-default, .preview #size-slider .ui-widget-content .ui-state-default, .preview #size-slider .ui-widget-header .ui-state-default { outline: none; width: 30px; height: 30px; background: #00acb3; opacity: 1; border: 0px solid transparent; -webkit-border-radius: 15px; -moz-border-radius: 15px; -ms-border-radius: 15px; -o-border-radius: 15px; border-radius: 15px; cursor: pointer; } /* line 96, ../sass/partials/_preview.scss */ .preview #size-slider .ui-slider-handle { top: -0.9em; margin-left: -0.8em; } /* line 100, ../sass/partials/_preview.scss */ .preview #size-slider .zoomin { color: #00acb3; position: absolute; top: -15px; right: -17px; } /* line 106, ../sass/partials/_preview.scss */ .preview #size-slider .zoomout { color: #00acb3; position: absolute; top: -15px; left: -17px; } /* line 113, ../sass/partials/_preview.scss */ .preview #userimage .inner { background-color: #fff; } /* line 117, ../sass/partials/_preview.scss */ .preview #loading { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; display: none; } /* line 125, ../sass/partials/_preview.scss */ .preview #loading div { position: relative; width: 100%; height: 100%; } /* line 130, ../sass/partials/_preview.scss */ .preview #loading img { width: 43px; height: 11px; position: absolute; top: 50%; left: 50%; margin-top: -5px; margin-left: -21px; } /* line 1, ../sass/partials/_social-object.scss */ .likebtn { position: relative; width: 100%; height: 20px; text-align: center; margin: auto auto; margin-bottom: 20px; margin-top: 10px; } /* line 10, ../sass/partials/_social-object.scss */ .fbcomment { position: relative; width: 100%; max-width: 400px; text-align: center; margin: auto auto; margin-top: 30px; margin-bottom: 30px; } /* line 18, ../sass/partials/_social-object.scss */ .fbcomment h3 { width: 144px; height: 37px; display: block; margin: 0; padding: 0; font-size: 1px; text-indent: -9999px; margin: auto auto; background: url(../images/feedbacktitle.png) no-repeat; margin-bottom: 10px; } /* line 31, ../sass/partials/_social-object.scss */ .plzlike { position: relative; width: 100%; font-size: 12px; color: #399; text-align: center; margin: 10px auto; display: none; } /* line 1, ../sass/partials/_rotate.scss */ #rotate_container { width: auto; height: auto; margin: auto auto; position: absolute; right: 0; left: 0; top: 0; bottom: 0; z-index: 10000; opacity: 0; overflow: hidden; } /* line 14, ../sass/partials/_rotate.scss */ #rotate_object { position: relative; } /* line 16, ../sass/partials/_rotate.scss */ #rotate_object img { width: 100%; height: 100%; } /* line 21, ../sass/partials/_rotate.scss */ #rotateCopy { position: absolute; left: 0; top: 0; z-index: -10; } /* line 27, ../sass/partials/_rotate.scss */ .ui-wrapper { overflow: visible !important; } /* line 30, ../sass/partials/_rotate.scss */ .ui-resizable-handle { background: #f5dc58; border: 1px solid #FFF; z-index: 2; } /* line 35, ../sass/partials/_rotate.scss */ .ui-rotatable-handle { background: #f5dc58; border: 1px solid #FFF; border-radius: 5px; -moz-border-radius: 5px; -o-border-radius: 5px; -webkit-border-radius: 5px; cursor: pointer; height: 10px; left: 50%; margin: 0 0 0 -5px; position: absolute; top: -5px; width: 10px; } /* line 50, ../sass/partials/_rotate.scss */ .ui-rotatable-handle.clone { visibility: hidden; } /* line 56, ../sass/partials/_rotate.scss */ .ui-resizable-ne, .ui-resizable-nw, .ui-resizable-se, .ui-resizable-sw { width: 24px; height: 24px; -webkit-border-radius: 12px; -moz-border-radius: 12px; -ms-border-radius: 12px; -o-border-radius: 12px; border-radius: 12px; background: rgba(245, 220, 88, 0.5); } @media (min-width: 1024px) { /* line 56, ../sass/partials/_rotate.scss */ .ui-resizable-ne, .ui-resizable-nw, .ui-resizable-se, .ui-resizable-sw { width: 12px; height: 12px; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; } } /* line 91, ../../../../../../Applications/Fire.app/Contents/Resources/lib/ruby/compass_extensions/susy-1.0.9/sass/susy/_media.scss */ .lte-ie9 .ui-resizable-ne, .lte-ie9 .ui-resizable-nw, .lte-ie9 .ui-resizable-se, .lte-ie9 .ui-resizable-sw { width: 12px; height: 12px; -ms-border-radius: 0px; border-radius: 0px; } /* line 1, ../sass/partials/_upload.scss */ .uploadBtn { cursor: pointer; } /* line 4, ../sass/partials/_upload.scss */ input#uploadInput { display: none; } /* line 30, ../sass/all.scss */ #formbuttons { margin-top: 6em; } /* line 34, ../sass/all.scss */ #normalSubmit { padding: 0; margin: 0; border: none; background-color: transparent; color: black; border-bottom: 2px solid black; font-size: 24px; font-weight: normal; line-height: 1.3; }
stylesheets/all.css
* html { font-size: 100%; } /* line 64, ../../../../../../Applications/Fire.app/Contents/Resources/lib/ruby/compass_0.12/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/_vertical_rhythm.scss */ html { font-size: 16px; line-height: 1.5em; } /* line 3, ../sass/core/_typography.scss */ h1 { font-size: 2.5em; line-height: 1.2em; } /* line 6, ../sass/core/_typography.scss */ h2 { font-size: 1.5em; line-height: 2em; } /* line 9, ../sass/core/_typography.scss */ h3 { font-size: 1.25em; line-height: 1.2em; } /* line 12, ../sass/core/_typography.scss */ h4 { font-size: 1em; line-height: 1.5em; } /* line 15, ../sass/core/_typography.scss */ h5 { font-size: 0.875em; line-height: 1.71429em; } /* line 18, ../sass/core/_typography.scss */ h6 { font-size: 0.75em; line-height: 2em; } /* line 21, ../sass/core/_typography.scss */ p { font-size: 1em; line-height: 1.5em; } /* line 24, ../sass/core/_typography.scss */ .uppercase { text-transform: uppercase; } /* line 27, ../sass/core/_typography.scss */ .lowercase { text-transform: lowercase; } /* line 30, ../sass/core/_typography.scss */ .ellipsis { word-wrap: break-word; } /* line 5, ../sass/core/_global.scss */ body { -webkit-text-size-adjust: 100%; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; background-color: #faf7f1; color: rgb(0, 0, 0); font-size: 16px; line-height: 24px; padding: 20px 0; } /* line 16, ../sass/core/_global.scss */ a { color: black; text-decoration: none; border-bottom: 1px solid black; } /* line 24, ../../../../../../Applications/Fire.app/Contents/Resources/lib/ruby/compass_0.12/compass-0.12.2/frameworks/compass/stylesheets/compass/typography/links/_link-colors.scss */ a:hover { color: rgba(0, 0, 0, 0.47); } /* line 21, ../sass/core/_global.scss */ a:hover { text-decoration: none; } /* line 28, ../sass/core/_global.scss */ #content { position: relative; height: auto; margin-top: 30px; } @media (min-width: 768px) { /* line 28, ../sass/core/_global.scss */ #content { height: inherit; } } /* line 91, ../../../../../../Applications/Fire.app/Contents/Resources/lib/ruby/compass_extensions/susy-1.0.9/sass/susy/_media.scss */ .lte-ie9 #content { height: inherit; } /* line 37, ../sass/core/_global.scss */ #footer { margin: 2.25em auto; } /* line 39, ../sass/core/_global.scss */ #footer p { font-size: 14px; line-height: 1; } /* line 2, ../sass/partials/_bootstrap.scss */ .navbar { border-width: 0; background-color: #00acb3; border-bottom: 1px solid #00858a; -webkit-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.52); -moz-box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.52); box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.52); color: #ffffff; font-family: arial,sans-serif; top: 0; position: fixed; width: inherit; } /* line 13, ../sass/partials/_bootstrap.scss */ .navbar a { cursor: pointer; font-weight: bold; } /* line 18, ../sass/partials/_bootstrap.scss */ .navbar li > a, .navbar .navbar-toggle { color: #efefef; } /* line 21, ../sass/partials/_bootstrap.scss */ .navbar li > a.btn { color: #666666; } /* line 25, ../sass/partials/_bootstrap.scss */ .navbar .dropdown-menu li a, .navbar .dropdown-menu li a:hover { color: white; } /* line 28, ../sass/partials/_bootstrap.scss */ .navbar .dropdown-menu li > a { padding-left: 30px; } /* line 31, ../sass/partials/_bootstrap.scss */ .navbar .dropdown-menu .divider { background-color: rgba(255, 255, 255, 0.1); } /* line 38, ../sass/partials/_bootstrap.scss */ .navbar li > a:hover, .navbar li > a:focus, .navbar .open, .navbar .open > a, .navbar .open > a:hover, .navbar .open > a:focus { background-color: #007b80; color: #fff; } /* line 42, ../sass/partials/_bootstrap.scss */ .navbar .logo { color: #fffffe; font-size: 20px; font-weight: 700; } /* line 47, ../sass/partials/_bootstrap.scss */ .navbar .navbar-toggle, .navbar .close { outline: 0; } /* line 50, ../sass/partials/_bootstrap.scss */ .navbar .navbar-toggle .icon-bar { background-color: #fff; } /* line 54, ../sass/partials/_bootstrap.scss */ .navbar .nav .caret, .navbar .nav a:hover .caret { border-top-color: #fffffe; border-bottom-color: #fffffe; } /* line 60, ../sass/partials/_bootstrap.scss */ .navbar .nav .open > a .caret, .navbar .nav .open > a:hover .caret, .navbar .nav .open > a:focus .caret { border-top-color: #fffffe; border-bottom-color: #fffffe; } @media (min-width: 768px) { /* line 66, ../sass/partials/_bootstrap.scss */ .navbar .dropdown-menu li a { color: #00acb3; } /* line 69, ../sass/partials/_bootstrap.scss */ .navbar .dropdown-menu .divider { background-color: #eee; } /* line 72, ../sass/partials/_bootstrap.scss */ .navbar .navbar-form { width: 40%; } } /* line 66, ../sass/partials/_bootstrap.scss */ .lte-ie9 .navbar .dropdown-menu li a { color: #00acb3; } /* line 69, ../sass/partials/_bootstrap.scss */ .lte-ie9 .navbar .dropdown-menu .divider { background-color: #eee; } /* line 72, ../sass/partials/_bootstrap.scss */ .lte-ie9 .navbar .navbar-form { width: 40%; } @media (min-width: 1024px) { /* line 77, ../sass/partials/_bootstrap.scss */ .navbar .navbar-form { width: 30%; } } /* line 77, ../sass/partials/_bootstrap.scss */ .lte-ie9 .navbar .navbar-form { width: 30%; } /* line 84, ../sass/partials/_bootstrap.scss */ .dropdown-menu { font-size: 16px; } /* line 89, ../sass/partials/_bootstrap.scss */ .row { height: inherit; } /* line 95, ../sass/partials/_bootstrap.scss */ textarea.form-control { margin: auto auto; width: 100%; min-height: 140px; font-size: 20px; line-height: 30px; color: #333; resize: none; padding: 5px; padding-bottom: 20px; } /* line 108, ../sass/partials/_bootstrap.scss */ label.checkbox { font-size: 18px; cursor: pointer; display: inline-block; vertical-align: bottom; margin: 0 10px 10px 10px; } /* line 117, ../sass/partials/_bootstrap.scss */ .btn-default { border: 2px solid #9bd4d9; } /* line 120, ../sass/partials/_bootstrap.scss */ .btn-default:hover { border: 2px solid #9bd4d9; } /* line 124, ../sass/partials/_bootstrap.scss */ .btn-default.active { border: 2px solid white; -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.7); -moz-box-shadow: 0 0 20px rgba(255, 255, 255, 0.7); box-shadow: 0 0 20px rgba(255, 255, 255, 0.7); } /* line 1, ../sass/partials/_corner.scss */ .left-bottom-corner { position: relative; text-align: center; } /* line 4, ../sass/partials/_corner.scss */ .left-bottom-corner div { margin: 0 auto; } /* line 2, ../sass/partials/_generator.scss */ #generator h1 { font-size: 24px; line-height:24px; color: #000; margin:0; padding:0; width: 100%; height:65px; display:inline-block; margin:auto auto; margin-bottom:25px; margin-top:20px; font-weight: 900; } /* line 20, ../sass/partials/_generator.scss */ #generator h2 { display: none; } /* line 23, ../sass/partials/_generator.scss */ #generator #settings { max-width: 500px; margin: 0 auto; } @media (min-width: 768px) { /* line 28, ../sass/partials/_generator.scss */ #generator h1 { display: block; } } /* line 28, ../sass/partials/_generator.scss */ .lte-ie9 #generator h1 { display: block; } /* line 33, ../sass/partials/_generator.scss */ #uploading { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.5); color: white; text-align: center; padding: 5px 0; display: none; z-index: 99999; } /* line 45, ../sass/partials/_generator.scss */ #generating { position: fixed; bottom: 0; left: 0; right: 0; background: rgba(0, 0, 0, 0.5); color: white; text-align: center; padding: 5px 0; display: none; z-index: 99999; } /* line 58, ../sass/partials/_generator.scss */ #templates .btn { margin: 2px 1px; padding: 0; background-size: cover; background-position: center; width: 18%; } /* line 65, ../sass/partials/_generator.scss */ #templates img { width: 100%; } /* line 70, ../sass/partials/_generator.scss */ .control-box { margin: 3em 0; } /* line 74, ../sass/partials/_generator.scss */ .banana { display: none; } /* line 1, ../sass/partials/_gototop.scss */ .gototop { position: fixed; bottom: 10px; right: 10px; width: 50px; height: 50px; z-index: 100000; cursor: pointer; background: #00acb3; color: #FFFFFF; text-align: center; font-size: 30px; line-height: 50px; border-radius: 3px; display: none; } /* line 17, ../sass/partials/_gototop.scss */ .gototop .glyphicon { bottom: 0; left: 1px; } /* line 1, ../sass/partials/_mobile.scss */ #show { width: 60px; height: 60px; background: #fff; text-align: center; line-height: 60px; position: fixed; bottom: -5px; left: 0; margin: 0 auto; font-size: 26px; cursor: pointer; -moz-border-radius-topright: 10px; -webkit-border-top-right-radius: 10px; border-top-right-radius: 10px; -webkit-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75); -moz-box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75); box-shadow: 0px 0px 10px 0px rgba(50, 50, 50, 0.75); z-index: 99999; } /* line 16, ../sass/partials/_mobile.scss */ #show:hover { background: #eee; } @media (min-width: 768px) { /* line 1, ../sass/partials/_mobile.scss */ #show { display: none; } } /* line 91, ../../../../../../Applications/Fire.app/Contents/Resources/lib/ruby/compass_extensions/susy-1.0.9/sass/susy/_media.scss */ .lte-ie9 #show { display: none; } /* line 23, ../sass/partials/_mobile.scss */ .mobile-hide { display: none; } @media (min-width: 768px) { /* line 23, ../sass/partials/_mobile.scss */ .mobile-hide { display: initial; } } /* line 91, ../../../../../../Applications/Fire.app/Contents/Resources/lib/ruby/compass_extensions/susy-1.0.9/sass/susy/_media.scss */ .lte-ie9 .mobile-hide { display: initial; } /* line 1, ../sass/partials/_preview.scss */ .preview { position: relative; max-width: 500px; margin: 0 auto; border: 2px solid #00ada9; } /* line 17, ../sass/partials/_preview.scss */ .preview:after { z-index: -1; content: ""; display: block; padding-top: 100%; } /* line 26, ../sass/partials/_preview.scss */ .preview #userimage, .preview #coverimage { width: 100%; max-width: 500px; position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto auto; } /* line 35, ../sass/partials/_preview.scss */ .preview #userimage .inner, .preview #coverimage .inner { width: 78%; padding-top: 100%; background-repeat: no-repeat; background-size: 100% auto; background-position: 50% 50%; margin-left: 11%; } /* line 46, ../sass/partials/_preview.scss */ .preview #coverimage { overflow: hidden; } /* line 49, ../sass/partials/_preview.scss */ .preview #dragger { position: absolute; top: 0; left: 0; width: 0; height: 0; cursor: move; } /* line 58, ../sass/partials/_preview.scss */ .preview #size-slider { position: absolute; bottom: -40px; left: 0; right: 0; z-index: 100; margin: 0 20px; } /* line 67, ../sass/partials/_preview.scss */ .preview #size-slider.ui-widget-content { -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; height: 1px; } /* line 71, ../sass/partials/_preview.scss */ .preview #size-slider.ui-widget-content:before { content: ""; position: absolute; top: -21px; left: 0; display: block; width: 110%; height: 40px; background: white; -webkit-border-radius: 20px; -moz-border-radius: 20px; -ms-border-radius: 20px; -o-border-radius: 20px; border-radius: 20px; margin-left: -5%; } /* line 86, ../sass/partials/_preview.scss */ .preview #size-slider .ui-state-default, .preview #size-slider .ui-widget-content .ui-state-default, .preview #size-slider .ui-widget-header .ui-state-default { outline: none; width: 30px; height: 30px; background: #00acb3; opacity: 1; border: 0px solid transparent; -webkit-border-radius: 15px; -moz-border-radius: 15px; -ms-border-radius: 15px; -o-border-radius: 15px; border-radius: 15px; cursor: pointer; } /* line 96, ../sass/partials/_preview.scss */ .preview #size-slider .ui-slider-handle { top: -0.9em; margin-left: -0.8em; } /* line 100, ../sass/partials/_preview.scss */ .preview #size-slider .zoomin { color: #00acb3; position: absolute; top: -15px; right: -17px; } /* line 106, ../sass/partials/_preview.scss */ .preview #size-slider .zoomout { color: #00acb3; position: absolute; top: -15px; left: -17px; } /* line 113, ../sass/partials/_preview.scss */ .preview #userimage .inner { background-color: #fff; } /* line 117, ../sass/partials/_preview.scss */ .preview #loading { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; display: none; } /* line 125, ../sass/partials/_preview.scss */ .preview #loading div { position: relative; width: 100%; height: 100%; } /* line 130, ../sass/partials/_preview.scss */ .preview #loading img { width: 43px; height: 11px; position: absolute; top: 50%; left: 50%; margin-top: -5px; margin-left: -21px; } /* line 1, ../sass/partials/_social-object.scss */ .likebtn { position: relative; width: 100%; height: 20px; text-align: center; margin: auto auto; margin-bottom: 20px; margin-top: 10px; } /* line 10, ../sass/partials/_social-object.scss */ .fbcomment { position: relative; width: 100%; max-width: 400px; text-align: center; margin: auto auto; margin-top: 30px; margin-bottom: 30px; } /* line 18, ../sass/partials/_social-object.scss */ .fbcomment h3 { width: 144px; height: 37px; display: block; margin: 0; padding: 0; font-size: 1px; text-indent: -9999px; margin: auto auto; background: url(../images/feedbacktitle.png) no-repeat; margin-bottom: 10px; } /* line 31, ../sass/partials/_social-object.scss */ .plzlike { position: relative; width: 100%; font-size: 12px; color: #399; text-align: center; margin: 10px auto; display: none; } /* line 1, ../sass/partials/_rotate.scss */ #rotate_container { width: auto; height: auto; margin: auto auto; position: absolute; right: 0; left: 0; top: 0; bottom: 0; z-index: 10000; opacity: 0; overflow: hidden; } /* line 14, ../sass/partials/_rotate.scss */ #rotate_object { position: relative; } /* line 16, ../sass/partials/_rotate.scss */ #rotate_object img { width: 100%; height: 100%; } /* line 21, ../sass/partials/_rotate.scss */ #rotateCopy { position: absolute; left: 0; top: 0; z-index: -10; } /* line 27, ../sass/partials/_rotate.scss */ .ui-wrapper { overflow: visible !important; } /* line 30, ../sass/partials/_rotate.scss */ .ui-resizable-handle { background: #f5dc58; border: 1px solid #FFF; z-index: 2; } /* line 35, ../sass/partials/_rotate.scss */ .ui-rotatable-handle { background: #f5dc58; border: 1px solid #FFF; border-radius: 5px; -moz-border-radius: 5px; -o-border-radius: 5px; -webkit-border-radius: 5px; cursor: pointer; height: 10px; left: 50%; margin: 0 0 0 -5px; position: absolute; top: -5px; width: 10px; } /* line 50, ../sass/partials/_rotate.scss */ .ui-rotatable-handle.clone { visibility: hidden; } /* line 56, ../sass/partials/_rotate.scss */ .ui-resizable-ne, .ui-resizable-nw, .ui-resizable-se, .ui-resizable-sw { width: 24px; height: 24px; -webkit-border-radius: 12px; -moz-border-radius: 12px; -ms-border-radius: 12px; -o-border-radius: 12px; border-radius: 12px; background: rgba(245, 220, 88, 0.5); } @media (min-width: 1024px) { /* line 56, ../sass/partials/_rotate.scss */ .ui-resizable-ne, .ui-resizable-nw, .ui-resizable-se, .ui-resizable-sw { width: 12px; height: 12px; -webkit-border-radius: 0px; -moz-border-radius: 0px; -ms-border-radius: 0px; -o-border-radius: 0px; border-radius: 0px; } } /* line 91, ../../../../../../Applications/Fire.app/Contents/Resources/lib/ruby/compass_extensions/susy-1.0.9/sass/susy/_media.scss */ .lte-ie9 .ui-resizable-ne, .lte-ie9 .ui-resizable-nw, .lte-ie9 .ui-resizable-se, .lte-ie9 .ui-resizable-sw { width: 12px; height: 12px; -ms-border-radius: 0px; border-radius: 0px; } /* line 1, ../sass/partials/_upload.scss */ .uploadBtn { cursor: pointer; } /* line 4, ../sass/partials/_upload.scss */ input#uploadInput { display: none; } /* line 30, ../sass/all.scss */ #formbuttons { margin-top: 6em; } /* line 34, ../sass/all.scss */ #normalSubmit { padding: 0; margin: 0; border: none; background-color: transparent; color: black; border-bottom: 2px solid black; font-size: 24px; font-weight: normal; line-height: 1.3; }
0.228845
0.043569
form.chat *{ transition:all .5s; box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; } form.chat { margin:0; cursor:default; position:absolute; left:0; right:0; bottom:0; top:0; -webkit-touch-callout: none; /* iOS Safari */ -webkit-user-select: none; /* Chrome/Safari/Opera */ -khtml-user-select: none; /* Konqueror */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE/Edge */ user-select: none; } form.chat span.spinner{ -moz-animation: loading-bar 2s 1; -webkit-animation: loading-bar 2s 1; animation: loading-bar 2s 1; display: block; height: 2px; background-color: #00e34d; transition: width 0.2s; position:absolute; top:0; left:0; right:0; z-index:4 } form.chat .messages{ display:block; overflow-x: hidden; overflow-y: scroll; position:relative; height:90%; width:100%; padding:2% 3%; border-bottom:1px solid #ecf0f1; } form.chat ::-webkit-scrollbar {width: 3px; height:1px;transition:all .5s;z-index:10;} form.chat ::-webkit-scrollbar-track {background-color: white;} form.chat ::-webkit-scrollbar-thumb { background-color: #bec4c8; border-radius:3px; } form.chat .message{ display:block; width:98%; padding:0.5%; } form.chat .message p{ margin:0; } form.chat .myMessage, form.chat .fromThem { max-width: 50%; word-wrap: break-word; margin-bottom: 20px; } form.chat .message:hover .myMessage{ -webkit-transform: translateX(-130px); transform: translateX(-130px); } form.chat .message:hover .fromThem{ -webkit-transform: translateX(130px); transform: translateX(130px); } form.chat .message:hover date { opacity: 1; } form.chat .myMessage,.fromThem{ position: relative; padding: 10px 20px; color: white; border-radius: 25px; clear: both; font: 400 15px 'Open Sans', sans-serif; } form.chat .myMessage { background: #00e34d; color:white; float:right; clear:both; border-bottom-right-radius: 20px 0px\9; } form.chat .myMessage:before { content: ""; position: absolute; z-index: 1; bottom: -2px; right: -8px; height: 19px; border-right: 20px solid #00e34d; border-bottom-left-radius: 16px 14px; -webkit-transform: translate(0, -2px); transform: translate(0, -2px); border-bottom-left-radius: 15px 0px\9; transform: translate(-1px, -2px)\9; } form.chat .myMessage:after { content: ""; position: absolute; z-index: 1; bottom: -2px; right: -42px; width: 12px; height: 20px; background: white; border-bottom-left-radius: 10px; -webkit-transform: translate(-30px, -2px); transform: translate(-30px, -2px); } form.chat .fromThem { background: #E5E5EA; color: black; float: left; clear:both; border-bottom-left-radius: 30px 0px\9; } form.chat .fromThem:before { content: ""; position: absolute; z-index: 2; bottom: -2px; left: -7px; height: 19px; border-left: 20px solid #E5E5EA; border-bottom-right-radius: 16px 14px; -webkit-transform: translate(0, -2px); transform: translate(0, -2px); border-bottom-right-radius: 15px 0px\9; transform: translate(-1px, -2px)\9; } form.chat .fromThem:after { content: ""; position: absolute; z-index: 3; bottom: -2px; left: 4px; width: 26px; height: 20px; background: white; border-bottom-right-radius: 10px; -webkit-transform: translate(-30px, -2px); transform: translate(-30px, -2px); } form.chat date { position:absolute; top: 10px; font-size:14px; white-space:nowrap; vertical-align:middle; color: #8b8b90; opacity: 0; z-index:4; } form.chat .myMessage date { left: 105%; } form.chat .fromThem date { right: 105%; } form.chat input{ font: 400 13px 'Open Sans', sans-serif; border:0; padding:0 15px; height:10%; outline:0; } form.chat input[type='text']{ width:73%; float:left; } form.chat input[type='submit']{ width:23%; background:transparent; color:#00E34D; font-weight:700; text-align:right; float:right; } form.chat .myMessage,form.chat .fromThem{ font-size:12px; } form.chat .message:hover .myMessage{ transform: translateY(18px); -webkit-transform: translateY(18px); } form.chat .message:hover .fromThem{ transform: translateY(18px); -webkit-transform: translateY(18px); } form.chat .myMessage date,form.chat .fromThem date { top: -20px; left:auto; right:0; font-size:12px; } form.chat .myMessage, form.chat .fromThem { max-width: 90%; } @-moz-keyframes loading-bar { 0% { width: 0%; } 90% { width: 90%; } 100% { width: 100%; } } @-webkit-keyframes loading-bar { 0% { width: 0%; } 90% { width: 90%; } 100% { width: 100%; } } @keyframes loading-bar { 0% { width: 0%; } 90% { width: 90%; } 100% { width: 100%; } } /* DEMO */ .iphone{ width:300px; height:609px; background-image:url('http://www.adobewordpress.com/tasarim/images/iphone6.png'); background-size:100% 100%; margin:0 auto; position:relative; } .border{ position:absolute; top:12.3%;right:7%;left:7%;bottom:12%; overflow:hidden; } a.article{ position:fixed; bottom:15px;left:15px; display:table; text-decoration:none; color:white; background-color:#00e34d; padding: 10px 20px; border-radius: 25px; font: 400 15px 'Open Sans', sans-serif; }
spectrum/public/css/messages.css
form.chat *{ transition:all .5s; box-sizing:border-box; -webkit-box-sizing:border-box; -moz-box-sizing:border-box; } form.chat { margin:0; cursor:default; position:absolute; left:0; right:0; bottom:0; top:0; -webkit-touch-callout: none; /* iOS Safari */ -webkit-user-select: none; /* Chrome/Safari/Opera */ -khtml-user-select: none; /* Konqueror */ -moz-user-select: none; /* Firefox */ -ms-user-select: none; /* IE/Edge */ user-select: none; } form.chat span.spinner{ -moz-animation: loading-bar 2s 1; -webkit-animation: loading-bar 2s 1; animation: loading-bar 2s 1; display: block; height: 2px; background-color: #00e34d; transition: width 0.2s; position:absolute; top:0; left:0; right:0; z-index:4 } form.chat .messages{ display:block; overflow-x: hidden; overflow-y: scroll; position:relative; height:90%; width:100%; padding:2% 3%; border-bottom:1px solid #ecf0f1; } form.chat ::-webkit-scrollbar {width: 3px; height:1px;transition:all .5s;z-index:10;} form.chat ::-webkit-scrollbar-track {background-color: white;} form.chat ::-webkit-scrollbar-thumb { background-color: #bec4c8; border-radius:3px; } form.chat .message{ display:block; width:98%; padding:0.5%; } form.chat .message p{ margin:0; } form.chat .myMessage, form.chat .fromThem { max-width: 50%; word-wrap: break-word; margin-bottom: 20px; } form.chat .message:hover .myMessage{ -webkit-transform: translateX(-130px); transform: translateX(-130px); } form.chat .message:hover .fromThem{ -webkit-transform: translateX(130px); transform: translateX(130px); } form.chat .message:hover date { opacity: 1; } form.chat .myMessage,.fromThem{ position: relative; padding: 10px 20px; color: white; border-radius: 25px; clear: both; font: 400 15px 'Open Sans', sans-serif; } form.chat .myMessage { background: #00e34d; color:white; float:right; clear:both; border-bottom-right-radius: 20px 0px\9; } form.chat .myMessage:before { content: ""; position: absolute; z-index: 1; bottom: -2px; right: -8px; height: 19px; border-right: 20px solid #00e34d; border-bottom-left-radius: 16px 14px; -webkit-transform: translate(0, -2px); transform: translate(0, -2px); border-bottom-left-radius: 15px 0px\9; transform: translate(-1px, -2px)\9; } form.chat .myMessage:after { content: ""; position: absolute; z-index: 1; bottom: -2px; right: -42px; width: 12px; height: 20px; background: white; border-bottom-left-radius: 10px; -webkit-transform: translate(-30px, -2px); transform: translate(-30px, -2px); } form.chat .fromThem { background: #E5E5EA; color: black; float: left; clear:both; border-bottom-left-radius: 30px 0px\9; } form.chat .fromThem:before { content: ""; position: absolute; z-index: 2; bottom: -2px; left: -7px; height: 19px; border-left: 20px solid #E5E5EA; border-bottom-right-radius: 16px 14px; -webkit-transform: translate(0, -2px); transform: translate(0, -2px); border-bottom-right-radius: 15px 0px\9; transform: translate(-1px, -2px)\9; } form.chat .fromThem:after { content: ""; position: absolute; z-index: 3; bottom: -2px; left: 4px; width: 26px; height: 20px; background: white; border-bottom-right-radius: 10px; -webkit-transform: translate(-30px, -2px); transform: translate(-30px, -2px); } form.chat date { position:absolute; top: 10px; font-size:14px; white-space:nowrap; vertical-align:middle; color: #8b8b90; opacity: 0; z-index:4; } form.chat .myMessage date { left: 105%; } form.chat .fromThem date { right: 105%; } form.chat input{ font: 400 13px 'Open Sans', sans-serif; border:0; padding:0 15px; height:10%; outline:0; } form.chat input[type='text']{ width:73%; float:left; } form.chat input[type='submit']{ width:23%; background:transparent; color:#00E34D; font-weight:700; text-align:right; float:right; } form.chat .myMessage,form.chat .fromThem{ font-size:12px; } form.chat .message:hover .myMessage{ transform: translateY(18px); -webkit-transform: translateY(18px); } form.chat .message:hover .fromThem{ transform: translateY(18px); -webkit-transform: translateY(18px); } form.chat .myMessage date,form.chat .fromThem date { top: -20px; left:auto; right:0; font-size:12px; } form.chat .myMessage, form.chat .fromThem { max-width: 90%; } @-moz-keyframes loading-bar { 0% { width: 0%; } 90% { width: 90%; } 100% { width: 100%; } } @-webkit-keyframes loading-bar { 0% { width: 0%; } 90% { width: 90%; } 100% { width: 100%; } } @keyframes loading-bar { 0% { width: 0%; } 90% { width: 90%; } 100% { width: 100%; } } /* DEMO */ .iphone{ width:300px; height:609px; background-image:url('http://www.adobewordpress.com/tasarim/images/iphone6.png'); background-size:100% 100%; margin:0 auto; position:relative; } .border{ position:absolute; top:12.3%;right:7%;left:7%;bottom:12%; overflow:hidden; } a.article{ position:fixed; bottom:15px;left:15px; display:table; text-decoration:none; color:white; background-color:#00e34d; padding: 10px 20px; border-radius: 25px; font: 400 15px 'Open Sans', sans-serif; }
0.293607
0.053329
p { margin-bottom: 0.1in; widows: 2; orphans: 2 } p.c44 { margin-bottom: 0 } p.c43 { margin-top: 0.47in; margin-bottom: 0 } span.c42 { position: absolute; top: 0; left: 0; width: 6in; height: 0.02in; border: none; padding: 0; background: #fff } p.c41 { margin-bottom: 0; text-align: justify; text-indent: -0.1in } p.c40 { font-weight: bold; margin-bottom: 0; text-align: justify } p.c39 { margin-bottom: 0; text-align: justify } p.c38 { margin-bottom: 0; text-align: justify } p.c37 { margin-bottom: 0; text-align: justify } p.c36 { margin-bottom: 0; text-align: justify } p.c35 { margin-bottom: 0; text-align: justify; text-indent: 0.03in } p.c34 { margin-bottom: 0; text-align: justify } p.c33 { margin-bottom: 0; text-align: justify; text-indent: 0.3in } p.c32 { margin-bottom: 0; text-align: justify; text-indent: 0.39in } p.c31 { margin-bottom: 0; text-align: justify } p.c30 { margin-bottom: 0; text-align: justify } p.c29 { margin-bottom: 0; text-align: justify; text-indent: 0.5in } p.c28 { margin-bottom: 0; text-align: justify } p.c27 { margin-bottom: 0; text-align: justify } span.c26 { font-style: italic; font-weight: bold } p.c25 { margin-bottom: 0; text-align: justify; text-indent: 0.25in } p.c24 { margin-bottom: 0; text-align: justify } p.c23 { font-style: italic; margin-bottom: 0; text-align: justify } p.c22 { margin-bottom: 0; text-align: justify; text-indent: 0.25in } span.c21 { font-weight: bold } p.c20 { margin-bottom: 0; text-align: justify } td.c19 { border-top: none; border-bottom: 1px solid #000; border-left: none; border-right: none; padding: 0 } p.c18 { text-align: justify } td.c17 { border: none; padding: 0 } td.c16 { border-top: 1px solid #000; border-bottom: none; border-left: none; border-right: none; padding: 0 } p.c15 { text-align: justify } td.c14 { border-top: 1px solid #000; border-bottom: 1px solid #000; border-left: none; border-right: none; padding: 0 } p.c13 { text-align: justify } p.c12 { margin-bottom: 0; text-align: justify; text-indent: 0.3in } p.c11 { margin-bottom: 0; text-align: justify; text-indent: 0.5in } span.c10 { font-style: italic } p.c8 { margin-bottom: 0; text-align: justify } span.c7 { font-weight: bold } p.c6 { margin-bottom: 0; text-align: justify } span.c5 { font-style: italic } p.c3 { margin-bottom: 0; text-align: center } p.c2 { margin-bottom: 0; text-align: center } span.c1 { font-weight: bold }
raw/Atlas/80.css
p { margin-bottom: 0.1in; widows: 2; orphans: 2 } p.c44 { margin-bottom: 0 } p.c43 { margin-top: 0.47in; margin-bottom: 0 } span.c42 { position: absolute; top: 0; left: 0; width: 6in; height: 0.02in; border: none; padding: 0; background: #fff } p.c41 { margin-bottom: 0; text-align: justify; text-indent: -0.1in } p.c40 { font-weight: bold; margin-bottom: 0; text-align: justify } p.c39 { margin-bottom: 0; text-align: justify } p.c38 { margin-bottom: 0; text-align: justify } p.c37 { margin-bottom: 0; text-align: justify } p.c36 { margin-bottom: 0; text-align: justify } p.c35 { margin-bottom: 0; text-align: justify; text-indent: 0.03in } p.c34 { margin-bottom: 0; text-align: justify } p.c33 { margin-bottom: 0; text-align: justify; text-indent: 0.3in } p.c32 { margin-bottom: 0; text-align: justify; text-indent: 0.39in } p.c31 { margin-bottom: 0; text-align: justify } p.c30 { margin-bottom: 0; text-align: justify } p.c29 { margin-bottom: 0; text-align: justify; text-indent: 0.5in } p.c28 { margin-bottom: 0; text-align: justify } p.c27 { margin-bottom: 0; text-align: justify } span.c26 { font-style: italic; font-weight: bold } p.c25 { margin-bottom: 0; text-align: justify; text-indent: 0.25in } p.c24 { margin-bottom: 0; text-align: justify } p.c23 { font-style: italic; margin-bottom: 0; text-align: justify } p.c22 { margin-bottom: 0; text-align: justify; text-indent: 0.25in } span.c21 { font-weight: bold } p.c20 { margin-bottom: 0; text-align: justify } td.c19 { border-top: none; border-bottom: 1px solid #000; border-left: none; border-right: none; padding: 0 } p.c18 { text-align: justify } td.c17 { border: none; padding: 0 } td.c16 { border-top: 1px solid #000; border-bottom: none; border-left: none; border-right: none; padding: 0 } p.c15 { text-align: justify } td.c14 { border-top: 1px solid #000; border-bottom: 1px solid #000; border-left: none; border-right: none; padding: 0 } p.c13 { text-align: justify } p.c12 { margin-bottom: 0; text-align: justify; text-indent: 0.3in } p.c11 { margin-bottom: 0; text-align: justify; text-indent: 0.5in } span.c10 { font-style: italic } p.c8 { margin-bottom: 0; text-align: justify } span.c7 { font-weight: bold } p.c6 { margin-bottom: 0; text-align: justify } span.c5 { font-style: italic } p.c3 { margin-bottom: 0; text-align: center } p.c2 { margin-bottom: 0; text-align: center } span.c1 { font-weight: bold }
0.460289
0.142918
body { font-family: "Noto Sans", sans-serif; margin: 0em; } h1, h2, h3, h5 { font-family: "Fjalla One", sans-serif; } element.style { } .col-md-6 { min-height: 1px; padding-right: 0px; padding-left: 15px; background-color: #fcfbfb; font-family: sans-serif; font-size: 15px; position: relative; } *, :after, :before { box-sizing: border-box; } .Page-title span { color: #b00725; } .Page-title { font-family: reef; font-size: 2.5em; margin-bottom: 25px; margin-top: 0; } .text-gray { color: #7d7d7d; } element.style { } .center-block { display: block; margin-right: auto; margin-left: auto; } .carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail > img, .thumbnail a > img { display: block; max-width: 100%; height: auto; } img { vertical-align: middle; } img { border: 0; } *, :after, :before { box-sizing: border-box; } element.style { } *, :after, :before { box-sizing: border-box; } user agent stylesheet em { font-style: italic; } b, strong { font-weight: 600; } user agent stylesheet strong { font-weight: bold; } style Attribute { text-align: right; } .h4, h4 { font-size: 15px; } .h4 { font-family: inherit; line-height: 1.1; color: inherit; } .cover { height: 560px; background-image: url(https://cdn.glitch.com/8927fd4a-cdec-4be8-a5f5-d703f6c37560%2Fpara%20portada.JPG?v=1625083432355); color: white; background-size: cover; background-position: center; background-color: rgba(0, 0, 0, 0.4); background-blend-mode: darken; } .cover-small { height: 200px; background-blend-mode: normal; } .card { border: 0 !important; boxshadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.6); } .card-title { min-height: 3rem; } .card-text { min-height: 10rem; } .bg-body { background-color: #bf323200 !important; } .img-slider { display: flex; margin: 0px; padding: 0; } .slider { width: 400px; height: 300px; margin: auto; overflow: hidden; } .slider ul { display: flex; padding: 0; width: 400%; animation: cambio 20s infinite; animation-direction: alternate; } .slider li { width: 100%; padding: 0; list-style: none; } .slider img { width: 100%; } @keyframes cambio { 0% { margin-left: 0; } 20% { margin-left: 0; } 25% { margin-left: -100%; } 45% { margin-left: -100%; } 50% { margin-left: -200%; } 70% { margin-left: -200%; } 75% { margin-left: -300%; } 100% { margin-left: -300%; } } .product-stripe { overflow-x: scroll; padding-top: 1rem; padding-bottom: 1rem; } .stripe-container { display: column; } .stripe-container { display: flex; } .stripe-container .card { width: 300px; flex-shrink: 0; margin-right: 1rem; } main { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: flex; align-items: center; color: #9b9b9b; line-height: 3.8; font-size: 80px; text-transform: uppercase; font-weight: bold; } footer { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: flex; flex-flow: row wrap; padding: 30px; color: #fff; background-color: #011c39; } .footer > * { flex: 1 100%; } .footer-left { margin-right: 1.25em; margin-bottom: 2em; } .footer-left img { width: 50%; } h2 { font-weight: 400; font-size: 17px; } .footer ul { list-style: none; padding-left: 0; } .footer li { line-height: 2em; } .footer a { text-decoration: none; } .footer-right { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: flex; flex-flow: row wrap; } .footer-right > * { flex: 1 50%; margin-right: 1.25em; } .box a { color: #999; } .footer-bottom { text-align: center; color: #999; padding-top: 0px; } .footer-left p { padding-right: 15%; color: #999; } * { box-sizing: border-box; } .container { width: 100%; max-width: 1000px; margin: auto; } @media screen and (min-width: 600px) { .footer-right > * { flex: 1; } .footer-left { flex: 1 0px; } .footer-right { flex: 2 0px; } } @media (max-width: 600px) { .foooter { padding: 15px; } main { font-size: 55px; } } nav ul li a { display: block; color: #fff; padding: 1 20px; font-weight: impact; } .meses { font-size: 35px; color: #0C1A1D; text-align: center; } .col-title { padding-right: 0px; padding-left: 15px; background-color: #E7EAEB; font-family: sans-serif; font-size: 15px; position: relative; } .images { display: flex; flex-wrap: wrap; justify-content: center; } .images-2 { margin-right: 1rem; padding-bottom: 1rem; } .picture-left { padding-right: 0px; padding-left: 15px; padding-bottom: 1rem; } element.style { background-color: #040404; } .navbar { position: fixed; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; padding-top: 0.5rem; padding-bottom: 0.5rem; flex-direction: row; width: 100%; z-index: 1; } .Align-items-center { align-items: flex-start; } .h1, h8 { margin-top: 200px; font-size: 58px; font-family: "Fjalla One", sans-serif; } .coover { height: 360px; background-image: url(https://cdn.glitch.com/8927fd4a-cdec-4be8-a5f5-d703f6c37560%2Frsz_1nicolas-lafargue-nirdrvqn4ne-unsplash.jpg?v=1622827244631); color: white; background-size: cover; background-position: center; background-color: rgba(0, 0, 0, 0.4); background-blend-mode: darken; } .colum { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: flex; flex-flow: row wrap; padding: 30px; color: #000000; } .boox { color: #3a3c3e; } .boox li { list-style-type: disc; font-size: 15px; } .colum ul { list-style: none; padding-left: 0; } .vista { display: block; margin: 0 auto; max-width: 100%; width: 80%; } .img-responsivo, .thumbnail > img, .thumbnail a > img { display: block; max-width: 80%; height: auto; } .boox1 li { list-style-type: none; font-size: 10px; } .link-staf { } .subtex { min-height: 1px; padding-right: 0px; padding-left: 15px; background-color: #fcfbfb; font-family: sans-serif; font-size: 15px; position: relative; flex: 0 0 auto; width: 50%; } } .immage { } .immagee { display: block; margin-right: auto; margin-left: auto; } .parraf { font-size: 25px; font-family: "Fjalla One", sans-serif; color: #000000; } }
style.css
body { font-family: "Noto Sans", sans-serif; margin: 0em; } h1, h2, h3, h5 { font-family: "Fjalla One", sans-serif; } element.style { } .col-md-6 { min-height: 1px; padding-right: 0px; padding-left: 15px; background-color: #fcfbfb; font-family: sans-serif; font-size: 15px; position: relative; } *, :after, :before { box-sizing: border-box; } .Page-title span { color: #b00725; } .Page-title { font-family: reef; font-size: 2.5em; margin-bottom: 25px; margin-top: 0; } .text-gray { color: #7d7d7d; } element.style { } .center-block { display: block; margin-right: auto; margin-left: auto; } .carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail > img, .thumbnail a > img { display: block; max-width: 100%; height: auto; } img { vertical-align: middle; } img { border: 0; } *, :after, :before { box-sizing: border-box; } element.style { } *, :after, :before { box-sizing: border-box; } user agent stylesheet em { font-style: italic; } b, strong { font-weight: 600; } user agent stylesheet strong { font-weight: bold; } style Attribute { text-align: right; } .h4, h4 { font-size: 15px; } .h4 { font-family: inherit; line-height: 1.1; color: inherit; } .cover { height: 560px; background-image: url(https://cdn.glitch.com/8927fd4a-cdec-4be8-a5f5-d703f6c37560%2Fpara%20portada.JPG?v=1625083432355); color: white; background-size: cover; background-position: center; background-color: rgba(0, 0, 0, 0.4); background-blend-mode: darken; } .cover-small { height: 200px; background-blend-mode: normal; } .card { border: 0 !important; boxshadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.6); } .card-title { min-height: 3rem; } .card-text { min-height: 10rem; } .bg-body { background-color: #bf323200 !important; } .img-slider { display: flex; margin: 0px; padding: 0; } .slider { width: 400px; height: 300px; margin: auto; overflow: hidden; } .slider ul { display: flex; padding: 0; width: 400%; animation: cambio 20s infinite; animation-direction: alternate; } .slider li { width: 100%; padding: 0; list-style: none; } .slider img { width: 100%; } @keyframes cambio { 0% { margin-left: 0; } 20% { margin-left: 0; } 25% { margin-left: -100%; } 45% { margin-left: -100%; } 50% { margin-left: -200%; } 70% { margin-left: -200%; } 75% { margin-left: -300%; } 100% { margin-left: -300%; } } .product-stripe { overflow-x: scroll; padding-top: 1rem; padding-bottom: 1rem; } .stripe-container { display: column; } .stripe-container { display: flex; } .stripe-container .card { width: 300px; flex-shrink: 0; margin-right: 1rem; } main { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: flex; align-items: center; color: #9b9b9b; line-height: 3.8; font-size: 80px; text-transform: uppercase; font-weight: bold; } footer { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: flex; flex-flow: row wrap; padding: 30px; color: #fff; background-color: #011c39; } .footer > * { flex: 1 100%; } .footer-left { margin-right: 1.25em; margin-bottom: 2em; } .footer-left img { width: 50%; } h2 { font-weight: 400; font-size: 17px; } .footer ul { list-style: none; padding-left: 0; } .footer li { line-height: 2em; } .footer a { text-decoration: none; } .footer-right { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: flex; flex-flow: row wrap; } .footer-right > * { flex: 1 50%; margin-right: 1.25em; } .box a { color: #999; } .footer-bottom { text-align: center; color: #999; padding-top: 0px; } .footer-left p { padding-right: 15%; color: #999; } * { box-sizing: border-box; } .container { width: 100%; max-width: 1000px; margin: auto; } @media screen and (min-width: 600px) { .footer-right > * { flex: 1; } .footer-left { flex: 1 0px; } .footer-right { flex: 2 0px; } } @media (max-width: 600px) { .foooter { padding: 15px; } main { font-size: 55px; } } nav ul li a { display: block; color: #fff; padding: 1 20px; font-weight: impact; } .meses { font-size: 35px; color: #0C1A1D; text-align: center; } .col-title { padding-right: 0px; padding-left: 15px; background-color: #E7EAEB; font-family: sans-serif; font-size: 15px; position: relative; } .images { display: flex; flex-wrap: wrap; justify-content: center; } .images-2 { margin-right: 1rem; padding-bottom: 1rem; } .picture-left { padding-right: 0px; padding-left: 15px; padding-bottom: 1rem; } element.style { background-color: #040404; } .navbar { position: fixed; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; padding-top: 0.5rem; padding-bottom: 0.5rem; flex-direction: row; width: 100%; z-index: 1; } .Align-items-center { align-items: flex-start; } .h1, h8 { margin-top: 200px; font-size: 58px; font-family: "Fjalla One", sans-serif; } .coover { height: 360px; background-image: url(https://cdn.glitch.com/8927fd4a-cdec-4be8-a5f5-d703f6c37560%2Frsz_1nicolas-lafargue-nirdrvqn4ne-unsplash.jpg?v=1622827244631); color: white; background-size: cover; background-position: center; background-color: rgba(0, 0, 0, 0.4); background-blend-mode: darken; } .colum { display: -webkit-flex; display: -moz-flex; display: -ms-flex; display: flex; flex-flow: row wrap; padding: 30px; color: #000000; } .boox { color: #3a3c3e; } .boox li { list-style-type: disc; font-size: 15px; } .colum ul { list-style: none; padding-left: 0; } .vista { display: block; margin: 0 auto; max-width: 100%; width: 80%; } .img-responsivo, .thumbnail > img, .thumbnail a > img { display: block; max-width: 80%; height: auto; } .boox1 li { list-style-type: none; font-size: 10px; } .link-staf { } .subtex { min-height: 1px; padding-right: 0px; padding-left: 15px; background-color: #fcfbfb; font-family: sans-serif; font-size: 15px; position: relative; flex: 0 0 auto; width: 50%; } } .immage { } .immagee { display: block; margin-right: auto; margin-left: auto; } .parraf { font-size: 25px; font-family: "Fjalla One", sans-serif; color: #000000; } }
0.591959
0.090816
@import url("default.css"); #manual_body { background-color: white; } #manual_body p { font-size: 13px; } #manual_body div.related { margin-bottom: 1.2em; padding: 0.5em 0; border-top: 1px solid #ccc; margin-top: 0.5em; } #manual_body div.related a:hover { color: #0095C4; } #manual_body div.related:first-child { border-top: 0; border-bottom: 1px solid #ccc; } #manual_body .inline-search { display: inline; } #manual_body form.inline-search input { display: inline; } #manual_body form.inline-search input[type="submit"] { width: 30px; } #manual_body div.sphinxsidebar { background-color: #eeeeee; border-radius: 5px; line-height: 130%; font-size: smaller; margin-bottom: 20px; } #manual_body div.sphinxsidebar h3, #manual_body div.sphinxsidebar h4 { margin-top: 1.5em; } #manual_body div.sphinxsidebarwrapper > h3:first-child { margin-top: 0.2em; } #manual_body div.sphinxsidebarwrapper > ul > li > ul > li { margin-bottom: 0.4em; } #manual_body div.sphinxsidebar a:hover { color: #0095C4; } #manual_body form.inline-search input, #manual_body div.sphinxsidebar input { font-family: 'Lucida Grande',Arial,sans-serif; border: 1px solid #999999; font-size: smaller; border-radius: 3px; } #manual_body div.sphinxsidebar input[type=text] { max-width: 150px; } #manual_body div.body { padding: 0 0 0 1.2em; } #manual_body div.body p { line-height: 140%; } #manual_body div.body h1, #manual_body div.body h2, #manual_body div.body h3, #manual_body div.body h4, #manual_body div.body h5, #manual_body div.body h6 { margin: 0; border: 0; padding: 0.3em 0; } #manual_body div.body hr { border: 0; background-color: #ccc; height: 1px; } #manual_body div.body pre { border-radius: 3px; border: 1px solid #ac9; } #manual_body div.body #manual_body div.admonition, #manual_body div.body div.impl-detail { border-radius: 3px; } #manual_body div.body div.impl-detail > p { margin: 0; } #manual_body div.body div.seealso { border: 1px solid #dddd66; } #manual_body div.body a { color: #0072aa; } #manual_body div.body a:visited { color: #6363bb; } #manual_body div.body a:hover { color: #00B0E4; } #manual_body tt, #manual_body code, #manual_body pre { font-family: monospace, sans-serif; font-size: 96.5%; } #manual_body div.body tt, #manual_body div.body code { border-radius: 3px; } #manual_body div.body tt.descname, #manual_body div.body code.descname { font-size: 120%; } #manual_body div.body tt.xref, #manual_body div.body a tt, #manual_body div.body code.xref,#manual_body div.body a code { font-weight: normal; } #manual_body .deprecated { border-radius: 3px; } #manual_body table.docutils { border: 1px solid #ddd; min-width: 20%; border-radius: 3px; margin-top: 10px; margin-bottom: 10px; } #manual_body table.docutils td, #manual_body table.docutils th { border: 1px solid #ddd !important; border-radius: 3px; } #manual_body table p,#manual_body table li { text-align: left !important; } #manual_body table.docutils th { background-color: #eee; padding: 0.3em 0.5em; } #manual_body table.docutils td { background-color: white; padding: 0.3em 0.5em; } #manual_body table.footnote, #manual_body table.footnote td { border: 0 !important; } #manual_body div.footer { line-height: 150%; margin-top: -2em; text-align: right; width: auto; margin-right: 10px; } #manual_body div.footer a:hover { color: #0095C4; } #manual_body .refcount { color: #060; } #manual_body .stableabi { color: #229; } #manual_body .highlight { background: none !important; } #main_slider a { text-decoration: none; font-style: normal; } #main_slider .current { font-weight: 800 !important; } #main_slider h3 { font-size: 16px; } #main_slider ul li a { font-size: 12px; }
webapp/manual/css/theme.css
@import url("default.css"); #manual_body { background-color: white; } #manual_body p { font-size: 13px; } #manual_body div.related { margin-bottom: 1.2em; padding: 0.5em 0; border-top: 1px solid #ccc; margin-top: 0.5em; } #manual_body div.related a:hover { color: #0095C4; } #manual_body div.related:first-child { border-top: 0; border-bottom: 1px solid #ccc; } #manual_body .inline-search { display: inline; } #manual_body form.inline-search input { display: inline; } #manual_body form.inline-search input[type="submit"] { width: 30px; } #manual_body div.sphinxsidebar { background-color: #eeeeee; border-radius: 5px; line-height: 130%; font-size: smaller; margin-bottom: 20px; } #manual_body div.sphinxsidebar h3, #manual_body div.sphinxsidebar h4 { margin-top: 1.5em; } #manual_body div.sphinxsidebarwrapper > h3:first-child { margin-top: 0.2em; } #manual_body div.sphinxsidebarwrapper > ul > li > ul > li { margin-bottom: 0.4em; } #manual_body div.sphinxsidebar a:hover { color: #0095C4; } #manual_body form.inline-search input, #manual_body div.sphinxsidebar input { font-family: 'Lucida Grande',Arial,sans-serif; border: 1px solid #999999; font-size: smaller; border-radius: 3px; } #manual_body div.sphinxsidebar input[type=text] { max-width: 150px; } #manual_body div.body { padding: 0 0 0 1.2em; } #manual_body div.body p { line-height: 140%; } #manual_body div.body h1, #manual_body div.body h2, #manual_body div.body h3, #manual_body div.body h4, #manual_body div.body h5, #manual_body div.body h6 { margin: 0; border: 0; padding: 0.3em 0; } #manual_body div.body hr { border: 0; background-color: #ccc; height: 1px; } #manual_body div.body pre { border-radius: 3px; border: 1px solid #ac9; } #manual_body div.body #manual_body div.admonition, #manual_body div.body div.impl-detail { border-radius: 3px; } #manual_body div.body div.impl-detail > p { margin: 0; } #manual_body div.body div.seealso { border: 1px solid #dddd66; } #manual_body div.body a { color: #0072aa; } #manual_body div.body a:visited { color: #6363bb; } #manual_body div.body a:hover { color: #00B0E4; } #manual_body tt, #manual_body code, #manual_body pre { font-family: monospace, sans-serif; font-size: 96.5%; } #manual_body div.body tt, #manual_body div.body code { border-radius: 3px; } #manual_body div.body tt.descname, #manual_body div.body code.descname { font-size: 120%; } #manual_body div.body tt.xref, #manual_body div.body a tt, #manual_body div.body code.xref,#manual_body div.body a code { font-weight: normal; } #manual_body .deprecated { border-radius: 3px; } #manual_body table.docutils { border: 1px solid #ddd; min-width: 20%; border-radius: 3px; margin-top: 10px; margin-bottom: 10px; } #manual_body table.docutils td, #manual_body table.docutils th { border: 1px solid #ddd !important; border-radius: 3px; } #manual_body table p,#manual_body table li { text-align: left !important; } #manual_body table.docutils th { background-color: #eee; padding: 0.3em 0.5em; } #manual_body table.docutils td { background-color: white; padding: 0.3em 0.5em; } #manual_body table.footnote, #manual_body table.footnote td { border: 0 !important; } #manual_body div.footer { line-height: 150%; margin-top: -2em; text-align: right; width: auto; margin-right: 10px; } #manual_body div.footer a:hover { color: #0095C4; } #manual_body .refcount { color: #060; } #manual_body .stableabi { color: #229; } #manual_body .highlight { background: none !important; } #main_slider a { text-decoration: none; font-style: normal; } #main_slider .current { font-weight: 800 !important; } #main_slider h3 { font-size: 16px; } #main_slider ul li a { font-size: 12px; }
0.319334
0.076649
body { /* Corps */ font-family: 'Roboto Condensed', sans-serif; font-size: 20px; } /*******************************************************************************************/ /* div class topnav */ .topnav { width: 100%; background-color: #333; overflow: hidden; height: 65px; } /* Style the links inside the navigation bar */ .topnav a { float: left; color: #f2f2f2; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 18px; position: -webkit-sticky; height: auto; line-height: 50px; } /* Change the color of links on hover */ .topnav a:hover { background-color: #ddd; color: black; } /* Add a color to the active/current link */ .topnav a.active { background-color: #4caf50; color: white; } .topnav input [type="text"], input[type="password"] { float: right; position: center; text-align: center; } .topnav button { float: right; position: center; text-align: center; } /*******************************************************************************************/ /* The dropdown container */ .dropdown { float: right; overflow: hidden; } /* Dropdown button */ .dropdown .dropbtn { font-size: 18px; border: none; outline: none; color: white; height: auto; line-height: 50px; padding: 14px 16px; background-color: inherit; font-family: inherit; /* Important for vertical align on mobile phones */ margin: 0; /* Important for vertical align on mobile phones */ } .dropdown:hover .dropbtn { background-color: #62c7fb; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); z-index: 1; } /* Links inside the dropdown */ .dropdown-content a { float: none; color: black; padding: 9px 11px; text-decoration: none; height: auto; font-style: italic; line-height: 15px; display: block; text-align: left; } /* Add a grey background color to dropdown links on hover */ .dropdown-content a:hover { background-color: #8e9eab; } /* Show the dropdown menu on hover */ .dropdown:hover .dropdown-content { display: block; } /*******************************************************************************************/ #logout { float: right; } .login-form { width: available; margin: 0 auto; } .login-form form { margin-bottom: 15px; background: #f7f7f7; box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3); padding: 30px; } .login-form h2 { margin: 0 0 15px; } .login-form p { margin-top: 15px; line-height: 170%; } .form-control, .btn { min-height: 38px; border-radius: 2px; } .btn { font-size: 15px; font-weight: bold; } #buttonV { background-color: #4caf50; } .swal2-popup { font-size: 1.3rem !important; } .login-form input{ font-size: large; } .sidebar { margin: 0; padding: 0; width: 200px; background-color: #f1f1f1; position: fixed; height: 100%; overflow: auto; } /* Sidebar links */ .sidebar a { display: block; color: black; padding: 16px; text-decoration: none; } /* Active/current link */ .sidebar a.active { background-color: #4CAF50; color: white; } /* Links on mouse-over */ .sidebar a:hover:not(.active) { background-color: #555; color: white; } /* Page content. The value of the margin-left property should match the value of the sidebar's width property */ div.content { margin-left: 200px; padding: 1px 16px; height: 1000px; } /* On screens that are less than 700px wide, make the sidebar into a topbar */ @media screen and (max-width: 700px) { .sidebar { width: 100%; height: auto; position: relative; } .sidebar a {float: left;} div.content {margin-left: 0;} } /* On screens that are less than 400px, display the bar vertically, instead of horizontally */ @media screen and (max-width: 400px) { .sidebar a { text-align: center; float: none; } }
benchmark/php/php-abac/description.css
body { /* Corps */ font-family: 'Roboto Condensed', sans-serif; font-size: 20px; } /*******************************************************************************************/ /* div class topnav */ .topnav { width: 100%; background-color: #333; overflow: hidden; height: 65px; } /* Style the links inside the navigation bar */ .topnav a { float: left; color: #f2f2f2; text-align: center; padding: 14px 16px; text-decoration: none; font-size: 18px; position: -webkit-sticky; height: auto; line-height: 50px; } /* Change the color of links on hover */ .topnav a:hover { background-color: #ddd; color: black; } /* Add a color to the active/current link */ .topnav a.active { background-color: #4caf50; color: white; } .topnav input [type="text"], input[type="password"] { float: right; position: center; text-align: center; } .topnav button { float: right; position: center; text-align: center; } /*******************************************************************************************/ /* The dropdown container */ .dropdown { float: right; overflow: hidden; } /* Dropdown button */ .dropdown .dropbtn { font-size: 18px; border: none; outline: none; color: white; height: auto; line-height: 50px; padding: 14px 16px; background-color: inherit; font-family: inherit; /* Important for vertical align on mobile phones */ margin: 0; /* Important for vertical align on mobile phones */ } .dropdown:hover .dropbtn { background-color: #62c7fb; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2); z-index: 1; } /* Links inside the dropdown */ .dropdown-content a { float: none; color: black; padding: 9px 11px; text-decoration: none; height: auto; font-style: italic; line-height: 15px; display: block; text-align: left; } /* Add a grey background color to dropdown links on hover */ .dropdown-content a:hover { background-color: #8e9eab; } /* Show the dropdown menu on hover */ .dropdown:hover .dropdown-content { display: block; } /*******************************************************************************************/ #logout { float: right; } .login-form { width: available; margin: 0 auto; } .login-form form { margin-bottom: 15px; background: #f7f7f7; box-shadow: 0 2px 2px rgba(0, 0, 0, 0.3); padding: 30px; } .login-form h2 { margin: 0 0 15px; } .login-form p { margin-top: 15px; line-height: 170%; } .form-control, .btn { min-height: 38px; border-radius: 2px; } .btn { font-size: 15px; font-weight: bold; } #buttonV { background-color: #4caf50; } .swal2-popup { font-size: 1.3rem !important; } .login-form input{ font-size: large; } .sidebar { margin: 0; padding: 0; width: 200px; background-color: #f1f1f1; position: fixed; height: 100%; overflow: auto; } /* Sidebar links */ .sidebar a { display: block; color: black; padding: 16px; text-decoration: none; } /* Active/current link */ .sidebar a.active { background-color: #4CAF50; color: white; } /* Links on mouse-over */ .sidebar a:hover:not(.active) { background-color: #555; color: white; } /* Page content. The value of the margin-left property should match the value of the sidebar's width property */ div.content { margin-left: 200px; padding: 1px 16px; height: 1000px; } /* On screens that are less than 700px wide, make the sidebar into a topbar */ @media screen and (max-width: 700px) { .sidebar { width: 100%; height: auto; position: relative; } .sidebar a {float: left;} div.content {margin-left: 0;} } /* On screens that are less than 400px, display the bar vertically, instead of horizontally */ @media screen and (max-width: 400px) { .sidebar a { text-align: center; float: none; } }
0.354657
0.073463
ul li{ list-style: none; } ul{ margin: 0; padding: 0;} p{ margin: 0} .detail_top{height: 100px; border-bottom: 1px solid #cfcfcf; position: relative; padding-right: 120px;} .info_left{ float: left; display: inline-block;margin-right:10px; } .header_img{ float: left; width: 48px; height: 48px; border:1px solid #d5dbdf; border-radius: 50%; overflow: hidden; margin:30px 15px 0 0; } .header_img img { height: 48px; width: 48px; display: block;} .name_p{ display: inline-block; margin-top: 30px; line-height:24px; float: left;} /*.name_p .editer_box{ position: absolute; left: 35px; top: 65px; width: 184px; padding: 0 45px 0 10px; height: 32px; border: 1px solid #e7e7e8; border-radius: 3px; background-color: #f0f0f0; z-index: 100;}*/ .user_name{ line-height:30px; margin-top: 9px; position: relative; } .user_permissions{ display: inline-block; padding: 0 10px; background-color: #53bb9b; height: 18px; line-height: 18px; color: #fff;} .info_right{margin-top: 49px;} .info_right li{ display: inline-block; float: left; margin-right: 40px; font-size: 14px; color: #666;} .info_right li i{ margin-right: 6px;} .group_title{ height: 60px; line-height: 60px; font-size: 16px; color: #323757; position: relative; text-align: left; padding-left: 20px;} .group_title:before{content: ''; position: absolute; top:28px; left:0px;height: 6px; width: 6px; overflow: hidden; border-radius: 3px; background-color: #f05f5c;} .group_title:after{content: ''; position: absolute; width: 2px; height: 2px; background-color: #fff; overflow: hidden; border-radius: 1px; top: 30px; left: 2px;} .group_list li{height: 44px; line-height: 44px; border-bottom: 1px solid #cfcfcf; font-size: 14px; color: #333;} .delete_group{margin-top:10px; width: 95px; position: absolute; right: 0; top:31px;} .delete_group button{ font-size: 12px; height: 26px; line-height: 26px; } .delete_group button i{ margin-right:5px; font-size: 18px; vertical-align: top; } .delete_group span{ vertical-align: top;} .um_group_title:before{content: ''; position: absolute; top:28px; left:0px;height: 6px; width: 6px; overflow: hidden; border-radius: 3px; background-color: #f05f5c;} .um_group_title:after{content: ''; position: absolute; width: 2px; height: 2px; background-color: #fff; overflow: hidden; border-radius: 1px; top: 24px; left: 2px;} .self_input_group{width: 173px; float: right; margin-top: 14px;} .self_input_group_addon{background-color: #fff; padding: 2px 7px; } .self_input_group_addon i{ color: #237dcd; font-size: 18px;} .group_user_list li{padding: 20px 5px 0; width: 88px; display: inline-block; float: left; position: relative;} .u_img{ width:48px; height: 48px; border-radius: 50%; overflow: hidden; margin: 0 auto; border:1px solid #d5dbdf;} .u_img img{ display:block;} .group_user_list{ display: inline-block;} .group_user_list li p{padding-top: 10px; color: #333; text-align: center;} .group_user_list li i{ position: absolute; cursor: pointer; top: 17px; right: 11px; color: #ef5350; font-size: 12px; display: none;} .group_user_list li:hover i { display: block;} .self_form_control{height: 26px; padding: 0 12px; line-height: 26px;}
src/app/module/um/group/um-group-detail.component.css
ul li{ list-style: none; } ul{ margin: 0; padding: 0;} p{ margin: 0} .detail_top{height: 100px; border-bottom: 1px solid #cfcfcf; position: relative; padding-right: 120px;} .info_left{ float: left; display: inline-block;margin-right:10px; } .header_img{ float: left; width: 48px; height: 48px; border:1px solid #d5dbdf; border-radius: 50%; overflow: hidden; margin:30px 15px 0 0; } .header_img img { height: 48px; width: 48px; display: block;} .name_p{ display: inline-block; margin-top: 30px; line-height:24px; float: left;} /*.name_p .editer_box{ position: absolute; left: 35px; top: 65px; width: 184px; padding: 0 45px 0 10px; height: 32px; border: 1px solid #e7e7e8; border-radius: 3px; background-color: #f0f0f0; z-index: 100;}*/ .user_name{ line-height:30px; margin-top: 9px; position: relative; } .user_permissions{ display: inline-block; padding: 0 10px; background-color: #53bb9b; height: 18px; line-height: 18px; color: #fff;} .info_right{margin-top: 49px;} .info_right li{ display: inline-block; float: left; margin-right: 40px; font-size: 14px; color: #666;} .info_right li i{ margin-right: 6px;} .group_title{ height: 60px; line-height: 60px; font-size: 16px; color: #323757; position: relative; text-align: left; padding-left: 20px;} .group_title:before{content: ''; position: absolute; top:28px; left:0px;height: 6px; width: 6px; overflow: hidden; border-radius: 3px; background-color: #f05f5c;} .group_title:after{content: ''; position: absolute; width: 2px; height: 2px; background-color: #fff; overflow: hidden; border-radius: 1px; top: 30px; left: 2px;} .group_list li{height: 44px; line-height: 44px; border-bottom: 1px solid #cfcfcf; font-size: 14px; color: #333;} .delete_group{margin-top:10px; width: 95px; position: absolute; right: 0; top:31px;} .delete_group button{ font-size: 12px; height: 26px; line-height: 26px; } .delete_group button i{ margin-right:5px; font-size: 18px; vertical-align: top; } .delete_group span{ vertical-align: top;} .um_group_title:before{content: ''; position: absolute; top:28px; left:0px;height: 6px; width: 6px; overflow: hidden; border-radius: 3px; background-color: #f05f5c;} .um_group_title:after{content: ''; position: absolute; width: 2px; height: 2px; background-color: #fff; overflow: hidden; border-radius: 1px; top: 24px; left: 2px;} .self_input_group{width: 173px; float: right; margin-top: 14px;} .self_input_group_addon{background-color: #fff; padding: 2px 7px; } .self_input_group_addon i{ color: #237dcd; font-size: 18px;} .group_user_list li{padding: 20px 5px 0; width: 88px; display: inline-block; float: left; position: relative;} .u_img{ width:48px; height: 48px; border-radius: 50%; overflow: hidden; margin: 0 auto; border:1px solid #d5dbdf;} .u_img img{ display:block;} .group_user_list{ display: inline-block;} .group_user_list li p{padding-top: 10px; color: #333; text-align: center;} .group_user_list li i{ position: absolute; cursor: pointer; top: 17px; right: 11px; color: #ef5350; font-size: 12px; display: none;} .group_user_list li:hover i { display: block;} .self_form_control{height: 26px; padding: 0 12px; line-height: 26px;}
0.392337
0.226912
body { font-family: -apple-system, sans-serif; height: 100vh; margin: 0; } :root { --color-logo-green: #0dbd8b; --color-dull-green: #e5f7f2; --color-dull-grey: #f4f6fa; --color-dark-grey: #3f3d3d; --color-blue-pill: #238cf5; --color-dull-red: #f3e2f2; --color-dark-red: #eb4962; --color-router-blue: #388c8c; --color-switch-blue: #6d8bac; --color-ems-purple: #7e69ff; --topo-panel-width: 150px; --topnav-height: 0px; --toggle-box-size: 40px; --toggle-box-margin: 5px; } * { box-sizing: border-box; } .left { background-color: var(--color-dull-grey); width: max-content; height: calc(100vh - var(--topnav-height)); overflow: scroll; left: 0; top: 0; } .left * { color: var(--color-dark-grey); } .left-padding { padding: 10px; padding-top: 0; } .shift-right { padding-left: 50px; } .main { background-color: white; float: left; width: 100vw; height: calc(100vh - var(--topnav-height)); position: relative; } .right { background-color: var(--color-dull-grey); width: 0; height: calc(100vh - var(--topnav-height)); overflow: scroll; right: 0; top: 0; } .right * { color: var(--color-dark-grey); } .right-padding { padding: 10px; padding-top: 0; } .toggle { width: var(--toggle-box-size); height: var(--toggle-box-size); color: var(--color-dull-grey); font-size: 20px; background-color: var(--color-logo-green); align-items: center; border-radius: 10%; margin: var(--toggle-box-margin); } .toggle:hover { color: var(--color-dark-grey); background-color: var(--color-logo-green); } .topLeft { top: 0; left: 0; } .topMiddle { top: 0; left: 50%; } .topRight { top: 0; right: 0; } .topRightTwo { top: 0; font-size: 30px; right: calc(var(--toggle-box-size) + var(--toggle-box-margin)); } .bottomLeft { bottom: 0; left: 0; } .bottomMiddle { bottom: 0; left: 50%; } .bottomRight { bottom: 0; right: 0; } .overlay { z-index: 7; position: absolute; border: none; opacity: 1; } .toggle-overlay { z-index: 9; position: absolute; border: none; opacity: 1; } .panel-overlay { z-index: 8; position: absolute; border: none; opacity: 1; } .icon-bar { width: var(--topo-panel-width); /* Set a specific width */ background-color: var(--color-dark-grey); /* Dark-grey background */ margin: 5px; } .icon-bar-center { top: 0; left: calc(50% - var(--topo-panel-width) / 2); } .icon-bar a:hover { background-color: var(--color-dull-grey); color: var(--color-dark-grey); } .icon-bar a.active { background-color: var(--color-logo-green); /* Add an active/current color */ color: var(--color-dull-grey); } .icon-bar a { float: left; /* Float links side by side */ text-align: center; /* Center-align text */ width: 25%; /* Equal width (4 icons with 25% width each = 100%) */ padding: 12px 0; /* Some top and bottom padding */ transition: all 0.3s ease; /* Add transition for hover effects */ color: var(--color-dull-grey); /* White text color */ font-size: 18px; /* Increased font size */ text-decoration: none; } .netselect { position: relative; } /* Tooltip container */ .tooltip { display: inline-block; } /* Tooltip text */ .tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: var(--color-dark-grey); color: var(--color-dull-grey); text-align: center; padding: 5px 0; border-radius: 6px; font-size: 18px; /* Position the tooltip text */ position: absolute; z-index: 1; /* Fade in tooltip */ opacity: 0; transition: opacity 0.3s; } /* Show the tooltip text when you mouse over the tooltip container */ .tooltip:hover .tooltiptext { visibility: visible; opacity: 1; } .tooltip-left { top: 0px; bottom:auto; right: 128%; } .tooltip-left::after { content: ""; position: absolute; top: 50%; left: 100%; margin-top: -5px; border-width: 5px; border-style: solid; border-color: transparent transparent transparent var(--color-dark-grey); } .tooltip-right { top: 0px; left: 125%; } .tooltip-right::after { content: ""; position: absolute; top: 50%; right: 100%; margin-top: -5px; border-width: 5px; border-style: solid; border-color: transparent var(--color-dark-grey) transparent transparent; } .tooltip-bottom { top: 135%; left: 50%; margin-left: -60px; } .tooltip-bottom::after { content: ""; position: absolute; bottom: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: transparent transparent var(--color-dark-grey) transparent; } .tooltip-top { bottom: 125%; left: 50%; margin-left: -60px; } .tooltip-top::after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: var(--color-dark-grey) transparent transparent transparent; }
cmd/pineconesim/ui/default.css
body { font-family: -apple-system, sans-serif; height: 100vh; margin: 0; } :root { --color-logo-green: #0dbd8b; --color-dull-green: #e5f7f2; --color-dull-grey: #f4f6fa; --color-dark-grey: #3f3d3d; --color-blue-pill: #238cf5; --color-dull-red: #f3e2f2; --color-dark-red: #eb4962; --color-router-blue: #388c8c; --color-switch-blue: #6d8bac; --color-ems-purple: #7e69ff; --topo-panel-width: 150px; --topnav-height: 0px; --toggle-box-size: 40px; --toggle-box-margin: 5px; } * { box-sizing: border-box; } .left { background-color: var(--color-dull-grey); width: max-content; height: calc(100vh - var(--topnav-height)); overflow: scroll; left: 0; top: 0; } .left * { color: var(--color-dark-grey); } .left-padding { padding: 10px; padding-top: 0; } .shift-right { padding-left: 50px; } .main { background-color: white; float: left; width: 100vw; height: calc(100vh - var(--topnav-height)); position: relative; } .right { background-color: var(--color-dull-grey); width: 0; height: calc(100vh - var(--topnav-height)); overflow: scroll; right: 0; top: 0; } .right * { color: var(--color-dark-grey); } .right-padding { padding: 10px; padding-top: 0; } .toggle { width: var(--toggle-box-size); height: var(--toggle-box-size); color: var(--color-dull-grey); font-size: 20px; background-color: var(--color-logo-green); align-items: center; border-radius: 10%; margin: var(--toggle-box-margin); } .toggle:hover { color: var(--color-dark-grey); background-color: var(--color-logo-green); } .topLeft { top: 0; left: 0; } .topMiddle { top: 0; left: 50%; } .topRight { top: 0; right: 0; } .topRightTwo { top: 0; font-size: 30px; right: calc(var(--toggle-box-size) + var(--toggle-box-margin)); } .bottomLeft { bottom: 0; left: 0; } .bottomMiddle { bottom: 0; left: 50%; } .bottomRight { bottom: 0; right: 0; } .overlay { z-index: 7; position: absolute; border: none; opacity: 1; } .toggle-overlay { z-index: 9; position: absolute; border: none; opacity: 1; } .panel-overlay { z-index: 8; position: absolute; border: none; opacity: 1; } .icon-bar { width: var(--topo-panel-width); /* Set a specific width */ background-color: var(--color-dark-grey); /* Dark-grey background */ margin: 5px; } .icon-bar-center { top: 0; left: calc(50% - var(--topo-panel-width) / 2); } .icon-bar a:hover { background-color: var(--color-dull-grey); color: var(--color-dark-grey); } .icon-bar a.active { background-color: var(--color-logo-green); /* Add an active/current color */ color: var(--color-dull-grey); } .icon-bar a { float: left; /* Float links side by side */ text-align: center; /* Center-align text */ width: 25%; /* Equal width (4 icons with 25% width each = 100%) */ padding: 12px 0; /* Some top and bottom padding */ transition: all 0.3s ease; /* Add transition for hover effects */ color: var(--color-dull-grey); /* White text color */ font-size: 18px; /* Increased font size */ text-decoration: none; } .netselect { position: relative; } /* Tooltip container */ .tooltip { display: inline-block; } /* Tooltip text */ .tooltip .tooltiptext { visibility: hidden; width: 120px; background-color: var(--color-dark-grey); color: var(--color-dull-grey); text-align: center; padding: 5px 0; border-radius: 6px; font-size: 18px; /* Position the tooltip text */ position: absolute; z-index: 1; /* Fade in tooltip */ opacity: 0; transition: opacity 0.3s; } /* Show the tooltip text when you mouse over the tooltip container */ .tooltip:hover .tooltiptext { visibility: visible; opacity: 1; } .tooltip-left { top: 0px; bottom:auto; right: 128%; } .tooltip-left::after { content: ""; position: absolute; top: 50%; left: 100%; margin-top: -5px; border-width: 5px; border-style: solid; border-color: transparent transparent transparent var(--color-dark-grey); } .tooltip-right { top: 0px; left: 125%; } .tooltip-right::after { content: ""; position: absolute; top: 50%; right: 100%; margin-top: -5px; border-width: 5px; border-style: solid; border-color: transparent var(--color-dark-grey) transparent transparent; } .tooltip-bottom { top: 135%; left: 50%; margin-left: -60px; } .tooltip-bottom::after { content: ""; position: absolute; bottom: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: transparent transparent var(--color-dark-grey) transparent; } .tooltip-top { bottom: 125%; left: 50%; margin-left: -60px; } .tooltip-top::after { content: ""; position: absolute; top: 100%; left: 50%; margin-left: -5px; border-width: 5px; border-style: solid; border-color: var(--color-dark-grey) transparent transparent transparent; }
0.648021
0.119434
*, *::before, *::after { box-sizing: border-box; } /* line 6, ../sass/style.scss */ html { font: 1em 'Montserrat', sans-serif; background: #f0f0fa; } /* line 10, ../sass/style.scss */ #css-element { width: 500px; height: 350px; border: none; box-shadow: 0 3px 2px rgba(0, 0, 0, 0.5); } /* line 16, ../sass/style.scss */ .face { position: relative; display: inline-block; height: 100%; perspective: 500px; perspective-origin: 0% 70%; } /* line 23, ../sass/style.scss */ .face:nth-child(odd) { perspective-origin: 100% 70%; } /* line 26, ../sass/style.scss */ .face div { position: absolute; width: 100%; height: 100%; right: 0; transform-origin: top right; } /* line 33, ../sass/style.scss */ .face:nth-child(odd) div { right: auto; left: 0; transform-origin: top left; } /* line 38, ../sass/style.scss */ .face span { position: absolute; width: 100%; height: 100%; } /* line 42, ../sass/style.scss */ .face--even span { background: black; background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.6) 90%, black), rgba(0, 0, 0, 0.5); opacity: 0; } /* line 52, ../sass/style.scss */ .face--odd div span { background: none; background: linear-gradient(to left, transparent 50%, rgba(0, 0, 0, 0.4) 90%, black); opacity: 0; } /* line 61, ../sass/style.scss */ .face--odd:first-child div span { background: none; } /* line 65, ../sass/style.scss */ .placeholder { position: absolute; z-index: 0; left: 0; right: 0; width: 500px; margin: 100px auto; } /* line 73, ../sass/style.scss */ .aside { display: none; } @supports (background: -moz-element(#id)) { /* line 78, ../sass/style.scss */ .mask { position: absolute; z-index: 1; top: 0; bottom: 0; left: 0; right: 0; background: #f0f0fa; pointer-events: none; } /* line 85, ../sass/style.scss */ .result { position: absolute; top: 0; bottom: 0; right: 0; left: 0; z-index: 2; width: 500px; height: 350px; margin: 100px auto; background: rgba(255, 255, 255, 0.4); background-clip: content-box; pointer-events: none; } /* line 96, ../sass/style.scss */ .result::after { content: ''; position: absolute; z-index: -1; top: 0; bottom: 0; left: 0; right: 0px; border: 5px dashed rgba(0, 0, 0, 0.4); } /* line 103, ../sass/style.scss */ .wrapper { position: absolute; z-index: 3; width: 500px; height: 350px; /*filter: drop-shadow(0 3px 2px rgba(0,0,0,.5));*/ box-shadow: 0 3px 2px rgba(0, 0, 0, 0.5); } /* line 111, ../sass/style.scss */ .aside { display: block; position: absolute; z-index: 2; top: 0; bottom: 0; right: 0; overflow: hidden; width: 0; pointer-events: auto; } /* line 120, ../sass/style.scss */ .aside-inner { position: absolute; overflow: auto; top: 5px; bottom: 5px; right: -20px; display: flex; flex-direction: column; justify-content: space-around; width: 170px; padding: 0 30px 0 10px; color: rgba(0, 0, 0, 0.6); font-size: .8em; text-align: right; } /* line 133, ../sass/style.scss */ .aside-inner-block { display: flex; flex-direction: column; justify-content: center; } } /* line 142, ../sass/style.scss */ .data { font-size: 1.6em; word-spacing: -.1em; color: #111; overflow: hidden; } /* line 149, ../sass/style.scss */ .controls { position: absolute; left: 0; right: 0; z-index: 5; width: 500px; margin: 470px auto; text-align: center; pointer-events: auto; } /* line 158, ../sass/style.scss */ .controls * { vertical-align: middle; } /* line 161, ../sass/style.scss */ .info { position: relative; z-index: 2; text-align: center; color: rgba(0, 0, 0, 0.3); } /* line 167, ../sass/style.scss */ .info a { color: inherit; }
map-master/map3/stylesheets/style.css
*, *::before, *::after { box-sizing: border-box; } /* line 6, ../sass/style.scss */ html { font: 1em 'Montserrat', sans-serif; background: #f0f0fa; } /* line 10, ../sass/style.scss */ #css-element { width: 500px; height: 350px; border: none; box-shadow: 0 3px 2px rgba(0, 0, 0, 0.5); } /* line 16, ../sass/style.scss */ .face { position: relative; display: inline-block; height: 100%; perspective: 500px; perspective-origin: 0% 70%; } /* line 23, ../sass/style.scss */ .face:nth-child(odd) { perspective-origin: 100% 70%; } /* line 26, ../sass/style.scss */ .face div { position: absolute; width: 100%; height: 100%; right: 0; transform-origin: top right; } /* line 33, ../sass/style.scss */ .face:nth-child(odd) div { right: auto; left: 0; transform-origin: top left; } /* line 38, ../sass/style.scss */ .face span { position: absolute; width: 100%; height: 100%; } /* line 42, ../sass/style.scss */ .face--even span { background: black; background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.6) 90%, black), rgba(0, 0, 0, 0.5); opacity: 0; } /* line 52, ../sass/style.scss */ .face--odd div span { background: none; background: linear-gradient(to left, transparent 50%, rgba(0, 0, 0, 0.4) 90%, black); opacity: 0; } /* line 61, ../sass/style.scss */ .face--odd:first-child div span { background: none; } /* line 65, ../sass/style.scss */ .placeholder { position: absolute; z-index: 0; left: 0; right: 0; width: 500px; margin: 100px auto; } /* line 73, ../sass/style.scss */ .aside { display: none; } @supports (background: -moz-element(#id)) { /* line 78, ../sass/style.scss */ .mask { position: absolute; z-index: 1; top: 0; bottom: 0; left: 0; right: 0; background: #f0f0fa; pointer-events: none; } /* line 85, ../sass/style.scss */ .result { position: absolute; top: 0; bottom: 0; right: 0; left: 0; z-index: 2; width: 500px; height: 350px; margin: 100px auto; background: rgba(255, 255, 255, 0.4); background-clip: content-box; pointer-events: none; } /* line 96, ../sass/style.scss */ .result::after { content: ''; position: absolute; z-index: -1; top: 0; bottom: 0; left: 0; right: 0px; border: 5px dashed rgba(0, 0, 0, 0.4); } /* line 103, ../sass/style.scss */ .wrapper { position: absolute; z-index: 3; width: 500px; height: 350px; /*filter: drop-shadow(0 3px 2px rgba(0,0,0,.5));*/ box-shadow: 0 3px 2px rgba(0, 0, 0, 0.5); } /* line 111, ../sass/style.scss */ .aside { display: block; position: absolute; z-index: 2; top: 0; bottom: 0; right: 0; overflow: hidden; width: 0; pointer-events: auto; } /* line 120, ../sass/style.scss */ .aside-inner { position: absolute; overflow: auto; top: 5px; bottom: 5px; right: -20px; display: flex; flex-direction: column; justify-content: space-around; width: 170px; padding: 0 30px 0 10px; color: rgba(0, 0, 0, 0.6); font-size: .8em; text-align: right; } /* line 133, ../sass/style.scss */ .aside-inner-block { display: flex; flex-direction: column; justify-content: center; } } /* line 142, ../sass/style.scss */ .data { font-size: 1.6em; word-spacing: -.1em; color: #111; overflow: hidden; } /* line 149, ../sass/style.scss */ .controls { position: absolute; left: 0; right: 0; z-index: 5; width: 500px; margin: 470px auto; text-align: center; pointer-events: auto; } /* line 158, ../sass/style.scss */ .controls * { vertical-align: middle; } /* line 161, ../sass/style.scss */ .info { position: relative; z-index: 2; text-align: center; color: rgba(0, 0, 0, 0.3); } /* line 167, ../sass/style.scss */ .info a { color: inherit; }
0.438785
0.064095
body { width:100%; margin:0 auto; font-family:Helvetica,arial; background: #EEE; font-size:14px; background: rgb(219,219,231); -webkit-font-smoothing: antialiased; color:rgb(35,35,35); height:100%; } #wrapper { min-height:100%; position:relative; } #content { padding-bottom:100px; /* Height of the footer element */ } footer { background-color:#232323; width:100%; height:10%; max-height:60px; margin-top:10px; position:absolute; bottom:0; left:0; padding:1% 0; } footer p { margin-top:0.5%; color:white; color:#EEEEEE; text-align: center; } /*ESTILOS VENTANA ENVIANDO*/ #enviando { width:30%; height:30%; background-color: rgba(0,0,0,0.7); position: fixed; top:35%; left:35%; border-radius:15px; display: none; } #enviando p { position: absolute; top:60%; left:50%; color:white; font-weight:bold; } /*ESTILOS REPORTE INCIDENCIAS*/ #reporte_boton { cursor:pointer; text-decoration:underline; } #titulo_ayuda { width:60%; margin:0 auto; } #imagen_cierre_popup_footer { width:3%; position:absolute; right:5%; top:5%; } #texto_ayuda { padding-top:10%; } #texto_ayuda p { margin-top:3%; font-weight:600; font-size:90%; } #sombra_footer { background-color:rgba(0,0,0,0.5); position:absolute; top:0; left:0; z-index:888; } #reporte_incidencias{ padding:1% 1%; background-color:#EFEFEF; width:50%; height:50%; top: 25%; left: 25%; position: fixed; z-index:999; border-radius:15px; /*display:none;*/ } /*FIN ESTILOS REPORTE INCIDENCIAS*/ @media (max-width: 300px) { body { font-size: 9px;} } @media (min-width: 300px) { body { font-size: 10px;} } @media (min-width: 500px) { body { font-size: 11px; } } @media (min-width: 700px) { body { font-size: 12px; } } @media (min-width: 1200px) { body { font-size: 14px; } } #cabecera { width:90%; height:100px; margin:0 auto; /*margin-bottom:50px;*/ position:relative; display:block; } img { cursor:pointer; } .centrado { text-align: center; } .centrado-margin { margin:0 auto; } .titulo-aplicacion { width:60%; font-size:200%; color:rgb(35,144,139); margin:0 auto; position:absolute; top:20%; left:20%; } .flotarDerecha { float:right; } .logoapp { width:50px; } #logout { /* position:absolute; top:1%; right:1%; */ float:right; cursor:pointer; margin-top:1%; } .logout { cursor:pointer; } ul { list-style-type:none; } a { /*text-decoration:none;*/ } .textoSmallCaps { font-size:120%; vertical-align: middle; font-variant: small-caps; } /* =========ESTILOS TITULOS=========== */ h1,h2,h3,h4,h5,h6,h7 { margin-bottom:1vw; } .titulo-grande { font-size:180%; color:black; font-weight:bold; } .titulo-grande-80-20 { height:15%; /*font-size:1.5em;*/ color:black; font-weight:bold; margin-bottom:0; } .titulo-mediano { font-size:130%; color:black; font-weight:bold; } .titulo-peque { font-size:110%; color:black; font-weight:bold; } .buttonGenerico { background: rgb(35,144,139); text-shadow: 1px 1px 0 rgba(39,110,160); border-radius:10px; } .buttonGenericoPeque { position: relative; display: inline-block; padding: 0.3em 0.1em; margin: 0 0 0 0; width: 30%; height:100%; vertical-align: middle; color: #fff; font-size: 100%; line-height: 14px; -webkit-font-smoothing: antialiased; text-align: center; letter-spacing: 1px; background: transparent; border: 0; border-bottom: 2px solid rgba(39,110,160); cursor: pointer; -webkit-transition:all 0.15s ease; transition: all 0.15s ease; border-radius:2px; background: rgb(35,144,139); text-shadow: 1px 1px 0 rgba(39,110,160); border-radius:5px; transition:background 1s; } .buttonGenericoPeque:focus { outline: 0; } .buttonGenericoPeque:hover { background: rgb(15,124,119); transition:background 1s; } /* =========BOTON VOLVER=========== */ .abrirCell,.cursor_pointer { cursor:pointer; } #contenedor_working { width:70%; height:70%; margin:0 auto; } #contenedor_working img { width:60%; height:60%; margin:0 20%; } /* .volver { position:fixed; top:120px; left:100px; } */ /* =========ESTILOS IMC=========== */ /* #contenedorImc { width:90%; height:100px; margin:0 auto; } .botonera { width:310px; margin:10px auto; } .boton-imc { width:100px; margin:0px; min-width:30px; } .paleta_color { width:20px; height:20px; background-color:red; } #rejillaImc { margin-top:100px; margin:0 auto; width:100%; clear:both; } table { border-collapse: collapse; //border:solid 1px black; } #listadoImcGeneral { margin:0 auto; width:80%; } #listadoImcGeneral th { width:14%; text-align:center; border-collapse: collapse; border:solid 1px black; font-weight:bold; } #listadoImcGeneral td { width:14%; text-align:center; border-collapse: collapse; border:solid 1px black; } #listadoImcGeneral tr:nth-child(even) { background-color:#AADDFF; } .abrirCell { cursor:pointer; } .cursor_pointer { cursor:pointer; } */ /* =========ESTILOS IMC MENSUAL=========== */ /* #imc_mensual { width:80%; margin:0 auto; } #imc_mensual table { border-collapse: collapse; } #imc_mensual td,th { width: 20px; min-width: 20px; padding: 0px; text-align: center; border-collapse: collapse; border:solid black 1px; vertical-align:middle; } #titulo_comentarios { width:250px; } #imc_mensual .comentarios { width:250px; height:45px; padding:0px; } #imc_mensual .comentarios textarea { width:250px; height:45px; margin:0px; border:none; resize:none; } #imc_mensual div { margin:0; padding:0; } #imc_mensual #inferior { margin:50px auto; clear: both; float: left; } #imc_mensual #id_horas { width: 30px; } #imc_mensual .input_horas { margin:0; width: 100%; height: 100%; padding: 0; border: none; text-align: center; } */ /*TRAMPA PARA HACER BORDER TRANSPARENTE PORQUE NO SE QUITABA*/ /* #imc_mensual .borde_invisible { border:1px rgba(0,0,0,0) solid; } #imc_mensual .no_fondo { background-color:"#FFF"; } #imc_mensual .festivo { background-color:#F33 !important; } #imc_mensual .especial .input_horas { background-color:moccasin; } #imc_mensual .especial .color_proy { background-color:moccasin; } #imc_mensual .especial .celda-color { background-color:moccasin; } #imc_mensual .interno .input_horas { background-color:lime; } #imc_mensual .interno .color_proy { background-color:lime; } #imc_mensual .interno .celda-color { background-color:lime; } #imc_mensual .externo .input_horas { background-color:lightblue; } #imc_mensual .externo .color_proy { background-color:lightblue; } #imc_mensual .externo .celda-color { background-color:lightblue; } */
assets/css/estilos.css
body { width:100%; margin:0 auto; font-family:Helvetica,arial; background: #EEE; font-size:14px; background: rgb(219,219,231); -webkit-font-smoothing: antialiased; color:rgb(35,35,35); height:100%; } #wrapper { min-height:100%; position:relative; } #content { padding-bottom:100px; /* Height of the footer element */ } footer { background-color:#232323; width:100%; height:10%; max-height:60px; margin-top:10px; position:absolute; bottom:0; left:0; padding:1% 0; } footer p { margin-top:0.5%; color:white; color:#EEEEEE; text-align: center; } /*ESTILOS VENTANA ENVIANDO*/ #enviando { width:30%; height:30%; background-color: rgba(0,0,0,0.7); position: fixed; top:35%; left:35%; border-radius:15px; display: none; } #enviando p { position: absolute; top:60%; left:50%; color:white; font-weight:bold; } /*ESTILOS REPORTE INCIDENCIAS*/ #reporte_boton { cursor:pointer; text-decoration:underline; } #titulo_ayuda { width:60%; margin:0 auto; } #imagen_cierre_popup_footer { width:3%; position:absolute; right:5%; top:5%; } #texto_ayuda { padding-top:10%; } #texto_ayuda p { margin-top:3%; font-weight:600; font-size:90%; } #sombra_footer { background-color:rgba(0,0,0,0.5); position:absolute; top:0; left:0; z-index:888; } #reporte_incidencias{ padding:1% 1%; background-color:#EFEFEF; width:50%; height:50%; top: 25%; left: 25%; position: fixed; z-index:999; border-radius:15px; /*display:none;*/ } /*FIN ESTILOS REPORTE INCIDENCIAS*/ @media (max-width: 300px) { body { font-size: 9px;} } @media (min-width: 300px) { body { font-size: 10px;} } @media (min-width: 500px) { body { font-size: 11px; } } @media (min-width: 700px) { body { font-size: 12px; } } @media (min-width: 1200px) { body { font-size: 14px; } } #cabecera { width:90%; height:100px; margin:0 auto; /*margin-bottom:50px;*/ position:relative; display:block; } img { cursor:pointer; } .centrado { text-align: center; } .centrado-margin { margin:0 auto; } .titulo-aplicacion { width:60%; font-size:200%; color:rgb(35,144,139); margin:0 auto; position:absolute; top:20%; left:20%; } .flotarDerecha { float:right; } .logoapp { width:50px; } #logout { /* position:absolute; top:1%; right:1%; */ float:right; cursor:pointer; margin-top:1%; } .logout { cursor:pointer; } ul { list-style-type:none; } a { /*text-decoration:none;*/ } .textoSmallCaps { font-size:120%; vertical-align: middle; font-variant: small-caps; } /* =========ESTILOS TITULOS=========== */ h1,h2,h3,h4,h5,h6,h7 { margin-bottom:1vw; } .titulo-grande { font-size:180%; color:black; font-weight:bold; } .titulo-grande-80-20 { height:15%; /*font-size:1.5em;*/ color:black; font-weight:bold; margin-bottom:0; } .titulo-mediano { font-size:130%; color:black; font-weight:bold; } .titulo-peque { font-size:110%; color:black; font-weight:bold; } .buttonGenerico { background: rgb(35,144,139); text-shadow: 1px 1px 0 rgba(39,110,160); border-radius:10px; } .buttonGenericoPeque { position: relative; display: inline-block; padding: 0.3em 0.1em; margin: 0 0 0 0; width: 30%; height:100%; vertical-align: middle; color: #fff; font-size: 100%; line-height: 14px; -webkit-font-smoothing: antialiased; text-align: center; letter-spacing: 1px; background: transparent; border: 0; border-bottom: 2px solid rgba(39,110,160); cursor: pointer; -webkit-transition:all 0.15s ease; transition: all 0.15s ease; border-radius:2px; background: rgb(35,144,139); text-shadow: 1px 1px 0 rgba(39,110,160); border-radius:5px; transition:background 1s; } .buttonGenericoPeque:focus { outline: 0; } .buttonGenericoPeque:hover { background: rgb(15,124,119); transition:background 1s; } /* =========BOTON VOLVER=========== */ .abrirCell,.cursor_pointer { cursor:pointer; } #contenedor_working { width:70%; height:70%; margin:0 auto; } #contenedor_working img { width:60%; height:60%; margin:0 20%; } /* .volver { position:fixed; top:120px; left:100px; } */ /* =========ESTILOS IMC=========== */ /* #contenedorImc { width:90%; height:100px; margin:0 auto; } .botonera { width:310px; margin:10px auto; } .boton-imc { width:100px; margin:0px; min-width:30px; } .paleta_color { width:20px; height:20px; background-color:red; } #rejillaImc { margin-top:100px; margin:0 auto; width:100%; clear:both; } table { border-collapse: collapse; //border:solid 1px black; } #listadoImcGeneral { margin:0 auto; width:80%; } #listadoImcGeneral th { width:14%; text-align:center; border-collapse: collapse; border:solid 1px black; font-weight:bold; } #listadoImcGeneral td { width:14%; text-align:center; border-collapse: collapse; border:solid 1px black; } #listadoImcGeneral tr:nth-child(even) { background-color:#AADDFF; } .abrirCell { cursor:pointer; } .cursor_pointer { cursor:pointer; } */ /* =========ESTILOS IMC MENSUAL=========== */ /* #imc_mensual { width:80%; margin:0 auto; } #imc_mensual table { border-collapse: collapse; } #imc_mensual td,th { width: 20px; min-width: 20px; padding: 0px; text-align: center; border-collapse: collapse; border:solid black 1px; vertical-align:middle; } #titulo_comentarios { width:250px; } #imc_mensual .comentarios { width:250px; height:45px; padding:0px; } #imc_mensual .comentarios textarea { width:250px; height:45px; margin:0px; border:none; resize:none; } #imc_mensual div { margin:0; padding:0; } #imc_mensual #inferior { margin:50px auto; clear: both; float: left; } #imc_mensual #id_horas { width: 30px; } #imc_mensual .input_horas { margin:0; width: 100%; height: 100%; padding: 0; border: none; text-align: center; } */ /*TRAMPA PARA HACER BORDER TRANSPARENTE PORQUE NO SE QUITABA*/ /* #imc_mensual .borde_invisible { border:1px rgba(0,0,0,0) solid; } #imc_mensual .no_fondo { background-color:"#FFF"; } #imc_mensual .festivo { background-color:#F33 !important; } #imc_mensual .especial .input_horas { background-color:moccasin; } #imc_mensual .especial .color_proy { background-color:moccasin; } #imc_mensual .especial .celda-color { background-color:moccasin; } #imc_mensual .interno .input_horas { background-color:lime; } #imc_mensual .interno .color_proy { background-color:lime; } #imc_mensual .interno .celda-color { background-color:lime; } #imc_mensual .externo .input_horas { background-color:lightblue; } #imc_mensual .externo .color_proy { background-color:lightblue; } #imc_mensual .externo .celda-color { background-color:lightblue; } */
0.283385
0.044039
.vjs-openInPlayer { float: right !important; } .vjs-openInPlayer:before { content: "\2771"; } .vjs-switchPlayer { float: right !important; } .vjs-switchPlayer-value { font-size: 1.5em; line-height: 2; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; text-align: center; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); } .btn-video { text-transform: none !important; } #canvas { position: absolute; } .videojs_wrapper { width: 100%; height: 100%; position: relative; margin: 0 auto; cursor: pointer; } #canvas { position: absolute; } .videojs_wrapper { width: 100%; height: 100%; position: relative; margin: 0 auto; cursor: pointer; } .videoDisplay { margin: 1px; overflow: hidden; } #engage_video { overflow: hidden; } .videoDefaultLayout { float: left; width: 49.5%; } .audioDisplayError { display: none; } .videoFrame { width: 100%; height: 100%; } .videoFocusedPiP { width: 100%; float: left; z-index: 10; padding-top: 0px; } .videoUnfocusedPiP { width: 19.5%; position: absolute; margin-left: 12%; margin-top: 10%; box-shadow: 3px 3px 3px black; opacity: 0.7; z-index: 20; } .videoFocused { width: 80%; float: left; position: absolute; padding-top: 0px; } .videoUnfocused { width: 19.5%; float: right; margin-left: 70%; } .video-js { background-color: #FFF !important; } .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } .video-js.auto-height { height: 0 !important; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; max-width: 100%; width: auto !important; } .vjs-fullscreen-control { visibility: hidden; } #indicator { position: absolute; background-color: black; opacity: 0.4; width: 10%; height: 10%; left: 88%; top: 88%; border: 1px solid white; } .videoDisplay { margin: 1px; overflow: hidden; } #engage_video { overflow: hidden; } .videoDefaultLayout { float: left; width: 49.5%; } .audioDisplayError { display: none; } .videoFrame { width: 100%; height: 100%; } .videoFocusedPiP { width: 100%; float: left; z-index: 10; padding-top: 0px; } .videoUnfocusedPiP { width: 19.5%; position: absolute; margin-left: 12%; margin-top: 10%; box-shadow: 3px 3px 3px black; opacity: 0.7; z-index: 20; } .videoFocused { width: 80%; float: left; position: absolute; padding-top: 0px; } .videoUnfocused { width: 19.5%; float: right; margin-left: 70%; } .video-js { background-color: #FFF !important; } .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } .video-js.auto-height { height: 0 !important; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; max-width: 100%; width: auto !important; } .vjs-fullscreen-control { visibility: hidden; } #indicator { position: absolute; background-color: black; opacity: 0.4; width: 10%; height: 10%; left: 88%; top: 88%; border: 1px solid white; }
modules/matterhorn-engage-theodul-plugin-video-videojs/src/main/resources/static/styles/embed.css
.vjs-openInPlayer { float: right !important; } .vjs-openInPlayer:before { content: "\2771"; } .vjs-switchPlayer { float: right !important; } .vjs-switchPlayer-value { font-size: 1.5em; line-height: 2; position: absolute; top: 0px; left: 0px; width: 100%; height: 100%; text-align: center; text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); } .btn-video { text-transform: none !important; } #canvas { position: absolute; } .videojs_wrapper { width: 100%; height: 100%; position: relative; margin: 0 auto; cursor: pointer; } #canvas { position: absolute; } .videojs_wrapper { width: 100%; height: 100%; position: relative; margin: 0 auto; cursor: pointer; } .videoDisplay { margin: 1px; overflow: hidden; } #engage_video { overflow: hidden; } .videoDefaultLayout { float: left; width: 49.5%; } .audioDisplayError { display: none; } .videoFrame { width: 100%; height: 100%; } .videoFocusedPiP { width: 100%; float: left; z-index: 10; padding-top: 0px; } .videoUnfocusedPiP { width: 19.5%; position: absolute; margin-left: 12%; margin-top: 10%; box-shadow: 3px 3px 3px black; opacity: 0.7; z-index: 20; } .videoFocused { width: 80%; float: left; position: absolute; padding-top: 0px; } .videoUnfocused { width: 19.5%; float: right; margin-left: 70%; } .video-js { background-color: #FFF !important; } .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } .video-js.auto-height { height: 0 !important; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; max-width: 100%; width: auto !important; } .vjs-fullscreen-control { visibility: hidden; } #indicator { position: absolute; background-color: black; opacity: 0.4; width: 10%; height: 10%; left: 88%; top: 88%; border: 1px solid white; } .videoDisplay { margin: 1px; overflow: hidden; } #engage_video { overflow: hidden; } .videoDefaultLayout { float: left; width: 49.5%; } .audioDisplayError { display: none; } .videoFrame { width: 100%; height: 100%; } .videoFocusedPiP { width: 100%; float: left; z-index: 10; padding-top: 0px; } .videoUnfocusedPiP { width: 19.5%; position: absolute; margin-left: 12%; margin-top: 10%; box-shadow: 3px 3px 3px black; opacity: 0.7; z-index: 20; } .videoFocused { width: 80%; float: left; position: absolute; padding-top: 0px; } .videoUnfocused { width: 19.5%; float: right; margin-left: 70%; } .video-js { background-color: #FFF !important; } .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } .video-js.auto-height { height: 0 !important; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; max-width: 100%; width: auto !important; } .vjs-fullscreen-control { visibility: hidden; } #indicator { position: absolute; background-color: black; opacity: 0.4; width: 10%; height: 10%; left: 88%; top: 88%; border: 1px solid white; }
0.595375
0.128088
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } nav { background-color: white; justify-content: space-around; align-items: center; display: flex; } body { background-color: #ebebeb; } .footer { text-align: center; } .Logo img { width: 200px; padding: 5px; } .container { margin-left: 70px; margin-right: 70px; margin-bottom: 20px; font-weight: 600; } .index>p { margin-left: 70px; margin-top: 10px; } .index { width: 400px; margin: auto; line-height: 1.5; text-align: justify; text-justify: auto; float: right; } .index>.judul { margin-top: 20px; padding-top: 0px; } .buttons { margin-top: 30px; margin-left: 70px; } .buttons>button { width: 250px; border: none; border-radius: 10px; padding: 10px 50px; margin-top: 10px; } a { text-decoration: none; font-size: 18px; } .gambarindex { padding-top: 20px; margin-top: 20px; float: left; } .gambarindex>img { margin-top: 10px; max-width: 95%; } .box-index { width: 800px; display: flex; margin: auto; padding-bottom: 50px; } .container { padding-top: 20px; width: 800px; margin: auto; } .content { margin: auto; height: 300px; overflow: hidden; position: relative; } #text { padding: 50px; position: absolute; } .content img { max-width: 800px; } #promotion { padding: 50px; height: fit-content; background-color: white; } #offers { display: flex; width: 100%; } #o1 { width: 300px; padding: 10px; position: relative; } #offers div:first-of-type { padding: 40px; width: 360px; background-color: white; } #offers div:last-of-type, #offers div:nth-of-type(2) { padding: 40px; text-align: center; background-color: lightgreen; } #facilities { display: flex; height: 200px; } #facilities div:nth-child(1) { background-color: rgb(62, 202, 62); } #facilities div:nth-child(2) { background-color: rgb(95, 214, 95); } #facilities div:nth-child(3) { background-color: rgb(118, 231, 118); } #o1 button { padding: 10px 20px; border: none; border-radius: 10px; position: absolute; bottom: 25px; left: 65px; } #fac { padding: 50px; } #find h1 { padding: 20px; text-align: center; background-color: rgb(122, 230, 79); } #signinbtn { align-items: center; justify-content: center; display: flex; height: 90px; margin: auto; background-color: rgb(68, 107, 68); } #signinbtn button { padding: 10px 20px; border: none; border-radius: 10px; width: 200px; background-color: rgb(142, 255, 142); } .container button { padding: 10px 20px; border: none; border-radius: 10px; background-color: rgb(142, 255, 142); } .content { color: white; }
public/learncontributor.css
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } nav { background-color: white; justify-content: space-around; align-items: center; display: flex; } body { background-color: #ebebeb; } .footer { text-align: center; } .Logo img { width: 200px; padding: 5px; } .container { margin-left: 70px; margin-right: 70px; margin-bottom: 20px; font-weight: 600; } .index>p { margin-left: 70px; margin-top: 10px; } .index { width: 400px; margin: auto; line-height: 1.5; text-align: justify; text-justify: auto; float: right; } .index>.judul { margin-top: 20px; padding-top: 0px; } .buttons { margin-top: 30px; margin-left: 70px; } .buttons>button { width: 250px; border: none; border-radius: 10px; padding: 10px 50px; margin-top: 10px; } a { text-decoration: none; font-size: 18px; } .gambarindex { padding-top: 20px; margin-top: 20px; float: left; } .gambarindex>img { margin-top: 10px; max-width: 95%; } .box-index { width: 800px; display: flex; margin: auto; padding-bottom: 50px; } .container { padding-top: 20px; width: 800px; margin: auto; } .content { margin: auto; height: 300px; overflow: hidden; position: relative; } #text { padding: 50px; position: absolute; } .content img { max-width: 800px; } #promotion { padding: 50px; height: fit-content; background-color: white; } #offers { display: flex; width: 100%; } #o1 { width: 300px; padding: 10px; position: relative; } #offers div:first-of-type { padding: 40px; width: 360px; background-color: white; } #offers div:last-of-type, #offers div:nth-of-type(2) { padding: 40px; text-align: center; background-color: lightgreen; } #facilities { display: flex; height: 200px; } #facilities div:nth-child(1) { background-color: rgb(62, 202, 62); } #facilities div:nth-child(2) { background-color: rgb(95, 214, 95); } #facilities div:nth-child(3) { background-color: rgb(118, 231, 118); } #o1 button { padding: 10px 20px; border: none; border-radius: 10px; position: absolute; bottom: 25px; left: 65px; } #fac { padding: 50px; } #find h1 { padding: 20px; text-align: center; background-color: rgb(122, 230, 79); } #signinbtn { align-items: center; justify-content: center; display: flex; height: 90px; margin: auto; background-color: rgb(68, 107, 68); } #signinbtn button { padding: 10px 20px; border: none; border-radius: 10px; width: 200px; background-color: rgb(142, 255, 142); } .container button { padding: 10px 20px; border: none; border-radius: 10px; background-color: rgb(142, 255, 142); } .content { color: white; }
0.540439
0.129788
.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th { background-color: #bbeffa; } .table-hover{ background-color:#d8f0f5; } .table .thead-dark th { background-color: #00B4D8; } .btn-edit{ background-color: #00B4D8; } .table-hover tbody tr:hover td, .table-hover tbody tr:hover th { background-color: #48CAE4; } .page-item.active .page-link { background-color: #00B4D8; } .modal-footer > .btn, .modal-header{ background-color: #00B4D8; color: white; } .table .thead-dark th{ border-color:white; } .nav{ background-color: #00B4D8; } .nav-item{ width:20%; font-weight: bold; } .nav-item > a{ color:white; font-size: 1.1rem; } .nav-item:hover{ background-color: #00a6c4; } .nav-item:active{ border-right: 1px solid #bbeffa; border-left: 1px solid #bbeffa; } .dropdown-menu{ width:100%; } .dropdown-menu{ max-height:200px; overflow:hidden; overflow-y:scroll; } .lista{ max-height: 150px; } .dropdown-item:hover{ background-color: #00B4D8; color:white; } .addbtn{ margin-top: 20px; margin-right: 13px; border:1px solid #00B4D8; transition: 0.3s; } .addbtn:hover{ transform: scale(1.2); background-color: #00B4D8; color:white; font-weight: bold; } .sep-sect{ margin:10px; margin-top: 30px; padding:10px; width:auto; display:block; background-color: #00B4D8; color:white; font-weight: bold; font-size: 1.2rem; cursor:pointer; } .sep-sect:hover{ background-color: #00a6c4; } .tsm, .tsc{ display:none; } .prodElim{ border:0; margin:0px auto; outline: none; font-size: 1.2rem; } ::-webkit-scrollbar { width: 12px; } ::-webkit-scrollbar-track { background: #bbeffa; } ::-webkit-scrollbar-thumb { background-color: #00B4D8; border-radius: 20px; border: 3px solid #bbeffa; } footer{ margin-top:20px; background-color: #00a6c4; bottom:0; width:100%; height:167px; max-height: 167px; } .logo{ padding:30px; width:auto; height:auto; transition: 0.3s; } .logo:hover{ transform: skewY(-5deg) scale(1.1); } .table{ width:100%; }
public/css/custom.css
.table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th { background-color: #bbeffa; } .table-hover{ background-color:#d8f0f5; } .table .thead-dark th { background-color: #00B4D8; } .btn-edit{ background-color: #00B4D8; } .table-hover tbody tr:hover td, .table-hover tbody tr:hover th { background-color: #48CAE4; } .page-item.active .page-link { background-color: #00B4D8; } .modal-footer > .btn, .modal-header{ background-color: #00B4D8; color: white; } .table .thead-dark th{ border-color:white; } .nav{ background-color: #00B4D8; } .nav-item{ width:20%; font-weight: bold; } .nav-item > a{ color:white; font-size: 1.1rem; } .nav-item:hover{ background-color: #00a6c4; } .nav-item:active{ border-right: 1px solid #bbeffa; border-left: 1px solid #bbeffa; } .dropdown-menu{ width:100%; } .dropdown-menu{ max-height:200px; overflow:hidden; overflow-y:scroll; } .lista{ max-height: 150px; } .dropdown-item:hover{ background-color: #00B4D8; color:white; } .addbtn{ margin-top: 20px; margin-right: 13px; border:1px solid #00B4D8; transition: 0.3s; } .addbtn:hover{ transform: scale(1.2); background-color: #00B4D8; color:white; font-weight: bold; } .sep-sect{ margin:10px; margin-top: 30px; padding:10px; width:auto; display:block; background-color: #00B4D8; color:white; font-weight: bold; font-size: 1.2rem; cursor:pointer; } .sep-sect:hover{ background-color: #00a6c4; } .tsm, .tsc{ display:none; } .prodElim{ border:0; margin:0px auto; outline: none; font-size: 1.2rem; } ::-webkit-scrollbar { width: 12px; } ::-webkit-scrollbar-track { background: #bbeffa; } ::-webkit-scrollbar-thumb { background-color: #00B4D8; border-radius: 20px; border: 3px solid #bbeffa; } footer{ margin-top:20px; background-color: #00a6c4; bottom:0; width:100%; height:167px; max-height: 167px; } .logo{ padding:30px; width:auto; height:auto; transition: 0.3s; } .logo:hover{ transform: skewY(-5deg) scale(1.1); } .table{ width:100%; }
0.400984
0.111434
@font-face { font-family: 'Freightsans-Bold'; src: url('./files/Freight-SansBold.woff') format('woff'), url('./files/Freight-SansBold.woff') format('woff'); } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html{ min-height: 100vh; } body{ background-color:#DCDCDC; height: 100%; min-height: 100vh; padding-top: 100px; display: flex; flex-direction: column; } body > * { flex-shrink: 0; } @media only screen and (min-width: 650px) { body{ padding-top: 60px; } } @media only screen and (min-width: 700px) { body{ padding-top: 65px; } } @media only screen and (min-width: 750px) { body{ padding-top: 70px; } } @media only screen and (max-width: 768px){ html{ width: 107.5%; } body{ width: 100%; } } @media only screen and (min-width: 830px) { body{ padding-top: 74px; } } @media only screen and (min-width: 860px) { body{ padding-top: 78px; } } @media only screen and (min-width: 900px) { body{ padding-top: 80px; } } @media only screen and (min-width: 900px) { body{ padding-top: 80px; } } @media only screen and (min-width: 950px) { body{ padding-top: 84px; } } @media only screen and (min-width: 992px){ body{ padding-top: 86px; } } @media only screen and (min-width: 1014px) { body{ padding-top: 9px; } } @media only screen and (min-width: 1024px) { body{ padding-top: 63px; } } @media only screen and (min-width: 1050px) { body{ padding-top: 72px; } } @media only screen and (min-width: 1100px) { body{ padding-top: 74px; } } @media only screen and (min-width: 1150px) { body{ padding-top: 76px; } } @media only screen and (min-width: 1200px){ body{ padding-top: 80px; } } @media only screen and (min-width: 1250px) { body{ padding-top: 82px; } } @media only screen and (min-width: 1260px) { body{ padding-top: 84px; } } @media only screen and (min-width: 1300) { body{ padding-top: 88px; } } @media only screen and (min-width: 1400px) { body{ padding-top: 92px; } } @media only screen and (min-width: 1438px) { body{ padding-top: 94px; } } @media only screen and (min-width: 1460px) { body{ padding-top: 98px; } } @media only screen and (min-width: 1500px) { body{ padding-top: 125px; } } /*navBar*/ /*navBar*/ #mainNav{ padding-right: 40px; padding-left: 75px; opacity: 0.95; filter: alpha(opacity=95); margin-bottom: -50px; } @media only screen and (max-width: 1024px){ #mainNav{ width: 100%; padding-left: 0px; padding-right: 10%; } } .nav-link{ font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; font-size: 1.2em; margin-right: 35px; } @media only screen and (max-width: 1134px){ .nav-link{ font-size: 1.1em; } } @media only screen and (max-width: 1162px){ .nav-link{ font-size: 1em; } } @media only screen and (max-width: 1041px){ .nav-link{ font-size: .9em; } } .main-container{ background-color: rgb(235, 235, 235); width: 90%; height: 100%; min-height: 100vh; box-shadow: 10px 10px 20px 20px rgb(156, 156, 156); margin: auto; flex-grow: 1; } @media only screen and (max-width: 1024px){ .main-container{ width: 100%; height: 100%; margin: 0; margin-right: 0; } } @media only screen and (max-width: 768) and (max-height: 1024) and (-webkit-min-device-pixel-ratio: 2) { .main-container{ width:100%; height: 100%; min-height: 100vh; position: absolute; margin:0; } } #header-logo{ height: auto; width:25%; float: left; } img{ height: auto; width:50%; } @media screen and (max-width: 1024px){ img{ height: auto; width: 75%; } } .capabilities-column{ flex: 50%; height: 100%; padding: 10px; height: auto; text-align: center; } .capabilities-row{ width: 100%; height: 100%; min-height: 100vh; display: flex; margin-top: 0px; } .capabilities-column{ flex: 50%; padding: 10px; height: auto; text-align: center; } .capabilities-column-teal{ flex: 50%; padding: 10px; padding-top:7.5%; height: auto; text-align: center; background-color: #00869D; flex-grow: 1; } .capabilities-column-title{ flex: 50%; height: 100%; padding:10px; padding-top: 10%; text-align: left; height: 100%; margin-bottom: 50px; margin-left: 20px; flex-grow: 1; } .capabilities-column-title-bio{ flex: 50%; padding: 10px; margin-bottom: 50px; height: 100%; text-align: left; } .capabilities-row-hex{ width: 100%; height: 100%; margin-top: 25px; margin-bottom: 25px; } .left-side{ background-color: #00869D; padding-top: 10%; } .cap-img-bord{ margin-left: 20px; } .cap-img-hex{ height:auto; width: 100px; } .cap-img-bord-card{ padding-top: 50px; } .cap-img-hex-card{ height:auto; width: 75px; margin-left: 20px; margin-right: 20px; } .team-name{ font-family: 'Freightsans-Bold', Fallback, sans-serif; font-size: 2.75em; color: #133359 } .team-title{ font-family: 'Freightsans-Bold', Fallback, sans-serif; font-size: 2.25em; color: #00869D; } p{ font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; } .ipad-spacer{ height: 500px; width: 100%; } @media only screen and (min-width:1024px) and (min-height:1366px){ .ipad-spacer{ height: 20%; width: 100%; } } button{ font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; font-weight: bold; height: 50px; border: none; outline: none; background:59; -webkit-text-fill-color: #00869D; color: #fff; } .spacer-general{ height: 110px; width: 100%; } .spacer-resnick{ height: 112.5px; width: 100%; } .spacer-trucois{ height: 110px; width: 100%; } .spacer-goodale{ height: 117.5px; width: 100%; } .footer{ position: relative; height: 50px; bottom: 0; }
bios/style.css
@font-face { font-family: 'Freightsans-Bold'; src: url('./files/Freight-SansBold.woff') format('woff'), url('./files/Freight-SansBold.woff') format('woff'); } * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } html{ min-height: 100vh; } body{ background-color:#DCDCDC; height: 100%; min-height: 100vh; padding-top: 100px; display: flex; flex-direction: column; } body > * { flex-shrink: 0; } @media only screen and (min-width: 650px) { body{ padding-top: 60px; } } @media only screen and (min-width: 700px) { body{ padding-top: 65px; } } @media only screen and (min-width: 750px) { body{ padding-top: 70px; } } @media only screen and (max-width: 768px){ html{ width: 107.5%; } body{ width: 100%; } } @media only screen and (min-width: 830px) { body{ padding-top: 74px; } } @media only screen and (min-width: 860px) { body{ padding-top: 78px; } } @media only screen and (min-width: 900px) { body{ padding-top: 80px; } } @media only screen and (min-width: 900px) { body{ padding-top: 80px; } } @media only screen and (min-width: 950px) { body{ padding-top: 84px; } } @media only screen and (min-width: 992px){ body{ padding-top: 86px; } } @media only screen and (min-width: 1014px) { body{ padding-top: 9px; } } @media only screen and (min-width: 1024px) { body{ padding-top: 63px; } } @media only screen and (min-width: 1050px) { body{ padding-top: 72px; } } @media only screen and (min-width: 1100px) { body{ padding-top: 74px; } } @media only screen and (min-width: 1150px) { body{ padding-top: 76px; } } @media only screen and (min-width: 1200px){ body{ padding-top: 80px; } } @media only screen and (min-width: 1250px) { body{ padding-top: 82px; } } @media only screen and (min-width: 1260px) { body{ padding-top: 84px; } } @media only screen and (min-width: 1300) { body{ padding-top: 88px; } } @media only screen and (min-width: 1400px) { body{ padding-top: 92px; } } @media only screen and (min-width: 1438px) { body{ padding-top: 94px; } } @media only screen and (min-width: 1460px) { body{ padding-top: 98px; } } @media only screen and (min-width: 1500px) { body{ padding-top: 125px; } } /*navBar*/ /*navBar*/ #mainNav{ padding-right: 40px; padding-left: 75px; opacity: 0.95; filter: alpha(opacity=95); margin-bottom: -50px; } @media only screen and (max-width: 1024px){ #mainNav{ width: 100%; padding-left: 0px; padding-right: 10%; } } .nav-link{ font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; font-size: 1.2em; margin-right: 35px; } @media only screen and (max-width: 1134px){ .nav-link{ font-size: 1.1em; } } @media only screen and (max-width: 1162px){ .nav-link{ font-size: 1em; } } @media only screen and (max-width: 1041px){ .nav-link{ font-size: .9em; } } .main-container{ background-color: rgb(235, 235, 235); width: 90%; height: 100%; min-height: 100vh; box-shadow: 10px 10px 20px 20px rgb(156, 156, 156); margin: auto; flex-grow: 1; } @media only screen and (max-width: 1024px){ .main-container{ width: 100%; height: 100%; margin: 0; margin-right: 0; } } @media only screen and (max-width: 768) and (max-height: 1024) and (-webkit-min-device-pixel-ratio: 2) { .main-container{ width:100%; height: 100%; min-height: 100vh; position: absolute; margin:0; } } #header-logo{ height: auto; width:25%; float: left; } img{ height: auto; width:50%; } @media screen and (max-width: 1024px){ img{ height: auto; width: 75%; } } .capabilities-column{ flex: 50%; height: 100%; padding: 10px; height: auto; text-align: center; } .capabilities-row{ width: 100%; height: 100%; min-height: 100vh; display: flex; margin-top: 0px; } .capabilities-column{ flex: 50%; padding: 10px; height: auto; text-align: center; } .capabilities-column-teal{ flex: 50%; padding: 10px; padding-top:7.5%; height: auto; text-align: center; background-color: #00869D; flex-grow: 1; } .capabilities-column-title{ flex: 50%; height: 100%; padding:10px; padding-top: 10%; text-align: left; height: 100%; margin-bottom: 50px; margin-left: 20px; flex-grow: 1; } .capabilities-column-title-bio{ flex: 50%; padding: 10px; margin-bottom: 50px; height: 100%; text-align: left; } .capabilities-row-hex{ width: 100%; height: 100%; margin-top: 25px; margin-bottom: 25px; } .left-side{ background-color: #00869D; padding-top: 10%; } .cap-img-bord{ margin-left: 20px; } .cap-img-hex{ height:auto; width: 100px; } .cap-img-bord-card{ padding-top: 50px; } .cap-img-hex-card{ height:auto; width: 75px; margin-left: 20px; margin-right: 20px; } .team-name{ font-family: 'Freightsans-Bold', Fallback, sans-serif; font-size: 2.75em; color: #133359 } .team-title{ font-family: 'Freightsans-Bold', Fallback, sans-serif; font-size: 2.25em; color: #00869D; } p{ font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; } .ipad-spacer{ height: 500px; width: 100%; } @media only screen and (min-width:1024px) and (min-height:1366px){ .ipad-spacer{ height: 20%; width: 100%; } } button{ font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; font-weight: bold; height: 50px; border: none; outline: none; background:59; -webkit-text-fill-color: #00869D; color: #fff; } .spacer-general{ height: 110px; width: 100%; } .spacer-resnick{ height: 112.5px; width: 100%; } .spacer-trucois{ height: 110px; width: 100%; } .spacer-goodale{ height: 117.5px; width: 100%; } .footer{ position: relative; height: 50px; bottom: 0; }
0.246806
0.064329
element.style{ } .body-wrap{ padding-top: 74.28571428571429%; } div{ display: block; } body{ font-family: 'helvetica neue','microsoft yahei','pingfang sc','hiragino sans gb','stheiti',tahoma,sans-serif; /* background-color: #fafafa; */ color: #333; margin: 0; padding: 0; } Style Attribute { font-size: 10px; } /* #div11 { */ /* height:330px; */ /* filter:alpha(Opacity=80); */ /* -moz-opacity:0.7; */ /* width: 100%; */ /* opacity: 0.7; z-personInfo:1001; background-color:black; } */ #div1 { position: absolute; width: 100%; height: 1100px; left: 0; top: 0; opacity: 0.9; z-index:100; display: flex; flex-direction: column; justify-content: center; align-items: center; background:rgba(34,34,34,0.6); } .o-header{ position: fixed; top: 0; left: 0; width: 100%; z-index: 1001; background: #101010; box-shadow: 0 2px 8px 0 rgba(1,1,1,0.5); } /* .scrollbox h3,ul,li{margin:0;padding:0; list-style:none;} .scrollbox{ width: 340px; margin: 0 auto; overflow: hidden; border: 1px solid #CFCFCF; padding: 10px; } #scrollDiv{width:340px;height:359px; overflow:hidden;}/*这里的高度和超出隐藏是必须的*/ #scrollDiv li{height:90px; width:300px; padding:0 20px;background:url(ico-4.gif) no-repeat 10px 23px; overflow:hidden; vertical-align:bottom; zoom:1; border-bottom:#B7B7B7 dashed 1px;} #scrollDiv li h3{ height:24px; padding-top:13px; font-size:14px; color:#353535; line-height:24px; width:300px;} #scrollDiv li h3 a{color:#353535; text-decoration:none}#scrollDiv li h3 a:hover{ color:#F00} #scrollDiv li div{ height:36px; width:300px; color:#416A7F; line-height:18px; overflow:hidden} #scrollDiv li div a{ color:#416A7F; text-decoration:none} .scroltit{ height:26px; line-height:26px; padding-bottom:4px; margin-bottom:4px;} .scroltit h3{ width:100px; float:left;} .scroltit .updown{float:right; width:32px; height:22px; margin-left:4px} #but_up{ background:url(up.gif) no-repeat 0 0; text-indent:-9999px} #but_down{ background:url(down.gif) no-repeat 0 0; text-indent:-9999px} #n{margin:10px auto; width:920px; border:1px solid #CCC;font-size:12px; line-height:30px;} #n a{ padding:0 4px; color:#333} */
src/main/resources/static/css/index/index.css
element.style{ } .body-wrap{ padding-top: 74.28571428571429%; } div{ display: block; } body{ font-family: 'helvetica neue','microsoft yahei','pingfang sc','hiragino sans gb','stheiti',tahoma,sans-serif; /* background-color: #fafafa; */ color: #333; margin: 0; padding: 0; } Style Attribute { font-size: 10px; } /* #div11 { */ /* height:330px; */ /* filter:alpha(Opacity=80); */ /* -moz-opacity:0.7; */ /* width: 100%; */ /* opacity: 0.7; z-personInfo:1001; background-color:black; } */ #div1 { position: absolute; width: 100%; height: 1100px; left: 0; top: 0; opacity: 0.9; z-index:100; display: flex; flex-direction: column; justify-content: center; align-items: center; background:rgba(34,34,34,0.6); } .o-header{ position: fixed; top: 0; left: 0; width: 100%; z-index: 1001; background: #101010; box-shadow: 0 2px 8px 0 rgba(1,1,1,0.5); } /* .scrollbox h3,ul,li{margin:0;padding:0; list-style:none;} .scrollbox{ width: 340px; margin: 0 auto; overflow: hidden; border: 1px solid #CFCFCF; padding: 10px; } #scrollDiv{width:340px;height:359px; overflow:hidden;}/*这里的高度和超出隐藏是必须的*/ #scrollDiv li{height:90px; width:300px; padding:0 20px;background:url(ico-4.gif) no-repeat 10px 23px; overflow:hidden; vertical-align:bottom; zoom:1; border-bottom:#B7B7B7 dashed 1px;} #scrollDiv li h3{ height:24px; padding-top:13px; font-size:14px; color:#353535; line-height:24px; width:300px;} #scrollDiv li h3 a{color:#353535; text-decoration:none}#scrollDiv li h3 a:hover{ color:#F00} #scrollDiv li div{ height:36px; width:300px; color:#416A7F; line-height:18px; overflow:hidden} #scrollDiv li div a{ color:#416A7F; text-decoration:none} .scroltit{ height:26px; line-height:26px; padding-bottom:4px; margin-bottom:4px;} .scroltit h3{ width:100px; float:left;} .scroltit .updown{float:right; width:32px; height:22px; margin-left:4px} #but_up{ background:url(up.gif) no-repeat 0 0; text-indent:-9999px} #but_down{ background:url(down.gif) no-repeat 0 0; text-indent:-9999px} #n{margin:10px auto; width:920px; border:1px solid #CCC;font-size:12px; line-height:30px;} #n a{ padding:0 4px; color:#333} */
0.321247
0.055695
body { font-family: 'Roboto', sans-serif; font-size: 14px; background-color: #f0f0f0; } html { overflow-y: scroll; } @media (min-width: 1400px) { .container { width: 1370px; } } .navbar-header { padding-top: 4px; padding-bottom: 4px; } .navbar-brand { height: 62px; padding: 21px 15px; } .navbar li a { padding-top: 18px; font-weight: 500; font-size: 15px; font-weight: bold; margin-left: 16px !important; margin-right: 16px !important; } .navbar { x-moz-box-shadow: 0 0 10px 2px rgba(0,0,0,.05); x-webkit-box-shadow: 0 0 10px 2px rgba(0,0,0,.05); box-shadow: 0 0 10px 2px rgba(0,0,0,.05); border-width: 0; border-radius: 0; } .navbar-inverse .navbar-nav > li > a { font-weight: 400; text-transform: uppercase; border-top: 2px solid transparent; letter-spacing: 2px; font-size: 14px; color: #838181; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { background: none; border-top-color: #42d165; } @media (min-width: 768px) { .navbar-nav > li > a { padding: 24px 0 26px; margin: 0 10px; } } @media (min-width: 1200px) { .navbar-nav > li > a { margin: 0 25px; } } @media (min-width: 1220px) and (max-width: 1399px) { .navbar .container { padding: 0; } } @media (min-width: 1420px) { .navbar .container { padding: 0; } } .navbar-nav > li > a:last-child { margin-right: 0; } #footer { text-align: center } #footer .top { background: #2e2b2b; font-size: 12px; font-weight: 900; text-transform: uppercase; padding: 40px 0 27px; } #footer .top li { display: inline-block; margin: 0 30px 10px; } #footer .top a { color: #fff; text-decoration: none; } #footer .bottom { border-top: 1px solid #5f5d5d; background: #211f1f; font-size: 11px; font-weight: 400; color: #636262; padding: 28px 0; } #footer .bottom a { color: #636262; } #footer .menu-item-31 a:before { content: ''; display: inline-block; width: 9px; height: 15px; background: url('../images/social/facebook.svg') no-repeat; margin: 0 6px 0 0; position: relative; top: 3px; } #footer .menu-item-32 a:before { content: ''; display: inline-block; width: 19px; height: 16px; background: url('../images/social/twitter.svg') no-repeat; margin: 0 6px 0 0; position: relative; top: 3px; } #footer .menu-item-33 a:before { content: ''; display: inline-block; width: 19px; height: 16px; background: url('../images/social/github.png') no-repeat; margin: 0 6px 0 0; position: relative; top: 3px; } /* Hide bootstrap sort header icons */ table.table thead .sorting:after { content: '' !important } table.table thead .sorting_asc:after { content: '' !important } table.table thead .sorting_desc:after { content: '' !important } table.table thead .sorting_asc_disabled:after { content: '' !important } table.table thead .sorting_desc_disabled:after { content: '' !important } .dataTables_length { padding-left: 20px; padding-top: 8px; } .dataTables_length label { font-weight: 500; } @media screen and (min-width: 700px) { #footer .top { padding: 27px 0; } #footer .bottom { padding: 25px 0; } } table.dataTable { border-radius: 3px; border-collapse: collapse; /*border-spacing: 0;*/} table.dataTable thead > tr > th, table.invoice-table thead > tr > th { color:#fff; } table.da th:first-child { border-radius: 3px 0 0 0; border-left: none; } th:last-child { border-radius: 0 3px 0 0; } tr {border: none;} td { padding-top: 16px !important; padding-bottom: 16px !important; } /*th {border-left: 1px solid #d26b26; }*/ th {border-left: 1px solid #FFFFFF; } .table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td { vertical-align: middle; border-top: none; border-bottom: 1px solid #dfe0e1; } table.dataTable.no-footer { border-bottom: none; } .table-striped>tbody>tr:nth-child(odd)>td, .table-striped>tbody>tr:nth-child(odd)>th { background-color: #f9f9f9; } table.table thead .sorting_asc { background: url('../images/sort_asc.png') no-repeat 90% 50%; } table.table thead .sorting_desc { background: url('../images/sort_desc.png') no-repeat 90% 50%; } table.dataTable thead th, table.dataTable thead td, table.invoice-table thead th, table.invoice-table thead td { padding: 12px 10px; } table.dataTable tbody th, table.dataTable tbody td { padding: 10px; } .dataTables_wrapper { padding-top: 16px; } table.table thead > tr > th { border-bottom-width: 0px; } table td { max-width: 250px; } .pagination>li:first-child>a, .pagination>li:first-child>span { border-bottom-left-radius: 3px; border-top-left-radius: 3px; } .dt-right, .dt-left { margin-top: 16px; } .pagination>ul { margin: 0px; } /* hide table sorting indicators */ table.data-table thead .sorting { background: url('') no-repeat center right; } /* Make Success color match the Dashboard's green */ .label-success, .progress-bar-success, .btn-success, .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { background: #5cb85c; } .btn-success .badge { color: #5cb85c; } .btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success, .label-success[href]:hover, .label-success[href]:focus{ background-color: #5cb85c; }
resources/assets/css/public.style.css
body { font-family: 'Roboto', sans-serif; font-size: 14px; background-color: #f0f0f0; } html { overflow-y: scroll; } @media (min-width: 1400px) { .container { width: 1370px; } } .navbar-header { padding-top: 4px; padding-bottom: 4px; } .navbar-brand { height: 62px; padding: 21px 15px; } .navbar li a { padding-top: 18px; font-weight: 500; font-size: 15px; font-weight: bold; margin-left: 16px !important; margin-right: 16px !important; } .navbar { x-moz-box-shadow: 0 0 10px 2px rgba(0,0,0,.05); x-webkit-box-shadow: 0 0 10px 2px rgba(0,0,0,.05); box-shadow: 0 0 10px 2px rgba(0,0,0,.05); border-width: 0; border-radius: 0; } .navbar-inverse .navbar-nav > li > a { font-weight: 400; text-transform: uppercase; border-top: 2px solid transparent; letter-spacing: 2px; font-size: 14px; color: #838181; } .navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:hover, .navbar-inverse .navbar-nav > .active > a:focus { background: none; border-top-color: #42d165; } @media (min-width: 768px) { .navbar-nav > li > a { padding: 24px 0 26px; margin: 0 10px; } } @media (min-width: 1200px) { .navbar-nav > li > a { margin: 0 25px; } } @media (min-width: 1220px) and (max-width: 1399px) { .navbar .container { padding: 0; } } @media (min-width: 1420px) { .navbar .container { padding: 0; } } .navbar-nav > li > a:last-child { margin-right: 0; } #footer { text-align: center } #footer .top { background: #2e2b2b; font-size: 12px; font-weight: 900; text-transform: uppercase; padding: 40px 0 27px; } #footer .top li { display: inline-block; margin: 0 30px 10px; } #footer .top a { color: #fff; text-decoration: none; } #footer .bottom { border-top: 1px solid #5f5d5d; background: #211f1f; font-size: 11px; font-weight: 400; color: #636262; padding: 28px 0; } #footer .bottom a { color: #636262; } #footer .menu-item-31 a:before { content: ''; display: inline-block; width: 9px; height: 15px; background: url('../images/social/facebook.svg') no-repeat; margin: 0 6px 0 0; position: relative; top: 3px; } #footer .menu-item-32 a:before { content: ''; display: inline-block; width: 19px; height: 16px; background: url('../images/social/twitter.svg') no-repeat; margin: 0 6px 0 0; position: relative; top: 3px; } #footer .menu-item-33 a:before { content: ''; display: inline-block; width: 19px; height: 16px; background: url('../images/social/github.png') no-repeat; margin: 0 6px 0 0; position: relative; top: 3px; } /* Hide bootstrap sort header icons */ table.table thead .sorting:after { content: '' !important } table.table thead .sorting_asc:after { content: '' !important } table.table thead .sorting_desc:after { content: '' !important } table.table thead .sorting_asc_disabled:after { content: '' !important } table.table thead .sorting_desc_disabled:after { content: '' !important } .dataTables_length { padding-left: 20px; padding-top: 8px; } .dataTables_length label { font-weight: 500; } @media screen and (min-width: 700px) { #footer .top { padding: 27px 0; } #footer .bottom { padding: 25px 0; } } table.dataTable { border-radius: 3px; border-collapse: collapse; /*border-spacing: 0;*/} table.dataTable thead > tr > th, table.invoice-table thead > tr > th { color:#fff; } table.da th:first-child { border-radius: 3px 0 0 0; border-left: none; } th:last-child { border-radius: 0 3px 0 0; } tr {border: none;} td { padding-top: 16px !important; padding-bottom: 16px !important; } /*th {border-left: 1px solid #d26b26; }*/ th {border-left: 1px solid #FFFFFF; } .table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td { vertical-align: middle; border-top: none; border-bottom: 1px solid #dfe0e1; } table.dataTable.no-footer { border-bottom: none; } .table-striped>tbody>tr:nth-child(odd)>td, .table-striped>tbody>tr:nth-child(odd)>th { background-color: #f9f9f9; } table.table thead .sorting_asc { background: url('../images/sort_asc.png') no-repeat 90% 50%; } table.table thead .sorting_desc { background: url('../images/sort_desc.png') no-repeat 90% 50%; } table.dataTable thead th, table.dataTable thead td, table.invoice-table thead th, table.invoice-table thead td { padding: 12px 10px; } table.dataTable tbody th, table.dataTable tbody td { padding: 10px; } .dataTables_wrapper { padding-top: 16px; } table.table thead > tr > th { border-bottom-width: 0px; } table td { max-width: 250px; } .pagination>li:first-child>a, .pagination>li:first-child>span { border-bottom-left-radius: 3px; border-top-left-radius: 3px; } .dt-right, .dt-left { margin-top: 16px; } .pagination>ul { margin: 0px; } /* hide table sorting indicators */ table.data-table thead .sorting { background: url('') no-repeat center right; } /* Make Success color match the Dashboard's green */ .label-success, .progress-bar-success, .btn-success, .btn-success.disabled, .btn-success[disabled], fieldset[disabled] .btn-success, .btn-success.disabled:hover, .btn-success[disabled]:hover, fieldset[disabled] .btn-success:hover, .btn-success.disabled:focus, .btn-success[disabled]:focus, fieldset[disabled] .btn-success:focus, .btn-success.disabled.focus, .btn-success[disabled].focus, fieldset[disabled] .btn-success.focus, .btn-success.disabled:active, .btn-success[disabled]:active, fieldset[disabled] .btn-success:active, .btn-success.disabled.active, .btn-success[disabled].active, fieldset[disabled] .btn-success.active { background: #5cb85c; } .btn-success .badge { color: #5cb85c; } .btn-success:hover, .btn-success:focus, .btn-success.focus, .btn-success:active, .btn-success.active, .open > .dropdown-toggle.btn-success, .label-success[href]:hover, .label-success[href]:focus{ background-color: #5cb85c; }
0.301362
0.091585
.calendar { border-width: 1px; border-style: solid; padding: 1px; overflow: hidden; } .calendar table { table-layout: fixed; border-collapse: separate; font-size: 14px; width: 100%; height: 100%; } .calendar table td, .calendar table th { font-size: 14px; } .calendar-noborder { border: 0; } .calendar-header { position: relative; height: 28px; } .calendar-title { text-align: center; height: 28px; } .calendar-title span { position: relative; display: inline-block; top: 0px; padding: 0 3px; height: 28px; line-height: 28px; font-size: 14px; cursor: pointer; -moz-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; } .calendar-prevmonth, .calendar-nextmonth, .calendar-prevyear, .calendar-nextyear { position: absolute; top: 50%; margin-top: -8px; width: 16px; height: 16px; cursor: pointer; font-size: 1px; -moz-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; } .calendar-prevmonth { left: 20px; background: url('images/calendar_arrows.png') no-repeat -16px 0; } .calendar-nextmonth { right: 20px; background: url('images/calendar_arrows.png') no-repeat -32px 0; } .calendar-prevyear { left: 3px; background: url('images/calendar_arrows.png') no-repeat 0px 0; } .calendar-nextyear { right: 3px; background: url('images/calendar_arrows.png') no-repeat -48px 0; } .calendar-body { position: relative; } .calendar-body th, .calendar-body td { text-align: center; } .calendar-day { border: 0; padding: 1px; cursor: pointer; -moz-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; } .calendar-other-month { opacity: 0.3; filter: alpha(opacity=30); } .calendar-disabled { opacity: 0.6; filter: alpha(opacity=60); cursor: default; } .calendar-menu { position: absolute; top: 0; left: 0; width: 180px; height: 150px; padding: 5px; font-size: 14px; display: none; overflow: hidden; } .calendar-menu-year-inner { text-align: center; padding-bottom: 5px; } .calendar-menu-year { width: 80px; line-height: 26px; text-align: center; border-width: 1px; border-style: solid; outline-style: none; resize: none; margin: 0; padding: 0; font-weight: bold; font-size: 14px; -moz-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; } .calendar-menu-prev, .calendar-menu-next { display: inline-block; width: 25px; height: 28px; vertical-align: top; cursor: pointer; -moz-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; } .calendar-menu-prev { margin-right: 10px; background: url('images/calendar_arrows.png') no-repeat 5px center; } .calendar-menu-next { margin-left: 10px; background: url('images/calendar_arrows.png') no-repeat -44px center; } .calendar-menu-month { text-align: center; cursor: pointer; font-weight: bold; -moz-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; } .calendar-body th, .calendar-menu-month { color: #ffffff; } .calendar-day { color: #ffffff; } .calendar-sunday { color: #CC2222; } .calendar-saturday { color: #00ee00; } .calendar-today { color: #0000ff; } .calendar-menu-year { border-color: #444444; } .calendar { border-color: #444444; } .calendar-header { background: #222222; } .calendar-body, .calendar-menu { background: #000000; } .calendar-body th { background: #222222; padding: 4px 0; } .calendar-hover, .calendar-nav-hover, .calendar-menu-hover { background-color: #003147; color: #ffffff; } .calendar-hover { border: 1px solid #0b93d5; padding: 0; } .calendar-selected { background-color: #0972a5; color: #ffffff; border: 1px solid #26b3f7; padding: 0; }
assets/easyui/themes/ui-dark-hive/calendar.css
.calendar { border-width: 1px; border-style: solid; padding: 1px; overflow: hidden; } .calendar table { table-layout: fixed; border-collapse: separate; font-size: 14px; width: 100%; height: 100%; } .calendar table td, .calendar table th { font-size: 14px; } .calendar-noborder { border: 0; } .calendar-header { position: relative; height: 28px; } .calendar-title { text-align: center; height: 28px; } .calendar-title span { position: relative; display: inline-block; top: 0px; padding: 0 3px; height: 28px; line-height: 28px; font-size: 14px; cursor: pointer; -moz-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; } .calendar-prevmonth, .calendar-nextmonth, .calendar-prevyear, .calendar-nextyear { position: absolute; top: 50%; margin-top: -8px; width: 16px; height: 16px; cursor: pointer; font-size: 1px; -moz-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; } .calendar-prevmonth { left: 20px; background: url('images/calendar_arrows.png') no-repeat -16px 0; } .calendar-nextmonth { right: 20px; background: url('images/calendar_arrows.png') no-repeat -32px 0; } .calendar-prevyear { left: 3px; background: url('images/calendar_arrows.png') no-repeat 0px 0; } .calendar-nextyear { right: 3px; background: url('images/calendar_arrows.png') no-repeat -48px 0; } .calendar-body { position: relative; } .calendar-body th, .calendar-body td { text-align: center; } .calendar-day { border: 0; padding: 1px; cursor: pointer; -moz-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; } .calendar-other-month { opacity: 0.3; filter: alpha(opacity=30); } .calendar-disabled { opacity: 0.6; filter: alpha(opacity=60); cursor: default; } .calendar-menu { position: absolute; top: 0; left: 0; width: 180px; height: 150px; padding: 5px; font-size: 14px; display: none; overflow: hidden; } .calendar-menu-year-inner { text-align: center; padding-bottom: 5px; } .calendar-menu-year { width: 80px; line-height: 26px; text-align: center; border-width: 1px; border-style: solid; outline-style: none; resize: none; margin: 0; padding: 0; font-weight: bold; font-size: 14px; -moz-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; } .calendar-menu-prev, .calendar-menu-next { display: inline-block; width: 25px; height: 28px; vertical-align: top; cursor: pointer; -moz-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; } .calendar-menu-prev { margin-right: 10px; background: url('images/calendar_arrows.png') no-repeat 5px center; } .calendar-menu-next { margin-left: 10px; background: url('images/calendar_arrows.png') no-repeat -44px center; } .calendar-menu-month { text-align: center; cursor: pointer; font-weight: bold; -moz-border-radius: 5px 5px 5px 5px; -webkit-border-radius: 5px 5px 5px 5px; border-radius: 5px 5px 5px 5px; } .calendar-body th, .calendar-menu-month { color: #ffffff; } .calendar-day { color: #ffffff; } .calendar-sunday { color: #CC2222; } .calendar-saturday { color: #00ee00; } .calendar-today { color: #0000ff; } .calendar-menu-year { border-color: #444444; } .calendar { border-color: #444444; } .calendar-header { background: #222222; } .calendar-body, .calendar-menu { background: #000000; } .calendar-body th { background: #222222; padding: 4px 0; } .calendar-hover, .calendar-nav-hover, .calendar-menu-hover { background-color: #003147; color: #ffffff; } .calendar-hover { border: 1px solid #0b93d5; padding: 0; } .calendar-selected { background-color: #0972a5; color: #ffffff; border: 1px solid #26b3f7; padding: 0; }
0.343892
0.103703
body { margin: auto; padding: auto; font-family: 'Montserrat', sans-serif; background-size: cover; background-repeat: no-repeat; background-position: bottom; background-image: url('../assets/15.png'); } header { position: relative; max-width: auto; margin: 30px; padding: auto; background: white; box-sizing: border-box; border-radius: 10px; box-shadow: 0 2px 5px rgba(0, 0, 0, 2); } .logo { color: limegreen; height: auto; font-size: 32px; line-height: 50px; padding: 0 20px; text-align: center; box-sizing: border-box; float: left; font-weight: 800; text-decoration: none; } nav { float: none; margin-left: 44%; } .clearfix { clear: both; } nav ul { margin: 0; padding: 0; display: flex; } nav ul li { list-style: none; } nav ul li a { display: block; margin: 10px 0; padding: 10px 20px; text-decoration: none; color: #262626; } .center .avatar img { border-radius: 50%; width: 150px; height: 150px; margin-top: 5%; object-fit: cover; object-position: 0 -8px; } .center { width: 55%; background-color: rgba(0, 0, 0, 1); height: auto; text-align: center; margin: auto; border-radius: 20px; margin-bottom: 25%; } .content { padding: auto; margin: auto; color: white; } h1 { color: wheat } .sm { color: wheat; } .content h2, p { font-weight: lighter; letter-spacing: 1px; width: 70%; margin: 10px auto; } .content h2 { font-weight: 400; } .content h3 { margin-top: 20px; } div .social i { padding: 0 10px; font-size: 30px; transition: 0.5s; color: rgba(255, 255, 255, 2.6); } .btn { border: none; outline: none; padding: 10px 16px; cursor: pointer; font-size: 18px; } .active, .btn:hover { background-color: limegreen; color: white; } .profile-card { width: 400px; margin: auto; box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.5); } .image-container { position: relative; } .title { color: limegreen; height: auto; font-size: 32px; line-height: 50px; padding: 0 20px; text-align: center; box-sizing: border-box; float: left; font-weight: 800; text-decoration: none; padding-top: 20px; padding-bottom: 50px; } .mian-container { color: limegreen; padding-top: 50px; padding-bottom: 35px; background-color: black; } .main-container-1 { color: limegreen; padding-top: 20px; padding-bottom: 35px; background-color: black; } .main-container-2 { color: limegreen; padding-top: 20px; padding-bottom: 35px; background-color: black; } .p1 { padding-top: 8px; }
css/s1.css
body { margin: auto; padding: auto; font-family: 'Montserrat', sans-serif; background-size: cover; background-repeat: no-repeat; background-position: bottom; background-image: url('../assets/15.png'); } header { position: relative; max-width: auto; margin: 30px; padding: auto; background: white; box-sizing: border-box; border-radius: 10px; box-shadow: 0 2px 5px rgba(0, 0, 0, 2); } .logo { color: limegreen; height: auto; font-size: 32px; line-height: 50px; padding: 0 20px; text-align: center; box-sizing: border-box; float: left; font-weight: 800; text-decoration: none; } nav { float: none; margin-left: 44%; } .clearfix { clear: both; } nav ul { margin: 0; padding: 0; display: flex; } nav ul li { list-style: none; } nav ul li a { display: block; margin: 10px 0; padding: 10px 20px; text-decoration: none; color: #262626; } .center .avatar img { border-radius: 50%; width: 150px; height: 150px; margin-top: 5%; object-fit: cover; object-position: 0 -8px; } .center { width: 55%; background-color: rgba(0, 0, 0, 1); height: auto; text-align: center; margin: auto; border-radius: 20px; margin-bottom: 25%; } .content { padding: auto; margin: auto; color: white; } h1 { color: wheat } .sm { color: wheat; } .content h2, p { font-weight: lighter; letter-spacing: 1px; width: 70%; margin: 10px auto; } .content h2 { font-weight: 400; } .content h3 { margin-top: 20px; } div .social i { padding: 0 10px; font-size: 30px; transition: 0.5s; color: rgba(255, 255, 255, 2.6); } .btn { border: none; outline: none; padding: 10px 16px; cursor: pointer; font-size: 18px; } .active, .btn:hover { background-color: limegreen; color: white; } .profile-card { width: 400px; margin: auto; box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.5); } .image-container { position: relative; } .title { color: limegreen; height: auto; font-size: 32px; line-height: 50px; padding: 0 20px; text-align: center; box-sizing: border-box; float: left; font-weight: 800; text-decoration: none; padding-top: 20px; padding-bottom: 50px; } .mian-container { color: limegreen; padding-top: 50px; padding-bottom: 35px; background-color: black; } .main-container-1 { color: limegreen; padding-top: 20px; padding-bottom: 35px; background-color: black; } .main-container-2 { color: limegreen; padding-top: 20px; padding-bottom: 35px; background-color: black; } .p1 { padding-top: 8px; }
0.518302
0.078713
html, body, #map { padding: 0px; margin: 0px; } /*.leaflet-tile-pane {*/ /*z-index: 200;*/ /*display: none;*/ /*}*/ .item { /*margin-left: 58px;*/ } .right-item { } /*#map { width: 1920px; height: 1080px; z-index: 9; }*/ .containers-info { position: absolute; width: 100%; height: 100%; } .headers { width: 100%; text-align: center; font-family: "微软雅黑"; font-weight: bold; font-size: 50px; height: 80px; background-color: pink; color: #fff; background-image: -webkit-gradient( linear, 0 30%, 0 bottom, from(#72bfb9), to(#A9B4CA) ); /*background-clip: text;*/ -webkit-background-clip: text; -webkit-text-fill-color: transparent; position: relative; } @keyframes shine { 0% { background-position-x: 400%; } 50% { background-position-x: 0%; } 100% { background-position-x: -400%; } } .mains a{ position: absolute; color: white; top: 0px; text-align: center; width: 525px; left: 22%; font-family: "微软雅黑"; font-weight: bold; font-size: 50px; height: 80px; background-color: pink; color: #fff; background-image: -webkit-gradient( linear, 0 30%, 0 bottom, from(#FFFFFF), to(#A9B4CA) ); /*background-clip: text;*/ -webkit-background-clip: text; -webkit-text-fill-color: transparent; background: rgba(156, 204, 101, 0); background: linear-gradient(-45deg, rgba(156, 204, 101, 0) 50%, rgba(252, 252, 252, 0.69) 60%, rgba(156, 204, 101, 0) 70%); background-size:600% 100%; -webkit-animation: shine 20s infinite; animation: shine 20s infinite; -webkit-animation-delay: 0s; animation-delay: 0s; -webkit-animation-timing-function: linear; animation-timing-function: linear; } .headers .small { position: absolute; top: 19px; z-index: 999; right: 28%; font-family: "微软雅黑"; font-weight: bold; font-size: 35px; background-color: pink; color: #fff; background-image: -webkit-gradient( linear, 0 30%, 0 bottom, from(#FFFFFF), to(#A9B4CA) ); /*background-clip: text;*/ -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .containers-warp { z-index: 1; width: 100%; height: 100%; display: flex; justify-content: space-between; } .mains { width: 49%; height: 100px; z-index: 9999; background: url("../Images/pinner.png"); background-repeat: no-repeat; -o-background-size: 100% 100%; background-position: 43% -50%; position: relative; } .child-room { z-index: 990; width: 24%; height: 100%; /*padding-top: 50px;*/ box-sizing: border-box; } .child-room-title-left { height: 40px; width: 130%; border: 0px; border-bottom: 3px solid; margin-left: 50px; border-image: linear-gradient(to right, #05748b, #0b8cb8) 10 10; display: flex; } .mains1 { width: 106%; height: 400px; z-index: 9999; top:670px; margin-left: -29px; /*margin-left: -25px;*/ /*background: url("../Images/pinner.png");*/ background-repeat: no-repeat; -o-background-size: 100% 100%; background-position: 43% -50%; position: relative; } .child-room-warp-bottom { /*padding-left: 30px;*/ z-index: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)); /*background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));*/ /*padding-right: 50px;*/ box-sizing: border-box; } .child-room-title-right { position: relative; left: -40%; height: 40px; width: 140%; border: 0px; margin-left: -50px; border-bottom: 3px solid; border-image: linear-gradient(to right, #0b8cb8, #05748b) 10 10; } .child-room-warp-left { box-sizing: border-box; z-index: 9999; width: 100%; height: 100%; padding-left: 50px; padding-right: 30px; background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)); } .child-room-warp-right { padding-left: 30px; z-index: 9999; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)); padding-right: 50px; box-sizing: border-box; } .warp-info-left { width: 100%; height: 100%; } .warp-info-right { width: 100%; height: 100%; } .banners { display: flex; align-items: center; font-size: 28px; font-weight: 500; font-family: 微软雅黑; padding: 10px 0px; padding-top: 30px; } .banners span { border-left: 2px solid white; margin-left: 20px; padding-left: 20px; color: white; } .icon { width: 40px; height: 40px; } .weather { height: 180px; border: 1px solid #647b89; border-radius: 10px; padding: 10px; box-sizing: border-box; display: flex; } .weather-left { } .weather-left img { height: 100px; margin-left: 30px; } .weather-left-name { margin-left: 30px; font-size: 30px; font-weight: 500; text-align: center; width: 100px; color: white; } .weather-left-name1 { /*margin-left: 30px;*/ margin-top: 10px; font-size: 15px; font-weight: 500; text-align: center; width: 160px; color: white; } .weather-right-name { margin-left: 30px; font-size: 30px; font-weight: 500; text-align: center; width: 100px; color: white; } .weather-centens { height: 100%; border-left: 3px solid white; /*margin-left: 40px;*/ /*padding-left: 20px;*/ /*padding-right: 20px;*/ width: 100%; overflow: hidden; } .weather-centens-banner { display: flex; color: white; margin-bottom: 10px; margin-top: 10px; } .weather-centens-banner div { display: flex; align-items: center; } .weather-centens-banner div img { width: 25px; height: 25px; /*border-right: 1px solid white;*/ /*padding-right: 10px;*/ /*margin-right: 10px;*/ margin-left: 5px; } .weather-centens-banner-item { display: flex; justify-items: center; justify-content: space-between; align-items: center; color: white; background-color: #384454; } .weather-centens-banner-flex2 { flex: 2; justify-content: center; margin-left: 20px; background-color: #2D445C; text-align: center; } .weather-centens-banner-item span { color: white; padding: 2px 10px; } /*.weather-left-name2{*/ /*text-align: center;*/ /*}*/ .precipitation { width: 100%; height: unset; display: flex; } .precipitation-left { font-size: 12px; width: 40px; font-weight: 500; font-family: 微软雅黑; color: white; box-sizing: border-box; padding: 10px 14px; background-color: #384454; } .precipitation-warp { width: 100%; height: auto;; } .precipitation-warp-item { display: inline-block; color: white; width: 45px; font-size: 7px; text-align: center; box-sizing: border-box; padding-top: 10px; height: 68px; background-color: #2D445C; overflow: hidden; margin: 0px 5px; } .precipitation-warp-item span { display: block; } .precipitation-warp-item a img { width: 20px; height: 20px; } .left-banner { height: 35px; display: flex; line-height: 33px; } .left-banner-header { width: 35px; height: 35px; margin-right: 10px; background-color: red; } .left-banner-room { height: 35px; width: auto; width: 100%; background-color: rgba(32, 43, 59, 0.58); color: white; font-size: 16px; padding-left: 20px; } /*线字线*/ .order { margin-left: 10px; width: 234px; } .order .line { display: inline-block; width: 100px; border-top: 1px solid #0b8cb8; /*position: relative;*/ } .order .txt { color: #02c0c5; vertical-align: middle; font-size: 8px; } .data { width: 234px; text-align: center; color: #02c0c5; font-family: 微软雅黑; font-weight: bold; font-size: 14px; } .headers-left-title { position: relative; } .header-title-dian { z-index: 999; position: absolute; transform: rotate(90deg); display: flex; justify-content: space-between; width: 24px; top: 10px; left: 0px; font-size: 24px; color: #02c0c5; } .duty-headers { border-bottom: 3px solid #2074a9; position: relative; } .duty-headers-title { color: #2daaf2; list-style-type: none; display: flex; justify-content: space-between; align-items: center; text-align: left; padding: 0px 10px; margin: 5px 0px; } .duty-headers-title li { flex: 1; } .duty-headers:before { content: ""; display: inline-block; width: 10px; height: 2px; position: absolute; top: 0px; left: 0px; background-color: white; } .duty-headers:after { content: ""; display: inline-block; width: 10px; height: 2px; position: absolute; top: 0px; right: 0px; background-color: white; } .duty-headers-room { list-style-type: none; margin: 0px; padding: 5px; padding-top: 10px; padding-bottom: 0px; } .duty-headers-room li { padding-right: 0px; display: flex; } .duty-headers-room-left { position: relative; flex: 1; height: 25px; } .duty-headers-room-left-main { display: flex; justify-content: left; align-items: center; height: 25px; margin-right: 25px; background: linear-gradient(to right, rgba(19, 33, 50, 0.25), rgba(18, 33, 51, 0.69)); } .duty-headers-room-left-main:after { content: ""; display: inline-block; width: 15px; height: 23px; position: absolute; top: 0px; right: 25px; background-color: #2D3641; border: 1px solid #393E43; border-radius: 2px; } .right-top-banner { display: flex; justify-content: left; align-items: center; padding: 0px 5px; } .right-top-banner img { width: 20px; height: 20px; } .right-top-banner span { line-height: 22px; font-size: 18px; border-left: 1px solid white; padding-left: 5px; margin-left: 5px; color: white; padding-bottom: 1px; } .duty-headers-room-main { flex: 2; height: 25px; } .duty-headers-room-main-room { display: flex; justify-content: left; margin-right: 25px; background-color: red; background: linear-gradient(to right, rgba(19, 33, 50, 0.25), rgba(18, 33, 51, 0.69)); border: 1px solid #393E43; height: 23px; border-radius: 2px; position: relative; } .duty-headers-room-main-room:after { content: ""; display: inline-block; width: 15px; height: 23px; position: absolute; top: -1px; border-radius: 2px; right: -1px; background-color: #2D3641; border: 1px solid #393E43; border-radius: 2px; } .duty-headers-room-main-room-item { flex: 1; } .duty-headers-room-right { flex: 2; height: 25px; background-color: pink; background: linear-gradient(to right, rgba(19, 33, 50, 0.25), rgba(18, 33, 51, 0.69)); } .duty-headers-room-right-main { position: relative; border: 1px solid #393E43; height: 23px; border-radius: 2px; display: flex; } .duty-headers-room-right-main:after { content: ""; display: inline-block; width: 15px; height: 23px; position: absolute; top: -1px; border-radius: 2px; right: -1px; background-color: #2D3641; border: 1px solid #393E43; border-radius: 2px; } .right-cantent { margin-top: 10px; } /*.right-cantent ul {*/ /* border: 1px solid #232e39;*/ /* height: 38px;*/ /* border-radius: 10px;*/ /* list-style-type: none;*/ /* display: flex;*/ /* justify-content: space-between;*/ /* align-items: center;*/ /* text-align: left;*/ /* padding: 0px 10px;*/ /* margin: 5px 0px;*/ /*}*/ /*.right-cantent ul> li {*/ /* color: white;*/ /* font-size: 20px;*/ /* margin: 0px;*/ /* line-height: 38px;*/ /*}*/ .right-cantent-title { width: 100%; /*border-left: 4px solid #427fad;*/ height: 54px; background-color: rgba(20, 36, 52, 0.7); /*display: flex;*/ padding: 0px 2px; position: relative; line-height: 54px; } .right-cantent-title:before { content: ""; position: absolute; height: 54px; width: 4px; background-color: #427fad; } .ranks { display: flex; align-items: center; color: white; } .ranks img { width: 48px; height: 48px; padding-top: 3px } .ranks span { font-size: 24px; padding: 0px 10px; } .ranks span p { margin: 0px; display: inline-block; font-size: 18px; padding: 0px 10px; } .right-cantent-title-item { display: flex; justify-content: space-between; } .Observation { height: 230px; border-left: 2px solid #14486a; position: relative; margin-top: 10px; display: flex; justify-content: space-between; overflow: hidden; } .Observation:before { content: ""; position: absolute; height: 10px; width: 2px; left: -2px; background-color: #73b9e1; } .Observation:after { content: ""; position: absolute; height: 10px; width: 2px; left: -2px; background-color: #73b9e1; bottom: 0px; } .Observation-warp{ width: 100%; } .Observation-item { white-space: normal; height: 230px; margin: 0px 4px; display: inline-block; width: 120px; box-shadow: 0px 0px 5px 5px rgba(91, 92, 93, 0.46) inset } .Observation-header { word-break: normal;   word-break: break-all;   word-break: keep-all; display: table; /*重点*/ border: 1px solid #232930; margin: 0px 5px; width: 110px; box-sizing: border-box; } .Observation-item-table { width: 65px; box-sizing: border-box; padding: 0px 10px; } .Observation-item-table ul { list-style-type: none; margin: 0px; padding: 0px; } .Observation-item-table ul li { color: #2895d6; text-align: left; font-size: 12px; } .Observation-item-table ul li p { margin: 0px; } .Observation-header p { display: table-cell; vertical-align: middle; text-align: left; height: 40px; color: #d4d5d5; padding: 4px; font-size: 12px; } .Observation-item-warp { list-style-type: none; margin: 0px; padding: 0px; } .Observation-item-warp li { display: flex; align-items: center; box-sizing: border-box; margin-left: 10px; } .Observation-item-warp li img { width: 20px; height: 20px; } .Observation-item-warp li span { margin-left: 5px; font-size: 12px; padding-left: 5px; border-left: 1px solid white; color: white } .police { box-sizing: border-box; width: 100%; margin-top: 20px; } .color-e3b44b { color: #e3b44b !important; } .police-warp { width: 50%; height: 70px; display: inline-block; box-sizing: border-box; margin: 5px 0px; position: relative; } .police-warp:nth-child(2n+1) { margin-left: -3px; float: right; } .police-warp:nth-child(2n+1) .police-info { margin-left: 8px; } .police-warp:nth-child(2n) .police-info { margin-right: 8px; } .police-info { border: 1px solid #353d4c; width: auto; height: 100%; /*border:1px solid #353d4c;*/ position: relative; } .police-info:before { content: ""; position: absolute; width: 1px; height: 20px; background-color: #65676c; left: -1px; } .police-info:after { content: ""; position: absolute; width: 20px; height: 1px; background-color: #65676c; left: 0px; bottom: 70px; } .police-info .police-info-bg { margin: 0px; height: 25px; background-color: #2d4c7a; display: flex; } .police-info .police-info-bg img { width: 25px; height: 25px; margin: 0px 10px; } .police-info .police-info-bg span { border-left: 1px solid white; color: #000000; font-size: 16px; font-weight: 500; font-family: 微软雅黑; padding-left: 10px; } .police-info-center { color: white; display: flex; margin: 4px 0px; } .police-center-left-top { flex: 2; display: flex; align-items: center; } .police-center-right-top { flex: 1; display: flex; align-items: center; } .police-name { font-size: 12px; } .police-time { padding-left: 5px; margin: 4px 0px; border-left: 1px solid white; font-size: 12px; margin: 0px; margin-left: 5px; } .police-bottom-rooom { padding: 0px 10px; } /*晴天*/ .icons { height: 80px; margin-left: 78px; margin-top: 45px; } /*.sun {*/ /* width: 2.5em;*/ /* height: 2.5em;*/ /* margin: -1.25em;*/ /* background: currentColor;*/ /* border-radius: 50%;*/ /* box-shadow: 0 0 0 0.375em orange;*/ /* animation: spin 12s infinite linear;*/ /*}*/ /*.rays {*/ /* position: absolute;*/ /* top: -2em;*/ /* left: 50%;*/ /* display: block;*/ /* width: 0.375em;*/ /* height: 1.125em;*/ /* margin-left: -0.1875em;*/ /* background: yellow;*/ /* border-radius: 0.25em;*/ /* box-shadow: 0 5.375em yellow;*/ /*}*/ /*.rays:before, .rays:after {*/ /* content: '';*/ /* position: absolute;*/ /* top: 0em;*/ /* left: 0em;*/ /* display: block;*/ /* width: 0.375em;*/ /* height: 1.125em;*/ /* transform: rotate(60deg);*/ /* transform-origin: 50% 3.25em;*/ /* background: yellow;*/ /* border-radius: 0.25em;*/ /* box-shadow: 0 5.375em yellow;*/ /*}*/ /*.rays:before {*/ /* transform: rotate(120deg);*/ /*}*/ /*@keyframes spin {*/ /* 100% {*/ /* transform: rotate(360deg);*/ /* }*/ /*}*/ /*.cloud {*/ /* position: absolute;*/ /* z-index: 1;*/ /* width: 3.6875em;*/ /* height: 3.6875em;*/ /* margin: -1.84375em;*/ /* background: currentColor;*/ /* border-radius: 50%;*/ /* box-shadow:*/ /* -2.1875em 0.6875em 0 -0.6875em,*/ /* 2.0625em 0.9375em 0 -0.9375em ,*/ /* 0 0 0 0.375em lightgray,*/ /* -2.1875em 0.6875em 0 -0.3125em lightgray,*/ /* 2.0625em 0.9375em 0 -0.5625em lightgray;*/ /*}*/ /*.cloud:after {*/ /* content: '';*/ /* position: absolute;*/ /* bottom: 0;*/ /* left: -0.5em;*/ /* display: block;*/ /* width: 4.5625em;*/ /* height: 1em;*/ /* background: currentColor;*/ /* box-shadow: 0 0.4375em 0 -0.0625em lightgray;*/ /*}*/ /*.rain{*/ /* position: absolute;*/ /* z-index: 2;*/ /* top: 50%;*/ /* left: 20%;*/ /* width: 3.75em;*/ /* height: 3.75em;*/ /* margin: 0.375em 0 0 -2em;*/ /* background: currentColor;*/ /*}*/ .icon { /* position: relative; */ /* display: inline-block; */ font-size: 1em; /* control icon size here */ } .sunny { /*position: absolute;*/ /*top: 50%;*/ /*left: 25%;*/ } .rainy { height: 60px; margin-left: 78px; margin-top: 45px; /*position: absolute;*/ /*top: 50%;*/ /*left: 35%;*/ } .cloudy { /*position: absolute;*/ /*top: 50%;*/ /*left: 45%;*/ height: 60px; margin-left: 78px; margin-top: 45px; } .flurries { height: 60px; margin-left: 78px; margin-top: 45px; } .thunder-storm { height: 60px; margin-left: 78px; margin-top: 45px; } .sun-shower { height: 60px; margin-left: 78px; margin-top: 45px; } .sun { width: 2.5em; height: 2.5em; margin: -1.25em; background: rgba(255, 255, 255, 0); border-radius: 50%; box-shadow: 0 0 0 0.375em orange; -webkit-animation: spin 12s infinite linear; animation: spin 12s infinite linear; } .cloud + .sun { margin: -2em 1em; } .rays { position: absolute; top: -2em; left: 50%; display: block; width: 0.375em; height: 1.125em; margin-left: -0.1875em; background: yellow; border-radius: 0.25em; box-shadow: 0 5.375em yellow; } .rays:before, .rays:after { content: ''; position: absolute; top: 0em; left: 0em; display: block; width: 0.375em; height: 1.125em; -webkit-transform: rotate(60deg); transform: rotate(60deg); -webkit-transform-origin: 50% 3.25em; transform-origin: 50% 3.25em; background: yellow; border-radius: 0.25em; box-shadow: 0 5.375em yellow; } .rays:before { -webkit-transform: rotate(120deg); transform: rotate(120deg); } .rain, .lightning, .snow { position: relative; /*position: absolute;*/ z-index: 2; top: 44%; left: -1%; width: 3.75em; height: 3.75em; margin: 0.375em 0 0 -2em; background: rgba(255, 255, 255, 0); } .rain:after { content: ''; position: absolute; z-index: 2; top: 50%; left: 50%; width: 1.125em; height: 1.125em; margin: -1em 0 0 -0.25em; background: #0cf; border-radius: 100% 0 60% 50% / 60% 0 100% 50%; box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 rgba(255, 255, 255, 0.2); -webkit-transform: rotate(-28deg); transform: rotate(-28deg); -webkit-animation: rain 3s linear infinite; animation: rain 3s linear infinite; } .cloud { position: absolute; z-index: 1; width: 3.6875em; height: 3.6875em; margin: -1.84375em; background: currentColor; border-radius: 50%; box-shadow: -2.1875em 0.6875em 0 -0.6875em, 2.0625em 0.9375em 0 -0.9375em, 0 0 0 0.375em lightgray, -2.1875em 0.6875em 0 -0.3125em lightgray, 2.0625em 0.9375em 0 -0.5625em lightgray; } .cloud:after { content: ''; position: absolute; bottom: 0; left: -0.5em; display: block; width: 4.5625em; height: 1em; background: currentColor; box-shadow: 0 0.4375em 0 -0.0625em lightgray; } .cloud:nth-child(2) { z-index: 0; background: #fff; box-shadow: -2.1875em 0.6875em 0 -0.6875em #fff, 2.0625em 0.9375em 0 -0.9375em #fff, 0 0 0 0.375em #fff, -2.1875em 0.6875em 0 -0.3125em #fff, 2.0625em 0.9375em 0 -0.5625em #fff; opacity: 0.3; -webkit-transform: scale(0.5) translate(6em, -3em); transform: scale(0.5) translate(6em, -3em); -webkit-animation: cloud 4s linear infinite; animation: cloud 4s linear infinite; } .cloud:nth-child(2):after { background: #fff; } .flake:before, .flake:after { content: '\2745'; position: absolute; top: 50%; left: 50%; margin: -1.025em 0 0 -1.0125em; color: #fff; list-height: 1em; opacity: 0.2; -webkit-animation: spin 8s linear infinite reverse; animation: spin 8s linear infinite reverse; } .flake:after { margin: 0.125em 0 0 -1em; font-size: 1.5em; opacity: 0.4; -webkit-animation: spin 14s linear infinite; animation: spin 14s linear infinite; } .flake:nth-child(2):before { margin: -0.5em 0 0 0.25em; font-size: 1.25em; opacity: 0.2; -webkit-animation: spin 10s linear infinite; animation: spin 10s linear infinite; } .flake:nth-child(2):after { margin: 0.375em 0 0 0.125em; font-size: 2em; opacity: 0.4; -webkit-animation: spin 16s linear infinite reverse; animation: spin 16s linear infinite reverse; } .bolt { position: absolute; top: 50%; left: 50%; margin: -0.25em 0 0 -0.125em; color: #fff; opacity: 0.3; -webkit-animation: lightning 2s linear infinite; animation: lightning 2s linear infinite; } .bolt:nth-child(2) { width: 0.5em; height: 0.25em; margin: -1.75em 0 0 -1.875em; -webkit-transform: translate(2.5em, 2.25em); transform: translate(2.5em, 2.25em); opacity: 0.2; -webkit-animation: lightning 1.5s linear infinite; animation: lightning 1.5s linear infinite; } .bolt:before, .bolt:after { content: ''; position: absolute; z-index: 2; top: 50%; left: 50%; margin: -1.625em 0 0 -1.0125em; border-top: 1.25em solid transparent; border-right: 0.75em solid; border-bottom: 0.75em solid; border-left: 0.5em solid transparent; -webkit-transform: skewX(-10deg); transform: skewX(-10deg); } .bolt:after { margin: -0.25em 0 0 -0.25em; border-top: 0.75em solid; border-right: 0.5em solid transparent; border-bottom: 1.25em solid transparent; border-left: 0.75em solid; -webkit-transform: skewX(-10deg); transform: skewX(-10deg); } .bolt:nth-child(2):before { margin: -0.75em 0 0 -0.5em; border-top: 0.625em solid transparent; border-right: 0.375em solid; border-bottom: 0.375em solid; border-left: 0.25em solid transparent; } .bolt:nth-child(2):after { margin: -0.125em 0 0 -0.125em; border-top: 0.375em solid; border-right: 0.25em solid transparent; border-bottom: 0.625em solid transparent; border-left: 0.375em solid; } /* Keyframe animations */ @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @-webkit-keyframes rain { 0% { background: #0cf; box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 #0cf; } 25% { box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em #0cf, -1.375em -0.125em 0 rgba(255, 255, 255, 0.2); } 50% { background: rgba(255, 255, 255, 0.3); box-shadow: 0.625em 0.875em 0 -0.125em #0cf, -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 rgba(255, 255, 255, 0.2); } 100% { box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 #0cf; } } @keyframes rain { 0% { background: #0cf; box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 #0cf; } 25% { box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em #0cf, -1.375em -0.125em 0 rgba(255, 255, 255, 0.2); } 50% { background: rgba(255, 255, 255, 0.3); box-shadow: 0.625em 0.875em 0 -0.125em #0cf, -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 rgba(255, 255, 255, 0.2); } 100% { box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 #0cf; } } @-webkit-keyframes cloud { 0% { opacity: 0; } 50% { opacity: 0.3; } 100% { opacity: 0; -webkit-transform: scale(0.5) translate(-200%, -3em); transform: scale(0.5) translate(-200%, -3em); } } @keyframes cloud { 0% { opacity: 0; } 50% { opacity: 0.3; } 100% { opacity: 0; -webkit-transform: scale(0.5) translate(-200%, -3em); transform: scale(0.5) translate(-200%, -3em); } } @-webkit-keyframes lightning { 45% { color: #fff; background: #fff; opacity: 0.2; } 50% { color: #0cf; background: #0cf; opacity: 1; } 55% { color: #fff; background: #fff; opacity: 0.2; } } @keyframes lightning { 45% { color: #fff; background: #fff; opacity: 0.2; } 50% { color: #0cf; background: #0cf; opacity: 1; } 55% { color: #fff; background: #fff; opacity: 0.2; } } /*模态框*/ .modalBox { display: none; width: 100%; height: 100%; position: fixed; left: 0; top: 0; z-index: 999; background-color: rgba(0, 0, 0, 0.5); } .modalBox-matter { background-color: rgba(0, 0, 0, 0.2); display: flex; flex-flow: column nowrap; justify-content: space-between; position: relative; width: 23%; left: 50%; height: 58%; top: 37%; border-radius: 10px; overflow: auto; /*resize:both;*/ animation: 0.6s; -webkit-animation: zoom 0.6s; box-shadow: inset 0px 0px 10px 1px #1C6995; } @keyframes zoom { from { transform: scale(0) } to { transform: scale(1) } } .modalBox-header { position: relative; } .mtclose { position: absolute; right: 20px; color: #602E2A; z-index: 99999999; font-size: 3em; font-weight: bold; transition: all 0.3s; /*z-index: 1010; */ } .mtclose:hover, .mtclose:focus { color: #602E2A; cursor: pointer; } .modalBox-body { padding: 10px; font-size: 16px; width: 500px; height: 434px; position: absolute; } .Observation-box{ width: 100%; white-space: nowrap; overflow: hidden; height: auto; } .precipitation-box{ width: 100%; overflow: hidden; height: auto; white-space: nowrap; position: relative; } /**/ .material-headers{ display: flex; justify-content: left; align-items: center; } .material-headers img{ width: 30px; height: 30px; background-color: red; } .material-headers span{ margin-left: 10px; color: white; } .material-item{ border-left: 1px solid #2A303D; padding-left: 20px; position: relative; width: 49%; margin-top: 20px; box-sizing: border-box; display: inline-block; } .material-item:after{ position:absolute; content: ""; height: 20px; border-left: 3px solid white; left: -2px; top: 0px; } .material-item-box{ display: flex; justify-content: left; align-items: center; } .material-item-box img{ width: 25px; height: 25px; margin-right: 10px; } .material-item-box-right{ width: 100%; position: relative; border-bottom:1px solid #2A303D; margin-top: 10px; } .material-item-box-right:after{ content: ""; position: absolute; bottom: -2px; right: 0px; width: 100px; border-bottom: 3px solid white; } .material-item-box-right span{ color: white; margin:2px 5px; } .material-item:nth-child(2n) { float: left; }.material-item:nth-child(2n+1) { margin-left: 2%; float: right; } .highlight-div-icon_zk{ background-image:url("../Images/aaa.png"); background-size: 45px 38px; text-align: center; } .highlight-div-icon_zk-one{ background-image:url("../Images/one.png"); background-size: 45px 38px; text-align: center; } .highlight-div-icon_zk-two{ background-image:url("../Images/two.png"); background-size: 45px 38px; /*background-position: -10% 10%;*/ text-align: center; } .highlight-div-icon_zk-three{ background-image:url("../Images/three.png"); background-size: 45px 38px; text-align: center; } .highlight-div-icon_zk-four{ background-image:url("../Images/four.png"); background-size: 45px 38px; text-align: center; } .highlight-div-icon_zk-five{ background-image:url("../Images/five.png"); background-size: 45px 38px; text-align: center; } .highlight-div-icon_zk-six{ background-image:url("../Images/six.png"); background-size: 45px 38px; text-align: center; } .highlight-div-icon_zk-seven{ background-image:url("../Images/seven.png"); background-size: 45px 38px; text-align: center; } /*.police-warp:nth-child(2n+1) .police-info {*/ /* margin-left: 8px;*/ /*}*/ /*.police-warp:nth-child(2n) .police-info {*/ /* margin-right: 8px;*/ /*}*/
demo/demo1.css
html, body, #map { padding: 0px; margin: 0px; } /*.leaflet-tile-pane {*/ /*z-index: 200;*/ /*display: none;*/ /*}*/ .item { /*margin-left: 58px;*/ } .right-item { } /*#map { width: 1920px; height: 1080px; z-index: 9; }*/ .containers-info { position: absolute; width: 100%; height: 100%; } .headers { width: 100%; text-align: center; font-family: "微软雅黑"; font-weight: bold; font-size: 50px; height: 80px; background-color: pink; color: #fff; background-image: -webkit-gradient( linear, 0 30%, 0 bottom, from(#72bfb9), to(#A9B4CA) ); /*background-clip: text;*/ -webkit-background-clip: text; -webkit-text-fill-color: transparent; position: relative; } @keyframes shine { 0% { background-position-x: 400%; } 50% { background-position-x: 0%; } 100% { background-position-x: -400%; } } .mains a{ position: absolute; color: white; top: 0px; text-align: center; width: 525px; left: 22%; font-family: "微软雅黑"; font-weight: bold; font-size: 50px; height: 80px; background-color: pink; color: #fff; background-image: -webkit-gradient( linear, 0 30%, 0 bottom, from(#FFFFFF), to(#A9B4CA) ); /*background-clip: text;*/ -webkit-background-clip: text; -webkit-text-fill-color: transparent; background: rgba(156, 204, 101, 0); background: linear-gradient(-45deg, rgba(156, 204, 101, 0) 50%, rgba(252, 252, 252, 0.69) 60%, rgba(156, 204, 101, 0) 70%); background-size:600% 100%; -webkit-animation: shine 20s infinite; animation: shine 20s infinite; -webkit-animation-delay: 0s; animation-delay: 0s; -webkit-animation-timing-function: linear; animation-timing-function: linear; } .headers .small { position: absolute; top: 19px; z-index: 999; right: 28%; font-family: "微软雅黑"; font-weight: bold; font-size: 35px; background-color: pink; color: #fff; background-image: -webkit-gradient( linear, 0 30%, 0 bottom, from(#FFFFFF), to(#A9B4CA) ); /*background-clip: text;*/ -webkit-background-clip: text; -webkit-text-fill-color: transparent; } .containers-warp { z-index: 1; width: 100%; height: 100%; display: flex; justify-content: space-between; } .mains { width: 49%; height: 100px; z-index: 9999; background: url("../Images/pinner.png"); background-repeat: no-repeat; -o-background-size: 100% 100%; background-position: 43% -50%; position: relative; } .child-room { z-index: 990; width: 24%; height: 100%; /*padding-top: 50px;*/ box-sizing: border-box; } .child-room-title-left { height: 40px; width: 130%; border: 0px; border-bottom: 3px solid; margin-left: 50px; border-image: linear-gradient(to right, #05748b, #0b8cb8) 10 10; display: flex; } .mains1 { width: 106%; height: 400px; z-index: 9999; top:670px; margin-left: -29px; /*margin-left: -25px;*/ /*background: url("../Images/pinner.png");*/ background-repeat: no-repeat; -o-background-size: 100% 100%; background-position: 43% -50%; position: relative; } .child-room-warp-bottom { /*padding-left: 30px;*/ z-index: 0; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)); /*background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));*/ /*padding-right: 50px;*/ box-sizing: border-box; } .child-room-title-right { position: relative; left: -40%; height: 40px; width: 140%; border: 0px; margin-left: -50px; border-bottom: 3px solid; border-image: linear-gradient(to right, #0b8cb8, #05748b) 10 10; } .child-room-warp-left { box-sizing: border-box; z-index: 9999; width: 100%; height: 100%; padding-left: 50px; padding-right: 30px; background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)); } .child-room-warp-right { padding-left: 30px; z-index: 9999; width: 100%; height: 100%; background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)); padding-right: 50px; box-sizing: border-box; } .warp-info-left { width: 100%; height: 100%; } .warp-info-right { width: 100%; height: 100%; } .banners { display: flex; align-items: center; font-size: 28px; font-weight: 500; font-family: 微软雅黑; padding: 10px 0px; padding-top: 30px; } .banners span { border-left: 2px solid white; margin-left: 20px; padding-left: 20px; color: white; } .icon { width: 40px; height: 40px; } .weather { height: 180px; border: 1px solid #647b89; border-radius: 10px; padding: 10px; box-sizing: border-box; display: flex; } .weather-left { } .weather-left img { height: 100px; margin-left: 30px; } .weather-left-name { margin-left: 30px; font-size: 30px; font-weight: 500; text-align: center; width: 100px; color: white; } .weather-left-name1 { /*margin-left: 30px;*/ margin-top: 10px; font-size: 15px; font-weight: 500; text-align: center; width: 160px; color: white; } .weather-right-name { margin-left: 30px; font-size: 30px; font-weight: 500; text-align: center; width: 100px; color: white; } .weather-centens { height: 100%; border-left: 3px solid white; /*margin-left: 40px;*/ /*padding-left: 20px;*/ /*padding-right: 20px;*/ width: 100%; overflow: hidden; } .weather-centens-banner { display: flex; color: white; margin-bottom: 10px; margin-top: 10px; } .weather-centens-banner div { display: flex; align-items: center; } .weather-centens-banner div img { width: 25px; height: 25px; /*border-right: 1px solid white;*/ /*padding-right: 10px;*/ /*margin-right: 10px;*/ margin-left: 5px; } .weather-centens-banner-item { display: flex; justify-items: center; justify-content: space-between; align-items: center; color: white; background-color: #384454; } .weather-centens-banner-flex2 { flex: 2; justify-content: center; margin-left: 20px; background-color: #2D445C; text-align: center; } .weather-centens-banner-item span { color: white; padding: 2px 10px; } /*.weather-left-name2{*/ /*text-align: center;*/ /*}*/ .precipitation { width: 100%; height: unset; display: flex; } .precipitation-left { font-size: 12px; width: 40px; font-weight: 500; font-family: 微软雅黑; color: white; box-sizing: border-box; padding: 10px 14px; background-color: #384454; } .precipitation-warp { width: 100%; height: auto;; } .precipitation-warp-item { display: inline-block; color: white; width: 45px; font-size: 7px; text-align: center; box-sizing: border-box; padding-top: 10px; height: 68px; background-color: #2D445C; overflow: hidden; margin: 0px 5px; } .precipitation-warp-item span { display: block; } .precipitation-warp-item a img { width: 20px; height: 20px; } .left-banner { height: 35px; display: flex; line-height: 33px; } .left-banner-header { width: 35px; height: 35px; margin-right: 10px; background-color: red; } .left-banner-room { height: 35px; width: auto; width: 100%; background-color: rgba(32, 43, 59, 0.58); color: white; font-size: 16px; padding-left: 20px; } /*线字线*/ .order { margin-left: 10px; width: 234px; } .order .line { display: inline-block; width: 100px; border-top: 1px solid #0b8cb8; /*position: relative;*/ } .order .txt { color: #02c0c5; vertical-align: middle; font-size: 8px; } .data { width: 234px; text-align: center; color: #02c0c5; font-family: 微软雅黑; font-weight: bold; font-size: 14px; } .headers-left-title { position: relative; } .header-title-dian { z-index: 999; position: absolute; transform: rotate(90deg); display: flex; justify-content: space-between; width: 24px; top: 10px; left: 0px; font-size: 24px; color: #02c0c5; } .duty-headers { border-bottom: 3px solid #2074a9; position: relative; } .duty-headers-title { color: #2daaf2; list-style-type: none; display: flex; justify-content: space-between; align-items: center; text-align: left; padding: 0px 10px; margin: 5px 0px; } .duty-headers-title li { flex: 1; } .duty-headers:before { content: ""; display: inline-block; width: 10px; height: 2px; position: absolute; top: 0px; left: 0px; background-color: white; } .duty-headers:after { content: ""; display: inline-block; width: 10px; height: 2px; position: absolute; top: 0px; right: 0px; background-color: white; } .duty-headers-room { list-style-type: none; margin: 0px; padding: 5px; padding-top: 10px; padding-bottom: 0px; } .duty-headers-room li { padding-right: 0px; display: flex; } .duty-headers-room-left { position: relative; flex: 1; height: 25px; } .duty-headers-room-left-main { display: flex; justify-content: left; align-items: center; height: 25px; margin-right: 25px; background: linear-gradient(to right, rgba(19, 33, 50, 0.25), rgba(18, 33, 51, 0.69)); } .duty-headers-room-left-main:after { content: ""; display: inline-block; width: 15px; height: 23px; position: absolute; top: 0px; right: 25px; background-color: #2D3641; border: 1px solid #393E43; border-radius: 2px; } .right-top-banner { display: flex; justify-content: left; align-items: center; padding: 0px 5px; } .right-top-banner img { width: 20px; height: 20px; } .right-top-banner span { line-height: 22px; font-size: 18px; border-left: 1px solid white; padding-left: 5px; margin-left: 5px; color: white; padding-bottom: 1px; } .duty-headers-room-main { flex: 2; height: 25px; } .duty-headers-room-main-room { display: flex; justify-content: left; margin-right: 25px; background-color: red; background: linear-gradient(to right, rgba(19, 33, 50, 0.25), rgba(18, 33, 51, 0.69)); border: 1px solid #393E43; height: 23px; border-radius: 2px; position: relative; } .duty-headers-room-main-room:after { content: ""; display: inline-block; width: 15px; height: 23px; position: absolute; top: -1px; border-radius: 2px; right: -1px; background-color: #2D3641; border: 1px solid #393E43; border-radius: 2px; } .duty-headers-room-main-room-item { flex: 1; } .duty-headers-room-right { flex: 2; height: 25px; background-color: pink; background: linear-gradient(to right, rgba(19, 33, 50, 0.25), rgba(18, 33, 51, 0.69)); } .duty-headers-room-right-main { position: relative; border: 1px solid #393E43; height: 23px; border-radius: 2px; display: flex; } .duty-headers-room-right-main:after { content: ""; display: inline-block; width: 15px; height: 23px; position: absolute; top: -1px; border-radius: 2px; right: -1px; background-color: #2D3641; border: 1px solid #393E43; border-radius: 2px; } .right-cantent { margin-top: 10px; } /*.right-cantent ul {*/ /* border: 1px solid #232e39;*/ /* height: 38px;*/ /* border-radius: 10px;*/ /* list-style-type: none;*/ /* display: flex;*/ /* justify-content: space-between;*/ /* align-items: center;*/ /* text-align: left;*/ /* padding: 0px 10px;*/ /* margin: 5px 0px;*/ /*}*/ /*.right-cantent ul> li {*/ /* color: white;*/ /* font-size: 20px;*/ /* margin: 0px;*/ /* line-height: 38px;*/ /*}*/ .right-cantent-title { width: 100%; /*border-left: 4px solid #427fad;*/ height: 54px; background-color: rgba(20, 36, 52, 0.7); /*display: flex;*/ padding: 0px 2px; position: relative; line-height: 54px; } .right-cantent-title:before { content: ""; position: absolute; height: 54px; width: 4px; background-color: #427fad; } .ranks { display: flex; align-items: center; color: white; } .ranks img { width: 48px; height: 48px; padding-top: 3px } .ranks span { font-size: 24px; padding: 0px 10px; } .ranks span p { margin: 0px; display: inline-block; font-size: 18px; padding: 0px 10px; } .right-cantent-title-item { display: flex; justify-content: space-between; } .Observation { height: 230px; border-left: 2px solid #14486a; position: relative; margin-top: 10px; display: flex; justify-content: space-between; overflow: hidden; } .Observation:before { content: ""; position: absolute; height: 10px; width: 2px; left: -2px; background-color: #73b9e1; } .Observation:after { content: ""; position: absolute; height: 10px; width: 2px; left: -2px; background-color: #73b9e1; bottom: 0px; } .Observation-warp{ width: 100%; } .Observation-item { white-space: normal; height: 230px; margin: 0px 4px; display: inline-block; width: 120px; box-shadow: 0px 0px 5px 5px rgba(91, 92, 93, 0.46) inset } .Observation-header { word-break: normal;   word-break: break-all;   word-break: keep-all; display: table; /*重点*/ border: 1px solid #232930; margin: 0px 5px; width: 110px; box-sizing: border-box; } .Observation-item-table { width: 65px; box-sizing: border-box; padding: 0px 10px; } .Observation-item-table ul { list-style-type: none; margin: 0px; padding: 0px; } .Observation-item-table ul li { color: #2895d6; text-align: left; font-size: 12px; } .Observation-item-table ul li p { margin: 0px; } .Observation-header p { display: table-cell; vertical-align: middle; text-align: left; height: 40px; color: #d4d5d5; padding: 4px; font-size: 12px; } .Observation-item-warp { list-style-type: none; margin: 0px; padding: 0px; } .Observation-item-warp li { display: flex; align-items: center; box-sizing: border-box; margin-left: 10px; } .Observation-item-warp li img { width: 20px; height: 20px; } .Observation-item-warp li span { margin-left: 5px; font-size: 12px; padding-left: 5px; border-left: 1px solid white; color: white } .police { box-sizing: border-box; width: 100%; margin-top: 20px; } .color-e3b44b { color: #e3b44b !important; } .police-warp { width: 50%; height: 70px; display: inline-block; box-sizing: border-box; margin: 5px 0px; position: relative; } .police-warp:nth-child(2n+1) { margin-left: -3px; float: right; } .police-warp:nth-child(2n+1) .police-info { margin-left: 8px; } .police-warp:nth-child(2n) .police-info { margin-right: 8px; } .police-info { border: 1px solid #353d4c; width: auto; height: 100%; /*border:1px solid #353d4c;*/ position: relative; } .police-info:before { content: ""; position: absolute; width: 1px; height: 20px; background-color: #65676c; left: -1px; } .police-info:after { content: ""; position: absolute; width: 20px; height: 1px; background-color: #65676c; left: 0px; bottom: 70px; } .police-info .police-info-bg { margin: 0px; height: 25px; background-color: #2d4c7a; display: flex; } .police-info .police-info-bg img { width: 25px; height: 25px; margin: 0px 10px; } .police-info .police-info-bg span { border-left: 1px solid white; color: #000000; font-size: 16px; font-weight: 500; font-family: 微软雅黑; padding-left: 10px; } .police-info-center { color: white; display: flex; margin: 4px 0px; } .police-center-left-top { flex: 2; display: flex; align-items: center; } .police-center-right-top { flex: 1; display: flex; align-items: center; } .police-name { font-size: 12px; } .police-time { padding-left: 5px; margin: 4px 0px; border-left: 1px solid white; font-size: 12px; margin: 0px; margin-left: 5px; } .police-bottom-rooom { padding: 0px 10px; } /*晴天*/ .icons { height: 80px; margin-left: 78px; margin-top: 45px; } /*.sun {*/ /* width: 2.5em;*/ /* height: 2.5em;*/ /* margin: -1.25em;*/ /* background: currentColor;*/ /* border-radius: 50%;*/ /* box-shadow: 0 0 0 0.375em orange;*/ /* animation: spin 12s infinite linear;*/ /*}*/ /*.rays {*/ /* position: absolute;*/ /* top: -2em;*/ /* left: 50%;*/ /* display: block;*/ /* width: 0.375em;*/ /* height: 1.125em;*/ /* margin-left: -0.1875em;*/ /* background: yellow;*/ /* border-radius: 0.25em;*/ /* box-shadow: 0 5.375em yellow;*/ /*}*/ /*.rays:before, .rays:after {*/ /* content: '';*/ /* position: absolute;*/ /* top: 0em;*/ /* left: 0em;*/ /* display: block;*/ /* width: 0.375em;*/ /* height: 1.125em;*/ /* transform: rotate(60deg);*/ /* transform-origin: 50% 3.25em;*/ /* background: yellow;*/ /* border-radius: 0.25em;*/ /* box-shadow: 0 5.375em yellow;*/ /*}*/ /*.rays:before {*/ /* transform: rotate(120deg);*/ /*}*/ /*@keyframes spin {*/ /* 100% {*/ /* transform: rotate(360deg);*/ /* }*/ /*}*/ /*.cloud {*/ /* position: absolute;*/ /* z-index: 1;*/ /* width: 3.6875em;*/ /* height: 3.6875em;*/ /* margin: -1.84375em;*/ /* background: currentColor;*/ /* border-radius: 50%;*/ /* box-shadow:*/ /* -2.1875em 0.6875em 0 -0.6875em,*/ /* 2.0625em 0.9375em 0 -0.9375em ,*/ /* 0 0 0 0.375em lightgray,*/ /* -2.1875em 0.6875em 0 -0.3125em lightgray,*/ /* 2.0625em 0.9375em 0 -0.5625em lightgray;*/ /*}*/ /*.cloud:after {*/ /* content: '';*/ /* position: absolute;*/ /* bottom: 0;*/ /* left: -0.5em;*/ /* display: block;*/ /* width: 4.5625em;*/ /* height: 1em;*/ /* background: currentColor;*/ /* box-shadow: 0 0.4375em 0 -0.0625em lightgray;*/ /*}*/ /*.rain{*/ /* position: absolute;*/ /* z-index: 2;*/ /* top: 50%;*/ /* left: 20%;*/ /* width: 3.75em;*/ /* height: 3.75em;*/ /* margin: 0.375em 0 0 -2em;*/ /* background: currentColor;*/ /*}*/ .icon { /* position: relative; */ /* display: inline-block; */ font-size: 1em; /* control icon size here */ } .sunny { /*position: absolute;*/ /*top: 50%;*/ /*left: 25%;*/ } .rainy { height: 60px; margin-left: 78px; margin-top: 45px; /*position: absolute;*/ /*top: 50%;*/ /*left: 35%;*/ } .cloudy { /*position: absolute;*/ /*top: 50%;*/ /*left: 45%;*/ height: 60px; margin-left: 78px; margin-top: 45px; } .flurries { height: 60px; margin-left: 78px; margin-top: 45px; } .thunder-storm { height: 60px; margin-left: 78px; margin-top: 45px; } .sun-shower { height: 60px; margin-left: 78px; margin-top: 45px; } .sun { width: 2.5em; height: 2.5em; margin: -1.25em; background: rgba(255, 255, 255, 0); border-radius: 50%; box-shadow: 0 0 0 0.375em orange; -webkit-animation: spin 12s infinite linear; animation: spin 12s infinite linear; } .cloud + .sun { margin: -2em 1em; } .rays { position: absolute; top: -2em; left: 50%; display: block; width: 0.375em; height: 1.125em; margin-left: -0.1875em; background: yellow; border-radius: 0.25em; box-shadow: 0 5.375em yellow; } .rays:before, .rays:after { content: ''; position: absolute; top: 0em; left: 0em; display: block; width: 0.375em; height: 1.125em; -webkit-transform: rotate(60deg); transform: rotate(60deg); -webkit-transform-origin: 50% 3.25em; transform-origin: 50% 3.25em; background: yellow; border-radius: 0.25em; box-shadow: 0 5.375em yellow; } .rays:before { -webkit-transform: rotate(120deg); transform: rotate(120deg); } .rain, .lightning, .snow { position: relative; /*position: absolute;*/ z-index: 2; top: 44%; left: -1%; width: 3.75em; height: 3.75em; margin: 0.375em 0 0 -2em; background: rgba(255, 255, 255, 0); } .rain:after { content: ''; position: absolute; z-index: 2; top: 50%; left: 50%; width: 1.125em; height: 1.125em; margin: -1em 0 0 -0.25em; background: #0cf; border-radius: 100% 0 60% 50% / 60% 0 100% 50%; box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 rgba(255, 255, 255, 0.2); -webkit-transform: rotate(-28deg); transform: rotate(-28deg); -webkit-animation: rain 3s linear infinite; animation: rain 3s linear infinite; } .cloud { position: absolute; z-index: 1; width: 3.6875em; height: 3.6875em; margin: -1.84375em; background: currentColor; border-radius: 50%; box-shadow: -2.1875em 0.6875em 0 -0.6875em, 2.0625em 0.9375em 0 -0.9375em, 0 0 0 0.375em lightgray, -2.1875em 0.6875em 0 -0.3125em lightgray, 2.0625em 0.9375em 0 -0.5625em lightgray; } .cloud:after { content: ''; position: absolute; bottom: 0; left: -0.5em; display: block; width: 4.5625em; height: 1em; background: currentColor; box-shadow: 0 0.4375em 0 -0.0625em lightgray; } .cloud:nth-child(2) { z-index: 0; background: #fff; box-shadow: -2.1875em 0.6875em 0 -0.6875em #fff, 2.0625em 0.9375em 0 -0.9375em #fff, 0 0 0 0.375em #fff, -2.1875em 0.6875em 0 -0.3125em #fff, 2.0625em 0.9375em 0 -0.5625em #fff; opacity: 0.3; -webkit-transform: scale(0.5) translate(6em, -3em); transform: scale(0.5) translate(6em, -3em); -webkit-animation: cloud 4s linear infinite; animation: cloud 4s linear infinite; } .cloud:nth-child(2):after { background: #fff; } .flake:before, .flake:after { content: '\2745'; position: absolute; top: 50%; left: 50%; margin: -1.025em 0 0 -1.0125em; color: #fff; list-height: 1em; opacity: 0.2; -webkit-animation: spin 8s linear infinite reverse; animation: spin 8s linear infinite reverse; } .flake:after { margin: 0.125em 0 0 -1em; font-size: 1.5em; opacity: 0.4; -webkit-animation: spin 14s linear infinite; animation: spin 14s linear infinite; } .flake:nth-child(2):before { margin: -0.5em 0 0 0.25em; font-size: 1.25em; opacity: 0.2; -webkit-animation: spin 10s linear infinite; animation: spin 10s linear infinite; } .flake:nth-child(2):after { margin: 0.375em 0 0 0.125em; font-size: 2em; opacity: 0.4; -webkit-animation: spin 16s linear infinite reverse; animation: spin 16s linear infinite reverse; } .bolt { position: absolute; top: 50%; left: 50%; margin: -0.25em 0 0 -0.125em; color: #fff; opacity: 0.3; -webkit-animation: lightning 2s linear infinite; animation: lightning 2s linear infinite; } .bolt:nth-child(2) { width: 0.5em; height: 0.25em; margin: -1.75em 0 0 -1.875em; -webkit-transform: translate(2.5em, 2.25em); transform: translate(2.5em, 2.25em); opacity: 0.2; -webkit-animation: lightning 1.5s linear infinite; animation: lightning 1.5s linear infinite; } .bolt:before, .bolt:after { content: ''; position: absolute; z-index: 2; top: 50%; left: 50%; margin: -1.625em 0 0 -1.0125em; border-top: 1.25em solid transparent; border-right: 0.75em solid; border-bottom: 0.75em solid; border-left: 0.5em solid transparent; -webkit-transform: skewX(-10deg); transform: skewX(-10deg); } .bolt:after { margin: -0.25em 0 0 -0.25em; border-top: 0.75em solid; border-right: 0.5em solid transparent; border-bottom: 1.25em solid transparent; border-left: 0.75em solid; -webkit-transform: skewX(-10deg); transform: skewX(-10deg); } .bolt:nth-child(2):before { margin: -0.75em 0 0 -0.5em; border-top: 0.625em solid transparent; border-right: 0.375em solid; border-bottom: 0.375em solid; border-left: 0.25em solid transparent; } .bolt:nth-child(2):after { margin: -0.125em 0 0 -0.125em; border-top: 0.375em solid; border-right: 0.25em solid transparent; border-bottom: 0.625em solid transparent; border-left: 0.375em solid; } /* Keyframe animations */ @-webkit-keyframes spin { 0% { -webkit-transform: rotate(0deg); } 100% { -webkit-transform: rotate(360deg); } } @keyframes spin { 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } } @-webkit-keyframes rain { 0% { background: #0cf; box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 #0cf; } 25% { box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em #0cf, -1.375em -0.125em 0 rgba(255, 255, 255, 0.2); } 50% { background: rgba(255, 255, 255, 0.3); box-shadow: 0.625em 0.875em 0 -0.125em #0cf, -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 rgba(255, 255, 255, 0.2); } 100% { box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 #0cf; } } @keyframes rain { 0% { background: #0cf; box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 #0cf; } 25% { box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em #0cf, -1.375em -0.125em 0 rgba(255, 255, 255, 0.2); } 50% { background: rgba(255, 255, 255, 0.3); box-shadow: 0.625em 0.875em 0 -0.125em #0cf, -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 rgba(255, 255, 255, 0.2); } 100% { box-shadow: 0.625em 0.875em 0 -0.125em rgba(255, 255, 255, 0.2), -0.875em 1.125em 0 -0.125em rgba(255, 255, 255, 0.2), -1.375em -0.125em 0 #0cf; } } @-webkit-keyframes cloud { 0% { opacity: 0; } 50% { opacity: 0.3; } 100% { opacity: 0; -webkit-transform: scale(0.5) translate(-200%, -3em); transform: scale(0.5) translate(-200%, -3em); } } @keyframes cloud { 0% { opacity: 0; } 50% { opacity: 0.3; } 100% { opacity: 0; -webkit-transform: scale(0.5) translate(-200%, -3em); transform: scale(0.5) translate(-200%, -3em); } } @-webkit-keyframes lightning { 45% { color: #fff; background: #fff; opacity: 0.2; } 50% { color: #0cf; background: #0cf; opacity: 1; } 55% { color: #fff; background: #fff; opacity: 0.2; } } @keyframes lightning { 45% { color: #fff; background: #fff; opacity: 0.2; } 50% { color: #0cf; background: #0cf; opacity: 1; } 55% { color: #fff; background: #fff; opacity: 0.2; } } /*模态框*/ .modalBox { display: none; width: 100%; height: 100%; position: fixed; left: 0; top: 0; z-index: 999; background-color: rgba(0, 0, 0, 0.5); } .modalBox-matter { background-color: rgba(0, 0, 0, 0.2); display: flex; flex-flow: column nowrap; justify-content: space-between; position: relative; width: 23%; left: 50%; height: 58%; top: 37%; border-radius: 10px; overflow: auto; /*resize:both;*/ animation: 0.6s; -webkit-animation: zoom 0.6s; box-shadow: inset 0px 0px 10px 1px #1C6995; } @keyframes zoom { from { transform: scale(0) } to { transform: scale(1) } } .modalBox-header { position: relative; } .mtclose { position: absolute; right: 20px; color: #602E2A; z-index: 99999999; font-size: 3em; font-weight: bold; transition: all 0.3s; /*z-index: 1010; */ } .mtclose:hover, .mtclose:focus { color: #602E2A; cursor: pointer; } .modalBox-body { padding: 10px; font-size: 16px; width: 500px; height: 434px; position: absolute; } .Observation-box{ width: 100%; white-space: nowrap; overflow: hidden; height: auto; } .precipitation-box{ width: 100%; overflow: hidden; height: auto; white-space: nowrap; position: relative; } /**/ .material-headers{ display: flex; justify-content: left; align-items: center; } .material-headers img{ width: 30px; height: 30px; background-color: red; } .material-headers span{ margin-left: 10px; color: white; } .material-item{ border-left: 1px solid #2A303D; padding-left: 20px; position: relative; width: 49%; margin-top: 20px; box-sizing: border-box; display: inline-block; } .material-item:after{ position:absolute; content: ""; height: 20px; border-left: 3px solid white; left: -2px; top: 0px; } .material-item-box{ display: flex; justify-content: left; align-items: center; } .material-item-box img{ width: 25px; height: 25px; margin-right: 10px; } .material-item-box-right{ width: 100%; position: relative; border-bottom:1px solid #2A303D; margin-top: 10px; } .material-item-box-right:after{ content: ""; position: absolute; bottom: -2px; right: 0px; width: 100px; border-bottom: 3px solid white; } .material-item-box-right span{ color: white; margin:2px 5px; } .material-item:nth-child(2n) { float: left; }.material-item:nth-child(2n+1) { margin-left: 2%; float: right; } .highlight-div-icon_zk{ background-image:url("../Images/aaa.png"); background-size: 45px 38px; text-align: center; } .highlight-div-icon_zk-one{ background-image:url("../Images/one.png"); background-size: 45px 38px; text-align: center; } .highlight-div-icon_zk-two{ background-image:url("../Images/two.png"); background-size: 45px 38px; /*background-position: -10% 10%;*/ text-align: center; } .highlight-div-icon_zk-three{ background-image:url("../Images/three.png"); background-size: 45px 38px; text-align: center; } .highlight-div-icon_zk-four{ background-image:url("../Images/four.png"); background-size: 45px 38px; text-align: center; } .highlight-div-icon_zk-five{ background-image:url("../Images/five.png"); background-size: 45px 38px; text-align: center; } .highlight-div-icon_zk-six{ background-image:url("../Images/six.png"); background-size: 45px 38px; text-align: center; } .highlight-div-icon_zk-seven{ background-image:url("../Images/seven.png"); background-size: 45px 38px; text-align: center; } /*.police-warp:nth-child(2n+1) .police-info {*/ /* margin-left: 8px;*/ /*}*/ /*.police-warp:nth-child(2n) .police-info {*/ /* margin-right: 8px;*/ /*}*/
0.362066
0.046573
body { background: #e0e5ec; } h1 { position: relative; text-align: center; color: #353535; font-size: 50px; font-family: "Cormorant Garamond", serif; } p { font-family: 'Lato', sans-serif; font-weight: 300; text-align: center; font-size: 18px; color: #676767; } .frame { width: 90%; margin: 40px auto; text-align: center; } button { margin: 20px; } .custom-btn { width: 130px; height: 40px; color: #fff; border-radius: 5px; padding: 10px 25px; font-family: 'Lato', sans-serif; font-weight: 500; background: transparent; cursor: pointer; transition: all 0.3s ease; position: relative; display: inline-block; box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1); outline: none; } /* 1 */ .btn-1 { background: rgb(6,14,131); background: linear-gradient(0deg, rgba(6,14,131,1) 0%, rgba(12,25,180,1) 100%); border: none; } .btn-1:hover { background: rgb(0,3,255); background: linear-gradient(0deg, rgba(0,3,255,1) 0%, rgba(2,126,251,1) 100%); } /* 2 */ .btn-2 { background: rgb(96,9,240); background: linear-gradient(0deg, rgba(96,9,240,1) 0%, rgba(129,5,240,1) 100%); border: none; } .btn-2:before { height: 0%; width: 2px; } .btn-2:hover { box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .5), inset -4px -4px 6px 0 rgba(255,255,255,.2), inset 4px 4px 6px 0 rgba(0, 0, 0, .4); } /* 3 */ .btn-3 { background: rgb(0,172,238); background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%); width: 130px; height: 40px; line-height: 42px; padding: 0; border: none; } .btn-3 span { position: relative; display: block; width: 100%; height: 100%; } .btn-3:before, .btn-3:after { position: absolute; content: ""; right: 0; top: 0; background: rgba(2,126,251,1); transition: all 0.3s ease; } .btn-3:before { height: 0%; width: 2px; } .btn-3:after { width: 0%; height: 2px; } .btn-3:hover{ background: transparent; box-shadow: none; } .btn-3:hover:before { height: 100%; } .btn-3:hover:after { width: 100%; } .btn-3 span:hover{ color: rgba(2,126,251,1); } .btn-3 span:before, .btn-3 span:after { position: absolute; content: ""; left: 0; bottom: 0; background: rgba(2,126,251,1); transition: all 0.3s ease; } .btn-3 span:before { width: 2px; height: 0%; } .btn-3 span:after { width: 0%; height: 2px; } .btn-3 span:hover:before { height: 100%; } .btn-3 span:hover:after { width: 100%; } /* 4 */ .btn-4 { background-color: #4dccc6; background-image: linear-gradient(315deg, #4dccc6 0%, #96e4df 74%); line-height: 42px; padding: 0; border: none; } .btn-4:hover{ background-color: #89d8d3; background-image: linear-gradient(315deg, #89d8d3 0%, #03c8a8 74%); } .btn-4 span { position: relative; display: block; width: 100%; height: 100%; } .btn-4:before, .btn-4:after { position: absolute; content: ""; right: 0; top: 0; box-shadow: 4px 4px 6px 0 rgba(255,255,255,.9), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.9), inset 4px 4px 6px 0 rgba(116, 125, 136, .3); transition: all 0.3s ease; } .btn-4:before { height: 0%; width: .1px; } .btn-4:after { width: 0%; height: .1px; } .btn-4:hover:before { height: 100%; } .btn-4:hover:after { width: 100%; } .btn-4 span:before, .btn-4 span:after { position: absolute; content: ""; left: 0; bottom: 0; box-shadow: 4px 4px 6px 0 rgba(255,255,255,.9), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.9), inset 4px 4px 6px 0 rgba(116, 125, 136, .3); transition: all 0.3s ease; } .btn-4 span:before { width: .1px; height: 0%; } .btn-4 span:after { width: 0%; height: .1px; } .btn-4 span:hover:before { height: 100%; } .btn-4 span:hover:after { width: 100%; } /* 5 */ .btn-5 { width: 130px; height: 40px; line-height: 42px; padding: 0; border: none; background: rgb(255,27,0); background: linear-gradient(0deg, rgba(255,27,0,1) 0%, rgba(251,75,2,1) 100%); } .btn-5:hover { color: #f0094a; background: transparent; box-shadow:none; } .btn-5:before, .btn-5:after{ content:''; position:absolute; top:0; right:0; height:2px; width:0; background: #f0094a; box-shadow: -1px -1px 5px 0px #fff, 7px 7px 20px 0px #0003, 4px 4px 5px 0px #0002; transition:400ms ease all; } .btn-5:after{ right:inherit; top:inherit; left:0; bottom:0; } .btn-5:hover:before, .btn-5:hover:after{ width:100%; transition:800ms ease all; } /* 6 */ .btn-6 { background: rgb(247,150,192); background: radial-gradient(circle, rgba(247,150,192,1) 0%, rgba(118,174,241,1) 100%); line-height: 42px; padding: 0; border: none; } .btn-6 span { position: relative; display: block; width: 100%; height: 100%; } .btn-6:before, .btn-6:after { position: absolute; content: ""; height: 0%; width: 1px; box-shadow: -1px -1px 20px 0px rgba(255,255,255,1), -4px -4px 5px 0px rgba(255,255,255,1), 7px 7px 20px 0px rgba(0,0,0,.4), 4px 4px 5px 0px rgba(0,0,0,.3); } .btn-6:before { right: 0; top: 0; transition: all 500ms ease; } .btn-6:after { left: 0; bottom: 0; transition: all 500ms ease; } .btn-6:hover{ background: transparent; color: #76aef1; box-shadow: none; } .btn-6:hover:before { transition: all 500ms ease; height: 100%; } .btn-6:hover:after { transition: all 500ms ease; height: 100%; } .btn-6 span:before, .btn-6 span:after { position: absolute; content: ""; box-shadow: -1px -1px 20px 0px rgba(255,255,255,1), -4px -4px 5px 0px rgba(255,255,255,1), 7px 7px 20px 0px rgba(0,0,0,.4), 4px 4px 5px 0px rgba(0,0,0,.3); } .btn-6 span:before { left: 0; top: 0; width: 0%; height: .5px; transition: all 500ms ease; } .btn-6 span:after { right: 0; bottom: 0; width: 0%; height: .5px; transition: all 500ms ease; } .btn-6 span:hover:before { width: 100%; } .btn-6 span:hover:after { width: 100%; } /* 7 */ .btn-7 { background: linear-gradient(0deg, rgba(255,151,0,1) 0%, rgba(251,75,2,1) 100%); line-height: 42px; padding: 0; border: none; } .btn-7 span { position: relative; display: block; width: 100%; height: 100%; } .btn-7:before, .btn-7:after { position: absolute; content: ""; right: 0; bottom: 0; background: rgba(251,75,2,1); box-shadow: -7px -7px 20px 0px rgba(255,255,255,.9), -4px -4px 5px 0px rgba(255,255,255,.9), 7px 7px 20px 0px rgba(0,0,0,.2), 4px 4px 5px 0px rgba(0,0,0,.3); transition: all 0.3s ease; } .btn-7:before{ height: 0%; width: 2px; } .btn-7:after { width: 0%; height: 2px; } .btn-7:hover{ color: rgba(251,75,2,1); background: transparent; } .btn-7:hover:before { height: 100%; } .btn-7:hover:after { width: 100%; } .btn-7 span:before, .btn-7 span:after { position: absolute; content: ""; left: 0; top: 0; background: rgba(251,75,2,1); box-shadow: -7px -7px 20px 0px rgba(255,255,255,.9), -4px -4px 5px 0px rgba(255,255,255,.9), 7px 7px 20px 0px rgba(0,0,0,.2), 4px 4px 5px 0px rgba(0,0,0,.3); transition: all 0.3s ease; } .btn-7 span:before { width: 2px; height: 0%; } .btn-7 span:after { height: 2px; width: 0%; } .btn-7 span:hover:before { height: 100%; } .btn-7 span:hover:after { width: 100%; } /* 8 */ .btn-8 { background-color: #f0ecfc; background-image: linear-gradient(315deg, #f0ecfc 0%, #c797eb 74%); line-height: 42px; padding: 0; border: none; } .btn-8 span { position: relative; display: block; width: 100%; height: 100%; } .btn-8:before, .btn-8:after { position: absolute; content: ""; right: 0; bottom: 0; background: #c797eb; /*box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/ transition: all 0.3s ease; } .btn-8:before{ height: 0%; width: 2px; } .btn-8:after { width: 0%; height: 2px; } .btn-8:hover:before { height: 100%; } .btn-8:hover:after { width: 100%; } .btn-8:hover{ background: transparent; } .btn-8 span:hover{ color: #c797eb; } .btn-8 span:before, .btn-8 span:after { position: absolute; content: ""; left: 0; top: 0; background: #c797eb; /*box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/ transition: all 0.3s ease; } .btn-8 span:before { width: 2px; height: 0%; } .btn-8 span:after { height: 2px; width: 0%; } .btn-8 span:hover:before { height: 100%; } .btn-8 span:hover:after { width: 100%; } /* 9 */ .btn-9 { border: none; transition: all 0.3s ease; overflow: hidden; } .btn-9:after { position: absolute; content: " "; z-index: -1; top: 0; left: 0; width: 100%; height: 100%; background-color: #1fd1f9; background-image: linear-gradient(315deg, #1fd1f9 0%, #b621fe 74%); transition: all 0.3s ease; } .btn-9:hover { background: transparent; box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3); color: #fff; } .btn-9:hover:after { -webkit-transform: scale(2) rotate(180deg); transform: scale(2) rotate(180deg); box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3); } /* 10 */ .btn-10 { background: rgb(22,9,240); background: linear-gradient(0deg, rgba(22,9,240,1) 0%, rgba(49,110,244,1) 100%); color: #fff; border: none; transition: all 0.3s ease; overflow: hidden; } .btn-10:after { position: absolute; content: " "; top: 0; left: 0; z-index: -1; width: 100%; height: 100%; transition: all 0.3s ease; -webkit-transform: scale(.1); transform: scale(.1); } .btn-10:hover { color: #fff; border: none; background: transparent; } .btn-10:hover:after { background: rgb(0,3,255); background: linear-gradient(0deg, rgba(2,126,251,1) 0%, rgba(0,3,255,1)100%); -webkit-transform: scale(1); transform: scale(1); } /* 11 */ .btn-11 { border: none; background: rgb(251,33,117); background: linear-gradient(0deg, rgba(251,33,117,1) 0%, rgba(234,76,137,1) 100%); color: #fff; overflow: hidden; } .btn-11:hover { text-decoration: none; color: #fff; } .btn-11:before { position: absolute; content: ''; display: inline-block; top: -180px; left: 0; width: 30px; height: 100%; background-color: #fff; animation: shiny-btn1 3s ease-in-out infinite; } .btn-11:hover{ opacity: .7; } .btn-11:active{ box-shadow: 4px 4px 6px 0 rgba(255,255,255,.3), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.2), inset 4px 4px 6px 0 rgba(0, 0, 0, .2); } @-webkit-keyframes shiny-btn1 { 0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; } 80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; } 81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; } 100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; } } /* 12 */ .btn-12{ position: relative; right: 20px; bottom: 20px; border:none; box-shadow: none; width: 130px; height: 40px; line-height: 42px; -webkit-perspective: 230px; perspective: 230px; } .btn-12 span { background: rgb(0,172,238); background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%); display: block; position: absolute; width: 130px; height: 40px; box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1); border-radius: 5px; margin:0; text-align: center; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all .3s; transition: all .3s; } .btn-12 span:nth-child(1) { box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9, 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001; -webkit-transform: rotateX(90deg); -moz-transform: rotateX(90deg); transform: rotateX(90deg); -webkit-transform-origin: 50% 50% -20px; -moz-transform-origin: 50% 50% -20px; transform-origin: 50% 50% -20px; } .btn-12 span:nth-child(2) { -webkit-transform: rotateX(0deg); -moz-transform: rotateX(0deg); transform: rotateX(0deg); -webkit-transform-origin: 50% 50% -20px; -moz-transform-origin: 50% 50% -20px; transform-origin: 50% 50% -20px; } .btn-12:hover span:nth-child(1) { box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1); -webkit-transform: rotateX(0deg); -moz-transform: rotateX(0deg); transform: rotateX(0deg); } .btn-12:hover span:nth-child(2) { box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1); color: transparent; -webkit-transform: rotateX(-90deg); -moz-transform: rotateX(-90deg); transform: rotateX(-90deg); } /* 13 */ .btn-13 { background-color: #89d8d3; background-image: linear-gradient(315deg, #89d8d3 0%, #03c8a8 74%); border: none; z-index: 1; } .btn-13:after { position: absolute; content: ""; width: 100%; height: 0; bottom: 0; left: 0; z-index: -1; border-radius: 5px; background-color: #4dccc6; background-image: linear-gradient(315deg, #4dccc6 0%, #96e4df 74%); box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9, 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001; transition: all 0.3s ease; } .btn-13:hover { color: #fff; } .btn-13:hover:after { top: 0; height: 100%; } .btn-13:active { top: 2px; } /* 14 */ .btn-14 { background: rgb(255,151,0); border: none; z-index: 1; } .btn-14:after { position: absolute; content: ""; width: 100%; height: 0; top: 0; left: 0; z-index: -1; border-radius: 5px; background-color: #eaf818; background-image: linear-gradient(315deg, #eaf818 0%, #f6fc9c 74%); box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5); 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1); transition: all 0.3s ease; } .btn-14:hover { color: #000; } .btn-14:hover:after { top: auto; bottom: 0; height: 100%; } .btn-14:active { top: 2px; } /* 15 */ .btn-15 { background: #b621fe; border: none; z-index: 1; } .btn-15:after { position: absolute; content: ""; width: 0; height: 100%; top: 0; right: 0; z-index: -1; background-color: #663dff; border-radius: 5px; box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1); transition: all 0.3s ease; } .btn-15:hover { color: #fff; } .btn-15:hover:after { left: 0; width: 100%; } .btn-15:active { top: 2px; } /* 16 */ .btn-16 { border: none; color: #000; } .btn-16:after { position: absolute; content: ""; width: 0; height: 100%; top: 0; left: 0; direction: rtl; z-index: -1; box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9, 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001; transition: all 0.3s ease; } .btn-16:hover { color: #000; } .btn-16:hover:after { left: auto; right: 0; width: 100%; } .btn-16:active { top: 2px; }
style.css
body { background: #e0e5ec; } h1 { position: relative; text-align: center; color: #353535; font-size: 50px; font-family: "Cormorant Garamond", serif; } p { font-family: 'Lato', sans-serif; font-weight: 300; text-align: center; font-size: 18px; color: #676767; } .frame { width: 90%; margin: 40px auto; text-align: center; } button { margin: 20px; } .custom-btn { width: 130px; height: 40px; color: #fff; border-radius: 5px; padding: 10px 25px; font-family: 'Lato', sans-serif; font-weight: 500; background: transparent; cursor: pointer; transition: all 0.3s ease; position: relative; display: inline-block; box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1); outline: none; } /* 1 */ .btn-1 { background: rgb(6,14,131); background: linear-gradient(0deg, rgba(6,14,131,1) 0%, rgba(12,25,180,1) 100%); border: none; } .btn-1:hover { background: rgb(0,3,255); background: linear-gradient(0deg, rgba(0,3,255,1) 0%, rgba(2,126,251,1) 100%); } /* 2 */ .btn-2 { background: rgb(96,9,240); background: linear-gradient(0deg, rgba(96,9,240,1) 0%, rgba(129,5,240,1) 100%); border: none; } .btn-2:before { height: 0%; width: 2px; } .btn-2:hover { box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .5), inset -4px -4px 6px 0 rgba(255,255,255,.2), inset 4px 4px 6px 0 rgba(0, 0, 0, .4); } /* 3 */ .btn-3 { background: rgb(0,172,238); background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%); width: 130px; height: 40px; line-height: 42px; padding: 0; border: none; } .btn-3 span { position: relative; display: block; width: 100%; height: 100%; } .btn-3:before, .btn-3:after { position: absolute; content: ""; right: 0; top: 0; background: rgba(2,126,251,1); transition: all 0.3s ease; } .btn-3:before { height: 0%; width: 2px; } .btn-3:after { width: 0%; height: 2px; } .btn-3:hover{ background: transparent; box-shadow: none; } .btn-3:hover:before { height: 100%; } .btn-3:hover:after { width: 100%; } .btn-3 span:hover{ color: rgba(2,126,251,1); } .btn-3 span:before, .btn-3 span:after { position: absolute; content: ""; left: 0; bottom: 0; background: rgba(2,126,251,1); transition: all 0.3s ease; } .btn-3 span:before { width: 2px; height: 0%; } .btn-3 span:after { width: 0%; height: 2px; } .btn-3 span:hover:before { height: 100%; } .btn-3 span:hover:after { width: 100%; } /* 4 */ .btn-4 { background-color: #4dccc6; background-image: linear-gradient(315deg, #4dccc6 0%, #96e4df 74%); line-height: 42px; padding: 0; border: none; } .btn-4:hover{ background-color: #89d8d3; background-image: linear-gradient(315deg, #89d8d3 0%, #03c8a8 74%); } .btn-4 span { position: relative; display: block; width: 100%; height: 100%; } .btn-4:before, .btn-4:after { position: absolute; content: ""; right: 0; top: 0; box-shadow: 4px 4px 6px 0 rgba(255,255,255,.9), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.9), inset 4px 4px 6px 0 rgba(116, 125, 136, .3); transition: all 0.3s ease; } .btn-4:before { height: 0%; width: .1px; } .btn-4:after { width: 0%; height: .1px; } .btn-4:hover:before { height: 100%; } .btn-4:hover:after { width: 100%; } .btn-4 span:before, .btn-4 span:after { position: absolute; content: ""; left: 0; bottom: 0; box-shadow: 4px 4px 6px 0 rgba(255,255,255,.9), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.9), inset 4px 4px 6px 0 rgba(116, 125, 136, .3); transition: all 0.3s ease; } .btn-4 span:before { width: .1px; height: 0%; } .btn-4 span:after { width: 0%; height: .1px; } .btn-4 span:hover:before { height: 100%; } .btn-4 span:hover:after { width: 100%; } /* 5 */ .btn-5 { width: 130px; height: 40px; line-height: 42px; padding: 0; border: none; background: rgb(255,27,0); background: linear-gradient(0deg, rgba(255,27,0,1) 0%, rgba(251,75,2,1) 100%); } .btn-5:hover { color: #f0094a; background: transparent; box-shadow:none; } .btn-5:before, .btn-5:after{ content:''; position:absolute; top:0; right:0; height:2px; width:0; background: #f0094a; box-shadow: -1px -1px 5px 0px #fff, 7px 7px 20px 0px #0003, 4px 4px 5px 0px #0002; transition:400ms ease all; } .btn-5:after{ right:inherit; top:inherit; left:0; bottom:0; } .btn-5:hover:before, .btn-5:hover:after{ width:100%; transition:800ms ease all; } /* 6 */ .btn-6 { background: rgb(247,150,192); background: radial-gradient(circle, rgba(247,150,192,1) 0%, rgba(118,174,241,1) 100%); line-height: 42px; padding: 0; border: none; } .btn-6 span { position: relative; display: block; width: 100%; height: 100%; } .btn-6:before, .btn-6:after { position: absolute; content: ""; height: 0%; width: 1px; box-shadow: -1px -1px 20px 0px rgba(255,255,255,1), -4px -4px 5px 0px rgba(255,255,255,1), 7px 7px 20px 0px rgba(0,0,0,.4), 4px 4px 5px 0px rgba(0,0,0,.3); } .btn-6:before { right: 0; top: 0; transition: all 500ms ease; } .btn-6:after { left: 0; bottom: 0; transition: all 500ms ease; } .btn-6:hover{ background: transparent; color: #76aef1; box-shadow: none; } .btn-6:hover:before { transition: all 500ms ease; height: 100%; } .btn-6:hover:after { transition: all 500ms ease; height: 100%; } .btn-6 span:before, .btn-6 span:after { position: absolute; content: ""; box-shadow: -1px -1px 20px 0px rgba(255,255,255,1), -4px -4px 5px 0px rgba(255,255,255,1), 7px 7px 20px 0px rgba(0,0,0,.4), 4px 4px 5px 0px rgba(0,0,0,.3); } .btn-6 span:before { left: 0; top: 0; width: 0%; height: .5px; transition: all 500ms ease; } .btn-6 span:after { right: 0; bottom: 0; width: 0%; height: .5px; transition: all 500ms ease; } .btn-6 span:hover:before { width: 100%; } .btn-6 span:hover:after { width: 100%; } /* 7 */ .btn-7 { background: linear-gradient(0deg, rgba(255,151,0,1) 0%, rgba(251,75,2,1) 100%); line-height: 42px; padding: 0; border: none; } .btn-7 span { position: relative; display: block; width: 100%; height: 100%; } .btn-7:before, .btn-7:after { position: absolute; content: ""; right: 0; bottom: 0; background: rgba(251,75,2,1); box-shadow: -7px -7px 20px 0px rgba(255,255,255,.9), -4px -4px 5px 0px rgba(255,255,255,.9), 7px 7px 20px 0px rgba(0,0,0,.2), 4px 4px 5px 0px rgba(0,0,0,.3); transition: all 0.3s ease; } .btn-7:before{ height: 0%; width: 2px; } .btn-7:after { width: 0%; height: 2px; } .btn-7:hover{ color: rgba(251,75,2,1); background: transparent; } .btn-7:hover:before { height: 100%; } .btn-7:hover:after { width: 100%; } .btn-7 span:before, .btn-7 span:after { position: absolute; content: ""; left: 0; top: 0; background: rgba(251,75,2,1); box-shadow: -7px -7px 20px 0px rgba(255,255,255,.9), -4px -4px 5px 0px rgba(255,255,255,.9), 7px 7px 20px 0px rgba(0,0,0,.2), 4px 4px 5px 0px rgba(0,0,0,.3); transition: all 0.3s ease; } .btn-7 span:before { width: 2px; height: 0%; } .btn-7 span:after { height: 2px; width: 0%; } .btn-7 span:hover:before { height: 100%; } .btn-7 span:hover:after { width: 100%; } /* 8 */ .btn-8 { background-color: #f0ecfc; background-image: linear-gradient(315deg, #f0ecfc 0%, #c797eb 74%); line-height: 42px; padding: 0; border: none; } .btn-8 span { position: relative; display: block; width: 100%; height: 100%; } .btn-8:before, .btn-8:after { position: absolute; content: ""; right: 0; bottom: 0; background: #c797eb; /*box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/ transition: all 0.3s ease; } .btn-8:before{ height: 0%; width: 2px; } .btn-8:after { width: 0%; height: 2px; } .btn-8:hover:before { height: 100%; } .btn-8:hover:after { width: 100%; } .btn-8:hover{ background: transparent; } .btn-8 span:hover{ color: #c797eb; } .btn-8 span:before, .btn-8 span:after { position: absolute; content: ""; left: 0; top: 0; background: #c797eb; /*box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3);*/ transition: all 0.3s ease; } .btn-8 span:before { width: 2px; height: 0%; } .btn-8 span:after { height: 2px; width: 0%; } .btn-8 span:hover:before { height: 100%; } .btn-8 span:hover:after { width: 100%; } /* 9 */ .btn-9 { border: none; transition: all 0.3s ease; overflow: hidden; } .btn-9:after { position: absolute; content: " "; z-index: -1; top: 0; left: 0; width: 100%; height: 100%; background-color: #1fd1f9; background-image: linear-gradient(315deg, #1fd1f9 0%, #b621fe 74%); transition: all 0.3s ease; } .btn-9:hover { background: transparent; box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3); color: #fff; } .btn-9:hover:after { -webkit-transform: scale(2) rotate(180deg); transform: scale(2) rotate(180deg); box-shadow: 4px 4px 6px 0 rgba(255,255,255,.5), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.5), inset 4px 4px 6px 0 rgba(116, 125, 136, .3); } /* 10 */ .btn-10 { background: rgb(22,9,240); background: linear-gradient(0deg, rgba(22,9,240,1) 0%, rgba(49,110,244,1) 100%); color: #fff; border: none; transition: all 0.3s ease; overflow: hidden; } .btn-10:after { position: absolute; content: " "; top: 0; left: 0; z-index: -1; width: 100%; height: 100%; transition: all 0.3s ease; -webkit-transform: scale(.1); transform: scale(.1); } .btn-10:hover { color: #fff; border: none; background: transparent; } .btn-10:hover:after { background: rgb(0,3,255); background: linear-gradient(0deg, rgba(2,126,251,1) 0%, rgba(0,3,255,1)100%); -webkit-transform: scale(1); transform: scale(1); } /* 11 */ .btn-11 { border: none; background: rgb(251,33,117); background: linear-gradient(0deg, rgba(251,33,117,1) 0%, rgba(234,76,137,1) 100%); color: #fff; overflow: hidden; } .btn-11:hover { text-decoration: none; color: #fff; } .btn-11:before { position: absolute; content: ''; display: inline-block; top: -180px; left: 0; width: 30px; height: 100%; background-color: #fff; animation: shiny-btn1 3s ease-in-out infinite; } .btn-11:hover{ opacity: .7; } .btn-11:active{ box-shadow: 4px 4px 6px 0 rgba(255,255,255,.3), -4px -4px 6px 0 rgba(116, 125, 136, .2), inset -4px -4px 6px 0 rgba(255,255,255,.2), inset 4px 4px 6px 0 rgba(0, 0, 0, .2); } @-webkit-keyframes shiny-btn1 { 0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; } 80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; } 81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; } 100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; } } /* 12 */ .btn-12{ position: relative; right: 20px; bottom: 20px; border:none; box-shadow: none; width: 130px; height: 40px; line-height: 42px; -webkit-perspective: 230px; perspective: 230px; } .btn-12 span { background: rgb(0,172,238); background: linear-gradient(0deg, rgba(0,172,238,1) 0%, rgba(2,126,251,1) 100%); display: block; position: absolute; width: 130px; height: 40px; box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1); border-radius: 5px; margin:0; text-align: center; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all .3s; transition: all .3s; } .btn-12 span:nth-child(1) { box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9, 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001; -webkit-transform: rotateX(90deg); -moz-transform: rotateX(90deg); transform: rotateX(90deg); -webkit-transform-origin: 50% 50% -20px; -moz-transform-origin: 50% 50% -20px; transform-origin: 50% 50% -20px; } .btn-12 span:nth-child(2) { -webkit-transform: rotateX(0deg); -moz-transform: rotateX(0deg); transform: rotateX(0deg); -webkit-transform-origin: 50% 50% -20px; -moz-transform-origin: 50% 50% -20px; transform-origin: 50% 50% -20px; } .btn-12:hover span:nth-child(1) { box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1); -webkit-transform: rotateX(0deg); -moz-transform: rotateX(0deg); transform: rotateX(0deg); } .btn-12:hover span:nth-child(2) { box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1); color: transparent; -webkit-transform: rotateX(-90deg); -moz-transform: rotateX(-90deg); transform: rotateX(-90deg); } /* 13 */ .btn-13 { background-color: #89d8d3; background-image: linear-gradient(315deg, #89d8d3 0%, #03c8a8 74%); border: none; z-index: 1; } .btn-13:after { position: absolute; content: ""; width: 100%; height: 0; bottom: 0; left: 0; z-index: -1; border-radius: 5px; background-color: #4dccc6; background-image: linear-gradient(315deg, #4dccc6 0%, #96e4df 74%); box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9, 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001; transition: all 0.3s ease; } .btn-13:hover { color: #fff; } .btn-13:hover:after { top: 0; height: 100%; } .btn-13:active { top: 2px; } /* 14 */ .btn-14 { background: rgb(255,151,0); border: none; z-index: 1; } .btn-14:after { position: absolute; content: ""; width: 100%; height: 0; top: 0; left: 0; z-index: -1; border-radius: 5px; background-color: #eaf818; background-image: linear-gradient(315deg, #eaf818 0%, #f6fc9c 74%); box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5); 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1); transition: all 0.3s ease; } .btn-14:hover { color: #000; } .btn-14:hover:after { top: auto; bottom: 0; height: 100%; } .btn-14:active { top: 2px; } /* 15 */ .btn-15 { background: #b621fe; border: none; z-index: 1; } .btn-15:after { position: absolute; content: ""; width: 0; height: 100%; top: 0; right: 0; z-index: -1; background-color: #663dff; border-radius: 5px; box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5), 7px 7px 20px 0px rgba(0,0,0,.1), 4px 4px 5px 0px rgba(0,0,0,.1); transition: all 0.3s ease; } .btn-15:hover { color: #fff; } .btn-15:hover:after { left: 0; width: 100%; } .btn-15:active { top: 2px; } /* 16 */ .btn-16 { border: none; color: #000; } .btn-16:after { position: absolute; content: ""; width: 0; height: 100%; top: 0; left: 0; direction: rtl; z-index: -1; box-shadow: -7px -7px 20px 0px #fff9, -4px -4px 5px 0px #fff9, 7px 7px 20px 0px #0002, 4px 4px 5px 0px #0001; transition: all 0.3s ease; } .btn-16:hover { color: #000; } .btn-16:hover:after { left: auto; right: 0; width: 100%; } .btn-16:active { top: 2px; }
0.338077
0.06028
body{ font: 15px/1.5 Arial, Helvetica, sans-serif; padding: 0; margin: 0; background-color: #f4f4f4; } /* Global */ .container{ width: 80%; margin: auto; overflow: hidden; } ul{ margin: 0; padding: 0; } .button_1{ height: 38px; background: #e8491d; border: 0; padding-left: 20px; padding-right: 20px; color: #ffffff; } .dark{ padding: 15px; background: #35424a; color: #ffffff; margin-top: 10px; margin-bottom: 10px; } /* Header */ header{ background: #35424a; color: #ffffff; padding-top: 30px; min-height: 70px; border-bottom: #e8491d 3px solid; } header a{ color: #ffffff; text-decoration: none; text-transform: uppercase; font-size: 16px; } header li{ float: left; display: inline; padding: 0 20px 0 20px; } header #branding{ float: left; } header #branding h1{ margin: 0; } header nav{ float: right; margin-top: 10px; } header .highlight, header .current a{ color: #e8491d; font-weight: bold; } header a:hover{ color: #cccccc; font-weight: bold; } /* Showcase */ #showcase{ min-height: 400px; background: url(../img/showcase.jpg) no-repeat 0 -400px; text-align: center; color: #ffffff; } #showcase h1{ margin-top: 100px; font-size: 55px; margin-bottom: 10px; } #showcase p{ font-size: 20px; } /* Newsletter */ #newsletter{ padding: 15px; color: #ffffff; background: #35424a; } #newsletter h1{ float: left; } #newsletter form{ float: right; margin-top: 15px; } #newsletter input[tbody="email"]{ padding: 4px; height: 25px; width: 250px; } /* Boxes */ #boxes{ margin-top: 20px; } #boxes .box{ float: left; width: 30%; padding: 10px; text-align: center; } #boxes .box img{ width: 90px; } /* Sidebar */ aside#sidebar{ float: right; width: 30%; margin-top: 10px; } aside#sidebar .quote input, aside#sidebar .quote textarea{ width: 90%; padding: 5px; } /* Main-col */ article#main-col{ float: left; width: 65%; } /* Services */ ul#services li{ list-style: none; padding: 20px; border: #cccccc solid 1px; margin-bottom: 5px; background: #e6e6e6; } footer{ padding: 20px; margin-top: 20px; color: #ffffff; background-color: #e8491d; text-align: center; } /* Media Queries */ @media(max-width: 768px){ header #branding, header nav, header nav li, #newsletter h1, #newsletter form, #boxes .box, article#main-col, aside#sidebar{ float: none; text-align: center; width: 100%; } header{ padding-bottom: 20px; } #showcase h1{ margin-top: 40px; } #newsletter button, .quote button{ display: block; width: 100%; } #newsletter form input[type="email"], .quote input, .quote textarea{ width: 100%; margin-bottom: 5px; } }
css/style.css
body{ font: 15px/1.5 Arial, Helvetica, sans-serif; padding: 0; margin: 0; background-color: #f4f4f4; } /* Global */ .container{ width: 80%; margin: auto; overflow: hidden; } ul{ margin: 0; padding: 0; } .button_1{ height: 38px; background: #e8491d; border: 0; padding-left: 20px; padding-right: 20px; color: #ffffff; } .dark{ padding: 15px; background: #35424a; color: #ffffff; margin-top: 10px; margin-bottom: 10px; } /* Header */ header{ background: #35424a; color: #ffffff; padding-top: 30px; min-height: 70px; border-bottom: #e8491d 3px solid; } header a{ color: #ffffff; text-decoration: none; text-transform: uppercase; font-size: 16px; } header li{ float: left; display: inline; padding: 0 20px 0 20px; } header #branding{ float: left; } header #branding h1{ margin: 0; } header nav{ float: right; margin-top: 10px; } header .highlight, header .current a{ color: #e8491d; font-weight: bold; } header a:hover{ color: #cccccc; font-weight: bold; } /* Showcase */ #showcase{ min-height: 400px; background: url(../img/showcase.jpg) no-repeat 0 -400px; text-align: center; color: #ffffff; } #showcase h1{ margin-top: 100px; font-size: 55px; margin-bottom: 10px; } #showcase p{ font-size: 20px; } /* Newsletter */ #newsletter{ padding: 15px; color: #ffffff; background: #35424a; } #newsletter h1{ float: left; } #newsletter form{ float: right; margin-top: 15px; } #newsletter input[tbody="email"]{ padding: 4px; height: 25px; width: 250px; } /* Boxes */ #boxes{ margin-top: 20px; } #boxes .box{ float: left; width: 30%; padding: 10px; text-align: center; } #boxes .box img{ width: 90px; } /* Sidebar */ aside#sidebar{ float: right; width: 30%; margin-top: 10px; } aside#sidebar .quote input, aside#sidebar .quote textarea{ width: 90%; padding: 5px; } /* Main-col */ article#main-col{ float: left; width: 65%; } /* Services */ ul#services li{ list-style: none; padding: 20px; border: #cccccc solid 1px; margin-bottom: 5px; background: #e6e6e6; } footer{ padding: 20px; margin-top: 20px; color: #ffffff; background-color: #e8491d; text-align: center; } /* Media Queries */ @media(max-width: 768px){ header #branding, header nav, header nav li, #newsletter h1, #newsletter form, #boxes .box, article#main-col, aside#sidebar{ float: none; text-align: center; width: 100%; } header{ padding-bottom: 20px; } #showcase h1{ margin-top: 40px; } #newsletter button, .quote button{ display: block; width: 100%; } #newsletter form input[type="email"], .quote input, .quote textarea{ width: 100%; margin-bottom: 5px; } }
0.145525
0.076373
html{ box-sizing:border-box; } *, *:before, *:after{ box-sizing:inherit; } /*Styles for the footer bar for the background color, text color, margin, and border*/ #footerBar p{ color: #fff; text-align:center; margin: 0; } #footerBar { height: 60px; text-align: center; background-color: darkgray; border-top: 2px solid #000; } /*Styles for the footer bar for the width of the banner image*/ #bannerImg{ width:100%; } /*Styles for the media price table to reflect the border style, color, radius, and background color*/ #mediaPriceTable, #mediaPriceOutsideBorder{ border-style:solid; border-color:lightgray; } #mediaTableDiv{ border-style:solid; border-color:#000; border-radius:25px; background-color:#fff; margin:25px; padding: 25px; box-align:center; } /*Styles for the unordered lists*/ .skydiveTypesListItem:before { content: "\003e"; font-size: 12px; float:left; margin-top: 4px; margin-left: -10px; margin-right: 10px; color: green; } .border-width-3 { border-width:3px !important; } /*Styles for the background color*/ .bg-mediumgrey { background-color: #cecece } /*Styles for the various borders (around legend tags)*/ legend.email-border { width:inherit; padding:0 10px; border-bottom:none; } legend.mediaType-border { width:inherit; padding:0 10px; border-bottom:none; } legend.mediaFormat-border{ width:inherit; padding:0 10px; border-bottom:none; } /*Styles to add bold to the initial letter in the frequently asked questions*/ .InitLetterBold{ font-weight:bold; font-size: 150%; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif } /*Styles for the different columns and their background colors*/ .col1color{ background-color:#aaa; } .col2color{ background-color:#bbb; } /*Styles for the images and their positioning*/ .span4 .img-left{ float: left; } .span4 .img-right{ float:right; } /*Styles for the unordered list of the different manufacturers*/ .mfgItems:before { content: "\003e"; font-size: 12px; float:left; margin-top: 4px; margin-left: -10px; margin-right: 10px; color: green; } .navBtns{ color:black; } .welcomeText{ margin: 4px 0px 8px 0px; } /*Styles for the rigger detail header*/ #riggerDetailHeader { background-color: #fff; text-align:center; } .error { color: #a94442; padding:1px 20px 1px 20px; } /*styling to set the background color of the autocomplete*/ .ui-autocomplete { background-color: inherit; } /*styling to set the font size of the title*/ #titleText{ display:none; font-size: 2.2rem; font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; letter-spacing: 0.08em; } .titleSpan { background-color:inherit; } /*styling to center the title*/ #title{ align-content: center; text-align: center; } /* ABOVE THIS LINE IS THE FORM STYLING */ /*Cut and paste from welcome.blade*/ html, body { background-color: #fff; color: #636b6f; font-family: 'Nunito', sans-serif; font-weight: 200; height: 100vh; margin: 0; } .full-height { height: 100vh; } .flex-center { align-items: center; display: flex; justify-content: center; } .position-ref { position: relative; } .top-right { position: absolute; right: 10px; top: 18px; } .content { text-align: center; } .title { font-size: 84px; } .m-b-md { margin-bottom: 90px; } /*Cut and paste from welcome.blade*/ html, body { background-color: rgb(0, 0, 0); color: #000000; font-family: 'Nunito', sans-serif; font-weight: 200; height: 100vh; margin: 0; } /*welcome page title*/ .welcomeTitle { font-size: 60px; font-family: 'Nunito', sans-serif; font-weight: 600; } .bg-black{ background-color: rgb(0, 0, 0); color: #ffffff; } /*styling for the welcome page links*/ .links, .links:visited{ color: rgb(255, 217, 0); padding: 0 25px; font-size: 50px; font-weight: 400; letter-spacing: .1rem; text-decoration: none; text-transform: uppercase; font-family: 'Nunito', sans-serif; } .links:hover{ color: rgb(255, 111, 0); } .formLink{ color: blue; } .bgimgsimple{ /* Background image */ background-image: url("/images/welcomeBackground.jpg"); /* Full-screen */ height: 100%; width:100%; /* Center the background image */ background-position: center; /* Scale and zoom in the image */ background-size: cover; color:white; font-size: 50px; } .bgimg { /* Background image */ background-image: url("/images/welcomeBackground.jpg"); /* Full-screen */ height: 100%; /* Center the background image */ background-position: center; /* Scale and zoom in the image */ background-size: cover; /* Add position: relative to enable absolutely positioned elements inside the image (place text) */ position: relative; /* Add a white text color to all elements inside the .bgimg container */ /*color: white;*/ /* Add a font */ font-family: "Courier, arial, helvetica"; /* Set the font-size to 25 pixels */ font-size: 50px; } .landingImg { /* Landing image */ background-image: url("/images/landingImg.jpg"); /* Full-screen */ height: 100%; /* Center the background image */ background-position: center; /* Scale and zoom in the image */ background-size: cover; /* Add position: relative to enable absolutely positioned elements inside the image (place text) */ position: relative; /* Add a white text color to all elements inside the .bgimg container */ /*color: white;*/ /* Add a font */ font-family: "Courier, arial, helvetica"; /* Set the font-size to 25 pixels */ font-size: 50px; } /*Darken the background-image*/ .blankarea { /* position: absolute; top:0; bottom:0; left:0; right:0; */ width: 100%; height: 100%; background-color: rgba(101, 100, 100, 0.4); } /*Styling for the dependent checkbox: need to fix*/ .reveal-if-active { opacity: 0; max-height: 0; overflow: hidden; transform: scale(0.8); transition: 0.5s; } input[type="radio"]:checked ~ .reveal-if-active, input[type="checkbox"]:checked ~ .reveal-if-active { opacity: 1; max-height: 100px; /* little bit of a magic number :( */ overflow: visible; padding: 10px 20px; transform: scale(1); } input[type = "radio"]{ padding: 10px 10px 10px 10px; } td, th{ border: 1px solid #999; padding: 0.5rem; } medialTypeLabel { width:inherit; padding:0 10px; border-bottom:none; } authUserDisplay { padding: 0.5rem; color: rgba(116, 3, 3, 0.4); }
public/css/projectStyles.css
html{ box-sizing:border-box; } *, *:before, *:after{ box-sizing:inherit; } /*Styles for the footer bar for the background color, text color, margin, and border*/ #footerBar p{ color: #fff; text-align:center; margin: 0; } #footerBar { height: 60px; text-align: center; background-color: darkgray; border-top: 2px solid #000; } /*Styles for the footer bar for the width of the banner image*/ #bannerImg{ width:100%; } /*Styles for the media price table to reflect the border style, color, radius, and background color*/ #mediaPriceTable, #mediaPriceOutsideBorder{ border-style:solid; border-color:lightgray; } #mediaTableDiv{ border-style:solid; border-color:#000; border-radius:25px; background-color:#fff; margin:25px; padding: 25px; box-align:center; } /*Styles for the unordered lists*/ .skydiveTypesListItem:before { content: "\003e"; font-size: 12px; float:left; margin-top: 4px; margin-left: -10px; margin-right: 10px; color: green; } .border-width-3 { border-width:3px !important; } /*Styles for the background color*/ .bg-mediumgrey { background-color: #cecece } /*Styles for the various borders (around legend tags)*/ legend.email-border { width:inherit; padding:0 10px; border-bottom:none; } legend.mediaType-border { width:inherit; padding:0 10px; border-bottom:none; } legend.mediaFormat-border{ width:inherit; padding:0 10px; border-bottom:none; } /*Styles to add bold to the initial letter in the frequently asked questions*/ .InitLetterBold{ font-weight:bold; font-size: 150%; font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif } /*Styles for the different columns and their background colors*/ .col1color{ background-color:#aaa; } .col2color{ background-color:#bbb; } /*Styles for the images and their positioning*/ .span4 .img-left{ float: left; } .span4 .img-right{ float:right; } /*Styles for the unordered list of the different manufacturers*/ .mfgItems:before { content: "\003e"; font-size: 12px; float:left; margin-top: 4px; margin-left: -10px; margin-right: 10px; color: green; } .navBtns{ color:black; } .welcomeText{ margin: 4px 0px 8px 0px; } /*Styles for the rigger detail header*/ #riggerDetailHeader { background-color: #fff; text-align:center; } .error { color: #a94442; padding:1px 20px 1px 20px; } /*styling to set the background color of the autocomplete*/ .ui-autocomplete { background-color: inherit; } /*styling to set the font size of the title*/ #titleText{ display:none; font-size: 2.2rem; font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; letter-spacing: 0.08em; } .titleSpan { background-color:inherit; } /*styling to center the title*/ #title{ align-content: center; text-align: center; } /* ABOVE THIS LINE IS THE FORM STYLING */ /*Cut and paste from welcome.blade*/ html, body { background-color: #fff; color: #636b6f; font-family: 'Nunito', sans-serif; font-weight: 200; height: 100vh; margin: 0; } .full-height { height: 100vh; } .flex-center { align-items: center; display: flex; justify-content: center; } .position-ref { position: relative; } .top-right { position: absolute; right: 10px; top: 18px; } .content { text-align: center; } .title { font-size: 84px; } .m-b-md { margin-bottom: 90px; } /*Cut and paste from welcome.blade*/ html, body { background-color: rgb(0, 0, 0); color: #000000; font-family: 'Nunito', sans-serif; font-weight: 200; height: 100vh; margin: 0; } /*welcome page title*/ .welcomeTitle { font-size: 60px; font-family: 'Nunito', sans-serif; font-weight: 600; } .bg-black{ background-color: rgb(0, 0, 0); color: #ffffff; } /*styling for the welcome page links*/ .links, .links:visited{ color: rgb(255, 217, 0); padding: 0 25px; font-size: 50px; font-weight: 400; letter-spacing: .1rem; text-decoration: none; text-transform: uppercase; font-family: 'Nunito', sans-serif; } .links:hover{ color: rgb(255, 111, 0); } .formLink{ color: blue; } .bgimgsimple{ /* Background image */ background-image: url("/images/welcomeBackground.jpg"); /* Full-screen */ height: 100%; width:100%; /* Center the background image */ background-position: center; /* Scale and zoom in the image */ background-size: cover; color:white; font-size: 50px; } .bgimg { /* Background image */ background-image: url("/images/welcomeBackground.jpg"); /* Full-screen */ height: 100%; /* Center the background image */ background-position: center; /* Scale and zoom in the image */ background-size: cover; /* Add position: relative to enable absolutely positioned elements inside the image (place text) */ position: relative; /* Add a white text color to all elements inside the .bgimg container */ /*color: white;*/ /* Add a font */ font-family: "Courier, arial, helvetica"; /* Set the font-size to 25 pixels */ font-size: 50px; } .landingImg { /* Landing image */ background-image: url("/images/landingImg.jpg"); /* Full-screen */ height: 100%; /* Center the background image */ background-position: center; /* Scale and zoom in the image */ background-size: cover; /* Add position: relative to enable absolutely positioned elements inside the image (place text) */ position: relative; /* Add a white text color to all elements inside the .bgimg container */ /*color: white;*/ /* Add a font */ font-family: "Courier, arial, helvetica"; /* Set the font-size to 25 pixels */ font-size: 50px; } /*Darken the background-image*/ .blankarea { /* position: absolute; top:0; bottom:0; left:0; right:0; */ width: 100%; height: 100%; background-color: rgba(101, 100, 100, 0.4); } /*Styling for the dependent checkbox: need to fix*/ .reveal-if-active { opacity: 0; max-height: 0; overflow: hidden; transform: scale(0.8); transition: 0.5s; } input[type="radio"]:checked ~ .reveal-if-active, input[type="checkbox"]:checked ~ .reveal-if-active { opacity: 1; max-height: 100px; /* little bit of a magic number :( */ overflow: visible; padding: 10px 20px; transform: scale(1); } input[type = "radio"]{ padding: 10px 10px 10px 10px; } td, th{ border: 1px solid #999; padding: 0.5rem; } medialTypeLabel { width:inherit; padding:0 10px; border-bottom:none; } authUserDisplay { padding: 0.5rem; color: rgba(116, 3, 3, 0.4); }
0.310172
0.070656
body{ font-family: 'Tajawal', sans-serif; overflow-x: hidden!important; margin: 0; padding: 0; background-color: #f9f9f9; } *{ -webkit-box-sizing: border-box; -o-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } body::-webkit-scrollbar { width: 8px; } body.thin::-webkit-scrollbar { width: 2px; } ::-webkit-scrollbar-track { border-radius: 0; background-color: #f6f6f6; } ::-webkit-scrollbar-thumb { border-radius: 0px; background: #F38120; } ::-webkit-scrollbar-thumb:window-inactive { background: #F38120; } /* Start Nav Code*/ .navbar { background-color: #f9f9f9; } .collapse .navbar-nav { margin-left: 200px; } @media(max-width: 992px) { .collapse .navbar-nav { margin-left: 0px; text-align: center; } } .collapse .navbar-nav .nav-item .nav-link { border: 0.4 solid #0D4673; letter-spacing: 0px; color: #0D4673; font-size: 18px; font-weight: 600; margin-right: 1rem; transition: all 0.2s ease-in-out; } .collapse .navbar-nav .nav-item .nav-link:hover { color: #F38120; } .collapse .navbar-nav .nav-item.active .nav-link { color: #F38120; font-weight: bold; } .dropdown-item { color: #0D4673; } .dropdown-item:hover { background-color: #F38120; color: #fff; } .add_nav { background: #fff!important; transition: all 1s ease; box-shadow: 2px 2px 5px #e0dede; } .navNew { margin-top: -1px!important; } /*end nav*/ /* start build foundtions */ .build-foundations { margin-top: 82px; } .build-foundations .build-heading{ margin-top: 30px; margin-bottom: 24px; color: #0D4673; font-size: 26px; font-style: italic; } .build-foundations .main-img { width: 100%; height: 425px; } @media(max-width: 576px) { .build-foundations .main-img { height: 250px; } } .build-foundations .build-p { width: 100%; margin-top: 20px; margin-left: auto; margin-right: auto; position: relative; text-indent: 35px; color: #575757; opacity: 0.75; font-size: 18px; letter-spacing: 0px; } .build-foundations .build-p .big-b { color: #575757; font-size: 55px; line-height: 1rem; position: absolute; left: -35px; font-weight: bold; } .build-foundations .side { margin-bottom: 50px; } .build-foundations .side .most-read { color: #0D4673; font-size: 20px; border: 0.5 solid #0D4673; letter-spacing: 0px; margin-top: 140px; margin-left: 18px; } .build-foundations .side form { margin-bottom: 40px; } .build-foundations .side .form-control { width: 80%; height: 32px; border: 1px solid #0D4673BF; border-right: none; } .build-foundations .side .search { width: 20%; height: 32px; background-color: #0D4673; border: 1.5px solid #0D4673; margin-left: -3px; } .build-foundations .side .search img { height: 22px; width: 22px; } .build-foundations .side .form-control:focus{ border: 1.5px solid #F38120; box-shadow: none; border-right: none; } .build-foundations .side .form-control:focus::placeholder { color: #F38120; } .build-foundations .side .form-control:focus + .btn-primary.search { border: 1.5px solid #F38120 ; background:#F38120; } .build-foundations .side .card.side-card { border: none; } .build-foundations .side .card.side-card .card-link{ color: #575757; font-size: 16px; } /* start footer*/ .footer { background-color: #0D4673; color: #fff; padding-bottom: 40px; } .footer .logo { margin-top: 70px; } .footer .menu { margin-top: 50px; margin-bottom: 60px; } .footer .menu .menu-item { margin-left: 45px; } .footer .menu .menu-item a{ color: #fff; opacity: 0.75; text-decoration: none; font-size: 16px; transition: all 0.2s; margin-bottom: 10px; } .footer .menu .menu-item a:hover { color: #F38120; } .footer .menu .menu-item a.hvr-underline-from-center:before { background-color: #F38120; height: 2px; } .copyrights .social img{ margin-right: 30px; } .copyrights .ar-link { color: #fff; text-decoration: none; transition: all 0.2s; } .copyrights .ar-link:hover { color: #F38120; } @media(max-width:768px) { .copyrights .ar-link{ line-height: 3.7; } }
public/website/web/css/blog-article.css
body{ font-family: 'Tajawal', sans-serif; overflow-x: hidden!important; margin: 0; padding: 0; background-color: #f9f9f9; } *{ -webkit-box-sizing: border-box; -o-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } body::-webkit-scrollbar { width: 8px; } body.thin::-webkit-scrollbar { width: 2px; } ::-webkit-scrollbar-track { border-radius: 0; background-color: #f6f6f6; } ::-webkit-scrollbar-thumb { border-radius: 0px; background: #F38120; } ::-webkit-scrollbar-thumb:window-inactive { background: #F38120; } /* Start Nav Code*/ .navbar { background-color: #f9f9f9; } .collapse .navbar-nav { margin-left: 200px; } @media(max-width: 992px) { .collapse .navbar-nav { margin-left: 0px; text-align: center; } } .collapse .navbar-nav .nav-item .nav-link { border: 0.4 solid #0D4673; letter-spacing: 0px; color: #0D4673; font-size: 18px; font-weight: 600; margin-right: 1rem; transition: all 0.2s ease-in-out; } .collapse .navbar-nav .nav-item .nav-link:hover { color: #F38120; } .collapse .navbar-nav .nav-item.active .nav-link { color: #F38120; font-weight: bold; } .dropdown-item { color: #0D4673; } .dropdown-item:hover { background-color: #F38120; color: #fff; } .add_nav { background: #fff!important; transition: all 1s ease; box-shadow: 2px 2px 5px #e0dede; } .navNew { margin-top: -1px!important; } /*end nav*/ /* start build foundtions */ .build-foundations { margin-top: 82px; } .build-foundations .build-heading{ margin-top: 30px; margin-bottom: 24px; color: #0D4673; font-size: 26px; font-style: italic; } .build-foundations .main-img { width: 100%; height: 425px; } @media(max-width: 576px) { .build-foundations .main-img { height: 250px; } } .build-foundations .build-p { width: 100%; margin-top: 20px; margin-left: auto; margin-right: auto; position: relative; text-indent: 35px; color: #575757; opacity: 0.75; font-size: 18px; letter-spacing: 0px; } .build-foundations .build-p .big-b { color: #575757; font-size: 55px; line-height: 1rem; position: absolute; left: -35px; font-weight: bold; } .build-foundations .side { margin-bottom: 50px; } .build-foundations .side .most-read { color: #0D4673; font-size: 20px; border: 0.5 solid #0D4673; letter-spacing: 0px; margin-top: 140px; margin-left: 18px; } .build-foundations .side form { margin-bottom: 40px; } .build-foundations .side .form-control { width: 80%; height: 32px; border: 1px solid #0D4673BF; border-right: none; } .build-foundations .side .search { width: 20%; height: 32px; background-color: #0D4673; border: 1.5px solid #0D4673; margin-left: -3px; } .build-foundations .side .search img { height: 22px; width: 22px; } .build-foundations .side .form-control:focus{ border: 1.5px solid #F38120; box-shadow: none; border-right: none; } .build-foundations .side .form-control:focus::placeholder { color: #F38120; } .build-foundations .side .form-control:focus + .btn-primary.search { border: 1.5px solid #F38120 ; background:#F38120; } .build-foundations .side .card.side-card { border: none; } .build-foundations .side .card.side-card .card-link{ color: #575757; font-size: 16px; } /* start footer*/ .footer { background-color: #0D4673; color: #fff; padding-bottom: 40px; } .footer .logo { margin-top: 70px; } .footer .menu { margin-top: 50px; margin-bottom: 60px; } .footer .menu .menu-item { margin-left: 45px; } .footer .menu .menu-item a{ color: #fff; opacity: 0.75; text-decoration: none; font-size: 16px; transition: all 0.2s; margin-bottom: 10px; } .footer .menu .menu-item a:hover { color: #F38120; } .footer .menu .menu-item a.hvr-underline-from-center:before { background-color: #F38120; height: 2px; } .copyrights .social img{ margin-right: 30px; } .copyrights .ar-link { color: #fff; text-decoration: none; transition: all 0.2s; } .copyrights .ar-link:hover { color: #F38120; } @media(max-width:768px) { .copyrights .ar-link{ line-height: 3.7; } }
0.313
0.049291
@import './amp-story-share.css'; .i-amphtml-story-system-layer { background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent) !important; position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; height: 56px !important; /* 6px progress bar + 48px icons + 2px margin */ opacity: 1 !important; z-index: 100000 !important; box-sizing: border-box !important; transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1) !important; pointer-events: none !important; font-family: 'Roboto', sans-serif !important; } .i-amphtml-story-bookend-active.i-amphtml-story-system-layer { opacity: 0.3 !important; z-index: 1 !important; transition: opacity 0.15s cubic-bezier(0.4, 0.0, 1, 1) !important; } .i-amphtml-story-hidden.i-amphtml-story-system-layer { opacity: 0 !important; transition: opacity 0.15s cubic-bezier(0.4, 0.0, 1, 1) !important; } .i-amphtml-story-hidden.i-amphtml-story-system-layer * { pointer-events: none !important; } .i-amphtml-story-desktop-panels.i-amphtml-story-bookend-active.i-amphtml-story-system-layer { opacity: 0 !important; } .i-amphtml-story-system-layer-buttons { margin-top: 8px; /* 6px progress bar + 2px margin */ display: flex !important; flex-direction: row !important; justify-content: flex-end !important; } .i-amphtml-story-button { background-repeat: no-repeat !important; background-position: center center !important; height: 48px !important; width: 48px !important; cursor: pointer !important; border-radius: 50% !important; border-width: 0 !important; box-sizing: border-box !important; position: relative !important; pointer-events: auto !important; /* for svg backgrounds: */ background: center center no-repeat !important; } .i-amphtml-story-button:active { /* TODO(alanorozco): do we want material ripple effect? */ background-color: rgba(0, 0, 0, 0.2) !important; } .i-amphtml-story-system-layer .i-amphtml-story-button { float: left !important; } .i-amphtml-story-progress-bar { border: 0 !important; display: flex !important; height: 2px !important; left: 0 !important; margin: 4px 0 0 !important; padding: 0 2px !important; position: absolute !important; right: 0 !important; top: 0 !important; visibility: visible !important; z-index: 100001 !important; } [ad-showing] .i-amphtml-story-progress-bar { visibility: hidden !important; } .i-amphtml-story-page-progress-bar { background: rgba(255, 255, 255, 0.4) !important; border-radius: 1px !important; height: 100% !important; list-style-type: none !important; margin: 0 2px !important; overflow: hidden !important; width: 100% !important; } .i-amphtml-story-page-progress-value { /* Do not remove `translateZ(0)` as it prevents an iOS repaint issue. */ background: rgba(255, 255, 255, 1) !important; height: 100% !important; width: 100% !important; transform: translateZ(0) scaleX(0) !important; /* 0-width by default */ transform-origin: left !important; } [dir=rtl] .i-amphtml-story-page-progress-value { transform-origin: right !important; } .i-amphtml-first-page-active[info] .i-amphtml-message-container { /* 48px for info button, add width to padding for additional story buttons. */ padding-right: 48px !important; } .i-amphtml-first-page-active[info][dir=rtl] .i-amphtml-message-container { /* 48px for info button, add width to padding for additional story buttons. */ padding-right: auto !important; padding-left: 48px !important; } .i-amphtml-message-container { display: flex !important; align-items: center !important; width: max-content !important; transition-property: opacity, transform !important; position: absolute !important; top: 0 !important; right: 48px !important; height: 100% !important; color: #fff !important; font-size: 16px !important; text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.36) !important; } [dir=rtl] .i-amphtml-message-container { right: auto !important; left: 48px !important; } [i-amphtml-story-messagedisplay="noshow"] .i-amphtml-message-container { transition: opacity 0.2s cubic-bezier(0.4, 0.0, 1, 1), transform 0.0s 0.2s !important; transform: translateX(10px) !important; opacity: 0 !important; } [i-amphtml-story-has-new-page="noshow"] .i-amphtml-story-has-new-page-notification-container { transition: opacity 1.5s !important; opacity: 0 !important; } .i-amphtml-last-page-active[i-amphtml-story-has-new-page="show"] .i-amphtml-story-has-new-page-notification-container { transition: opacity 1.5s !important; opacity: 1 !important; } [dir=rtl][i-amphtml-story-messagedisplay="noshow"] .i-amphtml-message-container { transform: translateX(-10px) !important; } [i-amphtml-story-messagedisplay="show"] .i-amphtml-message-container { transition: opacity 0.2s cubic-bezier(0.0, 0.0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1) !important; opacity: 1 !important; transform: translateX(0px) !important; } .i-amphtml-story-mute-text, .i-amphtml-story-unmute-sound-text, .i-amphtml-story-unmute-no-sound-text { width: max-content !important; color: #fff !important; } .i-amphtml-story-sound-display { display: inline-block !important; height: 46px !important; position: relative !important; } .i-amphtml-story-mute-audio-control, .i-amphtml-story-unmute-audio-control, .i-amphtml-story-mute-text, .i-amphtml-story-unmute-sound-text, .i-amphtml-story-unmute-no-sound-text, .i-amphtml-story-sidebar-control { display: none !important; } [i-amphtml-story-has-sidebar] .i-amphtml-story-sidebar-control { display: block !important; } .i-amphtml-story-has-audio:not([muted]) .i-amphtml-story-mute-audio-control, .i-amphtml-story-has-audio[muted] .i-amphtml-story-unmute-audio-control { display: block !important; } .i-amphtml-story-has-audio[muted] .i-amphtml-story-mute-text, [i-amphtml-current-page-has-audio].i-amphtml-story-has-audio:not([muted]) .i-amphtml-story-unmute-sound-text, :not([i-amphtml-current-page-has-audio]).i-amphtml-story-has-audio:not([muted]) .i-amphtml-story-unmute-no-sound-text { display: block !important; } .i-amphtml-story-ui-no-buttons .i-amphtml-story-button, .i-amphtml-story-ui-no-buttons .i-amphtml-story-system-layer-buttons { visibility: hidden !important; } .i-amphtml-story-unmute-audio-control { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') !important; } .i-amphtml-story-mute-audio-control { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') !important; } .i-amphtml-story-sidebar-control { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') !important; } .i-amphtml-story-share-control { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M0 0h24v24H0z" fill="none"/><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92 1.61 0 2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92z"/></svg>') !important; } [ios] .i-amphtml-story-share-control { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" fill="#FFFFFF"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M16 5l-1.42 1.42-1.59-1.59V16h-1.98V4.83L9.42 6.42 8 5l4-4 4 4zm4 5v11c0 1.1-.9 2-2 2H6c-1.11 0-2-.9-2-2V10c0-1.11.89-2 2-2h3v2H6v11h12V10h-3V8h3c1.1 0 2 .89 2 2z"/></svg>') !important; /** Visual hack to make the icon looks aligned. */ background-position-y: calc(50% - 2px) !important; } .i-amphtml-story-info-control { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 48 48" fill="#FFFFFF"><path d="M0 0h48v48H0z" fill="none"/><path d="M22 34h4V22h-4v12zm2-30C12.95 4 4 12.95 4 24s8.95 20 20 20 20-8.95 20-20S35.05 4 24 4zm0 36c-8.82 0-16-7.18-16-16S15.18 8 24 8s16 7.18 16 16-7.18 16-16 16zm-2-22h4v-4h-4v4z"/></svg>') !important; display: none !important; } .i-amphtml-story-has-new-page-notification-container { display: flex !important; position: absolute !important; justify-content: center !important; z-index: 100002 !important; /* On top of the progress bar. */ top: 32px !important; right: 0 !important; left: 0 !important; opacity: 0 !important; } .i-amphtml-story-has-new-page-text-wrapper { background-color: rgba(32, 33, 37, 0.8) !important; display: flex !important; justify-content: center !important; align-items: center !important; padding: 4px 10px 4px 0 !important; border-radius: 5px !important; } [dir=rtl] .i-amphtml-story-has-new-page-text-wrapper { padding-right: 0 !important; padding-left: 10px !important; } .i-amphtml-story-has-new-page-text { color: #fff !important; font-size: 16px !important; text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.36) !important; font-weight: 700 !important; } .i-amphtml-story-has-new-page-circle-icon { background: rgba(3, 255, 160, 1) !important; border-radius: 50% !important; height: 6px !important; width: 6px !important; position: relative !important; box-shadow: 0 0 0 2px rgba(3, 255, 160, 0.5) !important; margin: 0px 10px !important; } .i-amphtml-story-desktop-panels .i-amphtml-story-has-new-page-notification-container { top: 0 !important; } .i-amphtml-embedded.i-amphtml-first-page-active .i-amphtml-story-info-control { display: block !important; } .i-amphtml-story-no-sharing .i-amphtml-story-share-control, .i-amphtml-story-no-sharing .i-amphtml-story-info-control { display: none !important; } .i-amphtml-story-desktop-panels.i-amphtml-story-system-layer { background: transparent !important; top: auto !important; bottom: 0 !important; height: 96px !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-direction: row-reverse !important; } .i-amphtml-animate-progress li { transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1) !important; } .i-amphtml-progress-bar-overflow.i-amphtml-story-progress-bar { width: calc(100% - 4px) !important; margin: 4px 2px 0 !important; overflow: hidden !important; padding: 0 !important; } .i-amphtml-story-desktop-panels .i-amphtml-story-progress-bar { position: relative !important; height: 3px !important; width: calc(100vw / 3) !important; margin: 0 24px !important; } .i-amphtml-story-desktop-fullbleed .i-amphtml-story-progress-bar { height: 3px !important; } .i-amphtml-story-desktop-panels .i-amphtml-story-page-progress-bar { border-radius: 100px !important; } .i-amphtml-progress-bar-overflow .i-amphtml-story-page-progress-bar { border-radius: 0px !important; list-style: none !important; margin: 0 2px !important; width: 2px !important; position: absolute !important; transform-origin: left !important; } [dir=rtl].i-amphtml-progress-bar-overflow .i-amphtml-story-page-progress-bar { transform-origin: right !important; } .i-amphtml-story-desktop-panels .i-amphtml-progress-bar-overflow .i-amphtml-story-page-progress-bar, .i-amphtml-story-desktop-fullbleed .i-amphtml-progress-bar-overflow .i-amphtml-story-page-progress-bar { width: 3px !important; } .i-amphtml-story-desktop-panels.i-amphtml-story-system-layer .i-amphtml-story-system-layer-buttons { position: fixed !important; top: 0 !important; right: 0 !important; }
extensions/amp-story/1.0/amp-story-system-layer.css
@import './amp-story-share.css'; .i-amphtml-story-system-layer { background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent) !important; position: absolute !important; top: 0 !important; left: 0 !important; right: 0 !important; height: 56px !important; /* 6px progress bar + 48px icons + 2px margin */ opacity: 1 !important; z-index: 100000 !important; box-sizing: border-box !important; transition: opacity 0.3s cubic-bezier(0.0, 0.0, 0.2, 1) !important; pointer-events: none !important; font-family: 'Roboto', sans-serif !important; } .i-amphtml-story-bookend-active.i-amphtml-story-system-layer { opacity: 0.3 !important; z-index: 1 !important; transition: opacity 0.15s cubic-bezier(0.4, 0.0, 1, 1) !important; } .i-amphtml-story-hidden.i-amphtml-story-system-layer { opacity: 0 !important; transition: opacity 0.15s cubic-bezier(0.4, 0.0, 1, 1) !important; } .i-amphtml-story-hidden.i-amphtml-story-system-layer * { pointer-events: none !important; } .i-amphtml-story-desktop-panels.i-amphtml-story-bookend-active.i-amphtml-story-system-layer { opacity: 0 !important; } .i-amphtml-story-system-layer-buttons { margin-top: 8px; /* 6px progress bar + 2px margin */ display: flex !important; flex-direction: row !important; justify-content: flex-end !important; } .i-amphtml-story-button { background-repeat: no-repeat !important; background-position: center center !important; height: 48px !important; width: 48px !important; cursor: pointer !important; border-radius: 50% !important; border-width: 0 !important; box-sizing: border-box !important; position: relative !important; pointer-events: auto !important; /* for svg backgrounds: */ background: center center no-repeat !important; } .i-amphtml-story-button:active { /* TODO(alanorozco): do we want material ripple effect? */ background-color: rgba(0, 0, 0, 0.2) !important; } .i-amphtml-story-system-layer .i-amphtml-story-button { float: left !important; } .i-amphtml-story-progress-bar { border: 0 !important; display: flex !important; height: 2px !important; left: 0 !important; margin: 4px 0 0 !important; padding: 0 2px !important; position: absolute !important; right: 0 !important; top: 0 !important; visibility: visible !important; z-index: 100001 !important; } [ad-showing] .i-amphtml-story-progress-bar { visibility: hidden !important; } .i-amphtml-story-page-progress-bar { background: rgba(255, 255, 255, 0.4) !important; border-radius: 1px !important; height: 100% !important; list-style-type: none !important; margin: 0 2px !important; overflow: hidden !important; width: 100% !important; } .i-amphtml-story-page-progress-value { /* Do not remove `translateZ(0)` as it prevents an iOS repaint issue. */ background: rgba(255, 255, 255, 1) !important; height: 100% !important; width: 100% !important; transform: translateZ(0) scaleX(0) !important; /* 0-width by default */ transform-origin: left !important; } [dir=rtl] .i-amphtml-story-page-progress-value { transform-origin: right !important; } .i-amphtml-first-page-active[info] .i-amphtml-message-container { /* 48px for info button, add width to padding for additional story buttons. */ padding-right: 48px !important; } .i-amphtml-first-page-active[info][dir=rtl] .i-amphtml-message-container { /* 48px for info button, add width to padding for additional story buttons. */ padding-right: auto !important; padding-left: 48px !important; } .i-amphtml-message-container { display: flex !important; align-items: center !important; width: max-content !important; transition-property: opacity, transform !important; position: absolute !important; top: 0 !important; right: 48px !important; height: 100% !important; color: #fff !important; font-size: 16px !important; text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.36) !important; } [dir=rtl] .i-amphtml-message-container { right: auto !important; left: 48px !important; } [i-amphtml-story-messagedisplay="noshow"] .i-amphtml-message-container { transition: opacity 0.2s cubic-bezier(0.4, 0.0, 1, 1), transform 0.0s 0.2s !important; transform: translateX(10px) !important; opacity: 0 !important; } [i-amphtml-story-has-new-page="noshow"] .i-amphtml-story-has-new-page-notification-container { transition: opacity 1.5s !important; opacity: 0 !important; } .i-amphtml-last-page-active[i-amphtml-story-has-new-page="show"] .i-amphtml-story-has-new-page-notification-container { transition: opacity 1.5s !important; opacity: 1 !important; } [dir=rtl][i-amphtml-story-messagedisplay="noshow"] .i-amphtml-message-container { transform: translateX(-10px) !important; } [i-amphtml-story-messagedisplay="show"] .i-amphtml-message-container { transition: opacity 0.2s cubic-bezier(0.0, 0.0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0.0, 0.2, 1) !important; opacity: 1 !important; transform: translateX(0px) !important; } .i-amphtml-story-mute-text, .i-amphtml-story-unmute-sound-text, .i-amphtml-story-unmute-no-sound-text { width: max-content !important; color: #fff !important; } .i-amphtml-story-sound-display { display: inline-block !important; height: 46px !important; position: relative !important; } .i-amphtml-story-mute-audio-control, .i-amphtml-story-unmute-audio-control, .i-amphtml-story-mute-text, .i-amphtml-story-unmute-sound-text, .i-amphtml-story-unmute-no-sound-text, .i-amphtml-story-sidebar-control { display: none !important; } [i-amphtml-story-has-sidebar] .i-amphtml-story-sidebar-control { display: block !important; } .i-amphtml-story-has-audio:not([muted]) .i-amphtml-story-mute-audio-control, .i-amphtml-story-has-audio[muted] .i-amphtml-story-unmute-audio-control { display: block !important; } .i-amphtml-story-has-audio[muted] .i-amphtml-story-mute-text, [i-amphtml-current-page-has-audio].i-amphtml-story-has-audio:not([muted]) .i-amphtml-story-unmute-sound-text, :not([i-amphtml-current-page-has-audio]).i-amphtml-story-has-audio:not([muted]) .i-amphtml-story-unmute-no-sound-text { display: block !important; } .i-amphtml-story-ui-no-buttons .i-amphtml-story-button, .i-amphtml-story-ui-no-buttons .i-amphtml-story-system-layer-buttons { visibility: hidden !important; } .i-amphtml-story-unmute-audio-control { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') !important; } .i-amphtml-story-mute-audio-control { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') !important; } .i-amphtml-story-sidebar-control { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') !important; } .i-amphtml-story-share-control { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" fill="#FFFFFF"><path d="M0 0h24v24H0z" fill="none"/><path d="M18 16.08c-.76 0-1.44.3-1.96.77L8.91 12.7c.05-.23.09-.46.09-.7s-.04-.47-.09-.7l7.05-4.11c.54.5 1.25.81 2.04.81 1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3c0 .24.04.47.09.7L8.04 9.81C7.5 9.31 6.79 9 6 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c.79 0 1.5-.31 2.04-.81l7.12 4.16c-.05.21-.08.43-.08.65 0 1.61 1.31 2.92 2.92 2.92 1.61 0 2.92-1.31 2.92-2.92s-1.31-2.92-2.92-2.92z"/></svg>') !important; } [ios] .i-amphtml-story-share-control { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 24 24" fill="#FFFFFF"><path fill="none" d="M0 0h24v24H0V0z"/><path d="M16 5l-1.42 1.42-1.59-1.59V16h-1.98V4.83L9.42 6.42 8 5l4-4 4 4zm4 5v11c0 1.1-.9 2-2 2H6c-1.11 0-2-.9-2-2V10c0-1.11.89-2 2-2h3v2H6v11h12V10h-3V8h3c1.1 0 2 .89 2 2z"/></svg>') !important; /** Visual hack to make the icon looks aligned. */ background-position-y: calc(50% - 2px) !important; } .i-amphtml-story-info-control { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" width="24px" height="24px" viewBox="0 0 48 48" fill="#FFFFFF"><path d="M0 0h48v48H0z" fill="none"/><path d="M22 34h4V22h-4v12zm2-30C12.95 4 4 12.95 4 24s8.95 20 20 20 20-8.95 20-20S35.05 4 24 4zm0 36c-8.82 0-16-7.18-16-16S15.18 8 24 8s16 7.18 16 16-7.18 16-16 16zm-2-22h4v-4h-4v4z"/></svg>') !important; display: none !important; } .i-amphtml-story-has-new-page-notification-container { display: flex !important; position: absolute !important; justify-content: center !important; z-index: 100002 !important; /* On top of the progress bar. */ top: 32px !important; right: 0 !important; left: 0 !important; opacity: 0 !important; } .i-amphtml-story-has-new-page-text-wrapper { background-color: rgba(32, 33, 37, 0.8) !important; display: flex !important; justify-content: center !important; align-items: center !important; padding: 4px 10px 4px 0 !important; border-radius: 5px !important; } [dir=rtl] .i-amphtml-story-has-new-page-text-wrapper { padding-right: 0 !important; padding-left: 10px !important; } .i-amphtml-story-has-new-page-text { color: #fff !important; font-size: 16px !important; text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.36) !important; font-weight: 700 !important; } .i-amphtml-story-has-new-page-circle-icon { background: rgba(3, 255, 160, 1) !important; border-radius: 50% !important; height: 6px !important; width: 6px !important; position: relative !important; box-shadow: 0 0 0 2px rgba(3, 255, 160, 0.5) !important; margin: 0px 10px !important; } .i-amphtml-story-desktop-panels .i-amphtml-story-has-new-page-notification-container { top: 0 !important; } .i-amphtml-embedded.i-amphtml-first-page-active .i-amphtml-story-info-control { display: block !important; } .i-amphtml-story-no-sharing .i-amphtml-story-share-control, .i-amphtml-story-no-sharing .i-amphtml-story-info-control { display: none !important; } .i-amphtml-story-desktop-panels.i-amphtml-story-system-layer { background: transparent !important; top: auto !important; bottom: 0 !important; height: 96px !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-direction: row-reverse !important; } .i-amphtml-animate-progress li { transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1) !important; } .i-amphtml-progress-bar-overflow.i-amphtml-story-progress-bar { width: calc(100% - 4px) !important; margin: 4px 2px 0 !important; overflow: hidden !important; padding: 0 !important; } .i-amphtml-story-desktop-panels .i-amphtml-story-progress-bar { position: relative !important; height: 3px !important; width: calc(100vw / 3) !important; margin: 0 24px !important; } .i-amphtml-story-desktop-fullbleed .i-amphtml-story-progress-bar { height: 3px !important; } .i-amphtml-story-desktop-panels .i-amphtml-story-page-progress-bar { border-radius: 100px !important; } .i-amphtml-progress-bar-overflow .i-amphtml-story-page-progress-bar { border-radius: 0px !important; list-style: none !important; margin: 0 2px !important; width: 2px !important; position: absolute !important; transform-origin: left !important; } [dir=rtl].i-amphtml-progress-bar-overflow .i-amphtml-story-page-progress-bar { transform-origin: right !important; } .i-amphtml-story-desktop-panels .i-amphtml-progress-bar-overflow .i-amphtml-story-page-progress-bar, .i-amphtml-story-desktop-fullbleed .i-amphtml-progress-bar-overflow .i-amphtml-story-page-progress-bar { width: 3px !important; } .i-amphtml-story-desktop-panels.i-amphtml-story-system-layer .i-amphtml-story-system-layer-buttons { position: fixed !important; top: 0 !important; right: 0 !important; }
0.301465
0.053601
@media (min-width: 992px) and (max-width: 1169px) { .teacher_content { padding: 25px 10px 0; } .home-2 .teacher_content { padding: 35px 10px 0; } .menu ul li > a { font-size: 13px; padding: 16px 14px; } .footer_top_left span, .footer_top_right span { font-size: 11px; } .footer_top_right { margin-top: 11px; } /*mobile menu*/ .mobile_memu_area{ display:none; } .left_sidet1 { margin-left: 10%; } .slide_title { font-size: 20px; } .nav_style li a { font-size: 11px; padding: 20px 0 0 41px; } .nav_area{ display:block; } .nivo-directionNav a { top: 47%; } .home-2 .search-box input { width: 667px; } .home-4 .teacher_content { padding: 9px 26px; } .home-2 .courses_content { padding-bottom:0px; } .home-2 .news_content { padding: 15px 5px; } } /* Tablet desktop :768px. */ @media (min-width: 768px) and (max-width: 991px) { .left_sidet1 { margin-left: 7%; margin-top: 6%; } .cap-title h1 { font-size: 55px; } .home-2.priging_area { background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffffff 0%, #ffffff 47%, #2d2d2d 46%, #2d2d2d 100%) repeat scroll 0 0; } .single_teacher_item { float: left; position: relative; width: 50%; } .priging_item { margin-bottom: 30px; } .share-item { margin-bottom: 30px; } .read_more.bmore { margin-top: 30px; } .footer_top_left { text-align: center; } .footer_top_right { text-align: center; } .news_content.news_buletin_pra > h1 { font-size: 22px; margin: 10px 0 0; } .blog-title { font-size: 16px; } .blog-title > span { font-size: 25px; } .module-title > span { font-size: 51px; } .pdr0{ padding-right: 15px; } .pdrl { padding-left: 15px; } .home-2 .courses_thumb { width: 100%; } .home-2 .courses_content { width: 100%; } .home-3.priging_area { padding-bottom:60px; background-image: url("img/home3/campaign.png"), linear-gradient(to bottom, rgb(247,247,247) 0%, rgb(247,247,247) 50%, #605ca8 50%, #605ca8 100%); } .home-3 .priging_content h2 { color: #000; } .mobile_memu_area{ display:block; } .nav_area{ display:none; } .nav_style li { display: inline-block; position: relative; width: 18.7%; } .nav_style li a { color: #fff; display: inline-block; font-size: 13px; height: 75px; padding: 10px 0 0 41px; } .testimonial_text { width: 100%; } .test_thumb { width: 100%; } .slide_text { padding: 16px 0 48px 30px; } .slide_title { font-size: 18px; } .slide_ptext { font-size: 17px; } .test_thumb > img { display: block; margin: auto; width: 42%; } .home-3.priging_area { background-image: url("img/home3/campaign.png"), linear-gradient(to bottom, rgb(247, 247, 247) 0%, rgb(247, 247, 247) 59%, #605ca8 59%, #605ca8 100%); } .home-4 .slide_text { padding: 13px 0 48px 30px; } .slider-wrap.home-1-slider { height: auto; } .nivo-directionNav a { top: 46%; } .single_teacher_item { width:50%; } .module-title > span { margin-left: -2px; } .single_teacher_item:hover .teacher_content { transform: scale(1); } .teacher_content { padding: 84px 50px; } .offer-title { font-size: 25px; } .offer-title > span { font-size: 46px; } .home-4 .teacher_content { padding: 80px 40px; } } /* small mobile :320px. */ @media (max-width: 767px) { .container {width:300px} /*mobile menu*/ .mobile_memu_area{ display:block; } .nav_area{ display:none; } .logo > a { display: block; text-align: center; padding-bottom:20px; } .pull-right { float: none; } .pull-right { float: left !important; } .form.pull-right { margin-left: 45px; } .phone_address p { margin: 22px 0 0; } .module-title > span { font-size: 35px; } .media-box { float: none; margin-top: 13%; } .offer-title { font-size: 21px; } .offer-title > span { font-size: 22px; } .single_teacher_item { width:100%; } .courses_thumb_text { top: 45%; } .courses_thumb img { width: 100%; } .priging_item { margin-bottom: 30px; } .learnmore { margin: 42px 0 0; text-align: left; } .share-item { margin-bottom: 30px; } .footer_top_left span, .footer_top_right span { display: block; text-align: center; } .footer_top_right { margin-top: 15px; text-align: center; } .footer_top_left > img { display: block; margin: auto; text-align: center; } .phone_address span { font-size: 12px; margin-left: 8px; } .page-title { font-size: 31px; margin-bottom: 0; padding: 10px; } .print > ul { top: -10px; } .print.prin_s > ul { top: -34px; } .news_single_thumb { max-width: 100%; } .news_content.news_buletin_pra > h1 { font-size: 14px; margin: 10px 0 0; } .blog-title { font-size: 16px; } .blog-title > span { font-size: 25px; } .fnone { text-align: left; } .pdr0{ padding-right: 15px; } .pdrl { padding-left: 15px; } .banar_icon { width: 25%; } .footer_bottom_area p { text-align: center; } .home-2 .courses_thumb { width: 100%; } .home-2 .courses_content { width: 100%; } .home-3.priging_area { padding-bottom:60px; background-image: url("img/home3/campaign.png"), linear-gradient(to bottom, rgb(247,247,247) 0%, rgb(247,247,247) 50%, #605ca8 50%, #605ca8 100%); } .home-3 .priging_content h2 { color: #000; } .article-title { font-size: 20px; } .readmore.read3.yellow { font-size: 20px; } .slide_thumb3 { padding: 12px; } .slide_thumb3 h1 { font-size: 20px; } .slide_title { font-size: 20px; } .home-2.priging_area { background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffffff 0%, #ffffff 47%, #2d2d2d 46%, #2d2d2d 100%) repeat scroll 0 0; } .home-2 .teacher_content { padding: 33px 18px; } .left_sidet1 { margin-left: 8%; margin-top: 7%; } .cap-title h1 { font-size: 18px; } .cap-dec h2 { font-size: 13px; } .testimonial_text_inner { padding: 22px 0 5px 35px; } .testimonial_text { width: 100%; } .test_thumb { width: 100%; } .nav_style li { width: 100%; } .teacher_thumb > img { width: 100%; } .test_thumb > img { display: block; margin: auto; width: 42%; } .home-3.priging_area { background-image: url("img/home3/campaign.png"), linear-gradient(to bottom, rgb(247, 247, 247) 0%, rgb(247, 247, 247) 69%, #605ca8 69%, #605ca8 100%); padding-bottom: 60px; } .i_box.input_box40 input { width: 100%; } .slider-wrap.home-1-slider { height: auto; } .single_teacher_item:hover .teacher_content { transform: scale(1); } .module-title > span { margin-left: 0px; } .teacher_content { padding: 54px 50px; } .home-4 .module-title > span { font-size: 30px; } .blogss-title { font-size: 37px; } .slide_title { margin-top: 9px; } .home-4 .slide_title { margin-top: 0px; } } /* Large Mobile :480px. */ @media only screen and (min-width: 480px) and (max-width: 767px) { .container {width:450px} .social_icon.pull-right > p { margin-left: 140px; } .home-2.priging_area { background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffffff 0%, #ffffff 37%, #2d2d2d 37%, #2d2d2d 100%) repeat scroll 0 0; } .page-title { font-size: 31px; margin-bottom: 0; padding: 40px 0; } .phone_address span { font-size: 10px; } .left_sidet1 { margin-left: 8%; margin-top: 7%; } .cap-title h1 { font-size: 30px; } .cap-dec h2 { font-size: 23px; } .news_thumb img { width: 100%; } .home-2 .teacher_content { padding: 110px 43px 43px; } .home-4 .teacher_content { padding: 118px 40px; } .nav_style li { width: 50%; } .teacher_content { padding: 134px 50px; } .home-3.priging_area { background-image: url("img/home3/campaign.png"), linear-gradient(to bottom, rgb(247, 247, 247) 0%, rgb(247, 247, 247) 75%, #605ca8 75%, #605ca8 100%); padding-bottom: 60px; } }
css/responsive.css
@media (min-width: 992px) and (max-width: 1169px) { .teacher_content { padding: 25px 10px 0; } .home-2 .teacher_content { padding: 35px 10px 0; } .menu ul li > a { font-size: 13px; padding: 16px 14px; } .footer_top_left span, .footer_top_right span { font-size: 11px; } .footer_top_right { margin-top: 11px; } /*mobile menu*/ .mobile_memu_area{ display:none; } .left_sidet1 { margin-left: 10%; } .slide_title { font-size: 20px; } .nav_style li a { font-size: 11px; padding: 20px 0 0 41px; } .nav_area{ display:block; } .nivo-directionNav a { top: 47%; } .home-2 .search-box input { width: 667px; } .home-4 .teacher_content { padding: 9px 26px; } .home-2 .courses_content { padding-bottom:0px; } .home-2 .news_content { padding: 15px 5px; } } /* Tablet desktop :768px. */ @media (min-width: 768px) and (max-width: 991px) { .left_sidet1 { margin-left: 7%; margin-top: 6%; } .cap-title h1 { font-size: 55px; } .home-2.priging_area { background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffffff 0%, #ffffff 47%, #2d2d2d 46%, #2d2d2d 100%) repeat scroll 0 0; } .single_teacher_item { float: left; position: relative; width: 50%; } .priging_item { margin-bottom: 30px; } .share-item { margin-bottom: 30px; } .read_more.bmore { margin-top: 30px; } .footer_top_left { text-align: center; } .footer_top_right { text-align: center; } .news_content.news_buletin_pra > h1 { font-size: 22px; margin: 10px 0 0; } .blog-title { font-size: 16px; } .blog-title > span { font-size: 25px; } .module-title > span { font-size: 51px; } .pdr0{ padding-right: 15px; } .pdrl { padding-left: 15px; } .home-2 .courses_thumb { width: 100%; } .home-2 .courses_content { width: 100%; } .home-3.priging_area { padding-bottom:60px; background-image: url("img/home3/campaign.png"), linear-gradient(to bottom, rgb(247,247,247) 0%, rgb(247,247,247) 50%, #605ca8 50%, #605ca8 100%); } .home-3 .priging_content h2 { color: #000; } .mobile_memu_area{ display:block; } .nav_area{ display:none; } .nav_style li { display: inline-block; position: relative; width: 18.7%; } .nav_style li a { color: #fff; display: inline-block; font-size: 13px; height: 75px; padding: 10px 0 0 41px; } .testimonial_text { width: 100%; } .test_thumb { width: 100%; } .slide_text { padding: 16px 0 48px 30px; } .slide_title { font-size: 18px; } .slide_ptext { font-size: 17px; } .test_thumb > img { display: block; margin: auto; width: 42%; } .home-3.priging_area { background-image: url("img/home3/campaign.png"), linear-gradient(to bottom, rgb(247, 247, 247) 0%, rgb(247, 247, 247) 59%, #605ca8 59%, #605ca8 100%); } .home-4 .slide_text { padding: 13px 0 48px 30px; } .slider-wrap.home-1-slider { height: auto; } .nivo-directionNav a { top: 46%; } .single_teacher_item { width:50%; } .module-title > span { margin-left: -2px; } .single_teacher_item:hover .teacher_content { transform: scale(1); } .teacher_content { padding: 84px 50px; } .offer-title { font-size: 25px; } .offer-title > span { font-size: 46px; } .home-4 .teacher_content { padding: 80px 40px; } } /* small mobile :320px. */ @media (max-width: 767px) { .container {width:300px} /*mobile menu*/ .mobile_memu_area{ display:block; } .nav_area{ display:none; } .logo > a { display: block; text-align: center; padding-bottom:20px; } .pull-right { float: none; } .pull-right { float: left !important; } .form.pull-right { margin-left: 45px; } .phone_address p { margin: 22px 0 0; } .module-title > span { font-size: 35px; } .media-box { float: none; margin-top: 13%; } .offer-title { font-size: 21px; } .offer-title > span { font-size: 22px; } .single_teacher_item { width:100%; } .courses_thumb_text { top: 45%; } .courses_thumb img { width: 100%; } .priging_item { margin-bottom: 30px; } .learnmore { margin: 42px 0 0; text-align: left; } .share-item { margin-bottom: 30px; } .footer_top_left span, .footer_top_right span { display: block; text-align: center; } .footer_top_right { margin-top: 15px; text-align: center; } .footer_top_left > img { display: block; margin: auto; text-align: center; } .phone_address span { font-size: 12px; margin-left: 8px; } .page-title { font-size: 31px; margin-bottom: 0; padding: 10px; } .print > ul { top: -10px; } .print.prin_s > ul { top: -34px; } .news_single_thumb { max-width: 100%; } .news_content.news_buletin_pra > h1 { font-size: 14px; margin: 10px 0 0; } .blog-title { font-size: 16px; } .blog-title > span { font-size: 25px; } .fnone { text-align: left; } .pdr0{ padding-right: 15px; } .pdrl { padding-left: 15px; } .banar_icon { width: 25%; } .footer_bottom_area p { text-align: center; } .home-2 .courses_thumb { width: 100%; } .home-2 .courses_content { width: 100%; } .home-3.priging_area { padding-bottom:60px; background-image: url("img/home3/campaign.png"), linear-gradient(to bottom, rgb(247,247,247) 0%, rgb(247,247,247) 50%, #605ca8 50%, #605ca8 100%); } .home-3 .priging_content h2 { color: #000; } .article-title { font-size: 20px; } .readmore.read3.yellow { font-size: 20px; } .slide_thumb3 { padding: 12px; } .slide_thumb3 h1 { font-size: 20px; } .slide_title { font-size: 20px; } .home-2.priging_area { background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffffff 0%, #ffffff 47%, #2d2d2d 46%, #2d2d2d 100%) repeat scroll 0 0; } .home-2 .teacher_content { padding: 33px 18px; } .left_sidet1 { margin-left: 8%; margin-top: 7%; } .cap-title h1 { font-size: 18px; } .cap-dec h2 { font-size: 13px; } .testimonial_text_inner { padding: 22px 0 5px 35px; } .testimonial_text { width: 100%; } .test_thumb { width: 100%; } .nav_style li { width: 100%; } .teacher_thumb > img { width: 100%; } .test_thumb > img { display: block; margin: auto; width: 42%; } .home-3.priging_area { background-image: url("img/home3/campaign.png"), linear-gradient(to bottom, rgb(247, 247, 247) 0%, rgb(247, 247, 247) 69%, #605ca8 69%, #605ca8 100%); padding-bottom: 60px; } .i_box.input_box40 input { width: 100%; } .slider-wrap.home-1-slider { height: auto; } .single_teacher_item:hover .teacher_content { transform: scale(1); } .module-title > span { margin-left: 0px; } .teacher_content { padding: 54px 50px; } .home-4 .module-title > span { font-size: 30px; } .blogss-title { font-size: 37px; } .slide_title { margin-top: 9px; } .home-4 .slide_title { margin-top: 0px; } } /* Large Mobile :480px. */ @media only screen and (min-width: 480px) and (max-width: 767px) { .container {width:450px} .social_icon.pull-right > p { margin-left: 140px; } .home-2.priging_area { background: rgba(0, 0, 0, 0) linear-gradient(to bottom, #ffffff 0%, #ffffff 37%, #2d2d2d 37%, #2d2d2d 100%) repeat scroll 0 0; } .page-title { font-size: 31px; margin-bottom: 0; padding: 40px 0; } .phone_address span { font-size: 10px; } .left_sidet1 { margin-left: 8%; margin-top: 7%; } .cap-title h1 { font-size: 30px; } .cap-dec h2 { font-size: 23px; } .news_thumb img { width: 100%; } .home-2 .teacher_content { padding: 110px 43px 43px; } .home-4 .teacher_content { padding: 118px 40px; } .nav_style li { width: 50%; } .teacher_content { padding: 134px 50px; } .home-3.priging_area { background-image: url("img/home3/campaign.png"), linear-gradient(to bottom, rgb(247, 247, 247) 0%, rgb(247, 247, 247) 75%, #605ca8 75%, #605ca8 100%); padding-bottom: 60px; } }
0.362631
0.117623
.game-layout{ position: relative; } .container-game{ width:80%; margin:auto; position: relative; } .buttonGameLeftBack{ position: absolute; width: 120px; height: 120px; background-color: red; left: 0; top: 30%; -webkit-border-top-right-radius: 100px; -webkit-border-bottom-right-radius: 100px; -moz-border-radius-topright: 100px; -moz-border-radius-bottomright: 100px; border-top-right-radius: 100px; border-bottom-right-radius: 100px; } .buttonGameRighBack{ position: absolute; width: 120px; height: 120px; background-color: red; right: 0; top: 30%; -webkit-border-top-left-radius: 100px; -webkit-border-bottom-left-radius: 100px; -moz-border-radius-topleft: 100px; -moz-border-radius-bottomleft: 100px; border-top-left-radius: 100px; border-bottom-left-radius: 100px; } .buttonGameLeftBack .fa, .buttonGameRighBack .fa{ color: #fff; font-size: 48px; margin-top: 30%; margin-left: 30px; } @media (max-width: 920px){ .container-game{ width:98%; margin:auto; position: relative; } } .container-market{ width:80%; margin:auto; position: relative; } .image-radius-top{ -webkit-border-top-left-radius: 6px !important; -webkit-border-top-right-radius: 6px !important; -moz-border-radius-topleft: 6px !important; -moz-border-radius-topright: 6px !important; border-top-left-radius: 6px !important; border-top-right-radius: 6px !important; border-bottom: 0px !important; background: linear-gradient(124deg, rgba(2,0,36,1) 0%, rgba(121,9,32,1) 35%, rgba(51,37,3,1) 100%); } .not-radius-top{ -webkit-border-top-left-radius: 0px !important; -webkit-border-top-right-radius: 0px !important; -moz-border-radius-topleft: 0px !important; -moz-border-radius-topright: 0px !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-top: 0px !important; } .bg-gameplay{ background-image:url(https://image.winudf.com/v2/image/Y29tLm5hcG9tb2JpbGV0ZWFtLmNhcndhbGxwYXBlcnNoZF9zY3JlZW5fMF8xNTM5ODA0NjAyXzA4Ng/screen-0.jpg?fakeurl=1&type=.jpg); background-repeat: no-repeat; background-position: center; background-size: cover; margin-top: -30px; } .s1, .s2, .s3, .s4, .s5, .s6{ width:100px; height:100px; position: absolute; left : 350px; border-width: 2px !important; border-color: #FFF !important; background-color: #FFF; } .s2{ top: 200px; left: 150px; } .s3{ top: 100px; left: 240px; } .s4{ top: 120px; left: 450px; } .s5{ top: 250px; left: 530px; width:140px; height:140px; } .s6{ top: 100px; left: 50%; width:400px; height:400px; } .btn.walletLimit{ display: inline-flex !important; } .walletLimit span { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; /* number of lines to show */ -webkit-box-orient: vertical; max-width: 100px; } .addressLimit { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; } .modal-backdrop{ z-index: 2 !important; } .has-search .form-control { padding-left: 2.375rem; } .has-search .form-control-feedback { position: absolute; z-index: 2; display: block; width: 2.375rem; height: 2.375rem; line-height: 2.375rem; text-align: center; pointer-events: none; color: #aaa; } .has-search .form-control-feedback.form-control-lg { height: 2.575rem; } .sePresell .card.border:hover{ border-color:red !important; cursor: pointer; color: red; } .has-fixed .walletLimit .icon{ background-color: var(--info); color: #FFF; } .attributes .border:hover{ border-color: red !important; } .icon-metamask{ position: relative; } .icon-metamask::before{ background-image: url(./../images/metamask.png) !important; background-position: center center; background-size: contain; background-repeat: no-repeat; width: 38px; height: 38px; position: absolute; left: 0; top: 0; background-color: red !important; z-index: 9999999999; } .bg-theme-grad-alt{ background-color: blueviolet; background-repeat: no-repeat; background-size: container; background-position: bottom center; } .game{ background-image: url(/images/game.jpg) !important; background-repeat: no-repeat; background-size: 100%; background-position: top center; min-height: 750px; } .overlay-theme::after { /* background-image: linear-gradient(to right, #122272 0%, #1940b0 100%) !important;*/ background: #000 !important; } .toast{ position: fixed; background-color: #FFF; color: #333; } .card-hoder:hover{ border-color: #333 !important; } .modal-open { overflow: hidden; } .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .modal { position: fixed; top: 0; left: 0; z-index: 1050; display: none; width: 100%; height: 100%; overflow: hidden; outline: 0; } .modal-dialog { position: relative; width: auto; margin: 0.5rem; pointer-events: none; } .modal.fade .modal-dialog { transition: -webkit-transform 0.3s ease-out; transition: transform 0.3s ease-out; transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; -webkit-transform: translate(0, -50px); transform: translate(0, -50px); } @media (prefers-reduced-motion: reduce) { .modal.fade .modal-dialog { transition: none; } } .modal.show .modal-dialog { -webkit-transform: none; transform: none; } .modal.modal-static .modal-dialog { -webkit-transform: scale(1.02); transform: scale(1.02); } .modal-dialog-scrollable { display: -ms-flexbox; display: flex; max-height: calc(100% - 1rem); } .modal-dialog-scrollable .modal-content { max-height: calc(100vh - 1rem); overflow: hidden; } .modal-dialog-scrollable .modal-header, .modal-dialog-scrollable .modal-footer { -ms-flex-negative: 0; flex-shrink: 0; } .modal-dialog-scrollable .modal-body { overflow-y: auto; } .modal-dialog-centered { display: -ms-flexbox; display: flex; -ms-flex-align: center; align-items: center; min-height: calc(100% - 1rem); } .modal-dialog-centered::before { display: block; height: calc(100vh - 1rem); height: -webkit-min-content; height: -moz-min-content; height: min-content; content: ""; } .modal-dialog-centered.modal-dialog-scrollable { -ms-flex-direction: column; flex-direction: column; -ms-flex-pack: center; justify-content: center; height: 100%; } .modal-dialog-centered.modal-dialog-scrollable .modal-content { max-height: none; } .modal-dialog-centered.modal-dialog-scrollable::before { content: none; } .modal-content { position: relative; display: -ms-flexbox; display: flex; -ms-flex-direction: column; flex-direction: column; width: 100%; pointer-events: auto; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0.3rem; outline: 0; } .modal-backdrop { position: fixed; top: 0; left: 0; z-index: 1040; width: 100vw; height: 100vh; background-color: #000; } .modal-backdrop.fade { opacity: 0; } .modal-backdrop.show { opacity: 0.5; } .modal-header { display: -ms-flexbox; display: flex; -ms-flex-align: start; align-items: flex-start; -ms-flex-pack: justify; justify-content: space-between; padding: 1rem 1rem; border-bottom: 1px solid #dee2e6; border-top-left-radius: calc(0.3rem - 1px); border-top-right-radius: calc(0.3rem - 1px); } .modal-header .close { padding: 1rem 1rem; margin: -1rem -1rem -1rem auto; } .modal-title { margin-bottom: 0; line-height: 1.5; } .modal-body { position: relative; -ms-flex: 1 1 auto; flex: 1 1 auto; padding: 1rem; } .modal-footer { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-align: center; align-items: center; -ms-flex-pack: end; justify-content: flex-end; padding: 0.75rem; border-top: 1px solid #dee2e6; border-bottom-right-radius: calc(0.3rem - 1px); border-bottom-left-radius: calc(0.3rem - 1px); } .modal-footer > * { margin: 0.25rem; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 576px) { .modal-dialog { max-width: 500px; margin: 1.75rem auto; } .modal-dialog-scrollable { max-height: calc(100% - 3.5rem); } .modal-dialog-scrollable .modal-content { max-height: calc(100vh - 3.5rem); } .modal-dialog-centered { min-height: calc(100% - 3.5rem); } .modal-dialog-centered::before { height: calc(100vh - 3.5rem); height: -webkit-min-content; height: -moz-min-content; height: min-content; } .modal-sm { max-width: 300px; } } @media (min-width: 992px) { .modal-lg, .modal-xl { max-width: 800px; } } @media (min-width: 1200px) { .modal-xl { max-width: 1140px; } }
public/assets/css/theme.css
.game-layout{ position: relative; } .container-game{ width:80%; margin:auto; position: relative; } .buttonGameLeftBack{ position: absolute; width: 120px; height: 120px; background-color: red; left: 0; top: 30%; -webkit-border-top-right-radius: 100px; -webkit-border-bottom-right-radius: 100px; -moz-border-radius-topright: 100px; -moz-border-radius-bottomright: 100px; border-top-right-radius: 100px; border-bottom-right-radius: 100px; } .buttonGameRighBack{ position: absolute; width: 120px; height: 120px; background-color: red; right: 0; top: 30%; -webkit-border-top-left-radius: 100px; -webkit-border-bottom-left-radius: 100px; -moz-border-radius-topleft: 100px; -moz-border-radius-bottomleft: 100px; border-top-left-radius: 100px; border-bottom-left-radius: 100px; } .buttonGameLeftBack .fa, .buttonGameRighBack .fa{ color: #fff; font-size: 48px; margin-top: 30%; margin-left: 30px; } @media (max-width: 920px){ .container-game{ width:98%; margin:auto; position: relative; } } .container-market{ width:80%; margin:auto; position: relative; } .image-radius-top{ -webkit-border-top-left-radius: 6px !important; -webkit-border-top-right-radius: 6px !important; -moz-border-radius-topleft: 6px !important; -moz-border-radius-topright: 6px !important; border-top-left-radius: 6px !important; border-top-right-radius: 6px !important; border-bottom: 0px !important; background: linear-gradient(124deg, rgba(2,0,36,1) 0%, rgba(121,9,32,1) 35%, rgba(51,37,3,1) 100%); } .not-radius-top{ -webkit-border-top-left-radius: 0px !important; -webkit-border-top-right-radius: 0px !important; -moz-border-radius-topleft: 0px !important; -moz-border-radius-topright: 0px !important; border-top-left-radius: 0px !important; border-top-right-radius: 0px !important; border-top: 0px !important; } .bg-gameplay{ background-image:url(https://image.winudf.com/v2/image/Y29tLm5hcG9tb2JpbGV0ZWFtLmNhcndhbGxwYXBlcnNoZF9zY3JlZW5fMF8xNTM5ODA0NjAyXzA4Ng/screen-0.jpg?fakeurl=1&type=.jpg); background-repeat: no-repeat; background-position: center; background-size: cover; margin-top: -30px; } .s1, .s2, .s3, .s4, .s5, .s6{ width:100px; height:100px; position: absolute; left : 350px; border-width: 2px !important; border-color: #FFF !important; background-color: #FFF; } .s2{ top: 200px; left: 150px; } .s3{ top: 100px; left: 240px; } .s4{ top: 120px; left: 450px; } .s5{ top: 250px; left: 530px; width:140px; height:140px; } .s6{ top: 100px; left: 50%; width:400px; height:400px; } .btn.walletLimit{ display: inline-flex !important; } .walletLimit span { overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 1; /* number of lines to show */ -webkit-box-orient: vertical; max-width: 100px; } .addressLimit { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; } .modal-backdrop{ z-index: 2 !important; } .has-search .form-control { padding-left: 2.375rem; } .has-search .form-control-feedback { position: absolute; z-index: 2; display: block; width: 2.375rem; height: 2.375rem; line-height: 2.375rem; text-align: center; pointer-events: none; color: #aaa; } .has-search .form-control-feedback.form-control-lg { height: 2.575rem; } .sePresell .card.border:hover{ border-color:red !important; cursor: pointer; color: red; } .has-fixed .walletLimit .icon{ background-color: var(--info); color: #FFF; } .attributes .border:hover{ border-color: red !important; } .icon-metamask{ position: relative; } .icon-metamask::before{ background-image: url(./../images/metamask.png) !important; background-position: center center; background-size: contain; background-repeat: no-repeat; width: 38px; height: 38px; position: absolute; left: 0; top: 0; background-color: red !important; z-index: 9999999999; } .bg-theme-grad-alt{ background-color: blueviolet; background-repeat: no-repeat; background-size: container; background-position: bottom center; } .game{ background-image: url(/images/game.jpg) !important; background-repeat: no-repeat; background-size: 100%; background-position: top center; min-height: 750px; } .overlay-theme::after { /* background-image: linear-gradient(to right, #122272 0%, #1940b0 100%) !important;*/ background: #000 !important; } .toast{ position: fixed; background-color: #FFF; color: #333; } .card-hoder:hover{ border-color: #333 !important; } .modal-open { overflow: hidden; } .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .modal { position: fixed; top: 0; left: 0; z-index: 1050; display: none; width: 100%; height: 100%; overflow: hidden; outline: 0; } .modal-dialog { position: relative; width: auto; margin: 0.5rem; pointer-events: none; } .modal.fade .modal-dialog { transition: -webkit-transform 0.3s ease-out; transition: transform 0.3s ease-out; transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; -webkit-transform: translate(0, -50px); transform: translate(0, -50px); } @media (prefers-reduced-motion: reduce) { .modal.fade .modal-dialog { transition: none; } } .modal.show .modal-dialog { -webkit-transform: none; transform: none; } .modal.modal-static .modal-dialog { -webkit-transform: scale(1.02); transform: scale(1.02); } .modal-dialog-scrollable { display: -ms-flexbox; display: flex; max-height: calc(100% - 1rem); } .modal-dialog-scrollable .modal-content { max-height: calc(100vh - 1rem); overflow: hidden; } .modal-dialog-scrollable .modal-header, .modal-dialog-scrollable .modal-footer { -ms-flex-negative: 0; flex-shrink: 0; } .modal-dialog-scrollable .modal-body { overflow-y: auto; } .modal-dialog-centered { display: -ms-flexbox; display: flex; -ms-flex-align: center; align-items: center; min-height: calc(100% - 1rem); } .modal-dialog-centered::before { display: block; height: calc(100vh - 1rem); height: -webkit-min-content; height: -moz-min-content; height: min-content; content: ""; } .modal-dialog-centered.modal-dialog-scrollable { -ms-flex-direction: column; flex-direction: column; -ms-flex-pack: center; justify-content: center; height: 100%; } .modal-dialog-centered.modal-dialog-scrollable .modal-content { max-height: none; } .modal-dialog-centered.modal-dialog-scrollable::before { content: none; } .modal-content { position: relative; display: -ms-flexbox; display: flex; -ms-flex-direction: column; flex-direction: column; width: 100%; pointer-events: auto; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0.3rem; outline: 0; } .modal-backdrop { position: fixed; top: 0; left: 0; z-index: 1040; width: 100vw; height: 100vh; background-color: #000; } .modal-backdrop.fade { opacity: 0; } .modal-backdrop.show { opacity: 0.5; } .modal-header { display: -ms-flexbox; display: flex; -ms-flex-align: start; align-items: flex-start; -ms-flex-pack: justify; justify-content: space-between; padding: 1rem 1rem; border-bottom: 1px solid #dee2e6; border-top-left-radius: calc(0.3rem - 1px); border-top-right-radius: calc(0.3rem - 1px); } .modal-header .close { padding: 1rem 1rem; margin: -1rem -1rem -1rem auto; } .modal-title { margin-bottom: 0; line-height: 1.5; } .modal-body { position: relative; -ms-flex: 1 1 auto; flex: 1 1 auto; padding: 1rem; } .modal-footer { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -ms-flex-align: center; align-items: center; -ms-flex-pack: end; justify-content: flex-end; padding: 0.75rem; border-top: 1px solid #dee2e6; border-bottom-right-radius: calc(0.3rem - 1px); border-bottom-left-radius: calc(0.3rem - 1px); } .modal-footer > * { margin: 0.25rem; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 576px) { .modal-dialog { max-width: 500px; margin: 1.75rem auto; } .modal-dialog-scrollable { max-height: calc(100% - 3.5rem); } .modal-dialog-scrollable .modal-content { max-height: calc(100vh - 3.5rem); } .modal-dialog-centered { min-height: calc(100% - 3.5rem); } .modal-dialog-centered::before { height: calc(100vh - 3.5rem); height: -webkit-min-content; height: -moz-min-content; height: min-content; } .modal-sm { max-width: 300px; } } @media (min-width: 992px) { .modal-lg, .modal-xl { max-width: 800px; } } @media (min-width: 1200px) { .modal-xl { max-width: 1140px; } }
0.338952
0.060418
.clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { display: table; content: ""; line-height: 0; } .clearfix:after { clear: both; } .hide-text { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .input-block-level { display: block; width: 100%; min-height: 30px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .fileupload-name { margin-left: 4px; } .right_button { margin-left: 4px; } .btn-file { overflow: hidden; position: relative; vertical-align: middle; } .fileupload .close { position: relative; top: 2px; margin-left: 2px; } .fileupload .close { font-size: 14px; } .btn-file > input { position: absolute; top: 0; right: 0; margin: 0; opacity: 0; filter: alpha(opacity=0); transform: translate(-300px, 0) scale(4); font-size: 23px; direction: ltr; cursor: pointer; } .fileupload .uneditable-input { display: inline-block; margin-bottom: 0px; vertical-align: middle; cursor: text; padding: 1px 10px 0; line-height: 27px; } .fileupload .uneditable-input i { font-size: 13px; } .fileupload .thumbnail { overflow: hidden; display: inline-block; margin-bottom: 5px; vertical-align: middle; text-align: center; } .fileupload .thumbnail > img { display: inline-block; vertical-align: middle; max-height: 100%; } .fileupload-exists .fileupload-new, .fileupload-new .fileupload-exists { display: none; } .fileupload-inline .fileupload-controls { display: inline; } .thumbnail-borderless .thumbnail { border: none; padding: 0; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .fileupload-new.thumbnail-borderless .thumbnail { border: 1px solid #8f8f8f; } .control-group.warning .fileupload .uneditable-input { color: #a47e3c; border-color: #a47e3c; } .control-group.warning .fileupload .fileupload-preview { color: #a47e3c; } .control-group.warning .fileupload .thumbnail { border-color: #a47e3c; } .control-group.error .fileupload .uneditable-input { color: #b94a48; border-color: #b94a48; } .control-group.error .fileupload .fileupload-preview { color: #b94a48; } .control-group.error .fileupload .thumbnail { border-color: #b94a48; } .control-group.success .fileupload .uneditable-input { color: #468847; border-color: #468847; } .control-group.success .fileupload .fileupload-preview { color: #468847; } .control-group.success .fileupload .thumbnail { border-color: #468847; }
public/huy/css/bootstrap-fileupload.css
.clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { display: table; content: ""; line-height: 0; } .clearfix:after { clear: both; } .hide-text { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .input-block-level { display: block; width: 100%; min-height: 30px; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .fileupload-name { margin-left: 4px; } .right_button { margin-left: 4px; } .btn-file { overflow: hidden; position: relative; vertical-align: middle; } .fileupload .close { position: relative; top: 2px; margin-left: 2px; } .fileupload .close { font-size: 14px; } .btn-file > input { position: absolute; top: 0; right: 0; margin: 0; opacity: 0; filter: alpha(opacity=0); transform: translate(-300px, 0) scale(4); font-size: 23px; direction: ltr; cursor: pointer; } .fileupload .uneditable-input { display: inline-block; margin-bottom: 0px; vertical-align: middle; cursor: text; padding: 1px 10px 0; line-height: 27px; } .fileupload .uneditable-input i { font-size: 13px; } .fileupload .thumbnail { overflow: hidden; display: inline-block; margin-bottom: 5px; vertical-align: middle; text-align: center; } .fileupload .thumbnail > img { display: inline-block; vertical-align: middle; max-height: 100%; } .fileupload-exists .fileupload-new, .fileupload-new .fileupload-exists { display: none; } .fileupload-inline .fileupload-controls { display: inline; } .thumbnail-borderless .thumbnail { border: none; padding: 0; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .fileupload-new.thumbnail-borderless .thumbnail { border: 1px solid #8f8f8f; } .control-group.warning .fileupload .uneditable-input { color: #a47e3c; border-color: #a47e3c; } .control-group.warning .fileupload .fileupload-preview { color: #a47e3c; } .control-group.warning .fileupload .thumbnail { border-color: #a47e3c; } .control-group.error .fileupload .uneditable-input { color: #b94a48; border-color: #b94a48; } .control-group.error .fileupload .fileupload-preview { color: #b94a48; } .control-group.error .fileupload .thumbnail { border-color: #b94a48; } .control-group.success .fileupload .uneditable-input { color: #468847; border-color: #468847; } .control-group.success .fileupload .fileupload-preview { color: #468847; } .control-group.success .fileupload .thumbnail { border-color: #468847; }
0.393735
0.148078
body { width: 100% !important; min-width: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0; Margin: 0; padding: 0; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } img { outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: auto; max-width: 100%; clear: both; display: block; } center { width: 100%; min-width: 600px; } a img { border: none; } table { border-spacing: 0; border-collapse: collapse; } td, th { word-wrap: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; } table, tr, td, th { padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; vertical-align: top; text-align: left; } @media only screen { html { min-height: 100%; background: #e4e5ea; } } table.body { background: #e4e5ea; height: 100%; width: 100%; } table.container { background: #f1f4f7; width: 600px; margin: 0 auto; Margin: 0 auto; text-align: inherit; } table.row { padding: 0; width: 100%; position: relative; } table.container table.row { display: table; } th.columns { margin: 0 auto; Margin: 0 auto; padding-left: 24px; padding-bottom: 0px; } th.columns .columns.first { padding-left: 0 !important; } th.columns .columns.last { padding-right: 0 !important; } th.columns .columns center { min-width: none !important; } th.columns.last { padding-right: 24px; } th.columns table { width: 100%; } th.large-3 { width: 126px; padding-left: 12px; padding-right: 12px; } th.large-3.first { padding-left: 24px; } th.large-3.last { padding-right: 24px; } .collapse > tbody > tr > th.large-3 { padding-right: 0; padding-left: 0; width: 150px; } .collapse th.large-3.first, .collapse th.large-3.last { width: 162px; } .body .columns th.large-3 { width: 25%; } th.large-4 { width: 176px; padding-left: 12px; padding-right: 12px; } th.large-4.first { padding-left: 24px; } .collapse > tbody > tr > th.large-4 { padding-right: 0; padding-left: 0; width: 200px; } .collapse th.large-4.first { width: 212px; } .body .columns th.large-4 { width: 33.33333%; } th.large-5 { width: 226px; padding-left: 12px; padding-right: 12px; } th.large-5.first { padding-left: 24px; } .collapse > tbody > tr > th.large-5 { padding-right: 0; padding-left: 0; width: 250px; } .collapse th.large-5.first { width: 262px; } .body .columns th.large-5 { width: 41.66667%; } th.large-6 { width: 276px; padding-left: 12px; padding-right: 12px; } th.large-6.first { padding-left: 24px; } th.large-6.last { padding-right: 24px; } .body .columns th.large-6 { width: 50%; } th.large-7 { width: 326px; padding-left: 12px; padding-right: 12px; } th.large-7.last { padding-right: 24px; } .collapse > tbody > tr > th.large-7 { padding-right: 0; padding-left: 0; width: 350px; } .collapse th.large-7.last { width: 362px; } .body .columns th.large-7 { width: 58.33333%; } th.large-8 { width: 376px; padding-left: 12px; padding-right: 12px; } th.large-8.last { padding-right: 24px; } .collapse > tbody > tr > th.large-8 { padding-right: 0; padding-left: 0; width: 400px; } .collapse th.large-8.last { width: 412px; } .body .columns th.large-8 { width: 66.66667%; } th.large-12 { width: 576px; padding-left: 12px; padding-right: 12px; } th.large-12.first { padding-left: 24px; } th.large-12.last { padding-right: 24px; } th.large-12 center { min-width: 528px; } .body .columns th.large-12 { width: 100%; } th.expander { visibility: hidden; width: 0; padding: 0 !important; } @media only screen and (max-width: 624px) { .small-float-center { margin: 0 auto !important; float: none !important; text-align: center !important; } .small-text-center { text-align: center !important; } } img.float-right { float: right; text-align: right; } img.float-center { margin: 0 auto; Margin: 0 auto; float: none; text-align: center; } table.float-center { margin: 0 auto; Margin: 0 auto; float: none; text-align: center; } @media only screen and (max-width: 624px) { table.body table.container .show-for-large { display: none !important; width: 0; mso-hide: all; overflow: hidden; } } body, table.body, h2, h4, p, td, th { color: #0a0a0a; font-family: Helvetica, Arial, sans-serif; font-weight: 600; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; margin: 0; Margin: 0; text-align: left; line-height: 1.3; } h2, h4 { color: inherit; word-wrap: normal; font-family: Helvetica, Arial, sans-serif; font-weight: 600; margin-bottom: 0px; Margin-bottom: 0px; } h2 { font-size: 30px; } h4 { font-size: 24px; } body, table.body, p, td, th { font-size: 14px; line-height: 1.3; } p { margin-bottom: 0px; Margin-bottom: 0px; } a { color: #2199e8; text-decoration: none; font-family: Helvetica, Arial, sans-serif; font-weight: 600; padding: 0; text-align: left; line-height: 1.3; } a:hover { color: #147dc2; } a:active { color: #147dc2; } a:visited { color: #2199e8; } span.preheader { display: none !important; visibility: hidden; mso-hide: all !important; font-size: 1px; color: #e4e5ea; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; } @media only screen and (max-width: 624px) { table.body img { width: auto; height: auto; } table.body center { min-width: 0 !important; } table.body .container { width: 100% !important; } table.body .columns { height: auto !important; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; padding-left: 24px !important; padding-right: 24px !important; } table.body .columns .columns { padding-left: 0 !important; padding-right: 0 !important; } table.body .collapse .columns { padding-left: 0 !important; padding-right: 0 !important; } th.small-3 { display: inline-block !important; width: 25% !important; } th.small-6 { display: inline-block !important; width: 50% !important; } th.small-12 { display: inline-block !important; width: 100% !important; } .columns th.small-12 { display: block !important; width: 100% !important; } } /*----------------------------------------------------------------------------------------------------*/ .header { background: #ff690f; background-color: #ff690f; } .header .columns { padding-top: 13px; padding-bottom: 17px; padding-right: 20px !important; vertical-align: middle; } .header .columns .kayak-logo { width: 127px; } .header .columns .user-icon { width: 32px; padding-top: 2px; } /*----------------------------------------------------------------------------------------------------*/ /*----------------------------------------------------------------------------------------------------*/ .header-menu { background: #d65600; background-color: #d65600; } @media all { .header-menu .hm-content .menu-text:hover { color: #14181c !important; } } .header-menu .hm-content .menu-divider { border-right-color: #ff690f; } /*----------------------------------------------------------------------------------------------------*/ .header-menu, .footer-menu { padding-left: 0px !important; padding-right: 16px !important; } .header-menu .hm-content .row, .footer-menu .fm-content .row { margin-top: 10px; margin-bottom: 10px; } @media only screen and (max-width: 624px) { .header-menu .hm-content .row, .footer-menu .fm-content .row { margin-top: 5px !important; margin-bottom: 3px !important; } } .header-menu .hm-content .menu-icon, .footer-menu .fm-content .menu-icon { width: 20px; vertical-align: top; } .header-menu .hm-content .icon-text-divider, .footer-menu .fm-content .icon-text-divider { width: 4% !important; } .header-menu .hm-content .menu-text, .footer-menu .fm-content .menu-text { display: block; font-weight: 700; color: #ffffff; } .header-menu .hm-content .menu-divider, .footer-menu .fm-content .menu-divider { border-right: 1px solid; } @media only screen and (max-width: 624px) { .header-menu .hm-content .menu-divider, .footer-menu .fm-content .menu-divider { border-right: 0px solid !important; } } .header-menu .hm-content .packages-pad-left, .footer-menu .fm-content .packages-pad-left { padding-left: 12px !important; } /*----------------------------------------------------------------------------------------------------*/ /*----------------------------------------------------------------------------------------------------*/ .deal-of-day, .footer { background: #14181c; background-color: #14181c; } /*----------------------------------------------------------------------------------------------------*/ .deal-of-day .columns { padding-top: 28px; padding-bottom: 28px; } .deal-of-day .columns h2 { padding-bottom: 24px; text-align: center; font-size: 30px; font-weight: 800; color: #ffffff; } .deal-of-day .columns p { margin-left: 8px; margin-right: 8px; color: #ffffff; } /*----------------------------------------------------------------------------------------------------*/ .deal-of-day p, .deals-main p { text-align: center; } .deal-of-day p.vacation-deal, .deals-main p.vacation-deal { margin-top: 24px; font-size: 16px; } .deal-of-day p.save-amount, .deals-main p.save-amount { margin-top: 8px; font-size: 14px; } .deal-of-day p.tiny-info, .deals-main p.tiny-info { font-size: 10px; font-weight: 300; } .deal-of-day p.price, .deals-main p.price { margin-top: 10px; margin-bottom: 8px; font-size: 20px; } /*----------------------------------------------------------------------------------------------------*/ .deals-main, .deals-footer { margin-top: 16px; } .deals-main > tbody > tr > th, .deals-footer > tbody > tr > th { padding-left: 16px !important; padding-right: 16px !important; } .deals-footer { margin-bottom: 16px; } .deals-main .current-deal, .deals-footer .df-content { background: #ffffff; background-color: #ffffff; } .deals-main .current-deal p, .deals-footer .df-content p, .deals-footer .df-content h4 { color: #334755; } /*----------------------------------------------------------------------------------------------------*/ .deals-main .dm-content .current-deal th { padding-top: 16px; padding-bottom: 36px; padding-left: 16px; padding-right: 16px; } .deals-main .dm-content .current-deal img { height: 200px; } .deals-main .dm-content .current-deal p { padding-left: 32px; padding-right: 32px; } @media only screen and (max-width: 624px) { .deals-main .dm-content .current-deal p { padding-left: 16px !important; padding-right: 16px !important; } } .deals-main .dm-content .current-deal p.save-amount { color: #1a88f3; } /*----------------------------------------------------------------------------------------------------*/ .deals-footer .df-content th { padding-top: 24px; padding-bottom: 20px; } .deals-footer .df-content .group-icons { width: 176px; height: 24px; margin: 0px auto; margin-bottom: 24px; } .deals-footer .df-content h4 { text-align: center; font-size: 16px; } .deals-footer .df-content p { margin-top: 8px; margin-bottom: 42px; margin-left: 36px; margin-right: 36px; text-align: center; font-weight: 500; } /*----------------------------------------------------------------------------------------------------*/ /*----------------------------------------------------------------------------------------------------*/ .footer-top { background: #222d37; background-color: #222d37; } .footer-top .ft-content { padding-top: 35px; padding-bottom: 29px; } @media only screen and (max-width: 624px) { .footer-top .ft-content { padding-top: 20px !important; padding-bottom: 12px !important; } } .footer-top .ft-content .footer-top-left .k-logo { display: inline-block; width: 40px; height: 40px; } .footer-top .ft-content .footer-top-left span { display: inline-block; margin-top: 1px; margin-left: 5px; vertical-align: top; } .footer-top .ft-content .footer-top-left span .download-app { color: #ffffff; } .footer-top .ft-content .footer-top-left span .cheap { padding-top: 2px; font-size: 12px; color: #ffffff; } @media only screen and (max-width: 624px) { .footer-top .ft-content .footer-top-right { padding-top: 10px !important; } } .footer-top .ft-content .footer-top-right th { text-align: right; } .footer-top .ft-content .footer-top-right img { display: inline-block; height: 40px; margin-left: 2px; } /*----------------------------------------------------------------------------------------------------*/ .footer-social-media > tbody > tr > th { padding-top: 32px; padding-bottom: 32px; vertical-align: middle; } .footer-social-media .kayak-logo { width: 125px; } .footer-social-media .social-media-icons { padding-left: 0px !important; } .footer-social-media .social-media-icons .smi-content { text-align: right; } .footer-social-media .social-media-icons .smi-content img { display: inline-block; width: 32px; padding-left: 4px; vertical-align: middle; } /*----------------------------------------------------------------------------------------------------*/ .footer-menu { border-top: 1px solid #334755; border-bottom: 1px solid #334755; } .footer-menu .menu-divider { border-right-color: #334755; } /*----------------------------------------------------------------------------------------------------*/ .footer-bottom > tbody > tr > th { padding-top: 32px; padding-bottom: 50px; } .footer-bottom .user-links .center-tag { min-width: auto; } .footer-bottom .user-links a { margin-left: 4px; margin-right: 4px; font-size: 12px; color: #ffffff; } @media only screen and (max-width: 624px) { .footer-bottom .user-links a { font-size: 9px !important; } } .footer-bottom .disclaimer th { padding-top: 6px; padding-bottom: 14px; } .footer-bottom .disclaimer p { font-size: 10px; font-weight: 300; color: #a0a1a3; } @media only screen and (max-width: 624px) { .footer-bottom .disclaimer p { font-size: 8px !important; } } .footer-bottom .company-info .columns { padding-bottom: 1px; } .footer-bottom .company-info .columns p { font-size: 10px; font-weight: 400; color: #d0d0d1; } @media only screen and (max-width: 624px) { .footer-bottom .company-info .columns p { font-size: 8px !important; } } /*----------------------------------------------------------------------------------------------------*/ /*----------------------------------------------------------------------------------------------------*/ @media all { a:hover { color: #ff690f !important; } } /*----------------------------------------------------------------------------------------------------*/ .blue-text-fix { text-decoration: none; } /*----------------------------------------------------------------------------------------------------*/ .see-deal-button { display: block; width: 160px; margin: 0px auto; border: 1px solid #ffffff; border-radius: 5px; padding-top: 8px; padding-bottom: 8px; text-align: center; color: #ffffff; background: #14181c; background-color: #14181c; }
dist/kayak/inline/css/app.css
body { width: 100% !important; min-width: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; margin: 0; Margin: 0; padding: 0; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } img { outline: none; text-decoration: none; -ms-interpolation-mode: bicubic; width: auto; max-width: 100%; clear: both; display: block; } center { width: 100%; min-width: 600px; } a img { border: none; } table { border-spacing: 0; border-collapse: collapse; } td, th { word-wrap: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; hyphens: auto; border-collapse: collapse !important; } table, tr, td, th { padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; vertical-align: top; text-align: left; } @media only screen { html { min-height: 100%; background: #e4e5ea; } } table.body { background: #e4e5ea; height: 100%; width: 100%; } table.container { background: #f1f4f7; width: 600px; margin: 0 auto; Margin: 0 auto; text-align: inherit; } table.row { padding: 0; width: 100%; position: relative; } table.container table.row { display: table; } th.columns { margin: 0 auto; Margin: 0 auto; padding-left: 24px; padding-bottom: 0px; } th.columns .columns.first { padding-left: 0 !important; } th.columns .columns.last { padding-right: 0 !important; } th.columns .columns center { min-width: none !important; } th.columns.last { padding-right: 24px; } th.columns table { width: 100%; } th.large-3 { width: 126px; padding-left: 12px; padding-right: 12px; } th.large-3.first { padding-left: 24px; } th.large-3.last { padding-right: 24px; } .collapse > tbody > tr > th.large-3 { padding-right: 0; padding-left: 0; width: 150px; } .collapse th.large-3.first, .collapse th.large-3.last { width: 162px; } .body .columns th.large-3 { width: 25%; } th.large-4 { width: 176px; padding-left: 12px; padding-right: 12px; } th.large-4.first { padding-left: 24px; } .collapse > tbody > tr > th.large-4 { padding-right: 0; padding-left: 0; width: 200px; } .collapse th.large-4.first { width: 212px; } .body .columns th.large-4 { width: 33.33333%; } th.large-5 { width: 226px; padding-left: 12px; padding-right: 12px; } th.large-5.first { padding-left: 24px; } .collapse > tbody > tr > th.large-5 { padding-right: 0; padding-left: 0; width: 250px; } .collapse th.large-5.first { width: 262px; } .body .columns th.large-5 { width: 41.66667%; } th.large-6 { width: 276px; padding-left: 12px; padding-right: 12px; } th.large-6.first { padding-left: 24px; } th.large-6.last { padding-right: 24px; } .body .columns th.large-6 { width: 50%; } th.large-7 { width: 326px; padding-left: 12px; padding-right: 12px; } th.large-7.last { padding-right: 24px; } .collapse > tbody > tr > th.large-7 { padding-right: 0; padding-left: 0; width: 350px; } .collapse th.large-7.last { width: 362px; } .body .columns th.large-7 { width: 58.33333%; } th.large-8 { width: 376px; padding-left: 12px; padding-right: 12px; } th.large-8.last { padding-right: 24px; } .collapse > tbody > tr > th.large-8 { padding-right: 0; padding-left: 0; width: 400px; } .collapse th.large-8.last { width: 412px; } .body .columns th.large-8 { width: 66.66667%; } th.large-12 { width: 576px; padding-left: 12px; padding-right: 12px; } th.large-12.first { padding-left: 24px; } th.large-12.last { padding-right: 24px; } th.large-12 center { min-width: 528px; } .body .columns th.large-12 { width: 100%; } th.expander { visibility: hidden; width: 0; padding: 0 !important; } @media only screen and (max-width: 624px) { .small-float-center { margin: 0 auto !important; float: none !important; text-align: center !important; } .small-text-center { text-align: center !important; } } img.float-right { float: right; text-align: right; } img.float-center { margin: 0 auto; Margin: 0 auto; float: none; text-align: center; } table.float-center { margin: 0 auto; Margin: 0 auto; float: none; text-align: center; } @media only screen and (max-width: 624px) { table.body table.container .show-for-large { display: none !important; width: 0; mso-hide: all; overflow: hidden; } } body, table.body, h2, h4, p, td, th { color: #0a0a0a; font-family: Helvetica, Arial, sans-serif; font-weight: 600; padding-top: 0; padding-right: 0; padding-bottom: 0; padding-left: 0; margin: 0; Margin: 0; text-align: left; line-height: 1.3; } h2, h4 { color: inherit; word-wrap: normal; font-family: Helvetica, Arial, sans-serif; font-weight: 600; margin-bottom: 0px; Margin-bottom: 0px; } h2 { font-size: 30px; } h4 { font-size: 24px; } body, table.body, p, td, th { font-size: 14px; line-height: 1.3; } p { margin-bottom: 0px; Margin-bottom: 0px; } a { color: #2199e8; text-decoration: none; font-family: Helvetica, Arial, sans-serif; font-weight: 600; padding: 0; text-align: left; line-height: 1.3; } a:hover { color: #147dc2; } a:active { color: #147dc2; } a:visited { color: #2199e8; } span.preheader { display: none !important; visibility: hidden; mso-hide: all !important; font-size: 1px; color: #e4e5ea; line-height: 1px; max-height: 0px; max-width: 0px; opacity: 0; overflow: hidden; } @media only screen and (max-width: 624px) { table.body img { width: auto; height: auto; } table.body center { min-width: 0 !important; } table.body .container { width: 100% !important; } table.body .columns { height: auto !important; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; padding-left: 24px !important; padding-right: 24px !important; } table.body .columns .columns { padding-left: 0 !important; padding-right: 0 !important; } table.body .collapse .columns { padding-left: 0 !important; padding-right: 0 !important; } th.small-3 { display: inline-block !important; width: 25% !important; } th.small-6 { display: inline-block !important; width: 50% !important; } th.small-12 { display: inline-block !important; width: 100% !important; } .columns th.small-12 { display: block !important; width: 100% !important; } } /*----------------------------------------------------------------------------------------------------*/ .header { background: #ff690f; background-color: #ff690f; } .header .columns { padding-top: 13px; padding-bottom: 17px; padding-right: 20px !important; vertical-align: middle; } .header .columns .kayak-logo { width: 127px; } .header .columns .user-icon { width: 32px; padding-top: 2px; } /*----------------------------------------------------------------------------------------------------*/ /*----------------------------------------------------------------------------------------------------*/ .header-menu { background: #d65600; background-color: #d65600; } @media all { .header-menu .hm-content .menu-text:hover { color: #14181c !important; } } .header-menu .hm-content .menu-divider { border-right-color: #ff690f; } /*----------------------------------------------------------------------------------------------------*/ .header-menu, .footer-menu { padding-left: 0px !important; padding-right: 16px !important; } .header-menu .hm-content .row, .footer-menu .fm-content .row { margin-top: 10px; margin-bottom: 10px; } @media only screen and (max-width: 624px) { .header-menu .hm-content .row, .footer-menu .fm-content .row { margin-top: 5px !important; margin-bottom: 3px !important; } } .header-menu .hm-content .menu-icon, .footer-menu .fm-content .menu-icon { width: 20px; vertical-align: top; } .header-menu .hm-content .icon-text-divider, .footer-menu .fm-content .icon-text-divider { width: 4% !important; } .header-menu .hm-content .menu-text, .footer-menu .fm-content .menu-text { display: block; font-weight: 700; color: #ffffff; } .header-menu .hm-content .menu-divider, .footer-menu .fm-content .menu-divider { border-right: 1px solid; } @media only screen and (max-width: 624px) { .header-menu .hm-content .menu-divider, .footer-menu .fm-content .menu-divider { border-right: 0px solid !important; } } .header-menu .hm-content .packages-pad-left, .footer-menu .fm-content .packages-pad-left { padding-left: 12px !important; } /*----------------------------------------------------------------------------------------------------*/ /*----------------------------------------------------------------------------------------------------*/ .deal-of-day, .footer { background: #14181c; background-color: #14181c; } /*----------------------------------------------------------------------------------------------------*/ .deal-of-day .columns { padding-top: 28px; padding-bottom: 28px; } .deal-of-day .columns h2 { padding-bottom: 24px; text-align: center; font-size: 30px; font-weight: 800; color: #ffffff; } .deal-of-day .columns p { margin-left: 8px; margin-right: 8px; color: #ffffff; } /*----------------------------------------------------------------------------------------------------*/ .deal-of-day p, .deals-main p { text-align: center; } .deal-of-day p.vacation-deal, .deals-main p.vacation-deal { margin-top: 24px; font-size: 16px; } .deal-of-day p.save-amount, .deals-main p.save-amount { margin-top: 8px; font-size: 14px; } .deal-of-day p.tiny-info, .deals-main p.tiny-info { font-size: 10px; font-weight: 300; } .deal-of-day p.price, .deals-main p.price { margin-top: 10px; margin-bottom: 8px; font-size: 20px; } /*----------------------------------------------------------------------------------------------------*/ .deals-main, .deals-footer { margin-top: 16px; } .deals-main > tbody > tr > th, .deals-footer > tbody > tr > th { padding-left: 16px !important; padding-right: 16px !important; } .deals-footer { margin-bottom: 16px; } .deals-main .current-deal, .deals-footer .df-content { background: #ffffff; background-color: #ffffff; } .deals-main .current-deal p, .deals-footer .df-content p, .deals-footer .df-content h4 { color: #334755; } /*----------------------------------------------------------------------------------------------------*/ .deals-main .dm-content .current-deal th { padding-top: 16px; padding-bottom: 36px; padding-left: 16px; padding-right: 16px; } .deals-main .dm-content .current-deal img { height: 200px; } .deals-main .dm-content .current-deal p { padding-left: 32px; padding-right: 32px; } @media only screen and (max-width: 624px) { .deals-main .dm-content .current-deal p { padding-left: 16px !important; padding-right: 16px !important; } } .deals-main .dm-content .current-deal p.save-amount { color: #1a88f3; } /*----------------------------------------------------------------------------------------------------*/ .deals-footer .df-content th { padding-top: 24px; padding-bottom: 20px; } .deals-footer .df-content .group-icons { width: 176px; height: 24px; margin: 0px auto; margin-bottom: 24px; } .deals-footer .df-content h4 { text-align: center; font-size: 16px; } .deals-footer .df-content p { margin-top: 8px; margin-bottom: 42px; margin-left: 36px; margin-right: 36px; text-align: center; font-weight: 500; } /*----------------------------------------------------------------------------------------------------*/ /*----------------------------------------------------------------------------------------------------*/ .footer-top { background: #222d37; background-color: #222d37; } .footer-top .ft-content { padding-top: 35px; padding-bottom: 29px; } @media only screen and (max-width: 624px) { .footer-top .ft-content { padding-top: 20px !important; padding-bottom: 12px !important; } } .footer-top .ft-content .footer-top-left .k-logo { display: inline-block; width: 40px; height: 40px; } .footer-top .ft-content .footer-top-left span { display: inline-block; margin-top: 1px; margin-left: 5px; vertical-align: top; } .footer-top .ft-content .footer-top-left span .download-app { color: #ffffff; } .footer-top .ft-content .footer-top-left span .cheap { padding-top: 2px; font-size: 12px; color: #ffffff; } @media only screen and (max-width: 624px) { .footer-top .ft-content .footer-top-right { padding-top: 10px !important; } } .footer-top .ft-content .footer-top-right th { text-align: right; } .footer-top .ft-content .footer-top-right img { display: inline-block; height: 40px; margin-left: 2px; } /*----------------------------------------------------------------------------------------------------*/ .footer-social-media > tbody > tr > th { padding-top: 32px; padding-bottom: 32px; vertical-align: middle; } .footer-social-media .kayak-logo { width: 125px; } .footer-social-media .social-media-icons { padding-left: 0px !important; } .footer-social-media .social-media-icons .smi-content { text-align: right; } .footer-social-media .social-media-icons .smi-content img { display: inline-block; width: 32px; padding-left: 4px; vertical-align: middle; } /*----------------------------------------------------------------------------------------------------*/ .footer-menu { border-top: 1px solid #334755; border-bottom: 1px solid #334755; } .footer-menu .menu-divider { border-right-color: #334755; } /*----------------------------------------------------------------------------------------------------*/ .footer-bottom > tbody > tr > th { padding-top: 32px; padding-bottom: 50px; } .footer-bottom .user-links .center-tag { min-width: auto; } .footer-bottom .user-links a { margin-left: 4px; margin-right: 4px; font-size: 12px; color: #ffffff; } @media only screen and (max-width: 624px) { .footer-bottom .user-links a { font-size: 9px !important; } } .footer-bottom .disclaimer th { padding-top: 6px; padding-bottom: 14px; } .footer-bottom .disclaimer p { font-size: 10px; font-weight: 300; color: #a0a1a3; } @media only screen and (max-width: 624px) { .footer-bottom .disclaimer p { font-size: 8px !important; } } .footer-bottom .company-info .columns { padding-bottom: 1px; } .footer-bottom .company-info .columns p { font-size: 10px; font-weight: 400; color: #d0d0d1; } @media only screen and (max-width: 624px) { .footer-bottom .company-info .columns p { font-size: 8px !important; } } /*----------------------------------------------------------------------------------------------------*/ /*----------------------------------------------------------------------------------------------------*/ @media all { a:hover { color: #ff690f !important; } } /*----------------------------------------------------------------------------------------------------*/ .blue-text-fix { text-decoration: none; } /*----------------------------------------------------------------------------------------------------*/ .see-deal-button { display: block; width: 160px; margin: 0px auto; border: 1px solid #ffffff; border-radius: 5px; padding-top: 8px; padding-bottom: 8px; text-align: center; color: #ffffff; background: #14181c; background-color: #14181c; }
0.423458
0.058615
.mdc-elevation-overlay { position: absolute; border-radius: inherit; opacity: 0; pointer-events: none; transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1); background-color: #fff; } .mdc-dialog, .mdc-dialog__scrim { position: fixed; top: 0; left: 0; align-items: center; justify-content: center; box-sizing: border-box; width: 100%; height: 100%; } .mdc-dialog { display: none; z-index: 7; } .mdc-dialog .mdc-dialog__surface { background-color: #fff; /* @alternate */ background-color: var(--mdc-theme-surface, #fff); } .mdc-dialog .mdc-dialog__scrim { background-color: rgba(0, 0, 0, 0.32); } .mdc-dialog .mdc-dialog__title { color: rgba(0, 0, 0, 0.87); } .mdc-dialog .mdc-dialog__content { color: rgba(0, 0, 0, 0.6); } .mdc-dialog.mdc-dialog--scrollable .mdc-dialog__title, .mdc-dialog.mdc-dialog--scrollable .mdc-dialog__actions { border-color: rgba(0, 0, 0, 0.12); } .mdc-dialog .mdc-dialog__content { padding: 20px 24px 20px 24px; } .mdc-dialog .mdc-dialog__surface { min-width: 280px; } @media (max-width: 592px) { .mdc-dialog .mdc-dialog__surface { max-width: calc(100vw - 32px); } } @media (min-width: 592px) { .mdc-dialog .mdc-dialog__surface { max-width: 560px; } } .mdc-dialog .mdc-dialog__surface { max-height: calc(100% - 32px); } @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { .mdc-dialog .mdc-dialog__container { /* stylelint-disable */ /* stylelint-enable*/ } } .mdc-dialog .mdc-dialog__surface { border-radius: 4px; /* @alternate */ border-radius: var(--mdc-shape-medium, 4px); } .mdc-dialog__scrim { opacity: 0; z-index: -1; } .mdc-dialog__container { display: flex; flex-direction: row; align-items: center; justify-content: space-around; box-sizing: border-box; height: 100%; -webkit-transform: scale(0.8); transform: scale(0.8); opacity: 0; pointer-events: none; } .mdc-dialog__surface { /* @alternate */ position: relative; /* @alternate */ box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); display: flex; flex-direction: column; flex-grow: 0; flex-shrink: 0; box-sizing: border-box; max-width: 100%; max-height: 100%; pointer-events: auto; overflow-y: auto; } .mdc-dialog__surface .mdc-elevation-overlay { width: 100%; height: 100%; top: 0; /* @noflip */ left: 0; } .mdc-dialog[dir=rtl] .mdc-dialog__surface, [dir=rtl] .mdc-dialog .mdc-dialog__surface { /* @noflip */ text-align: right; } .mdc-dialog__title { display: block; margin-top: 0; /* @alternate */ line-height: normal; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: Roboto, sans-serif; /* @alternate */ font-family: var(--mdc-typography-headline6-font-family, var(--mdc-typography-font-family, Roboto, sans-serif)); font-size: 1.25rem; /* @alternate */ font-size: var(--mdc-typography-headline6-font-size, 1.25rem); line-height: 2rem; /* @alternate */ line-height: var(--mdc-typography-headline6-line-height, 2rem); font-weight: 500; /* @alternate */ font-weight: var(--mdc-typography-headline6-font-weight, 500); letter-spacing: 0.0125em; /* @alternate */ letter-spacing: var(--mdc-typography-headline6-letter-spacing, 0.0125em); text-decoration: inherit; /* @alternate */ -webkit-text-decoration: var(--mdc-typography-headline6-text-decoration, inherit); text-decoration: var(--mdc-typography-headline6-text-decoration, inherit); text-transform: inherit; /* @alternate */ text-transform: var(--mdc-typography-headline6-text-transform, inherit); position: relative; flex-shrink: 0; box-sizing: border-box; margin: 0; padding: 0 24px 9px; border-bottom: 1px solid transparent; } .mdc-dialog__title::before { display: inline-block; width: 0; height: 40px; content: ""; vertical-align: 0; } .mdc-dialog[dir=rtl] .mdc-dialog__title, [dir=rtl] .mdc-dialog .mdc-dialog__title { /* @noflip */ text-align: right; } .mdc-dialog--scrollable .mdc-dialog__title { padding-bottom: 15px; } .mdc-dialog__content { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: Roboto, sans-serif; /* @alternate */ font-family: var(--mdc-typography-body1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif)); font-size: 1rem; /* @alternate */ font-size: var(--mdc-typography-body1-font-size, 1rem); line-height: 1.5rem; /* @alternate */ line-height: var(--mdc-typography-body1-line-height, 1.5rem); font-weight: 400; /* @alternate */ font-weight: var(--mdc-typography-body1-font-weight, 400); letter-spacing: 0.03125em; /* @alternate */ letter-spacing: var(--mdc-typography-body1-letter-spacing, 0.03125em); text-decoration: inherit; /* @alternate */ -webkit-text-decoration: var(--mdc-typography-body1-text-decoration, inherit); text-decoration: var(--mdc-typography-body1-text-decoration, inherit); text-transform: inherit; /* @alternate */ text-transform: var(--mdc-typography-body1-text-transform, inherit); flex-grow: 1; box-sizing: border-box; margin: 0; overflow: auto; -webkit-overflow-scrolling: touch; } .mdc-dialog__content > :first-child { margin-top: 0; } .mdc-dialog__content > :last-child { margin-bottom: 0; } .mdc-dialog__title + .mdc-dialog__content { padding-top: 0; } .mdc-dialog--scrollable .mdc-dialog__title + .mdc-dialog__content { padding-top: 8px; padding-bottom: 8px; } .mdc-dialog__content .mdc-list:first-child:last-child { padding: 6px 0 0; } .mdc-dialog--scrollable .mdc-dialog__content .mdc-list:first-child:last-child { padding: 0; } .mdc-dialog__actions { display: flex; position: relative; flex-shrink: 0; flex-wrap: wrap; align-items: center; justify-content: flex-end; box-sizing: border-box; min-height: 52px; margin: 0; padding: 8px; border-top: 1px solid transparent; } .mdc-dialog--stacked .mdc-dialog__actions { flex-direction: column; align-items: flex-end; } .mdc-dialog__button { /* @noflip */ margin-left: 8px; /* @noflip */ margin-right: 0; max-width: 100%; /* @noflip */ text-align: right; } [dir=rtl] .mdc-dialog__button, .mdc-dialog__button[dir=rtl] { /* @noflip */ margin-left: 0; /* @noflip */ margin-right: 8px; } .mdc-dialog__button:first-child { /* @noflip */ margin-left: 0; /* @noflip */ margin-right: 0; } [dir=rtl] .mdc-dialog__button:first-child, .mdc-dialog__button:first-child[dir=rtl] { /* @noflip */ margin-left: 0; /* @noflip */ margin-right: 0; } .mdc-dialog[dir=rtl] .mdc-dialog__button, [dir=rtl] .mdc-dialog .mdc-dialog__button { /* @noflip */ text-align: left; } .mdc-dialog--stacked .mdc-dialog__button:not(:first-child) { margin-top: 12px; } .mdc-dialog--open, .mdc-dialog--opening, .mdc-dialog--closing { display: flex; } .mdc-dialog--opening .mdc-dialog__scrim { transition: opacity 150ms linear; } .mdc-dialog--opening .mdc-dialog__container { transition: opacity 75ms linear, -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1); transition: opacity 75ms linear, transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1); transition: opacity 75ms linear, transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1); } .mdc-dialog--closing .mdc-dialog__scrim, .mdc-dialog--closing .mdc-dialog__container { transition: opacity 75ms linear; } .mdc-dialog--closing .mdc-dialog__container { -webkit-transform: none; transform: none; } .mdc-dialog--open .mdc-dialog__scrim { opacity: 1; } .mdc-dialog--open .mdc-dialog__container { -webkit-transform: none; transform: none; opacity: 1; } .mdc-dialog-scroll-lock { overflow: hidden; } /*# sourceMappingURL=mdc.dialog.css.map*/
iact/WebContent/@material/dialog/dist/mdc.dialog.css
.mdc-elevation-overlay { position: absolute; border-radius: inherit; opacity: 0; pointer-events: none; transition: opacity 280ms cubic-bezier(0.4, 0, 0.2, 1); background-color: #fff; } .mdc-dialog, .mdc-dialog__scrim { position: fixed; top: 0; left: 0; align-items: center; justify-content: center; box-sizing: border-box; width: 100%; height: 100%; } .mdc-dialog { display: none; z-index: 7; } .mdc-dialog .mdc-dialog__surface { background-color: #fff; /* @alternate */ background-color: var(--mdc-theme-surface, #fff); } .mdc-dialog .mdc-dialog__scrim { background-color: rgba(0, 0, 0, 0.32); } .mdc-dialog .mdc-dialog__title { color: rgba(0, 0, 0, 0.87); } .mdc-dialog .mdc-dialog__content { color: rgba(0, 0, 0, 0.6); } .mdc-dialog.mdc-dialog--scrollable .mdc-dialog__title, .mdc-dialog.mdc-dialog--scrollable .mdc-dialog__actions { border-color: rgba(0, 0, 0, 0.12); } .mdc-dialog .mdc-dialog__content { padding: 20px 24px 20px 24px; } .mdc-dialog .mdc-dialog__surface { min-width: 280px; } @media (max-width: 592px) { .mdc-dialog .mdc-dialog__surface { max-width: calc(100vw - 32px); } } @media (min-width: 592px) { .mdc-dialog .mdc-dialog__surface { max-width: 560px; } } .mdc-dialog .mdc-dialog__surface { max-height: calc(100% - 32px); } @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { .mdc-dialog .mdc-dialog__container { /* stylelint-disable */ /* stylelint-enable*/ } } .mdc-dialog .mdc-dialog__surface { border-radius: 4px; /* @alternate */ border-radius: var(--mdc-shape-medium, 4px); } .mdc-dialog__scrim { opacity: 0; z-index: -1; } .mdc-dialog__container { display: flex; flex-direction: row; align-items: center; justify-content: space-around; box-sizing: border-box; height: 100%; -webkit-transform: scale(0.8); transform: scale(0.8); opacity: 0; pointer-events: none; } .mdc-dialog__surface { /* @alternate */ position: relative; /* @alternate */ box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12); display: flex; flex-direction: column; flex-grow: 0; flex-shrink: 0; box-sizing: border-box; max-width: 100%; max-height: 100%; pointer-events: auto; overflow-y: auto; } .mdc-dialog__surface .mdc-elevation-overlay { width: 100%; height: 100%; top: 0; /* @noflip */ left: 0; } .mdc-dialog[dir=rtl] .mdc-dialog__surface, [dir=rtl] .mdc-dialog .mdc-dialog__surface { /* @noflip */ text-align: right; } .mdc-dialog__title { display: block; margin-top: 0; /* @alternate */ line-height: normal; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: Roboto, sans-serif; /* @alternate */ font-family: var(--mdc-typography-headline6-font-family, var(--mdc-typography-font-family, Roboto, sans-serif)); font-size: 1.25rem; /* @alternate */ font-size: var(--mdc-typography-headline6-font-size, 1.25rem); line-height: 2rem; /* @alternate */ line-height: var(--mdc-typography-headline6-line-height, 2rem); font-weight: 500; /* @alternate */ font-weight: var(--mdc-typography-headline6-font-weight, 500); letter-spacing: 0.0125em; /* @alternate */ letter-spacing: var(--mdc-typography-headline6-letter-spacing, 0.0125em); text-decoration: inherit; /* @alternate */ -webkit-text-decoration: var(--mdc-typography-headline6-text-decoration, inherit); text-decoration: var(--mdc-typography-headline6-text-decoration, inherit); text-transform: inherit; /* @alternate */ text-transform: var(--mdc-typography-headline6-text-transform, inherit); position: relative; flex-shrink: 0; box-sizing: border-box; margin: 0; padding: 0 24px 9px; border-bottom: 1px solid transparent; } .mdc-dialog__title::before { display: inline-block; width: 0; height: 40px; content: ""; vertical-align: 0; } .mdc-dialog[dir=rtl] .mdc-dialog__title, [dir=rtl] .mdc-dialog .mdc-dialog__title { /* @noflip */ text-align: right; } .mdc-dialog--scrollable .mdc-dialog__title { padding-bottom: 15px; } .mdc-dialog__content { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: Roboto, sans-serif; /* @alternate */ font-family: var(--mdc-typography-body1-font-family, var(--mdc-typography-font-family, Roboto, sans-serif)); font-size: 1rem; /* @alternate */ font-size: var(--mdc-typography-body1-font-size, 1rem); line-height: 1.5rem; /* @alternate */ line-height: var(--mdc-typography-body1-line-height, 1.5rem); font-weight: 400; /* @alternate */ font-weight: var(--mdc-typography-body1-font-weight, 400); letter-spacing: 0.03125em; /* @alternate */ letter-spacing: var(--mdc-typography-body1-letter-spacing, 0.03125em); text-decoration: inherit; /* @alternate */ -webkit-text-decoration: var(--mdc-typography-body1-text-decoration, inherit); text-decoration: var(--mdc-typography-body1-text-decoration, inherit); text-transform: inherit; /* @alternate */ text-transform: var(--mdc-typography-body1-text-transform, inherit); flex-grow: 1; box-sizing: border-box; margin: 0; overflow: auto; -webkit-overflow-scrolling: touch; } .mdc-dialog__content > :first-child { margin-top: 0; } .mdc-dialog__content > :last-child { margin-bottom: 0; } .mdc-dialog__title + .mdc-dialog__content { padding-top: 0; } .mdc-dialog--scrollable .mdc-dialog__title + .mdc-dialog__content { padding-top: 8px; padding-bottom: 8px; } .mdc-dialog__content .mdc-list:first-child:last-child { padding: 6px 0 0; } .mdc-dialog--scrollable .mdc-dialog__content .mdc-list:first-child:last-child { padding: 0; } .mdc-dialog__actions { display: flex; position: relative; flex-shrink: 0; flex-wrap: wrap; align-items: center; justify-content: flex-end; box-sizing: border-box; min-height: 52px; margin: 0; padding: 8px; border-top: 1px solid transparent; } .mdc-dialog--stacked .mdc-dialog__actions { flex-direction: column; align-items: flex-end; } .mdc-dialog__button { /* @noflip */ margin-left: 8px; /* @noflip */ margin-right: 0; max-width: 100%; /* @noflip */ text-align: right; } [dir=rtl] .mdc-dialog__button, .mdc-dialog__button[dir=rtl] { /* @noflip */ margin-left: 0; /* @noflip */ margin-right: 8px; } .mdc-dialog__button:first-child { /* @noflip */ margin-left: 0; /* @noflip */ margin-right: 0; } [dir=rtl] .mdc-dialog__button:first-child, .mdc-dialog__button:first-child[dir=rtl] { /* @noflip */ margin-left: 0; /* @noflip */ margin-right: 0; } .mdc-dialog[dir=rtl] .mdc-dialog__button, [dir=rtl] .mdc-dialog .mdc-dialog__button { /* @noflip */ text-align: left; } .mdc-dialog--stacked .mdc-dialog__button:not(:first-child) { margin-top: 12px; } .mdc-dialog--open, .mdc-dialog--opening, .mdc-dialog--closing { display: flex; } .mdc-dialog--opening .mdc-dialog__scrim { transition: opacity 150ms linear; } .mdc-dialog--opening .mdc-dialog__container { transition: opacity 75ms linear, -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1); transition: opacity 75ms linear, transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1); transition: opacity 75ms linear, transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1), -webkit-transform 150ms 0ms cubic-bezier(0, 0, 0.2, 1); } .mdc-dialog--closing .mdc-dialog__scrim, .mdc-dialog--closing .mdc-dialog__container { transition: opacity 75ms linear; } .mdc-dialog--closing .mdc-dialog__container { -webkit-transform: none; transform: none; } .mdc-dialog--open .mdc-dialog__scrim { opacity: 1; } .mdc-dialog--open .mdc-dialog__container { -webkit-transform: none; transform: none; opacity: 1; } .mdc-dialog-scroll-lock { overflow: hidden; } /*# sourceMappingURL=mdc.dialog.css.map*/
0.374791
0.045289
.header { background-color: var(--red); height: var(--header-height); } .header .navigation-links li:nth-child(2) { height: var(--header-height); } .header .brand-logo { height: var(--header-height); } .header .navigation-links > ul { list-style-type: none; display: flex; align-items: center; justify-content: center; height: var(--header-height); } .header .navigation-links > ul > li + li { margin-left: 3em; } .header .navigation-links > ul > li a, .header .navigation-links > ul > li.a { color: white; cursor: pointer; font-weight: bold; } .header .wallet-button { position: relative; } .header .wallet-button span { padding: 0.75em 1.25em; background-color: black; color: white; cursor: pointer; } .header .wallet-connect { --btn-height: 50px; position: absolute; right: calc(var(--btn-height) / 2); list-style: none; top: calc((var(--header-height) / 2) - (var(--btn-height) / 2)); } .header .wallet-connect span { height: var(--btn-height); display: block; line-height: calc(var(--btn-height) / 2); } .wallet-button-dropdown { list-style: none; position: absolute; top: 110%; right: 0; background-color: #fff; width: 100%; border: 1px solid #ccc; } .wallet-button-dropdown li { padding: 0.75em 1.25em; cursor: pointer; } .wallet-button-dropdown li + li { border-top: 1px solid #ccc; } .main { max-width: 1200px; min-height: calc(100vh - var(--header-height)); background-color: #fff; margin: 0 auto; padding: 2em; } .mobile-navigation { position: absolute; top: 0; right: 0; display: none; flex-direction: column; align-items: end; } .mobile-navigation .mobile-navigation-button { display: flex; height: var(--header-height); width: var(--header-height); background-color: var(--yellow); cursor: pointer; } .mobile-navigation .mobile-navigation-button span { margin: auto; } .mobile-navigation .mobile-navigation-dropdown { background-color: white; list-style: none; z-index: 10000; } .mobile-navigation .mobile-navigation-dropdown li { border: 1px solid #ccc; cursor: pointer; } .mobile-navigation .mobile-navigation-dropdown li a, .mobile-navigation .mobile-navigation-dropdown li span { display: block; height: 100%; width: 100%; padding: 0.75em 1.25em; } .loading { height: 10px; width: 100%; background-color: var(--yellow); position: fixed; overflow-x: hidden; top: 0; left: 0; z-index: 20000; } .loading .loading-bar { height: 100%; width: 20%; background-color: var(--blue); position: absolute; animation: loading 1.5s infinite linear; } @keyframes loading { 0% { left: -20%; } 100% { left: 100%; } } @media only screen and (max-width: 992px) { .header .navigation-links > ul li:first-child, .header .navigation-links > ul li:last-child { display: none; } .header .navigation-links > ul li { margin-left: 0 !important; } .header .navigation-links > ul { justify-content: start; } .wallet-connect { display: none; } .mobile-navigation { display: flex; } .main { padding: 1em; } }
client/src/App.css
.header { background-color: var(--red); height: var(--header-height); } .header .navigation-links li:nth-child(2) { height: var(--header-height); } .header .brand-logo { height: var(--header-height); } .header .navigation-links > ul { list-style-type: none; display: flex; align-items: center; justify-content: center; height: var(--header-height); } .header .navigation-links > ul > li + li { margin-left: 3em; } .header .navigation-links > ul > li a, .header .navigation-links > ul > li.a { color: white; cursor: pointer; font-weight: bold; } .header .wallet-button { position: relative; } .header .wallet-button span { padding: 0.75em 1.25em; background-color: black; color: white; cursor: pointer; } .header .wallet-connect { --btn-height: 50px; position: absolute; right: calc(var(--btn-height) / 2); list-style: none; top: calc((var(--header-height) / 2) - (var(--btn-height) / 2)); } .header .wallet-connect span { height: var(--btn-height); display: block; line-height: calc(var(--btn-height) / 2); } .wallet-button-dropdown { list-style: none; position: absolute; top: 110%; right: 0; background-color: #fff; width: 100%; border: 1px solid #ccc; } .wallet-button-dropdown li { padding: 0.75em 1.25em; cursor: pointer; } .wallet-button-dropdown li + li { border-top: 1px solid #ccc; } .main { max-width: 1200px; min-height: calc(100vh - var(--header-height)); background-color: #fff; margin: 0 auto; padding: 2em; } .mobile-navigation { position: absolute; top: 0; right: 0; display: none; flex-direction: column; align-items: end; } .mobile-navigation .mobile-navigation-button { display: flex; height: var(--header-height); width: var(--header-height); background-color: var(--yellow); cursor: pointer; } .mobile-navigation .mobile-navigation-button span { margin: auto; } .mobile-navigation .mobile-navigation-dropdown { background-color: white; list-style: none; z-index: 10000; } .mobile-navigation .mobile-navigation-dropdown li { border: 1px solid #ccc; cursor: pointer; } .mobile-navigation .mobile-navigation-dropdown li a, .mobile-navigation .mobile-navigation-dropdown li span { display: block; height: 100%; width: 100%; padding: 0.75em 1.25em; } .loading { height: 10px; width: 100%; background-color: var(--yellow); position: fixed; overflow-x: hidden; top: 0; left: 0; z-index: 20000; } .loading .loading-bar { height: 100%; width: 20%; background-color: var(--blue); position: absolute; animation: loading 1.5s infinite linear; } @keyframes loading { 0% { left: -20%; } 100% { left: 100%; } } @media only screen and (max-width: 992px) { .header .navigation-links > ul li:first-child, .header .navigation-links > ul li:last-child { display: none; } .header .navigation-links > ul li { margin-left: 0 !important; } .header .navigation-links > ul { justify-content: start; } .wallet-connect { display: none; } .mobile-navigation { display: flex; } .main { padding: 1em; } }
0.628863
0.11353
* { margin: 0; padding: 0; border: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } a { text-decoration: none; color: white; } body { padding: 32px; color: white; background-color: #17171C; display: flex; justify-content: center; } .titulo-sep { color: #6C3BED; margin-top: 50px; margin-bottom: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; } header img { height: 124px; width: 124px; border-radius: 50%; margin-bottom: 32px; transition: transform .2s; position: relative; } header img:hover { transform: scale(1.2); } header p { font-size: 120%; color: #c5c2da; margin-bottom: 60px; } header p:hover { color: #947edf; } header a { color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; } ul { list-style-type: none; } section ul { margin-top: 1rem; display: grid; justify-items: center; grid-template-columns: repeat(3, 1fr); gap: 4rem; } section ul h2 { font-size: 150%; color: white; margin-top: 10px; font-weight: normal; margin-bottom: 0px; transition: transform .2s; position: relative; } section ul span { font-size: 90%; color: #6b6480; margin-top: 0px; font-weight: lighter; transition: transform .5s; position: relative; } section ul span:hover { color: #947edf; } section ul h2:hover { transform: scale(1.2); } section ul li:hover { transform: scale(1.2); } section ul li { background-color: blue; width: 20rem; height: 6rem; max-width: 40rem; min-height: 10px; border-radius: 0.7rem; display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative; transition: transform .2s; } section ul li svg { width: 40px; height: 40px; max-width: 40rem; min-height: 50px; } span { max-width: 80%; text-align: center; line-height: 23px; font-weight: 400; } span.new { position: absolute; top: -0.5rem; right: 0.5rem; border-radius: .2rem; background-color: white; z-index: 1; padding: .2rem 1rem; font-size: 1rem; font-weight: 400; color: black; } .uteis { color: white; } .codeby { margin-top: 100px; font-size: 20px } .codebyp { margin-top: 0px; font-size: 12px; } @media screen and (max-width: 1125px) { section ul { gap: 0.5rem; grid-template-columns: repeat(2, 2fr); } } @media screen and (max-width: 767px) { /* ou 767px */ section ul li { width: 15rem; max-width: 40rem; height: 90px; } section ul { gap: 1.5rem; grid-template-columns: repeat(2, 1fr); } } @media screen and (max-width: 535px) { /* ou 767px */ body { font-size: 14px; } span { line-height: 18px; } section ul li { width: 10rem; max-width: 40rem; height: 90px; } section ul { gap: 1.5rem; grid-template-columns: repeat(2, 1fr); } span.new { top: -0.8rem; right: 1rem; font-size: 0.8rem; } .codeby { font-size: 14px; } .codebyp { font-size: 10px; } } @media screen and (max-width: 350) { section ul { grid-template-columns: repeat(1, 1fr); } section ul li { width: 15rem; max-width: 40rem; min-height: 100px; } } .svg-white { width: 30px; height: 30px; object-fit: fill; filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); }
style.css
* { margin: 0; padding: 0; border: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } a { text-decoration: none; color: white; } body { padding: 32px; color: white; background-color: #17171C; display: flex; justify-content: center; } .titulo-sep { color: #6C3BED; margin-top: 50px; margin-bottom: 10px; display: flex; flex-direction: column; align-items: center; justify-content: center; } header img { height: 124px; width: 124px; border-radius: 50%; margin-bottom: 32px; transition: transform .2s; position: relative; } header img:hover { transform: scale(1.2); } header p { font-size: 120%; color: #c5c2da; margin-bottom: 60px; } header p:hover { color: #947edf; } header a { color: white; display: flex; flex-direction: column; align-items: center; justify-content: center; } ul { list-style-type: none; } section ul { margin-top: 1rem; display: grid; justify-items: center; grid-template-columns: repeat(3, 1fr); gap: 4rem; } section ul h2 { font-size: 150%; color: white; margin-top: 10px; font-weight: normal; margin-bottom: 0px; transition: transform .2s; position: relative; } section ul span { font-size: 90%; color: #6b6480; margin-top: 0px; font-weight: lighter; transition: transform .5s; position: relative; } section ul span:hover { color: #947edf; } section ul h2:hover { transform: scale(1.2); } section ul li:hover { transform: scale(1.2); } section ul li { background-color: blue; width: 20rem; height: 6rem; max-width: 40rem; min-height: 10px; border-radius: 0.7rem; display: flex; flex-direction: column; justify-content: center; align-items: center; position: relative; transition: transform .2s; } section ul li svg { width: 40px; height: 40px; max-width: 40rem; min-height: 50px; } span { max-width: 80%; text-align: center; line-height: 23px; font-weight: 400; } span.new { position: absolute; top: -0.5rem; right: 0.5rem; border-radius: .2rem; background-color: white; z-index: 1; padding: .2rem 1rem; font-size: 1rem; font-weight: 400; color: black; } .uteis { color: white; } .codeby { margin-top: 100px; font-size: 20px } .codebyp { margin-top: 0px; font-size: 12px; } @media screen and (max-width: 1125px) { section ul { gap: 0.5rem; grid-template-columns: repeat(2, 2fr); } } @media screen and (max-width: 767px) { /* ou 767px */ section ul li { width: 15rem; max-width: 40rem; height: 90px; } section ul { gap: 1.5rem; grid-template-columns: repeat(2, 1fr); } } @media screen and (max-width: 535px) { /* ou 767px */ body { font-size: 14px; } span { line-height: 18px; } section ul li { width: 10rem; max-width: 40rem; height: 90px; } section ul { gap: 1.5rem; grid-template-columns: repeat(2, 1fr); } span.new { top: -0.8rem; right: 1rem; font-size: 0.8rem; } .codeby { font-size: 14px; } .codebyp { font-size: 10px; } } @media screen and (max-width: 350) { section ul { grid-template-columns: repeat(1, 1fr); } section ul li { width: 15rem; max-width: 40rem; min-height: 100px; } } .svg-white { width: 30px; height: 30px; object-fit: fill; filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); }
0.677687
0.140838
.wrapper { display: flex; flex-direction: column; align-content: center; justify-content: space-between; width: 65%; } .wrapper-center { display: flex; flex-direction: row; justify-content: space-around; max-height: 80%; } .wrapper-center-tools { display: flex; flex-direction: row; justify-content: space-around; max-height: 95%; } .delete-test { background-image: url(../app/icons/icons8-trash2-50.png); background-position: center; background-repeat: no-repeat; background-size: 23px 20px; width: 31px; height: 30px; display: inline-block; vertical-align: middle; margin: -3px 0 0 10px; } .test-name { display: inline-block; } .paste-url-text { text-align: center; font-size: 30px; padding-top: 60px; } .go-button { width: 96px; height: 45px; background-color: #f181df; outline: inherit; border: none; border-radius: 2px; cursor: pointer; color: white; } .mode-button { width: 125px; height: 40px; background-color: #c4c4c4; outline: inherit; border: none; border-radius: 2px; cursor: pointer; color: black; margin-right: 10px; } .mode-button-findtests { width: 70px; height: 30px; background-color: #c4c4c4; outline: inherit; border: none; border-radius: 2px; cursor: pointer; color: black; margin-right: 10px; } .buttons-row { margin-bottom: 10px; } .buttons-row-findtests { margin-top: 10px; } .input-url { width: 538px; height: 45px; } .input-url-findtests { width: 371px; height: 45px; } .create-button { width: 66px; height: 45px; background-color: #f181df; outline: inherit; border: none; border-radius: 2px; cursor: pointer; color: white; } .input-group { padding-top: 50px; } .middle-text { padding-top: 25px; padding-bottom: 25px; text-align: center; } .button-icon { background-image: url(../app/icons/icons8-trash-50.png); background-color: #ff4646; background-position: center; background-repeat: no-repeat; background-size: 23px 20px; outline: inherit; border: none; border-radius: 3px; height: 30px; width: 31px; cursor: pointer; } input::placeholder { text-align: center; color: #a1a1a1; } .first-tr { background-color: #f181df; color: white; }
app/app.css
.wrapper { display: flex; flex-direction: column; align-content: center; justify-content: space-between; width: 65%; } .wrapper-center { display: flex; flex-direction: row; justify-content: space-around; max-height: 80%; } .wrapper-center-tools { display: flex; flex-direction: row; justify-content: space-around; max-height: 95%; } .delete-test { background-image: url(../app/icons/icons8-trash2-50.png); background-position: center; background-repeat: no-repeat; background-size: 23px 20px; width: 31px; height: 30px; display: inline-block; vertical-align: middle; margin: -3px 0 0 10px; } .test-name { display: inline-block; } .paste-url-text { text-align: center; font-size: 30px; padding-top: 60px; } .go-button { width: 96px; height: 45px; background-color: #f181df; outline: inherit; border: none; border-radius: 2px; cursor: pointer; color: white; } .mode-button { width: 125px; height: 40px; background-color: #c4c4c4; outline: inherit; border: none; border-radius: 2px; cursor: pointer; color: black; margin-right: 10px; } .mode-button-findtests { width: 70px; height: 30px; background-color: #c4c4c4; outline: inherit; border: none; border-radius: 2px; cursor: pointer; color: black; margin-right: 10px; } .buttons-row { margin-bottom: 10px; } .buttons-row-findtests { margin-top: 10px; } .input-url { width: 538px; height: 45px; } .input-url-findtests { width: 371px; height: 45px; } .create-button { width: 66px; height: 45px; background-color: #f181df; outline: inherit; border: none; border-radius: 2px; cursor: pointer; color: white; } .input-group { padding-top: 50px; } .middle-text { padding-top: 25px; padding-bottom: 25px; text-align: center; } .button-icon { background-image: url(../app/icons/icons8-trash-50.png); background-color: #ff4646; background-position: center; background-repeat: no-repeat; background-size: 23px 20px; outline: inherit; border: none; border-radius: 3px; height: 30px; width: 31px; cursor: pointer; } input::placeholder { text-align: center; color: #a1a1a1; } .first-tr { background-color: #f181df; color: white; }
0.462959
0.065545
.sw-toolbar-bottom { margin-top: 20px; margin-left: 5px; } /* ---------------------------------------------------------------------------------------------------------------- */ .dcat-step-box { margin: 0 auto; } .dcat-step { box-sizing: border-box; padding: 0; color: rgba(0, 0, 0, 0.65); /*font-variant: tabular-nums;*/ line-height: 1.5; list-style: none; /*font-feature-settings: "tnum";*/ display: flex; width: 100%; font-size: 0; margin: 0 auto 30px; } .dcat-step-item { position: relative; display: inline-block; flex: 1 1; overflow: hidden; vertical-align: top; } .dcat-step-item-container { outline: 0; border: 0 !important; } .dcat-step-item:last-child { flex: none; } .dcat-step-item:last-child > .dcat-step-item-container > .dcat-step-content > .dcat-step-title:after, .dcat-step-item:last-child > .dcat-step-item-container > .dcat-step-line { display: none; } .dcat-step-content, .dcat-step-icons { display: inline-block; vertical-align: top; } .dcat-step-icons { width: 32px; height: 32px; margin-right: 8px; font-size: 16px; line-height: 32px; text-align: center; border: 1px solid rgba(0, 0, 0, 0.25); border-radius: 32px; transition: background-color 0.3s, border-color 0.3s; } .dcat-step-icons > .dcat-step-icon { position: relative; top: -1px; color: rgba(0, 0, 0, 0.25); line-height: 1; } .dcat-step-line { position: absolute; top: 12px; left: 0; width: 100%; padding: 0 10px; } .dcat-step-line:after { display: inline-block; width: 100%; height: 1px; background: #e8e8e8; border-radius: 1px; transition: background 0.3s; content: ""; } .dcat-step-title { position: relative; display: inline-block; padding-right: 16px; color: rgba(0, 0, 0, 0.65); font-size: 16px; line-height: 32px; } .dcat-step-title:after { position: absolute; top: 16px; left: 100%; display: block; width: 9999px; height: 1px; background: #e8e8e8; content: ""; } .dcat-step-desc { color: rgba(0, 0, 0, 0.45); font-size: 14px; } .active .dcat-step-icons { background-color: #fff; } .active > .dcat-step-item-container > .dcat-step-content > .dcat-step-title { color: rgba(0, 0, 0, 0.85); } .active > .dcat-step-item-container > .dcat-step-content > .dcat-step-title:after { background-color: #e8e8e8; } .active > .dcat-step-item-container > .dcat-step-content > .dcat-step-desc { color: rgba(0, 0, 0, 0.65); } .active > .dcat-step-item-container > .dcat-step-line:after { background-color: #e8e8e8; } .active .dcat-step-icons > .dcat-step-icon { color: #fff; } .active .dcat-step-title { font-weight: 500; } .done .dcat-step-icons { background-color: #fff; } .done > .dcat-step-item-container > .dcat-step-content > .dcat-step-title { color: rgba(0, 0, 0, 0.65); } .done > .dcat-step-item-container > .dcat-step-content > .dcat-step-desc { color: rgba(0, 0, 0, 0.45); } .danger .dcat-step-icons { background-color: #fff; border-color: #bd4147; } .danger .dcat-step-icons > .dcat-step-icon { color: #bd4147; } .danger .dcat-step-icons > .dcat-step-icon .dcat-step-icon-dot { background: #bd4147; } .danger > .dcat-step-item-container > .dcat-step-content > .dcat-step-title { color: #bd4147; } .danger > .dcat-step-item-container > .dcat-step-content > .dcat-step-title:after { background-color: #e8e8e8; } .danger > .dcat-step-item-container > .dcat-step-content > .dcat-step-desc { color: #bd4147; } .danger > .dcat-step-item-container > .dcat-step-line:after { background-color: #e8e8e8; } .dcat-step-item.dcat-step-next-error .dcat-step-title:after { background: #bd4147; } .dcat-step .dcat-step-item:not(.active) > .dcat-step-item-container[role=button] { cursor: pointer; } .dcat-step .dcat-step-item:not(.active) > .dcat-step-item-container[role=button] .dcat-step-desc, .dcat-step .dcat-step-item:not(.active) > .dcat-step-item-container[role=button] .dcat-step-icons .dcat-step-icon, .dcat-step .dcat-step-item:not(.active) > .dcat-step-item-container[role=button] .dcat-step-title { transition: color 0.3s; } .dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-item { margin-right: 16px; white-space: nowrap; } .dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-item:last-child { margin-right: 0; } .dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-item:last-child .dcat-step-title { padding-right: 0; } .dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-line { display: none; } .dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-desc { max-width: 140px; white-space: normal; } .dcat-step-sm.dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-item { margin-right: 12px; } .dcat-step-sm.dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-item:last-child { margin-right: 0; } .dcat-step-sm .dcat-step-icons { width: 24px; height: 24px; font-size: 12px; line-height: 24px; text-align: center; border-radius: 24px; } .dcat-step-sm .dcat-step-title { padding-right: 12px; font-size: 14px; line-height: 24px; } .dcat-step-sm .dcat-step-title:after { top: 12px; } .dcat-step-sm .dcat-step-desc { color: rgba(0, 0, 0, 0.45); font-size: 14px; } .dcat-step-sm .dcat-step-line { top: 8px; } @media (max-width: 540px) { .dcat-step-horizontal.dcat-step-label-horizontal { display: block; } .dcat-step-box .nav-tabs > li { float: none; } .dcat-step-box .nav-tabs > li > a { padding: 0; } .dcat-step-horizontal.dcat-step-label-horizontal .dcat-step-item { display: block; overflow: visible; } .dcat-step-horizontal.dcat-step-label-horizontal .dcat-step-icons { float: left; margin-right: 16px; } .dcat-step-horizontal.dcat-step-label-horizontal .dcat-step-content { display: block; overflow: hidden; } .dcat-step-horizontal.dcat-step-label-horizontal .dcat-step-title { line-height: 32px; } .dcat-step-horizontal.dcat-step-label-horizontal .dcat-step-desc { padding-bottom: 12px; } .dcat-step-horizontal.dcat-step-label-horizontal > .dcat-step-item > .dcat-step-item-container > .dcat-step-line { position: absolute; top: 0; left: 16px; width: 1px; height: 100%; padding: 38px 0 6px; } .dcat-step-horizontal.dcat-step-label-horizontal > .dcat-step-item > .dcat-step-item-container > .dcat-step-line:after { width: 1px; height: 100%; } .dcat-step-horizontal.dcat-step-label-horizontal > .dcat-step-item:not(:last-child) > .dcat-step-item-container > .dcat-step-line { display: none; } .dcat-step-horizontal.dcat-step-label-horizontal > .dcat-step-item > .dcat-step-item-container > .dcat-step-content > .dcat-step-title:after { display: none; } .dcat-step-horizontal.dcat-step-label-horizontal.dcat-step-sm .dcat-step-item-container .dcat-step-title { line-height: 24px; } } .dcat-step-label-vertical .dcat-step-item { overflow: visible; } .dcat-step-label-vertical .dcat-step-line { margin-left: 51px; padding: 3.5px 24px; left: 18px; top: 23px; } .dcat-step-label-vertical .dcat-step-content { display: block; width: 104px; margin-top: 8px; text-align: center; } .dcat-step-label-vertical .dcat-step-icons { display: inline-block; margin-left: 36px; } .dcat-step-label-vertical .dcat-step-title { padding-right: 0; } .dcat-step-label-vertical .dcat-step-title:after { display: none; } .dcat-step-label-vertical.dcat-step-sm:not(.dcat-step-dot) .dcat-step-icons { margin-left: 40px; } .dcat-step-dot .dcat-step-title, .dcat-step-dot.dcat-step-sm .dcat-step-title { line-height: 1.5; } .dcat-step-dot .dcat-step-line, .dcat-step-dot.dcat-step-sm .dcat-step-line { top: 2px; width: 100%; margin: 0 0 0 70px; padding: 0; } .dcat-step-dot .dcat-step-line:after, .dcat-step-dot.dcat-step-sm .dcat-step-line:after { width: calc(100% - 20px); height: 3px; margin-left: 12px; } .dcat-step-dot .dcat-step-item:first-child .dcat-step-icon-dot, .dcat-step-dot.dcat-step-sm .dcat-step-item:first-child .dcat-step-icon-dot { left: 2px; } .dcat-step-dot .dcat-step-icons, .dcat-step-dot.dcat-step-sm .dcat-step-icons { width: 8px; height: 8px; margin-left: 67px; padding-right: 0; line-height: 8px; background: 0 0; border: 0; } .dcat-step-dot .dcat-step-icons .dcat-step-icon-dot, .dcat-step-dot.dcat-step-sm .dcat-step-icons .dcat-step-icon-dot { position: relative; float: left; width: 100%; height: 100%; border-radius: 100px; transition: all 0.3s; } .dcat-step-dot .dcat-step-icons .dcat-step-icon-dot:after, .dcat-step-dot.dcat-step-sm .dcat-step-icons .dcat-step-icon-dot:after { position: absolute; top: -12px; left: -26px; width: 60px; height: 32px; background: rgba(0, 0, 0, 0.001); content: ""; } .dcat-step-dot .dcat-step-content, .dcat-step-dot.dcat-step-sm .dcat-step-content { width: 140px; } .dcat-step-dot .active .dcat-step-icons, .dcat-step-dot.dcat-step-sm .active .dcat-step-icons { width: 10px; height: 10px; line-height: 10px; } .dcat-step-dot .active .dcat-step-icons .dcat-step-icon-dot, .dcat-step-dot.dcat-step-sm .active .dcat-step-icons .dcat-step-icon-dot { top: -1px; } .dcat-step-item a { font-weight: normal !important; }
resources/assets/css/step.css
.sw-toolbar-bottom { margin-top: 20px; margin-left: 5px; } /* ---------------------------------------------------------------------------------------------------------------- */ .dcat-step-box { margin: 0 auto; } .dcat-step { box-sizing: border-box; padding: 0; color: rgba(0, 0, 0, 0.65); /*font-variant: tabular-nums;*/ line-height: 1.5; list-style: none; /*font-feature-settings: "tnum";*/ display: flex; width: 100%; font-size: 0; margin: 0 auto 30px; } .dcat-step-item { position: relative; display: inline-block; flex: 1 1; overflow: hidden; vertical-align: top; } .dcat-step-item-container { outline: 0; border: 0 !important; } .dcat-step-item:last-child { flex: none; } .dcat-step-item:last-child > .dcat-step-item-container > .dcat-step-content > .dcat-step-title:after, .dcat-step-item:last-child > .dcat-step-item-container > .dcat-step-line { display: none; } .dcat-step-content, .dcat-step-icons { display: inline-block; vertical-align: top; } .dcat-step-icons { width: 32px; height: 32px; margin-right: 8px; font-size: 16px; line-height: 32px; text-align: center; border: 1px solid rgba(0, 0, 0, 0.25); border-radius: 32px; transition: background-color 0.3s, border-color 0.3s; } .dcat-step-icons > .dcat-step-icon { position: relative; top: -1px; color: rgba(0, 0, 0, 0.25); line-height: 1; } .dcat-step-line { position: absolute; top: 12px; left: 0; width: 100%; padding: 0 10px; } .dcat-step-line:after { display: inline-block; width: 100%; height: 1px; background: #e8e8e8; border-radius: 1px; transition: background 0.3s; content: ""; } .dcat-step-title { position: relative; display: inline-block; padding-right: 16px; color: rgba(0, 0, 0, 0.65); font-size: 16px; line-height: 32px; } .dcat-step-title:after { position: absolute; top: 16px; left: 100%; display: block; width: 9999px; height: 1px; background: #e8e8e8; content: ""; } .dcat-step-desc { color: rgba(0, 0, 0, 0.45); font-size: 14px; } .active .dcat-step-icons { background-color: #fff; } .active > .dcat-step-item-container > .dcat-step-content > .dcat-step-title { color: rgba(0, 0, 0, 0.85); } .active > .dcat-step-item-container > .dcat-step-content > .dcat-step-title:after { background-color: #e8e8e8; } .active > .dcat-step-item-container > .dcat-step-content > .dcat-step-desc { color: rgba(0, 0, 0, 0.65); } .active > .dcat-step-item-container > .dcat-step-line:after { background-color: #e8e8e8; } .active .dcat-step-icons > .dcat-step-icon { color: #fff; } .active .dcat-step-title { font-weight: 500; } .done .dcat-step-icons { background-color: #fff; } .done > .dcat-step-item-container > .dcat-step-content > .dcat-step-title { color: rgba(0, 0, 0, 0.65); } .done > .dcat-step-item-container > .dcat-step-content > .dcat-step-desc { color: rgba(0, 0, 0, 0.45); } .danger .dcat-step-icons { background-color: #fff; border-color: #bd4147; } .danger .dcat-step-icons > .dcat-step-icon { color: #bd4147; } .danger .dcat-step-icons > .dcat-step-icon .dcat-step-icon-dot { background: #bd4147; } .danger > .dcat-step-item-container > .dcat-step-content > .dcat-step-title { color: #bd4147; } .danger > .dcat-step-item-container > .dcat-step-content > .dcat-step-title:after { background-color: #e8e8e8; } .danger > .dcat-step-item-container > .dcat-step-content > .dcat-step-desc { color: #bd4147; } .danger > .dcat-step-item-container > .dcat-step-line:after { background-color: #e8e8e8; } .dcat-step-item.dcat-step-next-error .dcat-step-title:after { background: #bd4147; } .dcat-step .dcat-step-item:not(.active) > .dcat-step-item-container[role=button] { cursor: pointer; } .dcat-step .dcat-step-item:not(.active) > .dcat-step-item-container[role=button] .dcat-step-desc, .dcat-step .dcat-step-item:not(.active) > .dcat-step-item-container[role=button] .dcat-step-icons .dcat-step-icon, .dcat-step .dcat-step-item:not(.active) > .dcat-step-item-container[role=button] .dcat-step-title { transition: color 0.3s; } .dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-item { margin-right: 16px; white-space: nowrap; } .dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-item:last-child { margin-right: 0; } .dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-item:last-child .dcat-step-title { padding-right: 0; } .dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-line { display: none; } .dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-desc { max-width: 140px; white-space: normal; } .dcat-step-sm.dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-item { margin-right: 12px; } .dcat-step-sm.dcat-step-horizontal:not(.dcat-step-label-vertical) .dcat-step-item:last-child { margin-right: 0; } .dcat-step-sm .dcat-step-icons { width: 24px; height: 24px; font-size: 12px; line-height: 24px; text-align: center; border-radius: 24px; } .dcat-step-sm .dcat-step-title { padding-right: 12px; font-size: 14px; line-height: 24px; } .dcat-step-sm .dcat-step-title:after { top: 12px; } .dcat-step-sm .dcat-step-desc { color: rgba(0, 0, 0, 0.45); font-size: 14px; } .dcat-step-sm .dcat-step-line { top: 8px; } @media (max-width: 540px) { .dcat-step-horizontal.dcat-step-label-horizontal { display: block; } .dcat-step-box .nav-tabs > li { float: none; } .dcat-step-box .nav-tabs > li > a { padding: 0; } .dcat-step-horizontal.dcat-step-label-horizontal .dcat-step-item { display: block; overflow: visible; } .dcat-step-horizontal.dcat-step-label-horizontal .dcat-step-icons { float: left; margin-right: 16px; } .dcat-step-horizontal.dcat-step-label-horizontal .dcat-step-content { display: block; overflow: hidden; } .dcat-step-horizontal.dcat-step-label-horizontal .dcat-step-title { line-height: 32px; } .dcat-step-horizontal.dcat-step-label-horizontal .dcat-step-desc { padding-bottom: 12px; } .dcat-step-horizontal.dcat-step-label-horizontal > .dcat-step-item > .dcat-step-item-container > .dcat-step-line { position: absolute; top: 0; left: 16px; width: 1px; height: 100%; padding: 38px 0 6px; } .dcat-step-horizontal.dcat-step-label-horizontal > .dcat-step-item > .dcat-step-item-container > .dcat-step-line:after { width: 1px; height: 100%; } .dcat-step-horizontal.dcat-step-label-horizontal > .dcat-step-item:not(:last-child) > .dcat-step-item-container > .dcat-step-line { display: none; } .dcat-step-horizontal.dcat-step-label-horizontal > .dcat-step-item > .dcat-step-item-container > .dcat-step-content > .dcat-step-title:after { display: none; } .dcat-step-horizontal.dcat-step-label-horizontal.dcat-step-sm .dcat-step-item-container .dcat-step-title { line-height: 24px; } } .dcat-step-label-vertical .dcat-step-item { overflow: visible; } .dcat-step-label-vertical .dcat-step-line { margin-left: 51px; padding: 3.5px 24px; left: 18px; top: 23px; } .dcat-step-label-vertical .dcat-step-content { display: block; width: 104px; margin-top: 8px; text-align: center; } .dcat-step-label-vertical .dcat-step-icons { display: inline-block; margin-left: 36px; } .dcat-step-label-vertical .dcat-step-title { padding-right: 0; } .dcat-step-label-vertical .dcat-step-title:after { display: none; } .dcat-step-label-vertical.dcat-step-sm:not(.dcat-step-dot) .dcat-step-icons { margin-left: 40px; } .dcat-step-dot .dcat-step-title, .dcat-step-dot.dcat-step-sm .dcat-step-title { line-height: 1.5; } .dcat-step-dot .dcat-step-line, .dcat-step-dot.dcat-step-sm .dcat-step-line { top: 2px; width: 100%; margin: 0 0 0 70px; padding: 0; } .dcat-step-dot .dcat-step-line:after, .dcat-step-dot.dcat-step-sm .dcat-step-line:after { width: calc(100% - 20px); height: 3px; margin-left: 12px; } .dcat-step-dot .dcat-step-item:first-child .dcat-step-icon-dot, .dcat-step-dot.dcat-step-sm .dcat-step-item:first-child .dcat-step-icon-dot { left: 2px; } .dcat-step-dot .dcat-step-icons, .dcat-step-dot.dcat-step-sm .dcat-step-icons { width: 8px; height: 8px; margin-left: 67px; padding-right: 0; line-height: 8px; background: 0 0; border: 0; } .dcat-step-dot .dcat-step-icons .dcat-step-icon-dot, .dcat-step-dot.dcat-step-sm .dcat-step-icons .dcat-step-icon-dot { position: relative; float: left; width: 100%; height: 100%; border-radius: 100px; transition: all 0.3s; } .dcat-step-dot .dcat-step-icons .dcat-step-icon-dot:after, .dcat-step-dot.dcat-step-sm .dcat-step-icons .dcat-step-icon-dot:after { position: absolute; top: -12px; left: -26px; width: 60px; height: 32px; background: rgba(0, 0, 0, 0.001); content: ""; } .dcat-step-dot .dcat-step-content, .dcat-step-dot.dcat-step-sm .dcat-step-content { width: 140px; } .dcat-step-dot .active .dcat-step-icons, .dcat-step-dot.dcat-step-sm .active .dcat-step-icons { width: 10px; height: 10px; line-height: 10px; } .dcat-step-dot .active .dcat-step-icons .dcat-step-icon-dot, .dcat-step-dot.dcat-step-sm .active .dcat-step-icons .dcat-step-icon-dot { top: -1px; } .dcat-step-item a { font-weight: normal !important; }
0.428951
0.073132
@charset "utf-8"; section { max-width: 1000px; padding-bottom: 50px; box-sizing: border-box; margin: 150px auto; display: flex; flex-direction: column; align-items: center; border: 1px solid #eee; box-shadow: 0 2px 3px #ccc; } section > p { font-family: gsdr; font-size: 1.5rem; margin: 50px 0; } .process-container { width: 500px; display: flex; justify-content: space-around; margin-bottom: 50px; } .process-container div { display: flex; flex-direction: column; text-align: center; } .process-container div img { display: block; width: 80px; height: 80px; border-radius: 30%; border: 1px solid #ccc; padding: 15px; background-color: #eee; } .process-container div:last-child img { border: 2px solid #a62326; background: #fff; } .process-container div:last-child span { color: #a62326; } .process-container div span { font-size: 0.95rem; margin-top: 10px; color: #666; } section table { width: 100%; height: auto; } .order-container { width: 100%; height: auto; } .btn-box button { outline: none; appearance: none; width: 150px; height: 50px; padding: 10px 15px; border: 2px solid #a62326; border-radius: 15px; background: #fff; font-size: 1.125rem; font-weight: 600; color: #222; cursor: pointer; margin-right: 15px; } .btn-box button:last-child { margin-right: 0; } .btn-box button:last-child { border: none; background: #a62326; color: white; } .btn-box button:hover { text-decoration: underline; } .table-box { width: 90%; margin: 50px auto; background-color: #fff; } .total-table { width: 90%; margin: 50px auto; padding: 5px; border-top: 2px solid #333; border-bottom: 2px solid #333; } .total-table .total-title { width: 50%; float: left; font-size: 1.5rem; font-weight: bold; } .total-table .table { width: 50%; float: left; } .total-table .table tbody tr td:first-child { color: #444; } .total-table .table tbody tr td:last-child { text-align: end; } .total-table .table tbody tr.final-pay td { border-top: 1px solid #a62326 !important; } .total-table .table tbody tr td .product-total { font-size: 1.25rem; color: #ff0000; font-weight: bold; } .order { width: 90%; background-color: #eee; } .order .order-title { width: 100%; height: 50px; line-height: 40px; padding-left: 20px; margin-top: 20px; margin-bottom: 0; } .order .order-title .big { font-size: 30px; color: #a62326; font-weight: bold; margin-right: 5px; } .order .order-title strong { font-size: 20px; color: #333; } .order #or1 { padding: 20px; } .order #or1 .or1-wrap { background-color: #fff; } .order #or1 .or1-wrap table tbody tr td:first-child { font-size: 18px; font-weight: bold; } .order #or1 .or1-wrap table tbody tr td input { padding-left: 5px; } .order #or1 .or1-wrap table tbody tr td input[type="button"] { padding-right: 5px; } .order #or1 .or1-wrap table tbody tr td input[name="address"] { width: 300px; } .order table input[type="tel"] { width: 100px; } #order2 .order-title { margin-top: 0; } .order #or2 { padding: 20px 20px 0; } .order #or2 .or2-wrap { background-color: #fff; } .order #or2 .or2-wrap table tbody tr td:first-child { font-size: 18px; font-weight: bold; } .order #or2 .or2-wrap table tbody tr td input { padding-left: 5px; } .order #or2 .or2-wrap table tbody tr td input[type="button"] { padding-right: 5px; } .order #or2 .or2-wrap table tbody tr td input[name="address"] { width: 300px; } .order #or2 .or2-wrap table tbody tr td input[name="postText"] { width: 500px; } .total-test { width: 90%; padding: 20px; padding-top: 0; background-color: #eee; } .total-test .order-title { width: 100%; height: 50px; line-height: 50px; } .total-test .order-title .big { font-size: 30px; color: #a62326; font-weight: bold; margin-right: 5px; } .total-test .order-title strong { font-size: 20px; color: #333; } .total-test table { background-color: #fff; } .total-test table tbody tr td:first-child { font-size: 18px; font-weight: bold; } .total-test table tbody tr td { font-size: 18px; } .total-test table tbody tr td .bold { font-weight: bold; } .total-test .pay-do { width: 100%; height: 60px; } .total-test .txt-red { width: 100%; background-color: #a62326; font-family: gsdr; color: #fff; line-height: 60px; text-align: center; font-size: 20px; float: left; } .basket-table input[type="button"] { background-color: transparent; border: none; font-size: 20px; font-family: gsdr; color: #999; } .out-btn { display: flex; justify-content: space-between; width: 100%; height: 60px; margin-top: 30px; } .out-btn a { display: block; width: 30%; background-color: #38383b; font-family: gsdr; color: #fff; text-align: center; line-height: 60px; font-size: 20px; border-radius: 10px; } .out-btn a:last-child { background-color: #a62326; } .out-btn a:hover { text-decoration: underline; }
basket/order/orderComplete/css/orderComplete.css
@charset "utf-8"; section { max-width: 1000px; padding-bottom: 50px; box-sizing: border-box; margin: 150px auto; display: flex; flex-direction: column; align-items: center; border: 1px solid #eee; box-shadow: 0 2px 3px #ccc; } section > p { font-family: gsdr; font-size: 1.5rem; margin: 50px 0; } .process-container { width: 500px; display: flex; justify-content: space-around; margin-bottom: 50px; } .process-container div { display: flex; flex-direction: column; text-align: center; } .process-container div img { display: block; width: 80px; height: 80px; border-radius: 30%; border: 1px solid #ccc; padding: 15px; background-color: #eee; } .process-container div:last-child img { border: 2px solid #a62326; background: #fff; } .process-container div:last-child span { color: #a62326; } .process-container div span { font-size: 0.95rem; margin-top: 10px; color: #666; } section table { width: 100%; height: auto; } .order-container { width: 100%; height: auto; } .btn-box button { outline: none; appearance: none; width: 150px; height: 50px; padding: 10px 15px; border: 2px solid #a62326; border-radius: 15px; background: #fff; font-size: 1.125rem; font-weight: 600; color: #222; cursor: pointer; margin-right: 15px; } .btn-box button:last-child { margin-right: 0; } .btn-box button:last-child { border: none; background: #a62326; color: white; } .btn-box button:hover { text-decoration: underline; } .table-box { width: 90%; margin: 50px auto; background-color: #fff; } .total-table { width: 90%; margin: 50px auto; padding: 5px; border-top: 2px solid #333; border-bottom: 2px solid #333; } .total-table .total-title { width: 50%; float: left; font-size: 1.5rem; font-weight: bold; } .total-table .table { width: 50%; float: left; } .total-table .table tbody tr td:first-child { color: #444; } .total-table .table tbody tr td:last-child { text-align: end; } .total-table .table tbody tr.final-pay td { border-top: 1px solid #a62326 !important; } .total-table .table tbody tr td .product-total { font-size: 1.25rem; color: #ff0000; font-weight: bold; } .order { width: 90%; background-color: #eee; } .order .order-title { width: 100%; height: 50px; line-height: 40px; padding-left: 20px; margin-top: 20px; margin-bottom: 0; } .order .order-title .big { font-size: 30px; color: #a62326; font-weight: bold; margin-right: 5px; } .order .order-title strong { font-size: 20px; color: #333; } .order #or1 { padding: 20px; } .order #or1 .or1-wrap { background-color: #fff; } .order #or1 .or1-wrap table tbody tr td:first-child { font-size: 18px; font-weight: bold; } .order #or1 .or1-wrap table tbody tr td input { padding-left: 5px; } .order #or1 .or1-wrap table tbody tr td input[type="button"] { padding-right: 5px; } .order #or1 .or1-wrap table tbody tr td input[name="address"] { width: 300px; } .order table input[type="tel"] { width: 100px; } #order2 .order-title { margin-top: 0; } .order #or2 { padding: 20px 20px 0; } .order #or2 .or2-wrap { background-color: #fff; } .order #or2 .or2-wrap table tbody tr td:first-child { font-size: 18px; font-weight: bold; } .order #or2 .or2-wrap table tbody tr td input { padding-left: 5px; } .order #or2 .or2-wrap table tbody tr td input[type="button"] { padding-right: 5px; } .order #or2 .or2-wrap table tbody tr td input[name="address"] { width: 300px; } .order #or2 .or2-wrap table tbody tr td input[name="postText"] { width: 500px; } .total-test { width: 90%; padding: 20px; padding-top: 0; background-color: #eee; } .total-test .order-title { width: 100%; height: 50px; line-height: 50px; } .total-test .order-title .big { font-size: 30px; color: #a62326; font-weight: bold; margin-right: 5px; } .total-test .order-title strong { font-size: 20px; color: #333; } .total-test table { background-color: #fff; } .total-test table tbody tr td:first-child { font-size: 18px; font-weight: bold; } .total-test table tbody tr td { font-size: 18px; } .total-test table tbody tr td .bold { font-weight: bold; } .total-test .pay-do { width: 100%; height: 60px; } .total-test .txt-red { width: 100%; background-color: #a62326; font-family: gsdr; color: #fff; line-height: 60px; text-align: center; font-size: 20px; float: left; } .basket-table input[type="button"] { background-color: transparent; border: none; font-size: 20px; font-family: gsdr; color: #999; } .out-btn { display: flex; justify-content: space-between; width: 100%; height: 60px; margin-top: 30px; } .out-btn a { display: block; width: 30%; background-color: #38383b; font-family: gsdr; color: #fff; text-align: center; line-height: 60px; font-size: 20px; border-radius: 10px; } .out-btn a:last-child { background-color: #a62326; } .out-btn a:hover { text-decoration: underline; }
0.221351
0.066691
.object-tools li form { padding: 0; } form .form-row .related-lookup.filebase_browser img { display: inline !important; } form .form-row .related-lookup.filebase_browser:hover, form .form-row .related-lookup.filebase_browser:focus { background-color: transparent !important; } form .form-row .related-lookup.filebase_browser::before { display: none !important; } form .form-row .related-lookup.filebase_browser { float: none; width: auto; height: auto; /* todo: target admin-style and vanilla admin accordingly! */ color: #0bf !important; border: transparent !important; vertical-align: middle !important; /* padding / margin!?? */ margin: 0 !important; margin-right: 15px !important; padding: 0 !important; font-size: inherit !important; } /* end hacks */ body .filebase_hidden { display: none; } .upload_errors { text-decoration: underline; } .upload_errors:hover { cursor:pointer; } .filebase_file_link { display: inline-block; margin-right: 15px; background-color: #f1f1f1; line-height: 0px; vertical-align: middle; text-align: center; } .filebase_no_link { /* cursor: cell; */ } .filebase_file_link span { display: inline-block; vertical-align: middle; height: 100%; } .filebase_file_link img { vertical-align: middle; display: inline-block; } .filebase_button { cursor: pointer; } .filebase_button, .filebase_file_label { display: inline-block; margin: 0 15px 0 0; } .filebase_upload_info { float: left; padding: 2px 10px 0 10px; display: block; /* color:white; background-color: #bbb; */ } .filebase_widget_upload_info { display: inline-block; padding: 0 10px 0 0; background-color: transparent; color: #333; } /* override djangocms-admintools styles! */ .related-lookup { overflow: visible; width: auto !important; background: none !important; } /* since Django 1.8 ?! */ .related-widget-wrapper-link { display: none; }
filebase/static/filebase/css/filebase.css
.object-tools li form { padding: 0; } form .form-row .related-lookup.filebase_browser img { display: inline !important; } form .form-row .related-lookup.filebase_browser:hover, form .form-row .related-lookup.filebase_browser:focus { background-color: transparent !important; } form .form-row .related-lookup.filebase_browser::before { display: none !important; } form .form-row .related-lookup.filebase_browser { float: none; width: auto; height: auto; /* todo: target admin-style and vanilla admin accordingly! */ color: #0bf !important; border: transparent !important; vertical-align: middle !important; /* padding / margin!?? */ margin: 0 !important; margin-right: 15px !important; padding: 0 !important; font-size: inherit !important; } /* end hacks */ body .filebase_hidden { display: none; } .upload_errors { text-decoration: underline; } .upload_errors:hover { cursor:pointer; } .filebase_file_link { display: inline-block; margin-right: 15px; background-color: #f1f1f1; line-height: 0px; vertical-align: middle; text-align: center; } .filebase_no_link { /* cursor: cell; */ } .filebase_file_link span { display: inline-block; vertical-align: middle; height: 100%; } .filebase_file_link img { vertical-align: middle; display: inline-block; } .filebase_button { cursor: pointer; } .filebase_button, .filebase_file_label { display: inline-block; margin: 0 15px 0 0; } .filebase_upload_info { float: left; padding: 2px 10px 0 10px; display: block; /* color:white; background-color: #bbb; */ } .filebase_widget_upload_info { display: inline-block; padding: 0 10px 0 0; background-color: transparent; color: #333; } /* override djangocms-admintools styles! */ .related-lookup { overflow: visible; width: auto !important; background: none !important; } /* since Django 1.8 ?! */ .related-widget-wrapper-link { display: none; }
0.237576
0.051083
@charset "utf-8"; /*------------------------------------------------------------------ [Master Stylesheet] Project: LearnPress Version: 1.0 Primary use: LearnPress | Education & Courses HTML Template Author: ThemeMascot URL: http://themeforest.net/user/ThemeMascot -------------------------------------------------------------------*/ /* This file contains the common styles of this theme. */ /*------------------------------------------------------------------ [Table of contents] * Typography.less * Common.less * Extra.less * Header.less * Nav.less * Inner-Header-Title.less * Vertical-Nav.less * menu-full-page.less * Boxed-layout.less * Form.less * Side-Push-Panel.less * Box-Hover-Effect.less * Work-Gallery.less * gallery-isotope.less * Slider.less * Home.less * About.less * Contact.less * Services.less * Shop.less * Blog.less * Shortcode.less * Alerts.less * Buttons.less * Blockquote.less * Clients.less * Countdown.less * Countdown-Timer.less * Dividers.less * Facebook-Disqus-Comments.less * Faqs.less * Flexslider.less * Flip-Box.less * Font-Icons-Style.less * Funfacts.less * Icon-Boxes.less * Infinitescroll.less * Instagram.less * Light-Box.less * Map.less * Pegination.less * Pricing.less * Process-Steps.less * Progress-Bar.less * Promo.less * Section-Title.less * Separators.less * styled-icons.less * Tabs.less * Teams.less * Testimonials.less * Timetable-fullcalendar.less * Toggles-Accordions.less * Vertical-Timeline.less * Working-Process.less * Widgets.less * Footer * =============================================== */ @import "font-awesome.min.css"; @import "font-awesome-animation.min.css"; @import "pe-icon-7-stroke.css"; /* @import "../css/elegant-icons.css"; */ /* @import "../css/stroke-gap-icons.css"; */ @import "flaticon-set-carfixing.css"; @import "utility-classes.css"; @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800|family=Raleway:400,200,300,500,600,700,800,900|family=Titillium+Web:400,200,300,600,700,900); /* * Typography.less * ----------------------------------------------- */ ::selection { background: #333333; color: #fff; text-shadow: none; } ::-moz-selection { background: #333333; /* Firefox */ color: #fff; text-shadow: none; } ::-webkit-selection { background: #333333; /* Safari */ color: #fff; text-shadow: none; } :active, :focus { outline: none !important; } html { font-size: 100%; } body { line-height: 1.7; color: #666666; font-size: 14px; font-family: 'Open Sans', sans-serif; background-color: #fff; } a { color: #808080; text-decoration: none; } a:hover, a:focus { color: #595959; text-decoration: none; } a img { border: none; } img { max-width: 100%; } iframe { border: none !important; } /* -------- Headings ---------- */ h1, .h1 { font-size: 3.4rem; } h2, .h2 { font-size: 28px; } h3, .h3 { font-size: 24px; } h4, .h4 { font-size: 18px; } h5, .h5 { font-size: 14px; } h6, .h6 { font-size: 12px; } h1, h2, .h1, .h2 { font-family: 'Open Sans', sans-serif; font-weight: 700; line-height: 1.42857143; color: #333333; } h1 small, h2 small, .h1 small, .h2 small, h1 .small, h2 .small, .h1 .small, .h2 .small { font-weight: normal; line-height: 1; color: #333333; } h1 a, h2 a, .h1 a, .h2 a { color: #333333; } h3, h4, h5, h6, .h3, .h4, .h5, .h6 { font-family: 'Open Sans', sans-serif; font-weight: 700; line-height: 1.42857143; color: #333333; } h3 small, h4 small, h5 small, h6 small, .h3 small, .h4 small, .h5 small, .h6 small, h3 .small, h4 .small, h5 .small, h6 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { font-weight: normal; line-height: 1; color: #333333; } h3 a, h4 a, h5 a, h6 a, .h3 a, .h4 a, .h5 a, .h6 a { color: #333333; } /* -------- Body Text ---------- */ p, pre, ul, ol, dl, dd, blockquote, address, table, fieldset, form { margin-bottom: 10px; } /* -------- Custom Font Family ---------- */ .font-opensans { font-family: 'Open Sans', sans-serif; } .font-raleway { font-family: 'Raleway', sans-serif; } .font-titillium { font-family: 'Titillium Web', sans-serif; } /* breadcrumb */ .breadcrumb { background-color: transparent; padding-left: 0; text-align: center; } .breadcrumb > li + li::before { content: "\f22d"; font-family: fontawesome; font-size: 9px; } .breadcrumb li.active { color: #111111; } .breadcrumb.white li.active { color: #fff; } .breadcrumb.white li a { color: #808080; } @media only screen and (min-width: 768px) { .breadcrumb.text-right { text-align: right !important; } } /*Drop Caps*/ .drop-caps p { text-align: justify; } .drop-caps p:first-child:first-letter { color: #111111; display: block; float: left; font-size: 48px; line-height: 48px; margin: 6px 3px; padding: 10px 18px; } .drop-caps.text-colored p:first-child:first-letter { display: block; float: left; font-size: 48px; line-height: 48px; margin: 6px 3px; padding: 10px 18px; } .drop-caps.border p:first-child:first-letter { border: 1px solid; margin: 8px 16px 0 0; padding: 15px 20px; } .drop-caps.border-rounded p:first-child:first-letter { border: 1px solid; border-radius: 50%; margin: 8px 16px 0 0; padding: 15px 20px; } .drop-caps.colored-square p:first-child:first-letter { color: #fff; margin: 8px 16px 0 0; padding: 15px 20px; } .drop-caps.colored-rounded p:first-child:first-letter { color: #fff; margin: 8px 16px 0 0; padding: 15px 20px; border-radius: 50%; } .drop-caps.dark-square p:first-child:first-letter { background: #222222; color: #fff; margin: 8px 16px 0 0; padding: 15px 20px; } .drop-caps.dark-rounded p:first-child:first-letter { background: #222222; color: #fff; margin: 8px 16px 0 0; padding: 15px 20px; border-radius: 50%; } /*Text Highlight*/ .text-highlight { background: none repeat scroll 0 0 #111111; border-radius: 4px; color: #fff; padding: 0 5px 3px; } .text-highlight.light { background: #808080; } /* * common.less * ----------------------------------------------- */ /* -------- Basic Structure ---------- */ html { font-size: 100%; max-width: 100%; } @media only screen and (max-width: 991px) { html { font-size: 90%; } } @media only screen and (max-width: 767px) { html { font-size: 85%; } } @media only screen and (max-width: 479px) { html { font-size: 80%; } } html, html a { -webkit-font-smoothing: antialiased; } body { max-width: 100%; overflow-x: hidden; } img { max-width: 100%; } ul, ol { list-style: none; margin: 0; padding: 0; } .fluid-video-wrapper { padding: 0; position: relative; width: 100%; } iframe { border: none; width: 100%; } .lead { font-size: 18px; } .text-highlight { background: none repeat scroll 0 0 #111111; border-radius: 4px; color: #fff; padding: 0 5px 3px; } .text-highlight.light { background: #808080; } .inline-block { display: inline-block; } .display-block { display: block; } .fullwidth { width: 100%; } .bg-hover-theme-colored { -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; } /* Text-decoration */ .text-underline { text-decoration: underline; } /* -------- Line-Bottom ---------- */ .heading-line-bottom { border-bottom: 1px dashed #808080; display: inline-block; margin: 0; position: relative; margin: 20px 0; } .heading-line-bottom::after { content: ""; height: 2px; left: 0; position: absolute; top: 4px; width: 20px; } .heading-title { margin-top: 10px; } .line-bottom { position: relative; margin-bottom: 30px; padding-bottom: 10px; } .line-bottom:after { bottom: -1px; content: ""; height: 2px; left: 0; position: absolute; width: 50px; } .line-bottom-centered { position: relative; margin: 10px 0 20px; } .line-bottom-centered:after { background: #2b96cc none repeat scroll 0 0; bottom: -8px; content: ""; height: 1px; left: 0; margin-left: auto; margin-right: auto; margin-top: 0; position: absolute; right: 0; width: 30px; } .title-icon [class^="flaticon-"]::after, .title-icon [class^="flaticon-"]::before { font-size: 48px; margin-left: 10px; } .title-icon { margin: 0 auto; max-width: 160px; position: relative; } .title-icon::after { content: ""; height: 2px; left: 24px; position: absolute; top: 10px; width: 30px; } .title-icon::before { content: ""; height: 2px; position: absolute; right: 20px; top: 10px; width: 30px; } /* -------- List ---------- */ ul, ol { list-style: none; margin: 0; padding: 0; } ul ul, ol ul { margin-left: 15px; } ul.list { list-style: outside none none; margin-top: 13px; padding-left: 0; } ul.list li { margin: 5px 0; font-weight: 500; padding-left: 15px; position: relative; } ul.list li:hover:before { background: none; border-color: transparent; } ul.list li a { text-decoration: none; -webkit-transition: all 300ms ease-in; -o-transition: all 300ms ease-in; transition: all 300ms ease-in; } /* -------- List White ---------- */ ul.list.list-white li:before { color: #fff; } ul.list.list-white li:hover:before { background: none; border-color: transparent; } ul.list.list-white li a { color: #fff; text-decoration: none; -webkit-transition: all 300ms ease-in; -o-transition: all 300ms ease-in; transition: all 300ms ease-in; } /* -------- List border bottom ---------- */ ul.list-border-bottom li { border-bottom: 1px solid #eeeeee; padding-bottom: 10px; } ul.list.list-border-bottom li:last-child { border-bottom: none; } ul.list-border-bottom.no-padding li { padding-bottom: 0px; } ul.list-border-bottom.no-padding li:last-child { border-bottom: none; } /* -------- List Icons ---------- */ .list-border li { border-bottom: 1px dashed #d3d3d3; padding: 10px 0; } .dark .list-border li { border-bottom: 1px dashed #333333; } .list-icon li { font-size: 14px; margin: 0; } .list-icon li i { color: #555555; font-size: 14px; height: 28px; line-height: 28px; margin: 5px 10px 5px 0; text-align: center; width: 28px; } .list-icon.square li i { background: #c0c0c0; color: #555555; font-size: 12px; height: 28px; line-height: 28px; margin: 5px 10px 5px 0; text-align: center; width: 28px; } .list-icon.rounded li i { color: #555555; background: #c0c0c0; border-radius: 50%; font-size: 12px; height: 28px; line-height: 28px; margin: 5px 10px 5px 0; text-align: center; width: 28px; } .list-icon.theme-colored.square li i { color: #fff; } .list-icon.theme-colored.rounded li i { color: #fff; } /* -------- Personal Info List ---------- */ .list-info li { clear: both; position: relative; } .list-info li label { display: inline-block; font-weight: bold; padding: 5px 0 0; } .list-info li span { left: 110px; padding: 5px 0; position: absolute; } .list-features { -moz-column-count: 3; column-count: 3; } .list-dashed > article { border-bottom: 1px dashed #d3d3d3 !important; margin-bottom: 7px; padding-bottom: 7px; } .list-dashed > div { border-bottom: 1px dashed #d3d3d3 !important; margin-bottom: 7px; padding-bottom: 7px; } .list-dashed > li { border-bottom: 1px dashed #d3d3d3 !important; margin-bottom: 7px; padding-bottom: 7px; } .list-dashed.dark-dash > article { border-bottom: 1px dashed #333333 !important; } .list-dashed.dark-dash > div { border-bottom: 1px dashed #333333 !important; } .list-dashed.dark-dash > li { border-bottom: 1px dashed #333333 !important; } ul.list.check li:before { content: "\f00c"; font-family: fontawesome; font-size: 12px; } ul.list.angle-double-right li:before { content: "\f101"; font-family: fontawesome; font-size: 12px; } ul.list.angle-right li:before { content: "\f105"; font-family: fontawesome; } ul.list.check-circle li:before { content: "\f058"; font-family: fontawesome; font-size: 14px; } /* -------- Call To Actions ---------- */ .call-to-action { width: 100%; padding-bottom: 20px; padding-top: 20px; } /* -------- Section & Divider ---------- */ section { position: relative; } section > .container, section > .container-fluid { padding-top: 60px; padding-bottom: 60px; } /* -------- Background Video ---------- */ .bg-video { height: 100%; position: absolute; text-align: center; width: 100%; z-index: -1; } .bg-video .video { height: 100%; left: 0; margin: 0!important; position: relative; top: 0; width: 100%; } .bg-video .video .mbYTP_wrapper { z-index: -1 !important; } /* -------- Box Table ---------- */ .display-table-parent { height: 100%; left: 0; position: absolute; top: 0; width: 100%; } .display-table { display: table; height: 100%; position: relative; width: 100%; } .display-table-cell { display: table-cell; height: 100%; vertical-align: middle; } /* -------- Scroll To Top ---------- */ .scrollToTop { background: rgba(0, 0, 0, 0.1); bottom: 15px; display: none; height: 50px; padding: 2px; position: fixed; right: 15px; text-align: center; text-decoration: none; width: 50px; z-index: 99999; } .scrollToTop i { color: #fff; font-size: 42px; } .scrollToTop:hover { background: rgba(0, 0, 0, 0.6); text-decoration: none; } /* -------- magnific popup ---------- */ .mfp-close-btn-in .mfp-close { color: #eee; font-size: 64px; } /* * Extra.less * ----------------------------------------------- */ /* -------- Heading Style ---------- */ .heading-border { border-bottom: 1px solid #d3d3d3; margin: 30px 0; padding: 20px 0; } /* -------- FullCalendar - Plugin ---------- */ .fc-day-number { color: #333333; } .fc-day-number.fc-other-month { opacity: 0.4; } /* scrolltofixed-container */ .scrolltofixed-container { position: static; } @media only screen and (max-width: 767px) { .scrolltofixed-container .scrolltofixed { position: static !important; } .scrolltofixed-container .scrolltofixed + div { display: none !important; } } /* * Overlays.less * ----------------------------------------------- */ .layer-overlay { position: relative; /* overlay-dark */ /* overlay-white */ } .layer-overlay::before { background: rgba(17, 17, 17, 0.5) none repeat scroll 0 0; content: " "; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } .layer-overlay.overlay-light::before { background-color: rgba(255, 255, 255, 0.4); } .layer-overlay.overlay-lighter::before { background-color: rgba(255, 255, 255, 0.3); } .layer-overlay.overlay-deep::before { background-color: rgba(255, 255, 255, 0.9); } .layer-overlay.overlay-dark::before { background-color: rgba(17, 17, 17, 0.85); } .layer-overlay.overlay-dark-1::before { background-color: rgba(17, 17, 17, 0.1); } .layer-overlay.overlay-dark-2::before { background-color: rgba(17, 17, 17, 0.2); } .layer-overlay.overlay-dark-3::before { background-color: rgba(17, 17, 17, 0.3); } .layer-overlay.overlay-dark-4::before { background-color: rgba(17, 17, 17, 0.4); } .layer-overlay.overlay-dark-5::before { background-color: rgba(17, 17, 17, 0.5); } .layer-overlay.overlay-dark-6::before { background-color: rgba(17, 17, 17, 0.6); } .layer-overlay.overlay-dark-7::before { background-color: rgba(17, 17, 17, 0.7); } .layer-overlay.overlay-dark-8::before { background-color: rgba(17, 17, 17, 0.8); } .layer-overlay.overlay-dark-9::before { background-color: rgba(17, 17, 17, 0.9); } .layer-overlay.overlay-white::before { background-color: rgba(255, 255, 255, 0.4); } .layer-overlay.overlay-white-1::before { background-color: rgba(255, 255, 255, 0.1); } .layer-overlay.overlay-white-2::before { background-color: rgba(255, 255, 255, 0.2); } .layer-overlay.overlay-white-3::before { background-color: rgba(255, 255, 255, 0.3); } .layer-overlay.overlay-white-4::before { background-color: rgba(255, 255, 255, 0.4); } .layer-overlay.overlay-white-5::before { background-color: rgba(255, 255, 255, 0.5); } .layer-overlay.overlay-white-6::before { background-color: rgba(255, 255, 255, 0.6); } .layer-overlay.overlay-white-7::before { background-color: rgba(255, 255, 255, 0.7); } .layer-overlay.overlay-white-8::before { background-color: rgba(255, 255, 255, 0.8); } .layer-overlay.overlay-white-9::before { background-color: rgba(255, 255, 255, 0.9); } .layer-overlay.layer-pattern::before { background-image: url(../images/pattern1.png); background-color: rgba(0, 0, 0, 0.6); } .layer-overlay.layer-pattern2::before { background-image: url(../images/pattern2.png); background-color: rgba(0, 0, 0, 0.8); } .layer-overlay.layer-pattern3::before { background-image: url(../images/pattern3.png); background-color: rgba(0, 0, 0, 0.8); } .layer-overlay.maximage-layer-overlay::before { z-index: 1; } .layer-overlay.overlay-blue::before { background-color: rgba(1, 162, 208, 0.9); } .layer-overlay.overlay-blue-light::before { background-color: rgba(1, 162, 208, 0.45); } .layer-overlay.overlay-pink::before { background-color: rgba(235, 110, 142, 0.9); } .layer-overlay.overlay-pink-light::before { background-color: rgba(235, 110, 142, 0.45); } .layer-overlay.overlay-brown::before { background-color: rgba(60, 171, 111, 0.9); } .layer-overlay.overlay-brown-light::before { background-color: rgba(60, 171, 111, 0.45); } .layer-overlay.overlay-yellow::before { background-color: rgba(255, 187, 34, 0.9); } .layer-overlay.overlay-yellow-light::before { background-color: rgba(255, 187, 34, 0.45); } .layer-overlay.overlay-green::before { background-color: rgba(16, 196, 92, 0.9); } .layer-overlay.overlay-green-light::before { background-color: rgba(16, 196, 92, 0.45); } .layer-overlay.overlay-theme-color-1::before { background-color: rgba(173, 216, 230, 0.9); } .layer-overlay.overlay-theme-color-2::before { background-color: rgba(230, 173, 188, 0.9); } .layer-overlay.overlay-theme-color-3::before { background-color: rgba(230, 216, 173, 0.9); } .half-divider .overlay-theme-color-1, .half-divider .overlay-theme-color-2, .half-divider .overlay-theme-color-3 { content: ""; height: 100%; position: absolute; right: 0; top: 0; width: 50%; } /* * Header.less * ----------------------------------------------- */ .header-top { padding: 5px 0; } .header-top .header-widget .styled-icons a i:hover { background: none; } .header-top .header-widget .list-border li { border-right: 1px solid rgba(0, 0, 0, 0.06); padding: 5px 15px; } .header-top .header-widget .list-border li:last-child { border-right: 0; } @media only screen and (max-width: 767px) { .header-top .header-widget .contact-info { margin-bottom: 20px; } .header-top .header-widget .contact-info li { display: block; text-align: center; } } .menuzord-brand img { max-height: 58px; } /* -------- Custom theme style ---------- */ .header-nav .header-nav-wrapper .menuzord { padding: 0; } .header-nav.navbar-transparent.animated-active { background-color: rgba(0, 0, 0, 0.25); } /* * nav.less * ----------------------------------------------- */ /* -------- nav sidebar ---------- */ .nav-sidebar li { background: #f1f1f1; padding-bottom: 0; } .nav-sidebar li a { border-radius: 0; } .nav-pills li a:hover, .nav-pills li.active > a, .nav-pills li.active > a:hover, .nav-pills li.active > a:focus { background: #d3d3d3; color: #777777; } /* -------- Header Nav ---------- */ .header-nav { position: relative; } .header-nav .header-nav-absolute-wrapper { width: 100%; } .header-nav .header-nav-wrapper .menuzord { padding: 0; } /* -------- Menuzord ---------- */ .menuzord-menu > li { padding: 24px 0; } .menuzord-menu ul.dropdown { top: 83px; } .menuzord-menu > li > a { font-size: 13px; color: #333333; } .menuzord .menuzord-menu > li.active > a i, .menuzord .menuzord-menu > li:hover > a i, .menuzord .menuzord-menu ul.dropdown li:hover > a i { color: #fff; } .menuzord-menu ul.dropdown { border: 1px solid #eee; } .menuzord-menu ul.dropdown li { margin: 0; } .menuzord-menu ul.dropdown li a { color: #666666; font-size: 12px; font-weight: 600; padding: 7px 25px 7px 22px; } .menuzord-menu ul.dropdown li .indicator { top: 4px; } /* -------- Megamenu-Row ---------- */ .menuzord-menu > li > .megamenu .megamenu-row li { border: 0 none; clear: both; font-size: 12px; margin: 0; padding: 2px; position: relative; width: 100%; } .menuzord-menu > li > .megamenu .megamenu-row li a { display: block; padding: 8px 10px; -webkit-transition: padding 0.2s linear; -o-transition: padding 0.2s linear; transition: padding 0.2s linear; } .menuzord-menu > li > .megamenu .megamenu-row li.active > a, .menuzord-menu > li > .megamenu .megamenu-row li:hover > a { color: #111; padding-left: 15px; } .menuzord-menu > li > .megamenu .megamenu-row li a i { color: #444; } .menuzord-menu > li > .megamenu .megamenu-row li.active a i, .menuzord-menu > li > .menuzord-menu > li > .megamenu .megamenu-row li:hover a i { color: #fff; } @media only screen and (max-width: 900px) { .menuzord-menu { background: #fff; } } /* -------- Scrolltofixed ---------- */ .header-nav .header-nav-wrapper.scroll-to-fixed-fixed.scroll-to-fixed-fixed { border-bottom: 1px solid #eee; } .header-nav .header-nav-absolute-wrapper.scroll-to-fixed-fixed.scroll-to-fixed-fixed .menuzord { border-right: 1px solid #eee; border-bottom: 1px solid #eee; border-left: 1px solid #eee; } .header .inner-sticky-wrapper { height: 80px; } @media only screen and (min-width: 901px) { .header-nav .header-nav-absolute-wrapper { bottom: -36px; left: 0; margin: 0 auto; position: absolute; right: 0; z-index: 1111; } .header-nav .header-nav-absolute-wrapper.scroll-to-fixed-fixed.scroll-to-fixed-fixed { bottom: auto; } } /* -------- Navbar Fixed ---------- */ .header-nav { -webkit-transition: all 0.4s ease-in-out 0s; -o-transition: all 0.4s ease-in-out 0s; transition: all 0.4s ease-in-out 0s; } .header-nav.navbar-fixed-top { left: 0; position: fixed; right: 0; width: 100%; z-index: 1030; } /* -------- Navbar Sticky Animated ---------- */ .navbar-sticky-animated .header-nav-wrapper .container { -webkit-transition: all 0.4s ease-in-out 0s; -o-transition: all 0.4s ease-in-out 0s; transition: all 0.4s ease-in-out 0s; } /* -------- Header White ---------- */ .header-nav.navbar-white { background-color: rgba(255, 255, 255, 0.95); border: medium none; } .header-nav.navbar-white .menuzord { background: transparent; } /* -------- Header Transparent ---------- */ .header-nav.navbar-transparent .menuzord { background: transparent; } .header-nav.navbar-transparent .header-nav-wrapper { border-bottom: 1px solid #eee; } .header-nav.navbar-transparent.animated-active { background-color: rgba(0, 0, 0, 0.1); } .header-nav.navbar-transparent.animated-active .header-nav-wrapper { border-bottom: none; } .header-nav.navbar-transparent.animated-active .menuzord-menu > li > a { color: #fff; } @media only screen and (max-width: 900px) { .header-nav.navbar-transparent.animated-active .menuzord-menu > li > a { color: #888; } } /* * Topbar.less * ----------------------------------------------- */ #top-search-bar { background: #eee; } #top-search-bar form { position: relative; } #top-search-bar .form-control { background: #eee; border: none; box-shadow: none; font-size: 18px; height: 72px; margin: 0; width: 100%; } #top-search-bar .search-close { background: none repeat scroll 0 0 transparent; border: medium none; color: #999; cursor: pointer; font-size: 14px; height: 40px; line-height: 38px; margin-top: -20px; outline: medium none; overflow: hidden; position: absolute; right: 1px; top: 50%; width: 42px; } #top-search-bar button i { color: #777; } /* * Inner-Header-Title.less * ----------------------------------------------- */ .inner-header .title { font-size: 34px; font-family: 'Titillium Web', sans-serif; } /* * Vertical-Nav.less * ----------------------------------------------- */ .vertical-nav { /* vertical-nav-black*/ } .vertical-nav .header { width: 260px; position: fixed; top: 0; left: 0; height: 100%; background: #fff; z-index: 101; padding: 0; -webkit-transition: none; -o-transition: none; transition: none; background-size: cover !important; } .vertical-nav .main-content, .vertical-nav .footer { margin-left: 260px; } .vertical-nav .container { max-width: 940px; } .vertical-nav .menuzord { background: none; } .vertical-nav .menuzord .menuzord-menu ul.dropdown li:hover > a { background: #eeeeee none repeat scroll 0 0; color: #111111; } .vertical-nav .menuzord-menu li { padding: 5px 0; position: relative; width: 100%; } .vertical-nav .menuzord-menu li .indicator { float: right; } .vertical-nav .menuzord-menu li a { padding-left: 30px; width: 100%; } .vertical-nav .menuzord-menu ul.dropdown, .vertical-nav .menuzord-menu .megamenu { left: 100%; top: 4px; } .vertical-nav .menuzord-brand img { max-height: none; } .vertical-nav .vertical-nav-black { background: #111111; } .vertical-nav .vertical-nav-black .menuzord-menu ul.dropdown { background: #111111; border-color: #222222; } .vertical-nav .vertical-nav-black .menuzord-menu ul.dropdown li a { background: #111111; } .vertical-nav .vertical-nav-black .menuzord-menu ul.dropdown li a .indicator i { color: #fff; } .vertical-nav .vertical-nav-black .menuzord-menu ul.dropdown li:hover > a { background: #111111 none repeat scroll 0 0; color: #fff; } .vertical-nav .vertical-nav-black .menuzord-menu > li > a { color: #808080; } .vertical-nav.vertical-nav-right .header { left: auto; right: 0; } .vertical-nav.vertical-nav-right .main-content, .vertical-nav.vertical-nav-right .footer { padding-left: auto; margin-right: 260px; padding-top: 0; } .vertical-nav.vertical-nav-right .menuzord-menu ul.dropdown, .vertical-nav.vertical-nav-right .menuzord-menu .megamenu { left: auto !important; right: 100% !important; top: 0; } @media only screen and (max-width: 1199px) { .vertical-nav .container { width: 100%; } } @media only screen and (max-width: 900px) { .vertical-nav .header { border: 0; padding: 0; position: relative; width: 100%; } .vertical-nav .vertical-nav-widget { display: none; } .vertical-nav .menuzord { background: #fff; } .vertical-nav .vertical-nav-black .menuzord { background: none; } .vertical-nav .menuzord-brand { margin: 0 !important; padding: 0 !important; } .vertical-nav .menuzord-brand img { max-height: 65px !important; padding: 10px; } .vertical-nav .header-nav-wrapper { background: #111111 none repeat scroll 0 0; position: fixed; top: 0; width: 100%; } .vertical-nav .vertical-nav-black .menuzord .menuzord-menu li > a, .vertical-nav .vertical-nav-black .menuzord .menuzord-menu li .indicator { border-color: #222222; } .vertical-nav .main-content, .vertical-nav .footer { padding-left: 0; } .vertical-nav.vertical-nav-right .main-content, .vertical-nav.vertical-nav-right .footer { margin-right: 0; } } /* * menu-full-page.less * ----------------------------------------------- */ /* menu-full-page plugin code */ .menu-full-page #fullpage-nav { background: rgba(255, 255, 255, 0.97); z-index: -1; position: fixed; /*left: -100%;*/ /*left or right and the width of your navigation panel*/ left: 0 !important; /*left or right and the width of your navigation panel*/ opacity: 0; width: 100%; /*should match the above value*/ -webkit-transition: all 0.5s ease-in-out !important; -moz-transition: all 0.5s ease-in-out !important; -ms-transition: all 0.5s ease-in-out !important; -o-transition: all 0.2s ease-in-out !important; transition: all 0.5s ease-in-out !important; } .menu-full-page #fullpage-nav ul { margin-top: 50px; -webkit-transition: all 0.7s ease-in-out !important; -moz-transition: all 0.7s ease-in-out !important; -ms-transition: all 0.7s ease-in-out !important; -o-transition: all 0.7s ease-in-out !important; transition: all 0.7s ease-in-out !important; } .menu-full-page #fullpage-nav li { text-align: center; transition: all 0.4s ease; padding: 10px 0; position: relative; } .menu-full-page #fullpage-nav li a { color: #111; font-size: 18px; font-family: 'Open Sans', sans-serif; text-decoration: none; font-weight: 400; text-transform: uppercase; padding: 0; position: relative; } .menu-full-page #fullpage-nav li a:hover { color: #888; -webkit-transition: color 2s time; -o-transition: color 2s time; transition: color 2s time; } .menu-full-page #fullpage-nav li:hover:after a { position: absolute; content: ''; color: #FFF; } .menu-full-page #fullpage-nav ul ul { display: none; } .menu-full-page #fullpage-nav ul ul li a { font-size: 13px; } .menu-full-page #fullpage-nav ul ul li a:hover { color: #888; } .menu-full-page .fullpage-nav-toggle.menu-open + #fullpage-nav { opacity: 1; z-index: 998; } .menu-full-page .fullpage-nav-toggle.menu-open + #fullpage-nav > ul { margin-top: 70px; } .menu-full-page .fullpage-nav-toggle { z-index: 999; display: block; position: fixed; top: 0; right: 0; overflow: hidden; margin: 0; padding: 0; width: 70px; height: 70px; font-size: 0; text-indent: -9999px; -webkit-appearance: none; -moz-appearance: none; appearance: none; box-shadow: none; border-radius: none; border: none; cursor: pointer; -webkit-transition: background 0.3s; transition: background 0.3s; background-color: transparent; /* active state, i.e. menu open */ } .menu-full-page .fullpage-nav-toggle i { text-decoration: none; font-size: 40px; color: #fff; } .menu-full-page .fullpage-nav-toggle:focus { outline: none; } .menu-full-page .fullpage-nav-toggle span { display: block; position: absolute; top: 45px; left: 18px; right: 18px; height: 4px; border-radius: 2px; background: #888; -webkit-transition: background 0 0.3s; transition: background 0 0.3s; } .menu-full-page .fullpage-nav-toggle span:before, .menu-full-page .fullpage-nav-toggle span:after { position: absolute; display: block; left: 0; width: 100%; height: 4px; border-radius: 0; background-color: #888; content: ""; -webkit-transition-duration: 0.3s, 0.3s; transition-duration: 0.3s, 0.3s; -webkit-transition-delay: 0.3s, 0; transition-delay: 0.3s, 0; } .menu-full-page .fullpage-nav-toggle span:before { top: -12px; -webkit-transition-property: top, -webkit-transform; transition-property: top, transform; } .menu-full-page .fullpage-nav-toggle span:after { bottom: -12px; -webkit-transition-property: bottom, -webkit-transform; transition-property: bottom, transform; } .menu-full-page .fullpage-nav-toggle.menu-open { background-color: transparent; } .menu-full-page .fullpage-nav-toggle.menu-open span { background: none; } .menu-full-page .fullpage-nav-toggle.menu-open span:before, .menu-full-page .fullpage-nav-toggle.menu-open span:after { background-color: #111; -webkit-transition-delay: 0, 0.3s; transition-delay: 0, 0.3s; } .menu-full-page .fullpage-nav-toggle.menu-open span:before { top: 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .menu-full-page .fullpage-nav-toggle.menu-open span:after { bottom: 0; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); } /* menu-full-page custom code */ .menu-full-page .header #fullpage-nav li { padding: 5px 0; } .menu-full-page .header #fullpage-nav li a { background: none; display: inline; font-size: 18px; text-transform: none; } .menu-full-page .header #fullpage-nav ul ul { margin-top: 0; } .menu-full-page .header #fullpage-nav ul ul li { padding: 3px 0; } .menu-full-page .header #fullpage-nav ul ul li a { font-size: 12px; } .menu-full-page .header #fullpage-nav ul li .dropdown { background: none; box-shadow: none; border: none; float: none; padding: 0; position: relative; max-height: 0; overflow: hidden; -webkit-transition: all 0.9s cubic-bezier(0.55, 0, 0.175, 1) !important; -moz-transition: all 0.9s cubic-bezier(0.55, 0, 0.175, 1) !important; -ms-transition: all 0.9s cubic-bezier(0.55, 0, 0.175, 1) !important; -o-transition: all 0.9s cubic-bezier(0.55, 0, 0.175, 1) !important; transition: all 0.9s cubic-bezier(0.55, 0, 0.175, 1) !important; display: block!important; visibility: visible; } .menu-full-page .header #fullpage-nav ul li:hover .dropdown { max-height: 700px; } /* * Boxed-layout.less * ----------------------------------------------- */ @media only screen and (min-width: 768px) { .boxed-layout .container { max-width: 1170px; padding-left: 30px; padding-right: 30px; } .boxed-layout .header, .boxed-layout .main-content, .boxed-layout .footer, .boxed-layout #footer { margin: 0 auto; max-width: 1170px; } } .boxed-layout .header, .boxed-layout section, .boxed-layout .footer, .boxed-layout #footer { background-color: #fff; } .boxed-layout .header .navbar-default { background-color: #fff; border-color: #fff; padding: 0; } .boxed-layout .header .navbar-default .navbar-nav > li > a { padding: 30px 5px; } .boxed-layout .header .navbar-default .navbar-collapse { background-color: #fff; border-color: #fff; margin-right: 30px; } .boxed-layout .header #header-logo { margin: 0; padding-top: 27px; } @media only screen and (max-width: 991px) { .boxed-layout { padding-top: 0; } .boxed-layout .header .navbar-default .navbar-nav > li > a { padding: 10px; } .boxed-layout .header .navbar-default .navbar-collapse { margin-right: 15px; } .boxed-layout .navbar-header { padding: 15px 0; } .boxed-layout .navbar-collapse .navbar-nav li a .caret { margin-right: 0; } } .boxed-layout.fullwidth .container { max-width: 1170px; padding-left: 30px; padding-right: 30px; } .boxed-layout.fullwidth .header, .boxed-layout.fullwidth .main-content, .boxed-layout.fullwidth .footer { margin: 0 auto; max-width: 1170px; } .boxed-layout.fullwidth .header, .boxed-layout.fullwidth section, .boxed-layout.fullwidth .footer { background-color: #fff; } .boxed-layout.fullwidth .header .navbar-default { background-color: #fff; border-color: #fff; padding: 0; } .boxed-layout.fullwidth .header .navbar-default .navbar-nav > li > a { padding: 30px 5px; } .boxed-layout.fullwidth .header .navbar-default .navbar-collapse { background-color: #fff; border-color: #fff; margin-right: 30px; } .boxed-layout.fullwidth .header #header-logo { margin: 0; padding-top: 27px; } @media only screen and (max-width: 991px) { .boxed-layout.fullwidth { padding-top: 0; } .boxed-layout.fullwidth .header .navbar-default .navbar-nav > li > a { padding: 10px; } .boxed-layout.fullwidth .header .navbar-default .navbar-collapse { margin-right: 15px; } .boxed-layout.fullwidth .navbar-header { padding: 15px 0; } .boxed-layout.fullwidth .navbar-collapse .navbar-nav li a .caret { margin-right: 0; } } .boxed-layout .service-block .thumb .desc { bottom: -34%; } .boxed-layout .service-block:hover .thumb .desc { bottom: 0; } /* * Form.less * ----------------------------------------------- */ /* -------- Form ---------- */ .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn { font-size: 14px; } .form-control { border-radius: 0; box-shadow: none; height: 45px; } label { font-weight: normal; } .form-control:focus, form input[type="text"]:focus, form input[type="email"]:focus, form input[type="number"]:focus, form input[type="url"]:focus, form input[type="search"]:focus, form input[type="tel"]:focus, form input[type="password"]:focus, form input[type="date"]:focus, form input[type="color"]:focus, form select:focus, form textarea:focus { color: #404040; border-color: rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); outline: none; } .form-transparent .form-control { background: transparent; color: #f7f7f7; } .form-transparent .form-control:focus, .form-transparent form input[type="text"]:focus, .form-transparent form input[type="email"]:focus, .form-transparent form input[type="number"]:focus, .form-transparent form input[type="url"]:focus, .form-transparent form input[type="search"]:focus, .form-transparent form input[type="tel"]:focus, .form-transparent form input[type="password"]:focus, .form-transparent form input[type="date"]:focus, .form-transparent form input[type="color"]:focus, .form-transparent form select:focus, .form-transparent form textarea:focus { color: #f7f7f7; } .form-transparent textarea.form-control, .form-white textarea.form-control { height: 150px; } .form-white .form-control { background: #fff; } .form-transparent.form-line .form-control { border: none; border-bottom: 1px solid #c0c0c0; padding-left: 0; } .form-transparent.form-line textarea.form-control { height: 70px; } form label { font-family: 'Titillium Web', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 10px; } /* form error */ form .form-control.error { border: 2px solid #ee163b; } form .error { color: #ee163b; } /* -------- Donation Form ---------- */ .donation-form .form-group label.radio-inline { color: #808080; } /*-------- form-text-white ---------*/ .form-text-white .form-group label { color: #fff; } /*-------- ddslick form ---------*/ .dd-container, .dd-select { width: 100%; } .dd-options { width: 100%; } .ui-widget-content { background: #2aa1c0 none repeat scroll 0 0; border: 1px solid #ddd; border-radius: 0; color: #333; height: 36px; margin-top: 6px; } .ui-widget-header { background: #fff none repeat scroll 0 0; } .ui-state-default { background-color: #eee; border: 1px solid #ccc; color: #202c45; font-weight: normal; } .ui-slider-horizontal .ui-slider-range-max { border-radius: 0; } .ui-state-active { background-color: #fff; border: 1px solid #ddd; } .ui-slider .ui-slider-handle { height: 50px; width: 20px; } .ui-slider-horizontal .ui-slider-handle { margin-left: -1px; } .ui-slider-horizontal .ui-slider-handle { top: -9px; } .control__indicator { height: 24px; width: 24px; } .control--checkbox .control__indicator::after { height: 10px; left: 10px; top: 5px; width: 6px; } .control.control--checkbox, .control.control--radio { display: inline-block; font-size: 16px; font-weight: 500; margin-bottom: 15px; margin-right: 12px; padding-left: 36px; } .control--radio .control__indicator::after { height: 6px; left: 9px; top: 9px; width: 6px; } /* * Side-Push-Panel.less * ----------------------------------------------- */ .side-push-panel { overflow-x: hidden; } .side-push-panel.fullwidth-page #wrapper { right: 0; position: relative; } .side-push-panel.fullwidth-page header .header-nav-wrapper.scroll-to-fixed-fixed .container { right: 0; } .side-push-panel.fullwidth-page.side-panel-left #wrapper { left: 0; right: auto; } .side-push-panel.fullwidth-page.side-panel-left header .header-nav-wrapper.scroll-to-fixed-fixed .container { left: 0; right: auto; } .side-push-panel.fullwidth-page.side-panel-open #wrapper { right: 300px; } .side-push-panel.fullwidth-page.side-panel-open header .header-nav-wrapper.scroll-to-fixed-fixed .container { right: 300px; } .side-push-panel.fullwidth-page.side-panel-left.side-panel-open #wrapper { left: 300px; right: auto; } .side-push-panel.fullwidth-page.side-panel-left.side-panel-open header .header-nav-wrapper.scroll-to-fixed-fixed .container { left: 300px; right: auto; } /* -------- Has Side Panel ---------- */ .side-push-panel.has-side-panel .menuzord .showhide { float: left; } /* -------- Body Overlay ---------- */ .has-side-panel .body-overlay { -webkit-transition: opacity 0.3s ease; -o-transition: opacity 0.3s ease; transition: opacity 0.3s ease; background-color: rgba(0, 0, 0, 0.6); height: 100%; left: 0; opacity: 0; pointer-events: none; position: fixed; top: 0; width: 100%; z-index: -1; } .has-side-panel.side-panel-open .body-overlay { opacity: 1; pointer-events: auto; z-index: 1111; } .side-panel-open:not(.device-xxs):not(.device-xs):not(.device-sm) .body-overlay:hover { cursor: url('../images/close.png') 15 15, default; } /* -------- Side Panel ---------- */ #side-panel { -webkit-backface-visibility: hidden; background-color: #f3f3f3; height: 100%; overflow: hidden; position: fixed; right: -300px; top: 0; width: 300px; z-index: 1112; -webkit-transition: all 0.4s ease; -o-transition: all 0.4s ease; transition: all 0.4s ease; } #side-panel .side-panel-wrap { bottom: 0; height: 100%; left: 0; overflow: auto; padding: 50px 70px 50px 40px; position: absolute; top: 0; width: 330px; } #side-panel .widget { border-top: 1px solid #eeeeee; margin-top: 40px; padding-top: 40px; width: 220px; } #side-panel .widget:first-child { border-top: 0; margin: 0; padding-top: 0; } .side-panel-open #side-panel { right: 0; } .side-panel-left #side-panel { left: -300px; right: auto; } .side-panel-left.side-panel-open #side-panel { left: 0; right: auto; } .device-touch #side-panel .side-panel-wrap { overflow-y: scroll; } /* -------- Side-Panel-Nav ---------- */ #side-panel .side-panel-nav .nav li a { padding: 5px 0; } #side-panel .side-panel-nav .nav li a:hover { background-color: transparent; color: #a9a9a9; } #side-panel .side-panel-nav .nav ul.tree { display: none; margin-left: 15px; } /* -------- Side-Panel-Trigger And Close ---------- */ #side-panel-trigger { cursor: pointer; display: block; float: right; margin-left: 10px; margin-right: 5px; margin-top: 25px; z-index: 11; } @media only screen and (max-width: 767px) { #side-panel-trigger { margin-top: 15px; } } #side-panel-trigger-close { left: 0; margin: 10px; position: absolute; top: 0; } /* -------- Transition ---------- */ .side-push-panel.fullwidth-page #wrapper, .side-push-panel.fullwidth-page header .header-nav-wrapper.scroll-to-fixed-fixed .container { -webkit-transition: all 0.4s ease; -o-transition: all 0.4s ease; transition: all 0.4s ease; } /* * Box-Hover-Effect.less * ----------------------------------------------- */ .box-hover-effect { position: relative; overflow: hidden; margin: 0; width: 100%; } .box-hover-effect img { position: relative; display: block; max-height: 100%; max-width: 100%; opacity: 1; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect .overlay::before, .box-hover-effect .overlay::after { pointer-events: none; } .box-hover-effect .overlay .details { -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect .overlay .title { -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect .overlay .para { -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect .overlay .entry-meta { bottom: 10px; font-size: 70%; opacity: 0; position: absolute; width: 89%; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect .overlay .entry-meta.top { top: 10px; } .box-hover-effect .overlay .entry-meta i { color: #fff; } .box-hover-effect .overlay .icons { left: 0; opacity: 0; position: absolute; text-align: center; top: 40%; width: 100%; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect:hover .overlay { background: rgba(0, 0, 0, 0.85); } .box-hover-effect:hover .overlay.white { background: rgba(255, 255, 255, 0.75); } .box-hover-effect:hover .overlay.black { background: rgba(0, 0, 0, 0.85); } .box-hover-effect:hover .overlay .entry-meta { opacity: 1; } .box-hover-effect:hover .overlay .icons { opacity: 1; } .box-hover-effect:hover .overlay .icons i { color: #fff; } .box-hover-effect:hover .overlay .icons.twin i { padding: 10px; } .box-hover-effect:hover .overlay .icons.bordered i { border: 1px solid #fff; } .box-hover-effect:hover .overlay .icons.bordered i.text-black { border-color: #000; } .shadow-overlay { background-image: url("../images/shadow-overlay.png"); background-position: center bottom; background-repeat: repeat-x; bottom: 0; color: #fff; height: 100%; left: 0; position: absolute; width: 100%; } /* Individual effects */ /* -------- effect1 ---------- */ .box-hover-effect.effect1 .thumb { position: relative; overflow: hidden; } .box-hover-effect.effect1 .thumb:before { background-color: rgba(255, 255, 255, 0.5); left: 0; content: ""; height: 100%; opacity: 0; position: absolute; top: 0; transition: all 0.3s ease-out 0s; -webkit-transition: all 0.3s ease-in-out 0s; -ms-transition: all 0.3s ease-in-out 0s; -webkit-transform: rotate(-70deg); -moz-transform: rotate(-70deg); -ms-transform: rotate(-70deg); -o-transform: rotate(-70deg); transform: rotate(-70deg); width: 200%; z-index: 1; } .box-hover-effect.effect1:hover .thumb:before { opacity: 1; } .box-hover-effect.effect1:hover .thumb img { -webkit-transform: scale(1.1); transform: scale(1.1); -webkit-transition: all 0.5s ease; transition: all 0.5s ease; } /* -------- effect2 ---------- */ .box-hover-effect.effect2 .thumb { position: relative; overflow: hidden; } .box-hover-effect.effect2 .overlay .overlay-details { opacity: 0; -webkit-transform: scale(0.8, 0.8); -ms-transform: scale(0.8, 0.8); -o-transform: scale(0.8, 0.8); transform: scale(0.8, 0.8); -webkit-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .box-hover-effect.effect2:hover .overlay-details { opacity: 1; -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); -o-transform: scale(1, 1); transform: scale(1, 1); } .box-hover-effect.effect2:hover .details { opacity: 0; } .box-hover-effect.effect2:hover img { -webkit-transform: scale(2); -ms-transform: scale(2); -o-transform: scale(2); transform: scale(2); -webkit-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } /* -------- effect3 ---------- */ .box-hover-effect.effect3 .overlay { position: relative; } .box-hover-effect.effect3 .thumb { position: relative; } .box-hover-effect.effect3 .thumb:after { background-color: rgba(255, 255, 255, 0.15); bottom: 0; content: ""; height: 0; position: absolute; right: 0; -webkit-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; width: 0; } .box-hover-effect.effect3 .thumb:before { background-color: rgba(255, 255, 255, 0.15); left: 0; content: ""; height: 0; position: absolute; top: 0; -webkit-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; width: 0; z-index: 1; } .box-hover-effect.effect3:hover .thumb:before, .box-hover-effect.effect3:hover .thumb:after { height: 100%; width: 100%; -webkit-transition: all 0.4s ease-out 0s; -o-transition: all 0.4s ease-out 0s; transition: all 0.4s ease-out 0s; } /* -------- Custom Theme Style ---------- */ .box-hover-effect.effect2 .overlay.white .overlay-details p { color: #777777; } /* * Work-Gallery.less * ----------------------------------------------- */ .work-gallery { margin: 0 auto 30px; max-width: 400px; } .work-gallery .gallery-thumb { overflow: hidden; position: relative; } .work-gallery .gallery-bottom-part { background-color: #f7f7f7; padding: 10px 10px 16px; } .work-gallery .gallery-thumb .gallery-overlay { height: 100%; opacity: 0; position: absolute; top: 0; -webkit-transform: scale(0.2); -ms-transform: scale(0.2); -o-transform: scale(0.2); transform: scale(0.2); -webkit-transition: all 300ms ease-in-out 0s; -o-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s; width: 100%; } .work-gallery:hover .gallery-thumb .gallery-overlay { opacity: 1; -webkit-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); } .gallery-contect { height: 100%; opacity: 0; padding: 30px; position: absolute; top: 0; -webkit-transform: scale(0.2); -ms-transform: scale(0.2); -o-transform: scale(0.2); transform: scale(0.2); -webkit-transition: all 100ms ease-in-out 0s; -o-transition: all 100ms ease-in-out 0s; transition: all 100ms ease-in-out 0s; width: 100%; } .work-gallery:hover .gallery-thumb .gallery-contect { opacity: 1; -webkit-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); } .work-gallery .gallery-thumb .styled-icons a { border-color: #fff; height: 36px; width: 36px; line-height: 34px; } .work-gallery .gallery-thumb .styled-icons a i { color: #fff; } .work-gallery .gallery-thumb .styled-icons a:hover i { color: #fff; } .work-gallery .gallery-thumb .styled-icons a:hover { color: #fff; -webkit-transition: all 100ms ease-in-out 0s; -o-transition: all 100ms ease-in-out 0s; transition: all 100ms ease-in-out 0s; } .work-gallery .gallery-thumb .gallery-contect .styled-icons { left: 0; position: absolute; right: 0; text-align: center; top: 45%; } .work-gallery:hover .gallery-bottom-part { -webkit-transition: all 300ms ease-in-out 0s; -o-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s; } .work-gallery:hover .gallery-bottom-part .title { color: #fff; } .work-gallery:hover .gallery-bottom-part .sub-title { color: #fff; } /* * gallery-isotope.less * ----------------------------------------------- */ /* -------- Portfolio Isotop Filter ---------- */ .portfolio-filter { margin-bottom: 30px; } .portfolio-filter a { border-left: 3px solid transparent; background-color: #f8f8f8; display: inline-block; float: none; font-size: 16px; font-weight: 400; line-height: normal; margin-right: 5px; outline: medium none; padding: 5px 15px; -webkit-transition: all 100ms ease-in-out 0s; -o-transition: all 100ms ease-in-out 0s; transition: all 100ms ease-in-out 0s; } .portfolio-filter a.active, .portfolio-filter a:hover { color: #fff !important; } /* -------- Portfolio Isotop Gallery ---------- */ .gallery-isotope { /*gutter*/ /* by default 4 grids */ /*portfolio 2 grids*/ /*portfolio 2 grids*/ /*portfolio 3 grids*/ /*portfolio 4 grids*/ /*portfolio 5 grids*/ /*portfolio 6 grids*/ /*portfolio 7 grids*/ /*portfolio 8 grids*/ /*portfolio 9 grids*/ /*portfolio 10 grids*/ } .gallery-isotope.gutter .gallery-item { padding-right: 5px; padding-bottom: 5px; } .gallery-isotope.gutter-small .gallery-item { padding-right: 2px; padding-bottom: 2px; } .gallery-isotope.gutter-30 .gallery-item { padding-right: 30px; padding-bottom: 30px; } .gallery-isotope.gutter-40 .gallery-item { padding-right: 40px; padding-bottom: 40px; } .gallery-isotope.gutter-50 .gallery-item { padding-right: 50px; padding-bottom: 50px; } .gallery-isotope.gutter-60 .gallery-item { padding-right: 60px; padding-bottom: 60px; } .gallery-isotope .gallery-item { width: 25%; } .gallery-isotope .gallery-item.wide { width: 50%; } .gallery-isotope.grid-1 .gallery-item { width: 100%; } .gallery-isotope.grid-1 .gallery-item.wide { width: 100%; } .gallery-isotope.grid-2 .gallery-item { width: 50%; } .gallery-isotope.grid-2 .gallery-item.wide { width: 100%; } .gallery-isotope.grid-3 .gallery-item { width: 33.333%; } .gallery-isotope.grid-3 .gallery-item.wide { width: 66.6667%; } .gallery-isotope.grid-4 .gallery-item { width: 25%; } .gallery-isotope.grid-4 .gallery-item.wide { width: 50%; } .gallery-isotope.grid-5 .gallery-item { width: 20%; } .gallery-isotope.grid-5 .gallery-item.wide { width: 40%; } .gallery-isotope.grid-6 .gallery-item { width: 16.666666667%; } .gallery-isotope.grid-6 .gallery-item.wide { width: 33.333%; } .gallery-isotope.grid-7 .gallery-item { width: 14.2857143%; } .gallery-isotope.grid-7 .gallery-item.wide { width: 28.5714286%; } .gallery-isotope.grid-8 .gallery-item { width: 12.5%; } .gallery-isotope.grid-8 .gallery-item.wide { width: 25%; } .gallery-isotope.grid-9 .gallery-item { width: 11.11%; } .gallery-isotope.grid-9 .gallery-item.wide { width: 22.22%; } .gallery-isotope.grid-10 .gallery-item { width: 10%; } .gallery-isotope.grid-10 .gallery-item.wide { width: 20%; } /* -------- Portfolio Isotop Item Media Query ---------- */ @media only screen and (max-width: 991px) { .gallery-isotope .gallery-item { width: 33.333% !important; } .gallery-isotope .gallery-item.wide { width: 66.6667% !important; } } @media only screen and (max-width: 767px) { .gallery-isotope .gallery-item { width: 50% !important; } .gallery-isotope .gallery-item.wide { width: 100% !important; } } @media only screen and (max-width: 479px) { .gallery-isotope .gallery-item { width: 100% !important; } .gallery-isotope .gallery-item.wide { width: 100% !important; } } /* -------- Portfolio Isotop Overlay Effect ---------- */ .gallery-isotope .gallery-item { overflow: hidden; } .gallery-isotope .gallery-item .thumb { position: relative; overflow: hidden; } .gallery-isotope .gallery-item .hover-link { position: absolute; top: 0; left: 0; display: inline-block; vertical-align: middle; width: 100%; height: 100%; background: none!important; color: transparent!important; z-index: 11; } .gallery-isotope .gallery-item .overlay-shade { position: absolute; display: inline-block; vertical-align: middle; top: 0; left: 0; width: 100%; height: 100%; z-index: 12; background-color: #333; opacity: 0; filter: alpha(opacity=0); -webkit-transition: opacity 0.3s ease-in-out; -o-transition: opacity 0.3s ease-in-out; transition: opacity 0.3s ease-in-out; } .gallery-isotope .gallery-item:hover .overlay-shade { opacity: 0.9; filter: alpha(opacity=90); } .gallery-isotope .gallery-item .icons-holder { position: absolute; top: 0%; left: 50%; display: inline-block; width: auto; height: 36px; vertical-align: middle; z-index: 13; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .gallery-isotope .gallery-item .icons-holder .icons-holder-inner { position: relative; display: inline-block; vertical-align: middle; margin: -18px 0 0 -50%; } .gallery-isotope .gallery-item .icons-holder .icons-holder-inner a { opacity: 0; filter: alpha(opacity=0); -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .gallery-isotope .gallery-item:hover .icons-holder { top: 50%; } .gallery-isotope .gallery-item:hover .icons-holder .icons-holder-inner a { opacity: 1; filter: alpha(opacity=1); } .gallery-isotope .gallery-item .portfolio-description { padding: 10px 15px; background-color: #f8f8f8; } .gallery-isotope .gallery-item .portfolio-description .title { margin: 0; } .gallery-isotope .gallery-item .portfolio-description .title a { color: #333333; } .gallery-isotope .gallery-item .text-holder { box-sizing: border-box; display: block; height: 100%; left: 0; opacity: 0; overflow: hidden; padding: 25px 30px 60px; position: absolute; top: 0; -webkit-transition: opacity 0.3s ease-in-out 0s; -o-transition: opacity 0.3s ease-in-out 0s; transition: opacity 0.3s ease-in-out 0s; width: 100%; z-index: 13; } .gallery-isotope .gallery-item .text-holder .title { color: #fff; } .gallery-isotope .gallery-item:hover .text-holder { opacity: 1; } .gallery-isotope .flex-control-nav { z-index: 111; } /* * Slider.less * ----------------------------------------------- */ /* -------- Rev Slider ---------- */ #home .revslider-fullscreen { min-height: auto; } /* -------- Home Revolution Slider For Minimal Layouts ---------- */ .minimal-revslider-wrapper { left: 0!important; width: 100%!important; } .minimal-revslider-wrapper .tp-leftarrow { left: 0!important; } .minimal-revslider-wrapper .tp-rightarrow { right: 0!important; } /* -------- Tab-Slider ---------- */ .tab-slider .tab-content { padding: 0; border: 0; } .tab-slider .nav.nav-pills > div { background-color: #fff; float: left; margin-bottom: 15px; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; } .tab-slider .nav.nav-pills i { color: #d3d3d3; } .tab-slider .nav.nav-pills a { display: block; padding: 40px 30px; background: #f3f3f3; } .tab-slider .nav.nav-pills a:hover i, .tab-slider .nav.nav-pills a:hover h6, .tab-slider .nav.nav-pills a.active i, .tab-slider .nav.nav-pills a.active h6 { color: #fff; } /* -------- MaxImage Slider ---------- */ .maximage-slider .fullscreen-controls .img-prev, .maximage-slider .fullscreen-controls .img-next { background: rgba(0, 0, 0, 0.3); } /* -------- Testimonial-Carousel ---------- */ .testimonial-carousel, .testimonial-carousel-style2 { /* fullwidth */ } .testimonial-carousel .quote, .testimonial-carousel-style2 .quote, .testimonial-carousel .thumb, .testimonial-carousel-style2 .thumb { margin-bottom: 40px; } .testimonial-carousel .quote i, .testimonial-carousel-style2 .quote i { background: #555555; border-radius: 50%; color: #fff; font-size: 25px; height: 60px; line-height: 1; padding: 20px 0 0; text-align: center; width: 60px; } .testimonial-carousel .author, .testimonial-carousel-style2 .author { margin-top: 30px; text-transform: uppercase; } .testimonial-carousel.owl-theme .owl-controls, .testimonial-carousel-style2.owl-theme .owl-controls { margin-top: 10px; } .testimonial-carousel.fullwidth .content p, .testimonial-carousel-style2.fullwidth .content p { font-size: 15px; font-style: italic; color: #fff; } .testimonial-carousel.fullwidth .content p::after, .testimonial-carousel-style2.fullwidth .content p::after { content: "\f10e"; font-family: fontawesome; font-size: 100px; left: 42%; opacity: 0.1; position: absolute; } .testimonial-carousel.bullet-white .owl-dots span, .testimonial-carousel-style2.bullet-white .owl-dots span { background: #fff !important; } .testimonial-carousel .owl-item img, .testimonial-carousel-style2 .owl-item img { display: inline-block; width: auto; max-width: 90px; } .testimonial-carousel.boxed .quote, .testimonial-carousel-style2.boxed .quote, .testimonial-carousel.boxed .thumb, .testimonial-carousel-style2.boxed .thumb { margin-bottom: 20px; } .testimonial-carousel.boxed .owl-item img, .testimonial-carousel-style2.boxed .owl-item img { display: inline-block; width: auto; max-width: 65px; } .testimonial-carousel.boxed .content::after, .testimonial-carousel-style2.boxed .content::after { bottom: 12px; content: "\f10e"; font-family: fontawesome; font-size: 55px; opacity: 0.2; position: absolute; right: 10px; } .testimonial-carousel.boxed .owl-controls, .testimonial-carousel-style2.boxed .owl-controls { margin-top: 0; } .testimonial-carousel.boxed.owl-theme .owl-dots .owl-dot.active span, .testimonial-carousel-style2.boxed.owl-theme .owl-dots .owl-dot.active span, .testimonial-carousel.boxed.owl-theme .owl-dots .owl-dot:hover span, .testimonial-carousel-style2.boxed.owl-theme .owl-dots .owl-dot:hover span { opacity: 1; } /* -------- Widget-Testimonial-Carousel ---------- */ .widget-testimonial-carousel .item img { max-width: 75px; float: right; } /* -------- Owl Carousel ---------- */ .owl-controls { margin: 0; } .owl-controls .owl-nav > div { background: none repeat scroll 0 0 rgba(240, 240, 240, 0.8); border-radius: 0; display: block; margin: 0; padding: 10px; position: absolute; top: 45%; -webkit-transition: all .4s ease 0s; -moz-transition: all .4s ease 0s; -ms-transition: all .4s ease 0s; -o-transition: all .4s ease 0s; transition: all 0.4s ease 0s; z-index: 6; } .owl-controls .owl-next { right: 0px; } .owl-controls .owl-next i { color: #888; font-size: 20px; } .owl-controls .owl-prev i { color: #888; font-size: 20px; } .owl-carousel .owl-item .testimonial-wrapper img { display: inline-block; width: 75px; } /* owl dots */ .owl-theme .owl-dots { text-align: center; margin-top: 10px; } .owl-theme .owl-dots .owl-dot { display: inline-block; zoom: 1; } .owl-theme .owl-dots .owl-dot span { background: #fff; border: 2px solid #eeeeee; border-radius: 50%; display: block; height: 12px; margin: 5px 3px; opacity: 0.8; -webkit-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; width: 12px; } /* Image Carousel */ .image-carousel .owl-controls .owl-nav > div { opacity: 0; } .image-carousel:hover .owl-controls .owl-nav > div { opacity: 1; } /* Owl top nav style */ .owl-carousel.owl-nav-top.bullet-white .owl-dots span { background: #fff; } .owl-carousel.owl-nav-top .owl-controls .owl-nav > div { background-color: transparent; top: -60px; right: 0; } .owl-carousel.owl-nav-top .owl-controls .owl-nav > div:hover { background-color: #d3d3d3; } .owl-carousel.owl-nav-top .owl-controls .owl-nav .owl-prev { right: 35px; } .owl-carousel.owl-nav-top .owl-controls .owl-nav .owl-next { right: 0; } .owl-carousel.owl-nav-top .owl-controls .owl-nav .owl-prev, .owl-carousel.owl-nav-top .owl-controls .owl-nav .owl-next { background: #eeeeee; border: none; line-height: 28px; padding: 0 12px; text-align: center; } .owl-carousel.owl-nav-top .owl-controls .owl-nav .owl-prev i, .owl-carousel.owl-nav-top .owl-controls .owl-nav .owl-next i { color: #888; font-size: 14px; } .owl-carousel.no-bullet .owl-nav { display: none; } .recent-project .owl-controls .owl-nav > div { top: 38%; } .recent-project .owl-controls .owl-nav .owl-prev i, .recent-project .owl-controls .owl-nav .owl-next i { padding: 2px 16px; } .featured-gallery.style2 { float: right; width: 92%; } .featured-gallery.style2 .owl-controls { bottom: 58px; left: -80px; margin: 0; position: absolute; } .featured-gallery.style2 .owl-controls .owl-nav > div { top: 95%; } .featured-gallery.style2 .owl-controls .owl-nav .owl-prev { left: 0px; } .featured-gallery.style2 .owl-controls .owl-nav .owl-next { display: inline-table; left: 40px; } .featured-gallery.style2 .owl-controls .owl-nav .owl-prev i, .featured-gallery.style2 .owl-controls .owl-nav .owl-next i { color: #fff; font-size: 35px; } @media only screen and (max-width: 991px) { .featured-gallery.style2 { float: none; margin-top: 58px; width: 100%; } .featured-gallery.style2 .owl-controls { bottom: auto; left: auto; top: -45px; } } .image-carousel .owl-controls .owl-nav > div { opacity: 0; } .image-carousel:hover .owl-controls .owl-nav > div { opacity: 1; } /* -------- Owl Fullwidth Carousel ---------- */ .fullwidth-carousel .owl-controls .owl-nav > div { top: 45%; } .fullwidth-carousel .carousel-item { min-height: 615px; width: 100%; } .fullwidth-carousel.blog-fullwidth-carousel .carousel-item { height: 600px; min-height: auto; width: 100%; } .fullwidth-carousel.blog-fullwidth-carousel .owl-controls .owl-nav > div { background: none; } /* -------- Twitter Feed Carousel ---------- */ .owl-dots-bottom-right .owl-dots { bottom: -10px; position: absolute; right: 0; } /* -------- Twitter Feed Carousel ---------- */ .twitter-feed.twitter-carousel { color: #111111; font-size: 16px; } .twitter-feed.twitter-carousel a { color: #111111; } .twitter-feed .date { font-size: 12px; } .twitter-feed.twitter-white, .twitter-feed.twitter-white a { color: #fff; } /* -------- BX Slider ---------- */ .bx-wrapper { margin: 0 auto 7px; padding: 0; position: relative; } .bx-wrapper .bx-viewport { background: inherit; border: 0 solid #fff; box-shadow: 0 0 0 #ccc; left: 0; transform: translateZ(0px); } /* bx top nav style */ .bx-controls .bx-controls-direction > a { background: #eee none repeat scroll 0 0; border: medium none; height: auto; line-height: 26px; padding: 0 12px; text-indent: 0; top: -38px; width: auto; z-index: 0; } .bx-controls .bx-controls-direction > a:hover { background: #ddd; } .bx-controls .bx-controls-direction > a i { color: #888; } .bx-controls .bx-controls-direction .bx-prev { right: 35px; left: auto; } .bx-controls .bx-controls-direction .bx-next { right: 0; } /* -------- Typed Animation Slider ---------- */ .typed-cursor { opacity: 1; -webkit-animation: blink 0.7s infinite; -moz-animation: blink 0.7s infinite; animation: blink 0.7s infinite; } @keyframes blink { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } } @-webkit-keyframes blink { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } } @-moz-keyframes blink { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } } /* * Home.less * ----------------------------------------------- */ /* -------- Setion-Bottom-Absolute-Div ---------- */ .setion-bottom-absolute-div { background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0; bottom: 0; left: 0; position: absolute; right: 0; } /* * About.less * ----------------------------------------------- */ /* -------- Bg Img Box ---------- */ .bg-img-box { position: relative; } .bg-img-box .caption { padding-left: 30px; padding-right: 30px; padding-top: 20px; position: absolute; top: 0; } .bg-img-box .caption .title { font-size: 30px; line-height: 39px; } .bg-img-box .caption p { max-width: 280px; } /* * Contact.less * ----------------------------------------------- */ .contact-wrapper { padding: 50px 50px 50px 100px; } .contact-form .form-group { margin-bottom: 20px; } .contact-form .form-control { background-image: none; border: 1px solid #c0c0c0; border-radius: 0; box-shadow: none; height: 48px; } .contact-form .form-control:focus, .contact-form .form-control:active { box-shadow: none; color: #333333; } .contact-form .form-control2 { background-color: rgba(0, 0, 0, 0.8); color: #c0c0c0; } .contact-form .form-group button { margin-top: 0; } .contact-form textarea.form-control { height: 110px; resize: none; } textarea { resize: none; } /* * Services.less * ----------------------------------------------- */ .service-block { margin: 0 auto 30px; max-width: 400px; } .service-block:hover .thumb .desc { bottom: 0; } .service-block .thumb { overflow: hidden; position: relative; } .service-block .thumb .price { left: -1px; padding: 5px 10px; position: absolute; top: -1px; } .service-block .thumb .desc { bottom: -31%; padding: 10px 6px 5px 20px; position: absolute; -webkit-transition: all 400ms ease-in-out 0s; -o-transition: all 400ms ease-in-out 0s; transition: all 400ms ease-in-out 0s; width: 100%; } .service-block .thumb .desc p { color: #fff; font-size: 13px; } .service-block .content { border: 1px solid #eeeeee; padding: 12px 20px 20px; } /* * shop.less * ----------------------------------------------- */ /* -------- Product Details Page ---------- */ .product { margin-left: auto; margin-right: auto; margin-bottom: 30px; padding-bottom: 15px; position: relative; overflow: hidden; } .products .product { border: 3px solid #eeeeee; max-width: 400px; } .products .product:hover { border: 3px solid #eeeeee; } .products .product .product-details .product-title { font-size: 15px; margin-top: 20px; text-transform: uppercase; } .btn-add-to-cart-wrapper, .btn-product-view-details { opacity: 0; height: auto; margin: 0 0 15px; -webkit-transition: 400ms; -o-transition: 400ms; transition: 400ms; position: absolute; bottom: 0; left: -60px; } .product:hover .btn-add-to-cart-wrapper, .product:hover .btn-product-view-details { left: 0; opacity: 1; } .btn-product-view-details { left: auto; bottom: 0; right: -60px; } .product:hover .btn-product-view-details { left: auto; opacity: 1; right: 0; } /* -------- Price ---------- */ .product .price { margin-top: 5px; } .product .price .amount { font-size: 18px; font-weight: 600; } .product .price del .amount { color: #999999; font-size: 14px; font-weight: 500; } .product .price ins { margin-left: 10px; text-decoration: none; } /* -------- Product-Summary ---------- */ .product .product-summary .product-title { margin-top: 0; } .product .product-summary .short-description { margin-bottom: 15px; } .product .product-summary .cart-form-wrapper .btn { margin-top: 0; } .product .product-summary .variations { width: 100%; } .product .product-tab { margin-top: 30px; } .product .commentlist .comment { margin-top: 30px; position: relative; } .product .commentlist .comment .meta { font-size: 12px; } .product .commentlist .comment .author { font-size: 14px; font-weight: bold; } .product .product-thumb { position: relative; } .product .product-thumb:hover .overlay { opacity: 1; } .product .product-thumb .overlay .add-to-wishlist { color: #fff; right: 10px; top: 10px; position: absolute; } .product .product-summary .cart-form-wrapper .quantity, .tbl-shopping-cart .quantity { display: inline-block; margin-right: .8571em; position: relative; width: 4.1429em; vertical-align: top; } .product .product-summary .cart-form-wrapper .quantity .minus, .tbl-shopping-cart .quantity .minus, .product .product-summary .cart-form-wrapper .quantity .plus, .tbl-shopping-cart .quantity .plus { background: none repeat scroll 0 0 transparent; border: 1px solid #ccc; border-radius: 3px; font-family: 'Open Sans', sans-serif; height: 18px; left: 2.8571em; line-height: 1; outline: medium none; padding: 0; position: absolute; width: 18px; } .product .product-summary .cart-form-wrapper .quantity .minus, .tbl-shopping-cart .quantity .minus { bottom: 0; } .product .product-summary .cart-form-wrapper .quantity .plus, .tbl-shopping-cart .quantity .plus { top: 0; } .product .product-summary .cart-form-wrapper .quantity .qty, .tbl-shopping-cart .quantity .qty { -moz-appearance: textfield; border: 1px solid #ccc; height: 41px; padding-left: 0; padding-right: 0; text-align: center; width: 40px; } /* -------- Star-Rating ---------- */ .star-rating { font-size: 14px; height: 16px; width: 75px; line-height: 1; margin: 0 auto; overflow: hidden; position: relative; top: 0px; } .star-rating::before, .star-rating span::before { color: #c0c0c0; content: "\f005\f005\f005\f005\f005"; float: left; font-family: fontawesome; left: 0; letter-spacing: 2px; position: absolute; top: 0; } .star-rating span { float: left; left: 0; overflow: hidden; padding-top: 1.5em; position: absolute; top: 0; } .star-rating span::before { color: #ffc300 !important; } /* -------- Tag Sale ---------- */ .product .tag-sale { margin: 0; top: 0; display: block; left: auto; right: 0; -webkit-transition: 400ms; -o-transition: 400ms; transition: 400ms; color: #fff; font-size: 13px; font-weight: 600; line-height: 18px; padding: 4px 10px 4px 16px; position: absolute; text-align: right; text-transform: uppercase; z-index: 9; } .product .tag-sale .tag-sale::before { border-color: transparent transparent transparent #dcdcdc; border-style: solid; border-width: 12px 13px 13px 8px; content: ""; height: 0; left: 0; pointer-events: none; position: absolute; top: 1px; width: 0; } /* -------- Cart Page ---------- */ .tbl-shopping-cart .product-thumbnail img { max-width: 72px; max-height: 72px; } .tbl-shopping-cart .product-remove { text-align: center; } .tbl-shopping-cart .variation .variation-size, .tbl-shopping-cart .variation .variation-size span { font-size: 12px; } .tbl-shopping-cart tr th, .tbl-shopping-cart tr td, .tbl-shopping-cart .coupon label, .tbl-shopping-cart .coupon input, .tbl-shopping-cart .coupon button { vertical-align: middle!important; } .tbl-shopping-cart tr td { padding: 10px 12px!important; } table.no-border td { border: medium none !important; } /* -------- Checkout Page ---------- */ .payment-method .radio { border: 1px solid #eee; padding: 10px; } .payment-method .radio > label { color: #111; font-size: 17px; } .payment-method .radio input { margin-top: 8px; vertical-align: initial; } .payment-method .radio > p { margin-left: 20px; } #checkout-shipping-address { display: none; } /* -------- Top Nav Search And Cart ---------- */ .top-nav-search-box .indicator, .top-nav-cart-box .indicator { display: none; } .has-dropdown + .dropdown { display: none; background-color: #fff; border: 1px solid #eee; box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.15); left: auto; position: absolute; right: -1px; top: 100%; z-index: 1000; padding: 5px; width: 300px; font-size: 12px; -webkit-transition: opacity 0.3s ease-in-out; -moz-transition: opacity 0.3s ease-in-out; -o-transition: opacity 0.3s ease-in-out; -ms-transition: opacity 0.3s ease-in-out; } .top-dropdown-outer { position: relative; } .top-dropdown-outer:hover .has-dropdown + .dropdown { display: block; } .dropdown-cart { padding: 10px; } .dropdown-cart .cart-table-list, .dropdown-cart .cart-table-list i { color: #222222; border: none; } .dropdown-cart .cart-table-list a { line-height: normal; color: #222222; } .dropdown-cart .cart-table-list td img { width: 50px; height: auto; } .dropdown-cart .cart-table-list.table > tbody > tr > td { border: none; line-height: 20px; height: 20px; vertical-align: middle; padding: 3px; } .dropdown-cart .total-cart { display: inline-block; width: 100%; padding-top: 20px; color: #222; text-align: right; } .dropdown-cart .total-cart ul { float: right; list-style: none; padding: 0; width: 100%; } .dropdown-cart .total-cart ul li { display: block; overflow: hidden; } .dropdown-cart .total-cart ul li span { width: 100px; display: inline-block; text-align: right; white-space: nowrap; } .dropdown-cart .total-cart .table > tbody > tr > td, .dropdown-cart .total-cart .table > tbody > tr > th, .dropdown-cart .total-cart .table > tfoot > tr > td, .dropdown-cart .total-cart .table > tfoot > tr > th, .dropdown-cart .total-cart .table > thead > tr > td, .dropdown-cart .total-cart .table > thead > tr > th { border: 0; } .dropdown-cart .cart-btn .btn { width: auto; float: none; padding: 5px 15px; } .top-shop-cart { margin-top: 8px; position: relative; } .top-shop-cart .cart-number { background: #fff none repeat scroll 0 0; border-radius: 30px; padding: 0 8px 0 3px; } /* * blog.less * ----------------------------------------------- */ .post { position: relative; } .post .entry-title { margin-top: 0; } .post .entry-content { position: relative; background: #f8f8f8; padding: 15px; } .post .entry-date { font-size: 13px; } .post .entry-meta.meta-absolute { height: 100%; position: absolute; top: 0; } .post .entry-meta.meta-absolute i { display: block; font-size: 28px; } .post .entry-meta.meta-absolute span a { color: #454545; font-size: 12px; font-style: italic; letter-spacing: 2px; margin-right: 5px; } .post.media-post .post-thumb { float: left; margin: 0 10px 10px 0; } .post .post-thumb { -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } /* -------- Entry-Meta Absolute ---------- */ .post .entry-header { position: relative; } .post .entry-header .entry-date { bottom: -25px; position: absolute; right: 10px; z-index: 2; } .post .entry-meta.meta-absolute { height: 100%; position: absolute; left: 0; bottom: 0; } .post .entry-meta.meta-absolute i { display: block; font-size: 28px; } /* * Blog Style 2 * ----------------------------------------------- */ .post.style2, .post.style3 { position: relative; overflow: hidden; } .post.style2 .entry-content, .post.style3 .entry-content { background-color: rgba(0, 0, 0, 0.8); bottom: -30px; left: 0; padding: 30px; position: absolute; right: 0; -webkit-transition: all 0.3s ease-in-out 0s; -o-transition: all 0.3s ease-in-out 0s; transition: all 0.3s ease-in-out 0s; } .post.style2 .entry-content .entry-date, .post.style3 .entry-content .entry-date { font-size: 11px; margin-bottom: 10px; } .post.style2:hover .entry-content, .post.style3:hover .entry-content { bottom: 0; } .post.style2:hover .post-thumb, .post.style3:hover .post-thumb { -webkit-transform: scale(1) !important; -ms-transform: scale(1) !important; -o-transform: scale(1) !important; transform: scale(1) !important; } .blog-pull-right { float: right; } @media only screen and (max-width: 767px) { .blog-pull-right { float: none; } } .featured-blog { overflow: hidden; position: relative; } .featured-blog-details { bottom: -18%; padding: 30px; position: absolute; transition: all 400ms ease-in-out 0s; width: 100%; } .featured-blog:hover .featured-blog-details { bottom: 0; } /* * our-services-gallery * ----------------------------------------------- */ .our-services-gallery .gallery-item { position: relative; overflow: hidden; } .our-services-gallery .gallery-item .thumb { position: relative; overflow: hidden; } .our-services-gallery .gallery-item .overlay-shade { position: absolute; display: inline-block; vertical-align: middle; top: 0; left: 0; width: 100%; height: 100%; z-index: 12; background-color: #333; opacity: 0; filter: alpha(opacity=0); -webkit-transition: opacity 0.3s ease-in-out; -o-transition: opacity 0.3s ease-in-out; transition: opacity 0.3s ease-in-out; } .our-services-gallery .gallery-item:hover .overlay-shade { opacity: 0.9; filter: alpha(opacity=90); } .our-services-gallery .gallery-item .icons-holder { position: absolute; top: 0%; left: 50%; display: inline-block; width: auto; height: 36px; vertical-align: middle; z-index: 13; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .our-services-gallery .gallery-item .icons-holder .icons-holder-inner { position: relative; display: inline-block; vertical-align: middle; margin: -18px 0 0 -50%; } .our-services-gallery .gallery-item .icons-holder .icons-holder-inner a { opacity: 0; filter: alpha(opacity=0); -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .our-services-gallery .gallery-item:hover .icons-holder { top: 50%; } .our-services-gallery .gallery-item:hover .icons-holder .icons-holder-inner a { opacity: 1; filter: alpha(opacity=1); } .our-services-gallery .gallery-item .our-services-details { position: inherit; padding: 10px 15px; background-color: #f8f8f8; } .our-services-gallery .gallery-item .our-services-details .discount { position: absolute; display: inline-block; z-index: 15; right: 10px; top: -40px; } .our-services-gallery .gallery-item .our-services-details .title { margin: 0; } .our-services-gallery .gallery-item .our-services-details .title a { color: #333333; } .our-services-gallery .gallery-item .text-holder { box-sizing: border-box; display: block; height: 100%; left: 0; opacity: 0; overflow: hidden; padding: 25px 30px 60px; position: absolute; top: 0; -webkit-transition: opacity 0.3s ease-in-out 0s; -o-transition: opacity 0.3s ease-in-out 0s; transition: opacity 0.3s ease-in-out 0s; width: 100%; z-index: 13; } .our-services-gallery .gallery-item .text-holder .title { color: #fff; } .our-services-gallery .gallery-item:hover .text-holder { opacity: 1; } /* * causes.less * ----------------------------------------------- */ /* -------- Recent Causes ---------- */ .causes .progress-item .progress-bar .percent { background-color: rgba(255, 255, 255, 0.9); border: 2px solid; border-radius: 50%; color: #333333; font-size: 10px; line-height: 8px; padding: 12px 6px; position: absolute; right: -10px; text-align: center; top: -10px; } .causes .progress-item .progress { background-color: #efefef; border-bottom: 1px solid #d3d3d3; box-shadow: none; height: 15px; } /* * 3.6 -> Causes * ----------------------------------------------- */ .causes .thumb { position: relative; } .causes .thumb .donate-btn { opacity: 0; position: absolute; right: -50px; top: 0px; -webkit-transition: all 0.3s ease-in-out 0s; -o-transition: all 0.3s ease-in-out 0s; transition: all 0.3s ease-in-out 0s; } .causes:hover .thumb .donate-btn { opacity: 1; right: -15px; } .donate-piechart { margin: 0 auto; } .donate-piechart.piechart-absolute { bottom: -40px; right: 15px; position: absolute; } .donate-piechart .piechart-block { border-radius: 50%; } .donate-piechart .piechart canvas { max-height: 70px; } .donate-piechart .piechart canvas { background-color: #eeeeee !important; border-radius: 50%; max-height: 80px; } .donate-piechart .piechart-block .piechart { min-height: 80px; min-width: 80px; } .donate-piechart .piechart-block .percent::after { font-size: 12px; } .donate-piechart .piechart-block .percent { font-size: 18px; line-height: 77px; position: relative; } /* * 3.29 -> Pie Charts * ----------------------------------------------- */ .piechart { position: relative; margin: 0 auto; text-align: center; } .piechart .percent { font-size: 18px; z-index: 100; line-height: 60px; } .piechart .percent:after { content: "%"; font-size: 18px; } .piechart canvas { position: absolute; left: 0; right: 0; margin: 0 auto; } /* * 3.29 -> Featured Causes * ----------------------------------------------- */ .project-conditions { padding: 8px; } .project-conditions li { border-right: 1px solid #d3d3d3; color: #808080; width: 32%; } .project-conditions li:last-child { border-right: medium none; } .project-conditions li strong { display: block; font-weight: 600; color: #222222; } /* * project.less * ----------------------------------------------- */ .project .thumb { position: relative; overflow: hidden; } .project .thumb:after { background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0; content: ""; height: 100%; left: 0; opacity: 0; position: absolute; top: 0; transition-duration: 0.3s; width: 100%; } .project .hover-link { left: 44%; opacity: 0; position: absolute; top: 20%; transition-duration: 0.3s; z-index: 9; } .project .hover-link i { color: #fff; display: block; font-size: 20px; padding: 10px; } .project .project-details { background: #fff none repeat scroll 0 0; transition-duration: 0.3s; } .project:hover .thumb::after { border: 10px solid rgba(255, 255, 255, 0.2); opacity: 1; } .project:hover .hover-link { opacity: 1; top: 44%; } .project:hover .project-details { border-bottom: 3px solid #fff; } .project:hover .project-details .title, .project:hover .project-details .sub-title { color: #fff; } /* * hover-effect.less * ----------------------------------------------- */ .hover-effect .thumb { position: relative; overflow: hidden; } .hover-effect .thumb:after { background: rgba(255, 255, 255, 0.1); content: ""; height: 100%; left: 0; opacity: 0; position: absolute; top: 0; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; width: 100%; } .hover-effect .hover-link { left: 0; margin: 0 auto; opacity: 0; position: absolute; right: 0; top: 20%; text-align: center; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; z-index: 9; } .hover-effect .details { background: #f6f6f6; border-bottom: 3px solid #eee; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; } .hover-effect .details .sub-title { color: #999999; } .hover-effect:hover .thumb::after { border: 10px solid rgba(0, 0, 0, 0.2); opacity: 1; } .hover-effect:hover .hover-link { opacity: 1; top: 44%; } .hover-effect:hover .details { background: #222222; border-bottom-color: #333333; } .hover-effect:hover .details .title, .hover-effect:hover .details .sub-title { color: #fff; } /* * event.less * ----------------------------------------------- */ .event { background: #f6f6f6; border: 1px solid transparent; -webkit-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; } .event:hover { background: #fafafa; } .event .event-content .media-heading a { -webkit-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; } .event .event-content ul li { font-size: 12px; line-height: 1; margin-top: 10px; margin-bottom: 10px; } .event .event-date ul li { line-height: 1; } .event .event-date ul li:first-child { margin-bottom: 10px; } /* -------- Schedule-Box Style ---------- */ .schedule-box .thumb { position: relative; overflow-x: hidden; } .schedule-box .thumb .overlay { background-color: rgba(255, 255, 255, 0.85); bottom: 0; left: 0; opacity: 0; position: absolute; right: 0; text-align: center; -webkit-transition: 0.3s ease-in-out 0s; -o-transition: 0.3s ease-in-out 0s; transition: 0.3s ease-in-out 0s; top: -100%; } .schedule-box .thumb .overlay a i { background-color: #333; color: #fff; margin: 0 auto; padding: 13px 12px; position: absolute; text-align: center; -webkit-transition: all 0.45s ease-in-out 0s; -o-transition: all 0.45s ease-in-out 0s; transition: all 0.45s ease-in-out 0s; top: 0; } .schedule-box .schedule-details { border-bottom: 1px solid #bbb; } .schedule-box .schedule-details ul li { margin: 0; } .schedule-box .schedule-details .title a { -webkit-transition: all 0.3s ease-in-out 0s; -o-transition: all 0.3s ease-in-out 0s; transition: all 0.3s ease-in-out 0s; } .schedule-box:hover .thumb .overlay { opacity: 1; top: 0; } .schedule-box:hover .thumb .overlay a i { opacity: 1; top: 40%; } /* -------- Event-Table ---------- */ .table-schedule thead tr th { color: #fff; font-size: 16px; padding: 15px 25px; text-transform: uppercase; } .table-schedule > tbody > tr { background-color: #fcfcfc; } .table-schedule > tbody > tr:nth-child(2n+1) { background-color: #f9f9f9; } .table-schedule tbody tr td { border-top: 1px solid #ddd; color: #333; font-weight: 300; padding: 15px 25px; } .table-schedule tbody tr td .speaker-thumb { float: left; margin-right: 15px; margin-top: 5px; width: 55px; } .table-schedule tbody tr td .title { font-size: 15px; margin-bottom: 0; margin-top: 3px; } .table-schedule tbody tr td .name { font-size: 13px; margin: 0; } .table-schedule tbody tr td strong { font-weight: 700; } .table-schedule .toggle-content { cursor: pointer; } .table-schedule .session-details { display: none; } /* * Shortcode.less * ----------------------------------------------- */ /* * Shortcode: Alerts.less * ----------------------------------------------- */ /* * Shortcode: Buttons.less * ----------------------------------------------- */ /* -------- Btn-Default ---------- */ .btn-default { color: #333; background-color: #fff; border-color: #ccc; } .btn-default:focus, .btn-default.focus { color: #333; background-color: #e6e6e6; border-color: #8c8c8c; } .btn-default:hover { color: #333; background-color: #e6e6e6; border-color: #adadad; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { color: #333; background-color: #e6e6e6; border-color: #adadad; } .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus { color: #333; background-color: #d4d4d4; border-color: #8c8c8c; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus { background-color: #fff; border-color: #ccc; } .btn-default .badge { color: #fff; background-color: #333; } .btn-default:hover { background-color: #eeeeee; border-color: #eeeeee; } /* -------- Btn-Border ---------- */ .btn-border { color: #222222; background-color: #fff; border-color: #222222; } .btn-border:focus, .btn-border.focus { color: #222222; background-color: #e6e6e6; border-color: #000000; } .btn-border:hover { color: #222222; background-color: #e6e6e6; border-color: #040404; } .btn-border:active, .btn-border.active, .open > .dropdown-toggle.btn-border { color: #222222; background-color: #e6e6e6; border-color: #040404; } .btn-border:active:hover, .btn-border.active:hover, .open > .dropdown-toggle.btn-border:hover, .btn-border:active:focus, .btn-border.active:focus, .open > .dropdown-toggle.btn-border:focus, .btn-border:active.focus, .btn-border.active.focus, .open > .dropdown-toggle.btn-border.focus { color: #222222; background-color: #d4d4d4; border-color: #000000; } .btn-border:active, .btn-border.active, .open > .dropdown-toggle.btn-border { background-image: none; } .btn-border.disabled:hover, .btn-border[disabled]:hover, fieldset[disabled] .btn-border:hover, .btn-border.disabled:focus, .btn-border[disabled]:focus, fieldset[disabled] .btn-border:focus, .btn-border.disabled.focus, .btn-border[disabled].focus, fieldset[disabled] .btn-border.focus { background-color: #fff; border-color: #222222; } .btn-border .badge { color: #fff; background-color: #222222; } .btn-border { border-width: 2px; } .btn-border:hover, .btn-border:active, .btn-border:focus { background-color: #222222; border-color: #222222; color: #fff; } /* -------- Btn-Dark ---------- */ .btn-dark { color: #fff; background-color: #222222; border-color: #222222; } .btn-dark:focus, .btn-dark.focus { color: #fff; background-color: #090909; border-color: #000000; } .btn-dark:hover { color: #fff; background-color: #090909; border-color: #040404; } .btn-dark:active, .btn-dark.active, .open > .dropdown-toggle.btn-dark { color: #fff; background-color: #090909; border-color: #040404; } .btn-dark:active:hover, .btn-dark.active:hover, .open > .dropdown-toggle.btn-dark:hover, .btn-dark:active:focus, .btn-dark.active:focus, .open > .dropdown-toggle.btn-dark:focus, .btn-dark:active.focus, .btn-dark.active.focus, .open > .dropdown-toggle.btn-dark.focus { color: #fff; background-color: #000000; border-color: #000000; } .btn-dark:active, .btn-dark.active, .open > .dropdown-toggle.btn-dark { background-image: none; } .btn-dark.disabled:hover, .btn-dark[disabled]:hover, fieldset[disabled] .btn-dark:hover, .btn-dark.disabled:focus, .btn-dark[disabled]:focus, fieldset[disabled] .btn-dark:focus, .btn-dark.disabled.focus, .btn-dark[disabled].focus, fieldset[disabled] .btn-dark.focus { background-color: #222222; border-color: #222222; } .btn-dark .badge { color: #222222; background-color: #fff; } /* -------- Btn-Gray ---------- */ .btn-gray { color: #333333; background-color: #eeeeee; border-color: #eeeeee; } .btn-gray:focus, .btn-gray.focus { color: #333333; background-color: #d5d5d5; border-color: #afafaf; } .btn-gray:hover { color: #333333; background-color: #d5d5d5; border-color: #d0d0d0; } .btn-gray:active, .btn-gray.active, .open > .dropdown-toggle.btn-gray { color: #333333; background-color: #d5d5d5; border-color: #d0d0d0; } .btn-gray:active:hover, .btn-gray.active:hover, .open > .dropdown-toggle.btn-gray:hover, .btn-gray:active:focus, .btn-gray.active:focus, .open > .dropdown-toggle.btn-gray:focus, .btn-gray:active.focus, .btn-gray.active.focus, .open > .dropdown-toggle.btn-gray.focus { color: #333333; background-color: #c3c3c3; border-color: #afafaf; } .btn-gray:active, .btn-gray.active, .open > .dropdown-toggle.btn-gray { background-image: none; } .btn-gray.disabled:hover, .btn-gray[disabled]:hover, fieldset[disabled] .btn-gray:hover, .btn-gray.disabled:focus, .btn-gray[disabled]:focus, fieldset[disabled] .btn-gray:focus, .btn-gray.disabled.focus, .btn-gray[disabled].focus, fieldset[disabled] .btn-gray.focus { background-color: #eeeeee; border-color: #eeeeee; } .btn-gray .badge { color: #eeeeee; background-color: #333333; } .btn-circled { border-radius: 25px; } .btn-flat { border-radius: 0; } /* -------- Btn-Default ---------- */ .btn { font-size: 13px; padding: 8px 22px; } /* -------- Btn-xs ---------- */ .btn-xs { font-size: 11px; padding: 3px 14px; } /* -------- Btn-sm ---------- */ .btn-sm { font-size: 12px; padding: 5px 17px; } /* -------- Btn-lg ---------- */ .btn-lg { font-size: 14px; padding: 10px 26px; } /* -------- Btn-xl ---------- */ .btn-xl { font-size: 16px; padding: 13px 32px; } /* -------- Btn-transparent ---------- */ .btn-transparent { background-color: transparent; color: #fff; } /* -------- Btn-Quick-contact ---------- */ .btn-quick-contact { background-color: rgba(5, 15, 5, 0.1); color: #fff; } /* btn read more*/ .btn-read-more { padding: 0; } .btn-read-more::after { display: inline-block; content: "\f18e"; font-family: fontawesome; font-size: 16px; font-variant: normal; font-weight: normal; line-height: 1; margin-left: 5px; position: relative; text-shadow: none; text-transform: none; top: 2px; -webkit-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; } /* * Blockquote.less * ----------------------------------------------- */ blockquote { border-left: 3px solid #eeeeee; margin: 20px 0; padding: 30px; } blockquote.gray { border-left: 3px solid #666666; background-color: #eeeeee; color: #333333; } blockquote.gray.bg-theme-colored { background-color: #eeeeee; } blockquote.dark { border-left: 3px solid #3c3c3c; background-color: #555555; color: #fff; } blockquote.dark footer { color: #d3d3d3; } blockquote p { font-family: "Playfair Display", serif; font-size: 16px; font-style: italic; } /* * Shortcode: Clients.less * ----------------------------------------------- */ .clients-logo .item { background: #eeeeee; border-color: transparent; margin-bottom: 30px; padding: 0; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .clients-logo img { width: auto !important; display: inline !important; opacity: 0.7; } .clients-logo img:hover { opacity: 1; } .clients-logo.carousel { text-align: center; } .clients-logo.carousel .item { box-shadow: none; } .clients-logo.style2 .item { box-shadow: none; } .clients-logo.style2 .item img { max-height: 120px; } .client-img { opacity: 0.7; text-align: center; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .client-img:hover { opacity: 1; } .clients-logo.carousel { text-align: center; } .clients-logo.carousel .item { box-shadow: none; margin: 0 10px; } .clients-logo.transparent .item { background: transparent; margin-bottom: 10px; } .clients-logo.transparent img { opacity: 0.9; } /* * Shortcode: Countdown.less * ----------------------------------------------- */ .countdown-timer li { color: #808080; display: inline-block; padding: 30px 20px; background-color: #f1f1f1; margin-right: 15px; font-size: 40px; text-align: center; min-width: 120px; min-height: 120px; } .countdown-timer li span { color: #c0c0c0; display: block; font-size: 15px; margin-top: 5px; } .countdown-timer.timer-box { padding: 20px; padding-top: 40px; text-align: center; } .countdown-timer.timer-box li { color: #fff; background-color: rgba(0, 0, 0, 0.05); margin-bottom: 15px; } .countdown-timer.timer-box li span { color: #eeeeee; } .countdown-timer.timer-deep-bg li { background-color: rgba(0, 0, 0, 0.05); } @media only screen and (max-width: 767px) { .timer-responsive li { margin-top: 30px; font-size: 20px; min-width: 60px; min-height: 60px; padding: 20px 10px; } .countdown-timer li span { font-size: 12px; } } /* * Shortcode: Countdown-Timer.less * ----------------------------------------------- */ /* * Shortcode: Dividers.less * ----------------------------------------------- */ .divider, .parallax { background-repeat: repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; display: block; position: relative; overflow: hidden; width: 100%; } /* -------- Parallax ---------- */ .parallax { width: 100%; height: 100%; margin: 0 auto; background-size: cover; background-attachment: fixed; background-repeat: repeat-y; background-position: top center; } .mobile-parallax { background-size: cover !important; background-attachment: scroll !important; background-position: center center; } .divider .container { padding-top: 90px; padding-bottom: 90px; } .divider .container.small-padding { padding-top: 30px; padding-bottom: 30px; } .divider .container.extra-padding { padding-top: 180px; padding-bottom: 180px; } /* * Shortcode: Facebook-Disqus-Comments.less * ----------------------------------------------- */ .fb-comments, .fb_iframe_widget, .fb-comments > span, .fb_iframe_widget > span, .fb-comments > span > iframe, .fb_iframe_widget > span > iframe { display: block !important; margin: 0; width: 100% !important; } /* * Shortcode: Faqs.less * ----------------------------------------------- */ /* * Shortcode: Flexslider.less * ----------------------------------------------- */ .flex-container a:active, .flexslider a:active, .flex-container a:focus, .flexslider a:focus { outline: none; border: none; } .flex-direction-nav { display: none; } .flexslider { position: relative; margin: 0; padding: 0; border: 0; } .flex-viewport { max-height: 2000px; -webkit-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; } .flex-control-nav { margin: 0; padding: 0; list-style: none; border: none; width: auto; position: absolute; z-index: 10; text-align: center; bottom: 15px; right: 15px; } .flex-control-nav li { float: left; display: block; margin: 0 3px; width: 10px; height: 10px; } .flex-control-nav li a { display: block; cursor: pointer; text-indent: -9999px; width: 10px; height: 10px; border: 1px solid #fff; border-radius: 50%; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .flex-control-nav li:hover a, .flex-control-nav li a.flex-active { background-color: #fff; } /* * Shortcode: Flip-Box.less * ----------------------------------------------- */ .card { float: left; min-height: 300px; padding-bottom: 25%; position: relative; text-align: center; width: 100%; } .card:nth-child(1) { margin-left: -3px; margin-right: 1px; } .card:nth-child(1), .card .card:nth-child(3) { margin-right: 1px; } .card .card__front, .card .card__back { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transition: transform 0.3s; -o-transition: transform 0.3s; transition: transform 0.3s; } .card .card__back { -webkit-transform: rotateY(-180deg); transform: rotateY(-180deg); } .card .card__text { display: inline-block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto; height: 300px; line-height: 20px; } .card.effect__hover:hover .card__front { -webkit-transform: rotateY(-180deg); transform: rotateY(-180deg); } .card.effect__hover:hover .card__back { -webkit-transform: rotateY(0); transform: rotateY(0); } .card.effect__click.flipped .card__front { -webkit-transform: rotateY(-180deg); transform: rotateY(-180deg); } .card.effect__click.flipped .card__back { -webkit-transform: rotateY(0); transform: rotateY(0); } .card.effect__random.flipped .card__front { -webkit-transform: rotateY(-180deg); transform: rotateY(-180deg); } .card.effect__random.flipped .card__back { -webkit-transform: rotateY(0); transform: rotateY(0); } /* * Shortcode: Font-Icons-Style.less * ----------------------------------------------- */ /* common style */ .styled-icons a { color: #333333; font-size: 18px; height: 32px; line-height: 32px; width: 32px; float: left; margin: 5px 7px 5px 0; text-align: center; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .styled-icons a:hover { color: #666666; } .styled-icons.icon-gray a { background-color: #eeeeee; color: #555555; display: block; font-size: 18px; height: 36px; line-height: 36px; width: 36px; } .styled-icons.icon-gray a:hover { color: #bbbbbb; } .styled-icons.icon-gray.icon-bordered a { background-color: transparent; border: 2px solid #eeeeee; } .styled-icons.icon-gray.icon-bordered a:hover { border: 2px solid #d5d5d5; } .styled-icons.icon-dark a { background-color: #333333; color: #eeeeee; display: block; font-size: 18px; height: 36px; line-height: 36px; width: 36px; } .styled-icons.icon-dark a:hover { color: #5e5e5e; } .styled-icons.icon-dark.icon-bordered a { background-color: transparent; border: 2px solid #111111; color: #111111; } .styled-icons.icon-dark.icon-bordered a:hover { background-color: #111111; border-color: #111111; color: #fff; } .styled-icons.icon-bordered a { border: 1px solid #777777; } .styled-icons.icon-bordered a:hover { background-color: #777777; color: #fff; } .styled-icons.icon-rounded a { border-radius: 3px; } .styled-icons.icon-circled a { border-radius: 50%; } .styled-icons.icon-sm a { font-size: 13px; height: 30px; line-height: 30px; margin: 2px 7px 2px 0; width: 30px; } .styled-icons.icon-md a { font-size: 24px; height: 50px; line-height: 50px; width: 50px; } .styled-icons.icon-lg a { font-size: 32px; height: 60px; line-height: 60px; width: 60px; } .styled-icons.icon-xl a { font-size: 60px; height: 120px; line-height: 120px; width: 120px; } .styled-icons li { display: inline-block; margin-bottom: 0; margin-top: 0; } /* * Shortcode: Funfacts.less * ----------------------------------------------- */ .funfact { -webkit-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .funfact.border { border: 1px solid #d3d3d3; } .funfact.no-border { border: 0; } .funfact.border { border: 1px solid #d3d3d3; } .funfact i { font-size: 45px; } .funfact h2 { position: relative; } .funfact h2:after { bottom: 0; } .funfact span { color: #eeeeee; font-size: 18px; } /* funfact style-1*/ .funfact.style-1 i, .funfact.style-1 .funfact-title { -webkit-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .funfact.style-1 .funfact-title { color: #999999; font-size: 14px; text-transform: uppercase; } .funfact.style-1:hover i { font-size: 40px !important; opacity: 0.3; } .funfact.style-1:hover .funfact-title { color: #333333 !important; } /* * Shortcode: Icon-Boxes.less * ----------------------------------------------- */ .icon-box { padding: 40px 17px; } .icon-box .icon { display: inline-block; height: 68px; margin-bottom: 20px; text-align: center; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; width: 68px; } .icon-box .icon i { line-height: 68px; } .icon-box .icon.icon-gray { background-color: #eeeeee; color: #555555; } .icon-box .icon.icon-gray:hover { background-color: #d5d5d5; color: #bbbbbb; } .icon-box .icon.icon-gray.icon-bordered { background-color: transparent; border: 2px solid #eeeeee; } .icon-box .icon.icon-gray.icon-bordered:hover { background-color: #eeeeee; color: #555555; } .icon-box .icon.icon-dark { background-color: #111111; color: #fff; } .icon-box .icon.icon-dark:hover { color: #5e5e5e; } .icon-box .icon.icon-dark.icon-bordered { background-color: transparent; border: 2px solid #111111; color: #111111; } .icon-box .icon.icon-dark.icon-bordered:hover { background-color: #111111; border-color: #111111; color: #fff; } .icon-box .icon.icon-white { background-color: #fff; color: #333333; } .icon-box .icon.icon-white:hover { background-color: #b3b3b3; color: #000000; } .icon-box .icon.icon-white.icon-bordered { background-color: transparent; border: 2px solid #fff; color: #fff; } .icon-box .icon.icon-white.icon-bordered:hover { background-color: #fff; border-color: #fff; color: #111111; } .icon-box .icon.icon-white.icon-border-effect { position: relative; } .icon-box .icon.icon-white.icon-border-effect::after { box-shadow: 0 0 0 3px #fff; } .icon-box .icon.icon-bordered { border: 1px solid #777777; } .icon-box .icon.icon-bordered:hover { background-color: #777777; color: #fff; } .icon-box .icon.icon-rounded { border-radius: 3px; } .icon-box .icon.icon-circled { border-radius: 50%; } .icon-box .icon.icon-xs { height: 30px; width: 30px; } .icon-box .icon.icon-xs i { font-size: 18px; line-height: 30px; } .icon-box .icon.icon-sm { height: 50px; width: 50px; } .icon-box .icon.icon-sm i { font-size: 22px; line-height: 50px; } .icon-box .icon.icon-md { height: 75px; width: 75px; } .icon-box .icon.icon-md i { font-size: 36px; line-height: 75px; } .icon-box .icon.icon-lg { height: 90px; width: 90px; } .icon-box .icon.icon-lg i { font-size: 48px; line-height: 90px; } .icon-box .icon.icon-xl { height: 120px; width: 120px; } .icon-box .icon.icon-xl i { font-size: 60px; line-height: 120px; } .icon-box .icon.icon-border-effect { position: relative; } .icon-box .icon.icon-border-effect::after { border-radius: 50%; box-shadow: 0 0 0 3px #eeeeee; box-sizing: content-box; content: ""; height: 100%; left: -4px; opacity: 0; padding: 4px; top: -4px; transform: scale(0.8); transition: transform 0.2s ease 0s, opacity 0.2s ease 0s; pointer-events: none; position: absolute; width: 100%; } .icon-box .icon.icon-border-effect.effect-flat::after { border-radius: 0; } .icon-box .icon.icon-border-effect.effect-rounded::after { border-radius: 3px; } .icon-box .icon.icon-border-effect.effect-circled::after { border-radius: 50%; } .icon-box .icon.icon-border-effect.icon-gray::after { box-shadow: 0 0 0 3px #eeeeee; } .icon-box .icon.icon-top { left: 0; margin: 0 auto; position: absolute; right: 0; top: -32px; } .icon-box i { display: inline-block; font-size: 40px; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; } .icon-box i[class*="pe-7s-"] { vertical-align: text-bottom; } .icon-box.left { text-align: left; } .icon-box.left a { margin-right: 30px; padding: 0; } .icon-box.iconbox-border { border: 1px solid #dcdcdc; } .icon-box.iconbox-bg { background-color: #fafafa; } .icon-box.iconbox-bg.iconbox-bg-dark { background-color: #333333; } .icon-box .icon-box-title { margin-bottom: 15px; } .icon-box .icon-border-effect:hover::after, .icon-box:hover .icon-border-effect::after { opacity: 1; transform: scale(1); } .icon-box .icon-box-details { margin-left: 80px; } /* * Shortcode: Infinitescroll.less * ----------------------------------------------- */ #infscr-loading { background-color: rgba(0, 0, 0, 0.7); border-radius: 3px; color: #fff; font-size: 24px; height: 50px; line-height: 50px; left: 48%; position: fixed; text-align: center; top: 50%; width: 50px; z-index: 100; } #infscr-loading img { display: none; } /* * Shortcode: Instagram.less * ----------------------------------------------- */ /* -------- Instagram-Feed ---------- */ .instagram-feed-carousel figure, .instagram-feed figure { position: relative; } .instagram-feed-carousel figure .link-out, .instagram-feed figure .link-out { position: absolute; right: 10px; bottom: 10px; background: rgba(0, 0, 0, 0.45); color: #f8f8f8; line-height: 1; padding: 10px; font-weight: 300; opacity: 0; } .instagram-feed-carousel figure .link-out:hover, .instagram-feed figure .link-out:hover { background: rgba(0, 0, 0, 0.7); color: #f8f8f8; } .instagram-feed-carousel figure:hover .link-out, .instagram-feed figure:hover .link-out { opacity: 1; } /* -------- Instagram-Feed ---------- */ .instagram-feed .item { width: 100px; float: left; margin-bottom: 2px; margin-right: 2px; } /* * Shortcode: Light-Box.less * ----------------------------------------------- */ .nivo-lightbox-theme-default .nivo-lightbox-nav { height: 100%; top: 0; } .lightbox .lb-dataContainer { left: 0; position: absolute; right: 0; top: -45px; } /* * Shortcode: Map.less * ----------------------------------------------- */ .toggle-map { background: rgba(0, 0, 0, 0.7); color: #fff; cursor: pointer; display: block; font-size: 16px; padding: 30px 0; position: relative; text-align: center; text-transform: uppercase; width: 100%; z-index: 200; -webkit-transition: all 200ms linear; -o-transition: all 200ms linear; transition: all 200ms linear; } .toggle-map:hover { color: #fff; } .toggle-map span:after { content: "\f107"; font-family: fontawesome; margin-left: 10px; } .toggle-map.open span:after { content: "\f106"; } .map-canvas { height: 400px; -webkit-transition: all 0.3s linear 0s; -o-transition: all 0.3s linear 0s; transition: all 0.3s linear 0s; } .map-canvas.big { height: 720px; } .map-canvas.map-hidden { height: 0; } .btn-show-map { color: #111111; font-size: 18px; left: 0; margin: 0 auto; position: absolute; right: 0; text-align: center; top: 45%; } .btn-show-map i { font-size: 48px; } /* * Shortcode: Pegination.less * ----------------------------------------------- */ .pagination.theme-colored li.active a { background: #BF9E58; color: #fff; border: 1px solid transparent; } .pagination.dark li a { color: #333; } .pagination.dark li.active a { background: #333; color: #fff; border: 1px solid transparent; } .pager.theme-colored li.active a { color: #fff; border: 1px solid transparent; } .pager.dark li a { color: #fff; background-color: #333; border: 1px solid transparent; } /* * Shortcode: Pricing.less * ----------------------------------------------- */ .pricing-table { margin-bottom: 30px; position: relative; } .pricing-table .table-price { color: #111111; font-size: 45px; } .pricing-table .table-price span { font-size: 13px; vertical-align: middle; } .pricing-table.featured { border: 1px solid #111111; } .pricing-table .table-type { display: inline; } .pricing-table .btn-signup { margin-right: 0; width: 100%; } .pricing-table .table-list { list-style: outside none none; padding: 10px 0 10px 20px; } .pricing-table .table-list li { border-bottom: 0; font-size: 12px; padding: 10px 0; } .pricing-table .table-list li i { margin-right: 8px; } .pricing-table .package-type span { position: relative; padding-left: 15px; margin-left: 10px; } .pricing-table .package-type span::after { background: #2d915b; content: ""; height: 20px; left: -20px; position: absolute; top: 11px; width: 20px; } .pricing { background-color: #3FB179; position: relative; -webkit-transition: 0.3s all ease-in-out 0s; -o-transition: 0.3s all ease-in-out 0s; transition: 0.3s all ease-in-out 0s; } .pricing:hover { background-color: #121b26 !important; } .pricing .table-price { font-size: 4rem !important; /* =64px */ line-height: 1.2; font-family: "Open Sans", sans-serif; margin: 0 0 20px; font-weight: 200; } .pricing .table-title { color: #fff; margin: 0; padding: 15px 0; padding-top: 0; text-transform: uppercase; } .pricing.table-horizontal { background-color: #3FB179; } /* * Shortcode: Process-Steps.less * ----------------------------------------------- */ /* * Shortcode: Progress-Bar.less * ----------------------------------------------- */ .progress-item { margin-top: 20px; } .progress-item .progress { background-color: #f8f8f8; box-shadow: 0 0 1px rgba(0, 0, 0, 0.4) inset; border-radius: 0; height: 10px; margin-bottom: 15px; overflow: visible; } .progress-item .progress-bar { font-size: 11px; padding-left: 10px; position: relative; text-align: left; width: 0; line-height: 18px; -webkit-transition: all 1s ease 0s; -o-transition: all 1s ease 0s; transition: all 1s ease 0s; } .progress-item .progress-bar .percent { background: none repeat scroll 0 0 #555555; border-radius: 8px 0 0; padding: 3px 5px; position: absolute; right: 0; top: -30px; } .progress-item.progress-white .progress { padding: 2px; } .progress-item.style2 .progress { height: 25px; } .progress-item.style2 .progress-bar .percent { background: none; color: #555555; font-size: 14px; } /* * Shortcode: Promo.less * ----------------------------------------------- */ .modal-promo-box { max-width: 700px; padding: 90px 60px; margin: 0 auto; } /* * Shortcode: Section-Title.less * ----------------------------------------------- */ .small-title { position: relative; } .small-title i { font-size: 36px; margin-top: 7px; padding-top: 0px; } .small-title .title { margin-left: 15px; } .small-title .title:after { bottom: -6px; content: ""; height: 1px; left: 45px; position: absolute; width: 45px; } .section-title .both-side-line::after { background: #c0c0c0 none repeat scroll 0 0; content: ""; height: 2px; position: absolute; right: -40px; top: 10px; width: 30px; } .section-title .both-side-line::before { background: #c0c0c0 none repeat scroll 0 0; content: ""; height: 2px; position: absolute; left: -40px; top: 10px; width: 30px; } .section-title .top-side-line::after { background: #c0c0c0 none repeat scroll 0 0; content: ""; height: 2px; left: 0; margin: 0 auto; position: absolute; right: 0; top: -8px; width: 40px; } .section-title .left-side-line::before { background: #c0c0c0 none repeat scroll 0 0; content: ""; height: 2px; left: 0; position: absolute; top: -8px; width: 35px; } .section-title .right-side-line::before { background: #c0c0c0 none repeat scroll 0 0; content: ""; height: 2px; position: absolute; right: 0; top: -8px; width: 35px; } .section-title .sub-title { margin: 0; position: relative; display: inline-block; } .section-title .title { margin-top: 0; position: relative; } .section-title .title-icon { left: -60px; position: absolute; top: -10px; } .section-title .title-icon i { opacity: 0.5; } .section-title p { font-size: 14px; } .section-title p.left-bordered { border-left: 2px solid #c0c0c0; padding-left: 10px; } .section-title p.right-bordered { border-right: 2px solid #c0c0c0; padding-right: 10px; } /*Theme Section Title*/ .section-title { margin-bottom: 30px; position: relative; } .section-title.title-border { padding-left: 30px; } .section-title.title-border.title-right { border-left: 0; text-align: right; } .section-title.icon-bg p { font-size: 14px; font-style: italic; margin-bottom: 0; } .section-title.icon-bg .page-title { font-size: 38px; line-height: 52px; } .section-title.icon-bg .page-title i { font-size: 42px; line-height: 1.3; position: absolute; opacity: 0.15; left: 0; right: 0; margin: 0 auto; } .title-dots { background: url("../images/title-dots.png") repeat scroll 0 0; height: 30px; margin-bottom: 20px; } .title-dots span { color: #fff; font-size: 17px; line-height: 30px; padding: 5px 10px; } .title-dots.small { height: 24px; margin-bottom: 15px; } .title-dots.small span { font-size: 11px; line-height: 23px; } /* * Shortcode: Separators.less * ----------------------------------------------- */ .title-separator { border-top-style: solid; border-top-width: 1px; font-size: 16px; height: auto; line-height: 20px; margin: 10px 0; width: 70%; } .title-separator span { background: #fff none repeat scroll 0 0; border-radius: 2px; letter-spacing: 0.2em; padding: 2px 10px; position: relative; text-transform: uppercase; top: -12px; } .separator { color: #ccc; line-height: 1.2em; margin: 30px auto; overflow: hidden; text-align: center; width: 100%; } .separator::before, .separator::after { border-bottom: 1px solid #eee; content: ""; display: inline-block; height: .65em; margin: 0 -4px 0 -100%; vertical-align: top; width: 50%; } .separator::after { margin: 0 -100% 0 0; } .separator i, .separator span, .separator a { display: inline-block; margin: 0 20px 0 24px; font-size: 20px; } .separator.separator-left, .separator.left i { float: left; margin: 2px 50px 0 0; } .separator.right i { float: right; margin: 0 0 2px 50px; } .separator.separator-medium-line { margin: 10px auto; width: 20%; } .separator.separator-small-line { width: 10%; } .separator.separator-rouned i, .separator.separator-border-rouned i { background-color: #f5f5f5; border-radius: 50%; height: 40px; left: 0; line-height: 40px; margin: -12px auto auto; position: absolute; right: 0; width: 40px; } .separator.separator-border-rouned i { background: transparent; border: 1px solid #f5f5f5; } .separator.separator-rouned.separator-rouned-left i { margin: -12px auto auto; right: auto; left: 0; } .separator.separator-rouned.separator-rouned-right i { margin: -12px auto auto; right: 0; left: auto; } .separator.dotted::before, .separator.dotted::after { border-bottom: 2px dotted #ccc; } /* * Shortcode: styled-icons.less * ----------------------------------------------- */ /* common style */ .styled-icons a { color: #333333; font-size: 18px; height: 32px; line-height: 32px; width: 32px; float: left; margin: 5px 7px 5px 0; text-align: center; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .styled-icons a:hover { color: #666666; } .styled-icons.icon-gray a { background-color: #eeeeee; color: #555555; display: block; font-size: 18px; height: 36px; line-height: 36px; width: 36px; } .styled-icons.icon-gray a:hover { color: #bbbbbb; } .styled-icons.icon-gray.icon-bordered a { background-color: transparent; border: 2px solid #eeeeee; } .styled-icons.icon-gray.icon-bordered a:hover { border: 2px solid #d5d5d5; } .styled-icons.icon-dark a { background-color: #333333; color: #eeeeee; display: block; font-size: 18px; height: 36px; line-height: 36px; width: 36px; } .styled-icons.icon-dark a:hover { color: #5e5e5e; } .styled-icons.icon-dark.icon-bordered a { background-color: transparent; border: 2px solid #111111; color: #111111; } .styled-icons.icon-dark.icon-bordered a:hover { background-color: #111111; border-color: #111111; color: #fff; } .styled-icons.icon-bordered a { border: 1px solid #777777; } .styled-icons.icon-bordered a:hover { background-color: #777777; color: #fff; } .styled-icons.icon-rounded a { border-radius: 3px; } .styled-icons.icon-circled a { border-radius: 50%; } .styled-icons.icon-sm a { font-size: 13px; height: 30px; line-height: 30px; margin: 2px 7px 2px 0; width: 30px; } .styled-icons.icon-md a { font-size: 24px; height: 50px; line-height: 50px; width: 50px; } .styled-icons.icon-lg a { font-size: 32px; height: 60px; line-height: 60px; width: 60px; } .styled-icons.icon-xl a { font-size: 60px; height: 120px; line-height: 120px; width: 120px; } .styled-icons li { display: inline-block; margin-bottom: 0; margin-top: 0; } /* * Shortcode: Tabs.less * ----------------------------------------------- */ .tab-content { padding: 15px; border: 1px solid #eeeeee; } .nav-tabs { border: none; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li.active a, .nav-tabs > li.active a:hover, .nav-tabs > li.active a:focus { color: #111111; background-color: #f8f8f8; } .nav-tabs > li > a { border-radius: 0; font-family: 'Open Sans', sans-serif; font-size: 12px; color: #555555; padding: 12px 20px; margin-right: 0; } .nav-tabs > li > a .fa { margin-right: 10px; } .nav-tabs > li > a:hover, .nav-tabs > li > a:focus { color: #333333; background-color: transparent; } .nav-tabs > li > a i { font-size: 32px; margin-right: 20px; vertical-align: middle; } /* -------- Nav Tabs ---------- */ .nav-tabs > li { text-align: center; } .nav-tabs > li > a i { display: block; font-size: 48px; margin-right: 0; margin-bottom: 10px; vertical-align: middle; } /* -------- Horizontal-Tab-Centered ---------- */ .horizontal-tab-centered .nav-pills { display: inline-block; } .horizontal-tab-centered .nav-pills > li > a { background: #eeeeee; color: #555555; font-size: 14px; padding: 8px 10px; margin-right: 10px; margin-bottom: 10px; text-transform: capitalize; } .horizontal-tab-centered .nav-pills > li > a:hover { color: #fff; } .horizontal-tab-centered .nav-pills > li > a i { font-size: 14px; margin-right: 8px; } .horizontal-tab-centered .nav-pills > li.active > a, .horizontal-tab-centered .nav-pills > li.active > a:hover, .horizontal-tab-centered .nav-pills > li.active > a:focus { color: #fff; } /* -------- Horizontal-Tab Fullwide ---------- */ .horizontal-tab.fullwide .nav-tabs > li { width: 20%; } /* -------- Vertical Nav-Tabs ---------- */ .vertical-tab .tab-content { padding: 5px 5px 20px 20px; border: none; } .vertical-tab .nav-tabs > li { float: none; margin-bottom: 0; } .vertical-tab .nav-tabs > li > a { background: none; border-radius: 0; border-bottom: 1px solid #d3d3d3; border-right: 1px solid #d3d3d3; border-top: 1px solid transparent; border-left: 1px solid transparent; font-size: 14px; padding: 30px 0 30px 15px; } .vertical-tab .nav-tabs > li:first-child > a { border-top: 1px solid #d3d3d3 !important; } .vertical-tab .nav-tabs > li.active > a, .vertical-tab .nav-tabs > li.active > a:hover, .vertical-tab .nav-tabs > li.active > a:focus { background: none; border-top: 1px solid transparent; border-left: 1px solid transparent; border-right: 1px solid transparent; border-bottom: 1px solid #d3d3d3; } .vertical-tab .small-padding .nav-tabs > li a { padding: 20px 0 20px 15px; } .vertical-tab .small-padding .nav-tabs > li i { font-size: 24px; } @media only screen and (max-width: 767px) { .vertical-tab .tab-content { padding: 20px 5px; } .nav-tabs > li > a { border-radius: 0; border-bottom: none; border-left: 2px solid #d3d3d3; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { border-bottom: none; border-left: 2px solid #d3d3d3; } } .custom-nav-tabs { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; border-color: -moz-use-text-color; border-image: none; border-style: none solid none none; border-width: medium 0px medium medium; margin-right: 53px; } .custom-nav-tabs > li { float: none; margin: 0 0 1px; } .custom-nav-tabs > li a { background: #eeeeee none repeat scroll 0 0; border: medium none; border-radius: 0; display: block; font-size: 17px; font-weight: 700; line-height: 59px; margin: 0; outline: medium none; padding: 0; text-align: center; text-transform: uppercase; } .custom-nav-tabs > li.active > a, .custom-nav-tabs > li.active > a:hover, .custom-nav-tabs > li.active > a:focus, .custom-nav-tabs > li > a:hover, .custom-nav-tabs > li > a:focus { border: medium none; color: #000; padding: 0; } /* * Shortcode: Teams.less * ----------------------------------------------- */ .team-members { overflow: hidden; position: relative; } .team-members .team-details { bottom: -50px; position: absolute; transition: all 300ms ease-in-out 0s; width: 100%; } .team-members:hover .team-details { bottom: 0; } .team-member .thumb { position: relative; overflow: hidden; } .team-member .thumb img { -webkit-transition: all 300ms ease-in-out 0s; -o-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s; } .team-member:hover .thumb img { transform: scale(1.1); } .team-member .thumb .info { bottom: -50px; position: absolute; -webkit-transition: all 300ms ease-in-out 0s; -o-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s; width: 100%; } .team-member:hover .thumb .info { bottom: 0; } .dl-horizontal.doctor-info dt { color: #333333; font-size: 14px; width: auto; } @media only screen and (max-width: 767px) { .dl-horizontal.doctor-info dt { margin-bottom: 10px; } } .team-block .team-upper-block { overflow: hidden; position: relative; } .team-block .team-upper-block .styled-icons { background: #fff none repeat scroll 0 0; position: absolute; text-align: center; transform: translateY(-5%); transition: all 300ms linear 0s; width: 100%; } .team-block:hover .team-upper-block .styled-icons { transform: translateY(-100%); } .team-block:hover .team-upper-block img { transform: translateY(-35px) scale(1.04); } .team-block .team-upper-block img { transition: all 300ms linear 0s; } .team-block { margin: 0 auto 30px; } .team-block .team-thumb { overflow: hidden; position: relative; } .team-block .team-thumb .team-overlay { height: 85.4%; padding: 40px 20px 0 30px; position: absolute; top: -90%; -webkit-transition: all 300ms ease-in-out 0s; -o-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s; width: 100%; } .team-block .team-thumb .team-overlay .styled-icons { position: absolute; bottom: 4px; } .team-block .team-thumb .team-overlay .styled-icons a { border-color: #fff; } .team-block .team-thumb .team-overlay .styled-icons a:hover { background: #fff none repeat scroll 0 0; } .team-block .team-thumb .team-overlay .styled-icons a i { color: #fff; } .team-block .team-thumb .styled-icons { bottom: 0; padding: 7px 20px 0 0; position: absolute; right: 0; width: 84%; } .team-block .team-thumb .styled-icons a { margin: 0px; } .team-block .team-thumb .styled-icons a i { color: #fff; font-size: 14px; margin-top: 8px; } .team-block .team-thumb .styled-icons a:hover { border-color: #fff; -webkit-transition: all 100ms ease-in-out 0s; -o-transition: all 100ms ease-in-out 0s; transition: all 100ms ease-in-out 0s; } .team-block .team-thumb .styled-icons::after { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; border-image: none; border-style: solid; border-width: 22px; bottom: 0; content: ""; display: block; height: 40px; left: -44px; position: absolute; width: 40px; } .team-block .team-bottom-part { background: #eeeeee none repeat scroll 0 0; margin-top: 6px; padding: 10px 16px 12px 30px; } .team-block:hover .team-overlay { top: 0; } .team-block { margin: 0 auto 30px; } .team-block .team-thumb { overflow: hidden; position: relative; } .team-block .team-thumb .team-overlay { height: 85.4%; padding: 40px 20px 0 30px; position: absolute; top: -90%; -webkit-transition: all 300ms ease-in-out 0s; -o-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s; width: 100%; } .team-block .team-thumb .team-overlay .styled-icons { position: absolute; bottom: 4px; } .team-block .team-thumb .team-overlay .styled-icons a { border-color: #fff; } .team-block .team-thumb .team-overlay .styled-icons a:hover { background: #fff none repeat scroll 0 0; } .team-block .team-thumb .team-overlay .styled-icons a i { color: #fff; } .team-block .team-thumb .team-overlay::after { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; border-image: none; border-style: solid; border-width: 22px; bottom: -44px; content: ""; display: block; height: 44px; left: -2px; position: absolute; width: 40px; } .team-block .team-thumb .styled-icons { bottom: 0; padding: 7px 20px 0 0; position: absolute; right: 0; width: 84%; } .team-block .team-thumb .styled-icons a { margin: 0px; } .team-block .team-thumb .styled-icons a i { color: #fff; font-size: 14px; margin-top: 8px; } .team-block .team-thumb .styled-icons a:hover { border-color: #fff; -webkit-transition: all 100ms ease-in-out 0s; -o-transition: all 100ms ease-in-out 0s; transition: all 100ms ease-in-out 0s; } .team-block .team-thumb .styled-icons::after { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; border-image: none; border-style: solid; border-width: 22px; bottom: 0; content: ""; display: block; height: 40px; left: -44px; position: absolute; width: 40px; } .team-block .team-bottom-part { background: #eeeeee none repeat scroll 0 0; margin-top: 6px; padding: 10px 16px 12px 30px; } .team-block:hover .team-overlay { top: 0; } /* * Shortcode: Testimonials.less * ----------------------------------------------- */ .testimonial .content { position: relative; } .testimonial .content::after { color: #202c45; content: "\f10e"; font-family: fontawesome; font-size: 48px; opacity: 0.2; position: absolute; right: 20px; top: -15px; } /* * Shortcode: timetable-fullcalendar.less * ----------------------------------------------- */ .fc-timetable-wrapper .fc-scroller { height: auto; overflow: hidden; } .fc-timetable-wrapper .fc-toolbar { display: none; height: 38px; margin-bottom: 20px; } .fc-timetable-wrapper .fc-toolbar h2 { color: #7f7f7f; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 400; line-height: 38px; text-transform: uppercase; } .fc-timetable-wrapper .fc-toolbar .fc-button { -moz-box-sizing: border-box; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; -webkit-box-sizing: border-box; -webkit-transition: all 0.3s ease; background: #ffffff; border: 1px solid #e5e5e5; box-shadow: none; box-sizing: border-box; height: 38px; line-height: 36px; transition: all 0.3s ease; width: 40px; } .fc-timetable-wrapper .fc-toolbar .fc-button:hover { background: #5fc7ae; border-color: #5fc7ae; } .fc-timetable-wrapper .fc-toolbar .fc-button:hover .fc-icon.fc-icon-left-single-arrow { background-position: -108px -50px; } .fc-timetable-wrapper .fc-toolbar .fc-button:hover .fc-icon.fc-icon-right-single-arrow { background-position: -115px -50px; } .fc-timetable-wrapper .fc-toolbar .fc-button .fc-icon { height: 11px; top: -1px; width: 6px; } .fc-timetable-wrapper .fc-toolbar .fc-button .fc-icon:after { display: none; } .fc-timetable-wrapper .fc-toolbar .fc-button .fc-icon.fc-icon-left-single-arrow { background-position: -100px -50px; } .fc-timetable-wrapper .fc-toolbar .fc-button .fc-icon.fc-icon-right-single-arrow { background-position: -122px -50px; } .fc-timetable-wrapper .fc-day-header { background: #ffffff; color: #7f7f7f; font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 300; line-height: 52px; } .fc-timetable-wrapper .fc-time-grid .fc-day.fc-widget-content { background: #ffffff; } .fc-timetable-wrapper .fc-axis { background: #ffffff; } .fc-timetable-wrapper .filter-departments { margin-bottom: 20px; } .fc-timetable-wrapper .filter-departments li { margin-bottom: 20px; } .fc-timetable-wrapper .filter-departments a { background: #eeeeee; border-color: #eeeeee; border-radius: 5px; color: #333333; padding: 5px; padding: 7px 15px; } .fc-timetable-wrapper .filter-departments .active { background: #888888; border-color: #888888; color: #ffffff; } .fc-timetable-wrapper .filter-departments .fc-departments-orthopaedics { background: #72a230; border-color: #72a230; } .fc-timetable-wrapper .filter-departments .fc-departments-cardiology { background: #ffab00; border-color: #ffab00; } .fc-timetable-wrapper .filter-departments .fc-departments-neurology { background: #fd4084; border-color: #fd4084; } .fc-timetable-wrapper .filter-departments .fc-departments-dental { background: #00a4ef; border-color: #00a4ef; } .fc-timetable-wrapper .filter-departments .fc-departments-haematology { background: #80acdd; border-color: #80acdd; } .fc-timetable-wrapper .fc-event { -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; -webkit-transition: all 0.3s ease; border-radius: 0; border: 0; border: 2px solid #5fc7ae; color: #ffffff; font-family: 'Lato', sans-serif; font-size: 16px; font-weight: 300; transition: all 0.3s ease; } .fc-timetable-wrapper .fc-event .fc-bg { opacity: 0; } .fc-timetable-wrapper .fc-event .fc-content { padding-left: 10px; padding-top: 10px; } .fc-timetable-wrapper .fc-event .fc-content div.fc-time { display: none; } .fc-timetable-wrapper .fc-event.hide { opacity: 0; z-index: -2; } .fc-timetable-wrapper .fc-event.fc-departments-orthopaedics { background: #72a230; border-color: #72a230; } .fc-timetable-wrapper .fc-event.fc-departments-cardiology { background: #ffab00; border-color: #ffab00; } .fc-timetable-wrapper .fc-event.fc-departments-neurology { background: #fd4084; border-color: #fd4084; } .fc-timetable-wrapper .fc-event.fc-departments-dental { background: #00a4ef; border-color: #00a4ef; } .fc-timetable-wrapper .fc-event.fc-departments-haematology { background: #80acdd; border-color: #80acdd; } .fc-timetable-wrapper td.fc-time { color: #7f7f7f; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 400; line-height: 70px; text-align: center; } .fc-timetable-wrapper .fc-time-grid-container { height: auto; } .fc-timetable-wrapper .fc-content-skeleton .fc-event-container { margin: 0; } @media only screen and (max-width: 768px) { .fc-timetable-wrapper .fc-day-header { font-size: 10px; } .fc-timetable-wrapper .fc-time-grid-event .fc-time, .fc-timetable-wrapper .fc-time-grid-event .fc-title { font-size: 12px; } .fc-timetable-wrapper .fc-event .fc-content { padding-left: 0; padding-top: 0; } } /* * Shortcode: Toggles-Accordions.less * ----------------------------------------------- */ .panel-group .panel { box-shadow: none; -webkit-border-radius: 0 0 0 0; -moz-border-radius: 0; -ms-border-radius: 0 0 0 0; border-radius: 0 0 0 0; border: none; position: relative; } .panel-group .panel-title { font-size: 13px; } .panel-group .panel-title a { background: #f8f8f8; display: block; font-size: 14px; font-weight: 500; padding: 10px 15px 10px 48px; white-space: normal; } .panel-group .panel-title a.active { background: #16174f none repeat scroll 0 0 !important; border-bottom: 1px solid #d3d3d3 !important; color: #fff; } .panel-group .panel-title a.active .open-sub:after { display: none; } .panel-group .panel-title a.active::after { color: #fff; content: "\f068"; } .panel-group .panel-title a::after { color: #888; content: "\f067"; font-family: fontawesome; font-size: 14px; left: 0; padding: 10px 14px; position: absolute; top: 0; } .panel-group .panel-title.active.panel-group .panel-title:hover a, .panel-group .panel-title.active.panel-group .panel-title:focus a { color: #333333; } .panel-group .panel-title .open-sub { display: block; position: relative; } .panel-group .panel-title .open-sub:before, .panel-group .panel-title .open-sub:after { content: ""; display: block; position: absolute; height: 1px; top: 50%; margin-top: -0.5px; left: 50%; } .panel-group .panel-content { background: #fff none repeat scroll 0 0; border: 1px solid #ddd; padding: 10px 20px 20px; } .panel-group .panel-content > :last-child { margin-bottom: 0; } .panel-group.white .panel-title a { background-color: #fff; } /* -------- Toggle ---------- */ .panel-group.toggle .panel-heading { padding: 0; border-bottom: 0; border-top-left-radius: 0; border-top-right-radius: 0; } .panel-group.toggle .panel-body { padding: 10px 0 5px 25px; } .panel-group.accordion.transparent .panel-title a, .panel-group.toggle.transparent .panel-title a, .panel-group.accordion.transparent .panel-title a.active, .panel-group.toggle.transparent .panel-title a.active { background: transparent !important; border: none !important; color: #333333; } .panel-group.accordion.transparent .panel-title a::after, .panel-group.toggle.transparent .panel-title a::after, .panel-group.accordion.transparent .panel-title a.active::after, .panel-group.toggle.transparent .panel-title a.active::after { color: #333333; background: transparent !important; } .panel-group.accordion.transparent .panel-content, .panel-group.toggle.transparent .panel-content { background: transparent !important; } .panel-group.toggle .panel-heading + .panel-collapse > .panel-body, .panel-group.toggle .panel-heading + .panel-collapse > .list-group { border-top: none; } /* * Shortcode: Vertical-Timeline.less * ----------------------------------------------- */ .cd-timeline-content { background: #f1f1f1; } .cd-timeline-content::before { border-color: transparent transparent transparent #eee; } .cd-timeline-block:nth-child(2n) .cd-timeline-content::before { border-color: transparent #eee transparent transparent; } #cd-timeline.cd-timeline-simple::before { background: #ccc none repeat scroll 0 0; height: 82%; top: 65px; width: 2px; } #cd-timeline.cd-timeline-simple.time-line-media::before { height: 65%; } .cd-timeline-simple .cd-timeline-block { margin: 38px 0 20px 0; } .cd-timeline-simple .cd-timeline-block .cd-timeline-content::before { display: none; } .cd-timeline-simple .cd-timeline-block .cd-timeline-content { padding-top: 0; background: none; box-shadow: none; } .cd-timeline-simple .cd-timeline-block .cd-timeline-content p { font-size: 14px; } .cd-timeline-simple .cd-timeline-block .cd-timeline-img { background: #333 none repeat scroll 0 0 !important; box-shadow: 0 0 0 4px #ccc, 0 3px 0 rgba(0, 0, 0, 0.06) inset, 0 0px 0 3px rgba(0, 0, 0, 0.05) !important; } @media only screen and (max-width: 992px) { .cd-timeline-simple .cd-timeline-block .cd-timeline-content { text-align: left; } } @media only screen and (max-width: 768px) { .cd-timeline-simple .cd-timeline-block .cd-timeline-content { margin-bottom: 10px; } } @media only screen and (max-width: 992px) { .cd-timeline-simple .cd-timeline-block .cd-timeline-content h2 { font-size: 20px; } } @media only screen and (max-width: 768px) { .cd-timeline-simple .cd-timeline-block .cd-timeline-content h2 { font-size: 18px; } } @media only screen and (max-width: 768px) { .cd-timeline-simple .cd-timeline-block .cd-timeline-content .cd-date { font-size: 14px; } } /* Vertical Masonry Timeline */ .vertical-masonry-timeline .each-masonry-item { position: relative; width: 50%; margin-bottom: 30px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2) { margin-top: 80px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n) { padding-left: 50px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) { padding-right: 50px; } .vertical-masonry-timeline .each-masonry-item .timeline-block { background: #fff none repeat scroll 0 0; border: 1px solid #d7e4ed; height: 100%; padding: 20px; position: relative; width: 100%; } .vertical-masonry-timeline .each-masonry-item .timeline-block:before, .vertical-masonry-timeline .each-masonry-item .timeline-block:after { border-style: solid; border-width: 8px; content: ""; display: block; position: absolute; top: 20px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) .timeline-block:before { border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #c6d2db; left: auto; right: -16px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) .timeline-block:after { border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ffffff; left: auto; right: -15px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n) .timeline-block:before { border-color: rgba(0, 0, 0, 0) #c6d2db rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); left: -16px; right: auto; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n) .timeline-block:after { border-color: rgba(0, 0, 0, 0) #ffffff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); left: -15px; right: auto; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) .timeline-post-format { left: auto; right: -82px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n) .timeline-post-format { left: -80px; right: auto; } .timeline-post-format { border: 3px solid #bbb; border-radius: 100%; color: #bbb; height: 60px; overflow: hidden; position: absolute; top: -2px; width: 60px; z-index: 1; } .timeline-post-format:after { background: #fff none repeat scroll 0 0; color: #fff; content: ""; display: block; height: 100%; left: 0; position: absolute; top: 0; width: 100%; } .timeline-post-format i { font-size: 18px; position: absolute; z-index: 1; left: 50%; top: 50%; transform: translateY(-50%) translateX(-50%); } .vertical-masonry-timeline-wrapper:before { background: #ddd none repeat scroll 0 0; bottom: 0; content: ""; height: 100%; left: 50%; margin-left: 0px; position: absolute; width: 4px; } .vertical-masonry-timeline-wrapper:after { background: rgba(0, 0, 0, 0) linear-gradient(#ddd, transparent) repeat scroll 0 0; bottom: -100px; content: ""; height: 100px; left: 50%; margin-left: 0px; position: absolute; width: 4px; } .vertical-masonry-timeline::after { background: rgba(0, 0, 0, 0) linear-gradient(transparent, #ddd) repeat scroll 0 0; content: ""; height: 100px; left: 50%; position: absolute; top: -65px; width: 4px; } @media only screen and (min-width: 768px) { .vertical-masonry-timeline .each-masonry-item.item-right { padding-right: 0px; padding-left: 50px; } .vertical-masonry-timeline .each-masonry-item.item-right .timeline-block:before { border-color: rgba(0, 0, 0, 0) #c6d2db rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); left: -16px; right: auto; } .vertical-masonry-timeline .each-masonry-item.item-right .timeline-block:after { border-color: rgba(0, 0, 0, 0) #ffffff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); left: -15px; right: auto; } .vertical-masonry-timeline .each-masonry-item.item-right .timeline-post-format { left: -80px; right: auto; } .vertical-masonry-timeline .each-masonry-item.item-left { padding-right: 50px; padding-left: 0px; } .vertical-masonry-timeline .each-masonry-item.item-left .timeline-block:before { border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #c6d2db; right: -16px; left: auto; } .vertical-masonry-timeline .each-masonry-item.item-left .timeline-block:after { border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ffffff; right: -15px; left: auto; } .vertical-masonry-timeline .each-masonry-item.item-left .timeline-post-format { right: -81px; left: auto; } } @media only screen and (max-width: 768px) { .vertical-masonry-timeline .each-masonry-item { width: 100%; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) { padding-right: 0px; padding-left: 71px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n) { padding-left: 71px; padding-right: inherit; } .vertical-masonry-timeline .each-masonry-item:nth-child(2) { margin-top: 0; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) .timeline-post-format { left: -72px; right: auto; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n) .timeline-post-format { left: -72px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) .timeline-block::before { border-color: rgba(0, 0, 0, 0) #c6d2db rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); left: -16px; right: auto; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) .timeline-block::after { border-color: rgba(0, 0, 0, 0) #ffffff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); left: -15px; right: auto; } .vertical-masonry-timeline:after { left: 29px; } .vertical-masonry-timeline-wrapper:before, .vertical-masonry-timeline-wrapper:after { left: 44px; } } /* * Shortcode: Working-Process.less * ----------------------------------------------- */ .working-process > li { float: left; overflow: hidden; position: relative; text-align: center; } .working-process > li::after { border-top: 1px dashed #333333; content: ""; left: 6px; margin-left: -32px; overflow: hidden; position: absolute; top: 25px; width: 50%; } .working-process > li::before { border-top: 1px dashed #333333; content: ""; margin-right: -25px; position: absolute; right: 0; top: 25px; width: 50%; } .working-process > li :first-child::after { border-top: medium none; } .working-process > li :last-child::before { border-top: medium none; } .working-process li a { border: 1px solid; display: inline-block; height: 50px; line-height: 50px; overflow: hidden; width: 50px; border-radius: 50%; } .working-process li a:hover { background: #333333 none repeat scroll 0 0; border: 1px solid transparent; color: #fff; } .working-process li a i { font-size: 18px; } .working-process.square li a, .working-process.square.large-circle li a { border-radius: 0; } .working-process.large-circle li a { height: 120px; line-height: 130px; width: 120px; border-radius: 50%; } .working-process.large-circle li a i { font-size: 28px; } .working-process.large-circle > li::before { margin-right: -60px; top: 60px; } .working-process.large-circle > li::after { margin-left: -64px; top: 60px; } .working-process.theme-colored li a { color: #fff; } /* * home-boxes.less * ----------------------------------------------- */ .home-boxes .each-box { overflow-x: hidden; } .home-boxes .bg-icon { bottom: 0; color: #fff; font-size: 58px; line-height: 1; opacity: 0.3; position: absolute; right: 30px; transform: rotate(-40deg); } /* * Widgets.less * ----------------------------------------------- */ /* -------- Top Search Bar ---------- */ .search-form-wrapper { position: relative; /* form absolute */ } .search-form-wrapper.toggle { display: none; } .search-form-wrapper.toggle.active { display: block; } .search-form-wrapper form { padding: 10px; position: relative; } .search-form-wrapper form label { margin: 0px; position: absolute; right: 11px; top: 11px; } .search-form-wrapper form label:before { color: #555555; cursor: pointer; content: "\f002"; font-family: fontawesome; font-size: 16px; position: absolute; right: 13px; top: 6px; } .search-form-wrapper form input[type="text"] { background-color: #fff; border: 1px solid #c0c0c0; height: 46px; padding: 8px 17px; width: 100%; } .search-form-wrapper form input[type="submit"] { background-color: #fff; border-left: 1px solid #c0c0c0; border: none; height: 44px; width: 50px; text-indent: -999px; } .search-form-wrapper.form-absolute form { background-color: #333333; position: absolute; right: 0px; top: 12px; width: 370px; z-index: 99; } /* -------- Form Round ---------- */ .search-form-wrapper.round form input[type="text"] { border-radius: 30px; border-width: 4px; } .search-form-wrapper.round form input[type="submit"] { height: auto; width: auto; margin-right: 10px; margin-top: 10px; } .search-form-wrapper.round form label::before { color: #c0c0c0; } .widget .list-border li { border-bottom: 1px dashed #d3d3d3; } .widget.dark .list-border li { border-bottom: 1px dashed #404040; } /* -------- Footer & Sidebar Widgets ---------- */ .widget { margin-bottom: 30px; } .widget .widget-title { margin-top: 0; margin-bottom: 20px; } .widget ul li { margin-bottom: 5px; padding-bottom: 5px; } .widget ul.list li, .widget .post { margin-bottom: 8px; padding-bottom: 8px; } .widget.brochures > li { margin-bottom: 10px; padding: 10px; } .widget.brochures i { color: #666666; font-size: 16px; margin-right: 10px; } .widget.address > li { font-size: 13px; margin-bottom: 10px; padding: 5px 10px; } .widget.address > li i { font-size: 16px; margin-right: 8px; vertical-align: middle; } .widget .twitter-feed li { font-size: 13px; margin-bottom: 15px; margin-top: 0px; padding-left: 30px; } .widget .twitter-feed li.item { position: relative; } .widget .twitter-feed li::after { content: "\f099"; font-size: 24px; font-family: fontawesome; left: 0; position: absolute; top: 0; } .widget .styled-icons li { margin-bottom: 0; padding-bottom: 0; } .widget .styled-icons li a { margin-bottom: 0; } .widget .tags a { border: 1px solid #404040; display: inline-block; font-size: 12px; margin: 5px 4px 5px -2px; padding: 5px 10px; } .widget .tags a:hover { color: #fff; } .widget .search-input { background: transparent none repeat scroll 0 0; border: 1px solid #c0c0c0; border-radius: initial; box-shadow: none; height: 45px; padding: 10px; } .widget .search-button { background: transparent none repeat scroll 0 0; border: 1px solid #c0c0c0; border-radius: 0; height: 45px; } .widget .nav-tabs li { border-bottom: 1px solid transparent; margin-bottom: -2px; padding-bottom: 0; } .widget .nav-tabs li:hover { border-bottom: 1px solid transparent; } .widget .post-title a { font-size: 13px; letter-spacing: 0; } .widget .quick-contact-form .form-control { background-color: rgba(241, 241, 241, 0.8); border-color: #d3d3d3; color: #a9a9a9; } .widget .product-list .product-title { font-size: 14px; font-weight: 400; } .widget.dark .widget-title { color: #fff; } .widget.dark .tags a { border: 1px solid #404040; } .widget.dark .widget-image-carousel .title { color: #fff; } .widget.dark .search-input { border: 1px solid #333333; } .widget.dark .styled-icons li a:hover i { color: #fff; } .widget.dark .search-button { border: 1px solid #333333; } .widget.dark .widget-subscribe .subscribe-title { color: #fff; } .widget.dark .widget-subscribe .subscribe-sub-title { color: #666666; } .widget.dark .nav-tabs li { border-bottom: 1px solid transparent; margin-bottom: -2px; padding-bottom: 0; } .widget.dark .nav-tabs li:hover { border-bottom: 1px solid transparent; } .widget.dark .nav-tabs li:hover a { border: 1px solid #555555; } .widget.dark .nav-tabs li.active a { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; background: #333333 none repeat scroll 0 0; border-color: #555555 #555555 transparent; border-image: none; border-style: solid; border-width: 1px; } .widget.dark .product-title a { color: #808080; } .widget.dark .post-title a { color: #c0c0c0; } .widget.dark .tab-content { background: #333333 none repeat scroll 0 0; border: 1px solid #555555; } .widget.dark .quick-contact-form .form-control { background-color: rgba(5, 15, 5, 0.1); border-color: #333333; } .widget.dark .widget-title.line-bottom-theme-colored-2.border-bottom { border-bottom: 1px solid #444; } .widget.no-border ul li { border: none; padding-bottom: 0; margin-bottom: 0; } .widget ul.list li::before { display: none; } .widget.dark ul.list li::before { display: none; } /* --------Horizontal Contact Widget ---------- */ .horizontal-contact-widget { border-top: 1px dashed #666666; } .horizontal-contact-widget .each-widget::before { content: "\f111"; font-family: FontAwesome; left: 0; position: absolute; right: 0; top: -42px; } /* -------- Horizontal Contact Widget Dark ---------- */ .horizontal-contact-widget.dark { border-top: 1px dashed #333333; } .widget.dark .btn.btn-default { border-color: #333; } /* -------- Flickr-Feed ---------- */ #flickr-feed img { background: none repeat scroll 0 0 #000; float: left; height: 60px; margin: 0 5px 5px 0; padding: 0; width: 70px; } .text-hover-theme-colored { -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; } .widget .services-list li { background-color: #eeeeee; border-bottom: 1px solid #ddd; padding: 10px 15px 10px 20px; } .widget .services-list li.active { position: relative; border-bottom: 1px solid transparent !important; } .widget .services-list li.active a { color: #fff; } /* * Footer.less * ----------------------------------------------- */ .footer { background: #fafafa; } .footer a { color: #808080; } .footer a:focus, .footer a:hover, .footer a:active { color: #666666; } .footer .widget .widget-title { margin-top: 0px; } .footer .widget.dark .quick-contact-form button { border-color: #333333; color: #909090; } .footer .widget.dark .quick-contact-form button:hover { background-color: #eeeeee; border-color: #eeeeee; color: #333333; } /* -------- Custom Theme Style ---------- */ .footer-box { padding: 20px 15px; } .footer-box.icon-box { margin-bottom: 0; } .footer-box .title { color: #fff; margin-bottom: 5px; } .footer-box p { color: #eeeeee; line-height: 20px; } .footer-box p i { color: #fff; margin-left: 10px; } .footer-box-wrapper { margin-top: -55px; } .footer-news-letter .newsletter-form .form-control { background: #333333; border: medium none; height: 42px; margin-right: 10px; }
frontend/web/css/style-main.css
@charset "utf-8"; /*------------------------------------------------------------------ [Master Stylesheet] Project: LearnPress Version: 1.0 Primary use: LearnPress | Education & Courses HTML Template Author: ThemeMascot URL: http://themeforest.net/user/ThemeMascot -------------------------------------------------------------------*/ /* This file contains the common styles of this theme. */ /*------------------------------------------------------------------ [Table of contents] * Typography.less * Common.less * Extra.less * Header.less * Nav.less * Inner-Header-Title.less * Vertical-Nav.less * menu-full-page.less * Boxed-layout.less * Form.less * Side-Push-Panel.less * Box-Hover-Effect.less * Work-Gallery.less * gallery-isotope.less * Slider.less * Home.less * About.less * Contact.less * Services.less * Shop.less * Blog.less * Shortcode.less * Alerts.less * Buttons.less * Blockquote.less * Clients.less * Countdown.less * Countdown-Timer.less * Dividers.less * Facebook-Disqus-Comments.less * Faqs.less * Flexslider.less * Flip-Box.less * Font-Icons-Style.less * Funfacts.less * Icon-Boxes.less * Infinitescroll.less * Instagram.less * Light-Box.less * Map.less * Pegination.less * Pricing.less * Process-Steps.less * Progress-Bar.less * Promo.less * Section-Title.less * Separators.less * styled-icons.less * Tabs.less * Teams.less * Testimonials.less * Timetable-fullcalendar.less * Toggles-Accordions.less * Vertical-Timeline.less * Working-Process.less * Widgets.less * Footer * =============================================== */ @import "font-awesome.min.css"; @import "font-awesome-animation.min.css"; @import "pe-icon-7-stroke.css"; /* @import "../css/elegant-icons.css"; */ /* @import "../css/stroke-gap-icons.css"; */ @import "flaticon-set-carfixing.css"; @import "utility-classes.css"; @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,600,700,800|family=Raleway:400,200,300,500,600,700,800,900|family=Titillium+Web:400,200,300,600,700,900); /* * Typography.less * ----------------------------------------------- */ ::selection { background: #333333; color: #fff; text-shadow: none; } ::-moz-selection { background: #333333; /* Firefox */ color: #fff; text-shadow: none; } ::-webkit-selection { background: #333333; /* Safari */ color: #fff; text-shadow: none; } :active, :focus { outline: none !important; } html { font-size: 100%; } body { line-height: 1.7; color: #666666; font-size: 14px; font-family: 'Open Sans', sans-serif; background-color: #fff; } a { color: #808080; text-decoration: none; } a:hover, a:focus { color: #595959; text-decoration: none; } a img { border: none; } img { max-width: 100%; } iframe { border: none !important; } /* -------- Headings ---------- */ h1, .h1 { font-size: 3.4rem; } h2, .h2 { font-size: 28px; } h3, .h3 { font-size: 24px; } h4, .h4 { font-size: 18px; } h5, .h5 { font-size: 14px; } h6, .h6 { font-size: 12px; } h1, h2, .h1, .h2 { font-family: 'Open Sans', sans-serif; font-weight: 700; line-height: 1.42857143; color: #333333; } h1 small, h2 small, .h1 small, .h2 small, h1 .small, h2 .small, .h1 .small, .h2 .small { font-weight: normal; line-height: 1; color: #333333; } h1 a, h2 a, .h1 a, .h2 a { color: #333333; } h3, h4, h5, h6, .h3, .h4, .h5, .h6 { font-family: 'Open Sans', sans-serif; font-weight: 700; line-height: 1.42857143; color: #333333; } h3 small, h4 small, h5 small, h6 small, .h3 small, .h4 small, .h5 small, .h6 small, h3 .small, h4 .small, h5 .small, h6 .small, .h3 .small, .h4 .small, .h5 .small, .h6 .small { font-weight: normal; line-height: 1; color: #333333; } h3 a, h4 a, h5 a, h6 a, .h3 a, .h4 a, .h5 a, .h6 a { color: #333333; } /* -------- Body Text ---------- */ p, pre, ul, ol, dl, dd, blockquote, address, table, fieldset, form { margin-bottom: 10px; } /* -------- Custom Font Family ---------- */ .font-opensans { font-family: 'Open Sans', sans-serif; } .font-raleway { font-family: 'Raleway', sans-serif; } .font-titillium { font-family: 'Titillium Web', sans-serif; } /* breadcrumb */ .breadcrumb { background-color: transparent; padding-left: 0; text-align: center; } .breadcrumb > li + li::before { content: "\f22d"; font-family: fontawesome; font-size: 9px; } .breadcrumb li.active { color: #111111; } .breadcrumb.white li.active { color: #fff; } .breadcrumb.white li a { color: #808080; } @media only screen and (min-width: 768px) { .breadcrumb.text-right { text-align: right !important; } } /*Drop Caps*/ .drop-caps p { text-align: justify; } .drop-caps p:first-child:first-letter { color: #111111; display: block; float: left; font-size: 48px; line-height: 48px; margin: 6px 3px; padding: 10px 18px; } .drop-caps.text-colored p:first-child:first-letter { display: block; float: left; font-size: 48px; line-height: 48px; margin: 6px 3px; padding: 10px 18px; } .drop-caps.border p:first-child:first-letter { border: 1px solid; margin: 8px 16px 0 0; padding: 15px 20px; } .drop-caps.border-rounded p:first-child:first-letter { border: 1px solid; border-radius: 50%; margin: 8px 16px 0 0; padding: 15px 20px; } .drop-caps.colored-square p:first-child:first-letter { color: #fff; margin: 8px 16px 0 0; padding: 15px 20px; } .drop-caps.colored-rounded p:first-child:first-letter { color: #fff; margin: 8px 16px 0 0; padding: 15px 20px; border-radius: 50%; } .drop-caps.dark-square p:first-child:first-letter { background: #222222; color: #fff; margin: 8px 16px 0 0; padding: 15px 20px; } .drop-caps.dark-rounded p:first-child:first-letter { background: #222222; color: #fff; margin: 8px 16px 0 0; padding: 15px 20px; border-radius: 50%; } /*Text Highlight*/ .text-highlight { background: none repeat scroll 0 0 #111111; border-radius: 4px; color: #fff; padding: 0 5px 3px; } .text-highlight.light { background: #808080; } /* * common.less * ----------------------------------------------- */ /* -------- Basic Structure ---------- */ html { font-size: 100%; max-width: 100%; } @media only screen and (max-width: 991px) { html { font-size: 90%; } } @media only screen and (max-width: 767px) { html { font-size: 85%; } } @media only screen and (max-width: 479px) { html { font-size: 80%; } } html, html a { -webkit-font-smoothing: antialiased; } body { max-width: 100%; overflow-x: hidden; } img { max-width: 100%; } ul, ol { list-style: none; margin: 0; padding: 0; } .fluid-video-wrapper { padding: 0; position: relative; width: 100%; } iframe { border: none; width: 100%; } .lead { font-size: 18px; } .text-highlight { background: none repeat scroll 0 0 #111111; border-radius: 4px; color: #fff; padding: 0 5px 3px; } .text-highlight.light { background: #808080; } .inline-block { display: inline-block; } .display-block { display: block; } .fullwidth { width: 100%; } .bg-hover-theme-colored { -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; } /* Text-decoration */ .text-underline { text-decoration: underline; } /* -------- Line-Bottom ---------- */ .heading-line-bottom { border-bottom: 1px dashed #808080; display: inline-block; margin: 0; position: relative; margin: 20px 0; } .heading-line-bottom::after { content: ""; height: 2px; left: 0; position: absolute; top: 4px; width: 20px; } .heading-title { margin-top: 10px; } .line-bottom { position: relative; margin-bottom: 30px; padding-bottom: 10px; } .line-bottom:after { bottom: -1px; content: ""; height: 2px; left: 0; position: absolute; width: 50px; } .line-bottom-centered { position: relative; margin: 10px 0 20px; } .line-bottom-centered:after { background: #2b96cc none repeat scroll 0 0; bottom: -8px; content: ""; height: 1px; left: 0; margin-left: auto; margin-right: auto; margin-top: 0; position: absolute; right: 0; width: 30px; } .title-icon [class^="flaticon-"]::after, .title-icon [class^="flaticon-"]::before { font-size: 48px; margin-left: 10px; } .title-icon { margin: 0 auto; max-width: 160px; position: relative; } .title-icon::after { content: ""; height: 2px; left: 24px; position: absolute; top: 10px; width: 30px; } .title-icon::before { content: ""; height: 2px; position: absolute; right: 20px; top: 10px; width: 30px; } /* -------- List ---------- */ ul, ol { list-style: none; margin: 0; padding: 0; } ul ul, ol ul { margin-left: 15px; } ul.list { list-style: outside none none; margin-top: 13px; padding-left: 0; } ul.list li { margin: 5px 0; font-weight: 500; padding-left: 15px; position: relative; } ul.list li:hover:before { background: none; border-color: transparent; } ul.list li a { text-decoration: none; -webkit-transition: all 300ms ease-in; -o-transition: all 300ms ease-in; transition: all 300ms ease-in; } /* -------- List White ---------- */ ul.list.list-white li:before { color: #fff; } ul.list.list-white li:hover:before { background: none; border-color: transparent; } ul.list.list-white li a { color: #fff; text-decoration: none; -webkit-transition: all 300ms ease-in; -o-transition: all 300ms ease-in; transition: all 300ms ease-in; } /* -------- List border bottom ---------- */ ul.list-border-bottom li { border-bottom: 1px solid #eeeeee; padding-bottom: 10px; } ul.list.list-border-bottom li:last-child { border-bottom: none; } ul.list-border-bottom.no-padding li { padding-bottom: 0px; } ul.list-border-bottom.no-padding li:last-child { border-bottom: none; } /* -------- List Icons ---------- */ .list-border li { border-bottom: 1px dashed #d3d3d3; padding: 10px 0; } .dark .list-border li { border-bottom: 1px dashed #333333; } .list-icon li { font-size: 14px; margin: 0; } .list-icon li i { color: #555555; font-size: 14px; height: 28px; line-height: 28px; margin: 5px 10px 5px 0; text-align: center; width: 28px; } .list-icon.square li i { background: #c0c0c0; color: #555555; font-size: 12px; height: 28px; line-height: 28px; margin: 5px 10px 5px 0; text-align: center; width: 28px; } .list-icon.rounded li i { color: #555555; background: #c0c0c0; border-radius: 50%; font-size: 12px; height: 28px; line-height: 28px; margin: 5px 10px 5px 0; text-align: center; width: 28px; } .list-icon.theme-colored.square li i { color: #fff; } .list-icon.theme-colored.rounded li i { color: #fff; } /* -------- Personal Info List ---------- */ .list-info li { clear: both; position: relative; } .list-info li label { display: inline-block; font-weight: bold; padding: 5px 0 0; } .list-info li span { left: 110px; padding: 5px 0; position: absolute; } .list-features { -moz-column-count: 3; column-count: 3; } .list-dashed > article { border-bottom: 1px dashed #d3d3d3 !important; margin-bottom: 7px; padding-bottom: 7px; } .list-dashed > div { border-bottom: 1px dashed #d3d3d3 !important; margin-bottom: 7px; padding-bottom: 7px; } .list-dashed > li { border-bottom: 1px dashed #d3d3d3 !important; margin-bottom: 7px; padding-bottom: 7px; } .list-dashed.dark-dash > article { border-bottom: 1px dashed #333333 !important; } .list-dashed.dark-dash > div { border-bottom: 1px dashed #333333 !important; } .list-dashed.dark-dash > li { border-bottom: 1px dashed #333333 !important; } ul.list.check li:before { content: "\f00c"; font-family: fontawesome; font-size: 12px; } ul.list.angle-double-right li:before { content: "\f101"; font-family: fontawesome; font-size: 12px; } ul.list.angle-right li:before { content: "\f105"; font-family: fontawesome; } ul.list.check-circle li:before { content: "\f058"; font-family: fontawesome; font-size: 14px; } /* -------- Call To Actions ---------- */ .call-to-action { width: 100%; padding-bottom: 20px; padding-top: 20px; } /* -------- Section & Divider ---------- */ section { position: relative; } section > .container, section > .container-fluid { padding-top: 60px; padding-bottom: 60px; } /* -------- Background Video ---------- */ .bg-video { height: 100%; position: absolute; text-align: center; width: 100%; z-index: -1; } .bg-video .video { height: 100%; left: 0; margin: 0!important; position: relative; top: 0; width: 100%; } .bg-video .video .mbYTP_wrapper { z-index: -1 !important; } /* -------- Box Table ---------- */ .display-table-parent { height: 100%; left: 0; position: absolute; top: 0; width: 100%; } .display-table { display: table; height: 100%; position: relative; width: 100%; } .display-table-cell { display: table-cell; height: 100%; vertical-align: middle; } /* -------- Scroll To Top ---------- */ .scrollToTop { background: rgba(0, 0, 0, 0.1); bottom: 15px; display: none; height: 50px; padding: 2px; position: fixed; right: 15px; text-align: center; text-decoration: none; width: 50px; z-index: 99999; } .scrollToTop i { color: #fff; font-size: 42px; } .scrollToTop:hover { background: rgba(0, 0, 0, 0.6); text-decoration: none; } /* -------- magnific popup ---------- */ .mfp-close-btn-in .mfp-close { color: #eee; font-size: 64px; } /* * Extra.less * ----------------------------------------------- */ /* -------- Heading Style ---------- */ .heading-border { border-bottom: 1px solid #d3d3d3; margin: 30px 0; padding: 20px 0; } /* -------- FullCalendar - Plugin ---------- */ .fc-day-number { color: #333333; } .fc-day-number.fc-other-month { opacity: 0.4; } /* scrolltofixed-container */ .scrolltofixed-container { position: static; } @media only screen and (max-width: 767px) { .scrolltofixed-container .scrolltofixed { position: static !important; } .scrolltofixed-container .scrolltofixed + div { display: none !important; } } /* * Overlays.less * ----------------------------------------------- */ .layer-overlay { position: relative; /* overlay-dark */ /* overlay-white */ } .layer-overlay::before { background: rgba(17, 17, 17, 0.5) none repeat scroll 0 0; content: " "; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 0; } .layer-overlay.overlay-light::before { background-color: rgba(255, 255, 255, 0.4); } .layer-overlay.overlay-lighter::before { background-color: rgba(255, 255, 255, 0.3); } .layer-overlay.overlay-deep::before { background-color: rgba(255, 255, 255, 0.9); } .layer-overlay.overlay-dark::before { background-color: rgba(17, 17, 17, 0.85); } .layer-overlay.overlay-dark-1::before { background-color: rgba(17, 17, 17, 0.1); } .layer-overlay.overlay-dark-2::before { background-color: rgba(17, 17, 17, 0.2); } .layer-overlay.overlay-dark-3::before { background-color: rgba(17, 17, 17, 0.3); } .layer-overlay.overlay-dark-4::before { background-color: rgba(17, 17, 17, 0.4); } .layer-overlay.overlay-dark-5::before { background-color: rgba(17, 17, 17, 0.5); } .layer-overlay.overlay-dark-6::before { background-color: rgba(17, 17, 17, 0.6); } .layer-overlay.overlay-dark-7::before { background-color: rgba(17, 17, 17, 0.7); } .layer-overlay.overlay-dark-8::before { background-color: rgba(17, 17, 17, 0.8); } .layer-overlay.overlay-dark-9::before { background-color: rgba(17, 17, 17, 0.9); } .layer-overlay.overlay-white::before { background-color: rgba(255, 255, 255, 0.4); } .layer-overlay.overlay-white-1::before { background-color: rgba(255, 255, 255, 0.1); } .layer-overlay.overlay-white-2::before { background-color: rgba(255, 255, 255, 0.2); } .layer-overlay.overlay-white-3::before { background-color: rgba(255, 255, 255, 0.3); } .layer-overlay.overlay-white-4::before { background-color: rgba(255, 255, 255, 0.4); } .layer-overlay.overlay-white-5::before { background-color: rgba(255, 255, 255, 0.5); } .layer-overlay.overlay-white-6::before { background-color: rgba(255, 255, 255, 0.6); } .layer-overlay.overlay-white-7::before { background-color: rgba(255, 255, 255, 0.7); } .layer-overlay.overlay-white-8::before { background-color: rgba(255, 255, 255, 0.8); } .layer-overlay.overlay-white-9::before { background-color: rgba(255, 255, 255, 0.9); } .layer-overlay.layer-pattern::before { background-image: url(../images/pattern1.png); background-color: rgba(0, 0, 0, 0.6); } .layer-overlay.layer-pattern2::before { background-image: url(../images/pattern2.png); background-color: rgba(0, 0, 0, 0.8); } .layer-overlay.layer-pattern3::before { background-image: url(../images/pattern3.png); background-color: rgba(0, 0, 0, 0.8); } .layer-overlay.maximage-layer-overlay::before { z-index: 1; } .layer-overlay.overlay-blue::before { background-color: rgba(1, 162, 208, 0.9); } .layer-overlay.overlay-blue-light::before { background-color: rgba(1, 162, 208, 0.45); } .layer-overlay.overlay-pink::before { background-color: rgba(235, 110, 142, 0.9); } .layer-overlay.overlay-pink-light::before { background-color: rgba(235, 110, 142, 0.45); } .layer-overlay.overlay-brown::before { background-color: rgba(60, 171, 111, 0.9); } .layer-overlay.overlay-brown-light::before { background-color: rgba(60, 171, 111, 0.45); } .layer-overlay.overlay-yellow::before { background-color: rgba(255, 187, 34, 0.9); } .layer-overlay.overlay-yellow-light::before { background-color: rgba(255, 187, 34, 0.45); } .layer-overlay.overlay-green::before { background-color: rgba(16, 196, 92, 0.9); } .layer-overlay.overlay-green-light::before { background-color: rgba(16, 196, 92, 0.45); } .layer-overlay.overlay-theme-color-1::before { background-color: rgba(173, 216, 230, 0.9); } .layer-overlay.overlay-theme-color-2::before { background-color: rgba(230, 173, 188, 0.9); } .layer-overlay.overlay-theme-color-3::before { background-color: rgba(230, 216, 173, 0.9); } .half-divider .overlay-theme-color-1, .half-divider .overlay-theme-color-2, .half-divider .overlay-theme-color-3 { content: ""; height: 100%; position: absolute; right: 0; top: 0; width: 50%; } /* * Header.less * ----------------------------------------------- */ .header-top { padding: 5px 0; } .header-top .header-widget .styled-icons a i:hover { background: none; } .header-top .header-widget .list-border li { border-right: 1px solid rgba(0, 0, 0, 0.06); padding: 5px 15px; } .header-top .header-widget .list-border li:last-child { border-right: 0; } @media only screen and (max-width: 767px) { .header-top .header-widget .contact-info { margin-bottom: 20px; } .header-top .header-widget .contact-info li { display: block; text-align: center; } } .menuzord-brand img { max-height: 58px; } /* -------- Custom theme style ---------- */ .header-nav .header-nav-wrapper .menuzord { padding: 0; } .header-nav.navbar-transparent.animated-active { background-color: rgba(0, 0, 0, 0.25); } /* * nav.less * ----------------------------------------------- */ /* -------- nav sidebar ---------- */ .nav-sidebar li { background: #f1f1f1; padding-bottom: 0; } .nav-sidebar li a { border-radius: 0; } .nav-pills li a:hover, .nav-pills li.active > a, .nav-pills li.active > a:hover, .nav-pills li.active > a:focus { background: #d3d3d3; color: #777777; } /* -------- Header Nav ---------- */ .header-nav { position: relative; } .header-nav .header-nav-absolute-wrapper { width: 100%; } .header-nav .header-nav-wrapper .menuzord { padding: 0; } /* -------- Menuzord ---------- */ .menuzord-menu > li { padding: 24px 0; } .menuzord-menu ul.dropdown { top: 83px; } .menuzord-menu > li > a { font-size: 13px; color: #333333; } .menuzord .menuzord-menu > li.active > a i, .menuzord .menuzord-menu > li:hover > a i, .menuzord .menuzord-menu ul.dropdown li:hover > a i { color: #fff; } .menuzord-menu ul.dropdown { border: 1px solid #eee; } .menuzord-menu ul.dropdown li { margin: 0; } .menuzord-menu ul.dropdown li a { color: #666666; font-size: 12px; font-weight: 600; padding: 7px 25px 7px 22px; } .menuzord-menu ul.dropdown li .indicator { top: 4px; } /* -------- Megamenu-Row ---------- */ .menuzord-menu > li > .megamenu .megamenu-row li { border: 0 none; clear: both; font-size: 12px; margin: 0; padding: 2px; position: relative; width: 100%; } .menuzord-menu > li > .megamenu .megamenu-row li a { display: block; padding: 8px 10px; -webkit-transition: padding 0.2s linear; -o-transition: padding 0.2s linear; transition: padding 0.2s linear; } .menuzord-menu > li > .megamenu .megamenu-row li.active > a, .menuzord-menu > li > .megamenu .megamenu-row li:hover > a { color: #111; padding-left: 15px; } .menuzord-menu > li > .megamenu .megamenu-row li a i { color: #444; } .menuzord-menu > li > .megamenu .megamenu-row li.active a i, .menuzord-menu > li > .menuzord-menu > li > .megamenu .megamenu-row li:hover a i { color: #fff; } @media only screen and (max-width: 900px) { .menuzord-menu { background: #fff; } } /* -------- Scrolltofixed ---------- */ .header-nav .header-nav-wrapper.scroll-to-fixed-fixed.scroll-to-fixed-fixed { border-bottom: 1px solid #eee; } .header-nav .header-nav-absolute-wrapper.scroll-to-fixed-fixed.scroll-to-fixed-fixed .menuzord { border-right: 1px solid #eee; border-bottom: 1px solid #eee; border-left: 1px solid #eee; } .header .inner-sticky-wrapper { height: 80px; } @media only screen and (min-width: 901px) { .header-nav .header-nav-absolute-wrapper { bottom: -36px; left: 0; margin: 0 auto; position: absolute; right: 0; z-index: 1111; } .header-nav .header-nav-absolute-wrapper.scroll-to-fixed-fixed.scroll-to-fixed-fixed { bottom: auto; } } /* -------- Navbar Fixed ---------- */ .header-nav { -webkit-transition: all 0.4s ease-in-out 0s; -o-transition: all 0.4s ease-in-out 0s; transition: all 0.4s ease-in-out 0s; } .header-nav.navbar-fixed-top { left: 0; position: fixed; right: 0; width: 100%; z-index: 1030; } /* -------- Navbar Sticky Animated ---------- */ .navbar-sticky-animated .header-nav-wrapper .container { -webkit-transition: all 0.4s ease-in-out 0s; -o-transition: all 0.4s ease-in-out 0s; transition: all 0.4s ease-in-out 0s; } /* -------- Header White ---------- */ .header-nav.navbar-white { background-color: rgba(255, 255, 255, 0.95); border: medium none; } .header-nav.navbar-white .menuzord { background: transparent; } /* -------- Header Transparent ---------- */ .header-nav.navbar-transparent .menuzord { background: transparent; } .header-nav.navbar-transparent .header-nav-wrapper { border-bottom: 1px solid #eee; } .header-nav.navbar-transparent.animated-active { background-color: rgba(0, 0, 0, 0.1); } .header-nav.navbar-transparent.animated-active .header-nav-wrapper { border-bottom: none; } .header-nav.navbar-transparent.animated-active .menuzord-menu > li > a { color: #fff; } @media only screen and (max-width: 900px) { .header-nav.navbar-transparent.animated-active .menuzord-menu > li > a { color: #888; } } /* * Topbar.less * ----------------------------------------------- */ #top-search-bar { background: #eee; } #top-search-bar form { position: relative; } #top-search-bar .form-control { background: #eee; border: none; box-shadow: none; font-size: 18px; height: 72px; margin: 0; width: 100%; } #top-search-bar .search-close { background: none repeat scroll 0 0 transparent; border: medium none; color: #999; cursor: pointer; font-size: 14px; height: 40px; line-height: 38px; margin-top: -20px; outline: medium none; overflow: hidden; position: absolute; right: 1px; top: 50%; width: 42px; } #top-search-bar button i { color: #777; } /* * Inner-Header-Title.less * ----------------------------------------------- */ .inner-header .title { font-size: 34px; font-family: 'Titillium Web', sans-serif; } /* * Vertical-Nav.less * ----------------------------------------------- */ .vertical-nav { /* vertical-nav-black*/ } .vertical-nav .header { width: 260px; position: fixed; top: 0; left: 0; height: 100%; background: #fff; z-index: 101; padding: 0; -webkit-transition: none; -o-transition: none; transition: none; background-size: cover !important; } .vertical-nav .main-content, .vertical-nav .footer { margin-left: 260px; } .vertical-nav .container { max-width: 940px; } .vertical-nav .menuzord { background: none; } .vertical-nav .menuzord .menuzord-menu ul.dropdown li:hover > a { background: #eeeeee none repeat scroll 0 0; color: #111111; } .vertical-nav .menuzord-menu li { padding: 5px 0; position: relative; width: 100%; } .vertical-nav .menuzord-menu li .indicator { float: right; } .vertical-nav .menuzord-menu li a { padding-left: 30px; width: 100%; } .vertical-nav .menuzord-menu ul.dropdown, .vertical-nav .menuzord-menu .megamenu { left: 100%; top: 4px; } .vertical-nav .menuzord-brand img { max-height: none; } .vertical-nav .vertical-nav-black { background: #111111; } .vertical-nav .vertical-nav-black .menuzord-menu ul.dropdown { background: #111111; border-color: #222222; } .vertical-nav .vertical-nav-black .menuzord-menu ul.dropdown li a { background: #111111; } .vertical-nav .vertical-nav-black .menuzord-menu ul.dropdown li a .indicator i { color: #fff; } .vertical-nav .vertical-nav-black .menuzord-menu ul.dropdown li:hover > a { background: #111111 none repeat scroll 0 0; color: #fff; } .vertical-nav .vertical-nav-black .menuzord-menu > li > a { color: #808080; } .vertical-nav.vertical-nav-right .header { left: auto; right: 0; } .vertical-nav.vertical-nav-right .main-content, .vertical-nav.vertical-nav-right .footer { padding-left: auto; margin-right: 260px; padding-top: 0; } .vertical-nav.vertical-nav-right .menuzord-menu ul.dropdown, .vertical-nav.vertical-nav-right .menuzord-menu .megamenu { left: auto !important; right: 100% !important; top: 0; } @media only screen and (max-width: 1199px) { .vertical-nav .container { width: 100%; } } @media only screen and (max-width: 900px) { .vertical-nav .header { border: 0; padding: 0; position: relative; width: 100%; } .vertical-nav .vertical-nav-widget { display: none; } .vertical-nav .menuzord { background: #fff; } .vertical-nav .vertical-nav-black .menuzord { background: none; } .vertical-nav .menuzord-brand { margin: 0 !important; padding: 0 !important; } .vertical-nav .menuzord-brand img { max-height: 65px !important; padding: 10px; } .vertical-nav .header-nav-wrapper { background: #111111 none repeat scroll 0 0; position: fixed; top: 0; width: 100%; } .vertical-nav .vertical-nav-black .menuzord .menuzord-menu li > a, .vertical-nav .vertical-nav-black .menuzord .menuzord-menu li .indicator { border-color: #222222; } .vertical-nav .main-content, .vertical-nav .footer { padding-left: 0; } .vertical-nav.vertical-nav-right .main-content, .vertical-nav.vertical-nav-right .footer { margin-right: 0; } } /* * menu-full-page.less * ----------------------------------------------- */ /* menu-full-page plugin code */ .menu-full-page #fullpage-nav { background: rgba(255, 255, 255, 0.97); z-index: -1; position: fixed; /*left: -100%;*/ /*left or right and the width of your navigation panel*/ left: 0 !important; /*left or right and the width of your navigation panel*/ opacity: 0; width: 100%; /*should match the above value*/ -webkit-transition: all 0.5s ease-in-out !important; -moz-transition: all 0.5s ease-in-out !important; -ms-transition: all 0.5s ease-in-out !important; -o-transition: all 0.2s ease-in-out !important; transition: all 0.5s ease-in-out !important; } .menu-full-page #fullpage-nav ul { margin-top: 50px; -webkit-transition: all 0.7s ease-in-out !important; -moz-transition: all 0.7s ease-in-out !important; -ms-transition: all 0.7s ease-in-out !important; -o-transition: all 0.7s ease-in-out !important; transition: all 0.7s ease-in-out !important; } .menu-full-page #fullpage-nav li { text-align: center; transition: all 0.4s ease; padding: 10px 0; position: relative; } .menu-full-page #fullpage-nav li a { color: #111; font-size: 18px; font-family: 'Open Sans', sans-serif; text-decoration: none; font-weight: 400; text-transform: uppercase; padding: 0; position: relative; } .menu-full-page #fullpage-nav li a:hover { color: #888; -webkit-transition: color 2s time; -o-transition: color 2s time; transition: color 2s time; } .menu-full-page #fullpage-nav li:hover:after a { position: absolute; content: ''; color: #FFF; } .menu-full-page #fullpage-nav ul ul { display: none; } .menu-full-page #fullpage-nav ul ul li a { font-size: 13px; } .menu-full-page #fullpage-nav ul ul li a:hover { color: #888; } .menu-full-page .fullpage-nav-toggle.menu-open + #fullpage-nav { opacity: 1; z-index: 998; } .menu-full-page .fullpage-nav-toggle.menu-open + #fullpage-nav > ul { margin-top: 70px; } .menu-full-page .fullpage-nav-toggle { z-index: 999; display: block; position: fixed; top: 0; right: 0; overflow: hidden; margin: 0; padding: 0; width: 70px; height: 70px; font-size: 0; text-indent: -9999px; -webkit-appearance: none; -moz-appearance: none; appearance: none; box-shadow: none; border-radius: none; border: none; cursor: pointer; -webkit-transition: background 0.3s; transition: background 0.3s; background-color: transparent; /* active state, i.e. menu open */ } .menu-full-page .fullpage-nav-toggle i { text-decoration: none; font-size: 40px; color: #fff; } .menu-full-page .fullpage-nav-toggle:focus { outline: none; } .menu-full-page .fullpage-nav-toggle span { display: block; position: absolute; top: 45px; left: 18px; right: 18px; height: 4px; border-radius: 2px; background: #888; -webkit-transition: background 0 0.3s; transition: background 0 0.3s; } .menu-full-page .fullpage-nav-toggle span:before, .menu-full-page .fullpage-nav-toggle span:after { position: absolute; display: block; left: 0; width: 100%; height: 4px; border-radius: 0; background-color: #888; content: ""; -webkit-transition-duration: 0.3s, 0.3s; transition-duration: 0.3s, 0.3s; -webkit-transition-delay: 0.3s, 0; transition-delay: 0.3s, 0; } .menu-full-page .fullpage-nav-toggle span:before { top: -12px; -webkit-transition-property: top, -webkit-transform; transition-property: top, transform; } .menu-full-page .fullpage-nav-toggle span:after { bottom: -12px; -webkit-transition-property: bottom, -webkit-transform; transition-property: bottom, transform; } .menu-full-page .fullpage-nav-toggle.menu-open { background-color: transparent; } .menu-full-page .fullpage-nav-toggle.menu-open span { background: none; } .menu-full-page .fullpage-nav-toggle.menu-open span:before, .menu-full-page .fullpage-nav-toggle.menu-open span:after { background-color: #111; -webkit-transition-delay: 0, 0.3s; transition-delay: 0, 0.3s; } .menu-full-page .fullpage-nav-toggle.menu-open span:before { top: 0; -webkit-transform: rotate(45deg); -ms-transform: rotate(45deg); transform: rotate(45deg); } .menu-full-page .fullpage-nav-toggle.menu-open span:after { bottom: 0; -webkit-transform: rotate(-45deg); -ms-transform: rotate(-45deg); transform: rotate(-45deg); } /* menu-full-page custom code */ .menu-full-page .header #fullpage-nav li { padding: 5px 0; } .menu-full-page .header #fullpage-nav li a { background: none; display: inline; font-size: 18px; text-transform: none; } .menu-full-page .header #fullpage-nav ul ul { margin-top: 0; } .menu-full-page .header #fullpage-nav ul ul li { padding: 3px 0; } .menu-full-page .header #fullpage-nav ul ul li a { font-size: 12px; } .menu-full-page .header #fullpage-nav ul li .dropdown { background: none; box-shadow: none; border: none; float: none; padding: 0; position: relative; max-height: 0; overflow: hidden; -webkit-transition: all 0.9s cubic-bezier(0.55, 0, 0.175, 1) !important; -moz-transition: all 0.9s cubic-bezier(0.55, 0, 0.175, 1) !important; -ms-transition: all 0.9s cubic-bezier(0.55, 0, 0.175, 1) !important; -o-transition: all 0.9s cubic-bezier(0.55, 0, 0.175, 1) !important; transition: all 0.9s cubic-bezier(0.55, 0, 0.175, 1) !important; display: block!important; visibility: visible; } .menu-full-page .header #fullpage-nav ul li:hover .dropdown { max-height: 700px; } /* * Boxed-layout.less * ----------------------------------------------- */ @media only screen and (min-width: 768px) { .boxed-layout .container { max-width: 1170px; padding-left: 30px; padding-right: 30px; } .boxed-layout .header, .boxed-layout .main-content, .boxed-layout .footer, .boxed-layout #footer { margin: 0 auto; max-width: 1170px; } } .boxed-layout .header, .boxed-layout section, .boxed-layout .footer, .boxed-layout #footer { background-color: #fff; } .boxed-layout .header .navbar-default { background-color: #fff; border-color: #fff; padding: 0; } .boxed-layout .header .navbar-default .navbar-nav > li > a { padding: 30px 5px; } .boxed-layout .header .navbar-default .navbar-collapse { background-color: #fff; border-color: #fff; margin-right: 30px; } .boxed-layout .header #header-logo { margin: 0; padding-top: 27px; } @media only screen and (max-width: 991px) { .boxed-layout { padding-top: 0; } .boxed-layout .header .navbar-default .navbar-nav > li > a { padding: 10px; } .boxed-layout .header .navbar-default .navbar-collapse { margin-right: 15px; } .boxed-layout .navbar-header { padding: 15px 0; } .boxed-layout .navbar-collapse .navbar-nav li a .caret { margin-right: 0; } } .boxed-layout.fullwidth .container { max-width: 1170px; padding-left: 30px; padding-right: 30px; } .boxed-layout.fullwidth .header, .boxed-layout.fullwidth .main-content, .boxed-layout.fullwidth .footer { margin: 0 auto; max-width: 1170px; } .boxed-layout.fullwidth .header, .boxed-layout.fullwidth section, .boxed-layout.fullwidth .footer { background-color: #fff; } .boxed-layout.fullwidth .header .navbar-default { background-color: #fff; border-color: #fff; padding: 0; } .boxed-layout.fullwidth .header .navbar-default .navbar-nav > li > a { padding: 30px 5px; } .boxed-layout.fullwidth .header .navbar-default .navbar-collapse { background-color: #fff; border-color: #fff; margin-right: 30px; } .boxed-layout.fullwidth .header #header-logo { margin: 0; padding-top: 27px; } @media only screen and (max-width: 991px) { .boxed-layout.fullwidth { padding-top: 0; } .boxed-layout.fullwidth .header .navbar-default .navbar-nav > li > a { padding: 10px; } .boxed-layout.fullwidth .header .navbar-default .navbar-collapse { margin-right: 15px; } .boxed-layout.fullwidth .navbar-header { padding: 15px 0; } .boxed-layout.fullwidth .navbar-collapse .navbar-nav li a .caret { margin-right: 0; } } .boxed-layout .service-block .thumb .desc { bottom: -34%; } .boxed-layout .service-block:hover .thumb .desc { bottom: 0; } /* * Form.less * ----------------------------------------------- */ /* -------- Form ---------- */ .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn { font-size: 14px; } .form-control { border-radius: 0; box-shadow: none; height: 45px; } label { font-weight: normal; } .form-control:focus, form input[type="text"]:focus, form input[type="email"]:focus, form input[type="number"]:focus, form input[type="url"]:focus, form input[type="search"]:focus, form input[type="tel"]:focus, form input[type="password"]:focus, form input[type="date"]:focus, form input[type="color"]:focus, form select:focus, form textarea:focus { color: #404040; border-color: rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); box-shadow: 0 0 3px rgba(0, 0, 0, 0.1); outline: none; } .form-transparent .form-control { background: transparent; color: #f7f7f7; } .form-transparent .form-control:focus, .form-transparent form input[type="text"]:focus, .form-transparent form input[type="email"]:focus, .form-transparent form input[type="number"]:focus, .form-transparent form input[type="url"]:focus, .form-transparent form input[type="search"]:focus, .form-transparent form input[type="tel"]:focus, .form-transparent form input[type="password"]:focus, .form-transparent form input[type="date"]:focus, .form-transparent form input[type="color"]:focus, .form-transparent form select:focus, .form-transparent form textarea:focus { color: #f7f7f7; } .form-transparent textarea.form-control, .form-white textarea.form-control { height: 150px; } .form-white .form-control { background: #fff; } .form-transparent.form-line .form-control { border: none; border-bottom: 1px solid #c0c0c0; padding-left: 0; } .form-transparent.form-line textarea.form-control { height: 70px; } form label { font-family: 'Titillium Web', sans-serif; font-size: 16px; font-weight: 600; margin-bottom: 10px; } /* form error */ form .form-control.error { border: 2px solid #ee163b; } form .error { color: #ee163b; } /* -------- Donation Form ---------- */ .donation-form .form-group label.radio-inline { color: #808080; } /*-------- form-text-white ---------*/ .form-text-white .form-group label { color: #fff; } /*-------- ddslick form ---------*/ .dd-container, .dd-select { width: 100%; } .dd-options { width: 100%; } .ui-widget-content { background: #2aa1c0 none repeat scroll 0 0; border: 1px solid #ddd; border-radius: 0; color: #333; height: 36px; margin-top: 6px; } .ui-widget-header { background: #fff none repeat scroll 0 0; } .ui-state-default { background-color: #eee; border: 1px solid #ccc; color: #202c45; font-weight: normal; } .ui-slider-horizontal .ui-slider-range-max { border-radius: 0; } .ui-state-active { background-color: #fff; border: 1px solid #ddd; } .ui-slider .ui-slider-handle { height: 50px; width: 20px; } .ui-slider-horizontal .ui-slider-handle { margin-left: -1px; } .ui-slider-horizontal .ui-slider-handle { top: -9px; } .control__indicator { height: 24px; width: 24px; } .control--checkbox .control__indicator::after { height: 10px; left: 10px; top: 5px; width: 6px; } .control.control--checkbox, .control.control--radio { display: inline-block; font-size: 16px; font-weight: 500; margin-bottom: 15px; margin-right: 12px; padding-left: 36px; } .control--radio .control__indicator::after { height: 6px; left: 9px; top: 9px; width: 6px; } /* * Side-Push-Panel.less * ----------------------------------------------- */ .side-push-panel { overflow-x: hidden; } .side-push-panel.fullwidth-page #wrapper { right: 0; position: relative; } .side-push-panel.fullwidth-page header .header-nav-wrapper.scroll-to-fixed-fixed .container { right: 0; } .side-push-panel.fullwidth-page.side-panel-left #wrapper { left: 0; right: auto; } .side-push-panel.fullwidth-page.side-panel-left header .header-nav-wrapper.scroll-to-fixed-fixed .container { left: 0; right: auto; } .side-push-panel.fullwidth-page.side-panel-open #wrapper { right: 300px; } .side-push-panel.fullwidth-page.side-panel-open header .header-nav-wrapper.scroll-to-fixed-fixed .container { right: 300px; } .side-push-panel.fullwidth-page.side-panel-left.side-panel-open #wrapper { left: 300px; right: auto; } .side-push-panel.fullwidth-page.side-panel-left.side-panel-open header .header-nav-wrapper.scroll-to-fixed-fixed .container { left: 300px; right: auto; } /* -------- Has Side Panel ---------- */ .side-push-panel.has-side-panel .menuzord .showhide { float: left; } /* -------- Body Overlay ---------- */ .has-side-panel .body-overlay { -webkit-transition: opacity 0.3s ease; -o-transition: opacity 0.3s ease; transition: opacity 0.3s ease; background-color: rgba(0, 0, 0, 0.6); height: 100%; left: 0; opacity: 0; pointer-events: none; position: fixed; top: 0; width: 100%; z-index: -1; } .has-side-panel.side-panel-open .body-overlay { opacity: 1; pointer-events: auto; z-index: 1111; } .side-panel-open:not(.device-xxs):not(.device-xs):not(.device-sm) .body-overlay:hover { cursor: url('../images/close.png') 15 15, default; } /* -------- Side Panel ---------- */ #side-panel { -webkit-backface-visibility: hidden; background-color: #f3f3f3; height: 100%; overflow: hidden; position: fixed; right: -300px; top: 0; width: 300px; z-index: 1112; -webkit-transition: all 0.4s ease; -o-transition: all 0.4s ease; transition: all 0.4s ease; } #side-panel .side-panel-wrap { bottom: 0; height: 100%; left: 0; overflow: auto; padding: 50px 70px 50px 40px; position: absolute; top: 0; width: 330px; } #side-panel .widget { border-top: 1px solid #eeeeee; margin-top: 40px; padding-top: 40px; width: 220px; } #side-panel .widget:first-child { border-top: 0; margin: 0; padding-top: 0; } .side-panel-open #side-panel { right: 0; } .side-panel-left #side-panel { left: -300px; right: auto; } .side-panel-left.side-panel-open #side-panel { left: 0; right: auto; } .device-touch #side-panel .side-panel-wrap { overflow-y: scroll; } /* -------- Side-Panel-Nav ---------- */ #side-panel .side-panel-nav .nav li a { padding: 5px 0; } #side-panel .side-panel-nav .nav li a:hover { background-color: transparent; color: #a9a9a9; } #side-panel .side-panel-nav .nav ul.tree { display: none; margin-left: 15px; } /* -------- Side-Panel-Trigger And Close ---------- */ #side-panel-trigger { cursor: pointer; display: block; float: right; margin-left: 10px; margin-right: 5px; margin-top: 25px; z-index: 11; } @media only screen and (max-width: 767px) { #side-panel-trigger { margin-top: 15px; } } #side-panel-trigger-close { left: 0; margin: 10px; position: absolute; top: 0; } /* -------- Transition ---------- */ .side-push-panel.fullwidth-page #wrapper, .side-push-panel.fullwidth-page header .header-nav-wrapper.scroll-to-fixed-fixed .container { -webkit-transition: all 0.4s ease; -o-transition: all 0.4s ease; transition: all 0.4s ease; } /* * Box-Hover-Effect.less * ----------------------------------------------- */ .box-hover-effect { position: relative; overflow: hidden; margin: 0; width: 100%; } .box-hover-effect img { position: relative; display: block; max-height: 100%; max-width: 100%; opacity: 1; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect .overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; backface-visibility: hidden; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect .overlay::before, .box-hover-effect .overlay::after { pointer-events: none; } .box-hover-effect .overlay .details { -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect .overlay .title { -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect .overlay .para { -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect .overlay .entry-meta { bottom: 10px; font-size: 70%; opacity: 0; position: absolute; width: 89%; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect .overlay .entry-meta.top { top: 10px; } .box-hover-effect .overlay .entry-meta i { color: #fff; } .box-hover-effect .overlay .icons { left: 0; opacity: 0; position: absolute; text-align: center; top: 40%; width: 100%; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .box-hover-effect:hover .overlay { background: rgba(0, 0, 0, 0.85); } .box-hover-effect:hover .overlay.white { background: rgba(255, 255, 255, 0.75); } .box-hover-effect:hover .overlay.black { background: rgba(0, 0, 0, 0.85); } .box-hover-effect:hover .overlay .entry-meta { opacity: 1; } .box-hover-effect:hover .overlay .icons { opacity: 1; } .box-hover-effect:hover .overlay .icons i { color: #fff; } .box-hover-effect:hover .overlay .icons.twin i { padding: 10px; } .box-hover-effect:hover .overlay .icons.bordered i { border: 1px solid #fff; } .box-hover-effect:hover .overlay .icons.bordered i.text-black { border-color: #000; } .shadow-overlay { background-image: url("../images/shadow-overlay.png"); background-position: center bottom; background-repeat: repeat-x; bottom: 0; color: #fff; height: 100%; left: 0; position: absolute; width: 100%; } /* Individual effects */ /* -------- effect1 ---------- */ .box-hover-effect.effect1 .thumb { position: relative; overflow: hidden; } .box-hover-effect.effect1 .thumb:before { background-color: rgba(255, 255, 255, 0.5); left: 0; content: ""; height: 100%; opacity: 0; position: absolute; top: 0; transition: all 0.3s ease-out 0s; -webkit-transition: all 0.3s ease-in-out 0s; -ms-transition: all 0.3s ease-in-out 0s; -webkit-transform: rotate(-70deg); -moz-transform: rotate(-70deg); -ms-transform: rotate(-70deg); -o-transform: rotate(-70deg); transform: rotate(-70deg); width: 200%; z-index: 1; } .box-hover-effect.effect1:hover .thumb:before { opacity: 1; } .box-hover-effect.effect1:hover .thumb img { -webkit-transform: scale(1.1); transform: scale(1.1); -webkit-transition: all 0.5s ease; transition: all 0.5s ease; } /* -------- effect2 ---------- */ .box-hover-effect.effect2 .thumb { position: relative; overflow: hidden; } .box-hover-effect.effect2 .overlay .overlay-details { opacity: 0; -webkit-transform: scale(0.8, 0.8); -ms-transform: scale(0.8, 0.8); -o-transform: scale(0.8, 0.8); transform: scale(0.8, 0.8); -webkit-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .box-hover-effect.effect2:hover .overlay-details { opacity: 1; -webkit-transform: scale(1, 1); -ms-transform: scale(1, 1); -o-transform: scale(1, 1); transform: scale(1, 1); } .box-hover-effect.effect2:hover .details { opacity: 0; } .box-hover-effect.effect2:hover img { -webkit-transform: scale(2); -ms-transform: scale(2); -o-transform: scale(2); transform: scale(2); -webkit-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } /* -------- effect3 ---------- */ .box-hover-effect.effect3 .overlay { position: relative; } .box-hover-effect.effect3 .thumb { position: relative; } .box-hover-effect.effect3 .thumb:after { background-color: rgba(255, 255, 255, 0.15); bottom: 0; content: ""; height: 0; position: absolute; right: 0; -webkit-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; width: 0; } .box-hover-effect.effect3 .thumb:before { background-color: rgba(255, 255, 255, 0.15); left: 0; content: ""; height: 0; position: absolute; top: 0; -webkit-transition: all 0.3s ease-out 0s; -o-transition: all 0.3s ease-out 0s; transition: all 0.3s ease-out 0s; width: 0; z-index: 1; } .box-hover-effect.effect3:hover .thumb:before, .box-hover-effect.effect3:hover .thumb:after { height: 100%; width: 100%; -webkit-transition: all 0.4s ease-out 0s; -o-transition: all 0.4s ease-out 0s; transition: all 0.4s ease-out 0s; } /* -------- Custom Theme Style ---------- */ .box-hover-effect.effect2 .overlay.white .overlay-details p { color: #777777; } /* * Work-Gallery.less * ----------------------------------------------- */ .work-gallery { margin: 0 auto 30px; max-width: 400px; } .work-gallery .gallery-thumb { overflow: hidden; position: relative; } .work-gallery .gallery-bottom-part { background-color: #f7f7f7; padding: 10px 10px 16px; } .work-gallery .gallery-thumb .gallery-overlay { height: 100%; opacity: 0; position: absolute; top: 0; -webkit-transform: scale(0.2); -ms-transform: scale(0.2); -o-transform: scale(0.2); transform: scale(0.2); -webkit-transition: all 300ms ease-in-out 0s; -o-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s; width: 100%; } .work-gallery:hover .gallery-thumb .gallery-overlay { opacity: 1; -webkit-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); } .gallery-contect { height: 100%; opacity: 0; padding: 30px; position: absolute; top: 0; -webkit-transform: scale(0.2); -ms-transform: scale(0.2); -o-transform: scale(0.2); transform: scale(0.2); -webkit-transition: all 100ms ease-in-out 0s; -o-transition: all 100ms ease-in-out 0s; transition: all 100ms ease-in-out 0s; width: 100%; } .work-gallery:hover .gallery-thumb .gallery-contect { opacity: 1; -webkit-transform: scale(1); -ms-transform: scale(1); -o-transform: scale(1); transform: scale(1); } .work-gallery .gallery-thumb .styled-icons a { border-color: #fff; height: 36px; width: 36px; line-height: 34px; } .work-gallery .gallery-thumb .styled-icons a i { color: #fff; } .work-gallery .gallery-thumb .styled-icons a:hover i { color: #fff; } .work-gallery .gallery-thumb .styled-icons a:hover { color: #fff; -webkit-transition: all 100ms ease-in-out 0s; -o-transition: all 100ms ease-in-out 0s; transition: all 100ms ease-in-out 0s; } .work-gallery .gallery-thumb .gallery-contect .styled-icons { left: 0; position: absolute; right: 0; text-align: center; top: 45%; } .work-gallery:hover .gallery-bottom-part { -webkit-transition: all 300ms ease-in-out 0s; -o-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s; } .work-gallery:hover .gallery-bottom-part .title { color: #fff; } .work-gallery:hover .gallery-bottom-part .sub-title { color: #fff; } /* * gallery-isotope.less * ----------------------------------------------- */ /* -------- Portfolio Isotop Filter ---------- */ .portfolio-filter { margin-bottom: 30px; } .portfolio-filter a { border-left: 3px solid transparent; background-color: #f8f8f8; display: inline-block; float: none; font-size: 16px; font-weight: 400; line-height: normal; margin-right: 5px; outline: medium none; padding: 5px 15px; -webkit-transition: all 100ms ease-in-out 0s; -o-transition: all 100ms ease-in-out 0s; transition: all 100ms ease-in-out 0s; } .portfolio-filter a.active, .portfolio-filter a:hover { color: #fff !important; } /* -------- Portfolio Isotop Gallery ---------- */ .gallery-isotope { /*gutter*/ /* by default 4 grids */ /*portfolio 2 grids*/ /*portfolio 2 grids*/ /*portfolio 3 grids*/ /*portfolio 4 grids*/ /*portfolio 5 grids*/ /*portfolio 6 grids*/ /*portfolio 7 grids*/ /*portfolio 8 grids*/ /*portfolio 9 grids*/ /*portfolio 10 grids*/ } .gallery-isotope.gutter .gallery-item { padding-right: 5px; padding-bottom: 5px; } .gallery-isotope.gutter-small .gallery-item { padding-right: 2px; padding-bottom: 2px; } .gallery-isotope.gutter-30 .gallery-item { padding-right: 30px; padding-bottom: 30px; } .gallery-isotope.gutter-40 .gallery-item { padding-right: 40px; padding-bottom: 40px; } .gallery-isotope.gutter-50 .gallery-item { padding-right: 50px; padding-bottom: 50px; } .gallery-isotope.gutter-60 .gallery-item { padding-right: 60px; padding-bottom: 60px; } .gallery-isotope .gallery-item { width: 25%; } .gallery-isotope .gallery-item.wide { width: 50%; } .gallery-isotope.grid-1 .gallery-item { width: 100%; } .gallery-isotope.grid-1 .gallery-item.wide { width: 100%; } .gallery-isotope.grid-2 .gallery-item { width: 50%; } .gallery-isotope.grid-2 .gallery-item.wide { width: 100%; } .gallery-isotope.grid-3 .gallery-item { width: 33.333%; } .gallery-isotope.grid-3 .gallery-item.wide { width: 66.6667%; } .gallery-isotope.grid-4 .gallery-item { width: 25%; } .gallery-isotope.grid-4 .gallery-item.wide { width: 50%; } .gallery-isotope.grid-5 .gallery-item { width: 20%; } .gallery-isotope.grid-5 .gallery-item.wide { width: 40%; } .gallery-isotope.grid-6 .gallery-item { width: 16.666666667%; } .gallery-isotope.grid-6 .gallery-item.wide { width: 33.333%; } .gallery-isotope.grid-7 .gallery-item { width: 14.2857143%; } .gallery-isotope.grid-7 .gallery-item.wide { width: 28.5714286%; } .gallery-isotope.grid-8 .gallery-item { width: 12.5%; } .gallery-isotope.grid-8 .gallery-item.wide { width: 25%; } .gallery-isotope.grid-9 .gallery-item { width: 11.11%; } .gallery-isotope.grid-9 .gallery-item.wide { width: 22.22%; } .gallery-isotope.grid-10 .gallery-item { width: 10%; } .gallery-isotope.grid-10 .gallery-item.wide { width: 20%; } /* -------- Portfolio Isotop Item Media Query ---------- */ @media only screen and (max-width: 991px) { .gallery-isotope .gallery-item { width: 33.333% !important; } .gallery-isotope .gallery-item.wide { width: 66.6667% !important; } } @media only screen and (max-width: 767px) { .gallery-isotope .gallery-item { width: 50% !important; } .gallery-isotope .gallery-item.wide { width: 100% !important; } } @media only screen and (max-width: 479px) { .gallery-isotope .gallery-item { width: 100% !important; } .gallery-isotope .gallery-item.wide { width: 100% !important; } } /* -------- Portfolio Isotop Overlay Effect ---------- */ .gallery-isotope .gallery-item { overflow: hidden; } .gallery-isotope .gallery-item .thumb { position: relative; overflow: hidden; } .gallery-isotope .gallery-item .hover-link { position: absolute; top: 0; left: 0; display: inline-block; vertical-align: middle; width: 100%; height: 100%; background: none!important; color: transparent!important; z-index: 11; } .gallery-isotope .gallery-item .overlay-shade { position: absolute; display: inline-block; vertical-align: middle; top: 0; left: 0; width: 100%; height: 100%; z-index: 12; background-color: #333; opacity: 0; filter: alpha(opacity=0); -webkit-transition: opacity 0.3s ease-in-out; -o-transition: opacity 0.3s ease-in-out; transition: opacity 0.3s ease-in-out; } .gallery-isotope .gallery-item:hover .overlay-shade { opacity: 0.9; filter: alpha(opacity=90); } .gallery-isotope .gallery-item .icons-holder { position: absolute; top: 0%; left: 50%; display: inline-block; width: auto; height: 36px; vertical-align: middle; z-index: 13; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .gallery-isotope .gallery-item .icons-holder .icons-holder-inner { position: relative; display: inline-block; vertical-align: middle; margin: -18px 0 0 -50%; } .gallery-isotope .gallery-item .icons-holder .icons-holder-inner a { opacity: 0; filter: alpha(opacity=0); -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .gallery-isotope .gallery-item:hover .icons-holder { top: 50%; } .gallery-isotope .gallery-item:hover .icons-holder .icons-holder-inner a { opacity: 1; filter: alpha(opacity=1); } .gallery-isotope .gallery-item .portfolio-description { padding: 10px 15px; background-color: #f8f8f8; } .gallery-isotope .gallery-item .portfolio-description .title { margin: 0; } .gallery-isotope .gallery-item .portfolio-description .title a { color: #333333; } .gallery-isotope .gallery-item .text-holder { box-sizing: border-box; display: block; height: 100%; left: 0; opacity: 0; overflow: hidden; padding: 25px 30px 60px; position: absolute; top: 0; -webkit-transition: opacity 0.3s ease-in-out 0s; -o-transition: opacity 0.3s ease-in-out 0s; transition: opacity 0.3s ease-in-out 0s; width: 100%; z-index: 13; } .gallery-isotope .gallery-item .text-holder .title { color: #fff; } .gallery-isotope .gallery-item:hover .text-holder { opacity: 1; } .gallery-isotope .flex-control-nav { z-index: 111; } /* * Slider.less * ----------------------------------------------- */ /* -------- Rev Slider ---------- */ #home .revslider-fullscreen { min-height: auto; } /* -------- Home Revolution Slider For Minimal Layouts ---------- */ .minimal-revslider-wrapper { left: 0!important; width: 100%!important; } .minimal-revslider-wrapper .tp-leftarrow { left: 0!important; } .minimal-revslider-wrapper .tp-rightarrow { right: 0!important; } /* -------- Tab-Slider ---------- */ .tab-slider .tab-content { padding: 0; border: 0; } .tab-slider .nav.nav-pills > div { background-color: #fff; float: left; margin-bottom: 15px; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; } .tab-slider .nav.nav-pills i { color: #d3d3d3; } .tab-slider .nav.nav-pills a { display: block; padding: 40px 30px; background: #f3f3f3; } .tab-slider .nav.nav-pills a:hover i, .tab-slider .nav.nav-pills a:hover h6, .tab-slider .nav.nav-pills a.active i, .tab-slider .nav.nav-pills a.active h6 { color: #fff; } /* -------- MaxImage Slider ---------- */ .maximage-slider .fullscreen-controls .img-prev, .maximage-slider .fullscreen-controls .img-next { background: rgba(0, 0, 0, 0.3); } /* -------- Testimonial-Carousel ---------- */ .testimonial-carousel, .testimonial-carousel-style2 { /* fullwidth */ } .testimonial-carousel .quote, .testimonial-carousel-style2 .quote, .testimonial-carousel .thumb, .testimonial-carousel-style2 .thumb { margin-bottom: 40px; } .testimonial-carousel .quote i, .testimonial-carousel-style2 .quote i { background: #555555; border-radius: 50%; color: #fff; font-size: 25px; height: 60px; line-height: 1; padding: 20px 0 0; text-align: center; width: 60px; } .testimonial-carousel .author, .testimonial-carousel-style2 .author { margin-top: 30px; text-transform: uppercase; } .testimonial-carousel.owl-theme .owl-controls, .testimonial-carousel-style2.owl-theme .owl-controls { margin-top: 10px; } .testimonial-carousel.fullwidth .content p, .testimonial-carousel-style2.fullwidth .content p { font-size: 15px; font-style: italic; color: #fff; } .testimonial-carousel.fullwidth .content p::after, .testimonial-carousel-style2.fullwidth .content p::after { content: "\f10e"; font-family: fontawesome; font-size: 100px; left: 42%; opacity: 0.1; position: absolute; } .testimonial-carousel.bullet-white .owl-dots span, .testimonial-carousel-style2.bullet-white .owl-dots span { background: #fff !important; } .testimonial-carousel .owl-item img, .testimonial-carousel-style2 .owl-item img { display: inline-block; width: auto; max-width: 90px; } .testimonial-carousel.boxed .quote, .testimonial-carousel-style2.boxed .quote, .testimonial-carousel.boxed .thumb, .testimonial-carousel-style2.boxed .thumb { margin-bottom: 20px; } .testimonial-carousel.boxed .owl-item img, .testimonial-carousel-style2.boxed .owl-item img { display: inline-block; width: auto; max-width: 65px; } .testimonial-carousel.boxed .content::after, .testimonial-carousel-style2.boxed .content::after { bottom: 12px; content: "\f10e"; font-family: fontawesome; font-size: 55px; opacity: 0.2; position: absolute; right: 10px; } .testimonial-carousel.boxed .owl-controls, .testimonial-carousel-style2.boxed .owl-controls { margin-top: 0; } .testimonial-carousel.boxed.owl-theme .owl-dots .owl-dot.active span, .testimonial-carousel-style2.boxed.owl-theme .owl-dots .owl-dot.active span, .testimonial-carousel.boxed.owl-theme .owl-dots .owl-dot:hover span, .testimonial-carousel-style2.boxed.owl-theme .owl-dots .owl-dot:hover span { opacity: 1; } /* -------- Widget-Testimonial-Carousel ---------- */ .widget-testimonial-carousel .item img { max-width: 75px; float: right; } /* -------- Owl Carousel ---------- */ .owl-controls { margin: 0; } .owl-controls .owl-nav > div { background: none repeat scroll 0 0 rgba(240, 240, 240, 0.8); border-radius: 0; display: block; margin: 0; padding: 10px; position: absolute; top: 45%; -webkit-transition: all .4s ease 0s; -moz-transition: all .4s ease 0s; -ms-transition: all .4s ease 0s; -o-transition: all .4s ease 0s; transition: all 0.4s ease 0s; z-index: 6; } .owl-controls .owl-next { right: 0px; } .owl-controls .owl-next i { color: #888; font-size: 20px; } .owl-controls .owl-prev i { color: #888; font-size: 20px; } .owl-carousel .owl-item .testimonial-wrapper img { display: inline-block; width: 75px; } /* owl dots */ .owl-theme .owl-dots { text-align: center; margin-top: 10px; } .owl-theme .owl-dots .owl-dot { display: inline-block; zoom: 1; } .owl-theme .owl-dots .owl-dot span { background: #fff; border: 2px solid #eeeeee; border-radius: 50%; display: block; height: 12px; margin: 5px 3px; opacity: 0.8; -webkit-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; width: 12px; } /* Image Carousel */ .image-carousel .owl-controls .owl-nav > div { opacity: 0; } .image-carousel:hover .owl-controls .owl-nav > div { opacity: 1; } /* Owl top nav style */ .owl-carousel.owl-nav-top.bullet-white .owl-dots span { background: #fff; } .owl-carousel.owl-nav-top .owl-controls .owl-nav > div { background-color: transparent; top: -60px; right: 0; } .owl-carousel.owl-nav-top .owl-controls .owl-nav > div:hover { background-color: #d3d3d3; } .owl-carousel.owl-nav-top .owl-controls .owl-nav .owl-prev { right: 35px; } .owl-carousel.owl-nav-top .owl-controls .owl-nav .owl-next { right: 0; } .owl-carousel.owl-nav-top .owl-controls .owl-nav .owl-prev, .owl-carousel.owl-nav-top .owl-controls .owl-nav .owl-next { background: #eeeeee; border: none; line-height: 28px; padding: 0 12px; text-align: center; } .owl-carousel.owl-nav-top .owl-controls .owl-nav .owl-prev i, .owl-carousel.owl-nav-top .owl-controls .owl-nav .owl-next i { color: #888; font-size: 14px; } .owl-carousel.no-bullet .owl-nav { display: none; } .recent-project .owl-controls .owl-nav > div { top: 38%; } .recent-project .owl-controls .owl-nav .owl-prev i, .recent-project .owl-controls .owl-nav .owl-next i { padding: 2px 16px; } .featured-gallery.style2 { float: right; width: 92%; } .featured-gallery.style2 .owl-controls { bottom: 58px; left: -80px; margin: 0; position: absolute; } .featured-gallery.style2 .owl-controls .owl-nav > div { top: 95%; } .featured-gallery.style2 .owl-controls .owl-nav .owl-prev { left: 0px; } .featured-gallery.style2 .owl-controls .owl-nav .owl-next { display: inline-table; left: 40px; } .featured-gallery.style2 .owl-controls .owl-nav .owl-prev i, .featured-gallery.style2 .owl-controls .owl-nav .owl-next i { color: #fff; font-size: 35px; } @media only screen and (max-width: 991px) { .featured-gallery.style2 { float: none; margin-top: 58px; width: 100%; } .featured-gallery.style2 .owl-controls { bottom: auto; left: auto; top: -45px; } } .image-carousel .owl-controls .owl-nav > div { opacity: 0; } .image-carousel:hover .owl-controls .owl-nav > div { opacity: 1; } /* -------- Owl Fullwidth Carousel ---------- */ .fullwidth-carousel .owl-controls .owl-nav > div { top: 45%; } .fullwidth-carousel .carousel-item { min-height: 615px; width: 100%; } .fullwidth-carousel.blog-fullwidth-carousel .carousel-item { height: 600px; min-height: auto; width: 100%; } .fullwidth-carousel.blog-fullwidth-carousel .owl-controls .owl-nav > div { background: none; } /* -------- Twitter Feed Carousel ---------- */ .owl-dots-bottom-right .owl-dots { bottom: -10px; position: absolute; right: 0; } /* -------- Twitter Feed Carousel ---------- */ .twitter-feed.twitter-carousel { color: #111111; font-size: 16px; } .twitter-feed.twitter-carousel a { color: #111111; } .twitter-feed .date { font-size: 12px; } .twitter-feed.twitter-white, .twitter-feed.twitter-white a { color: #fff; } /* -------- BX Slider ---------- */ .bx-wrapper { margin: 0 auto 7px; padding: 0; position: relative; } .bx-wrapper .bx-viewport { background: inherit; border: 0 solid #fff; box-shadow: 0 0 0 #ccc; left: 0; transform: translateZ(0px); } /* bx top nav style */ .bx-controls .bx-controls-direction > a { background: #eee none repeat scroll 0 0; border: medium none; height: auto; line-height: 26px; padding: 0 12px; text-indent: 0; top: -38px; width: auto; z-index: 0; } .bx-controls .bx-controls-direction > a:hover { background: #ddd; } .bx-controls .bx-controls-direction > a i { color: #888; } .bx-controls .bx-controls-direction .bx-prev { right: 35px; left: auto; } .bx-controls .bx-controls-direction .bx-next { right: 0; } /* -------- Typed Animation Slider ---------- */ .typed-cursor { opacity: 1; -webkit-animation: blink 0.7s infinite; -moz-animation: blink 0.7s infinite; animation: blink 0.7s infinite; } @keyframes blink { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } } @-webkit-keyframes blink { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } } @-moz-keyframes blink { 0% { opacity: 1; } 50% { opacity: 0; } 100% { opacity: 1; } } /* * Home.less * ----------------------------------------------- */ /* -------- Setion-Bottom-Absolute-Div ---------- */ .setion-bottom-absolute-div { background: rgba(255, 255, 255, 0.5) none repeat scroll 0 0; bottom: 0; left: 0; position: absolute; right: 0; } /* * About.less * ----------------------------------------------- */ /* -------- Bg Img Box ---------- */ .bg-img-box { position: relative; } .bg-img-box .caption { padding-left: 30px; padding-right: 30px; padding-top: 20px; position: absolute; top: 0; } .bg-img-box .caption .title { font-size: 30px; line-height: 39px; } .bg-img-box .caption p { max-width: 280px; } /* * Contact.less * ----------------------------------------------- */ .contact-wrapper { padding: 50px 50px 50px 100px; } .contact-form .form-group { margin-bottom: 20px; } .contact-form .form-control { background-image: none; border: 1px solid #c0c0c0; border-radius: 0; box-shadow: none; height: 48px; } .contact-form .form-control:focus, .contact-form .form-control:active { box-shadow: none; color: #333333; } .contact-form .form-control2 { background-color: rgba(0, 0, 0, 0.8); color: #c0c0c0; } .contact-form .form-group button { margin-top: 0; } .contact-form textarea.form-control { height: 110px; resize: none; } textarea { resize: none; } /* * Services.less * ----------------------------------------------- */ .service-block { margin: 0 auto 30px; max-width: 400px; } .service-block:hover .thumb .desc { bottom: 0; } .service-block .thumb { overflow: hidden; position: relative; } .service-block .thumb .price { left: -1px; padding: 5px 10px; position: absolute; top: -1px; } .service-block .thumb .desc { bottom: -31%; padding: 10px 6px 5px 20px; position: absolute; -webkit-transition: all 400ms ease-in-out 0s; -o-transition: all 400ms ease-in-out 0s; transition: all 400ms ease-in-out 0s; width: 100%; } .service-block .thumb .desc p { color: #fff; font-size: 13px; } .service-block .content { border: 1px solid #eeeeee; padding: 12px 20px 20px; } /* * shop.less * ----------------------------------------------- */ /* -------- Product Details Page ---------- */ .product { margin-left: auto; margin-right: auto; margin-bottom: 30px; padding-bottom: 15px; position: relative; overflow: hidden; } .products .product { border: 3px solid #eeeeee; max-width: 400px; } .products .product:hover { border: 3px solid #eeeeee; } .products .product .product-details .product-title { font-size: 15px; margin-top: 20px; text-transform: uppercase; } .btn-add-to-cart-wrapper, .btn-product-view-details { opacity: 0; height: auto; margin: 0 0 15px; -webkit-transition: 400ms; -o-transition: 400ms; transition: 400ms; position: absolute; bottom: 0; left: -60px; } .product:hover .btn-add-to-cart-wrapper, .product:hover .btn-product-view-details { left: 0; opacity: 1; } .btn-product-view-details { left: auto; bottom: 0; right: -60px; } .product:hover .btn-product-view-details { left: auto; opacity: 1; right: 0; } /* -------- Price ---------- */ .product .price { margin-top: 5px; } .product .price .amount { font-size: 18px; font-weight: 600; } .product .price del .amount { color: #999999; font-size: 14px; font-weight: 500; } .product .price ins { margin-left: 10px; text-decoration: none; } /* -------- Product-Summary ---------- */ .product .product-summary .product-title { margin-top: 0; } .product .product-summary .short-description { margin-bottom: 15px; } .product .product-summary .cart-form-wrapper .btn { margin-top: 0; } .product .product-summary .variations { width: 100%; } .product .product-tab { margin-top: 30px; } .product .commentlist .comment { margin-top: 30px; position: relative; } .product .commentlist .comment .meta { font-size: 12px; } .product .commentlist .comment .author { font-size: 14px; font-weight: bold; } .product .product-thumb { position: relative; } .product .product-thumb:hover .overlay { opacity: 1; } .product .product-thumb .overlay .add-to-wishlist { color: #fff; right: 10px; top: 10px; position: absolute; } .product .product-summary .cart-form-wrapper .quantity, .tbl-shopping-cart .quantity { display: inline-block; margin-right: .8571em; position: relative; width: 4.1429em; vertical-align: top; } .product .product-summary .cart-form-wrapper .quantity .minus, .tbl-shopping-cart .quantity .minus, .product .product-summary .cart-form-wrapper .quantity .plus, .tbl-shopping-cart .quantity .plus { background: none repeat scroll 0 0 transparent; border: 1px solid #ccc; border-radius: 3px; font-family: 'Open Sans', sans-serif; height: 18px; left: 2.8571em; line-height: 1; outline: medium none; padding: 0; position: absolute; width: 18px; } .product .product-summary .cart-form-wrapper .quantity .minus, .tbl-shopping-cart .quantity .minus { bottom: 0; } .product .product-summary .cart-form-wrapper .quantity .plus, .tbl-shopping-cart .quantity .plus { top: 0; } .product .product-summary .cart-form-wrapper .quantity .qty, .tbl-shopping-cart .quantity .qty { -moz-appearance: textfield; border: 1px solid #ccc; height: 41px; padding-left: 0; padding-right: 0; text-align: center; width: 40px; } /* -------- Star-Rating ---------- */ .star-rating { font-size: 14px; height: 16px; width: 75px; line-height: 1; margin: 0 auto; overflow: hidden; position: relative; top: 0px; } .star-rating::before, .star-rating span::before { color: #c0c0c0; content: "\f005\f005\f005\f005\f005"; float: left; font-family: fontawesome; left: 0; letter-spacing: 2px; position: absolute; top: 0; } .star-rating span { float: left; left: 0; overflow: hidden; padding-top: 1.5em; position: absolute; top: 0; } .star-rating span::before { color: #ffc300 !important; } /* -------- Tag Sale ---------- */ .product .tag-sale { margin: 0; top: 0; display: block; left: auto; right: 0; -webkit-transition: 400ms; -o-transition: 400ms; transition: 400ms; color: #fff; font-size: 13px; font-weight: 600; line-height: 18px; padding: 4px 10px 4px 16px; position: absolute; text-align: right; text-transform: uppercase; z-index: 9; } .product .tag-sale .tag-sale::before { border-color: transparent transparent transparent #dcdcdc; border-style: solid; border-width: 12px 13px 13px 8px; content: ""; height: 0; left: 0; pointer-events: none; position: absolute; top: 1px; width: 0; } /* -------- Cart Page ---------- */ .tbl-shopping-cart .product-thumbnail img { max-width: 72px; max-height: 72px; } .tbl-shopping-cart .product-remove { text-align: center; } .tbl-shopping-cart .variation .variation-size, .tbl-shopping-cart .variation .variation-size span { font-size: 12px; } .tbl-shopping-cart tr th, .tbl-shopping-cart tr td, .tbl-shopping-cart .coupon label, .tbl-shopping-cart .coupon input, .tbl-shopping-cart .coupon button { vertical-align: middle!important; } .tbl-shopping-cart tr td { padding: 10px 12px!important; } table.no-border td { border: medium none !important; } /* -------- Checkout Page ---------- */ .payment-method .radio { border: 1px solid #eee; padding: 10px; } .payment-method .radio > label { color: #111; font-size: 17px; } .payment-method .radio input { margin-top: 8px; vertical-align: initial; } .payment-method .radio > p { margin-left: 20px; } #checkout-shipping-address { display: none; } /* -------- Top Nav Search And Cart ---------- */ .top-nav-search-box .indicator, .top-nav-cart-box .indicator { display: none; } .has-dropdown + .dropdown { display: none; background-color: #fff; border: 1px solid #eee; box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.15); left: auto; position: absolute; right: -1px; top: 100%; z-index: 1000; padding: 5px; width: 300px; font-size: 12px; -webkit-transition: opacity 0.3s ease-in-out; -moz-transition: opacity 0.3s ease-in-out; -o-transition: opacity 0.3s ease-in-out; -ms-transition: opacity 0.3s ease-in-out; } .top-dropdown-outer { position: relative; } .top-dropdown-outer:hover .has-dropdown + .dropdown { display: block; } .dropdown-cart { padding: 10px; } .dropdown-cart .cart-table-list, .dropdown-cart .cart-table-list i { color: #222222; border: none; } .dropdown-cart .cart-table-list a { line-height: normal; color: #222222; } .dropdown-cart .cart-table-list td img { width: 50px; height: auto; } .dropdown-cart .cart-table-list.table > tbody > tr > td { border: none; line-height: 20px; height: 20px; vertical-align: middle; padding: 3px; } .dropdown-cart .total-cart { display: inline-block; width: 100%; padding-top: 20px; color: #222; text-align: right; } .dropdown-cart .total-cart ul { float: right; list-style: none; padding: 0; width: 100%; } .dropdown-cart .total-cart ul li { display: block; overflow: hidden; } .dropdown-cart .total-cart ul li span { width: 100px; display: inline-block; text-align: right; white-space: nowrap; } .dropdown-cart .total-cart .table > tbody > tr > td, .dropdown-cart .total-cart .table > tbody > tr > th, .dropdown-cart .total-cart .table > tfoot > tr > td, .dropdown-cart .total-cart .table > tfoot > tr > th, .dropdown-cart .total-cart .table > thead > tr > td, .dropdown-cart .total-cart .table > thead > tr > th { border: 0; } .dropdown-cart .cart-btn .btn { width: auto; float: none; padding: 5px 15px; } .top-shop-cart { margin-top: 8px; position: relative; } .top-shop-cart .cart-number { background: #fff none repeat scroll 0 0; border-radius: 30px; padding: 0 8px 0 3px; } /* * blog.less * ----------------------------------------------- */ .post { position: relative; } .post .entry-title { margin-top: 0; } .post .entry-content { position: relative; background: #f8f8f8; padding: 15px; } .post .entry-date { font-size: 13px; } .post .entry-meta.meta-absolute { height: 100%; position: absolute; top: 0; } .post .entry-meta.meta-absolute i { display: block; font-size: 28px; } .post .entry-meta.meta-absolute span a { color: #454545; font-size: 12px; font-style: italic; letter-spacing: 2px; margin-right: 5px; } .post.media-post .post-thumb { float: left; margin: 0 10px 10px 0; } .post .post-thumb { -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; } /* -------- Entry-Meta Absolute ---------- */ .post .entry-header { position: relative; } .post .entry-header .entry-date { bottom: -25px; position: absolute; right: 10px; z-index: 2; } .post .entry-meta.meta-absolute { height: 100%; position: absolute; left: 0; bottom: 0; } .post .entry-meta.meta-absolute i { display: block; font-size: 28px; } /* * Blog Style 2 * ----------------------------------------------- */ .post.style2, .post.style3 { position: relative; overflow: hidden; } .post.style2 .entry-content, .post.style3 .entry-content { background-color: rgba(0, 0, 0, 0.8); bottom: -30px; left: 0; padding: 30px; position: absolute; right: 0; -webkit-transition: all 0.3s ease-in-out 0s; -o-transition: all 0.3s ease-in-out 0s; transition: all 0.3s ease-in-out 0s; } .post.style2 .entry-content .entry-date, .post.style3 .entry-content .entry-date { font-size: 11px; margin-bottom: 10px; } .post.style2:hover .entry-content, .post.style3:hover .entry-content { bottom: 0; } .post.style2:hover .post-thumb, .post.style3:hover .post-thumb { -webkit-transform: scale(1) !important; -ms-transform: scale(1) !important; -o-transform: scale(1) !important; transform: scale(1) !important; } .blog-pull-right { float: right; } @media only screen and (max-width: 767px) { .blog-pull-right { float: none; } } .featured-blog { overflow: hidden; position: relative; } .featured-blog-details { bottom: -18%; padding: 30px; position: absolute; transition: all 400ms ease-in-out 0s; width: 100%; } .featured-blog:hover .featured-blog-details { bottom: 0; } /* * our-services-gallery * ----------------------------------------------- */ .our-services-gallery .gallery-item { position: relative; overflow: hidden; } .our-services-gallery .gallery-item .thumb { position: relative; overflow: hidden; } .our-services-gallery .gallery-item .overlay-shade { position: absolute; display: inline-block; vertical-align: middle; top: 0; left: 0; width: 100%; height: 100%; z-index: 12; background-color: #333; opacity: 0; filter: alpha(opacity=0); -webkit-transition: opacity 0.3s ease-in-out; -o-transition: opacity 0.3s ease-in-out; transition: opacity 0.3s ease-in-out; } .our-services-gallery .gallery-item:hover .overlay-shade { opacity: 0.9; filter: alpha(opacity=90); } .our-services-gallery .gallery-item .icons-holder { position: absolute; top: 0%; left: 50%; display: inline-block; width: auto; height: 36px; vertical-align: middle; z-index: 13; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .our-services-gallery .gallery-item .icons-holder .icons-holder-inner { position: relative; display: inline-block; vertical-align: middle; margin: -18px 0 0 -50%; } .our-services-gallery .gallery-item .icons-holder .icons-holder-inner a { opacity: 0; filter: alpha(opacity=0); -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .our-services-gallery .gallery-item:hover .icons-holder { top: 50%; } .our-services-gallery .gallery-item:hover .icons-holder .icons-holder-inner a { opacity: 1; filter: alpha(opacity=1); } .our-services-gallery .gallery-item .our-services-details { position: inherit; padding: 10px 15px; background-color: #f8f8f8; } .our-services-gallery .gallery-item .our-services-details .discount { position: absolute; display: inline-block; z-index: 15; right: 10px; top: -40px; } .our-services-gallery .gallery-item .our-services-details .title { margin: 0; } .our-services-gallery .gallery-item .our-services-details .title a { color: #333333; } .our-services-gallery .gallery-item .text-holder { box-sizing: border-box; display: block; height: 100%; left: 0; opacity: 0; overflow: hidden; padding: 25px 30px 60px; position: absolute; top: 0; -webkit-transition: opacity 0.3s ease-in-out 0s; -o-transition: opacity 0.3s ease-in-out 0s; transition: opacity 0.3s ease-in-out 0s; width: 100%; z-index: 13; } .our-services-gallery .gallery-item .text-holder .title { color: #fff; } .our-services-gallery .gallery-item:hover .text-holder { opacity: 1; } /* * causes.less * ----------------------------------------------- */ /* -------- Recent Causes ---------- */ .causes .progress-item .progress-bar .percent { background-color: rgba(255, 255, 255, 0.9); border: 2px solid; border-radius: 50%; color: #333333; font-size: 10px; line-height: 8px; padding: 12px 6px; position: absolute; right: -10px; text-align: center; top: -10px; } .causes .progress-item .progress { background-color: #efefef; border-bottom: 1px solid #d3d3d3; box-shadow: none; height: 15px; } /* * 3.6 -> Causes * ----------------------------------------------- */ .causes .thumb { position: relative; } .causes .thumb .donate-btn { opacity: 0; position: absolute; right: -50px; top: 0px; -webkit-transition: all 0.3s ease-in-out 0s; -o-transition: all 0.3s ease-in-out 0s; transition: all 0.3s ease-in-out 0s; } .causes:hover .thumb .donate-btn { opacity: 1; right: -15px; } .donate-piechart { margin: 0 auto; } .donate-piechart.piechart-absolute { bottom: -40px; right: 15px; position: absolute; } .donate-piechart .piechart-block { border-radius: 50%; } .donate-piechart .piechart canvas { max-height: 70px; } .donate-piechart .piechart canvas { background-color: #eeeeee !important; border-radius: 50%; max-height: 80px; } .donate-piechart .piechart-block .piechart { min-height: 80px; min-width: 80px; } .donate-piechart .piechart-block .percent::after { font-size: 12px; } .donate-piechart .piechart-block .percent { font-size: 18px; line-height: 77px; position: relative; } /* * 3.29 -> Pie Charts * ----------------------------------------------- */ .piechart { position: relative; margin: 0 auto; text-align: center; } .piechart .percent { font-size: 18px; z-index: 100; line-height: 60px; } .piechart .percent:after { content: "%"; font-size: 18px; } .piechart canvas { position: absolute; left: 0; right: 0; margin: 0 auto; } /* * 3.29 -> Featured Causes * ----------------------------------------------- */ .project-conditions { padding: 8px; } .project-conditions li { border-right: 1px solid #d3d3d3; color: #808080; width: 32%; } .project-conditions li:last-child { border-right: medium none; } .project-conditions li strong { display: block; font-weight: 600; color: #222222; } /* * project.less * ----------------------------------------------- */ .project .thumb { position: relative; overflow: hidden; } .project .thumb:after { background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0; content: ""; height: 100%; left: 0; opacity: 0; position: absolute; top: 0; transition-duration: 0.3s; width: 100%; } .project .hover-link { left: 44%; opacity: 0; position: absolute; top: 20%; transition-duration: 0.3s; z-index: 9; } .project .hover-link i { color: #fff; display: block; font-size: 20px; padding: 10px; } .project .project-details { background: #fff none repeat scroll 0 0; transition-duration: 0.3s; } .project:hover .thumb::after { border: 10px solid rgba(255, 255, 255, 0.2); opacity: 1; } .project:hover .hover-link { opacity: 1; top: 44%; } .project:hover .project-details { border-bottom: 3px solid #fff; } .project:hover .project-details .title, .project:hover .project-details .sub-title { color: #fff; } /* * hover-effect.less * ----------------------------------------------- */ .hover-effect .thumb { position: relative; overflow: hidden; } .hover-effect .thumb:after { background: rgba(255, 255, 255, 0.1); content: ""; height: 100%; left: 0; opacity: 0; position: absolute; top: 0; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; width: 100%; } .hover-effect .hover-link { left: 0; margin: 0 auto; opacity: 0; position: absolute; right: 0; top: 20%; text-align: center; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; z-index: 9; } .hover-effect .details { background: #f6f6f6; border-bottom: 3px solid #eee; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; } .hover-effect .details .sub-title { color: #999999; } .hover-effect:hover .thumb::after { border: 10px solid rgba(0, 0, 0, 0.2); opacity: 1; } .hover-effect:hover .hover-link { opacity: 1; top: 44%; } .hover-effect:hover .details { background: #222222; border-bottom-color: #333333; } .hover-effect:hover .details .title, .hover-effect:hover .details .sub-title { color: #fff; } /* * event.less * ----------------------------------------------- */ .event { background: #f6f6f6; border: 1px solid transparent; -webkit-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; } .event:hover { background: #fafafa; } .event .event-content .media-heading a { -webkit-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; } .event .event-content ul li { font-size: 12px; line-height: 1; margin-top: 10px; margin-bottom: 10px; } .event .event-date ul li { line-height: 1; } .event .event-date ul li:first-child { margin-bottom: 10px; } /* -------- Schedule-Box Style ---------- */ .schedule-box .thumb { position: relative; overflow-x: hidden; } .schedule-box .thumb .overlay { background-color: rgba(255, 255, 255, 0.85); bottom: 0; left: 0; opacity: 0; position: absolute; right: 0; text-align: center; -webkit-transition: 0.3s ease-in-out 0s; -o-transition: 0.3s ease-in-out 0s; transition: 0.3s ease-in-out 0s; top: -100%; } .schedule-box .thumb .overlay a i { background-color: #333; color: #fff; margin: 0 auto; padding: 13px 12px; position: absolute; text-align: center; -webkit-transition: all 0.45s ease-in-out 0s; -o-transition: all 0.45s ease-in-out 0s; transition: all 0.45s ease-in-out 0s; top: 0; } .schedule-box .schedule-details { border-bottom: 1px solid #bbb; } .schedule-box .schedule-details ul li { margin: 0; } .schedule-box .schedule-details .title a { -webkit-transition: all 0.3s ease-in-out 0s; -o-transition: all 0.3s ease-in-out 0s; transition: all 0.3s ease-in-out 0s; } .schedule-box:hover .thumb .overlay { opacity: 1; top: 0; } .schedule-box:hover .thumb .overlay a i { opacity: 1; top: 40%; } /* -------- Event-Table ---------- */ .table-schedule thead tr th { color: #fff; font-size: 16px; padding: 15px 25px; text-transform: uppercase; } .table-schedule > tbody > tr { background-color: #fcfcfc; } .table-schedule > tbody > tr:nth-child(2n+1) { background-color: #f9f9f9; } .table-schedule tbody tr td { border-top: 1px solid #ddd; color: #333; font-weight: 300; padding: 15px 25px; } .table-schedule tbody tr td .speaker-thumb { float: left; margin-right: 15px; margin-top: 5px; width: 55px; } .table-schedule tbody tr td .title { font-size: 15px; margin-bottom: 0; margin-top: 3px; } .table-schedule tbody tr td .name { font-size: 13px; margin: 0; } .table-schedule tbody tr td strong { font-weight: 700; } .table-schedule .toggle-content { cursor: pointer; } .table-schedule .session-details { display: none; } /* * Shortcode.less * ----------------------------------------------- */ /* * Shortcode: Alerts.less * ----------------------------------------------- */ /* * Shortcode: Buttons.less * ----------------------------------------------- */ /* -------- Btn-Default ---------- */ .btn-default { color: #333; background-color: #fff; border-color: #ccc; } .btn-default:focus, .btn-default.focus { color: #333; background-color: #e6e6e6; border-color: #8c8c8c; } .btn-default:hover { color: #333; background-color: #e6e6e6; border-color: #adadad; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { color: #333; background-color: #e6e6e6; border-color: #adadad; } .btn-default:active:hover, .btn-default.active:hover, .open > .dropdown-toggle.btn-default:hover, .btn-default:active:focus, .btn-default.active:focus, .open > .dropdown-toggle.btn-default:focus, .btn-default:active.focus, .btn-default.active.focus, .open > .dropdown-toggle.btn-default.focus { color: #333; background-color: #d4d4d4; border-color: #8c8c8c; } .btn-default:active, .btn-default.active, .open > .dropdown-toggle.btn-default { background-image: none; } .btn-default.disabled:hover, .btn-default[disabled]:hover, fieldset[disabled] .btn-default:hover, .btn-default.disabled:focus, .btn-default[disabled]:focus, fieldset[disabled] .btn-default:focus, .btn-default.disabled.focus, .btn-default[disabled].focus, fieldset[disabled] .btn-default.focus { background-color: #fff; border-color: #ccc; } .btn-default .badge { color: #fff; background-color: #333; } .btn-default:hover { background-color: #eeeeee; border-color: #eeeeee; } /* -------- Btn-Border ---------- */ .btn-border { color: #222222; background-color: #fff; border-color: #222222; } .btn-border:focus, .btn-border.focus { color: #222222; background-color: #e6e6e6; border-color: #000000; } .btn-border:hover { color: #222222; background-color: #e6e6e6; border-color: #040404; } .btn-border:active, .btn-border.active, .open > .dropdown-toggle.btn-border { color: #222222; background-color: #e6e6e6; border-color: #040404; } .btn-border:active:hover, .btn-border.active:hover, .open > .dropdown-toggle.btn-border:hover, .btn-border:active:focus, .btn-border.active:focus, .open > .dropdown-toggle.btn-border:focus, .btn-border:active.focus, .btn-border.active.focus, .open > .dropdown-toggle.btn-border.focus { color: #222222; background-color: #d4d4d4; border-color: #000000; } .btn-border:active, .btn-border.active, .open > .dropdown-toggle.btn-border { background-image: none; } .btn-border.disabled:hover, .btn-border[disabled]:hover, fieldset[disabled] .btn-border:hover, .btn-border.disabled:focus, .btn-border[disabled]:focus, fieldset[disabled] .btn-border:focus, .btn-border.disabled.focus, .btn-border[disabled].focus, fieldset[disabled] .btn-border.focus { background-color: #fff; border-color: #222222; } .btn-border .badge { color: #fff; background-color: #222222; } .btn-border { border-width: 2px; } .btn-border:hover, .btn-border:active, .btn-border:focus { background-color: #222222; border-color: #222222; color: #fff; } /* -------- Btn-Dark ---------- */ .btn-dark { color: #fff; background-color: #222222; border-color: #222222; } .btn-dark:focus, .btn-dark.focus { color: #fff; background-color: #090909; border-color: #000000; } .btn-dark:hover { color: #fff; background-color: #090909; border-color: #040404; } .btn-dark:active, .btn-dark.active, .open > .dropdown-toggle.btn-dark { color: #fff; background-color: #090909; border-color: #040404; } .btn-dark:active:hover, .btn-dark.active:hover, .open > .dropdown-toggle.btn-dark:hover, .btn-dark:active:focus, .btn-dark.active:focus, .open > .dropdown-toggle.btn-dark:focus, .btn-dark:active.focus, .btn-dark.active.focus, .open > .dropdown-toggle.btn-dark.focus { color: #fff; background-color: #000000; border-color: #000000; } .btn-dark:active, .btn-dark.active, .open > .dropdown-toggle.btn-dark { background-image: none; } .btn-dark.disabled:hover, .btn-dark[disabled]:hover, fieldset[disabled] .btn-dark:hover, .btn-dark.disabled:focus, .btn-dark[disabled]:focus, fieldset[disabled] .btn-dark:focus, .btn-dark.disabled.focus, .btn-dark[disabled].focus, fieldset[disabled] .btn-dark.focus { background-color: #222222; border-color: #222222; } .btn-dark .badge { color: #222222; background-color: #fff; } /* -------- Btn-Gray ---------- */ .btn-gray { color: #333333; background-color: #eeeeee; border-color: #eeeeee; } .btn-gray:focus, .btn-gray.focus { color: #333333; background-color: #d5d5d5; border-color: #afafaf; } .btn-gray:hover { color: #333333; background-color: #d5d5d5; border-color: #d0d0d0; } .btn-gray:active, .btn-gray.active, .open > .dropdown-toggle.btn-gray { color: #333333; background-color: #d5d5d5; border-color: #d0d0d0; } .btn-gray:active:hover, .btn-gray.active:hover, .open > .dropdown-toggle.btn-gray:hover, .btn-gray:active:focus, .btn-gray.active:focus, .open > .dropdown-toggle.btn-gray:focus, .btn-gray:active.focus, .btn-gray.active.focus, .open > .dropdown-toggle.btn-gray.focus { color: #333333; background-color: #c3c3c3; border-color: #afafaf; } .btn-gray:active, .btn-gray.active, .open > .dropdown-toggle.btn-gray { background-image: none; } .btn-gray.disabled:hover, .btn-gray[disabled]:hover, fieldset[disabled] .btn-gray:hover, .btn-gray.disabled:focus, .btn-gray[disabled]:focus, fieldset[disabled] .btn-gray:focus, .btn-gray.disabled.focus, .btn-gray[disabled].focus, fieldset[disabled] .btn-gray.focus { background-color: #eeeeee; border-color: #eeeeee; } .btn-gray .badge { color: #eeeeee; background-color: #333333; } .btn-circled { border-radius: 25px; } .btn-flat { border-radius: 0; } /* -------- Btn-Default ---------- */ .btn { font-size: 13px; padding: 8px 22px; } /* -------- Btn-xs ---------- */ .btn-xs { font-size: 11px; padding: 3px 14px; } /* -------- Btn-sm ---------- */ .btn-sm { font-size: 12px; padding: 5px 17px; } /* -------- Btn-lg ---------- */ .btn-lg { font-size: 14px; padding: 10px 26px; } /* -------- Btn-xl ---------- */ .btn-xl { font-size: 16px; padding: 13px 32px; } /* -------- Btn-transparent ---------- */ .btn-transparent { background-color: transparent; color: #fff; } /* -------- Btn-Quick-contact ---------- */ .btn-quick-contact { background-color: rgba(5, 15, 5, 0.1); color: #fff; } /* btn read more*/ .btn-read-more { padding: 0; } .btn-read-more::after { display: inline-block; content: "\f18e"; font-family: fontawesome; font-size: 16px; font-variant: normal; font-weight: normal; line-height: 1; margin-left: 5px; position: relative; text-shadow: none; text-transform: none; top: 2px; -webkit-transition: all 0.4s ease 0s; -o-transition: all 0.4s ease 0s; transition: all 0.4s ease 0s; } /* * Blockquote.less * ----------------------------------------------- */ blockquote { border-left: 3px solid #eeeeee; margin: 20px 0; padding: 30px; } blockquote.gray { border-left: 3px solid #666666; background-color: #eeeeee; color: #333333; } blockquote.gray.bg-theme-colored { background-color: #eeeeee; } blockquote.dark { border-left: 3px solid #3c3c3c; background-color: #555555; color: #fff; } blockquote.dark footer { color: #d3d3d3; } blockquote p { font-family: "Playfair Display", serif; font-size: 16px; font-style: italic; } /* * Shortcode: Clients.less * ----------------------------------------------- */ .clients-logo .item { background: #eeeeee; border-color: transparent; margin-bottom: 30px; padding: 0; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .clients-logo img { width: auto !important; display: inline !important; opacity: 0.7; } .clients-logo img:hover { opacity: 1; } .clients-logo.carousel { text-align: center; } .clients-logo.carousel .item { box-shadow: none; } .clients-logo.style2 .item { box-shadow: none; } .clients-logo.style2 .item img { max-height: 120px; } .client-img { opacity: 0.7; text-align: center; -webkit-transition: all 0.3s ease 0s; -o-transition: all 0.3s ease 0s; transition: all 0.3s ease 0s; } .client-img:hover { opacity: 1; } .clients-logo.carousel { text-align: center; } .clients-logo.carousel .item { box-shadow: none; margin: 0 10px; } .clients-logo.transparent .item { background: transparent; margin-bottom: 10px; } .clients-logo.transparent img { opacity: 0.9; } /* * Shortcode: Countdown.less * ----------------------------------------------- */ .countdown-timer li { color: #808080; display: inline-block; padding: 30px 20px; background-color: #f1f1f1; margin-right: 15px; font-size: 40px; text-align: center; min-width: 120px; min-height: 120px; } .countdown-timer li span { color: #c0c0c0; display: block; font-size: 15px; margin-top: 5px; } .countdown-timer.timer-box { padding: 20px; padding-top: 40px; text-align: center; } .countdown-timer.timer-box li { color: #fff; background-color: rgba(0, 0, 0, 0.05); margin-bottom: 15px; } .countdown-timer.timer-box li span { color: #eeeeee; } .countdown-timer.timer-deep-bg li { background-color: rgba(0, 0, 0, 0.05); } @media only screen and (max-width: 767px) { .timer-responsive li { margin-top: 30px; font-size: 20px; min-width: 60px; min-height: 60px; padding: 20px 10px; } .countdown-timer li span { font-size: 12px; } } /* * Shortcode: Countdown-Timer.less * ----------------------------------------------- */ /* * Shortcode: Dividers.less * ----------------------------------------------- */ .divider, .parallax { background-repeat: repeat; background-position: center center; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; display: block; position: relative; overflow: hidden; width: 100%; } /* -------- Parallax ---------- */ .parallax { width: 100%; height: 100%; margin: 0 auto; background-size: cover; background-attachment: fixed; background-repeat: repeat-y; background-position: top center; } .mobile-parallax { background-size: cover !important; background-attachment: scroll !important; background-position: center center; } .divider .container { padding-top: 90px; padding-bottom: 90px; } .divider .container.small-padding { padding-top: 30px; padding-bottom: 30px; } .divider .container.extra-padding { padding-top: 180px; padding-bottom: 180px; } /* * Shortcode: Facebook-Disqus-Comments.less * ----------------------------------------------- */ .fb-comments, .fb_iframe_widget, .fb-comments > span, .fb_iframe_widget > span, .fb-comments > span > iframe, .fb_iframe_widget > span > iframe { display: block !important; margin: 0; width: 100% !important; } /* * Shortcode: Faqs.less * ----------------------------------------------- */ /* * Shortcode: Flexslider.less * ----------------------------------------------- */ .flex-container a:active, .flexslider a:active, .flex-container a:focus, .flexslider a:focus { outline: none; border: none; } .flex-direction-nav { display: none; } .flexslider { position: relative; margin: 0; padding: 0; border: 0; } .flex-viewport { max-height: 2000px; -webkit-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease; } .flex-control-nav { margin: 0; padding: 0; list-style: none; border: none; width: auto; position: absolute; z-index: 10; text-align: center; bottom: 15px; right: 15px; } .flex-control-nav li { float: left; display: block; margin: 0 3px; width: 10px; height: 10px; } .flex-control-nav li a { display: block; cursor: pointer; text-indent: -9999px; width: 10px; height: 10px; border: 1px solid #fff; border-radius: 50%; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .flex-control-nav li:hover a, .flex-control-nav li a.flex-active { background-color: #fff; } /* * Shortcode: Flip-Box.less * ----------------------------------------------- */ .card { float: left; min-height: 300px; padding-bottom: 25%; position: relative; text-align: center; width: 100%; } .card:nth-child(1) { margin-left: -3px; margin-right: 1px; } .card:nth-child(1), .card .card:nth-child(3) { margin-right: 1px; } .card .card__front, .card .card__back { position: absolute; top: 0; left: 0; width: 100%; height: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-transition: transform 0.3s; -o-transition: transform 0.3s; transition: transform 0.3s; } .card .card__back { -webkit-transform: rotateY(-180deg); transform: rotateY(-180deg); } .card .card__text { display: inline-block; position: absolute; top: 0; right: 0; bottom: 0; left: 0; margin: auto; height: 300px; line-height: 20px; } .card.effect__hover:hover .card__front { -webkit-transform: rotateY(-180deg); transform: rotateY(-180deg); } .card.effect__hover:hover .card__back { -webkit-transform: rotateY(0); transform: rotateY(0); } .card.effect__click.flipped .card__front { -webkit-transform: rotateY(-180deg); transform: rotateY(-180deg); } .card.effect__click.flipped .card__back { -webkit-transform: rotateY(0); transform: rotateY(0); } .card.effect__random.flipped .card__front { -webkit-transform: rotateY(-180deg); transform: rotateY(-180deg); } .card.effect__random.flipped .card__back { -webkit-transform: rotateY(0); transform: rotateY(0); } /* * Shortcode: Font-Icons-Style.less * ----------------------------------------------- */ /* common style */ .styled-icons a { color: #333333; font-size: 18px; height: 32px; line-height: 32px; width: 32px; float: left; margin: 5px 7px 5px 0; text-align: center; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .styled-icons a:hover { color: #666666; } .styled-icons.icon-gray a { background-color: #eeeeee; color: #555555; display: block; font-size: 18px; height: 36px; line-height: 36px; width: 36px; } .styled-icons.icon-gray a:hover { color: #bbbbbb; } .styled-icons.icon-gray.icon-bordered a { background-color: transparent; border: 2px solid #eeeeee; } .styled-icons.icon-gray.icon-bordered a:hover { border: 2px solid #d5d5d5; } .styled-icons.icon-dark a { background-color: #333333; color: #eeeeee; display: block; font-size: 18px; height: 36px; line-height: 36px; width: 36px; } .styled-icons.icon-dark a:hover { color: #5e5e5e; } .styled-icons.icon-dark.icon-bordered a { background-color: transparent; border: 2px solid #111111; color: #111111; } .styled-icons.icon-dark.icon-bordered a:hover { background-color: #111111; border-color: #111111; color: #fff; } .styled-icons.icon-bordered a { border: 1px solid #777777; } .styled-icons.icon-bordered a:hover { background-color: #777777; color: #fff; } .styled-icons.icon-rounded a { border-radius: 3px; } .styled-icons.icon-circled a { border-radius: 50%; } .styled-icons.icon-sm a { font-size: 13px; height: 30px; line-height: 30px; margin: 2px 7px 2px 0; width: 30px; } .styled-icons.icon-md a { font-size: 24px; height: 50px; line-height: 50px; width: 50px; } .styled-icons.icon-lg a { font-size: 32px; height: 60px; line-height: 60px; width: 60px; } .styled-icons.icon-xl a { font-size: 60px; height: 120px; line-height: 120px; width: 120px; } .styled-icons li { display: inline-block; margin-bottom: 0; margin-top: 0; } /* * Shortcode: Funfacts.less * ----------------------------------------------- */ .funfact { -webkit-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .funfact.border { border: 1px solid #d3d3d3; } .funfact.no-border { border: 0; } .funfact.border { border: 1px solid #d3d3d3; } .funfact i { font-size: 45px; } .funfact h2 { position: relative; } .funfact h2:after { bottom: 0; } .funfact span { color: #eeeeee; font-size: 18px; } /* funfact style-1*/ .funfact.style-1 i, .funfact.style-1 .funfact-title { -webkit-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } .funfact.style-1 .funfact-title { color: #999999; font-size: 14px; text-transform: uppercase; } .funfact.style-1:hover i { font-size: 40px !important; opacity: 0.3; } .funfact.style-1:hover .funfact-title { color: #333333 !important; } /* * Shortcode: Icon-Boxes.less * ----------------------------------------------- */ .icon-box { padding: 40px 17px; } .icon-box .icon { display: inline-block; height: 68px; margin-bottom: 20px; text-align: center; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; width: 68px; } .icon-box .icon i { line-height: 68px; } .icon-box .icon.icon-gray { background-color: #eeeeee; color: #555555; } .icon-box .icon.icon-gray:hover { background-color: #d5d5d5; color: #bbbbbb; } .icon-box .icon.icon-gray.icon-bordered { background-color: transparent; border: 2px solid #eeeeee; } .icon-box .icon.icon-gray.icon-bordered:hover { background-color: #eeeeee; color: #555555; } .icon-box .icon.icon-dark { background-color: #111111; color: #fff; } .icon-box .icon.icon-dark:hover { color: #5e5e5e; } .icon-box .icon.icon-dark.icon-bordered { background-color: transparent; border: 2px solid #111111; color: #111111; } .icon-box .icon.icon-dark.icon-bordered:hover { background-color: #111111; border-color: #111111; color: #fff; } .icon-box .icon.icon-white { background-color: #fff; color: #333333; } .icon-box .icon.icon-white:hover { background-color: #b3b3b3; color: #000000; } .icon-box .icon.icon-white.icon-bordered { background-color: transparent; border: 2px solid #fff; color: #fff; } .icon-box .icon.icon-white.icon-bordered:hover { background-color: #fff; border-color: #fff; color: #111111; } .icon-box .icon.icon-white.icon-border-effect { position: relative; } .icon-box .icon.icon-white.icon-border-effect::after { box-shadow: 0 0 0 3px #fff; } .icon-box .icon.icon-bordered { border: 1px solid #777777; } .icon-box .icon.icon-bordered:hover { background-color: #777777; color: #fff; } .icon-box .icon.icon-rounded { border-radius: 3px; } .icon-box .icon.icon-circled { border-radius: 50%; } .icon-box .icon.icon-xs { height: 30px; width: 30px; } .icon-box .icon.icon-xs i { font-size: 18px; line-height: 30px; } .icon-box .icon.icon-sm { height: 50px; width: 50px; } .icon-box .icon.icon-sm i { font-size: 22px; line-height: 50px; } .icon-box .icon.icon-md { height: 75px; width: 75px; } .icon-box .icon.icon-md i { font-size: 36px; line-height: 75px; } .icon-box .icon.icon-lg { height: 90px; width: 90px; } .icon-box .icon.icon-lg i { font-size: 48px; line-height: 90px; } .icon-box .icon.icon-xl { height: 120px; width: 120px; } .icon-box .icon.icon-xl i { font-size: 60px; line-height: 120px; } .icon-box .icon.icon-border-effect { position: relative; } .icon-box .icon.icon-border-effect::after { border-radius: 50%; box-shadow: 0 0 0 3px #eeeeee; box-sizing: content-box; content: ""; height: 100%; left: -4px; opacity: 0; padding: 4px; top: -4px; transform: scale(0.8); transition: transform 0.2s ease 0s, opacity 0.2s ease 0s; pointer-events: none; position: absolute; width: 100%; } .icon-box .icon.icon-border-effect.effect-flat::after { border-radius: 0; } .icon-box .icon.icon-border-effect.effect-rounded::after { border-radius: 3px; } .icon-box .icon.icon-border-effect.effect-circled::after { border-radius: 50%; } .icon-box .icon.icon-border-effect.icon-gray::after { box-shadow: 0 0 0 3px #eeeeee; } .icon-box .icon.icon-top { left: 0; margin: 0 auto; position: absolute; right: 0; top: -32px; } .icon-box i { display: inline-block; font-size: 40px; -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; } .icon-box i[class*="pe-7s-"] { vertical-align: text-bottom; } .icon-box.left { text-align: left; } .icon-box.left a { margin-right: 30px; padding: 0; } .icon-box.iconbox-border { border: 1px solid #dcdcdc; } .icon-box.iconbox-bg { background-color: #fafafa; } .icon-box.iconbox-bg.iconbox-bg-dark { background-color: #333333; } .icon-box .icon-box-title { margin-bottom: 15px; } .icon-box .icon-border-effect:hover::after, .icon-box:hover .icon-border-effect::after { opacity: 1; transform: scale(1); } .icon-box .icon-box-details { margin-left: 80px; } /* * Shortcode: Infinitescroll.less * ----------------------------------------------- */ #infscr-loading { background-color: rgba(0, 0, 0, 0.7); border-radius: 3px; color: #fff; font-size: 24px; height: 50px; line-height: 50px; left: 48%; position: fixed; text-align: center; top: 50%; width: 50px; z-index: 100; } #infscr-loading img { display: none; } /* * Shortcode: Instagram.less * ----------------------------------------------- */ /* -------- Instagram-Feed ---------- */ .instagram-feed-carousel figure, .instagram-feed figure { position: relative; } .instagram-feed-carousel figure .link-out, .instagram-feed figure .link-out { position: absolute; right: 10px; bottom: 10px; background: rgba(0, 0, 0, 0.45); color: #f8f8f8; line-height: 1; padding: 10px; font-weight: 300; opacity: 0; } .instagram-feed-carousel figure .link-out:hover, .instagram-feed figure .link-out:hover { background: rgba(0, 0, 0, 0.7); color: #f8f8f8; } .instagram-feed-carousel figure:hover .link-out, .instagram-feed figure:hover .link-out { opacity: 1; } /* -------- Instagram-Feed ---------- */ .instagram-feed .item { width: 100px; float: left; margin-bottom: 2px; margin-right: 2px; } /* * Shortcode: Light-Box.less * ----------------------------------------------- */ .nivo-lightbox-theme-default .nivo-lightbox-nav { height: 100%; top: 0; } .lightbox .lb-dataContainer { left: 0; position: absolute; right: 0; top: -45px; } /* * Shortcode: Map.less * ----------------------------------------------- */ .toggle-map { background: rgba(0, 0, 0, 0.7); color: #fff; cursor: pointer; display: block; font-size: 16px; padding: 30px 0; position: relative; text-align: center; text-transform: uppercase; width: 100%; z-index: 200; -webkit-transition: all 200ms linear; -o-transition: all 200ms linear; transition: all 200ms linear; } .toggle-map:hover { color: #fff; } .toggle-map span:after { content: "\f107"; font-family: fontawesome; margin-left: 10px; } .toggle-map.open span:after { content: "\f106"; } .map-canvas { height: 400px; -webkit-transition: all 0.3s linear 0s; -o-transition: all 0.3s linear 0s; transition: all 0.3s linear 0s; } .map-canvas.big { height: 720px; } .map-canvas.map-hidden { height: 0; } .btn-show-map { color: #111111; font-size: 18px; left: 0; margin: 0 auto; position: absolute; right: 0; text-align: center; top: 45%; } .btn-show-map i { font-size: 48px; } /* * Shortcode: Pegination.less * ----------------------------------------------- */ .pagination.theme-colored li.active a { background: #BF9E58; color: #fff; border: 1px solid transparent; } .pagination.dark li a { color: #333; } .pagination.dark li.active a { background: #333; color: #fff; border: 1px solid transparent; } .pager.theme-colored li.active a { color: #fff; border: 1px solid transparent; } .pager.dark li a { color: #fff; background-color: #333; border: 1px solid transparent; } /* * Shortcode: Pricing.less * ----------------------------------------------- */ .pricing-table { margin-bottom: 30px; position: relative; } .pricing-table .table-price { color: #111111; font-size: 45px; } .pricing-table .table-price span { font-size: 13px; vertical-align: middle; } .pricing-table.featured { border: 1px solid #111111; } .pricing-table .table-type { display: inline; } .pricing-table .btn-signup { margin-right: 0; width: 100%; } .pricing-table .table-list { list-style: outside none none; padding: 10px 0 10px 20px; } .pricing-table .table-list li { border-bottom: 0; font-size: 12px; padding: 10px 0; } .pricing-table .table-list li i { margin-right: 8px; } .pricing-table .package-type span { position: relative; padding-left: 15px; margin-left: 10px; } .pricing-table .package-type span::after { background: #2d915b; content: ""; height: 20px; left: -20px; position: absolute; top: 11px; width: 20px; } .pricing { background-color: #3FB179; position: relative; -webkit-transition: 0.3s all ease-in-out 0s; -o-transition: 0.3s all ease-in-out 0s; transition: 0.3s all ease-in-out 0s; } .pricing:hover { background-color: #121b26 !important; } .pricing .table-price { font-size: 4rem !important; /* =64px */ line-height: 1.2; font-family: "Open Sans", sans-serif; margin: 0 0 20px; font-weight: 200; } .pricing .table-title { color: #fff; margin: 0; padding: 15px 0; padding-top: 0; text-transform: uppercase; } .pricing.table-horizontal { background-color: #3FB179; } /* * Shortcode: Process-Steps.less * ----------------------------------------------- */ /* * Shortcode: Progress-Bar.less * ----------------------------------------------- */ .progress-item { margin-top: 20px; } .progress-item .progress { background-color: #f8f8f8; box-shadow: 0 0 1px rgba(0, 0, 0, 0.4) inset; border-radius: 0; height: 10px; margin-bottom: 15px; overflow: visible; } .progress-item .progress-bar { font-size: 11px; padding-left: 10px; position: relative; text-align: left; width: 0; line-height: 18px; -webkit-transition: all 1s ease 0s; -o-transition: all 1s ease 0s; transition: all 1s ease 0s; } .progress-item .progress-bar .percent { background: none repeat scroll 0 0 #555555; border-radius: 8px 0 0; padding: 3px 5px; position: absolute; right: 0; top: -30px; } .progress-item.progress-white .progress { padding: 2px; } .progress-item.style2 .progress { height: 25px; } .progress-item.style2 .progress-bar .percent { background: none; color: #555555; font-size: 14px; } /* * Shortcode: Promo.less * ----------------------------------------------- */ .modal-promo-box { max-width: 700px; padding: 90px 60px; margin: 0 auto; } /* * Shortcode: Section-Title.less * ----------------------------------------------- */ .small-title { position: relative; } .small-title i { font-size: 36px; margin-top: 7px; padding-top: 0px; } .small-title .title { margin-left: 15px; } .small-title .title:after { bottom: -6px; content: ""; height: 1px; left: 45px; position: absolute; width: 45px; } .section-title .both-side-line::after { background: #c0c0c0 none repeat scroll 0 0; content: ""; height: 2px; position: absolute; right: -40px; top: 10px; width: 30px; } .section-title .both-side-line::before { background: #c0c0c0 none repeat scroll 0 0; content: ""; height: 2px; position: absolute; left: -40px; top: 10px; width: 30px; } .section-title .top-side-line::after { background: #c0c0c0 none repeat scroll 0 0; content: ""; height: 2px; left: 0; margin: 0 auto; position: absolute; right: 0; top: -8px; width: 40px; } .section-title .left-side-line::before { background: #c0c0c0 none repeat scroll 0 0; content: ""; height: 2px; left: 0; position: absolute; top: -8px; width: 35px; } .section-title .right-side-line::before { background: #c0c0c0 none repeat scroll 0 0; content: ""; height: 2px; position: absolute; right: 0; top: -8px; width: 35px; } .section-title .sub-title { margin: 0; position: relative; display: inline-block; } .section-title .title { margin-top: 0; position: relative; } .section-title .title-icon { left: -60px; position: absolute; top: -10px; } .section-title .title-icon i { opacity: 0.5; } .section-title p { font-size: 14px; } .section-title p.left-bordered { border-left: 2px solid #c0c0c0; padding-left: 10px; } .section-title p.right-bordered { border-right: 2px solid #c0c0c0; padding-right: 10px; } /*Theme Section Title*/ .section-title { margin-bottom: 30px; position: relative; } .section-title.title-border { padding-left: 30px; } .section-title.title-border.title-right { border-left: 0; text-align: right; } .section-title.icon-bg p { font-size: 14px; font-style: italic; margin-bottom: 0; } .section-title.icon-bg .page-title { font-size: 38px; line-height: 52px; } .section-title.icon-bg .page-title i { font-size: 42px; line-height: 1.3; position: absolute; opacity: 0.15; left: 0; right: 0; margin: 0 auto; } .title-dots { background: url("../images/title-dots.png") repeat scroll 0 0; height: 30px; margin-bottom: 20px; } .title-dots span { color: #fff; font-size: 17px; line-height: 30px; padding: 5px 10px; } .title-dots.small { height: 24px; margin-bottom: 15px; } .title-dots.small span { font-size: 11px; line-height: 23px; } /* * Shortcode: Separators.less * ----------------------------------------------- */ .title-separator { border-top-style: solid; border-top-width: 1px; font-size: 16px; height: auto; line-height: 20px; margin: 10px 0; width: 70%; } .title-separator span { background: #fff none repeat scroll 0 0; border-radius: 2px; letter-spacing: 0.2em; padding: 2px 10px; position: relative; text-transform: uppercase; top: -12px; } .separator { color: #ccc; line-height: 1.2em; margin: 30px auto; overflow: hidden; text-align: center; width: 100%; } .separator::before, .separator::after { border-bottom: 1px solid #eee; content: ""; display: inline-block; height: .65em; margin: 0 -4px 0 -100%; vertical-align: top; width: 50%; } .separator::after { margin: 0 -100% 0 0; } .separator i, .separator span, .separator a { display: inline-block; margin: 0 20px 0 24px; font-size: 20px; } .separator.separator-left, .separator.left i { float: left; margin: 2px 50px 0 0; } .separator.right i { float: right; margin: 0 0 2px 50px; } .separator.separator-medium-line { margin: 10px auto; width: 20%; } .separator.separator-small-line { width: 10%; } .separator.separator-rouned i, .separator.separator-border-rouned i { background-color: #f5f5f5; border-radius: 50%; height: 40px; left: 0; line-height: 40px; margin: -12px auto auto; position: absolute; right: 0; width: 40px; } .separator.separator-border-rouned i { background: transparent; border: 1px solid #f5f5f5; } .separator.separator-rouned.separator-rouned-left i { margin: -12px auto auto; right: auto; left: 0; } .separator.separator-rouned.separator-rouned-right i { margin: -12px auto auto; right: 0; left: auto; } .separator.dotted::before, .separator.dotted::after { border-bottom: 2px dotted #ccc; } /* * Shortcode: styled-icons.less * ----------------------------------------------- */ /* common style */ .styled-icons a { color: #333333; font-size: 18px; height: 32px; line-height: 32px; width: 32px; float: left; margin: 5px 7px 5px 0; text-align: center; -webkit-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } .styled-icons a:hover { color: #666666; } .styled-icons.icon-gray a { background-color: #eeeeee; color: #555555; display: block; font-size: 18px; height: 36px; line-height: 36px; width: 36px; } .styled-icons.icon-gray a:hover { color: #bbbbbb; } .styled-icons.icon-gray.icon-bordered a { background-color: transparent; border: 2px solid #eeeeee; } .styled-icons.icon-gray.icon-bordered a:hover { border: 2px solid #d5d5d5; } .styled-icons.icon-dark a { background-color: #333333; color: #eeeeee; display: block; font-size: 18px; height: 36px; line-height: 36px; width: 36px; } .styled-icons.icon-dark a:hover { color: #5e5e5e; } .styled-icons.icon-dark.icon-bordered a { background-color: transparent; border: 2px solid #111111; color: #111111; } .styled-icons.icon-dark.icon-bordered a:hover { background-color: #111111; border-color: #111111; color: #fff; } .styled-icons.icon-bordered a { border: 1px solid #777777; } .styled-icons.icon-bordered a:hover { background-color: #777777; color: #fff; } .styled-icons.icon-rounded a { border-radius: 3px; } .styled-icons.icon-circled a { border-radius: 50%; } .styled-icons.icon-sm a { font-size: 13px; height: 30px; line-height: 30px; margin: 2px 7px 2px 0; width: 30px; } .styled-icons.icon-md a { font-size: 24px; height: 50px; line-height: 50px; width: 50px; } .styled-icons.icon-lg a { font-size: 32px; height: 60px; line-height: 60px; width: 60px; } .styled-icons.icon-xl a { font-size: 60px; height: 120px; line-height: 120px; width: 120px; } .styled-icons li { display: inline-block; margin-bottom: 0; margin-top: 0; } /* * Shortcode: Tabs.less * ----------------------------------------------- */ .tab-content { padding: 15px; border: 1px solid #eeeeee; } .nav-tabs { border: none; } .nav-tabs > li { float: left; margin-bottom: -1px; } .nav-tabs > li.active a, .nav-tabs > li.active a:hover, .nav-tabs > li.active a:focus { color: #111111; background-color: #f8f8f8; } .nav-tabs > li > a { border-radius: 0; font-family: 'Open Sans', sans-serif; font-size: 12px; color: #555555; padding: 12px 20px; margin-right: 0; } .nav-tabs > li > a .fa { margin-right: 10px; } .nav-tabs > li > a:hover, .nav-tabs > li > a:focus { color: #333333; background-color: transparent; } .nav-tabs > li > a i { font-size: 32px; margin-right: 20px; vertical-align: middle; } /* -------- Nav Tabs ---------- */ .nav-tabs > li { text-align: center; } .nav-tabs > li > a i { display: block; font-size: 48px; margin-right: 0; margin-bottom: 10px; vertical-align: middle; } /* -------- Horizontal-Tab-Centered ---------- */ .horizontal-tab-centered .nav-pills { display: inline-block; } .horizontal-tab-centered .nav-pills > li > a { background: #eeeeee; color: #555555; font-size: 14px; padding: 8px 10px; margin-right: 10px; margin-bottom: 10px; text-transform: capitalize; } .horizontal-tab-centered .nav-pills > li > a:hover { color: #fff; } .horizontal-tab-centered .nav-pills > li > a i { font-size: 14px; margin-right: 8px; } .horizontal-tab-centered .nav-pills > li.active > a, .horizontal-tab-centered .nav-pills > li.active > a:hover, .horizontal-tab-centered .nav-pills > li.active > a:focus { color: #fff; } /* -------- Horizontal-Tab Fullwide ---------- */ .horizontal-tab.fullwide .nav-tabs > li { width: 20%; } /* -------- Vertical Nav-Tabs ---------- */ .vertical-tab .tab-content { padding: 5px 5px 20px 20px; border: none; } .vertical-tab .nav-tabs > li { float: none; margin-bottom: 0; } .vertical-tab .nav-tabs > li > a { background: none; border-radius: 0; border-bottom: 1px solid #d3d3d3; border-right: 1px solid #d3d3d3; border-top: 1px solid transparent; border-left: 1px solid transparent; font-size: 14px; padding: 30px 0 30px 15px; } .vertical-tab .nav-tabs > li:first-child > a { border-top: 1px solid #d3d3d3 !important; } .vertical-tab .nav-tabs > li.active > a, .vertical-tab .nav-tabs > li.active > a:hover, .vertical-tab .nav-tabs > li.active > a:focus { background: none; border-top: 1px solid transparent; border-left: 1px solid transparent; border-right: 1px solid transparent; border-bottom: 1px solid #d3d3d3; } .vertical-tab .small-padding .nav-tabs > li a { padding: 20px 0 20px 15px; } .vertical-tab .small-padding .nav-tabs > li i { font-size: 24px; } @media only screen and (max-width: 767px) { .vertical-tab .tab-content { padding: 20px 5px; } .nav-tabs > li > a { border-radius: 0; border-bottom: none; border-left: 2px solid #d3d3d3; } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus { border-bottom: none; border-left: 2px solid #d3d3d3; } } .custom-nav-tabs { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; border-color: -moz-use-text-color; border-image: none; border-style: none solid none none; border-width: medium 0px medium medium; margin-right: 53px; } .custom-nav-tabs > li { float: none; margin: 0 0 1px; } .custom-nav-tabs > li a { background: #eeeeee none repeat scroll 0 0; border: medium none; border-radius: 0; display: block; font-size: 17px; font-weight: 700; line-height: 59px; margin: 0; outline: medium none; padding: 0; text-align: center; text-transform: uppercase; } .custom-nav-tabs > li.active > a, .custom-nav-tabs > li.active > a:hover, .custom-nav-tabs > li.active > a:focus, .custom-nav-tabs > li > a:hover, .custom-nav-tabs > li > a:focus { border: medium none; color: #000; padding: 0; } /* * Shortcode: Teams.less * ----------------------------------------------- */ .team-members { overflow: hidden; position: relative; } .team-members .team-details { bottom: -50px; position: absolute; transition: all 300ms ease-in-out 0s; width: 100%; } .team-members:hover .team-details { bottom: 0; } .team-member .thumb { position: relative; overflow: hidden; } .team-member .thumb img { -webkit-transition: all 300ms ease-in-out 0s; -o-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s; } .team-member:hover .thumb img { transform: scale(1.1); } .team-member .thumb .info { bottom: -50px; position: absolute; -webkit-transition: all 300ms ease-in-out 0s; -o-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s; width: 100%; } .team-member:hover .thumb .info { bottom: 0; } .dl-horizontal.doctor-info dt { color: #333333; font-size: 14px; width: auto; } @media only screen and (max-width: 767px) { .dl-horizontal.doctor-info dt { margin-bottom: 10px; } } .team-block .team-upper-block { overflow: hidden; position: relative; } .team-block .team-upper-block .styled-icons { background: #fff none repeat scroll 0 0; position: absolute; text-align: center; transform: translateY(-5%); transition: all 300ms linear 0s; width: 100%; } .team-block:hover .team-upper-block .styled-icons { transform: translateY(-100%); } .team-block:hover .team-upper-block img { transform: translateY(-35px) scale(1.04); } .team-block .team-upper-block img { transition: all 300ms linear 0s; } .team-block { margin: 0 auto 30px; } .team-block .team-thumb { overflow: hidden; position: relative; } .team-block .team-thumb .team-overlay { height: 85.4%; padding: 40px 20px 0 30px; position: absolute; top: -90%; -webkit-transition: all 300ms ease-in-out 0s; -o-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s; width: 100%; } .team-block .team-thumb .team-overlay .styled-icons { position: absolute; bottom: 4px; } .team-block .team-thumb .team-overlay .styled-icons a { border-color: #fff; } .team-block .team-thumb .team-overlay .styled-icons a:hover { background: #fff none repeat scroll 0 0; } .team-block .team-thumb .team-overlay .styled-icons a i { color: #fff; } .team-block .team-thumb .styled-icons { bottom: 0; padding: 7px 20px 0 0; position: absolute; right: 0; width: 84%; } .team-block .team-thumb .styled-icons a { margin: 0px; } .team-block .team-thumb .styled-icons a i { color: #fff; font-size: 14px; margin-top: 8px; } .team-block .team-thumb .styled-icons a:hover { border-color: #fff; -webkit-transition: all 100ms ease-in-out 0s; -o-transition: all 100ms ease-in-out 0s; transition: all 100ms ease-in-out 0s; } .team-block .team-thumb .styled-icons::after { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; border-image: none; border-style: solid; border-width: 22px; bottom: 0; content: ""; display: block; height: 40px; left: -44px; position: absolute; width: 40px; } .team-block .team-bottom-part { background: #eeeeee none repeat scroll 0 0; margin-top: 6px; padding: 10px 16px 12px 30px; } .team-block:hover .team-overlay { top: 0; } .team-block { margin: 0 auto 30px; } .team-block .team-thumb { overflow: hidden; position: relative; } .team-block .team-thumb .team-overlay { height: 85.4%; padding: 40px 20px 0 30px; position: absolute; top: -90%; -webkit-transition: all 300ms ease-in-out 0s; -o-transition: all 300ms ease-in-out 0s; transition: all 300ms ease-in-out 0s; width: 100%; } .team-block .team-thumb .team-overlay .styled-icons { position: absolute; bottom: 4px; } .team-block .team-thumb .team-overlay .styled-icons a { border-color: #fff; } .team-block .team-thumb .team-overlay .styled-icons a:hover { background: #fff none repeat scroll 0 0; } .team-block .team-thumb .team-overlay .styled-icons a i { color: #fff; } .team-block .team-thumb .team-overlay::after { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; border-image: none; border-style: solid; border-width: 22px; bottom: -44px; content: ""; display: block; height: 44px; left: -2px; position: absolute; width: 40px; } .team-block .team-thumb .styled-icons { bottom: 0; padding: 7px 20px 0 0; position: absolute; right: 0; width: 84%; } .team-block .team-thumb .styled-icons a { margin: 0px; } .team-block .team-thumb .styled-icons a i { color: #fff; font-size: 14px; margin-top: 8px; } .team-block .team-thumb .styled-icons a:hover { border-color: #fff; -webkit-transition: all 100ms ease-in-out 0s; -o-transition: all 100ms ease-in-out 0s; transition: all 100ms ease-in-out 0s; } .team-block .team-thumb .styled-icons::after { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; border-image: none; border-style: solid; border-width: 22px; bottom: 0; content: ""; display: block; height: 40px; left: -44px; position: absolute; width: 40px; } .team-block .team-bottom-part { background: #eeeeee none repeat scroll 0 0; margin-top: 6px; padding: 10px 16px 12px 30px; } .team-block:hover .team-overlay { top: 0; } /* * Shortcode: Testimonials.less * ----------------------------------------------- */ .testimonial .content { position: relative; } .testimonial .content::after { color: #202c45; content: "\f10e"; font-family: fontawesome; font-size: 48px; opacity: 0.2; position: absolute; right: 20px; top: -15px; } /* * Shortcode: timetable-fullcalendar.less * ----------------------------------------------- */ .fc-timetable-wrapper .fc-scroller { height: auto; overflow: hidden; } .fc-timetable-wrapper .fc-toolbar { display: none; height: 38px; margin-bottom: 20px; } .fc-timetable-wrapper .fc-toolbar h2 { color: #7f7f7f; font-family: 'Lato', sans-serif; font-size: 18px; font-weight: 400; line-height: 38px; text-transform: uppercase; } .fc-timetable-wrapper .fc-toolbar .fc-button { -moz-box-sizing: border-box; -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; -webkit-box-sizing: border-box; -webkit-transition: all 0.3s ease; background: #ffffff; border: 1px solid #e5e5e5; box-shadow: none; box-sizing: border-box; height: 38px; line-height: 36px; transition: all 0.3s ease; width: 40px; } .fc-timetable-wrapper .fc-toolbar .fc-button:hover { background: #5fc7ae; border-color: #5fc7ae; } .fc-timetable-wrapper .fc-toolbar .fc-button:hover .fc-icon.fc-icon-left-single-arrow { background-position: -108px -50px; } .fc-timetable-wrapper .fc-toolbar .fc-button:hover .fc-icon.fc-icon-right-single-arrow { background-position: -115px -50px; } .fc-timetable-wrapper .fc-toolbar .fc-button .fc-icon { height: 11px; top: -1px; width: 6px; } .fc-timetable-wrapper .fc-toolbar .fc-button .fc-icon:after { display: none; } .fc-timetable-wrapper .fc-toolbar .fc-button .fc-icon.fc-icon-left-single-arrow { background-position: -100px -50px; } .fc-timetable-wrapper .fc-toolbar .fc-button .fc-icon.fc-icon-right-single-arrow { background-position: -122px -50px; } .fc-timetable-wrapper .fc-day-header { background: #ffffff; color: #7f7f7f; font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 300; line-height: 52px; } .fc-timetable-wrapper .fc-time-grid .fc-day.fc-widget-content { background: #ffffff; } .fc-timetable-wrapper .fc-axis { background: #ffffff; } .fc-timetable-wrapper .filter-departments { margin-bottom: 20px; } .fc-timetable-wrapper .filter-departments li { margin-bottom: 20px; } .fc-timetable-wrapper .filter-departments a { background: #eeeeee; border-color: #eeeeee; border-radius: 5px; color: #333333; padding: 5px; padding: 7px 15px; } .fc-timetable-wrapper .filter-departments .active { background: #888888; border-color: #888888; color: #ffffff; } .fc-timetable-wrapper .filter-departments .fc-departments-orthopaedics { background: #72a230; border-color: #72a230; } .fc-timetable-wrapper .filter-departments .fc-departments-cardiology { background: #ffab00; border-color: #ffab00; } .fc-timetable-wrapper .filter-departments .fc-departments-neurology { background: #fd4084; border-color: #fd4084; } .fc-timetable-wrapper .filter-departments .fc-departments-dental { background: #00a4ef; border-color: #00a4ef; } .fc-timetable-wrapper .filter-departments .fc-departments-haematology { background: #80acdd; border-color: #80acdd; } .fc-timetable-wrapper .fc-event { -moz-transition: all 0.3s ease; -o-transition: all 0.3s ease; -webkit-transition: all 0.3s ease; border-radius: 0; border: 0; border: 2px solid #5fc7ae; color: #ffffff; font-family: 'Lato', sans-serif; font-size: 16px; font-weight: 300; transition: all 0.3s ease; } .fc-timetable-wrapper .fc-event .fc-bg { opacity: 0; } .fc-timetable-wrapper .fc-event .fc-content { padding-left: 10px; padding-top: 10px; } .fc-timetable-wrapper .fc-event .fc-content div.fc-time { display: none; } .fc-timetable-wrapper .fc-event.hide { opacity: 0; z-index: -2; } .fc-timetable-wrapper .fc-event.fc-departments-orthopaedics { background: #72a230; border-color: #72a230; } .fc-timetable-wrapper .fc-event.fc-departments-cardiology { background: #ffab00; border-color: #ffab00; } .fc-timetable-wrapper .fc-event.fc-departments-neurology { background: #fd4084; border-color: #fd4084; } .fc-timetable-wrapper .fc-event.fc-departments-dental { background: #00a4ef; border-color: #00a4ef; } .fc-timetable-wrapper .fc-event.fc-departments-haematology { background: #80acdd; border-color: #80acdd; } .fc-timetable-wrapper td.fc-time { color: #7f7f7f; font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 400; line-height: 70px; text-align: center; } .fc-timetable-wrapper .fc-time-grid-container { height: auto; } .fc-timetable-wrapper .fc-content-skeleton .fc-event-container { margin: 0; } @media only screen and (max-width: 768px) { .fc-timetable-wrapper .fc-day-header { font-size: 10px; } .fc-timetable-wrapper .fc-time-grid-event .fc-time, .fc-timetable-wrapper .fc-time-grid-event .fc-title { font-size: 12px; } .fc-timetable-wrapper .fc-event .fc-content { padding-left: 0; padding-top: 0; } } /* * Shortcode: Toggles-Accordions.less * ----------------------------------------------- */ .panel-group .panel { box-shadow: none; -webkit-border-radius: 0 0 0 0; -moz-border-radius: 0; -ms-border-radius: 0 0 0 0; border-radius: 0 0 0 0; border: none; position: relative; } .panel-group .panel-title { font-size: 13px; } .panel-group .panel-title a { background: #f8f8f8; display: block; font-size: 14px; font-weight: 500; padding: 10px 15px 10px 48px; white-space: normal; } .panel-group .panel-title a.active { background: #16174f none repeat scroll 0 0 !important; border-bottom: 1px solid #d3d3d3 !important; color: #fff; } .panel-group .panel-title a.active .open-sub:after { display: none; } .panel-group .panel-title a.active::after { color: #fff; content: "\f068"; } .panel-group .panel-title a::after { color: #888; content: "\f067"; font-family: fontawesome; font-size: 14px; left: 0; padding: 10px 14px; position: absolute; top: 0; } .panel-group .panel-title.active.panel-group .panel-title:hover a, .panel-group .panel-title.active.panel-group .panel-title:focus a { color: #333333; } .panel-group .panel-title .open-sub { display: block; position: relative; } .panel-group .panel-title .open-sub:before, .panel-group .panel-title .open-sub:after { content: ""; display: block; position: absolute; height: 1px; top: 50%; margin-top: -0.5px; left: 50%; } .panel-group .panel-content { background: #fff none repeat scroll 0 0; border: 1px solid #ddd; padding: 10px 20px 20px; } .panel-group .panel-content > :last-child { margin-bottom: 0; } .panel-group.white .panel-title a { background-color: #fff; } /* -------- Toggle ---------- */ .panel-group.toggle .panel-heading { padding: 0; border-bottom: 0; border-top-left-radius: 0; border-top-right-radius: 0; } .panel-group.toggle .panel-body { padding: 10px 0 5px 25px; } .panel-group.accordion.transparent .panel-title a, .panel-group.toggle.transparent .panel-title a, .panel-group.accordion.transparent .panel-title a.active, .panel-group.toggle.transparent .panel-title a.active { background: transparent !important; border: none !important; color: #333333; } .panel-group.accordion.transparent .panel-title a::after, .panel-group.toggle.transparent .panel-title a::after, .panel-group.accordion.transparent .panel-title a.active::after, .panel-group.toggle.transparent .panel-title a.active::after { color: #333333; background: transparent !important; } .panel-group.accordion.transparent .panel-content, .panel-group.toggle.transparent .panel-content { background: transparent !important; } .panel-group.toggle .panel-heading + .panel-collapse > .panel-body, .panel-group.toggle .panel-heading + .panel-collapse > .list-group { border-top: none; } /* * Shortcode: Vertical-Timeline.less * ----------------------------------------------- */ .cd-timeline-content { background: #f1f1f1; } .cd-timeline-content::before { border-color: transparent transparent transparent #eee; } .cd-timeline-block:nth-child(2n) .cd-timeline-content::before { border-color: transparent #eee transparent transparent; } #cd-timeline.cd-timeline-simple::before { background: #ccc none repeat scroll 0 0; height: 82%; top: 65px; width: 2px; } #cd-timeline.cd-timeline-simple.time-line-media::before { height: 65%; } .cd-timeline-simple .cd-timeline-block { margin: 38px 0 20px 0; } .cd-timeline-simple .cd-timeline-block .cd-timeline-content::before { display: none; } .cd-timeline-simple .cd-timeline-block .cd-timeline-content { padding-top: 0; background: none; box-shadow: none; } .cd-timeline-simple .cd-timeline-block .cd-timeline-content p { font-size: 14px; } .cd-timeline-simple .cd-timeline-block .cd-timeline-img { background: #333 none repeat scroll 0 0 !important; box-shadow: 0 0 0 4px #ccc, 0 3px 0 rgba(0, 0, 0, 0.06) inset, 0 0px 0 3px rgba(0, 0, 0, 0.05) !important; } @media only screen and (max-width: 992px) { .cd-timeline-simple .cd-timeline-block .cd-timeline-content { text-align: left; } } @media only screen and (max-width: 768px) { .cd-timeline-simple .cd-timeline-block .cd-timeline-content { margin-bottom: 10px; } } @media only screen and (max-width: 992px) { .cd-timeline-simple .cd-timeline-block .cd-timeline-content h2 { font-size: 20px; } } @media only screen and (max-width: 768px) { .cd-timeline-simple .cd-timeline-block .cd-timeline-content h2 { font-size: 18px; } } @media only screen and (max-width: 768px) { .cd-timeline-simple .cd-timeline-block .cd-timeline-content .cd-date { font-size: 14px; } } /* Vertical Masonry Timeline */ .vertical-masonry-timeline .each-masonry-item { position: relative; width: 50%; margin-bottom: 30px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2) { margin-top: 80px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n) { padding-left: 50px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) { padding-right: 50px; } .vertical-masonry-timeline .each-masonry-item .timeline-block { background: #fff none repeat scroll 0 0; border: 1px solid #d7e4ed; height: 100%; padding: 20px; position: relative; width: 100%; } .vertical-masonry-timeline .each-masonry-item .timeline-block:before, .vertical-masonry-timeline .each-masonry-item .timeline-block:after { border-style: solid; border-width: 8px; content: ""; display: block; position: absolute; top: 20px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) .timeline-block:before { border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #c6d2db; left: auto; right: -16px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) .timeline-block:after { border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ffffff; left: auto; right: -15px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n) .timeline-block:before { border-color: rgba(0, 0, 0, 0) #c6d2db rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); left: -16px; right: auto; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n) .timeline-block:after { border-color: rgba(0, 0, 0, 0) #ffffff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); left: -15px; right: auto; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) .timeline-post-format { left: auto; right: -82px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n) .timeline-post-format { left: -80px; right: auto; } .timeline-post-format { border: 3px solid #bbb; border-radius: 100%; color: #bbb; height: 60px; overflow: hidden; position: absolute; top: -2px; width: 60px; z-index: 1; } .timeline-post-format:after { background: #fff none repeat scroll 0 0; color: #fff; content: ""; display: block; height: 100%; left: 0; position: absolute; top: 0; width: 100%; } .timeline-post-format i { font-size: 18px; position: absolute; z-index: 1; left: 50%; top: 50%; transform: translateY(-50%) translateX(-50%); } .vertical-masonry-timeline-wrapper:before { background: #ddd none repeat scroll 0 0; bottom: 0; content: ""; height: 100%; left: 50%; margin-left: 0px; position: absolute; width: 4px; } .vertical-masonry-timeline-wrapper:after { background: rgba(0, 0, 0, 0) linear-gradient(#ddd, transparent) repeat scroll 0 0; bottom: -100px; content: ""; height: 100px; left: 50%; margin-left: 0px; position: absolute; width: 4px; } .vertical-masonry-timeline::after { background: rgba(0, 0, 0, 0) linear-gradient(transparent, #ddd) repeat scroll 0 0; content: ""; height: 100px; left: 50%; position: absolute; top: -65px; width: 4px; } @media only screen and (min-width: 768px) { .vertical-masonry-timeline .each-masonry-item.item-right { padding-right: 0px; padding-left: 50px; } .vertical-masonry-timeline .each-masonry-item.item-right .timeline-block:before { border-color: rgba(0, 0, 0, 0) #c6d2db rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); left: -16px; right: auto; } .vertical-masonry-timeline .each-masonry-item.item-right .timeline-block:after { border-color: rgba(0, 0, 0, 0) #ffffff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); left: -15px; right: auto; } .vertical-masonry-timeline .each-masonry-item.item-right .timeline-post-format { left: -80px; right: auto; } .vertical-masonry-timeline .each-masonry-item.item-left { padding-right: 50px; padding-left: 0px; } .vertical-masonry-timeline .each-masonry-item.item-left .timeline-block:before { border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #c6d2db; right: -16px; left: auto; } .vertical-masonry-timeline .each-masonry-item.item-left .timeline-block:after { border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #ffffff; right: -15px; left: auto; } .vertical-masonry-timeline .each-masonry-item.item-left .timeline-post-format { right: -81px; left: auto; } } @media only screen and (max-width: 768px) { .vertical-masonry-timeline .each-masonry-item { width: 100%; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) { padding-right: 0px; padding-left: 71px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n) { padding-left: 71px; padding-right: inherit; } .vertical-masonry-timeline .each-masonry-item:nth-child(2) { margin-top: 0; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) .timeline-post-format { left: -72px; right: auto; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n) .timeline-post-format { left: -72px; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) .timeline-block::before { border-color: rgba(0, 0, 0, 0) #c6d2db rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); left: -16px; right: auto; } .vertical-masonry-timeline .each-masonry-item:nth-child(2n+1) .timeline-block::after { border-color: rgba(0, 0, 0, 0) #ffffff rgba(0, 0, 0, 0) rgba(0, 0, 0, 0); left: -15px; right: auto; } .vertical-masonry-timeline:after { left: 29px; } .vertical-masonry-timeline-wrapper:before, .vertical-masonry-timeline-wrapper:after { left: 44px; } } /* * Shortcode: Working-Process.less * ----------------------------------------------- */ .working-process > li { float: left; overflow: hidden; position: relative; text-align: center; } .working-process > li::after { border-top: 1px dashed #333333; content: ""; left: 6px; margin-left: -32px; overflow: hidden; position: absolute; top: 25px; width: 50%; } .working-process > li::before { border-top: 1px dashed #333333; content: ""; margin-right: -25px; position: absolute; right: 0; top: 25px; width: 50%; } .working-process > li :first-child::after { border-top: medium none; } .working-process > li :last-child::before { border-top: medium none; } .working-process li a { border: 1px solid; display: inline-block; height: 50px; line-height: 50px; overflow: hidden; width: 50px; border-radius: 50%; } .working-process li a:hover { background: #333333 none repeat scroll 0 0; border: 1px solid transparent; color: #fff; } .working-process li a i { font-size: 18px; } .working-process.square li a, .working-process.square.large-circle li a { border-radius: 0; } .working-process.large-circle li a { height: 120px; line-height: 130px; width: 120px; border-radius: 50%; } .working-process.large-circle li a i { font-size: 28px; } .working-process.large-circle > li::before { margin-right: -60px; top: 60px; } .working-process.large-circle > li::after { margin-left: -64px; top: 60px; } .working-process.theme-colored li a { color: #fff; } /* * home-boxes.less * ----------------------------------------------- */ .home-boxes .each-box { overflow-x: hidden; } .home-boxes .bg-icon { bottom: 0; color: #fff; font-size: 58px; line-height: 1; opacity: 0.3; position: absolute; right: 30px; transform: rotate(-40deg); } /* * Widgets.less * ----------------------------------------------- */ /* -------- Top Search Bar ---------- */ .search-form-wrapper { position: relative; /* form absolute */ } .search-form-wrapper.toggle { display: none; } .search-form-wrapper.toggle.active { display: block; } .search-form-wrapper form { padding: 10px; position: relative; } .search-form-wrapper form label { margin: 0px; position: absolute; right: 11px; top: 11px; } .search-form-wrapper form label:before { color: #555555; cursor: pointer; content: "\f002"; font-family: fontawesome; font-size: 16px; position: absolute; right: 13px; top: 6px; } .search-form-wrapper form input[type="text"] { background-color: #fff; border: 1px solid #c0c0c0; height: 46px; padding: 8px 17px; width: 100%; } .search-form-wrapper form input[type="submit"] { background-color: #fff; border-left: 1px solid #c0c0c0; border: none; height: 44px; width: 50px; text-indent: -999px; } .search-form-wrapper.form-absolute form { background-color: #333333; position: absolute; right: 0px; top: 12px; width: 370px; z-index: 99; } /* -------- Form Round ---------- */ .search-form-wrapper.round form input[type="text"] { border-radius: 30px; border-width: 4px; } .search-form-wrapper.round form input[type="submit"] { height: auto; width: auto; margin-right: 10px; margin-top: 10px; } .search-form-wrapper.round form label::before { color: #c0c0c0; } .widget .list-border li { border-bottom: 1px dashed #d3d3d3; } .widget.dark .list-border li { border-bottom: 1px dashed #404040; } /* -------- Footer & Sidebar Widgets ---------- */ .widget { margin-bottom: 30px; } .widget .widget-title { margin-top: 0; margin-bottom: 20px; } .widget ul li { margin-bottom: 5px; padding-bottom: 5px; } .widget ul.list li, .widget .post { margin-bottom: 8px; padding-bottom: 8px; } .widget.brochures > li { margin-bottom: 10px; padding: 10px; } .widget.brochures i { color: #666666; font-size: 16px; margin-right: 10px; } .widget.address > li { font-size: 13px; margin-bottom: 10px; padding: 5px 10px; } .widget.address > li i { font-size: 16px; margin-right: 8px; vertical-align: middle; } .widget .twitter-feed li { font-size: 13px; margin-bottom: 15px; margin-top: 0px; padding-left: 30px; } .widget .twitter-feed li.item { position: relative; } .widget .twitter-feed li::after { content: "\f099"; font-size: 24px; font-family: fontawesome; left: 0; position: absolute; top: 0; } .widget .styled-icons li { margin-bottom: 0; padding-bottom: 0; } .widget .styled-icons li a { margin-bottom: 0; } .widget .tags a { border: 1px solid #404040; display: inline-block; font-size: 12px; margin: 5px 4px 5px -2px; padding: 5px 10px; } .widget .tags a:hover { color: #fff; } .widget .search-input { background: transparent none repeat scroll 0 0; border: 1px solid #c0c0c0; border-radius: initial; box-shadow: none; height: 45px; padding: 10px; } .widget .search-button { background: transparent none repeat scroll 0 0; border: 1px solid #c0c0c0; border-radius: 0; height: 45px; } .widget .nav-tabs li { border-bottom: 1px solid transparent; margin-bottom: -2px; padding-bottom: 0; } .widget .nav-tabs li:hover { border-bottom: 1px solid transparent; } .widget .post-title a { font-size: 13px; letter-spacing: 0; } .widget .quick-contact-form .form-control { background-color: rgba(241, 241, 241, 0.8); border-color: #d3d3d3; color: #a9a9a9; } .widget .product-list .product-title { font-size: 14px; font-weight: 400; } .widget.dark .widget-title { color: #fff; } .widget.dark .tags a { border: 1px solid #404040; } .widget.dark .widget-image-carousel .title { color: #fff; } .widget.dark .search-input { border: 1px solid #333333; } .widget.dark .styled-icons li a:hover i { color: #fff; } .widget.dark .search-button { border: 1px solid #333333; } .widget.dark .widget-subscribe .subscribe-title { color: #fff; } .widget.dark .widget-subscribe .subscribe-sub-title { color: #666666; } .widget.dark .nav-tabs li { border-bottom: 1px solid transparent; margin-bottom: -2px; padding-bottom: 0; } .widget.dark .nav-tabs li:hover { border-bottom: 1px solid transparent; } .widget.dark .nav-tabs li:hover a { border: 1px solid #555555; } .widget.dark .nav-tabs li.active a { -moz-border-bottom-colors: none; -moz-border-left-colors: none; -moz-border-right-colors: none; -moz-border-top-colors: none; background: #333333 none repeat scroll 0 0; border-color: #555555 #555555 transparent; border-image: none; border-style: solid; border-width: 1px; } .widget.dark .product-title a { color: #808080; } .widget.dark .post-title a { color: #c0c0c0; } .widget.dark .tab-content { background: #333333 none repeat scroll 0 0; border: 1px solid #555555; } .widget.dark .quick-contact-form .form-control { background-color: rgba(5, 15, 5, 0.1); border-color: #333333; } .widget.dark .widget-title.line-bottom-theme-colored-2.border-bottom { border-bottom: 1px solid #444; } .widget.no-border ul li { border: none; padding-bottom: 0; margin-bottom: 0; } .widget ul.list li::before { display: none; } .widget.dark ul.list li::before { display: none; } /* --------Horizontal Contact Widget ---------- */ .horizontal-contact-widget { border-top: 1px dashed #666666; } .horizontal-contact-widget .each-widget::before { content: "\f111"; font-family: FontAwesome; left: 0; position: absolute; right: 0; top: -42px; } /* -------- Horizontal Contact Widget Dark ---------- */ .horizontal-contact-widget.dark { border-top: 1px dashed #333333; } .widget.dark .btn.btn-default { border-color: #333; } /* -------- Flickr-Feed ---------- */ #flickr-feed img { background: none repeat scroll 0 0 #000; float: left; height: 60px; margin: 0 5px 5px 0; padding: 0; width: 70px; } .text-hover-theme-colored { -webkit-transition: all 0.3s ease; -o-transition: all 0.3s ease; transition: all 0.3s ease; } .widget .services-list li { background-color: #eeeeee; border-bottom: 1px solid #ddd; padding: 10px 15px 10px 20px; } .widget .services-list li.active { position: relative; border-bottom: 1px solid transparent !important; } .widget .services-list li.active a { color: #fff; } /* * Footer.less * ----------------------------------------------- */ .footer { background: #fafafa; } .footer a { color: #808080; } .footer a:focus, .footer a:hover, .footer a:active { color: #666666; } .footer .widget .widget-title { margin-top: 0px; } .footer .widget.dark .quick-contact-form button { border-color: #333333; color: #909090; } .footer .widget.dark .quick-contact-form button:hover { background-color: #eeeeee; border-color: #eeeeee; color: #333333; } /* -------- Custom Theme Style ---------- */ .footer-box { padding: 20px 15px; } .footer-box.icon-box { margin-bottom: 0; } .footer-box .title { color: #fff; margin-bottom: 5px; } .footer-box p { color: #eeeeee; line-height: 20px; } .footer-box p i { color: #fff; margin-left: 10px; } .footer-box-wrapper { margin-top: -55px; } .footer-news-letter .newsletter-form .form-control { background: #333333; border: medium none; height: 42px; margin-right: 10px; }
0.333503
0.123498
* { font-family: "Press Start 2P", "consolas", "Courier New"; } body { color: white; background-color: black; } p, h1, h4 { text-align: center; } h1 { margin-top: 30px; margin-bottom: 30px; } p { font-size: 14px; margin-top: 25px; } .emscripten { padding-right: 0; margin-left: auto; margin-right: auto; display: block; font-family: inherit; } #status { padding: 10px; } #menu { padding-top: 30px; } #menu > select, #menu > button { font-size: 16px; padding: 10px; border-radius: 0; margin-left: 10px; margin-right: 10px; } div.emscripten { text-align: center; } canvas.emscripten { border: 1px solid rgb(50, 50, 50); background-color: rgb(20, 20, 20); } /*Controls*/ h4 { text-decoration: underline; font-weight: normal; margin-top: 30px; margin-bottom: 25px; } #keyboard { display: flex; justify-content: center; align-items: center; } caption { padding-bottom: 14px; font-size: 14px; } .tg { border-collapse: collapse; border-spacing: 0; } .tg td, .tg th { border-color: black; border-style: solid; border-width: 1px; font-size: 14px; overflow: hidden; padding: 15px 10px; word-break: normal; } .tg .tg-il3a { border-color: #ffffff; color: #ffffff; text-align: left; vertical-align: top; text-align: center; } .keyboard-element { margin-left: 10px; margin-right: 10px; display: inline-block; } #arrow { font-size: 70px; } /*Emscripten Spinner*/ .spinner { height: 50px; width: 50px; margin: 30px auto 10px auto; -webkit-animation: rotation 0.8s linear infinite; -moz-animation: rotation 0.8s linear infinite; -o-animation: rotation 0.8s linear infinite; animation: rotation 0.8s linear infinite; border-left: 10px solid rgb(0, 150, 240); border-right: 10px solid rgb(0, 150, 240); border-bottom: 10px solid rgb(0, 150, 240); border-top: 10px solid rgb(100, 0, 200); border-radius: 100%; background-color: rgb(200, 100, 250); } @-webkit-keyframes rotation { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); } } @-moz-keyframes rotation { from { -moz-transform: rotate(0deg); } to { -moz-transform: rotate(360deg); } } @-o-keyframes rotation { from { -o-transform: rotate(0deg); } to { -o-transform: rotate(360deg); } } @keyframes rotation { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } /*Github Corner*/ .github-corner:hover .octo-arm { animation: octocat-wave 560ms ease-in-out; } @keyframes octocat-wave { 0%, 100% { transform: rotate(0); } 20%, 60% { transform: rotate(-25deg); } 40%, 80% { transform: rotate(10deg); } } @media (max-width: 500px) { .github-corner:hover .octo-arm { animation: none; } .github-corner .octo-arm { animation: octocat-wave 560ms ease-in-out; } }
web/dist/main.css
* { font-family: "Press Start 2P", "consolas", "Courier New"; } body { color: white; background-color: black; } p, h1, h4 { text-align: center; } h1 { margin-top: 30px; margin-bottom: 30px; } p { font-size: 14px; margin-top: 25px; } .emscripten { padding-right: 0; margin-left: auto; margin-right: auto; display: block; font-family: inherit; } #status { padding: 10px; } #menu { padding-top: 30px; } #menu > select, #menu > button { font-size: 16px; padding: 10px; border-radius: 0; margin-left: 10px; margin-right: 10px; } div.emscripten { text-align: center; } canvas.emscripten { border: 1px solid rgb(50, 50, 50); background-color: rgb(20, 20, 20); } /*Controls*/ h4 { text-decoration: underline; font-weight: normal; margin-top: 30px; margin-bottom: 25px; } #keyboard { display: flex; justify-content: center; align-items: center; } caption { padding-bottom: 14px; font-size: 14px; } .tg { border-collapse: collapse; border-spacing: 0; } .tg td, .tg th { border-color: black; border-style: solid; border-width: 1px; font-size: 14px; overflow: hidden; padding: 15px 10px; word-break: normal; } .tg .tg-il3a { border-color: #ffffff; color: #ffffff; text-align: left; vertical-align: top; text-align: center; } .keyboard-element { margin-left: 10px; margin-right: 10px; display: inline-block; } #arrow { font-size: 70px; } /*Emscripten Spinner*/ .spinner { height: 50px; width: 50px; margin: 30px auto 10px auto; -webkit-animation: rotation 0.8s linear infinite; -moz-animation: rotation 0.8s linear infinite; -o-animation: rotation 0.8s linear infinite; animation: rotation 0.8s linear infinite; border-left: 10px solid rgb(0, 150, 240); border-right: 10px solid rgb(0, 150, 240); border-bottom: 10px solid rgb(0, 150, 240); border-top: 10px solid rgb(100, 0, 200); border-radius: 100%; background-color: rgb(200, 100, 250); } @-webkit-keyframes rotation { from { -webkit-transform: rotate(0deg); } to { -webkit-transform: rotate(360deg); } } @-moz-keyframes rotation { from { -moz-transform: rotate(0deg); } to { -moz-transform: rotate(360deg); } } @-o-keyframes rotation { from { -o-transform: rotate(0deg); } to { -o-transform: rotate(360deg); } } @keyframes rotation { from { transform: rotate(0deg); } to { transform: rotate(360deg); } } /*Github Corner*/ .github-corner:hover .octo-arm { animation: octocat-wave 560ms ease-in-out; } @keyframes octocat-wave { 0%, 100% { transform: rotate(0); } 20%, 60% { transform: rotate(-25deg); } 40%, 80% { transform: rotate(10deg); } } @media (max-width: 500px) { .github-corner:hover .octo-arm { animation: none; } .github-corner .octo-arm { animation: octocat-wave 560ms ease-in-out; } }
0.522933
0.142321
html { height: 100%; } body { /* font-family: Arial, Helvetica, sans-serif; */ font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif; margin: 0; line-height: 1.5; display: flex; flex-direction: column; min-height: 100%; } h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; } h1 { font-size: 1.5rem; font-weight: 400; } h2 { font-size: 2rem; margin: 1rem 2.5rem; padding-top: 1rem; width: 85%; border-top: 4px solid #193441; } h3 { font-size: 1.6rem; text-transform: uppercase; color: #193441; } a { cursor:pointer; color: #3E606F; text-decoration: underline; } .home-container { max-width: 1140px; margin-right: auto; margin-left: auto; flex: 1; } .container { margin: 0 2.5rem; flex: 1; } ul { list-style: none; } header { display: flex; align-items: center; margin:0 2rem; } nav { margin-left: 10%; } nav ul { display: flex; } nav ul li a { border-bottom: 4px solid transparent; /* font-size: 90%; */ font-weight: 700; padding: 0.75em 0; margin: 0 0.5rem; letter-spacing: 1px; color: #193441; font-family: 'Montserrat'; text-transform: uppercase; padding: 1rem; text-decoration: none; } nav ul li a:hover, nav ul li a.active { color: #193441; background: #d1e4ed; } .element--hidden { clip: rect(1px, 1px, 1px, 1px); position: absolute; height: 1px; width: 1px; overflow: hidden; } .logo { background-image: url('../images/logo.png'); background-repeat: no-repeat; background-size: 100%; display: flex; min-height: 4rem; width: 80%; } .masthead { color: white; background: -webkit-gradient(linear,left top, left bottom,color-stop(0, rgba(57,67,62,.8)),to(rgba(10,20,25,.8))),url(machine.jpg); background: linear-gradient(to bottom,rgba(57,67,62,.8) 0,rgba(10,20,25,.8) 100%),url(../images/machine.jpg); background-repeat: no-repeat; background-attachment: scroll; background-position: center center; background-size: cover; min-height: 25rem; display: -webkit-box; display: flex; flex-direction: column; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; margin: 0; } .masthead h2 { width: 60%; text-transform: uppercase; text-align: center; font-weight: 300; border: none; } .btn { font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; font-weight: 700; font-size: 18px; padding: 20px 40px; color: white; text-decoration: none; border: none; } .btn:focus { outline: none; } .btn-primary { background-color: #3E606F; border-color: #3E606F; border-radius: 10rem; } .btn-primary:active, .btn-primary:focus, .btn-primary:hover { background-color: #193441 !important; border-color: #193441 !important; box-shadow: 0 0 0 3px #3E606F; color: white; } .customers { display: flex; flex-shrink: unset; align-items: center; margin: 0; padding: 0; } .customers img { width: 120px; margin: 2rem 1rem 4rem; filter: none; -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); } .customers img:hover { filter: none; -webkit-filter: grayscale(0%); -moz-filter: grayscale(0%); -ms-filter: grayscale(0%); -o-filter: grayscale(0%); } .products { display: flex; } .product { margin-right: 2rem; } .product p { margin: 0.5rem 0; } form { display: flex; flex-direction: column; } form button { width: 20%; margin: 1rem 0 ; } input[type="text"], input[type="email"], textarea { border: 2px solid #abc5d0; border-radius: 5px; padding: 1rem; margin: 0.5rem 0; width: 60%; } input[type="text"]:focus, input[type="email"]:focus, textarea:focus { outline: none; border: 2px solid #193441; } footer { background-color: #193441; color: white; padding: 25px 0; text-align: center; } footer a { color: white; margin-left:0.25rem; } footer ul { display: flex; align-items: center; justify-content: center; text-align: center; } footer ul li { margin:0 0.5rem; } @media (min-width: 992px) { .logo { width: 50%; } }
src/styles/global.css
html { height: 100%; } body { /* font-family: Arial, Helvetica, sans-serif; */ font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif; margin: 0; line-height: 1.5; display: flex; flex-direction: column; min-height: 100%; } h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; } h1 { font-size: 1.5rem; font-weight: 400; } h2 { font-size: 2rem; margin: 1rem 2.5rem; padding-top: 1rem; width: 85%; border-top: 4px solid #193441; } h3 { font-size: 1.6rem; text-transform: uppercase; color: #193441; } a { cursor:pointer; color: #3E606F; text-decoration: underline; } .home-container { max-width: 1140px; margin-right: auto; margin-left: auto; flex: 1; } .container { margin: 0 2.5rem; flex: 1; } ul { list-style: none; } header { display: flex; align-items: center; margin:0 2rem; } nav { margin-left: 10%; } nav ul { display: flex; } nav ul li a { border-bottom: 4px solid transparent; /* font-size: 90%; */ font-weight: 700; padding: 0.75em 0; margin: 0 0.5rem; letter-spacing: 1px; color: #193441; font-family: 'Montserrat'; text-transform: uppercase; padding: 1rem; text-decoration: none; } nav ul li a:hover, nav ul li a.active { color: #193441; background: #d1e4ed; } .element--hidden { clip: rect(1px, 1px, 1px, 1px); position: absolute; height: 1px; width: 1px; overflow: hidden; } .logo { background-image: url('../images/logo.png'); background-repeat: no-repeat; background-size: 100%; display: flex; min-height: 4rem; width: 80%; } .masthead { color: white; background: -webkit-gradient(linear,left top, left bottom,color-stop(0, rgba(57,67,62,.8)),to(rgba(10,20,25,.8))),url(machine.jpg); background: linear-gradient(to bottom,rgba(57,67,62,.8) 0,rgba(10,20,25,.8) 100%),url(../images/machine.jpg); background-repeat: no-repeat; background-attachment: scroll; background-position: center center; background-size: cover; min-height: 25rem; display: -webkit-box; display: flex; flex-direction: column; -webkit-box-pack: center; justify-content: center; -webkit-box-align: center; align-items: center; margin: 0; } .masthead h2 { width: 60%; text-transform: uppercase; text-align: center; font-weight: 300; border: none; } .btn { font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; font-weight: 700; font-size: 18px; padding: 20px 40px; color: white; text-decoration: none; border: none; } .btn:focus { outline: none; } .btn-primary { background-color: #3E606F; border-color: #3E606F; border-radius: 10rem; } .btn-primary:active, .btn-primary:focus, .btn-primary:hover { background-color: #193441 !important; border-color: #193441 !important; box-shadow: 0 0 0 3px #3E606F; color: white; } .customers { display: flex; flex-shrink: unset; align-items: center; margin: 0; padding: 0; } .customers img { width: 120px; margin: 2rem 1rem 4rem; filter: none; -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); } .customers img:hover { filter: none; -webkit-filter: grayscale(0%); -moz-filter: grayscale(0%); -ms-filter: grayscale(0%); -o-filter: grayscale(0%); } .products { display: flex; } .product { margin-right: 2rem; } .product p { margin: 0.5rem 0; } form { display: flex; flex-direction: column; } form button { width: 20%; margin: 1rem 0 ; } input[type="text"], input[type="email"], textarea { border: 2px solid #abc5d0; border-radius: 5px; padding: 1rem; margin: 0.5rem 0; width: 60%; } input[type="text"]:focus, input[type="email"]:focus, textarea:focus { outline: none; border: 2px solid #193441; } footer { background-color: #193441; color: white; padding: 25px 0; text-align: center; } footer a { color: white; margin-left:0.25rem; } footer ul { display: flex; align-items: center; justify-content: center; text-align: center; } footer ul li { margin:0 0.5rem; } @media (min-width: 992px) { .logo { width: 50%; } }
0.450118
0.074568
background:linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url(https://images.unsplash.com/photo-1455014925136-e46fb2ccc345?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=7a57a743424419744f79cb260cc9130a&auto=format&fit=crop&w=750&q=80); background-repeat: no-repeat; background-size:100%; width:100%; height:100%; max-height=300px; margin: 0px 0px 0px 0px; background-size:cover; border-bottom: 5px solid darkgray; border-top: 5px solid darkgray; <!-- -webkit-filter: blur(4px);--> <!-- -moz-filter: blur(4px);--> <!-- -ms-filter: blur(4px);--> <!-- -o-filter: blur(4px);--> <!--filter: blur(4px);--> } #blur-bg:hover button{ background: #075293; transition: 1s ease-in; transform: scale(1.45); transition: 1s ease-in-out; /*color: red;*/ } button { transition: 1s ease-in-out; } .white{ color:white; } .page-form{ color:white; } .login-head { font-size:200%; } <!--#submit-button {--> <!--color:white;--> <!--background: blue;--> <!--}--> .login-area { transition: 2s cubic-bezier(1, -1.26, 0, 2.67); margin-left:12%; margin-top:3%; margin-bottom:3%; margin-right:12%; float:left; border: double #00adff54 5px; border-radius: 25px; min-width: 450px; background: darkslateblue; padding: 15px; } .login-area:hover { background: #11045e; transition: 2s cubic-bezier(1, -1.26, 0, 2.67); } #welcome{ color:white; text-shadow: 1px 1px 20px #c3c0f9; font-size: 250%; } #welcome-block{ float:left; padding:30px; margin-left:10%; /*150px*/ margin-top:70px; } .strong{ font-weight:bold; } <!-- ------------------------------------------------------------ --> body { background:url('https://images.unsplash.com/photo-1452878964126-81135387b19f?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=fcde8d2ab5c4526bc1e6392ffce873d2&auto=format&fit=crop&w=1050&q=80') no-repeat center center fixed; <!--background-size: cover;--> } .blur { background: url(https://images.unsplash.com/16/unsplash_5263607dd1bfc_2.jpg?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=5c606dee50bbacda308790f544fc8dd9&auto=format&fit=crop&w=1050&q=80) no-repeat center center fixed; background-size: cover; overflow: hidden; filter: blur(13px); position: absolute; height: 300px; top: -50px; left: -50px; right: -50px; bottom: -50px; } .widget { border-top: 2px solid rgba(255, 255, 255, .5); border-bottom: 2px solid rgba(255, 255, 255, .5); height: 200px; width: 100%; overflow: hidden; } .center { position: absolute; margin: auto; top: 0; bottom: 0; left: 0; right: 0; } body{ background: url(https://images.unsplash.com/photo-1506917847218-5725045a0731?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=032a2c8a3e2752797494387212b97e12&auto=format&fit=crop&w=1050&q=80) no-repeat center center fixed; background-size: cover; } <!--#box {--> <!--display: flex;--> <!--float: left;--> <!--}--> <!--#b {--> <!--flex-grow: 100;--> <!--border: 1px solid green;--> <!--}--> #second-banner{ background:linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url(https://images.unsplash.com/photo-1519692958672-ee66611a9f40?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=ed6224cad98ef81945b41528e3aed054&auto=format&fit=crop&w=1050&q=80); background-repeat: no-repeat; background-size:100%; width:100%; height:100%; max-height=300px; margin: 4% 0px 4% 0px; background-size:cover; border-bottom: 5px solid darkgray; border-top: 1% solid darkgray; min-height: 300px; } .holder{ background: white; margin: 5%; float: left; } .box-area{ color: white; margin-left:10%; margin-top:3%; margin-bottom:3%; margin-right:10%; float:left; border: double white 5px; border-radius: 10px; min-width: 30%; min-height: 500px; background: black; padding: 15px; } .list-in-box{ font-size: 120%; }
static/css/home.css
background:linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url(https://images.unsplash.com/photo-1455014925136-e46fb2ccc345?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=7a57a743424419744f79cb260cc9130a&auto=format&fit=crop&w=750&q=80); background-repeat: no-repeat; background-size:100%; width:100%; height:100%; max-height=300px; margin: 0px 0px 0px 0px; background-size:cover; border-bottom: 5px solid darkgray; border-top: 5px solid darkgray; <!-- -webkit-filter: blur(4px);--> <!-- -moz-filter: blur(4px);--> <!-- -ms-filter: blur(4px);--> <!-- -o-filter: blur(4px);--> <!--filter: blur(4px);--> } #blur-bg:hover button{ background: #075293; transition: 1s ease-in; transform: scale(1.45); transition: 1s ease-in-out; /*color: red;*/ } button { transition: 1s ease-in-out; } .white{ color:white; } .page-form{ color:white; } .login-head { font-size:200%; } <!--#submit-button {--> <!--color:white;--> <!--background: blue;--> <!--}--> .login-area { transition: 2s cubic-bezier(1, -1.26, 0, 2.67); margin-left:12%; margin-top:3%; margin-bottom:3%; margin-right:12%; float:left; border: double #00adff54 5px; border-radius: 25px; min-width: 450px; background: darkslateblue; padding: 15px; } .login-area:hover { background: #11045e; transition: 2s cubic-bezier(1, -1.26, 0, 2.67); } #welcome{ color:white; text-shadow: 1px 1px 20px #c3c0f9; font-size: 250%; } #welcome-block{ float:left; padding:30px; margin-left:10%; /*150px*/ margin-top:70px; } .strong{ font-weight:bold; } <!-- ------------------------------------------------------------ --> body { background:url('https://images.unsplash.com/photo-1452878964126-81135387b19f?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=fcde8d2ab5c4526bc1e6392ffce873d2&auto=format&fit=crop&w=1050&q=80') no-repeat center center fixed; <!--background-size: cover;--> } .blur { background: url(https://images.unsplash.com/16/unsplash_5263607dd1bfc_2.jpg?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=5c606dee50bbacda308790f544fc8dd9&auto=format&fit=crop&w=1050&q=80) no-repeat center center fixed; background-size: cover; overflow: hidden; filter: blur(13px); position: absolute; height: 300px; top: -50px; left: -50px; right: -50px; bottom: -50px; } .widget { border-top: 2px solid rgba(255, 255, 255, .5); border-bottom: 2px solid rgba(255, 255, 255, .5); height: 200px; width: 100%; overflow: hidden; } .center { position: absolute; margin: auto; top: 0; bottom: 0; left: 0; right: 0; } body{ background: url(https://images.unsplash.com/photo-1506917847218-5725045a0731?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=032a2c8a3e2752797494387212b97e12&auto=format&fit=crop&w=1050&q=80) no-repeat center center fixed; background-size: cover; } <!--#box {--> <!--display: flex;--> <!--float: left;--> <!--}--> <!--#b {--> <!--flex-grow: 100;--> <!--border: 1px solid green;--> <!--}--> #second-banner{ background:linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url(https://images.unsplash.com/photo-1519692958672-ee66611a9f40?ixlib=rb-0.3.5&ixid=eyJhcHBfaWQiOjEyMDd9&s=ed6224cad98ef81945b41528e3aed054&auto=format&fit=crop&w=1050&q=80); background-repeat: no-repeat; background-size:100%; width:100%; height:100%; max-height=300px; margin: 4% 0px 4% 0px; background-size:cover; border-bottom: 5px solid darkgray; border-top: 1% solid darkgray; min-height: 300px; } .holder{ background: white; margin: 5%; float: left; } .box-area{ color: white; margin-left:10%; margin-top:3%; margin-bottom:3%; margin-right:10%; float:left; border: double white 5px; border-radius: 10px; min-width: 30%; min-height: 500px; background: black; padding: 15px; } .list-in-box{ font-size: 120%; }
0.452536
0.185191
.mm-hidden { display: none !important; } .mm-wrapper { position: relative; overflow-x: hidden; } .mm-menu { position: absolute; z-index: 0; top: 0; right: 0; bottom: 0; left: 0; display: block; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; margin: 0; padding: 0; background: inherit; } .mm-panels, .mm-panels > .mm-panel { position: absolute; z-index: 0; top: 0; right: 0; bottom: 0; left: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; margin: 0; border-color: inherit; background: inherit; } .mm-panels { overflow: hidden; } .mm-panel { -webkit-transition: -webkit-transform .4s ease; -moz-transition: transform .4s ease, -moz-transform .4s ease; -o-transition: -o-transform .4s ease; transition: -webkit-transform .4s ease; transition: transform .4s ease; transition: transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease, -o-transform .4s ease; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } .mm-panel.mm-opened { -webkit-transform: translate3d(0%, 0, 0); -moz-transform: translate3d(0%, 0, 0); transform: translate3d(0%, 0, 0); } .mm-panel.mm-subopened { -webkit-transform: translate3d(30%, 0, 0); -moz-transform: translate3d(30%, 0, 0); transform: translate3d(30%, 0, 0); } .mm-panel.mm-highest { z-index: 1; } .mm-panels > .mm-panel { overflow: scroll; overflow-x: hidden; overflow-y: auto; padding: 0 20px; -webkit-overflow-scrolling: touch; } .mm-panels > .mm-panel.mm-hasnavbar { padding-top: 40px; } .mm-panels > .mm-panel:before, .mm-panels > .mm-panel:after { display: block; height: 20px; content: ''; } .mm-vertical .mm-panel { -webkit-transform: none !important; -moz-transform: none !important; -ms-transform: none !important; -o-transform: none !important; transform: none !important; } .mm-vertical .mm-listview .mm-panel, .mm-listview .mm-vertical .mm-panel { display: none; padding: 10px 10px 10px 0; } .mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after, .mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after { border-color: transparent; } .mm-vertical li.mm-opened > .mm-panel, li.mm-vertical.mm-opened > .mm-panel { display: block; } .mm-vertical .mm-listview > li > .mm-next, .mm-listview > li.mm-vertical > .mm-next { bottom: auto; height: 40px; } .mm-vertical .mm-listview > li > .mm-next:after, .mm-listview > li.mm-vertical > .mm-next:after { top: 16px; bottom: auto; } .mm-vertical .mm-listview > li.mm-opened > .mm-next:after, .mm-listview > li.mm-vertical.mm-opened > .mm-next:after { left: 19px; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .mm-btn { position: absolute; z-index: 1; top: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; width: 40px; height: 40px; } .mm-clear:before, .mm-clear:after, .mm-close:before, .mm-close:after { position: absolute; top: 0; bottom: 0; display: block; width: 5px; height: 5px; margin: auto; content: ''; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); border: 2px solid transparent; } .mm-clear:before, .mm-close:before { left: 20px; border-bottom: none; border-left: none; } .mm-clear:after, .mm-close:after { left: 25px; border-top: none; border-right: none; } .mm-prev:before, .mm-next:after, .mm-arrow:after { position: absolute; top: 0; bottom: 0; display: block; width: 8px; height: 8px; margin: auto; content: ''; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); border: 2px solid transparent; } .mm-prev:before { right: 23px; border-bottom: none; border-left: none; } .mm-next:after, .mm-arrow:after { left: 23px; border-top: none; border-right: none; } .mm-navbar { line-height: 20px; position: absolute; top: 0; right: 0; left: 0; height: 40px; margin: 0; padding: 0 40px; text-align: center; border-color: inherit; border-bottom: 1px solid; } .mm-navbar > * { display: block; padding: 10px 0; } .mm-navbar a, .mm-navbar a:hover { text-decoration: none; } .mm-navbar .mm-title { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .mm-navbar .mm-btn:first-child { right: 0; padding-right: 20px; } .mm-navbar .mm-btn:last-child { left: 0; padding-left: 20px; text-align: left; } .mm-panel .mm-navbar { display: none; } .mm-panel.mm-hasnavbar .mm-navbar { display: block; } .mm-listview, .mm-listview > li { display: block; margin: 0; padding: 0; list-style: none; } .mm-listview { font: inherit; font-size: 14px; line-height: 20px; } .mm-listview a, .mm-listview a:hover { text-decoration: none; } .mm-listview > li { position: relative; } .mm-listview > li, .mm-listview > li:after, .mm-listview > li .mm-next, .mm-listview > li .mm-next:before { border-color: inherit; } .mm-listview > li > a, .mm-listview > li > span { display: block; overflow: hidden; margin: 0; padding: 10px 20px 10px 10px; white-space: nowrap; text-overflow: ellipsis; color: inherit; } .mm-listview > li > a.mm-arrow, .mm-listview > li > span.mm-arrow { padding-left: 50px; } .mm-listview > li:not(.mm-divider):after { position: absolute; right: 0; bottom: 0; left: 0; display: block; content: ''; border-bottom-width: 1px; border-bottom-style: solid; } .mm-listview > li:not(.mm-divider):after { right: 20px; } .mm-listview .mm-next { position: absolute; z-index: 2; top: 0; bottom: 0; left: 0; width: 50px; padding: 0; background: rgba(3, 2, 1, 0); } .mm-listview .mm-next:before { position: absolute; top: 0; right: 0; bottom: 0; display: block; content: ''; border-right-width: 1px; border-right-style: solid; } .mm-listview .mm-next + a, .mm-listview .mm-next + span { margin-left: 50px; } .mm-listview .mm-next.mm-fullsubopen { width: 100%; } .mm-listview .mm-next.mm-fullsubopen:before { border-right: none; } .mm-listview .mm-next.mm-fullsubopen + a, .mm-listview .mm-next.mm-fullsubopen + span { margin-left: 0; padding-left: 50px; } .mm-panels > .mm-panel > .mm-listview { margin: 20px -20px; } .mm-panels > .mm-panel > .mm-listview:first-child, .mm-panels > .mm-panel > .mm-navbar + .mm-listview { margin-top: -20px; } .mm-listview .mm-inset { margin: 0; padding: 0 40px 15px 10px; list-style: inside disc; } .mm-listview .mm-inset > li { padding: 5px 0; } .mm-listview .mm-divider { font-size: 10px; line-height: 25px; overflow: hidden; white-space: nowrap; text-indent: 20px; text-transform: uppercase; text-overflow: ellipsis; } .mm-listview .mm-spacer { padding-top: 40px; } .mm-listview .mm-spacer > .mm-next { top: 40px; } .mm-listview .mm-spacer.mm-divider { padding-top: 25px; } /* jQuery.mmenu navbars addon CSS */ .mm-menu > .mm-navbar { z-index: 3; padding: 0; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); background: inherit; } .mm-navbar-bottom { top: auto; bottom: 0; border-top-width: 1px; border-top-style: solid; border-bottom: none; } .mm-navbar-top ~ .mm-navbar-top { border-bottom: none; } .mm-navbar-bottom ~ .mm-navbar-bottom { border-top: none; } .mm-navbar.mm-hasbtns { padding: 0 40px; } .mm-navbar[class*='mm-navbar-content-'] > * { display: block; float: right; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .mm-navbar .mm-breadcrumbs { overflow: hidden; overflow-x: auto; padding: 0 17px 0 0; text-align: right; white-space: nowrap; text-overflow: ellipsis; -webkit-overflow-scrolling: touch; } .mm-navbar .mm-breadcrumbs > * { display: inline-block; padding: 10px 3px; } .mm-navbar .mm-breadcrumbs > a { text-decoration: underline; } .mm-navbar.mm-hasbtns .mm-breadcrumbs { margin-right: -40px; } .mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden) + .mm-breadcrumbs { margin-right: 0; padding-right: 0; } .mm-navbar-top-1 { top: 0; } .mm-hasnavbar-top-1 .mm-panels { top: 40px; } .mm-navbar-top-2 { top: 40px; } .mm-hasnavbar-top-2 .mm-panels { top: 80px; } .mm-navbar-top-3 { top: 80px; } .mm-hasnavbar-top-3 .mm-panels { top: 120px; } .mm-navbar-top-4 { top: 120px; } .mm-hasnavbar-top-4 .mm-panels { top: 160px; } .mm-navbar-bottom-1 { bottom: 0; } .mm-hasnavbar-bottom-1 .mm-panels { bottom: 40px; } .mm-navbar-bottom-2 { bottom: 40px; } .mm-hasnavbar-bottom-2 .mm-panels { bottom: 80px; } .mm-navbar-bottom-3 { bottom: 80px; } .mm-hasnavbar-bottom-3 .mm-panels { bottom: 120px; } .mm-navbar-bottom-4 { bottom: 120px; } .mm-hasnavbar-bottom-4 .mm-panels { bottom: 160px; } .mm-navbar-size-2 { height: 80px; } .mm-navbar-size-3 { height: 120px; } .mm-navbar-size-4 { height: 160px; } .mm-navbar-content-2 > * { width: 50%; } .mm-navbar-content-3 > * { width: 33.33%; } .mm-navbar-content-4 > * { width: 25%; } .mm-navbar-content-5 > * { width: 20%; } .mm-navbar-content-6 > * { width: 16.67%; } /* jQuery.mmenu searchfield addon CSS */ .mm-search, .mm-search input { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .mm-search { position: relative; height: 40px; padding: 7px 10px 0 10px; } .mm-search input { font: inherit; font-size: 14px; line-height: 26px; display: block; width: 100%; height: 26px; margin: 0; padding: 0 10px; border: none !important; border-radius: 26px; outline: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; } .mm-search input::-ms-clear { display: none; } .mm-search .mm-clear, .mm-search .mm-next { left: 0; } .mm-panel > .mm-search { position: absolute; top: 0; right: 0; width: 100%; } .mm-panel.mm-hassearch { padding-top: 40px; } .mm-panel.mm-hassearch.mm-hasnavbar { padding-top: 80px; } .mm-panel.mm-hassearch.mm-hasnavbar .mm-search { top: 40px; } .mm-noresultsmsg { font-size: 21px; padding: 40px 0; text-align: center; } .mm-noresults .mm-indexer { display: none !important; } li.mm-nosubresults > a.mm-next { display: none; } li.mm-nosubresults > a.mm-next + a, li.mm-nosubresults > a.mm-next + span { padding-left: 10px; } .mm-panels > .mm-resultspanel:not(.mm-opened) { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .mm-menu .mm-search input { color: rgba(0, 0, 0, .7); background: rgba(0, 0, 0, .05); } .mm-menu .mm-noresultsmsg { color: rgba(0, 0, 0, .3); } .mm-menu { color: rgba(0, 0, 0, .7); border-color: rgba(0, 0, 0, .1); background: #f3f3f3; } .mm-menu .mm-navbar > *, .mm-menu .mm-navbar a { color: rgba(0, 0, 0, .3); } .mm-menu .mm-btn:before, .mm-menu .mm-btn:after { border-color: rgba(0, 0, 0, .3); } .mm-menu .mm-listview { border-color: rgba(0, 0, 0, .1); } .mm-menu .mm-listview > li .mm-next:after, .mm-menu .mm-listview > li .mm-arrow:after { border-color: rgba(0, 0, 0, .3); } .mm-menu .mm-listview > li a:not(.mm-next) { -webkit-tap-highlight-color: rgba(255, 255, 255, .5); tap-highlight-color: rgba(255, 255, 255, .5); } .mm-menu .mm-listview > li.mm-selected > a:not(.mm-next), .mm-menu .mm-listview > li.mm-selected > span { background: rgba(255, 255, 255, .5); } .mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next, .mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel, .mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next, .mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel { background: rgba(0, 0, 0, .05); } .mm-menu .mm-divider { background: rgba(0, 0, 0, .05); } .vertical-mmenu .main-menu:not(.mm-menu) { display: none; } .vertical-mmenu .mm-navbar.mm-navbar-top { border: none; } .vertical-mmenu .mm-navbar.mm-navbar-top .mm-search { padding: 12px 10px 0 10px; } .vertical-mmenu .mm-listview > li > span { font-family: 'Quicksand', Georgia, 'Times New Roman', Times, serif; font-size: 1rem; padding: 0; text-indent: 0; text-transform: uppercase; } .vertical-mmenu .mm-listview > li:hover .mm-arrow:after, .vertical-mmenu .mm-listview > li:hover .mm-next:after { border-color: white; } .vertical-mmenu .mm-listview > li:not(.mm-divider):after { right: 0; } .vertical-mmenu .mm-listview li.has-sub a:not(.mm-next):after { display: none !important; } .vertical-mmenu .mm-panels { top: 5rem; } .vertical-mmenu .mm-panels > .mm-panel { position: absolute; top: 0; right: 0; bottom: 0; left: -17px; overflow-y: scroll; } .vertical-mmenu .main-menu:not(.menu-native-scroll) .mm-panels > .mm-panel { position: absolute; top: 0; right: 0; bottom: 0; left: -17px; overflow-y: scroll; } .vertical-mmenu .main-menu.menu-native-scroll { overflow-y: hidden; } .vertical-mmenu .main-menu.menu-native-scroll .mm-panels > .mm-panel { position: absolute; top: 0; right: 0; bottom: 0; left: 0; overflow-y: auto; } .vertical-mmenu .menu-light.mm-menu .mm-listview > li:after, .vertical-mmenu .menu-light.mm-menu .mm-listview > li .mm-next, .vertical-mmenu .menu-light.mm-menu .mm-listview > li .mm-next:before { border-color: #e2e2e2; } .vertical-mmenu .menu-dark.mm-menu .mm-navbar { border-color: #34424c; } .vertical-mmenu .menu-dark.mm-menu .mm-listview > li:after, .vertical-mmenu .menu-dark.mm-menu .mm-listview > li .mm-next, .vertical-mmenu .menu-dark.mm-menu .mm-listview > li .mm-next:before { border-color: #34424c; }
public/backend/app-assets/css-rtl/plugins/menu/mmenu/mmenu-custom.css
.mm-hidden { display: none !important; } .mm-wrapper { position: relative; overflow-x: hidden; } .mm-menu { position: absolute; z-index: 0; top: 0; right: 0; bottom: 0; left: 0; display: block; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; margin: 0; padding: 0; background: inherit; } .mm-panels, .mm-panels > .mm-panel { position: absolute; z-index: 0; top: 0; right: 0; bottom: 0; left: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; margin: 0; border-color: inherit; background: inherit; } .mm-panels { overflow: hidden; } .mm-panel { -webkit-transition: -webkit-transform .4s ease; -moz-transition: transform .4s ease, -moz-transform .4s ease; -o-transition: -o-transform .4s ease; transition: -webkit-transform .4s ease; transition: transform .4s ease; transition: transform .4s ease, -webkit-transform .4s ease, -moz-transform .4s ease, -o-transform .4s ease; -webkit-transform: translate3d(-100%, 0, 0); -moz-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } .mm-panel.mm-opened { -webkit-transform: translate3d(0%, 0, 0); -moz-transform: translate3d(0%, 0, 0); transform: translate3d(0%, 0, 0); } .mm-panel.mm-subopened { -webkit-transform: translate3d(30%, 0, 0); -moz-transform: translate3d(30%, 0, 0); transform: translate3d(30%, 0, 0); } .mm-panel.mm-highest { z-index: 1; } .mm-panels > .mm-panel { overflow: scroll; overflow-x: hidden; overflow-y: auto; padding: 0 20px; -webkit-overflow-scrolling: touch; } .mm-panels > .mm-panel.mm-hasnavbar { padding-top: 40px; } .mm-panels > .mm-panel:before, .mm-panels > .mm-panel:after { display: block; height: 20px; content: ''; } .mm-vertical .mm-panel { -webkit-transform: none !important; -moz-transform: none !important; -ms-transform: none !important; -o-transform: none !important; transform: none !important; } .mm-vertical .mm-listview .mm-panel, .mm-listview .mm-vertical .mm-panel { display: none; padding: 10px 10px 10px 0; } .mm-vertical .mm-listview .mm-panel .mm-listview > li:last-child:after, .mm-listview .mm-vertical .mm-panel .mm-listview > li:last-child:after { border-color: transparent; } .mm-vertical li.mm-opened > .mm-panel, li.mm-vertical.mm-opened > .mm-panel { display: block; } .mm-vertical .mm-listview > li > .mm-next, .mm-listview > li.mm-vertical > .mm-next { bottom: auto; height: 40px; } .mm-vertical .mm-listview > li > .mm-next:after, .mm-listview > li.mm-vertical > .mm-next:after { top: 16px; bottom: auto; } .mm-vertical .mm-listview > li.mm-opened > .mm-next:after, .mm-listview > li.mm-vertical.mm-opened > .mm-next:after { left: 19px; -webkit-transform: rotate(-45deg); -moz-transform: rotate(-45deg); -ms-transform: rotate(-45deg); -o-transform: rotate(-45deg); transform: rotate(-45deg); } .mm-btn { position: absolute; z-index: 1; top: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; width: 40px; height: 40px; } .mm-clear:before, .mm-clear:after, .mm-close:before, .mm-close:after { position: absolute; top: 0; bottom: 0; display: block; width: 5px; height: 5px; margin: auto; content: ''; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); border: 2px solid transparent; } .mm-clear:before, .mm-close:before { left: 20px; border-bottom: none; border-left: none; } .mm-clear:after, .mm-close:after { left: 25px; border-top: none; border-right: none; } .mm-prev:before, .mm-next:after, .mm-arrow:after { position: absolute; top: 0; bottom: 0; display: block; width: 8px; height: 8px; margin: auto; content: ''; -webkit-transform: rotate(45deg); -moz-transform: rotate(45deg); -ms-transform: rotate(45deg); -o-transform: rotate(45deg); transform: rotate(45deg); border: 2px solid transparent; } .mm-prev:before { right: 23px; border-bottom: none; border-left: none; } .mm-next:after, .mm-arrow:after { left: 23px; border-top: none; border-right: none; } .mm-navbar { line-height: 20px; position: absolute; top: 0; right: 0; left: 0; height: 40px; margin: 0; padding: 0 40px; text-align: center; border-color: inherit; border-bottom: 1px solid; } .mm-navbar > * { display: block; padding: 10px 0; } .mm-navbar a, .mm-navbar a:hover { text-decoration: none; } .mm-navbar .mm-title { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .mm-navbar .mm-btn:first-child { right: 0; padding-right: 20px; } .mm-navbar .mm-btn:last-child { left: 0; padding-left: 20px; text-align: left; } .mm-panel .mm-navbar { display: none; } .mm-panel.mm-hasnavbar .mm-navbar { display: block; } .mm-listview, .mm-listview > li { display: block; margin: 0; padding: 0; list-style: none; } .mm-listview { font: inherit; font-size: 14px; line-height: 20px; } .mm-listview a, .mm-listview a:hover { text-decoration: none; } .mm-listview > li { position: relative; } .mm-listview > li, .mm-listview > li:after, .mm-listview > li .mm-next, .mm-listview > li .mm-next:before { border-color: inherit; } .mm-listview > li > a, .mm-listview > li > span { display: block; overflow: hidden; margin: 0; padding: 10px 20px 10px 10px; white-space: nowrap; text-overflow: ellipsis; color: inherit; } .mm-listview > li > a.mm-arrow, .mm-listview > li > span.mm-arrow { padding-left: 50px; } .mm-listview > li:not(.mm-divider):after { position: absolute; right: 0; bottom: 0; left: 0; display: block; content: ''; border-bottom-width: 1px; border-bottom-style: solid; } .mm-listview > li:not(.mm-divider):after { right: 20px; } .mm-listview .mm-next { position: absolute; z-index: 2; top: 0; bottom: 0; left: 0; width: 50px; padding: 0; background: rgba(3, 2, 1, 0); } .mm-listview .mm-next:before { position: absolute; top: 0; right: 0; bottom: 0; display: block; content: ''; border-right-width: 1px; border-right-style: solid; } .mm-listview .mm-next + a, .mm-listview .mm-next + span { margin-left: 50px; } .mm-listview .mm-next.mm-fullsubopen { width: 100%; } .mm-listview .mm-next.mm-fullsubopen:before { border-right: none; } .mm-listview .mm-next.mm-fullsubopen + a, .mm-listview .mm-next.mm-fullsubopen + span { margin-left: 0; padding-left: 50px; } .mm-panels > .mm-panel > .mm-listview { margin: 20px -20px; } .mm-panels > .mm-panel > .mm-listview:first-child, .mm-panels > .mm-panel > .mm-navbar + .mm-listview { margin-top: -20px; } .mm-listview .mm-inset { margin: 0; padding: 0 40px 15px 10px; list-style: inside disc; } .mm-listview .mm-inset > li { padding: 5px 0; } .mm-listview .mm-divider { font-size: 10px; line-height: 25px; overflow: hidden; white-space: nowrap; text-indent: 20px; text-transform: uppercase; text-overflow: ellipsis; } .mm-listview .mm-spacer { padding-top: 40px; } .mm-listview .mm-spacer > .mm-next { top: 40px; } .mm-listview .mm-spacer.mm-divider { padding-top: 25px; } /* jQuery.mmenu navbars addon CSS */ .mm-menu > .mm-navbar { z-index: 3; padding: 0; -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); background: inherit; } .mm-navbar-bottom { top: auto; bottom: 0; border-top-width: 1px; border-top-style: solid; border-bottom: none; } .mm-navbar-top ~ .mm-navbar-top { border-bottom: none; } .mm-navbar-bottom ~ .mm-navbar-bottom { border-top: none; } .mm-navbar.mm-hasbtns { padding: 0 40px; } .mm-navbar[class*='mm-navbar-content-'] > * { display: block; float: right; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .mm-navbar .mm-breadcrumbs { overflow: hidden; overflow-x: auto; padding: 0 17px 0 0; text-align: right; white-space: nowrap; text-overflow: ellipsis; -webkit-overflow-scrolling: touch; } .mm-navbar .mm-breadcrumbs > * { display: inline-block; padding: 10px 3px; } .mm-navbar .mm-breadcrumbs > a { text-decoration: underline; } .mm-navbar.mm-hasbtns .mm-breadcrumbs { margin-right: -40px; } .mm-navbar.mm-hasbtns .mm-btn:not(.mm-hidden) + .mm-breadcrumbs { margin-right: 0; padding-right: 0; } .mm-navbar-top-1 { top: 0; } .mm-hasnavbar-top-1 .mm-panels { top: 40px; } .mm-navbar-top-2 { top: 40px; } .mm-hasnavbar-top-2 .mm-panels { top: 80px; } .mm-navbar-top-3 { top: 80px; } .mm-hasnavbar-top-3 .mm-panels { top: 120px; } .mm-navbar-top-4 { top: 120px; } .mm-hasnavbar-top-4 .mm-panels { top: 160px; } .mm-navbar-bottom-1 { bottom: 0; } .mm-hasnavbar-bottom-1 .mm-panels { bottom: 40px; } .mm-navbar-bottom-2 { bottom: 40px; } .mm-hasnavbar-bottom-2 .mm-panels { bottom: 80px; } .mm-navbar-bottom-3 { bottom: 80px; } .mm-hasnavbar-bottom-3 .mm-panels { bottom: 120px; } .mm-navbar-bottom-4 { bottom: 120px; } .mm-hasnavbar-bottom-4 .mm-panels { bottom: 160px; } .mm-navbar-size-2 { height: 80px; } .mm-navbar-size-3 { height: 120px; } .mm-navbar-size-4 { height: 160px; } .mm-navbar-content-2 > * { width: 50%; } .mm-navbar-content-3 > * { width: 33.33%; } .mm-navbar-content-4 > * { width: 25%; } .mm-navbar-content-5 > * { width: 20%; } .mm-navbar-content-6 > * { width: 16.67%; } /* jQuery.mmenu searchfield addon CSS */ .mm-search, .mm-search input { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .mm-search { position: relative; height: 40px; padding: 7px 10px 0 10px; } .mm-search input { font: inherit; font-size: 14px; line-height: 26px; display: block; width: 100%; height: 26px; margin: 0; padding: 0 10px; border: none !important; border-radius: 26px; outline: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; } .mm-search input::-ms-clear { display: none; } .mm-search .mm-clear, .mm-search .mm-next { left: 0; } .mm-panel > .mm-search { position: absolute; top: 0; right: 0; width: 100%; } .mm-panel.mm-hassearch { padding-top: 40px; } .mm-panel.mm-hassearch.mm-hasnavbar { padding-top: 80px; } .mm-panel.mm-hassearch.mm-hasnavbar .mm-search { top: 40px; } .mm-noresultsmsg { font-size: 21px; padding: 40px 0; text-align: center; } .mm-noresults .mm-indexer { display: none !important; } li.mm-nosubresults > a.mm-next { display: none; } li.mm-nosubresults > a.mm-next + a, li.mm-nosubresults > a.mm-next + span { padding-left: 10px; } .mm-panels > .mm-resultspanel:not(.mm-opened) { -webkit-transform: translate3d(0, 0, 0); -moz-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } .mm-menu .mm-search input { color: rgba(0, 0, 0, .7); background: rgba(0, 0, 0, .05); } .mm-menu .mm-noresultsmsg { color: rgba(0, 0, 0, .3); } .mm-menu { color: rgba(0, 0, 0, .7); border-color: rgba(0, 0, 0, .1); background: #f3f3f3; } .mm-menu .mm-navbar > *, .mm-menu .mm-navbar a { color: rgba(0, 0, 0, .3); } .mm-menu .mm-btn:before, .mm-menu .mm-btn:after { border-color: rgba(0, 0, 0, .3); } .mm-menu .mm-listview { border-color: rgba(0, 0, 0, .1); } .mm-menu .mm-listview > li .mm-next:after, .mm-menu .mm-listview > li .mm-arrow:after { border-color: rgba(0, 0, 0, .3); } .mm-menu .mm-listview > li a:not(.mm-next) { -webkit-tap-highlight-color: rgba(255, 255, 255, .5); tap-highlight-color: rgba(255, 255, 255, .5); } .mm-menu .mm-listview > li.mm-selected > a:not(.mm-next), .mm-menu .mm-listview > li.mm-selected > span { background: rgba(255, 255, 255, .5); } .mm-menu.mm-vertical .mm-listview > li.mm-opened > a.mm-next, .mm-menu.mm-vertical .mm-listview > li.mm-opened > .mm-panel, .mm-menu .mm-listview > li.mm-opened.mm-vertical > a.mm-next, .mm-menu .mm-listview > li.mm-opened.mm-vertical > .mm-panel { background: rgba(0, 0, 0, .05); } .mm-menu .mm-divider { background: rgba(0, 0, 0, .05); } .vertical-mmenu .main-menu:not(.mm-menu) { display: none; } .vertical-mmenu .mm-navbar.mm-navbar-top { border: none; } .vertical-mmenu .mm-navbar.mm-navbar-top .mm-search { padding: 12px 10px 0 10px; } .vertical-mmenu .mm-listview > li > span { font-family: 'Quicksand', Georgia, 'Times New Roman', Times, serif; font-size: 1rem; padding: 0; text-indent: 0; text-transform: uppercase; } .vertical-mmenu .mm-listview > li:hover .mm-arrow:after, .vertical-mmenu .mm-listview > li:hover .mm-next:after { border-color: white; } .vertical-mmenu .mm-listview > li:not(.mm-divider):after { right: 0; } .vertical-mmenu .mm-listview li.has-sub a:not(.mm-next):after { display: none !important; } .vertical-mmenu .mm-panels { top: 5rem; } .vertical-mmenu .mm-panels > .mm-panel { position: absolute; top: 0; right: 0; bottom: 0; left: -17px; overflow-y: scroll; } .vertical-mmenu .main-menu:not(.menu-native-scroll) .mm-panels > .mm-panel { position: absolute; top: 0; right: 0; bottom: 0; left: -17px; overflow-y: scroll; } .vertical-mmenu .main-menu.menu-native-scroll { overflow-y: hidden; } .vertical-mmenu .main-menu.menu-native-scroll .mm-panels > .mm-panel { position: absolute; top: 0; right: 0; bottom: 0; left: 0; overflow-y: auto; } .vertical-mmenu .menu-light.mm-menu .mm-listview > li:after, .vertical-mmenu .menu-light.mm-menu .mm-listview > li .mm-next, .vertical-mmenu .menu-light.mm-menu .mm-listview > li .mm-next:before { border-color: #e2e2e2; } .vertical-mmenu .menu-dark.mm-menu .mm-navbar { border-color: #34424c; } .vertical-mmenu .menu-dark.mm-menu .mm-listview > li:after, .vertical-mmenu .menu-dark.mm-menu .mm-listview > li .mm-next, .vertical-mmenu .menu-dark.mm-menu .mm-listview > li .mm-next:before { border-color: #34424c; }
0.47025
0.077553
.page-header.navbar { background-color: #00A2FF; } .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle > i { color: #fff; } .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle .badge.badge-default { background-color: #3FD5C0; color: #fff; } .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle:hover, .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle:hover > i, .page-header.navbar .top-menu .navbar-nav > li.dropdown.open .dropdown-toggle, .page-header.navbar .top-menu .navbar-nav > li.dropdown.open .dropdown-toggle > i, .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle:hover > .username { background-color: #fff; color: #00A2FF; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu { border-color: #e7eaf0; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu:after { border-bottom-color: #eaedf2; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external { background: #eaedf2; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > h3 { color: #62878f; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > a { color: #5b9bd1; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > a:hover { color: #3175af; text-decoration: none; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list > li > a { border-bottom: 1px solid #EFF2F6 !important; color: #888888; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list > li > a:hover { background: #f8f9fa; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li > a .time { background: #f1f1f1; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li > a:hover .time { background: #e4e4e4; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu .dropdown-menu-list .progress { background-color: #dfe2e9; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-user > .dropdown-toggle > .username { color: white; } .page-header.navbar .top-menu .navbar-nav > .open > .dropdown-toggle > .username { color: #00A2FF !important; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-user > .dropdown-toggle > i { color: white; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-user > .dropdown-menu { width: 195px; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-language > .dropdown-toggle > .langname { color: white; } /* Default Horizontal Menu */ .page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu { box-shadow: 5px 5px rgba(144, 153, 163, 0.2); } .page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > h3 { color: white; } .page-header.navbar .hor-menu .navbar-nav > li > a { color: #fff; } .page-header.navbar .hor-menu .navbar-nav > li > a > i { color: #fff; } .page-header.navbar .hor-menu .navbar-nav > li.open > a, .page-header.navbar .hor-menu .navbar-nav > li > a:hover { color: #00A2FF !important; background: #fff !important; } .page-header.navbar .hor-menu .navbar-nav > li.open > a > i, .page-header.navbar .hor-menu .navbar-nav > li > a:hover > i { color: #e4e6e8; } .page-header.navbar .hor-menu .navbar-nav > li.active > a, .page-header.navbar .hor-menu .navbar-nav > li.active > a, .page-header.navbar .hor-menu .navbar-nav > li.current > a, .page-header.navbar .hor-menu .navbar-nav > li.current > a { color: #fff; background: #00A2FF !important; } .page-header.navbar .hor-menu .navbar-nav > li.active > a > i, .page-header.navbar .hor-menu .navbar-nav > li.active > a > i, .page-header.navbar .hor-menu .navbar-nav > li.current > a > i, .page-header.navbar .hor-menu .navbar-nav > li.current > a > i { color: #d6d9dd; } .page-header.navbar .hor-menu .navbar-nav > li.active .selected, .page-header.navbar .hor-menu .navbar-nav > li.current .selected { border-top: 6px solid #3FD5C0; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu { box-shadow: 5px 5px rgba(144, 153, 163, 0.2); background: #9099a3; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li > a { color: white; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li > a > i { color: #f9fafa; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li:hover > a { color: white; background: #9ba3ac; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li:hover > a > i { color: white; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.active > a, .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.active > a:hover, .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.current > a, .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.current > a:hover { color: white; background: #9ba3ac; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.active > a > i, .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.active > a:hover > i, .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.current > a > i, .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.current > a:hover > i { color: white; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.divider { background-color: #9ea6af; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-submenu > a:after { color: #f9fafa; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.mega-menu-dropdown > .dropdown-menu { box-shadow: 5px 5px rgba(102, 102, 102, 0.1); } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > h3 { color: #666; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li > a, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li > a > i { color: #fff; } /* .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li > a:hover > i { color: #00A2FF; } */ /* .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.open > a { color: #00A2FF !important; background: #fff !important; } */ .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li > a:hover > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.open > a > i { color: #00A2FF !important; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.active > a, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.active > a:hover, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.current > a, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.current > a:hover { color: #fff; background: #00A2FF; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.active > a > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.active > a:hover > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.current > a > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.current > a:hover > i { color: #d6d9dd; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu { box-shadow: 5px 5px rgba(102, 102, 102, 0.1); background: white; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li > a { color: #000; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li > a > i { color: #888; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li:hover > a { color: #000; background: #f2f2f7; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li:hover > a > i { color: #666; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.active > a, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.active > a:hover, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.current > a, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.current > a:hover { color: #000; background: #f2f2f7; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.active > a > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.active > a:hover > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.current > a > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.current > a:hover > i { color: #666; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.divider { background-color: #f2f2f7; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu { border: 1px solid #efeff5; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li > .dropdown-menu { border-top: 0; } /************* Quick Sidebar *************/ /*** Quick Sidebar Toggler ***/ .page-quick-sidebar-toggler { background: #babfc6; } .page-quick-sidebar-toggler:hover { background: #b1b8bf; } /*** Quick Sidebar Content ***/ .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li > a { color: #00A2FF; background: #fff; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li > a:hover, .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li.open > a { color: white; background: #00A2FF; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li.active > a { border: 0; color: #fff; background: #00A2FF; } .nav-justified > li > a { border-bottom: solid 1px #00A2FF !important; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu { border: 0; background: #babfc6; box-shadow: 5px 5px rgba(242, 243, 244, 0.1); } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu:before { border-bottom: 7px solid #babfc6; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu:after { border-bottom: 7px solid #babfc6; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li > a { color: white; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li > a > i { color: white; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li > a:hover { background: #c2c7cd; color: white; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li > a:hover > i { color: white; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li.active > a { background: #bdc2c8; color: white; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li.divider { background-color: #c2c7cd; } .page-quick-sidebar-wrapper .page-quick-sidebar .list-heading { color: #1a1a1a; } .page-quick-sidebar-wrapper .page-quick-sidebar .list-items { margin: 0; padding: 0; list-style: none; } .page-quick-sidebar-wrapper .page-quick-sidebar .list-items > li { border-bottom-color: #00A2FF; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-body .media-heading-sub { color: #666; } .page-quick-sidebar-wrapper .page-quick-sidebar .list-items > li:hover { background: #00A2FF; } .media:hover .media-heading, .media:hover .media-heading-sub { color: #fff !important; } .page-quick-sidebar-wrapper .page-quick-sidebar-item .page-quick-sidebar-nav .page-quick-sidebar-back-to-list { color: #959595; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-body .media-heading-small { color: #cfcfcf; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .name { color: #f6f6f6; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .datetime { color: #f6f6f6; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .message { color: white; background: #babfc6; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.in .message .arrow { border-right-color: #babfc6; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.out .message .arrow { border-left-color: #babfc6; } .page-quick-sidebar-wrapper .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li a { color: #f1f1f1; } .page-quick-sidebar-wrapper .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li a .desc { text-decoration: underline; } .page-quick-sidebar-wrapper .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li .desc { color: #ebebeb; } .page-quick-sidebar-wrapper .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li .date { color: #cfcfcf; } /*车辆列表*/ /*** Quick Sidebar Layout ***/ .page-car-sidebar-wrapper { background: #9ea6af; } .page-car-sidebar-wrapper .page-car-sidebar { background: #9ea6af; } /*** car Sidebar Toggler ***/ .page-car-sidebar-toggler { background: #babfc6; } .page-car-sidebar-toggler:hover { background: #b1b8bf; } .page-car-sidebar-toggler > i { color: white; } /*** car Sidebar Content ***/ .page-car-sidebar-wrapper { color: white; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li > a { color: white; background: #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li > a:hover { background: #acb2ba; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li.open > a { color: white; background: #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li.active > a { border: 0; background: #9ea6af; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu { border: 0; background: #babfc6; box-shadow: 5px 5px rgba(242, 243, 244, 0.1); } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu:before { border-bottom: 7px solid #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu:after { border-bottom: 7px solid #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu > li > a { color: white; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu > li > a > i { color: white; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu > li > a:hover { background: #c2c7cd; color: white; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu > li > a:hover > i { color: white; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu > li.active > a { background: #bdc2c8; color: white; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu > li.divider { background-color: #c2c7cd; } .page-car-sidebar-wrapper .page-car-sidebar .list-heading { color: #e1e1e1; } .page-car-sidebar-wrapper .page-car-sidebar .list-items { margin: 0; padding: 0; list-style: none; } .page-car-sidebar-wrapper .page-car-sidebar .list-items > li { border-bottom-color: #00A2FF; } .page-car-sidebar-wrapper .page-car-sidebar .list-items > li:hover { background: #00A2FF; } .page-car-sidebar-wrapper .page-car-sidebar-item .page-car-sidebar-nav .page-car-sidebar-back-to-list { color: white; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-users .media-list .media .media-body .media-heading-sub { color: #dadada; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-users .media-list .media .media-body .media-heading-small { color: #cfcfcf; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-user .page-car-sidebar-chat-user-messages .post .name { color: #f6f6f6; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-user .page-car-sidebar-chat-user-messages .post .datetime { color: #f6f6f6; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-user .page-car-sidebar-chat-user-messages .post .message { color: white; background: #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-user .page-car-sidebar-chat-user-messages .post.in .message .arrow { border-right-color: #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-user .page-car-sidebar-chat-user-messages .post.out .message .arrow { border-left-color: #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar-alerts .page-car-sidebar-alerts-list .feeds li a { color: #f1f1f1; } .page-car-sidebar-wrapper .page-car-sidebar-alerts .page-car-sidebar-alerts-list .feeds li a .desc { text-decoration: underline; } .page-car-sidebar-wrapper .page-car-sidebar-alerts .page-car-sidebar-alerts-list .feeds li .desc { color: #ebebeb; } .page-car-sidebar-wrapper .page-car-sidebar-alerts .page-car-sidebar-alerts-list .feeds li .date { color: #cfcfcf; } /****** Page Footer ******/ .page-footer .page-footer-inner { color: #333333; } .page-footer { background-color: #e4e6e8; } @media (max-width: 480px) { /* 480px */ .page-header.navbar .top-menu { background-color: #747F8C; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle:hover { background-color: #9099a3; } } /*Boby*/ body { background-color: #FFFFFF; } /*CSS3 Spinner Bar*/ .page-spinner-bar > div, .block-spinner-bar > div { background: #54dac7; } .page-content { border-left: 1px solid #F0F5F7; border-bottom: 1px solid #F0F5F7; } @media (max-width: 991px) { /* 991px */ .page-content { border-left: 0; border-bottom: 0; } } @media (max-width: 480px) { /* 480px */ body { background: #98a0aa; } .page-header.navbar .top-menu { background-color: #747F8C; } .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle > i { color: #dde0e3; } } .page-quick-sidebar-wrapper { background-color: #fff; margin: 0px; /*margin-top:0px;*/ border-left: solid 1px #00A2FF; }
public/system/cwt/assets/css/themes/light.css
.page-header.navbar { background-color: #00A2FF; } .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle > i { color: #fff; } .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle .badge.badge-default { background-color: #3FD5C0; color: #fff; } .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle:hover, .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle:hover > i, .page-header.navbar .top-menu .navbar-nav > li.dropdown.open .dropdown-toggle, .page-header.navbar .top-menu .navbar-nav > li.dropdown.open .dropdown-toggle > i, .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle:hover > .username { background-color: #fff; color: #00A2FF; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu { border-color: #e7eaf0; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu:after { border-bottom-color: #eaedf2; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external { background: #eaedf2; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > h3 { color: #62878f; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > a { color: #5b9bd1; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu > li.external > a:hover { color: #3175af; text-decoration: none; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list > li > a { border-bottom: 1px solid #EFF2F6 !important; color: #888888; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-extended .dropdown-menu .dropdown-menu-list > li > a:hover { background: #f8f9fa; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li > a .time { background: #f1f1f1; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-notification .dropdown-menu .dropdown-menu-list > li > a:hover .time { background: #e4e4e4; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-tasks .dropdown-menu .dropdown-menu-list .progress { background-color: #dfe2e9; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-user > .dropdown-toggle > .username { color: white; } .page-header.navbar .top-menu .navbar-nav > .open > .dropdown-toggle > .username { color: #00A2FF !important; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-user > .dropdown-toggle > i { color: white; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-user > .dropdown-menu { width: 195px; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-language > .dropdown-toggle > .langname { color: white; } /* Default Horizontal Menu */ .page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu { box-shadow: 5px 5px rgba(144, 153, 163, 0.2); } .page-header.navbar .hor-menu .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > h3 { color: white; } .page-header.navbar .hor-menu .navbar-nav > li > a { color: #fff; } .page-header.navbar .hor-menu .navbar-nav > li > a > i { color: #fff; } .page-header.navbar .hor-menu .navbar-nav > li.open > a, .page-header.navbar .hor-menu .navbar-nav > li > a:hover { color: #00A2FF !important; background: #fff !important; } .page-header.navbar .hor-menu .navbar-nav > li.open > a > i, .page-header.navbar .hor-menu .navbar-nav > li > a:hover > i { color: #e4e6e8; } .page-header.navbar .hor-menu .navbar-nav > li.active > a, .page-header.navbar .hor-menu .navbar-nav > li.active > a, .page-header.navbar .hor-menu .navbar-nav > li.current > a, .page-header.navbar .hor-menu .navbar-nav > li.current > a { color: #fff; background: #00A2FF !important; } .page-header.navbar .hor-menu .navbar-nav > li.active > a > i, .page-header.navbar .hor-menu .navbar-nav > li.active > a > i, .page-header.navbar .hor-menu .navbar-nav > li.current > a > i, .page-header.navbar .hor-menu .navbar-nav > li.current > a > i { color: #d6d9dd; } .page-header.navbar .hor-menu .navbar-nav > li.active .selected, .page-header.navbar .hor-menu .navbar-nav > li.current .selected { border-top: 6px solid #3FD5C0; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu { box-shadow: 5px 5px rgba(144, 153, 163, 0.2); background: #9099a3; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li > a { color: white; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li > a > i { color: #f9fafa; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li:hover > a { color: white; background: #9ba3ac; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li:hover > a > i { color: white; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.active > a, .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.active > a:hover, .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.current > a, .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.current > a:hover { color: white; background: #9ba3ac; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.active > a > i, .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.active > a:hover > i, .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.current > a > i, .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.current > a:hover > i { color: white; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-menu li.divider { background-color: #9ea6af; } .page-header.navbar .hor-menu .navbar-nav > li .dropdown-submenu > a:after { color: #f9fafa; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.mega-menu-dropdown > .dropdown-menu { box-shadow: 5px 5px rgba(102, 102, 102, 0.1); } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.mega-menu-dropdown > .dropdown-menu .mega-menu-content .mega-menu-submenu li > h3 { color: #666; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li > a, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li > a > i { color: #fff; } /* .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li > a:hover > i { color: #00A2FF; } */ /* .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.open > a { color: #00A2FF !important; background: #fff !important; } */ .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li > a:hover > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.open > a > i { color: #00A2FF !important; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.active > a, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.active > a:hover, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.current > a, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.current > a:hover { color: #fff; background: #00A2FF; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.active > a > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.active > a:hover > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.current > a > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li.current > a:hover > i { color: #d6d9dd; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu { box-shadow: 5px 5px rgba(102, 102, 102, 0.1); background: white; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li > a { color: #000; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li > a > i { color: #888; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li:hover > a { color: #000; background: #f2f2f7; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li:hover > a > i { color: #666; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.active > a, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.active > a:hover, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.current > a, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.current > a:hover { color: #000; background: #f2f2f7; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.active > a > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.active > a:hover > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.current > a > i, .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.current > a:hover > i { color: #666; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu li.divider { background-color: #f2f2f7; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li .dropdown-menu { border: 1px solid #efeff5; } .page-header.navbar .hor-menu.hor-menu-light .navbar-nav > li > .dropdown-menu { border-top: 0; } /************* Quick Sidebar *************/ /*** Quick Sidebar Toggler ***/ .page-quick-sidebar-toggler { background: #babfc6; } .page-quick-sidebar-toggler:hover { background: #b1b8bf; } /*** Quick Sidebar Content ***/ .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li > a { color: #00A2FF; background: #fff; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li > a:hover, .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li.open > a { color: white; background: #00A2FF; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li.active > a { border: 0; color: #fff; background: #00A2FF; } .nav-justified > li > a { border-bottom: solid 1px #00A2FF !important; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu { border: 0; background: #babfc6; box-shadow: 5px 5px rgba(242, 243, 244, 0.1); } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu:before { border-bottom: 7px solid #babfc6; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu:after { border-bottom: 7px solid #babfc6; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li > a { color: white; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li > a > i { color: white; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li > a:hover { background: #c2c7cd; color: white; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li > a:hover > i { color: white; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li.active > a { background: #bdc2c8; color: white; } .page-quick-sidebar-wrapper .page-quick-sidebar .nav-justified > li .dropdown-menu > li.divider { background-color: #c2c7cd; } .page-quick-sidebar-wrapper .page-quick-sidebar .list-heading { color: #1a1a1a; } .page-quick-sidebar-wrapper .page-quick-sidebar .list-items { margin: 0; padding: 0; list-style: none; } .page-quick-sidebar-wrapper .page-quick-sidebar .list-items > li { border-bottom-color: #00A2FF; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-body .media-heading-sub { color: #666; } .page-quick-sidebar-wrapper .page-quick-sidebar .list-items > li:hover { background: #00A2FF; } .media:hover .media-heading, .media:hover .media-heading-sub { color: #fff !important; } .page-quick-sidebar-wrapper .page-quick-sidebar-item .page-quick-sidebar-nav .page-quick-sidebar-back-to-list { color: #959595; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-users .media-list .media .media-body .media-heading-small { color: #cfcfcf; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .name { color: #f6f6f6; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .datetime { color: #f6f6f6; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post .message { color: white; background: #babfc6; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.in .message .arrow { border-right-color: #babfc6; } .page-quick-sidebar-wrapper .page-quick-sidebar-chat .page-quick-sidebar-chat-user .page-quick-sidebar-chat-user-messages .post.out .message .arrow { border-left-color: #babfc6; } .page-quick-sidebar-wrapper .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li a { color: #f1f1f1; } .page-quick-sidebar-wrapper .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li a .desc { text-decoration: underline; } .page-quick-sidebar-wrapper .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li .desc { color: #ebebeb; } .page-quick-sidebar-wrapper .page-quick-sidebar-alerts .page-quick-sidebar-alerts-list .feeds li .date { color: #cfcfcf; } /*车辆列表*/ /*** Quick Sidebar Layout ***/ .page-car-sidebar-wrapper { background: #9ea6af; } .page-car-sidebar-wrapper .page-car-sidebar { background: #9ea6af; } /*** car Sidebar Toggler ***/ .page-car-sidebar-toggler { background: #babfc6; } .page-car-sidebar-toggler:hover { background: #b1b8bf; } .page-car-sidebar-toggler > i { color: white; } /*** car Sidebar Content ***/ .page-car-sidebar-wrapper { color: white; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li > a { color: white; background: #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li > a:hover { background: #acb2ba; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li.open > a { color: white; background: #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li.active > a { border: 0; background: #9ea6af; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu { border: 0; background: #babfc6; box-shadow: 5px 5px rgba(242, 243, 244, 0.1); } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu:before { border-bottom: 7px solid #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu:after { border-bottom: 7px solid #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu > li > a { color: white; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu > li > a > i { color: white; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu > li > a:hover { background: #c2c7cd; color: white; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu > li > a:hover > i { color: white; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu > li.active > a { background: #bdc2c8; color: white; } .page-car-sidebar-wrapper .page-car-sidebar .nav-justified > li .dropdown-menu > li.divider { background-color: #c2c7cd; } .page-car-sidebar-wrapper .page-car-sidebar .list-heading { color: #e1e1e1; } .page-car-sidebar-wrapper .page-car-sidebar .list-items { margin: 0; padding: 0; list-style: none; } .page-car-sidebar-wrapper .page-car-sidebar .list-items > li { border-bottom-color: #00A2FF; } .page-car-sidebar-wrapper .page-car-sidebar .list-items > li:hover { background: #00A2FF; } .page-car-sidebar-wrapper .page-car-sidebar-item .page-car-sidebar-nav .page-car-sidebar-back-to-list { color: white; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-users .media-list .media .media-body .media-heading-sub { color: #dadada; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-users .media-list .media .media-body .media-heading-small { color: #cfcfcf; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-user .page-car-sidebar-chat-user-messages .post .name { color: #f6f6f6; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-user .page-car-sidebar-chat-user-messages .post .datetime { color: #f6f6f6; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-user .page-car-sidebar-chat-user-messages .post .message { color: white; background: #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-user .page-car-sidebar-chat-user-messages .post.in .message .arrow { border-right-color: #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar-chat .page-car-sidebar-chat-user .page-car-sidebar-chat-user-messages .post.out .message .arrow { border-left-color: #babfc6; } .page-car-sidebar-wrapper .page-car-sidebar-alerts .page-car-sidebar-alerts-list .feeds li a { color: #f1f1f1; } .page-car-sidebar-wrapper .page-car-sidebar-alerts .page-car-sidebar-alerts-list .feeds li a .desc { text-decoration: underline; } .page-car-sidebar-wrapper .page-car-sidebar-alerts .page-car-sidebar-alerts-list .feeds li .desc { color: #ebebeb; } .page-car-sidebar-wrapper .page-car-sidebar-alerts .page-car-sidebar-alerts-list .feeds li .date { color: #cfcfcf; } /****** Page Footer ******/ .page-footer .page-footer-inner { color: #333333; } .page-footer { background-color: #e4e6e8; } @media (max-width: 480px) { /* 480px */ .page-header.navbar .top-menu { background-color: #747F8C; } .page-header.navbar .top-menu .navbar-nav > li.dropdown-user .dropdown-toggle:hover { background-color: #9099a3; } } /*Boby*/ body { background-color: #FFFFFF; } /*CSS3 Spinner Bar*/ .page-spinner-bar > div, .block-spinner-bar > div { background: #54dac7; } .page-content { border-left: 1px solid #F0F5F7; border-bottom: 1px solid #F0F5F7; } @media (max-width: 991px) { /* 991px */ .page-content { border-left: 0; border-bottom: 0; } } @media (max-width: 480px) { /* 480px */ body { background: #98a0aa; } .page-header.navbar .top-menu { background-color: #747F8C; } .page-header.navbar .top-menu .navbar-nav > li.dropdown .dropdown-toggle > i { color: #dde0e3; } } .page-quick-sidebar-wrapper { background-color: #fff; margin: 0px; /*margin-top:0px;*/ border-left: solid 1px #00A2FF; }
0.155719
0.025012
@font-face { font-family: "Icons"; src: url('../images/icons/icons.eot'); src: url('../images/icons/iconsd41d.eot?#iefix-rdmvgc') format('embedded-opentype'), url('../images/icons/icons.woff') format('woff'), url('../images/icons/icons.ttf') format('truetype'), url('../images/icons/iconsca27.svg?-rdmvgc#icomoon') format('svg'); font-weight: normal; font-style: normal; } body, textarea { /*font-family: 'Montserrat', sans-serif;*/ font-family: 'avenir', sans-serif; font-size: 16px; line-height: 25px; padding: 0; margin: 0; } body>#preloader { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: #fff; z-index: 99995; } #preloader:before { content: url(../images/loader.svg); position: absolute; width: 15px; height: 15px; top: 50%; left: 50%; margin-left: -15px; margin-top: -15px; } body.no-transactions * { transition: none !important; } a, li { -webkit-tap-highlight-color: transparent } h1, h2, h3, h4, h5, h6, p { margin: 0; } p { margin: 0; } p+p { margin-top: 10px; } h1 { font-size: 35px; line-height: 40px } h2 { font-size: 20px; line-height: 30px } h1+p, h2+p, h3+p, h4+p, h2+h4, h1+h4, h2+ul.icon-list, h3+ul.icon-list, p+h3, p+.btn, p+h4, h4+.btn, h4+.btn-text, h4+input, h4+select, h4+textarea, p+ul.icon-list, p+.btn-text, p+table, p+pre, p+img, img+p, p+.row, .row+p, p+.img-box, p+.media-box, p+.cnt-box, p+.icon-links, p+ul.icon-list, .container>.row+.row, .container>div+p, .container>div+.btn, .table+.btn, .table+.btn-text, h4+div, h4+ul, h4+ul.icon-list, h4+a, .slimScrollDiv+.btn, .text-list+.btn, .text-list+.btn-text, p+.text-list { margin-top: 15px; } .cnt-boxnews { margin-top: 15px; } .row.justify-content-around { margin-right: -55px; margin-left: -55px; } .btn:not(.full-width)+.btn:not(.full-width) { margin-left: 15px; } .hidden { display: none !important; } .text-light { font-weight: 100 !important; } .text-normal { font-weight: 400 !important; } .text-bold { font-weight: 600 !important; } .text-black { font-weight: 900 !important; } .text-uppercase { text-transform: uppercase; } .clear { clear: both; width: 100%; } .full-width { width: 100%; } .align-left { text-align: left; } .align-right { text-align: right; } .align-center { text-align: center; } .no-margin, div.no-margin { margin: 0; } [data-href] { cursor: pointer; } .scroll-show:not(.showed) { display: none !important; } .boxed-area, .hc-cmp-column .hc-cmp-column.boxed-area, .hc-cmp-column .hc-cmp-column.boxed-area:last-child { padding: 30px; border-radius: 3px; } /* # COLORS =================================================================== ------------------------------------------------------------------- COLOR 1 ------------------------------------------------------------------- */ body, header h2, ::placeholder { color: #6fa6d7; } /* ------------------------------------------------------------------- COLOR 2 ------------------------------------------------------------------- */ h1, h2, h3, h4, h5, h6, .btn.btn-border, .btn-text, .input-text, .input-select, .input-textarea, .icon-list span, .icon-list span a, .social-links a i, a, .glide__arrow, .search-bar input[type=submit], .menu-cnt .tab-nav>li a, .menu-cnt>ul>li a { color: #379cf4; } .icon-circle li:before, .icon-circle span:before, .icon-line li:before, .icon-line span:before, .progress-bar>div>div, .progress-bar>div span, .breadcrumb li a:after, .glide__bullets>button { background-color: #379cf4; } .btn, .tab-nav li.active a, .tab-nav li:hover a, .icon-links-grid a:hover, .icon-links-button a { background-color: #379cf4; border-color: #379cf4; } .tab-nav li a { color: #379cf4; border-color: #379cf4; } /* ------------------------------------------------------------------- COLOR 3 ------------------------------------------------------------------- */ .btn-border:hover, .icon-links a:hover i, .icon-links-popup:hover>i, .breadcrumb li:not(:last-child):hover a, .pagination li:not(.page):hover a, .search-bar input[type=submit]:hover, .accordion-list>li:hover>a, .btn-text:hover, .menu-inner li:hover>a, .menu-inner li.active>a, .menu-inner .dropdown ul>li:hover>a, .album-title>a:hover, .glide__arrow:hover, .mega-menu .icon-list li a:hover, nav.active .menu-btn, .menu-transparent .menu-cnt>ul>li:hover>a, .list-nav a:hover { color: #3081c8; } .light .dropdown>ul>li:not(:hover)>a { color: #3081c8 !important; } .btn:not(.btn-border):hover, .cnt-box-badge .badge, .cnt-box-blog-side .blog-date, .cnt-box-blog-top .blog-date, .dropdown ul:not(.icon-list) li:hover>a, .menu-cnt>ul>li:hover>a, .lan-menu>li:hover>a, .glide__bullets>button:hover, .glide__bullets>button.glide__bullet--active { background-color: #3081c8; } .icon-links-button a:hover, .pagination li.page:hover a, .pagination li.page.active a { background-color: #3081c8; border-color: #3081c8; } .btn:hover, .input-text:focus, .input-select:focus, .input-textarea:focus, .search-bar input[type=text]:focus { border-color: #3081c8; } /* ------------------------------------------------------------------- COLOR 4 ------------------------------------------------------------------- */ .input-text, .input-select, .input-textarea, .cnt-pricing-table, .table, .table td, .table th, .step-item>span, .pagination li.page a, .accordion-list>li, .menu-inner:not(.menu-inner-vertical) .dropdown ul, .search-bar input[type=text], .footer-bar, .menu-cnt.active, .search-box-menu, .section-block+.section-base, .section-map+.section-base { border-color: #c3dff7; } .step-item:before, .menu-inner li:before, .bg-color, body main>section.bg-color, .menu-top-logo>.container:before, body hr:not([class*=space]) { background-color: #172129; } /* ------------------------------------------------------------------- COLOR 5 ------------------------------------------------------------------- */ .cnt-box-testimonials-bubble>p, .cnt-call, .comment-list li, .quote, .progress-bar>div, .timeline .panel, .header-base, .cnt-box.boxed .caption, .cnt-box-side-icon.boxed>i, .cnt-box-top-icon.boxed>i, .menu-big-box .menu-box, footer, main>section.section-base.section-color, .boxed-area, .list-tags a { background-color: #EAF5FC; } .cnt-boxnews.boxed .captionnews { background-color: #EAF5FC; } .cnt-box-testimonials-bubble>p:after { border-color: #EAF5FC; } /* ------------------------------------------------------------------- LIGHT COLOR ------------------------------------------------------------------- */ .light .breadcrumb li:not(:last-child) a, .light.menu-inner li>a { color: #FFF; } .light, .light h1, .light h2, .light h3, .light h4, .light h5, .light h6, .light p, .light .btn-text, .light .btn-text:hover, .light .btn a, .light .btn:hover, nav.light a, .light .glide__arrow, .light .counter .value span:last-child, .light.counter .value span:last-child, .light .icon-links a i { color: #FFF !important; } .light .breadcrumb li a:after, .section-image .boxed-area { background-color: #FFF; } .light .glide__bullets>button, .light .glide__bullets>button.glide__bullet--active, .section-color .boxed-area, .bg-white { background-color: #FFF !important; } .light .btn-border { color: #FFF !important; border-color: #FFF !important; } .light .btn-text:hover, .light p a:hover { opacity: .7; } /* # ICONS =================================================================== */ [class^="icon-"]:before, [class*=" icon-"]:before { font-family: "Icons"; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; speak: none; text-transform: none; } .icon-user:before { content: "\6a"; } .icon-bookmark:before { content: "\6c"; } .icon-share:before { content: "\6d"; } .icon-quote:before { content: "\65"; } .icon-calendar:before { content: "\6e"; } .icon-facebook:before { content: "\6b"; } .icon-twitter:before { content: "\6f"; } .icon-instagram:before { content: "\70"; } .icon-pinterest:before { content: "\71"; } .icon-linkedin:before { content: "\72"; } .icon-youtube:before { content: "\73"; } /* # SECTIONS =================================================================== ------------------------------------------------------------------- GLOBAL - SECTION ------------------------------------------------------------------- */ main>section { margin: 0; padding: 0; position: relative; overflow: hidden; } main>section.section-base { background-color: #FFF; } main>section>.container { padding-top: 40px; padding-bottom: 30px; } .section-video>video, .section-map>.google-map, .section-slider>.background-slider, .section-slider>.background-slider>div { position: absolute !important; height: 100%; width: 100%; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; } section.section-center { display: flex; align-items: center; } .section-full-width>.container { max-width: 100%; width: 100%; } @media (min-width: 994px) { .section-full-width-right>.container>.row>.col-lg-6:last-child { position: absolute; left: 50%; } .section-full-width-right>.container>.row>.col-lg-8:last-child { position: absolute; left: 66.666667%; } .section-full-width-left>.container>.row>.col-lg-6:first-child { position: absolute; right: 50%; } .section-full-width-left>.container>.row { direction: rtl; text-align: left; } .section-full-width-left>.container>.row>div, .section-full-width-right>.container>.row>div { direction: ltr; } main .section-full-width-left>.container, main .section-full-width-left>.container { position: static; } } .no-padding-y>.container { padding-top: 0; padding-bottom: 0; } .no-padding-x>.container { padding-left: 0; padding-right: 0; } .no-padding-top>.container { padding-top: 0; } .no-padding-bottom>.container { padding-bottom: 0; } .no-padding>.container { padding: 0; } /* ------------------------------------------------------------------- IMAGE - SECTION ------------------------------------------------------------------- */ .section-image { background-size: cover; background-position: center center; } .section-image.bg-top { background-position: top; } .section-image.bg-bottom { background-position: bottom; } /* ------------------------------------------------------------------- MAP - SECTION ------------------------------------------------------------------- */ main>.section-map { padding-top: 100px; padding-bottom: 100px; } .section-map>.container { position: relative; z-index: 5; background-color: #FFF; padding: 30px; border-radius: 3px; width: 50%; margin: 0 15px; left: calc(50% - 30px); transform: translateX(calc(-100% + 30px)); } .section-map-right>.container { transform: none; } .section-map.section-full-width>.container { max-width: 50%; } @media (min-width: 1200px) { .section-map>.container { max-width: 570px; } } /* ------------------------------------------------------------------- VIDEO - SECTION ------------------------------------------------------------------- */ .section-video>video { height: auto; } .section-video>.container { position: relative; z-index: 5; } /* ------------------------------------------------------------------- SLIDER - SECTION ------------------------------------------------------------------- */ .section-slider>.background-slider>div { opacity: 0; transition: all .5s; background-size: cover; background-position: center center; } .section-slider>.background-slider>div.active { opacity: 1; } .section-slider>.container { position: relative; z-index: 5; } .section-slider[data-slider-parallax] .background-slider { position: fixed !important; z-index: -1; opacity: 0; transition: none; } .section-slider[data-slider-parallax].active .background-slider { opacity: 1; } /* ------------------------------------------------------------------- BLOCK - SECTION ------------------------------------------------------------------- */ .section-block>.block-media { position: absolute; width: calc(50% - 15px); height: 100%; top: 0; right: 0; border-top-left-radius: 3px; border-bottom-left-radius: 3px; overflow: hidden; } .section-block-right>.block-media { left: 0; right: auto; border-radius: 0; border-top-right-radius: 3px; border-bottom-right-radius: 3px; } .section-block>.container>.row>.col:first-child:before { content: ''; border: 25px solid #ffffff; border-top-color: transparent; border-bottom-color: transparent; border-right-color: transparent; right: -65px; left: auto; top: 50%; margin-top: -25px; position: absolute; z-index: 1; } .section-block-right>.container>.row>.col:first-child:before { right: auto; left: -65px; transform: rotate(180deg); } .section-block>.block-media .image { height: 100%; width: 100%; background-size: cover; background-position: center center; } .section-block>.block-media video { width: 100%; } .section-block-right>.container>.row { flex-direction: row-reverse; } .section-block>.container>.row>.col:last-child { text-align: center; display: flex; align-items: center; justify-content: center; transform: translateX(30px); } .section-block-right>.container>.row>.col:last-child { transform: translateX(-30px); } .section-block-full>.block-media { width: 100%; } .section-block-full>.container>.row>.col { max-width: calc(50% - 60px); } .section-block-full>.container>.row>.col:first-child { background: #FFF; padding: 60px; margin: 0 30px; border-radius: 3px; } .section-block-full>.container>.row>.col:first-child:before { right: -49px; } .section-block-full.section-block-right>.container>.row>.col:first-child:before { right: auto; left: -49px; } /* # NAVIGATION =================================================================== ------------------------------------------------------------------- GLOBAL ------------------------------------------------------------------- */ body>nav { z-index: 1195; position: relative; background-color: #FFF; } body>nav>.container { height: 100%; min-height: 35px; } .dropdown ul li a { background-color: #FFF; } .dropdown ul li:hover>a, nav:not(.menu-transparent) .menu-cnt>ul>li:hover>a { color: #FFF; } .logo-retina { display: none !important; } @media (min-resolution: 192dpi) and (min-width: 994px), (-webkit-min-device-pixel-ratio: 2) and (min-width: 994px) { .logo-retina:not(.hidden):not(.scroll-show), .logo-retina.scroll-show.showed { display: block !important; } .logo-default { display: none !important; } } body>nav .menu-brand { float: left; height: 50px; display: flex; align-items: center; justify-content: center; padding: 10px 0; z-index: 9999; position: relative; } body>nav .menu-brand>a { height: 100%; } body>nav .menu-brand img { max-height: 100%; display: block; } .menu-btn { display: none; width: 30px; height: 30px; font-style: normal; position: absolute; right: 30px; top: 50%; transform: translateY(-50%); font-size: 30px; line-height: 30px; } .menu-btn:before { content: "\64"; font-family: "Icons"; position: absolute; left: 0; text-transform: none; } .menu-right { float: right; height: 50px; display: flex; align-items: center; margin: 0 -15px; } .menu-cnt { position: relative; } .menu-cnt>ul, .menu-inner>ul { float: left; list-style: none; padding: 0; margin: 0; display: flex; margin-left: 30px; } .menu-cnt>ul>li>a, .dropdown>ul>li>a, .dropdown-submenu>ul>li>a { height: 35px; line-height: 35px; padding: 0 15px; font-size: 13px; display: block; } .menu-cnt ul>li>a { text-decoration: none; transition: all .5s, height 0s, line-height 0s; } .menu-cnt>ul>li a { font-weight: 500; text-decoration: none; text-align: left; } .menu-right>* { margin: 0 15px; } .search-box-menu>input[type=text] { display: none; position: absolute; box-sizing: border-box; left: 0; top: calc(100% + 10px); width: 100% !important; max-width: 1125px; padding: 5px 15px; margin: auto; border: none; height: 50px; z-index: 9; outline: none; border-radius: 3px; box-shadow: 0 5px 5px rgba(0, 0, 0, 0.06); background-color: white; transition: all .5s; } body>nav .search-box-menu.active>input { display: block; } .search-box-menu>i { font-size: 19px; height: 50px; line-height: 50px; cursor: pointer; width: 50px; display: block; text-align: center; } .search-box-menu>i:before { font-family: "Icons"; content: "\61"; font-style: normal; text-transform: none; } .search-box-menu.active>i:before { content: "\63"; } .search-box-menu>input[type=submit] { display: none; position: absolute; z-index: 9; right: 0; height: 40px; top: calc(100% + 15px); background: #FFF; border: none; padding: 0 15px; cursor: pointer; } .search-bar { position: relative; } .search-bar input[type=text] { line-height: 25px; border-radius: 3px; border-width: 1px; border-style: solid; outline: none; padding: 0 5px; transition: all .5s; } .search-bar input[type=submit] { position: absolute; top: 50%; transform: translateY(-50%); right: 5px; background: none; border: none; outline: none; cursor: pointer; } nav.light h5, .light .shop-menu .shop-cart .cart-item .cart-content, .light .shop-menu p, .light .shop-menu .btn, .light .lan-menu ul li a { color: #4C4C4C; } body>nav .icon-links a i { font-size: 16px; transform: translateX(-50%) translateY(-50%); } .menu-cnt li>a { position: relative; } /* ------------------------------------------------------------------- MINI MENU SECTION - NAVIGATION MENU ------------------------------------------------------------------- */ .menu-mini { height: 35px; border-bottom: 1px solid rgba(128, 128, 128, 0.21); background: #fff; } .menu-mini>.container>ul { list-style: none; float: left; padding: 0; margin: 9px 0 0 0; } .menu-mini>.container>ul>li { float: left; padding-right: 20px; padding-left: 25px; font-size: 13px; line-height: 16px; position: relative; } .menu-mini>.container>ul>li i { margin-right: 5px; font-size: 16px; position: absolute; left: 0px; } .menu-mini li>a { text-decoration: none; } .menu-mini .menu-right { align-items: center; height: 35px; padding: 0; } .menu-mini .icon-links i, .menu-mini .icon-links i:hover { font-size: 14px; border-radius: 0; width: 35px; padding: 0; } .menu-mini .lan-menu { position: relative; z-index: 999; } .menu-mini .lan-menu li.dropdown>a { height: 35px; line-height: 35px; padding-top: 0; padding-bottom: 0; } .menu-wide .container, .menu-wide .search-box-menu>input { max-width: 100%; } /* ------------------------------------------------------------------- DROPDOWN - NAVIGATION MENU ------------------------------------------------------------------- */ .dropdown ul:not(.icon-list) { position: absolute; display: none; } .dropdown li { cursor: pointer; } .dropdown>a { position: relative; } .dropdown>ul, .dropdown-submenu>ul { box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.17); list-style: none; padding: 0; margin: 0; border: none; min-width: 200px; } .dropdown:hover>ul, .dropdown:hover .mega-menu, .dropdown-submenu:hover>ul { display: block; z-index: 4; } .dropdown-submenu { position: relative; } .dropdown-submenu>a { position: relative; z-index: 3; } .dropdown-submenu>a:after, .menu-side .dropdown>a:after, .menu-side .mega-dropdown>a:after, .menu-inner .dropdown>a:after, .menu-cnt>ul>li.dropdown>a:after { font-family: "Icons"; content: "\67"; position: absolute; top: 50%; transform: translateY(-50%) rotate(90deg); width: 20px; height: 20px; line-height: 20px; text-align: center; right: 10px; transition: transform .5s; text-transform: none; opacity: .7; } .dropdown-submenu>a:after, .menu-side:not(.menu-side-collapse) li>a:after, .menu-side:not(.menu-side-collapse) li.dropdown>a:after { transform: translateY(-50%) rotate(0deg); transition: none; } .dropdown.active>a:after, .mega-dropdown.active>a:after { transform: translateY(-50%) rotate(90deg) matrix(-1, 0, 0, 1, 0, 0); } .dropdown:hover>a:after, .menu-cnt li:hover>a:after { opacity: 1; } .dropdown-submenu ul { top: 0; left: 100%; z-index: 1; } .menu-cnt>ul>li.dropdown>a, .menu-cnt>ul>li.mega-dropdown>a { padding-right: 40px; } .menu-side .menu-cnt>ul>li.dropdown>a, .menu-side .menu-cnt>ul>li.mega-dropdown>a { padding-right: 15px; } .dropdown .divider { height: 1px; background: #eaeaea; } /* ------------------------------------------------------------------- MEGA MENU - NAVIGATION MENU ------------------------------------------------------------------- */ .mega-dropdown:hover .mega-menu, .mega-menu .tab-box>.panel.active { display: flex; overflow: hidden; z-index: 2; } .mega-menu .tab-box>.panel { margin: 30px 5px; } .mega-menu .tab-nav { margin: 15px; } .mega-dropdown .mega-menu { left: 0; width: 100%; } .mega-menu .col { padding: 0 10px; } .mega-menu { position: absolute; min-width: 250px; padding: 25px 5px; box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.17); background-color: #FFF; background-size: cover; display: none; } .mega-menu a { color: #636363; padding-left: 5px; display: block; white-space: nowrap; } .mega-menu .no-icons a { padding-left: 0; } .mega-menu.bg-menu { min-width: 400px; } .mega-menu h5 { margin-top: 5px; min-height: 15px; font-size: 15px; text-align: left; } .mega-menu .icon-list+h5 { margin-top: 30px; } .mega-menu .no-icons { margin-left: 1px; } .mega-menu .col>h5:first-child { margin-top: 0; } .mega-menu .tab-box { width: calc(100% + 10px); margin: -25px -5px; } /* ------------------------------------------------------------------- MENU RIGHT POSITION - NAVIGATION MENU ------------------------------------------------------------------- */ nav.align-right .menu-cnt { display: flex; justify-content: flex-end; } nav.align-right .menu-cnt { float: none; } /* ------------------------------------------------------------------- INNER MENU - NAVIGATION MENU ------------------------------------------------------------------- */ .menu-inner>ul { float: none; margin-left: 0; } .menu-inner:not(.menu-inner-vertical)>ul>li:not(:last-child) { margin-right: 20px; } .menu-inner li>a { height: 50px; line-height: 50px; display: block; position: relative; text-decoration: none; border-radius: 3px; cursor: pointer; transition: all .5s; } .menu-inner li.dropdown>a { padding-right: 35px; } .menu-inner .dropdown ul>li>a { font-size: 15px; } .menu-inner .dropdown ul>li:hover>a { background: none; } .menu-inner li { position: relative; transition: all .5s; } .menu-inner li:before { content: ""; position: absolute; width: 0%; height: 1px; transition: all .5s; bottom: 0; left: 0; } .menu-inner li:hover:before, .menu-inner li.active:before { width: 100%; } .menu-inner li>a>i { margin-right: 15px; } .menu-inner-vertical>ul { display: block; } .menu-inner-vertical li.dropdown>ul { position: static; box-shadow: none; } .menu-inner-vertical .dropdown:hover>ul { display: none } .menu-inner-vertical .dropdown.active>ul { display: block } .menu-inner.ms-minimal li:hover a, .menu-inner.ms-minimal li.active>a { background: none; } .menu-inner>div { display: none; position: relative; padding: 10px 0; } .menu-inner>div>i { right: 0; } .menu-inner.nav-right { justify-content: flex-end; display: flex; } .menu-inner.nav-center { justify-content: center; display: flex; } .menu-inner:not(.menu-inner-vertical) .dropdown>a:after { right: 0; } .menu-inner:not(.menu-inner-vertical) .dropdown ul { box-shadow: none; border-style: solid; border-width: 1px; border-radius: 3px; margin-top: -1px; } .menu-inner:not(.menu-inner-vertical) .dropdown li:last-child:before { bottom: -1px; } .menu-inner-image li img { position: absolute; height: 50px; max-height: 50px; max-width: 50px; height: 50px; border-radius: 3px; left: -65px; } .menu-inner-image li { padding-left: 65px; margin-bottom: 15px; } .menu-inner-image li a { line-height: 30px; } .menu-inner-image li a span { display: block; line-height: 15px; font-size: 12px; } /* ------------------------------------------------------------------- MENU TRANSPARENT - NAVIGATION MENU ------------------------------------------------------------------- */ body>nav.menu-transparent, .menu-transparent .form-control, .menu-transparent .btn, .menu-transparent .menu-cnt>ul>li:hover>a, .menu-transparent .lan-menu>li>a, .menu-transparent .btn:hover, .menu-big-box.menu-transparent .menu-box, .menu-transparent .menu-mini, .menu-transparent .lan-menu>li:hover>a { background: none; } /* ------------------------------------------------------------------- MENU FIXED - NAVIGATION MENU ------------------------------------------------------------------- */ nav.menu-fixed { position: fixed; right: 0; left: 0; top: 0; } .menu-fixed:not(.menu-transparent)+header, .menu-fixed:not(.menu-transparent)+main { margin-top: 50px; } .menu-fixed.menu-top-logo:not(.menu-transparent)+header, .menu-fixed.menu-top-logo:not(.menu-transparent)+main { margin-top: 135px; } /* ------------------------------------------------------------------- LANGUAGE MENU - NAVIGATION MENU ------------------------------------------------------------------- */ .lan-menu { list-style: none; padding-left: 0; position: relative; } .lan-menu li a, .lan-menu .dropdown>ul>li>a { padding-left: 40px; color: #444; text-decoration: none; line-height: 50px; font-size: 13px; display: block; transition: all .5s; } nav:not(.menu-transparent) .lan-menu>li:hover>a, nav:not(.menu-transparent) .menu-mini .lan-menu>li:hover>a, .lan-menu .dropdown>ul>li:hover>a { color: #FFF; } .lan-menu li.dropdown>a { padding-right: 15px; } .lan-menu li.dropdown>a:after { right: 15px; } .lan-menu .dropdown>ul>li>a, .lan-menu .dropdown>ul { min-width: 100%; max-width: 100%; box-sizing: border-box; } .lan-menu li a img { position: absolute; left: 15px; top: 50%; margin-top: -6px; border-radius: 3px; } /* ------------------------------------------------------------------- SHOP MENU - NAVIGATION MENU ------------------------------------------------------------------- */ .shop-menu-cnt { position: relative; } .shop-menu-cnt>i { font-size: 23px; height: 50px; line-height: 50px; cursor: pointer; width: 50px; display: block; text-align: center; } .shop-menu-cnt>i:before { font-family: "Icons"; content: "\69"; font-style: normal; } .shop-menu-cnt:hover .shop-menu { display: block; visibility: visible; opacity: 1; } .shop-menu-cnt .shop-menu { z-index: 90; position: absolute; top: 100%; left: 50%; margin-left: -160px; width: 320px; text-align: center; background-color: #fff; transition: all .4s ease; box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.17); overflow: hidden; display: none; } .shop-cart li { cursor: pointer; } .shop-cart li img { width: 65px; height: 40px; margin: 0; border-radius: 3px; float: left; } .shop-cart .cart-item .cart-content { padding-left: 100px; text-align: left; font-size: 13px; line-height: 21px; } .shop-menu-cnt .cart-total { display: block; text-align: left; padding: 8px 16px; margin: 0; overflow: hidden; font-size: 14px; line-height: 18px; } .shop-cart { list-style: none; padding: 15px 0; margin: 0; } .shop-cart .cart-item { height: 50px; padding: 0 15px; transition: all .3s; } .shop-cart .cart-item:hover { background: none; padding-left: 20px; } .cart-item h5 { margin-bottom: 0; font-size: 14px; } .shop-menu .cart-buttons { text-align: left; padding: 15px; margin: 0; line-height: 20px; } .shop-menu .cart-buttons a { text-decoration: none; margin-right: 10px; } .shop-menu-cnt .cart-count { background-color: #292929; top: 50%; margin-top: -4px; right: 3px; width: 18px; height: 18px; display: block; position: absolute; z-index: 95; font-size: 11px; line-height: 19px; font-style: normal; text-align: center; border-radius: 50%; color: #fff; font-weight: 600; } .shop-menu-empty .shop-menu, .wc-backward { display: none !important; } /* ------------------------------------------------------------------- BIG BOX - NAVIGATION MENU ------------------------------------------------------------------- */ .menu-big-box { padding-bottom: 40px; } .menu-big-box .menu-box { position: absolute; height: 80px; width: calc(100% - 60px); z-index: 1; display: flex; align-items: center; justify-content: center; padding: 15px; border-radius: 3px; } .menu-big-box .menu-box>.row { width: calc(100% + 15px); } .menu-big-box .menu-cnt>ul, .menu-big-box .menu-right>ul { z-index: 2; position: relative; } .menu-big-box>.container { position: relative; } /* ------------------------------------------------------------------- SUBTITLE - NAVIGATION MENU ------------------------------------------------------------------- */ .menu-subtitle .menu-cnt li a span { display: block; height: 23px; position: absolute; bottom: 24px; font-size: 11px; color: #bbbbbb; } .menu-subtitle .menu-cnt>ul>li>a, .menu-subtitle .menu-cnt .menu-right { height: 70px; } .menu-subtitle .menu-cnt>ul>li>a { position: relative; } .menu-subtitle .shop-menu-cnt>i, .menu-subtitle .search-box-menu>i, .menu-subtitle .menu-brand, .menu-subtitle .lan-menu>li>a { height: 70px; line-height: 70px; } /* ------------------------------------------------------------------- MIDDLE AND TOP LOGO - NAVIGATION MENU ------------------------------------------------------------------- */ @media (min-width: 992px) { .menu-top-logo { padding-top: 100px; } .menu-top-logo>.container { padding-left: 30px; padding-right: 30px; } .menu-top-logo>.container>.menu-brand, .menu-top-logo .menu-right { position: absolute; top: 50%; transform: translateY(calc(-50% - 25px)); right: 50%; width: 570px; float: none; padding-left: 30px; padding-right: 30px; justify-content: flex-start; } .menu-top-logo .menu-right { left: 50%; right: auto; justify-content: flex-end; margin: 0; } .menu-top-logo .menu-right>*:last-child { margin-right: 0; } .menu-top-logo .menu-cnt { position: static; } .menu-top-logo .menu-cnt>ul { margin: 0; position: relative; width: 100%; } .menu-top-logo>.container:before { content: ""; position: absolute; height: 1px; width: 100%; left: 0; } .menu-top-logo .menu-mini { position: absolute; top: 0; width: 100%; } .menu-top-logo .menu-mini .menu-right { transform: translateY(-50%); } .menu-top-logo>.menu-mini+.container>.menu-brand, .menu-top-logo>.menu-mini+.container .menu-right { transform: translateY(calc(-50% - 8px)); } .menu-top-logo.menu-wide>.container>.menu-brand { left: 0; right: auto; } .menu-top-logo.menu-wide .menu-right { left: auto; right: 0; } } @media (max-width: 1125px) and (min-width: 992px) { .menu-top-logo>.container>.menu-brand, .menu-top-logo .menu-right { width: 480px; } } /* ------------------------------------------------------------------- ICON - NAVIGATION MENU ------------------------------------------------------------------- */ .menu-icon .menu-cnt>ul>li>a>i { position: absolute; top: 50%; left: 13px; transform: translateY(-50%); font-size: 24px; cursor: pointer; } .menu-icon .menu-cnt>ul>li>a { padding-left: 55px; position: relative; } .menu-icon-top.menu-fixed.scroll-menu .menu-cnt>ul>li>a>i { display: none; } @media (min-width: 993px) { .menu-icon-top .menu-cnt>ul>li>a>i { top: 15px; left: 50%; transform: translateY(0) translateX(-50%); } .menu-icon-top .menu-cnt>ul>li>a { padding-top: 35px; padding-left: 15px; } .menu-icon-top .shop-menu-cnt>i, .menu-icon-top .search-box-menu>i, .menu-icon-top .menu-cnt>.dropdown>ul>li>a, .menu-icon-top .dropdown-submenu>ul>li>a, .menu-icon-top .menu-cnt .menu-right, .menu-icon-top .menu-brand, .menu-icon-top .lan-menu>li>a { height: 80px; line-height: 80px; } .menu-icon-top .menu-cnt>ul>li>a { line-height: 50px; } } /* ------------------------------------------------------------------- SIDE - NAVIGATION MENU ------------------------------------------------------------------- */ @media (min-width: 992px) { .menu-side-cnt, .menu-side-cnt #fullpage-main, .menu-side-cnt .footer-parallax, .menu-side-cnt>.menu-fixed:not(.menu-wide) { padding-left: 250px; } .menu-side { width: 250px; height: 100%; position: fixed; top: 0; left: 0; z-index: 99995; background-color: #FFFFFF; border-right: 1px solid #e7e7e7; box-shadow: 1px 0 2px rgba(0, 0, 0, 0.05); } .menu-side .menu-brand { width: 100%; padding: 15px; height: 90px; float: none; } .menu-side .menu-cnt>ul { float: none; display: block; margin: 0; } .menu-side .menu-cnt>ul>li { float: none; position: relative; margin: 0; } .menu-side .mega-menu, .menu-side .dropdown>ul, .menu-side .dropdown-submenu>ul { left: 100%; top: 0; width: auto; } .menu-side-collapse { display: flex; flex-direction: column; justify-content: space-between; } .menu-side-collapse .menu-cnt { height: 100%; } .menu-side-collapse .menu-cnt>ul { float: none; display: block; margin: 0; } .menu-side-collapse .menu-cnt>ul>li { float: none; position: relative; margin: 0; } .menu-side-collapse .mega-menu, .menu-side-collapse .dropdown>ul, .menu-side-collapse .dropdown-submenu>ul { left: 0; top: 100%; width: 100%; position: relative; box-shadow: none; } .menu-side-collapse .bottom-area { position: static; } .menu-side-collapse li.active>ul, .menu-side-collapse .active .mega-menu, .menu-side-collapse .mega-menu .tab-box>.panel.active, .menu-side-collapse .mega-menu .tab-box .nav-tabs, .menu-side-collapse .active .dropdown-submenu ul { display: block; } .menu-side-collapse li:not(.active):not(.dropdown-submenu):hover>ul, .menu-side-collapse li:not(.active):hover .mega-menu { display: none; } .menu-side-collapse .mega-menu { padding: 25px 0; } .menu-side .mega-menu .col { padding: 0 15px; font-size: 13px; } .menu-side .mega-menu .icon-list li a:hover { background: none; } .menu-side:not(.menu-side-collapse) .dropdown>ul, .menu-side:not(.menu-side-collapse) .dropdown-submenu>ul { box-shadow: 4px 5px 5px rgba(0, 0, 0, 0.17); border-left: 1px solid #eaeaea; } .menu-side .slimScrollRail { visibility: hidden; } .menu-side-collapse .active .dropdown-submenu>a:after { transform: translateY(-50%) rotate(90deg); } .menu-side-collapse .mega-menu .tab-nav { display: block; } .menu-side-collapse .mega-menu .tab-nav li a { margin: 10px 0; } } .menu-side-collapse .col+.col>h5:first-child { margin-top: 30px; } .menu-side .bottom-area { position: absolute; bottom: 20px; padding: 20px 15px; width: 100%; text-align: center; } .menu-side-collapse .bottom-area { position: static; } .menu-side .bottom-area .lan-menu { display: flex; justify-content: center; padding: 15px 0; } .menu-side .bottom-area .lan-menu a { margin: 0 5px; } .menu-side .bottom-area .icon-links { margin: 10px 0; } .menu-side .bottom-area p { font-size: 12px; } /* # HEADERS =================================================================== ------------------------------------------------------------------- GLOBAL ------------------------------------------------------------------- */ .title { position: relative; margin-bottom: 50px; } .title>p { margin-top: 15px; } .row>div>.title:last-child { margin-bottom: 0; } body>header { position: relative; display: flex; align-items: center; height: 350px; overflow: hidden; } body>header>.container { position: relative; z-index: 5; } body>header h1 { font-size: 30px; font-weight: 600; margin: 0; } body>header h2 { margin: 20px 0 0 0; font-size: 18px; font-weight: 400; } body>header.align-center h2 { margin: 20px auto 0 auto; } .breadcrumb { list-style: none; display: flex; margin: 40px 0 0 0; padding: 0; } .breadcrumb li { list-style: none; } .breadcrumb li a { display: block; text-decoration: none; padding-right: 15px; margin-right: 15px; font-size: 14px; position: relative; } .breadcrumb li a:after { content: ""; position: absolute; width: 1px; height: 11px; margin-top: -5px; opacity: .6; top: 50%; right: 0; transform: rotate(25deg); } .breadcrumb li:last-child a { font-weight: 600; cursor: default; padding-right: 0; margin-right: 0; } .breadcrumb li:last-child a:after { display: none; } body>header.align-right .breadcrumb { left: 15px; right: auto; justify-content: flex-end; } body>header.align-center .breadcrumb { position: static; justify-content: center; margin-top: 20px; } .breadcrumb.align-center { justify-content: center; } .breadcrumb.align-right { justify-content: flex-end; } body>nav.menu-transparent+header { margin-top: 0 !important; } /* ------------------------------------------------------------------- IMAGE - HEADER ------------------------------------------------------------------- */ .header-image, .header-base { background-position: center center; background-size: cover; } /* ------------------------------------------------------------------- SLIDER - HEADER ------------------------------------------------------------------- */ .header-slider>.background-slider>div { position: absolute; height: 100%; width: 100%; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; } .header-slider>.background-slider>div { opacity: 0; background-size: cover; background-position: center center; transition: all .5s; } .header-slider>.background-slider>div.active { opacity: 1; } /* ------------------------------------------------------------------- VIDEO - HEADER ------------------------------------------------------------------- */ .header-video>video { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; z-index: 0; } /* ------------------------------------------------------------------- BASE - HEADER ------------------------------------------------------------------- */ .header-base { height: 200px; } .header-base .breadcrumb { position: absolute; right: 15px; top: 0; margin-top: 0; } /* # TYPOGRAPHY =================================================================== ------------------------------------------------------------------- SPACE ------------------------------------------------------------------- */ hr.space, hr.space-xs, hr.space-sm, hr.space-md, hr.space-lg { border: none; clear: both; margin: 0; } hr.space-xs { height: 15px; } hr.space-sm { height: 30px; } hr.space { height: 60px; } hr.space-md { height: 75px; } hr.space-lg { height: 100px; } span.space, span.space-xs, span.space-sm, span.space-md, span.space-lg { display: inline-block; } span.space-xs { width: 15px; } span.space-sm { width: 30px; } span.space { width: 60px; } span.space-md { width: 75px; } span.space-lg { width: 100px; } /* ------------------------------------------------------------------- TEXT ------------------------------------------------------------------- */ .text-xs { font-size: 12px !important; line-height: 18px; } .text-sm { font-size: 16px !important; line-height: 22px; } .text-md { font-size: 25px !important; line-height: 35px; } .text-lg { font-size: 50px !important; line-height: 70px; } /* ------------------------------------------------------------------- SEPARATOR ------------------------------------------------------------------- */ hr:not([class*=space]) { height: 1px; border: none; background: #dadada; margin: 30px 0; } /* ------------------------------------------------------------------- QUOTE ------------------------------------------------------------------- */ .quote { position: relative; padding: 30px 30px 30px 105px; margin: 0; border-radius: 3px; } .quote>p { margin: 0; } .quote.quote-double { padding: 30px 105px 30px 105px; } .quote:before, .quote.quote-double:after { content: "\65"; font-family: "Icons"; position: absolute; left: 30px; width: 50px; height: 50px; font-size: 45px; line-height: 55px; opacity: .2; text-transform: none; } .quote.quote-double:after { content: "\66"; left: auto; right: 30px; bottom: 30px; } .quote .quote-author { display: block; margin-top: 15px; font-weight: 600; } .quote-author:empty { display: none; } /* # COMPONENTS =================================================================== ------------------------------------------------------------------- BUTTONS - COMPONENT ------------------------------------------------------------------- */ .btn { color: #fff; border-radius: 3px; display: inline-block; text-decoration: none; border-style: solid; border-width: 1px; position: relative; cursor: pointer; outline: none; text-align: center; transition: all .5s; } .btn-xs { padding: 7px 20px; font-size: 13px; } .btn-sm { padding: 10px 30px; font-size: 15px; } .btn-lg { padding: 15px 50px; font-size: 20px; } .btn-border, body .btn-border { background: none; } .btn-circle { border-radius: 100px; } .btn-text { position: relative; display: inline-block; text-decoration: none; cursor: pointer; background: none; border: none; outline: none; transition: all .5s; } .btn-text.btn-icon i { position: static; margin-right: 10px; } .btn-icon.btn-xs:not(.btn-anima), .btn-icon.btn-xs.btn-anima:hover { padding-left: 40px; } .btn-icon.btn-sm:not(.btn-anima), .btn-icon.btn-sm.btn-anima:hover { padding-left: 55px; } .btn-icon.btn-lg:not(.btn-anima), .btn-icon.btn-lg.btn-anima:hover { padding-left: 85px; } .btn-icon i { position: absolute; left: 30px; top: 50%; transform: translateY(-50%); } .btn-icon.btn-lg:not(.btn-anima) i { left: 50px; } .btn-anima { overflow: hidden; } .btn-anima i { left: -50px; transition: all .5s; } .btn-icon.btn-xs.btn-anima:hover i, .btn-icon.btn-xs:not(.btn-anima) i { left: 20px; } .btn-icon.btn-sm.btn-anima:hover i { left: 30px; } .btn-icon.btn-lg.btn-anima:hover i, .btn-icon.btn-lg.btn-xs:not(.btn-anima) i { left: 50px; } .btn+.btn { margin-top: 15px; } .btn-video { position: relative; display: block; padding-top: 60px; text-decoration: none; } .btn-video:before { content: ""; position: absolute; width: 80px; height: 80px; border-radius: 50%; top: -14px; left: 50%; transform: translateX(-50%); margin-left: -43px; background: #FFF; z-index: 1; } .btn-video:after { content: "\62"; font-family: "Icons"; position: absolute; width: 50px; height: 50px; font-size: 45px; line-height: 55px; top: 0; left: 50%; margin-left: -24px; animation-iteration-count: infinite; z-index: 1; text-transform: none; } .img-box.btn-video { padding-top: 0; } .img-box.btn-video:before { top: 50%; margin-top: -43px; margin-left: -45px; height: 80px; border-radius: 50%; left: 50%; background: rgb(255, 255, 255); } .img-box.btn-video:after { top: 50%; margin-top: -30px; } /* ------------------------------------------------------------------- INPUTS - COMPONENT ------------------------------------------------------------------- */ .input-text, .input-select, .input-textarea { border-radius: 3px; border-style: solid; border-width: 1px; outline: none; width: 100%; padding: 10px; font-size: 14px; background: rgb(255, 255, 255); } .input-text-btn { display: flex; } .input-text-btn .input-text { border-top-right-radius: 0; border-bottom-right-radius: 0; border-right: none; margin: 0; } .input-text-btn .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; padding-left: 10px; padding-right: 10px; margin: 0; } /* ------------------------------------------------------------------- TEXT LIST - COMPONENT ------------------------------------------------------------------- */ .text-list, .text-list li { list-style: none; position: relative; padding: 0; margin: 0; } .text-list li { transition: all .5s; } .text-list-base li, .text-list-image li, .text-list-side li { margin-bottom: 30px; } .text-list-base li:last-child, .text-list-image li:last-child, .text-list-side li:last-child { margin-bottom: 0; } .text-list-base li>h3, .text-list-image .content>h3, .text-list-side h3 { margin: 0; font-size: 19px; } .text-list-base li>p, .text-list-image .content>p { margin: 5px 0 0 0; } .text-list-base li>div, .text-list-image .content>div { position: absolute; right: 0; top: 0; } .text-list-image li { display: flex; align-items: center; justify-content: space-between; } .text-list-image li .content { position: relative; width: 100%; padding-left: 30px; } .text-list-image li>img { position: relative; left: 0; width: 90px; height: 90px; border-radius: 50%; } .text-list-side li { display: flex; justify-content: space-between; } .text-list-side li h3 { min-width: 150px; } .text-list-side p { margin: 0 30px; } .text-list-bold li, .text-list-line li { display: flex; margin-bottom: 5px; } .text-list-bold p span, .text-list-line p span { padding-left: 15px; } .text-list-bold li p { margin: 0 0 0 15px; } .text-list-line li b { margin-right: 5px; white-space: nowrap; } .text-list-line label { text-transform: none; font-weight: normal; font-style: normal; display: inline; } .text-list-line li p { margin: 0 5px; white-space: nowrap; overflow: visible; } .text-list-line li { justify-content: space-between; height: 26.5px; } .text-list-line li hr { width: 100%; margin-top: 16px; border-top: 1px dotted; background: none; opacity: .8; } /* ------------------------------------------------------------------- ICON LIST - COMPONENT ------------------------------------------------------------------- */ .icon-list-horizontal { display: flex; } .icon-list-horizontal.icon-list li { margin-right: 10px; /*25px;*/ margin-bottom: 0; padding-left: 15px; /*25px;*/ position: relative; white-space: nowrap; overflow: hidden; } .icon-list p { margin: 0; display: inline; } .icon-list li>i { position: absolute; left: 0; top: 50%; transform: translateY(-50%); } .icon-list-horizontal.icon-list a { text-decoration: none; } ul.icon-list { list-style: none; padding: 0; margin: 0; } ul.icon-list li { position: relative; list-style: none; padding-left: 30px; margin-bottom: 10px; } ul.icon-list li:last-child { margin-bottom: 0; } .icon-list.icon-md li, .icon-list.icon-md span { padding-left: 40px; line-height: 35px; } .icon-list.icon-md li>i, .icon-list.icon-md span>i { font-size: 23px; } .icon-list.icon-lg li, .icon-list.icon-lg span { padding-left: 50px; line-height: 40px; } .icon-list.icon-lg li>i, .icon-list.icon-lg span>i { font-size: 30px; } .icon-list.icon-md.text-xs li { line-height: 20px; } .icon-list.icon-md.text-xs li>i { font-size: 15px; } .icon-circle li>i, .icon-line li>i, .icon-decimal li>i { display: none; } .icon-circle li:before, .icon-circle span:before, .icon-line li:before, .icon-line span:before { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; left: 0; top: 50%; transform: translateY(-50%); transition: all .5s; } .icon-circle li:hover:before, .icon-circle span:hover:before { transform: translateY(-50%) scale(.8); } .icon-circle.icon-md li:before, .icon-circle.icon-md span:before { width: 11px; height: 11px; } .icon-circle.icon-md li, .icon-circle.icon-md span { padding-left: 35px; } .icon-circle.icon-lg li:before, .icon-circle.icon-lg span:before { width: 16px; height: 16px; } .icon-circle.icon-lg li, .icon-circle.icon-lg span { padding-left: 40px; } .icon-line li:before, .icon-line span:before { border-radius: 3px; height: 2px; } .icon-line li:hover:before, .icon-line span:hover:before { transform: translateY(-50%) translateX(5px); } .icon-line.icon-md li:before, .icon-line.icon-md span:before { width: 15px; height: 3px; } .icon-line.icon-md li, .icon-line.icon-md span { padding-left: 35px; } .icon-line.icon-lg li:before, .icon-line.icon-lg span:before { width: 20px; height: 4px; } .icon-line.icon-lg li, .icon-line.icon-lg span { padding-left: 40px; } ul.icon-decimal { padding-left: 15px; } ul.icon-decimal, ul.icon-decimal li { list-style: decimal; } .icon-list-horizontal.icon-list:not(.icon-md):not(.icon-lg) span { padding-left: 33px; } ul.icon-list.list-right li, .icon-list-horizontal.icon-list.list-right span { padding-left: 0; padding-right: 30px; text-align: right; } ul.icon-list.list-right li i, .icon-list-horizontal.icon-list.list-right i { left: auto; right: 0; } ul.icon-list.list-right.icon-md li, .icon-list-horizontal.icon-list.list-right.icon-md span { padding-right: 40px; } ul.icon-list.list-right.icon-lg li, .icon-list-horizontal.icon-list.list-right.icon-lg span { padding-right: 50px; } .icon-list-horizontal.icon-list.list-right:not(.icon-md):not(.icon-lg) span { padding-left: 0; padding-right: 33px; } .icon-circle.list-right li:before, .icon-circle.list-right span:before, .icon-line.list-right li:before, .icon-line.list-right span:before { left: auto; right: 0; } /* ------------------------------------------------------------------- ICON LINK - COMPONENT ------------------------------------------------------------------- */ .icon-links { display: flex; } .icon-links.align-center { justify-content: center; } .icon-links.align-right { justify-content: flex-end; } .icon-links a { display: block; width: 30px; height: 30px; margin-right: 15px; position: relative; cursor: pointer; } .icon-links a i { left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); margin: 0; padding: 0; display: block; position: absolute; font-size: 18px; transition: all .5s; } .icon-links { display: flex; } .icon-links-grid a { border-style: solid; border-width: 1px; border-right: none; width: 50px; height: 40px; margin: 0; } .icon-links-grid a i { transition: all .1s; } .icon-links-grid a:hover i { color: #FFF; } .icon-links-grid a:first-child { border-bottom-left-radius: 3px; border-top-left-radius: 3px; } .icon-links-grid a:last-of-type { border-right-style: solid; border-right-width: 1px; border-bottom-right-radius: 3px; border-top-right-radius: 3px; } .icon-links-button a { width: 50px; height: 40px; border-radius: 3px; transition: all .5s; } .icon-links-button a i, .icon-links-button a:hover i { color: #FFF; } .icon-links-popup { position: relative; padding-left: 35px; } .icon-links-popup>i { display: block; position: absolute; width: 20px; height: 20px; left: 0; font-size: 16px; cursor: pointer; } .icon-links-popup>i:before { font-family: "Icons"; content: "\6d"; font-size: 20px; font-style: normal; font-weight: normal; text-transform: none; } .icon-links-popup>div { display: flex; position: relative; visibility: hidden; } .icon-links-popup>div>a { opacity: 0; transition: all .5s; } .icon-links-popup.active>div { visibility: visible; } .icon-links-popup.active>div>a { opacity: 1; } .icon-links.icon-lg i { font-size: 25px; } .icon-links.icon-lg a { margin-right: 25px; } .icon-links-grid.icon-lg a { margin-right: 0; width: 60px; height: 45px; } .icon-links-button.icon-lg a { width: 60px; height: 45px; } .icon-links-popup.icon-lg { padding-left: 45px; } .icon-links-popup.icon-lg>i { height: 25px; width: 25px; } .icon-links-popup.icon-lg>i:before { font-size: 25px; } .icon-links>a:last-child { margin-right: 0; } .icon-social a i { transform: translateX(-50%) translateY(calc(-50% + 2px)); } /* ------------------------------------------------------------------- SOCIAL LINK - COMPONENT ------------------------------------------------------------------- */ .social-colors.icon-links-button i, .social-colors.icon-links-grid i, .social-colors-hover.icon-links-button i, .social-colors-hover.icon-links-grid i { transition: none; } .social-colors.icon-links-button .facebook:not(:hover), .social-colors-hover.icon-links-button .facebook:hover, .social-colors.icon-links-grid .facebook:not(:hover), .social-colors-hover.icon-links-grid .facebook:hover { background-color: #3B5998; border-color: #3B5998; color: #FFF; } .social-colors.icon-links-button .twitter:not(:hover), .social-colors-hover.icon-links-button .twitter:hover, .social-colors.icon-links-grid .twitter:not(:hover), .social-colors-hover.icon-links-grid .twitter:hover { background-color: #3B8ACA; border-color: #3B8ACA; color: #FFF; } .social-colors.icon-links-button .pinterest:not(:hover), .social-colors-hover.icon-links-button .pinterest:hover, .social-colors.icon-links-grid .pinterest:not(:hover), .social-colors-hover.icon-links-grid .pinterest:hover { background-color: #B90B20; border-color: #B90B20; color: #FFF; } .social-colors.icon-links-button .linkedin:not(:hover), .social-colors-hover.icon-links-button .linkedin:hover, .social-colors.icon-links-grid .linkedin:not(:hover), .social-colors-hover.icon-links-grid .linkedin:hover { background-color: #0077B5; border-color: #0077B5; color: #FFF; } .social-colors.icon-links-button .youtube:not(:hover), .social-colors-hover.icon-links-button .youtube:hover, .social-colors.icon-links-grid .youtube:not(:hover), .social-colors-hover.icon-links-grid .youtube:hover { background-color: #cc181e; border-color: #cc181e; color: #FFF; } .social-colors.icon-links-button .instagram:not(:hover), .social-colors-hover.icon-links-button .instagram:hover, .social-colors.icon-links-grid .instagram:not(:hover), .social-colors-hover.icon-links-grid .instagram:hover { background-color: #464646; border-color: #464646; color: #FFF; } .social-colors:not(.icon-links-button):not(.icon-links-grid) .facebook:not(:hover) i, .social-colors-hover:not(.icon-links-button):not(.icon-links-grid) .facebook:hover i { color: #3B5998; } .social-colors:not(.icon-links-button):not(.icon-links-grid) .twitter:not(:hover) i, .social-colors-hover:not(.icon-links-button):not(.icon-links-grid) .twitter:hover i { color: #3B8ACA; } .social-colors:not(.icon-links-button):not(.icon-links-grid) .pinterest:not(:hover) i, .social-colors-hover:not(.icon-links-button):not(.icon-links-grid) .pinterest:hover i { color: #B90B20; } .social-colors:not(.icon-links-button):not(.icon-links-grid) .linkedin:not(:hover) i, .social-colors-hover:not(.icon-links-button):not(.icon-links-grid) .linkedin:hover i { color: #0077B5; } .social-colors:not(.icon-links-button):not(.icon-links-grid) .youtube:not(:hover) i, .social-colors-hover:not(.icon-links-button):not(.icon-links-grid) .youtube:hover i { color: #cc181e; } .social-colors:not(.icon-links-button):not(.icon-links-grid) .instagram:not(:hover) i, .social-colors-hover:not(.icon-links-button):not(.icon-links-grid) .instagram:hover i { color: #464646; } /* ------------------------------------------------------------------- ICON BOX - COMPONENT ------------------------------------------------------------------- */ .icon-box { position: relative; display: flex; } .icon-box i { font-size: 35px; display: block; text-align: left; } .icon-box h3 { font-size: 20px; } .icon-box p { margin: 0; } .icon-box-top { flex-direction: column; } .icon-box-top h3 { margin: 20px 0 10px 0; } .icon-box-left { flex-direction: row; align-items: center; } .icon-box-left i { padding-right: 30px; } .icon-box-left h3 { margin: 0 0 5px 0; } .icon-box-right { flex-direction: row-reverse; align-items: center; text-align: right; } .icon-box-right i { padding-left: 30px; } .icon-box-right h3 { margin: 0 0 5px 0; } .icon-box-top.align-center i { margin-left: auto; margin-right: auto; text-align: center; } .icon-box-top.align-right i { margin-left: auto; margin-right: 0; text-align: right; } /* ------------------------------------------------------------------- MAP - COMPONENTS ------------------------------------------------------------------- */ .google-map { height: 350px; } /* ------------------------------------------------------------------- STEPS - COMPONENTS ------------------------------------------------------------------- */ .box-steps { display: grid; grid-gap: 30px; grid-template-columns: 1fr 1fr 1fr; } .box-steps>div { grid-template-columns: 1fr 1fr 1fr; } .step-item { position: relative; } .step-item>.content { position: relative; padding-top: 60px; } .step-item>.content>*:first-child { margin-top: 0; } .step-item>span { position: absolute; width: 30px; height: 30px; line-height: 30px; border-style: solid; border-width: 1px; border-radius: 50%; text-align: center; font-size: 14px; display: block; font-weight: 600; background: #FFF; } .step-item:before { content: ""; position: absolute; width: 100%; height: 1px; top: 14px; } .box-steps-vertical { display: block; } .box-steps-vertical>.step-item:not(:last-child) { padding-bottom: 30px; } .box-steps-vertical>.step-item>.content { padding: 0 0 0 60px; } .box-steps-vertical>.step-item>span { margin-top: -2px; } .box-steps-vertical>.step-item:before { width: 1px; height: 100%; top: 0; left: 14px; } /* ------------------------------------------------------------------- PROGRESS BAR - COMPONENTS ------------------------------------------------------------------- */ .progress-bar>h4, .progress-circle>h4 { font-size: 16px; margin-bottom: 15px; } .progress-bar>div, .progress-bar>div>div { width: 100%; height: 6px; border-radius: 3px; } .progress-bar>div>div { width: 0%; position: relative; transition: all 1s linear; } .progress-bar>div span { position: absolute; padding: 0 8px; font-size: 13px; right: 0; top: -35px; transform: translateX(50%); margin-right: 1px; border-radius: 3px; color: #FFF; white-space: nowrap; opacity: 0; transition: all 1s; } .progress-bar>div>[data-trigger="null"] span { opacity: 1; } .progress-circle { position: relative; margin: auto; } .progress-circle .content { position: absolute; text-align: center; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); width: 100%; padding: 0 30px; } .progress-circle h4 { margin: 0 0 5px 0; } .progress-circle p { margin: 0; font-size: 14px; } .progress-circle .counter { margin: 0; font-size: 25px; } .progress-circle p+.counter, .progress-circle h4+.counter { margin: 15px 0 0 0; } /* ------------------------------------------------------------------- COUNTER - COMPONENTS ------------------------------------------------------------------- */ .counter h3 { font-size: 18px; margin: 0 0 10px 0; } .counter-horizontal i { margin-right: 10px; } .counter-horizontal.counter-icon { display: flex; align-items: center; } .counter-horizontal.counter-icon>i { font-size: 30px; display: block; text-align: left; padding-right: 15px; } .counter-vertical i { margin-bottom: 15px; display: inline-block; } /* ------------------------------------------------------------------- COUNTDOWN - COMPONENTS ------------------------------------------------------------------- */ .countdown h3 { font-size: 18px; margin: 0; } .countdown p { margin: 0; } .countdown [data-time] { display: flex; } .countdown [data-time]>div { padding-right: 15px; } .countdown h3 { margin-bottom: 15px; } .countdown p { margin-top: 10px; } .countdown-horizontal [data-time]>div>span:first-child { padding-right: 5px; } .countdown-vertical [data-time]>div>span { display: block; } /* ------------------------------------------------------------------- TIMELINE - COMPONENTS ------------------------------------------------------------------- */ .timeline>div { position: relative; margin-bottom: 30px; transition: all .5s; } .timeline>div:hover { transform: translateX(5px) } .timeline .badge { position: absolute; left: calc(70% + 60px); } .timeline .badge p { font-weight: 600; font-size: 25px; margin: 30px 0 15px 0; } .timeline .badge span { display: block; font-size: 14px; } .timeline .panel { width: 70%; padding: 30px 60px; border-radius: 3px; } .timeline>div:last-child { padding-bottom: 0; margin-bottom: 0; } .timeline>div:last-child .panel { margin-bottom: 0; } .timeline>div.inverted .badge { left: auto; right: calc(70% + 60px); } .timeline>div.inverted .panel { margin-left: 30%; } .timeline>div.inverted:hover { transform: translateX(-15px) } /* ------------------------------------------------------------------- LIST NAVIGATION - COMPONENT ------------------------------------------------------------------- */ .list-nav { display: flex; margin-top: 30px; } .list-nav a { position: relative; text-decoration: none; transition: all .5s; } .list-nav a.list-archive { width: 30px; height: 30px; margin: 0 30px; font-size: 25px; text-align: center; } .list-nav a.list-archive:before, .list-nav a:first-child:before, .list-nav a:last-child:before { content: "\64"; font-family: "Icons"; text-transform: none; font-weight: 400; } .list-nav a:first-child:before, .list-nav a:last-child:before { position: absolute; font-size: 20px; } .list-nav a:first-child { padding-left: 40px; } .list-nav a:last-child { padding-right: 40px; } .list-nav a:first-child:before { content: "\68"; left: 0; } .list-nav a:last-child:before { content: "\67"; left: auto; right: 0; } .list-nav.align-right { justify-content: flex-end; } .list-nav.align-center { justify-content: center; } .list-nav a:not(.list-archive):empty { display: none; } div.list-nav a:empty+a.list-archive { margin-left: 0; } /* ------------------------------------------------------------------- TAGS - COMPONENT ------------------------------------------------------------------- */ .list-tags { margin: -5px; } .list-tags a { display: inline-block; padding: 3px 12px; border-radius: 3px; transition: all .5s; margin: 5px; font-size: 13px; cursor: pointer; } /* ------------------------------------------------------------------- TABLE - COMPONENT ------------------------------------------------------------------- */ .table { width: 100%; border-spacing: 0; table-layout: fixed; } .table th { font-weight: 600; } .table th, .table td { text-align: left; padding: 5px 10px; } .table.align-center th, .table.align-center td { text-align: center; } .table.align-right th, .table.align-right td { text-align: center; } .table:not(.table-border):not(.table-full-border) { margin: -5px -10px; width: calc(100% + 20px); } .table-border td, .table-border th, .table-full-border td, .table-full-border th { border-style: solid; border-width: 1px; border-right: none; border-top: none; padding: 10px; } .table-border tbody tr td:first-child, .table-border thead tr:first-child th:first-child { border-left: none; padding-left: 0; } .table-border tbody tr:last-child td { border-bottom: none; padding-bottom: 0; } .table-full-border { border-radius: 3px; border-style: solid; border-width: 1px; } .table-full-border th { border-top: none; } .table-full-border th:first-child, .table-full-border td:first-child { border-left: none; } .table-full-border td:last-child { border-right: none; } .table-full-border tr:last-child td { border-bottom: none; } .table-grid:not(.table-border):not(.table-full-border) { margin: -30px; width: calc(100% + 60px); } .table-grid td, .table-grid.table-border tbody tr td:first-child, .table-grid.table-border tbody tr:last-child td { padding: 30px; } .table-grid td>img { max-width: 100%; display: block; } .table-grid.no-padding-y.table-border tbody tr td { padding-top: 0; padding-bottom: 0; vertical-align: top; } .table-grid.table-border.align-left tbody tr td:first-child { padding-left: 0; } .table-columns { display: block; } .table-columns tbody { width: 100%; display: block; } .table-columns>tbody>tr { display: flex; justify-content: space-between; } .table-columns td { display: block; padding: 0 30px; width: 100%; } .table.table-columns:not(.table-border):not(.table-full-border) { margin: 0 -30px; width: calc(100% + 60px); } /* ------------------------------------------------------------------- IMAGE BOX - COMPONENT ------------------------------------------------------------------- */ .img-box { position: relative; overflow: hidden; display: block; border-radius: 3px; transition: all .5s; } .img-box:before { content: ""; opacity: 0; left: 0; right: 0; top: 0; bottom: 0; height: 100%; background: #000; position: absolute; border-radius: 4px; transition: all .5s; } .img-box:hover:before { transition: all 0s; } .img-box:hover, .light .img-box:hover, .img-box:hover:before { opacity: 1; } .img-box img { max-width: 100%; display: block; position: relative; border-radius: 3px; transition: all .5s; } .img-box:hover img { opacity: .8; } .img-box-caption span { position: absolute; bottom: 0; width: 100%; padding: 5px 15px; color: #FFF; font-size: 12px; } .img-box>i { position: absolute; width: 30px; height: 30px; top: 50%; left: 50%; margin-top: -15px; margin-left: -15px; text-align: center; line-height: 30px; color: #fff; text-decoration: none; font-size: 25px; z-index: 5; } img { max-width: 100%; display: inline-block; } .img-grayscale { filter: grayscale(100%); } .img-png:hover, .img-png:before { background: none; } .img-png:hover img { margin: auto !important; height: auto !important; width: auto !important; } /* # CONTAINERS =================================================================== ------------------------------------------------------------------- TABS - CONTAINER ------------------------------------------------------------------- */ .tab-box>.panel:not(.active) { display: none; } .tab-nav { padding: 0; margin: 0 0 30px 0; list-style: none; display: flex; } .tab-nav li { list-style: none; } .tab-center>.tab-nav { justify-content: center; } .tab-right>.tab-nav { justify-content: flex-end; } .tab-left>.tab-nav { justify-content: flex-start; } .tab-justify>.tab-nav { justify-content: space-between; } .tab-justify>.tab-nav li { width: 100%; } .tab-inverse>.tab-nav { margin: 30px 0 0 0; } .tab-nav li a { text-decoration: none; display: block; padding: 10px 15px; border-radius: 3px; border-style: solid; border-width: 1px; margin: 0 15px; font-size: 15px; text-align: center; position: relative; transition: all .5s; } .tab-nav li:first-child a { margin-left: 0; } .tab-nav li:last-child a { margin-right: 0; } .tab-icon>.tab-nav a { padding-left: 45px; } .tab-icon>.tab-nav a i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); } .tab-vertical { display: flex; } .tab-vertical>.tab-nav { display: block; padding: 0 30px 0 0; flex: 0 0 25%; max-width: 25%; } .tab-vertical>.tab-nav li a { margin: 15px 0; } .tab-vertical li:first-child a { margin-top: 0; } .tab-vertical li:last-child a { margin-bottom: 0; } .tab-vertical>.panel { flex: 0 0 75%; max-width: 75%; } .tab-vertical.tab-inverse>.tab-nav { padding: 0 0 0 30px; margin: 0; } .tab-vertical.tab-icon>.tab-nav li a { text-align: left; } .tab-vertical.tab-md-2>.tab-nav { flex: 0 0 16.666667%; max-width: 16.666667%; } .tab-vertical.tab-md-2>.panel { flex: 0 0 83.333333%; max-width: 83.333333%; } .tab-vertical.tab-md-4>.tab-nav { flex: 0 0 33.333333%; max-width: 33.333333%; } .tab-vertical.tab-md-4>.panel { flex: 0 0 66.666666%; max-width: 66.666666%; } .tab-nav li.active a, .tab-nav li:hover a { color: #FFF; } .tab-nav.align-right { justify-content: flex-end; } .tab-nav.align-center { justify-content: center; } /* ------------------------------------------------------------------- GRID LIST AND MOSONRY LIST - CONTAINER ------------------------------------------------------------------- */ .maso-item { padding: 15px; position: relative; } .maso-box { margin: -15px; display: flex; flex-wrap: wrap; } .maso-list>.menu-inner { margin-bottom: 30px; } .maso-list.no-gap .maso-box { margin: 0; } .maso-list.no-gap .maso-item { padding: 0; } .isotope-hidden { visibility: hidden !important; transform: scale(0); max-height: 0; overflow: hidden; } .grid-item { padding: 0; margin: 0; min-width: 0; position: relative; } .grid-item img, .maso-item img { display: block; } .grid-itemnews { padding: 0; margin: 0; min-width: 0; position: relative; } .grid-itemnews img, .maso-item img { display: block; } .grid-box { display: grid; grid-gap: 30px; } .grid-boxnews { display: grid; grid-gap: 30px; } .no-gap>div { grid-gap: 0; } .maso-order { width: 17px; cursor: pointer; } .maso-order:before { font-family: "Icons"; content: "\68"; position: absolute; top: 50%; left: 0; transition: all .5s; transform: translateY(-50%) rotate(-90deg); text-transform: none; } .maso-order[data-sort=desc]:before { transform: translateY(-50%) rotate(90deg); } .maso-layout .maso-item:nth-child(3n+0) .img-box { height: 550px; } .maso-layout .maso-item:nth-child(2n+0) .img-box { height: 350px; } .maso-layout .maso-item:nth-child(4n+0) .img-box { height: 250px; } .maso-layout .maso-item:nth-child(1) .img-box { height: 450px; } /* ------------------------------------------------------------------- PAGINATION AND LOAD MORE - CONTAINER ------------------------------------------------------------------- */ .list-pagination { padding-top: 30px; } .pagination { position: relative; list-style: none; display: flex; align-items: center; margin: 0 -15px 0 -15px; padding: 0; } .pagination li { list-style: none; } .pagination li a { text-decoration: none; padding: 0 15px; position: relative; transition: all .5s; } .pagination li.disabled a { opacity: .5; cursor: default; } .pagination li.page a { font-weight: 600; width: 35px; height: 35px; line-height: 35px; border-style: solid; border-width: 1px; border-radius: 50%; text-align: center; display: block; padding: 0; margin: 0 5px; } .pagination li.page:hover a, .pagination li.page.active a { color: #FFF; } .pagination .last, .pagination .first { display: none; } .pagination .prev a { margin-right: 15px; padding-left: 45px; } .pagination .next a { margin-left: 15px; padding-right: 45px; } .pagination .prev a:before, .pagination .next a:before { font-family: "Icons"; position: absolute; top: 50%; transform: translateY(-50%); text-transform: none; display: block; } .pagination .prev a:before { content: "\68"; left: 15px; } .pagination .next a:before { content: "\67"; right: 15px; } .pagination-lg { margin-top: 15px; } .pagination-lg li { font-size: 20px; } .pagination-lg li.page a { width: 45px; height: 45px; line-height: 45px; margin: 0 10px; } .pagination.align-center { justify-content: center; } .pagination.align-right { justify-content: flex-end; } /* ------------------------------------------------------------------- SCROLL BOX - CONTAINER ------------------------------------------------------------------- */ .scroll-box { padding-right: 15px; } .scroll-box>* { margin-top: 0; } .scroll-box:after { content: ""; position: absolute; height: 50px; bottom: 0; left: 0; right: 0; width: 100%; background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 100%); } .scroll-pos-bottom.scroll-box:after { display: none; } /* ------------------------------------------------------------------- COLLAPSE BOX - CONTAINER ------------------------------------------------------------------- */ .collapse-box>.content * { margin-top: 0; } .collapse-box>.content { overflow: hidden; display: none; position: relative; } .collapse-box>.content:after { content: ""; position: absolute; height: 50px; bottom: 0; left: 0; right: 0; width: 100%; background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 100%); transition: opacity .5s; } .collapse-box.open>.content:after { opacity: 0; } .collapse-button>a { position: relative; margin-top: 10px; padding-left: 30px; cursor: pointer; display: inline-block; } .collapse-button>a:before { font-family: "Icons"; content: "\68"; position: absolute; top: 50%; left: 0; transition: all .5s; transform: translateY(-50%) rotate(-90deg); text-transform: none; } .collapse-box.open .collapse-button>a:before { transform: translateY(-50%) rotate(90deg); } /* ------------------------------------------------------------------- ACCORDION LIST - CONTAINER ------------------------------------------------------------------- */ .accordion-list { list-style: none; padding: 0; margin: 0; } .accordion-list>li { list-style: none; padding: 0; margin: 0; border-bottom-style: solid; border-bottom-width: 1px; } .accordion-list>li:first-child { border-top-style: solid; border-top-width: 1px; } .accordion-list>li.active { padding: 0 0 15px 0; } .accordion-list>li>a { display: block; text-decoration: none; padding: 10px 0 10px 25px; position: relative; transition: all .5s; } .accordion-list>li.active>a:before { transform: rotate(90deg); } .accordion-list>li>a:before { content: "\67"; font-family: "Icons"; position: absolute; left: -5px; top: 50%; margin-top: -9px; width: 20px; height: 20px; font-size: 20px; line-height: 20px; transition: all .5s; opacity: .6; } .accordion-list>li>a:hover:before { opacity: 1; } .accordion-list>li>.content { height: 0; display: none; overflow: hidden; } .accordion-list>li>.content>* { margin-top: 0; margin-bottom: 0; } /* ------------------------------------------------------------------- ALBUM - CONTAINER ------------------------------------------------------------------- */ .album-list { display: grid; grid-gap: 30px; grid-template-columns: 1fr 1fr 1fr; } .album-box { position: relative; } .album-box .caption { position: absolute; bottom: 30px; left: 50px; cursor: pointer; } .album-box .caption h3 { margin: 0; } .album-box:hover .img-box:before { opacity: 1; transition: all 0s; } .album-box:hover .img-box img { opacity: .8; } .album-item:not(.active) { display: none; } .album-item { opacity: 0; } .cnt-album-box, .album.active .album-list { display: none; } .album.active .cnt-album-box { display: block; } .album-title { margin-bottom: 30px; } .album-title>a { display: inline-block; position: relative; margin-left: 30px; padding-left: 30px; transition: all .5s; cursor: pointer; } .album-title>a:before { font-family: "Icons"; content: "\68"; position: absolute; top: 50%; left: 0; transform: translateY(-50%); text-transform: none; } /* ------------------------------------------------------------------- COLUMNS - CONTAINER ------------------------------------------------------------------- */ [data-columns='1']>div, .box-steps[data-columns='1'] { grid-template-columns: 1fr; } [data-columns='2']>div, .box-steps[data-columns='2'] { grid-template-columns: 1fr 1fr; } [data-columns='3']>div, .box-steps[data-columns='3'] { grid-template-columns: 1fr 1fr 1fr; } [data-columns='4']>div, .box-steps[data-columns='4'] { grid-template-columns: 1fr 1fr 1fr 1fr; } [data-columns='5']>div, .box-steps[data-columns='5'] { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; } [data-columns='6']>div, .box-steps[data-columns='6'] { grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; } [data-columns='1'] .maso-item { flex: 0 0 100%; max-width: 100%; } [data-columns='2'] .maso-item { flex: 0 0 50%; max-width: 50%; } [data-columns='3'] .maso-item { flex: 0 0 33.333333%; max-width: 33.333333%; } [data-columns='4'] .maso-item { flex: 0 0 25%; max-width: 25%; } [data-columns='5'] .maso-item { flex: 0 0 20%; max-width: 20%; } [data-columns='6'] .maso-item { flex: 0 0 16.666666%; max-width: 16.666666%; } .fixed-area { z-index: 95; } /* # FOOTER =================================================================== */ footer>.container { padding-top: 80px; padding-bottom: 80px; } .footer-bar { border-top-style: solid; border-top-width: 1px; } .footer-bar>.container { padding-top: 15px; padding-bottom: 15px; font-size: 12px; letter-spacing: .5px; } .footer-bar>.container>span:last-child { float: right; } .footer-wide .container { max-width: 100%; } .footer-parallax { position: fixed; bottom: 0; left: 0; right: 0; z-index: -121; } .footer-parallax-cnt { position: relative; z-index: 1; } footer a { text-decoration: none; } i.scroll-top-btn { position: fixed; bottom: 15px; right: 15px; width: 35px; height: 35px; display: none; box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17); border-radius: 50%; background: #FFF; text-align: center; cursor: pointer; z-index: 999995; transition: all .5s; } i.scroll-top-btn:hover { margin-bottom: 5px; } i.scroll-top-btn.show { display: block; } i.scroll-top-btn:before { font-family: "Icons"; font-style: normal; font-weight: normal; transform: rotate(90deg); content: "\68"; position: absolute; left: 0; right: 0.5px; font-size: 22px; line-height: 32px; text-transform: none; } /* # ANIMATIONS =================================================================== */ [data-hidden] .anima, [data-anima]:not([data-trigger=hover]) .anima { opacity: 0; } @keyframes ken-burn-in { 0% { transform: scale(1.2); } 100% { transform: scale(1); } } .ken-burn-in>img { animation: ken-burn-in 13s; transform-origin: bottom left; transform: scale(1.2); } .ken-burn-center>img { animation: ken-burn-in 10s; transform: scale(1.2); } .ken-burn-out>img { transform-origin: bottom left; transform: scale(1.1) !important; transition: transform 10s; } @keyframes rotate { 0% { transform: rotate(0); } 100% { transform: rotate(20deg); } } @keyframes scale { 0% { transform: scale(1); } 100% { transform: scale(1.2); } } .rotate { animation: rotate .5s; transform: rotate(20deg); opacity: 1; } @keyframes scale-rotate { 0% { transform: scale(1) rotate(0); } 100% { transform: scale(1.2) rotate(4deg); } } @keyframes fadein { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes fadeleft { 0% { opacity: 0; transform: translateX(-100px); } 100% { opacity: 1; transform: translateX(0); } } @keyframes faderight { 0% { opacity: 0; transform: translateX(100px); } 100% { opacity: 1; transform: translateX(0); } } @keyframes fadetop { 0% { opacity: 0; transform: translateY(-100px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes fadebottom { 0% { opacity: 0; transform: translateY(100px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes pulse { from { transform: scale(1); transform-origin: center center; animation-timing-function: ease-out; } 10% { transform: scale(0.91); animation-timing-function: ease-in; } 17% { transform: scale(0.98); animation-timing-function: ease-out; } 33% { transform: scale(0.87); animation-timing-function: ease-in; } 45% { transform: scale(1); animation-timing-function: ease-out; } } @keyframes pulse-horizontal { 16.65% { transform: translateX(8px); } 33.3% { opacity: 1; transform: translateX(-6px); } 49.95% { transform: translateX(4px); } 66.6% { transform: translateX(-2px); } 83.25% { transform: translateX(1px); } 100% { transform: translateX(0); } } @keyframes show-scale { 0% { opacity: 0; transform: scale(0); } 100% { opacity: 1; transform: scale(1); } } @keyframes ping { 0% { transform: scale(0.2); opacity: 0.8; } 80% { transform: scale(1.2); opacity: 0; } 100% { transform: scale(2.2); opacity: 0; } } .scale, .scale-rotate, .fade-in, .fade-left, .fade-right, .fade-top, .fade-bottom, .show-scale, .pulse, .pulse-horizontal { opacity: 1 !important; } .img-scale:hover img, .img-scale-rotate img, img-pulse img, .img-pulse-horizontal img { transition: all .5s; } .scale, .img-scale:hover img { animation: scale .5s; transform: scale(1.2); } i.scale { transform: scale(1.2); } .scale-rotate, .img-scale-rotate:hover img { transform: scale(1.2) rotate(4deg); animation: scale-rotate .5s; } .fade-in { animation: fadein .5s; } .fade-left { animation: fadeleft .5s; } .fade-right { animation: faderight .5s; } .fade-top { animation: fadetop .5s; } .fade-bottom { animation: fadebottom .5s; } .show-scale { animation: show-scale .5s; } .pulse, .img-pulse:hover img, .btn-video:after { animation-name: pulse; animation-duration: 1.5s; animation-timing-function: ease-in-out; } .pulse-horizontal, .img-pulse-horizontal:hover img { animation-name: pulse-horizontal; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } .ping, .btn-video:before { animation: ping 0.8s ease-in infinite both; } /* # RESPONSIVE =================================================================== ------------------------------------------------------------------- Large devices (desktops, less than 1200px) ------------------------------------------------------------------- */ @media (max-width: 1199.98px) { .hidden-lg { display: none !important; } [data-columns-lg='1']>div { grid-template-columns: 1fr; } [data-columns-lg='2']>div { grid-template-columns: 1fr 1fr; } [data-columns-lg='3']>div { grid-template-columns: 1fr 1fr 1fr; } [data-columns-lg='4']>div { grid-template-columns: 1fr 1fr 1fr 1fr; } [data-columns-lg='1'] .maso-item { flex: 0 0 100%; max-width: 100%; } [data-columns-lg='2'] .maso-item { flex: 0 0 50%; max-width: 50%; } [data-columns-lg='3'] .maso-item { flex: 0 0 33.333333%; max-width: 33.333333%; } [data-columns-lg='4'] .maso-item { flex: 0 0 25%; max-width: 25%; } [data-columns-lg='5'] .maso-item { flex: 0 0 20%; max-width: 20%; } [data-columns-lg='6'] .maso-item { flex: 0 0 16.666666%; max-width: 16.666666%; } } /* ------------------------------------------------------------------- Medium devices (tablets, less than 992px) ------------------------------------------------------------------- */ @media (max-width: 991.98px) { /* ------------------------------------------------------------------- Layout ------------------------------------------------------------------- */ [class*=col-lg-]+[class*=col-lg-] { margin-top: 30px; } .col-md-6+.col-md-6+.col-md-6 { margin-top: 30px; } .col-md-6+.col-md-6, .col-md-4+.col-md-4 { margin-top: 0; } .row.justify-content-around { margin-right: -30px; margin-left: -30px; } /* ------------------------------------------------------------------- Responsive classes ------------------------------------------------------------------- */ .no-margin-md { margin: 0 !important; } [class*=col-lg-]+[class*=col-lg-]:not( [class*=col-md-]).no-margin-md, .full-width-md+.full-width-md { margin-top: 15px !important; } .full-width-md { width: 100% !important; } .hidden-md { display: none !important; } .align-left-md { text-align: left; } .align-right-md { text-align: right; } .align-center-md { text-align: center; } .icon-links.align-center-md, .list-nav.align-center-md { justify-content: center; } .icon-links.align-left-md, .list-nav.align-left-md { justify-content: flex-start; } /* ------------------------------------------------------------------- Components ------------------------------------------------------------------- */ .form-box [class*=col-lg-]+[class*=col-lg-] { margin-top: 0 !important; } form.form-inline .btn { margin-left: 0; width: 100%; } .menu-inner:not(.menu-inner-vertical) { overflow: hidden; } .menu-inner:not(.menu-inner-vertical)>ul { height: 0; display: block; } .menu-inner.active>ul { height: auto; } .menu-inner:not(.menu-inner-vertical)>div { display: block; } .menu-inner:not(.menu-inner-vertical)>ul>li:not(:last-child) { margin-right: 0; } .menu-inner:not(.menu-inner-vertical) .dropdown ul { border: none; } .menu-inner:not(.menu-inner-vertical) .dropdown-submenu a:after { transform: translateY(-50%) rotate(90deg); right: 0; } .menu-inner .menu-btn { z-index: 1; } .table-6-md td, .table-6-md th { display: block; border-top: none; border-bottom: none; } .table-6-md tr { display: grid; grid-template-columns: 1fr 1fr; } .table-6-md td:nth-child(2n+1), .table-6-md.table-grid.table-border tbody td:nth-child(2n+1) { border-left: none; } .table-6-md.align-left td:nth-child(2n+1), .table-6-md.align-left.table-grid.table-border tbody td:nth-child(2n+1) { padding-left: 0; } /* ------------------------------------------------------------------- Containers ------------------------------------------------------------------- */ [data-columns-md='1']>div { grid-template-columns: 1fr; } [data-columns-md='2']>div { grid-template-columns: 1fr 1fr; } [data-columns-md='3']>div { grid-template-columns: 1fr 1fr 1fr; } [data-columns-md='4']>div { grid-template-columns: 1fr 1fr 1fr 1fr; } [data-columns-md='1'] .maso-item { flex: 0 0 100%; max-width: 100%; } [data-columns-md='2'] .maso-item { flex: 0 0 50%; max-width: 50%; } [data-columns-md='3'] .maso-item { flex: 0 0 33.333333%; max-width: 33.333333%; } [data-columns-md='4'] .maso-item { flex: 0 0 25%; max-width: 25%; } [data-columns-md='5'] .maso-item { flex: 0 0 20%; max-width: 20%; } [data-columns-md='6'] .maso-item { flex: 0 0 16.666666%; max-width: 16.666666%; } .scroll-box.disable-md:after { display: none; } /* ------------------------------------------------------------------- Sections ------------------------------------------------------------------- */ .section-map>.container { max-width: 360px; } /* ------------------------------------------------------------------- Navigation ------------------------------------------------------------------- */ body>nav { height: 50px; } body>nav .menu-brand { max-width: calc(100% - 60px); } body>nav .menu-brand>a { display: flex; align-items: center; } body>nav>.container, body>.menu-mini>.container { max-width: 100%; } .menu-btn { display: block; z-index: 9999; } .dropdown-submenu>a:after, .menu-side:not(.menu-side-collapse) li>a:after { transform: translateY(-50%) rotate(90deg); } .menu-cnt>ul>li>a, .dropdown>ul>li>a, .dropdown-submenu>ul>li>a { padding: 0 30px; } .menu-cnt { height: 0; overflow: hidden; position: absolute; top: 100%; background: #FFF; left: 0; width: 100%; transition: height .5s; display: block; } nav.light .menu-cnt a { color: rgb(68, 68, 68) !important; } nav.align-right .menu-cnt { display: block; } nav.active .menu-cnt { box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.08); z-index: 9995; } body>nav.menu-fixed .menu-cnt { overflow-y: scroll; } .menu-cnt>ul, .menu-cnt>.menu-right { float: none; display: block; width: 100%; height: auto; } .menu-cnt>ul { margin: 0; } .menu-cnt>.menu-right { padding: 15px 0 0 0; margin: 0; height: auto; } .search-bar input[type=text] { width: 100%; } .search-box-menu { border-style: solid; border-width: 1px; border-radius: 3px; } .search-box-menu>input[type=text] { display: block; position: static; box-shadow: none; height: 25px; padding: 5px; } .search-box-menu>i { display: none; } .menu-right>* { margin: 30px; } .shop-menu-cnt>i { position: relative; text-align: left; } .shop-menu-cnt .cart-count { right: 15px; } .shop-menu-cnt .shop-menu { position: static; transform: none; margin: 0 -15px; box-shadow: none; width: auto; } .shop-menu-cnt:not(.active) .shop-menu, .dropdown:not(.active)>ul, .dropdown:hover>ul, .dropdown:hover .mega-menu, .mega-dropdown:hover .mega-menu { display: none; } .shop-menu-cnt.active .shop-menu, .dropdown.active>ul, .dropdown.active>ul, .dropdown.active .mega-menu, .dropdown-submenu>ul, .mega-dropdown.active .mega-menu { display: block; } .menu-right>.lan-menu { margin: 15px; } .lan-menu a { text-align: left; } .dropdown ul:not(.icon-list), .dropdown.icon-list>ul, .dropdown-submenu>ul, .mega-dropdown .mega-menu, .dropdown .mega-menu { position: static; box-shadow: none; } .menu-big-box { padding-bottom: 0; } .menu-big-box .menu-box { height: auto; display: block; float: left; width: calc(100% + 30px); position: static; margin: 0 -15px 0 -15px; } .menu-big-box.active .menu-box { display: none; } .menu-big-box.menu-fixed.scroll-menu .menu-box { display: none; } body>nav.menu-side { padding: 0 15px; } .menu-side .bottom-area { display: none; position: fixed; background: #FFF; left: 0; bottom: 0; right: 0; padding: 0 15px 15px; } .menu-side.active .bottom-area { display: block; } .menu-side:not(.menu-side-collapse) li>a:after { transform: translateY(-50%) rotate(90deg); } .menu-mini .lan-menu li ul { top: 100%; position: absolute; } .mega-menu .col>h5:first-child { margin-top: 30px; } .mega-menu .col:first-child>h5:first-child { margin-top: 0; } .mega-menu .tab-box>.panel.active { display: block; } /* ------------------------------------------------------------------- Footer ------------------------------------------------------------------- */ i.scroll-top-btn { display: block; } .footer-bar>.container>span:last-child { float: none; } } /* ------------------------------------------------------------------- Small devices (landscape phones, less than 768px) ------------------------------------------------------------------- */ @media (max-width: 767.98px) { /* ------------------------------------------------------------------- Layout ------------------------------------------------------------------- */ [class*=col-]:not([class*=col-sm])+[class*=col-]:not([class*=col-sm]) { margin-top: 30px; } /* ------------------------------------------------------------------- Responsive classes ------------------------------------------------------------------- */ .no-margin-sm { margin: 0 !important; } [class*=col-lg-]+[class*=col-lg-].no-margin-sm, .full-width-sm+.full-width-sm { margin-top: 15px !important; } .full-width-sm { width: 100% !important; } .hidden-sm { display: none !important; } .align-left-sm { text-align: left; } .align-right-sm { text-align: right; } .align-center-sm { text-align: center; } /* ------------------------------------------------------------------- Components ------------------------------------------------------------------- */ .table-full-sm tr { display: block; } .table-full-sm { margin-top: -15px; margin-bottom: -15px; } .table-full-sm td, .table-full-sm th { width: 100%; border-right: none; border-left: none; display: block; padding: 15px 0 !important; } .table-border.table-full-sm tbody tr:last-child td:not(:last-child) { border-bottom-style: solid; border-bottom-width: 1px; } .btn:not(.full-width)+.btn.full-width-sm { margin-left: 0; } /* ------------------------------------------------------------------- Containers ------------------------------------------------------------------- */ [data-columns-sm='1']>div { grid-template-columns: 1fr; } [data-columns-sm='2']>div { grid-template-columns: 1fr 1fr; } [data-columns-sm='3']>div { grid-template-columns: 1fr 1fr 1fr; } [data-columns-sm='4']>div { grid-template-columns: 1fr 1fr 1fr 1fr; } [data-columns-sm='1'] .maso-item { flex: 0 0 100%; max-width: 100%; } [data-columns-sm='2'] .maso-item { flex: 0 0 50%; max-width: 50%; } [data-columns-sm='3'] .maso-item { flex: 0 0 33.333333%; max-width: 33.333333%; } [data-columns-sm='4'] .maso-item { flex: 0 0 25%; max-width: 25%; } [data-columns-sm='5'] .maso-item { flex: 0 0 20%; max-width: 20%; } [data-columns-sm='6'] .maso-item { flex: 0 0 16.666666%; max-width: 16.666666%; } .scroll-box.disable-sm:after { display: none; } .tab-nav { display: block; } .tab-nav li a { margin: 10px 0; } /* ------------------------------------------------------------------- Sections ------------------------------------------------------------------- */ .section-block-full>.container>.row>.col:first-child { padding: 0 30px; } .section-block>.block-media { width: 100%; } .section-block>.container>.row { display: block; } .section-block>.block-media, .section-block>.block-media>div { position: relative; height: 400px; } .section-block>.container>.row>.col:first-child:before, .section-block-full.section-block-right>.container>.row>.col:first-child:before { right: auto; left: 50%; top: -144px; transform: rotate(-90deg) translateY(-50%); margin: 0; } .section-block>.container>.row>.col:last-child { position: absolute; top: 0; left: 50%; height: 400px; transform: translateX(-50%); padding-top: 100px; padding-bottom: 100px; } .section-block:not(.section-block-full)+.section-base, .section-map+.section-base { border-top-style: solid; border-top-width: 1px; } .section-block-full>.container>.row>.col, .section-block-full>.container>.row>.col:first-child { max-width: 100%; margin: 0; } main>.section-map { padding-top: 0; } .section-map>.google-map { position: relative !important; height: 300px; } .section-map>.container { max-width: 540px; width: 100%; left: auto; margin: 0 auto; padding: 100px 15px 0 15px; } body>header .breadcrumb { display: none; } } /* ------------------------------------------------------------------- Extra small devices (portrait phones, less than 576px) ------------------------------------------------------------------- */ @media (max-width: 575.98px) { .hidden-xs { display: none !important; } .visible-xs { display: block !important; } .no-margin-xs { margin: 0 !important; } .btn-sm { padding: 5px 20px; font-size: 14px; } .table-6-md tr { grid-template-columns: 1fr; } .table-6-md td { border: none; } .table-grid td, .table-grid.table-border tbody tr td:first-child, .table-grid.table-border tbody tr:last-child td { padding: 15px; } .table.align-left td { padding-left: 0 !important; } .table, .table tbody, .table tr, .table thead, .table th, .table td { display: block; border: none; padding: 0; } .table:not(.table-grid) tr { padding-bottom: 15px; margin-bottom: 15px; border-bottom-style: solid; border-bottom-width: 1px; } table.table-grid td { padding: 30px 0; } table.table-grid tr:first-child td:first-child { padding-top: 0; } table.table-grid tr:last-child td:last-child { padding-bottom: 0; } .table.table-columns:not(.table-border):not(.table-full-border) { margin: 0 -15px; width: calc(100% + 30px); } .table-columns td { display: block; padding: 0 15px; } .table tbody tr:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; } .table.boxed-area { padding: 30px; } .table.boxed-area td { padding: 0 0 30px 0 !important; } .table.boxed-area tr:last-child td:last-child { padding: 0 !important; } .pagination .next a { margin-left: 0; padding-right: 35px; } .pagination .prev a { margin-right: 0; padding-left: 35px; } .cnt-call { padding: 30px; } .col-md-6+.col-md-6 { margin-top: 30px; } .cnt-box-blog-side { display: block; } body .cnt-box-blog-side { display: block; } body .cnt-box-blog-side>.img-box { width: 100%; height: 200px; border-bottom-left-radius: 0; border-bottom-right-radius: 0; } body .cnt-box-blog-side>.caption { width: 100%; padding-left: 0; } .icon-list-horizontal { display: block; } .list-nav a:not(.list-archive) { text-indent: -9995px; width: 33.333%; } .list-nav { justify-content: space-between; } .list-nav a:before { text-indent: 0; } .list-nav.align-left-xs { justify-content: flex-start; } .list-nav.align-left-xs .list-archive { margin-left: 0; } [data-columns-xs='1']>div { grid-template-columns: 1fr; } [data-columns-xs='2']>div { grid-template-columns: 1fr 1fr; } [data-columns-xs='3']>div { grid-template-columns: 1fr 1fr 1fr; } [data-columns-xs='4']>div { grid-template-columns: 1fr 1fr 1fr 1fr; } [data-columns-xs='1'] .maso-item { flex: 0 0 100%; max-width: 100%; } [data-columns-xs='2'] .maso-item { flex: 0 0 50%; max-width: 50%; } [data-columns-xs='3'] .maso-item { flex: 0 0 33.333333%; max-width: 33.333333%; } [data-columns-xs='4'] .maso-item { flex: 0 0 25%; max-width: 25%; } [data-columns-xs='5'] .maso-item { flex: 0 0 20%; max-width: 20%; } [data-columns-xs='6'] .maso-item { flex: 0 0 16.666666%; max-width: 16.666666%; } .box-steps { grid-template-columns: 1fr; } } /* ------------------------------------------------------------------- Inverted responsive classes ------------------------------------------------------------------- */ @media (min-width: 992.98px) { .visible-md { display: none; } } @media (min-width: 767.98px) { .visible-sm { display: none; } } @media (min-width: 576px) { .visible-xs { display: none; } }
public/web/css/style.css
@font-face { font-family: "Icons"; src: url('../images/icons/icons.eot'); src: url('../images/icons/iconsd41d.eot?#iefix-rdmvgc') format('embedded-opentype'), url('../images/icons/icons.woff') format('woff'), url('../images/icons/icons.ttf') format('truetype'), url('../images/icons/iconsca27.svg?-rdmvgc#icomoon') format('svg'); font-weight: normal; font-style: normal; } body, textarea { /*font-family: 'Montserrat', sans-serif;*/ font-family: 'avenir', sans-serif; font-size: 16px; line-height: 25px; padding: 0; margin: 0; } body>#preloader { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: #fff; z-index: 99995; } #preloader:before { content: url(../images/loader.svg); position: absolute; width: 15px; height: 15px; top: 50%; left: 50%; margin-left: -15px; margin-top: -15px; } body.no-transactions * { transition: none !important; } a, li { -webkit-tap-highlight-color: transparent } h1, h2, h3, h4, h5, h6, p { margin: 0; } p { margin: 0; } p+p { margin-top: 10px; } h1 { font-size: 35px; line-height: 40px } h2 { font-size: 20px; line-height: 30px } h1+p, h2+p, h3+p, h4+p, h2+h4, h1+h4, h2+ul.icon-list, h3+ul.icon-list, p+h3, p+.btn, p+h4, h4+.btn, h4+.btn-text, h4+input, h4+select, h4+textarea, p+ul.icon-list, p+.btn-text, p+table, p+pre, p+img, img+p, p+.row, .row+p, p+.img-box, p+.media-box, p+.cnt-box, p+.icon-links, p+ul.icon-list, .container>.row+.row, .container>div+p, .container>div+.btn, .table+.btn, .table+.btn-text, h4+div, h4+ul, h4+ul.icon-list, h4+a, .slimScrollDiv+.btn, .text-list+.btn, .text-list+.btn-text, p+.text-list { margin-top: 15px; } .cnt-boxnews { margin-top: 15px; } .row.justify-content-around { margin-right: -55px; margin-left: -55px; } .btn:not(.full-width)+.btn:not(.full-width) { margin-left: 15px; } .hidden { display: none !important; } .text-light { font-weight: 100 !important; } .text-normal { font-weight: 400 !important; } .text-bold { font-weight: 600 !important; } .text-black { font-weight: 900 !important; } .text-uppercase { text-transform: uppercase; } .clear { clear: both; width: 100%; } .full-width { width: 100%; } .align-left { text-align: left; } .align-right { text-align: right; } .align-center { text-align: center; } .no-margin, div.no-margin { margin: 0; } [data-href] { cursor: pointer; } .scroll-show:not(.showed) { display: none !important; } .boxed-area, .hc-cmp-column .hc-cmp-column.boxed-area, .hc-cmp-column .hc-cmp-column.boxed-area:last-child { padding: 30px; border-radius: 3px; } /* # COLORS =================================================================== ------------------------------------------------------------------- COLOR 1 ------------------------------------------------------------------- */ body, header h2, ::placeholder { color: #6fa6d7; } /* ------------------------------------------------------------------- COLOR 2 ------------------------------------------------------------------- */ h1, h2, h3, h4, h5, h6, .btn.btn-border, .btn-text, .input-text, .input-select, .input-textarea, .icon-list span, .icon-list span a, .social-links a i, a, .glide__arrow, .search-bar input[type=submit], .menu-cnt .tab-nav>li a, .menu-cnt>ul>li a { color: #379cf4; } .icon-circle li:before, .icon-circle span:before, .icon-line li:before, .icon-line span:before, .progress-bar>div>div, .progress-bar>div span, .breadcrumb li a:after, .glide__bullets>button { background-color: #379cf4; } .btn, .tab-nav li.active a, .tab-nav li:hover a, .icon-links-grid a:hover, .icon-links-button a { background-color: #379cf4; border-color: #379cf4; } .tab-nav li a { color: #379cf4; border-color: #379cf4; } /* ------------------------------------------------------------------- COLOR 3 ------------------------------------------------------------------- */ .btn-border:hover, .icon-links a:hover i, .icon-links-popup:hover>i, .breadcrumb li:not(:last-child):hover a, .pagination li:not(.page):hover a, .search-bar input[type=submit]:hover, .accordion-list>li:hover>a, .btn-text:hover, .menu-inner li:hover>a, .menu-inner li.active>a, .menu-inner .dropdown ul>li:hover>a, .album-title>a:hover, .glide__arrow:hover, .mega-menu .icon-list li a:hover, nav.active .menu-btn, .menu-transparent .menu-cnt>ul>li:hover>a, .list-nav a:hover { color: #3081c8; } .light .dropdown>ul>li:not(:hover)>a { color: #3081c8 !important; } .btn:not(.btn-border):hover, .cnt-box-badge .badge, .cnt-box-blog-side .blog-date, .cnt-box-blog-top .blog-date, .dropdown ul:not(.icon-list) li:hover>a, .menu-cnt>ul>li:hover>a, .lan-menu>li:hover>a, .glide__bullets>button:hover, .glide__bullets>button.glide__bullet--active { background-color: #3081c8; } .icon-links-button a:hover, .pagination li.page:hover a, .pagination li.page.active a { background-color: #3081c8; border-color: #3081c8; } .btn:hover, .input-text:focus, .input-select:focus, .input-textarea:focus, .search-bar input[type=text]:focus { border-color: #3081c8; } /* ------------------------------------------------------------------- COLOR 4 ------------------------------------------------------------------- */ .input-text, .input-select, .input-textarea, .cnt-pricing-table, .table, .table td, .table th, .step-item>span, .pagination li.page a, .accordion-list>li, .menu-inner:not(.menu-inner-vertical) .dropdown ul, .search-bar input[type=text], .footer-bar, .menu-cnt.active, .search-box-menu, .section-block+.section-base, .section-map+.section-base { border-color: #c3dff7; } .step-item:before, .menu-inner li:before, .bg-color, body main>section.bg-color, .menu-top-logo>.container:before, body hr:not([class*=space]) { background-color: #172129; } /* ------------------------------------------------------------------- COLOR 5 ------------------------------------------------------------------- */ .cnt-box-testimonials-bubble>p, .cnt-call, .comment-list li, .quote, .progress-bar>div, .timeline .panel, .header-base, .cnt-box.boxed .caption, .cnt-box-side-icon.boxed>i, .cnt-box-top-icon.boxed>i, .menu-big-box .menu-box, footer, main>section.section-base.section-color, .boxed-area, .list-tags a { background-color: #EAF5FC; } .cnt-boxnews.boxed .captionnews { background-color: #EAF5FC; } .cnt-box-testimonials-bubble>p:after { border-color: #EAF5FC; } /* ------------------------------------------------------------------- LIGHT COLOR ------------------------------------------------------------------- */ .light .breadcrumb li:not(:last-child) a, .light.menu-inner li>a { color: #FFF; } .light, .light h1, .light h2, .light h3, .light h4, .light h5, .light h6, .light p, .light .btn-text, .light .btn-text:hover, .light .btn a, .light .btn:hover, nav.light a, .light .glide__arrow, .light .counter .value span:last-child, .light.counter .value span:last-child, .light .icon-links a i { color: #FFF !important; } .light .breadcrumb li a:after, .section-image .boxed-area { background-color: #FFF; } .light .glide__bullets>button, .light .glide__bullets>button.glide__bullet--active, .section-color .boxed-area, .bg-white { background-color: #FFF !important; } .light .btn-border { color: #FFF !important; border-color: #FFF !important; } .light .btn-text:hover, .light p a:hover { opacity: .7; } /* # ICONS =================================================================== */ [class^="icon-"]:before, [class*=" icon-"]:before { font-family: "Icons"; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; speak: none; text-transform: none; } .icon-user:before { content: "\6a"; } .icon-bookmark:before { content: "\6c"; } .icon-share:before { content: "\6d"; } .icon-quote:before { content: "\65"; } .icon-calendar:before { content: "\6e"; } .icon-facebook:before { content: "\6b"; } .icon-twitter:before { content: "\6f"; } .icon-instagram:before { content: "\70"; } .icon-pinterest:before { content: "\71"; } .icon-linkedin:before { content: "\72"; } .icon-youtube:before { content: "\73"; } /* # SECTIONS =================================================================== ------------------------------------------------------------------- GLOBAL - SECTION ------------------------------------------------------------------- */ main>section { margin: 0; padding: 0; position: relative; overflow: hidden; } main>section.section-base { background-color: #FFF; } main>section>.container { padding-top: 40px; padding-bottom: 30px; } .section-video>video, .section-map>.google-map, .section-slider>.background-slider, .section-slider>.background-slider>div { position: absolute !important; height: 100%; width: 100%; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; } section.section-center { display: flex; align-items: center; } .section-full-width>.container { max-width: 100%; width: 100%; } @media (min-width: 994px) { .section-full-width-right>.container>.row>.col-lg-6:last-child { position: absolute; left: 50%; } .section-full-width-right>.container>.row>.col-lg-8:last-child { position: absolute; left: 66.666667%; } .section-full-width-left>.container>.row>.col-lg-6:first-child { position: absolute; right: 50%; } .section-full-width-left>.container>.row { direction: rtl; text-align: left; } .section-full-width-left>.container>.row>div, .section-full-width-right>.container>.row>div { direction: ltr; } main .section-full-width-left>.container, main .section-full-width-left>.container { position: static; } } .no-padding-y>.container { padding-top: 0; padding-bottom: 0; } .no-padding-x>.container { padding-left: 0; padding-right: 0; } .no-padding-top>.container { padding-top: 0; } .no-padding-bottom>.container { padding-bottom: 0; } .no-padding>.container { padding: 0; } /* ------------------------------------------------------------------- IMAGE - SECTION ------------------------------------------------------------------- */ .section-image { background-size: cover; background-position: center center; } .section-image.bg-top { background-position: top; } .section-image.bg-bottom { background-position: bottom; } /* ------------------------------------------------------------------- MAP - SECTION ------------------------------------------------------------------- */ main>.section-map { padding-top: 100px; padding-bottom: 100px; } .section-map>.container { position: relative; z-index: 5; background-color: #FFF; padding: 30px; border-radius: 3px; width: 50%; margin: 0 15px; left: calc(50% - 30px); transform: translateX(calc(-100% + 30px)); } .section-map-right>.container { transform: none; } .section-map.section-full-width>.container { max-width: 50%; } @media (min-width: 1200px) { .section-map>.container { max-width: 570px; } } /* ------------------------------------------------------------------- VIDEO - SECTION ------------------------------------------------------------------- */ .section-video>video { height: auto; } .section-video>.container { position: relative; z-index: 5; } /* ------------------------------------------------------------------- SLIDER - SECTION ------------------------------------------------------------------- */ .section-slider>.background-slider>div { opacity: 0; transition: all .5s; background-size: cover; background-position: center center; } .section-slider>.background-slider>div.active { opacity: 1; } .section-slider>.container { position: relative; z-index: 5; } .section-slider[data-slider-parallax] .background-slider { position: fixed !important; z-index: -1; opacity: 0; transition: none; } .section-slider[data-slider-parallax].active .background-slider { opacity: 1; } /* ------------------------------------------------------------------- BLOCK - SECTION ------------------------------------------------------------------- */ .section-block>.block-media { position: absolute; width: calc(50% - 15px); height: 100%; top: 0; right: 0; border-top-left-radius: 3px; border-bottom-left-radius: 3px; overflow: hidden; } .section-block-right>.block-media { left: 0; right: auto; border-radius: 0; border-top-right-radius: 3px; border-bottom-right-radius: 3px; } .section-block>.container>.row>.col:first-child:before { content: ''; border: 25px solid #ffffff; border-top-color: transparent; border-bottom-color: transparent; border-right-color: transparent; right: -65px; left: auto; top: 50%; margin-top: -25px; position: absolute; z-index: 1; } .section-block-right>.container>.row>.col:first-child:before { right: auto; left: -65px; transform: rotate(180deg); } .section-block>.block-media .image { height: 100%; width: 100%; background-size: cover; background-position: center center; } .section-block>.block-media video { width: 100%; } .section-block-right>.container>.row { flex-direction: row-reverse; } .section-block>.container>.row>.col:last-child { text-align: center; display: flex; align-items: center; justify-content: center; transform: translateX(30px); } .section-block-right>.container>.row>.col:last-child { transform: translateX(-30px); } .section-block-full>.block-media { width: 100%; } .section-block-full>.container>.row>.col { max-width: calc(50% - 60px); } .section-block-full>.container>.row>.col:first-child { background: #FFF; padding: 60px; margin: 0 30px; border-radius: 3px; } .section-block-full>.container>.row>.col:first-child:before { right: -49px; } .section-block-full.section-block-right>.container>.row>.col:first-child:before { right: auto; left: -49px; } /* # NAVIGATION =================================================================== ------------------------------------------------------------------- GLOBAL ------------------------------------------------------------------- */ body>nav { z-index: 1195; position: relative; background-color: #FFF; } body>nav>.container { height: 100%; min-height: 35px; } .dropdown ul li a { background-color: #FFF; } .dropdown ul li:hover>a, nav:not(.menu-transparent) .menu-cnt>ul>li:hover>a { color: #FFF; } .logo-retina { display: none !important; } @media (min-resolution: 192dpi) and (min-width: 994px), (-webkit-min-device-pixel-ratio: 2) and (min-width: 994px) { .logo-retina:not(.hidden):not(.scroll-show), .logo-retina.scroll-show.showed { display: block !important; } .logo-default { display: none !important; } } body>nav .menu-brand { float: left; height: 50px; display: flex; align-items: center; justify-content: center; padding: 10px 0; z-index: 9999; position: relative; } body>nav .menu-brand>a { height: 100%; } body>nav .menu-brand img { max-height: 100%; display: block; } .menu-btn { display: none; width: 30px; height: 30px; font-style: normal; position: absolute; right: 30px; top: 50%; transform: translateY(-50%); font-size: 30px; line-height: 30px; } .menu-btn:before { content: "\64"; font-family: "Icons"; position: absolute; left: 0; text-transform: none; } .menu-right { float: right; height: 50px; display: flex; align-items: center; margin: 0 -15px; } .menu-cnt { position: relative; } .menu-cnt>ul, .menu-inner>ul { float: left; list-style: none; padding: 0; margin: 0; display: flex; margin-left: 30px; } .menu-cnt>ul>li>a, .dropdown>ul>li>a, .dropdown-submenu>ul>li>a { height: 35px; line-height: 35px; padding: 0 15px; font-size: 13px; display: block; } .menu-cnt ul>li>a { text-decoration: none; transition: all .5s, height 0s, line-height 0s; } .menu-cnt>ul>li a { font-weight: 500; text-decoration: none; text-align: left; } .menu-right>* { margin: 0 15px; } .search-box-menu>input[type=text] { display: none; position: absolute; box-sizing: border-box; left: 0; top: calc(100% + 10px); width: 100% !important; max-width: 1125px; padding: 5px 15px; margin: auto; border: none; height: 50px; z-index: 9; outline: none; border-radius: 3px; box-shadow: 0 5px 5px rgba(0, 0, 0, 0.06); background-color: white; transition: all .5s; } body>nav .search-box-menu.active>input { display: block; } .search-box-menu>i { font-size: 19px; height: 50px; line-height: 50px; cursor: pointer; width: 50px; display: block; text-align: center; } .search-box-menu>i:before { font-family: "Icons"; content: "\61"; font-style: normal; text-transform: none; } .search-box-menu.active>i:before { content: "\63"; } .search-box-menu>input[type=submit] { display: none; position: absolute; z-index: 9; right: 0; height: 40px; top: calc(100% + 15px); background: #FFF; border: none; padding: 0 15px; cursor: pointer; } .search-bar { position: relative; } .search-bar input[type=text] { line-height: 25px; border-radius: 3px; border-width: 1px; border-style: solid; outline: none; padding: 0 5px; transition: all .5s; } .search-bar input[type=submit] { position: absolute; top: 50%; transform: translateY(-50%); right: 5px; background: none; border: none; outline: none; cursor: pointer; } nav.light h5, .light .shop-menu .shop-cart .cart-item .cart-content, .light .shop-menu p, .light .shop-menu .btn, .light .lan-menu ul li a { color: #4C4C4C; } body>nav .icon-links a i { font-size: 16px; transform: translateX(-50%) translateY(-50%); } .menu-cnt li>a { position: relative; } /* ------------------------------------------------------------------- MINI MENU SECTION - NAVIGATION MENU ------------------------------------------------------------------- */ .menu-mini { height: 35px; border-bottom: 1px solid rgba(128, 128, 128, 0.21); background: #fff; } .menu-mini>.container>ul { list-style: none; float: left; padding: 0; margin: 9px 0 0 0; } .menu-mini>.container>ul>li { float: left; padding-right: 20px; padding-left: 25px; font-size: 13px; line-height: 16px; position: relative; } .menu-mini>.container>ul>li i { margin-right: 5px; font-size: 16px; position: absolute; left: 0px; } .menu-mini li>a { text-decoration: none; } .menu-mini .menu-right { align-items: center; height: 35px; padding: 0; } .menu-mini .icon-links i, .menu-mini .icon-links i:hover { font-size: 14px; border-radius: 0; width: 35px; padding: 0; } .menu-mini .lan-menu { position: relative; z-index: 999; } .menu-mini .lan-menu li.dropdown>a { height: 35px; line-height: 35px; padding-top: 0; padding-bottom: 0; } .menu-wide .container, .menu-wide .search-box-menu>input { max-width: 100%; } /* ------------------------------------------------------------------- DROPDOWN - NAVIGATION MENU ------------------------------------------------------------------- */ .dropdown ul:not(.icon-list) { position: absolute; display: none; } .dropdown li { cursor: pointer; } .dropdown>a { position: relative; } .dropdown>ul, .dropdown-submenu>ul { box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.17); list-style: none; padding: 0; margin: 0; border: none; min-width: 200px; } .dropdown:hover>ul, .dropdown:hover .mega-menu, .dropdown-submenu:hover>ul { display: block; z-index: 4; } .dropdown-submenu { position: relative; } .dropdown-submenu>a { position: relative; z-index: 3; } .dropdown-submenu>a:after, .menu-side .dropdown>a:after, .menu-side .mega-dropdown>a:after, .menu-inner .dropdown>a:after, .menu-cnt>ul>li.dropdown>a:after { font-family: "Icons"; content: "\67"; position: absolute; top: 50%; transform: translateY(-50%) rotate(90deg); width: 20px; height: 20px; line-height: 20px; text-align: center; right: 10px; transition: transform .5s; text-transform: none; opacity: .7; } .dropdown-submenu>a:after, .menu-side:not(.menu-side-collapse) li>a:after, .menu-side:not(.menu-side-collapse) li.dropdown>a:after { transform: translateY(-50%) rotate(0deg); transition: none; } .dropdown.active>a:after, .mega-dropdown.active>a:after { transform: translateY(-50%) rotate(90deg) matrix(-1, 0, 0, 1, 0, 0); } .dropdown:hover>a:after, .menu-cnt li:hover>a:after { opacity: 1; } .dropdown-submenu ul { top: 0; left: 100%; z-index: 1; } .menu-cnt>ul>li.dropdown>a, .menu-cnt>ul>li.mega-dropdown>a { padding-right: 40px; } .menu-side .menu-cnt>ul>li.dropdown>a, .menu-side .menu-cnt>ul>li.mega-dropdown>a { padding-right: 15px; } .dropdown .divider { height: 1px; background: #eaeaea; } /* ------------------------------------------------------------------- MEGA MENU - NAVIGATION MENU ------------------------------------------------------------------- */ .mega-dropdown:hover .mega-menu, .mega-menu .tab-box>.panel.active { display: flex; overflow: hidden; z-index: 2; } .mega-menu .tab-box>.panel { margin: 30px 5px; } .mega-menu .tab-nav { margin: 15px; } .mega-dropdown .mega-menu { left: 0; width: 100%; } .mega-menu .col { padding: 0 10px; } .mega-menu { position: absolute; min-width: 250px; padding: 25px 5px; box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.17); background-color: #FFF; background-size: cover; display: none; } .mega-menu a { color: #636363; padding-left: 5px; display: block; white-space: nowrap; } .mega-menu .no-icons a { padding-left: 0; } .mega-menu.bg-menu { min-width: 400px; } .mega-menu h5 { margin-top: 5px; min-height: 15px; font-size: 15px; text-align: left; } .mega-menu .icon-list+h5 { margin-top: 30px; } .mega-menu .no-icons { margin-left: 1px; } .mega-menu .col>h5:first-child { margin-top: 0; } .mega-menu .tab-box { width: calc(100% + 10px); margin: -25px -5px; } /* ------------------------------------------------------------------- MENU RIGHT POSITION - NAVIGATION MENU ------------------------------------------------------------------- */ nav.align-right .menu-cnt { display: flex; justify-content: flex-end; } nav.align-right .menu-cnt { float: none; } /* ------------------------------------------------------------------- INNER MENU - NAVIGATION MENU ------------------------------------------------------------------- */ .menu-inner>ul { float: none; margin-left: 0; } .menu-inner:not(.menu-inner-vertical)>ul>li:not(:last-child) { margin-right: 20px; } .menu-inner li>a { height: 50px; line-height: 50px; display: block; position: relative; text-decoration: none; border-radius: 3px; cursor: pointer; transition: all .5s; } .menu-inner li.dropdown>a { padding-right: 35px; } .menu-inner .dropdown ul>li>a { font-size: 15px; } .menu-inner .dropdown ul>li:hover>a { background: none; } .menu-inner li { position: relative; transition: all .5s; } .menu-inner li:before { content: ""; position: absolute; width: 0%; height: 1px; transition: all .5s; bottom: 0; left: 0; } .menu-inner li:hover:before, .menu-inner li.active:before { width: 100%; } .menu-inner li>a>i { margin-right: 15px; } .menu-inner-vertical>ul { display: block; } .menu-inner-vertical li.dropdown>ul { position: static; box-shadow: none; } .menu-inner-vertical .dropdown:hover>ul { display: none } .menu-inner-vertical .dropdown.active>ul { display: block } .menu-inner.ms-minimal li:hover a, .menu-inner.ms-minimal li.active>a { background: none; } .menu-inner>div { display: none; position: relative; padding: 10px 0; } .menu-inner>div>i { right: 0; } .menu-inner.nav-right { justify-content: flex-end; display: flex; } .menu-inner.nav-center { justify-content: center; display: flex; } .menu-inner:not(.menu-inner-vertical) .dropdown>a:after { right: 0; } .menu-inner:not(.menu-inner-vertical) .dropdown ul { box-shadow: none; border-style: solid; border-width: 1px; border-radius: 3px; margin-top: -1px; } .menu-inner:not(.menu-inner-vertical) .dropdown li:last-child:before { bottom: -1px; } .menu-inner-image li img { position: absolute; height: 50px; max-height: 50px; max-width: 50px; height: 50px; border-radius: 3px; left: -65px; } .menu-inner-image li { padding-left: 65px; margin-bottom: 15px; } .menu-inner-image li a { line-height: 30px; } .menu-inner-image li a span { display: block; line-height: 15px; font-size: 12px; } /* ------------------------------------------------------------------- MENU TRANSPARENT - NAVIGATION MENU ------------------------------------------------------------------- */ body>nav.menu-transparent, .menu-transparent .form-control, .menu-transparent .btn, .menu-transparent .menu-cnt>ul>li:hover>a, .menu-transparent .lan-menu>li>a, .menu-transparent .btn:hover, .menu-big-box.menu-transparent .menu-box, .menu-transparent .menu-mini, .menu-transparent .lan-menu>li:hover>a { background: none; } /* ------------------------------------------------------------------- MENU FIXED - NAVIGATION MENU ------------------------------------------------------------------- */ nav.menu-fixed { position: fixed; right: 0; left: 0; top: 0; } .menu-fixed:not(.menu-transparent)+header, .menu-fixed:not(.menu-transparent)+main { margin-top: 50px; } .menu-fixed.menu-top-logo:not(.menu-transparent)+header, .menu-fixed.menu-top-logo:not(.menu-transparent)+main { margin-top: 135px; } /* ------------------------------------------------------------------- LANGUAGE MENU - NAVIGATION MENU ------------------------------------------------------------------- */ .lan-menu { list-style: none; padding-left: 0; position: relative; } .lan-menu li a, .lan-menu .dropdown>ul>li>a { padding-left: 40px; color: #444; text-decoration: none; line-height: 50px; font-size: 13px; display: block; transition: all .5s; } nav:not(.menu-transparent) .lan-menu>li:hover>a, nav:not(.menu-transparent) .menu-mini .lan-menu>li:hover>a, .lan-menu .dropdown>ul>li:hover>a { color: #FFF; } .lan-menu li.dropdown>a { padding-right: 15px; } .lan-menu li.dropdown>a:after { right: 15px; } .lan-menu .dropdown>ul>li>a, .lan-menu .dropdown>ul { min-width: 100%; max-width: 100%; box-sizing: border-box; } .lan-menu li a img { position: absolute; left: 15px; top: 50%; margin-top: -6px; border-radius: 3px; } /* ------------------------------------------------------------------- SHOP MENU - NAVIGATION MENU ------------------------------------------------------------------- */ .shop-menu-cnt { position: relative; } .shop-menu-cnt>i { font-size: 23px; height: 50px; line-height: 50px; cursor: pointer; width: 50px; display: block; text-align: center; } .shop-menu-cnt>i:before { font-family: "Icons"; content: "\69"; font-style: normal; } .shop-menu-cnt:hover .shop-menu { display: block; visibility: visible; opacity: 1; } .shop-menu-cnt .shop-menu { z-index: 90; position: absolute; top: 100%; left: 50%; margin-left: -160px; width: 320px; text-align: center; background-color: #fff; transition: all .4s ease; box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.17); overflow: hidden; display: none; } .shop-cart li { cursor: pointer; } .shop-cart li img { width: 65px; height: 40px; margin: 0; border-radius: 3px; float: left; } .shop-cart .cart-item .cart-content { padding-left: 100px; text-align: left; font-size: 13px; line-height: 21px; } .shop-menu-cnt .cart-total { display: block; text-align: left; padding: 8px 16px; margin: 0; overflow: hidden; font-size: 14px; line-height: 18px; } .shop-cart { list-style: none; padding: 15px 0; margin: 0; } .shop-cart .cart-item { height: 50px; padding: 0 15px; transition: all .3s; } .shop-cart .cart-item:hover { background: none; padding-left: 20px; } .cart-item h5 { margin-bottom: 0; font-size: 14px; } .shop-menu .cart-buttons { text-align: left; padding: 15px; margin: 0; line-height: 20px; } .shop-menu .cart-buttons a { text-decoration: none; margin-right: 10px; } .shop-menu-cnt .cart-count { background-color: #292929; top: 50%; margin-top: -4px; right: 3px; width: 18px; height: 18px; display: block; position: absolute; z-index: 95; font-size: 11px; line-height: 19px; font-style: normal; text-align: center; border-radius: 50%; color: #fff; font-weight: 600; } .shop-menu-empty .shop-menu, .wc-backward { display: none !important; } /* ------------------------------------------------------------------- BIG BOX - NAVIGATION MENU ------------------------------------------------------------------- */ .menu-big-box { padding-bottom: 40px; } .menu-big-box .menu-box { position: absolute; height: 80px; width: calc(100% - 60px); z-index: 1; display: flex; align-items: center; justify-content: center; padding: 15px; border-radius: 3px; } .menu-big-box .menu-box>.row { width: calc(100% + 15px); } .menu-big-box .menu-cnt>ul, .menu-big-box .menu-right>ul { z-index: 2; position: relative; } .menu-big-box>.container { position: relative; } /* ------------------------------------------------------------------- SUBTITLE - NAVIGATION MENU ------------------------------------------------------------------- */ .menu-subtitle .menu-cnt li a span { display: block; height: 23px; position: absolute; bottom: 24px; font-size: 11px; color: #bbbbbb; } .menu-subtitle .menu-cnt>ul>li>a, .menu-subtitle .menu-cnt .menu-right { height: 70px; } .menu-subtitle .menu-cnt>ul>li>a { position: relative; } .menu-subtitle .shop-menu-cnt>i, .menu-subtitle .search-box-menu>i, .menu-subtitle .menu-brand, .menu-subtitle .lan-menu>li>a { height: 70px; line-height: 70px; } /* ------------------------------------------------------------------- MIDDLE AND TOP LOGO - NAVIGATION MENU ------------------------------------------------------------------- */ @media (min-width: 992px) { .menu-top-logo { padding-top: 100px; } .menu-top-logo>.container { padding-left: 30px; padding-right: 30px; } .menu-top-logo>.container>.menu-brand, .menu-top-logo .menu-right { position: absolute; top: 50%; transform: translateY(calc(-50% - 25px)); right: 50%; width: 570px; float: none; padding-left: 30px; padding-right: 30px; justify-content: flex-start; } .menu-top-logo .menu-right { left: 50%; right: auto; justify-content: flex-end; margin: 0; } .menu-top-logo .menu-right>*:last-child { margin-right: 0; } .menu-top-logo .menu-cnt { position: static; } .menu-top-logo .menu-cnt>ul { margin: 0; position: relative; width: 100%; } .menu-top-logo>.container:before { content: ""; position: absolute; height: 1px; width: 100%; left: 0; } .menu-top-logo .menu-mini { position: absolute; top: 0; width: 100%; } .menu-top-logo .menu-mini .menu-right { transform: translateY(-50%); } .menu-top-logo>.menu-mini+.container>.menu-brand, .menu-top-logo>.menu-mini+.container .menu-right { transform: translateY(calc(-50% - 8px)); } .menu-top-logo.menu-wide>.container>.menu-brand { left: 0; right: auto; } .menu-top-logo.menu-wide .menu-right { left: auto; right: 0; } } @media (max-width: 1125px) and (min-width: 992px) { .menu-top-logo>.container>.menu-brand, .menu-top-logo .menu-right { width: 480px; } } /* ------------------------------------------------------------------- ICON - NAVIGATION MENU ------------------------------------------------------------------- */ .menu-icon .menu-cnt>ul>li>a>i { position: absolute; top: 50%; left: 13px; transform: translateY(-50%); font-size: 24px; cursor: pointer; } .menu-icon .menu-cnt>ul>li>a { padding-left: 55px; position: relative; } .menu-icon-top.menu-fixed.scroll-menu .menu-cnt>ul>li>a>i { display: none; } @media (min-width: 993px) { .menu-icon-top .menu-cnt>ul>li>a>i { top: 15px; left: 50%; transform: translateY(0) translateX(-50%); } .menu-icon-top .menu-cnt>ul>li>a { padding-top: 35px; padding-left: 15px; } .menu-icon-top .shop-menu-cnt>i, .menu-icon-top .search-box-menu>i, .menu-icon-top .menu-cnt>.dropdown>ul>li>a, .menu-icon-top .dropdown-submenu>ul>li>a, .menu-icon-top .menu-cnt .menu-right, .menu-icon-top .menu-brand, .menu-icon-top .lan-menu>li>a { height: 80px; line-height: 80px; } .menu-icon-top .menu-cnt>ul>li>a { line-height: 50px; } } /* ------------------------------------------------------------------- SIDE - NAVIGATION MENU ------------------------------------------------------------------- */ @media (min-width: 992px) { .menu-side-cnt, .menu-side-cnt #fullpage-main, .menu-side-cnt .footer-parallax, .menu-side-cnt>.menu-fixed:not(.menu-wide) { padding-left: 250px; } .menu-side { width: 250px; height: 100%; position: fixed; top: 0; left: 0; z-index: 99995; background-color: #FFFFFF; border-right: 1px solid #e7e7e7; box-shadow: 1px 0 2px rgba(0, 0, 0, 0.05); } .menu-side .menu-brand { width: 100%; padding: 15px; height: 90px; float: none; } .menu-side .menu-cnt>ul { float: none; display: block; margin: 0; } .menu-side .menu-cnt>ul>li { float: none; position: relative; margin: 0; } .menu-side .mega-menu, .menu-side .dropdown>ul, .menu-side .dropdown-submenu>ul { left: 100%; top: 0; width: auto; } .menu-side-collapse { display: flex; flex-direction: column; justify-content: space-between; } .menu-side-collapse .menu-cnt { height: 100%; } .menu-side-collapse .menu-cnt>ul { float: none; display: block; margin: 0; } .menu-side-collapse .menu-cnt>ul>li { float: none; position: relative; margin: 0; } .menu-side-collapse .mega-menu, .menu-side-collapse .dropdown>ul, .menu-side-collapse .dropdown-submenu>ul { left: 0; top: 100%; width: 100%; position: relative; box-shadow: none; } .menu-side-collapse .bottom-area { position: static; } .menu-side-collapse li.active>ul, .menu-side-collapse .active .mega-menu, .menu-side-collapse .mega-menu .tab-box>.panel.active, .menu-side-collapse .mega-menu .tab-box .nav-tabs, .menu-side-collapse .active .dropdown-submenu ul { display: block; } .menu-side-collapse li:not(.active):not(.dropdown-submenu):hover>ul, .menu-side-collapse li:not(.active):hover .mega-menu { display: none; } .menu-side-collapse .mega-menu { padding: 25px 0; } .menu-side .mega-menu .col { padding: 0 15px; font-size: 13px; } .menu-side .mega-menu .icon-list li a:hover { background: none; } .menu-side:not(.menu-side-collapse) .dropdown>ul, .menu-side:not(.menu-side-collapse) .dropdown-submenu>ul { box-shadow: 4px 5px 5px rgba(0, 0, 0, 0.17); border-left: 1px solid #eaeaea; } .menu-side .slimScrollRail { visibility: hidden; } .menu-side-collapse .active .dropdown-submenu>a:after { transform: translateY(-50%) rotate(90deg); } .menu-side-collapse .mega-menu .tab-nav { display: block; } .menu-side-collapse .mega-menu .tab-nav li a { margin: 10px 0; } } .menu-side-collapse .col+.col>h5:first-child { margin-top: 30px; } .menu-side .bottom-area { position: absolute; bottom: 20px; padding: 20px 15px; width: 100%; text-align: center; } .menu-side-collapse .bottom-area { position: static; } .menu-side .bottom-area .lan-menu { display: flex; justify-content: center; padding: 15px 0; } .menu-side .bottom-area .lan-menu a { margin: 0 5px; } .menu-side .bottom-area .icon-links { margin: 10px 0; } .menu-side .bottom-area p { font-size: 12px; } /* # HEADERS =================================================================== ------------------------------------------------------------------- GLOBAL ------------------------------------------------------------------- */ .title { position: relative; margin-bottom: 50px; } .title>p { margin-top: 15px; } .row>div>.title:last-child { margin-bottom: 0; } body>header { position: relative; display: flex; align-items: center; height: 350px; overflow: hidden; } body>header>.container { position: relative; z-index: 5; } body>header h1 { font-size: 30px; font-weight: 600; margin: 0; } body>header h2 { margin: 20px 0 0 0; font-size: 18px; font-weight: 400; } body>header.align-center h2 { margin: 20px auto 0 auto; } .breadcrumb { list-style: none; display: flex; margin: 40px 0 0 0; padding: 0; } .breadcrumb li { list-style: none; } .breadcrumb li a { display: block; text-decoration: none; padding-right: 15px; margin-right: 15px; font-size: 14px; position: relative; } .breadcrumb li a:after { content: ""; position: absolute; width: 1px; height: 11px; margin-top: -5px; opacity: .6; top: 50%; right: 0; transform: rotate(25deg); } .breadcrumb li:last-child a { font-weight: 600; cursor: default; padding-right: 0; margin-right: 0; } .breadcrumb li:last-child a:after { display: none; } body>header.align-right .breadcrumb { left: 15px; right: auto; justify-content: flex-end; } body>header.align-center .breadcrumb { position: static; justify-content: center; margin-top: 20px; } .breadcrumb.align-center { justify-content: center; } .breadcrumb.align-right { justify-content: flex-end; } body>nav.menu-transparent+header { margin-top: 0 !important; } /* ------------------------------------------------------------------- IMAGE - HEADER ------------------------------------------------------------------- */ .header-image, .header-base { background-position: center center; background-size: cover; } /* ------------------------------------------------------------------- SLIDER - HEADER ------------------------------------------------------------------- */ .header-slider>.background-slider>div { position: absolute; height: 100%; width: 100%; top: 0; left: 0; right: 0; bottom: 0; z-index: 0; } .header-slider>.background-slider>div { opacity: 0; background-size: cover; background-position: center center; transition: all .5s; } .header-slider>.background-slider>div.active { opacity: 1; } /* ------------------------------------------------------------------- VIDEO - HEADER ------------------------------------------------------------------- */ .header-video>video { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; z-index: 0; } /* ------------------------------------------------------------------- BASE - HEADER ------------------------------------------------------------------- */ .header-base { height: 200px; } .header-base .breadcrumb { position: absolute; right: 15px; top: 0; margin-top: 0; } /* # TYPOGRAPHY =================================================================== ------------------------------------------------------------------- SPACE ------------------------------------------------------------------- */ hr.space, hr.space-xs, hr.space-sm, hr.space-md, hr.space-lg { border: none; clear: both; margin: 0; } hr.space-xs { height: 15px; } hr.space-sm { height: 30px; } hr.space { height: 60px; } hr.space-md { height: 75px; } hr.space-lg { height: 100px; } span.space, span.space-xs, span.space-sm, span.space-md, span.space-lg { display: inline-block; } span.space-xs { width: 15px; } span.space-sm { width: 30px; } span.space { width: 60px; } span.space-md { width: 75px; } span.space-lg { width: 100px; } /* ------------------------------------------------------------------- TEXT ------------------------------------------------------------------- */ .text-xs { font-size: 12px !important; line-height: 18px; } .text-sm { font-size: 16px !important; line-height: 22px; } .text-md { font-size: 25px !important; line-height: 35px; } .text-lg { font-size: 50px !important; line-height: 70px; } /* ------------------------------------------------------------------- SEPARATOR ------------------------------------------------------------------- */ hr:not([class*=space]) { height: 1px; border: none; background: #dadada; margin: 30px 0; } /* ------------------------------------------------------------------- QUOTE ------------------------------------------------------------------- */ .quote { position: relative; padding: 30px 30px 30px 105px; margin: 0; border-radius: 3px; } .quote>p { margin: 0; } .quote.quote-double { padding: 30px 105px 30px 105px; } .quote:before, .quote.quote-double:after { content: "\65"; font-family: "Icons"; position: absolute; left: 30px; width: 50px; height: 50px; font-size: 45px; line-height: 55px; opacity: .2; text-transform: none; } .quote.quote-double:after { content: "\66"; left: auto; right: 30px; bottom: 30px; } .quote .quote-author { display: block; margin-top: 15px; font-weight: 600; } .quote-author:empty { display: none; } /* # COMPONENTS =================================================================== ------------------------------------------------------------------- BUTTONS - COMPONENT ------------------------------------------------------------------- */ .btn { color: #fff; border-radius: 3px; display: inline-block; text-decoration: none; border-style: solid; border-width: 1px; position: relative; cursor: pointer; outline: none; text-align: center; transition: all .5s; } .btn-xs { padding: 7px 20px; font-size: 13px; } .btn-sm { padding: 10px 30px; font-size: 15px; } .btn-lg { padding: 15px 50px; font-size: 20px; } .btn-border, body .btn-border { background: none; } .btn-circle { border-radius: 100px; } .btn-text { position: relative; display: inline-block; text-decoration: none; cursor: pointer; background: none; border: none; outline: none; transition: all .5s; } .btn-text.btn-icon i { position: static; margin-right: 10px; } .btn-icon.btn-xs:not(.btn-anima), .btn-icon.btn-xs.btn-anima:hover { padding-left: 40px; } .btn-icon.btn-sm:not(.btn-anima), .btn-icon.btn-sm.btn-anima:hover { padding-left: 55px; } .btn-icon.btn-lg:not(.btn-anima), .btn-icon.btn-lg.btn-anima:hover { padding-left: 85px; } .btn-icon i { position: absolute; left: 30px; top: 50%; transform: translateY(-50%); } .btn-icon.btn-lg:not(.btn-anima) i { left: 50px; } .btn-anima { overflow: hidden; } .btn-anima i { left: -50px; transition: all .5s; } .btn-icon.btn-xs.btn-anima:hover i, .btn-icon.btn-xs:not(.btn-anima) i { left: 20px; } .btn-icon.btn-sm.btn-anima:hover i { left: 30px; } .btn-icon.btn-lg.btn-anima:hover i, .btn-icon.btn-lg.btn-xs:not(.btn-anima) i { left: 50px; } .btn+.btn { margin-top: 15px; } .btn-video { position: relative; display: block; padding-top: 60px; text-decoration: none; } .btn-video:before { content: ""; position: absolute; width: 80px; height: 80px; border-radius: 50%; top: -14px; left: 50%; transform: translateX(-50%); margin-left: -43px; background: #FFF; z-index: 1; } .btn-video:after { content: "\62"; font-family: "Icons"; position: absolute; width: 50px; height: 50px; font-size: 45px; line-height: 55px; top: 0; left: 50%; margin-left: -24px; animation-iteration-count: infinite; z-index: 1; text-transform: none; } .img-box.btn-video { padding-top: 0; } .img-box.btn-video:before { top: 50%; margin-top: -43px; margin-left: -45px; height: 80px; border-radius: 50%; left: 50%; background: rgb(255, 255, 255); } .img-box.btn-video:after { top: 50%; margin-top: -30px; } /* ------------------------------------------------------------------- INPUTS - COMPONENT ------------------------------------------------------------------- */ .input-text, .input-select, .input-textarea { border-radius: 3px; border-style: solid; border-width: 1px; outline: none; width: 100%; padding: 10px; font-size: 14px; background: rgb(255, 255, 255); } .input-text-btn { display: flex; } .input-text-btn .input-text { border-top-right-radius: 0; border-bottom-right-radius: 0; border-right: none; margin: 0; } .input-text-btn .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; padding-left: 10px; padding-right: 10px; margin: 0; } /* ------------------------------------------------------------------- TEXT LIST - COMPONENT ------------------------------------------------------------------- */ .text-list, .text-list li { list-style: none; position: relative; padding: 0; margin: 0; } .text-list li { transition: all .5s; } .text-list-base li, .text-list-image li, .text-list-side li { margin-bottom: 30px; } .text-list-base li:last-child, .text-list-image li:last-child, .text-list-side li:last-child { margin-bottom: 0; } .text-list-base li>h3, .text-list-image .content>h3, .text-list-side h3 { margin: 0; font-size: 19px; } .text-list-base li>p, .text-list-image .content>p { margin: 5px 0 0 0; } .text-list-base li>div, .text-list-image .content>div { position: absolute; right: 0; top: 0; } .text-list-image li { display: flex; align-items: center; justify-content: space-between; } .text-list-image li .content { position: relative; width: 100%; padding-left: 30px; } .text-list-image li>img { position: relative; left: 0; width: 90px; height: 90px; border-radius: 50%; } .text-list-side li { display: flex; justify-content: space-between; } .text-list-side li h3 { min-width: 150px; } .text-list-side p { margin: 0 30px; } .text-list-bold li, .text-list-line li { display: flex; margin-bottom: 5px; } .text-list-bold p span, .text-list-line p span { padding-left: 15px; } .text-list-bold li p { margin: 0 0 0 15px; } .text-list-line li b { margin-right: 5px; white-space: nowrap; } .text-list-line label { text-transform: none; font-weight: normal; font-style: normal; display: inline; } .text-list-line li p { margin: 0 5px; white-space: nowrap; overflow: visible; } .text-list-line li { justify-content: space-between; height: 26.5px; } .text-list-line li hr { width: 100%; margin-top: 16px; border-top: 1px dotted; background: none; opacity: .8; } /* ------------------------------------------------------------------- ICON LIST - COMPONENT ------------------------------------------------------------------- */ .icon-list-horizontal { display: flex; } .icon-list-horizontal.icon-list li { margin-right: 10px; /*25px;*/ margin-bottom: 0; padding-left: 15px; /*25px;*/ position: relative; white-space: nowrap; overflow: hidden; } .icon-list p { margin: 0; display: inline; } .icon-list li>i { position: absolute; left: 0; top: 50%; transform: translateY(-50%); } .icon-list-horizontal.icon-list a { text-decoration: none; } ul.icon-list { list-style: none; padding: 0; margin: 0; } ul.icon-list li { position: relative; list-style: none; padding-left: 30px; margin-bottom: 10px; } ul.icon-list li:last-child { margin-bottom: 0; } .icon-list.icon-md li, .icon-list.icon-md span { padding-left: 40px; line-height: 35px; } .icon-list.icon-md li>i, .icon-list.icon-md span>i { font-size: 23px; } .icon-list.icon-lg li, .icon-list.icon-lg span { padding-left: 50px; line-height: 40px; } .icon-list.icon-lg li>i, .icon-list.icon-lg span>i { font-size: 30px; } .icon-list.icon-md.text-xs li { line-height: 20px; } .icon-list.icon-md.text-xs li>i { font-size: 15px; } .icon-circle li>i, .icon-line li>i, .icon-decimal li>i { display: none; } .icon-circle li:before, .icon-circle span:before, .icon-line li:before, .icon-line span:before { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; left: 0; top: 50%; transform: translateY(-50%); transition: all .5s; } .icon-circle li:hover:before, .icon-circle span:hover:before { transform: translateY(-50%) scale(.8); } .icon-circle.icon-md li:before, .icon-circle.icon-md span:before { width: 11px; height: 11px; } .icon-circle.icon-md li, .icon-circle.icon-md span { padding-left: 35px; } .icon-circle.icon-lg li:before, .icon-circle.icon-lg span:before { width: 16px; height: 16px; } .icon-circle.icon-lg li, .icon-circle.icon-lg span { padding-left: 40px; } .icon-line li:before, .icon-line span:before { border-radius: 3px; height: 2px; } .icon-line li:hover:before, .icon-line span:hover:before { transform: translateY(-50%) translateX(5px); } .icon-line.icon-md li:before, .icon-line.icon-md span:before { width: 15px; height: 3px; } .icon-line.icon-md li, .icon-line.icon-md span { padding-left: 35px; } .icon-line.icon-lg li:before, .icon-line.icon-lg span:before { width: 20px; height: 4px; } .icon-line.icon-lg li, .icon-line.icon-lg span { padding-left: 40px; } ul.icon-decimal { padding-left: 15px; } ul.icon-decimal, ul.icon-decimal li { list-style: decimal; } .icon-list-horizontal.icon-list:not(.icon-md):not(.icon-lg) span { padding-left: 33px; } ul.icon-list.list-right li, .icon-list-horizontal.icon-list.list-right span { padding-left: 0; padding-right: 30px; text-align: right; } ul.icon-list.list-right li i, .icon-list-horizontal.icon-list.list-right i { left: auto; right: 0; } ul.icon-list.list-right.icon-md li, .icon-list-horizontal.icon-list.list-right.icon-md span { padding-right: 40px; } ul.icon-list.list-right.icon-lg li, .icon-list-horizontal.icon-list.list-right.icon-lg span { padding-right: 50px; } .icon-list-horizontal.icon-list.list-right:not(.icon-md):not(.icon-lg) span { padding-left: 0; padding-right: 33px; } .icon-circle.list-right li:before, .icon-circle.list-right span:before, .icon-line.list-right li:before, .icon-line.list-right span:before { left: auto; right: 0; } /* ------------------------------------------------------------------- ICON LINK - COMPONENT ------------------------------------------------------------------- */ .icon-links { display: flex; } .icon-links.align-center { justify-content: center; } .icon-links.align-right { justify-content: flex-end; } .icon-links a { display: block; width: 30px; height: 30px; margin-right: 15px; position: relative; cursor: pointer; } .icon-links a i { left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); margin: 0; padding: 0; display: block; position: absolute; font-size: 18px; transition: all .5s; } .icon-links { display: flex; } .icon-links-grid a { border-style: solid; border-width: 1px; border-right: none; width: 50px; height: 40px; margin: 0; } .icon-links-grid a i { transition: all .1s; } .icon-links-grid a:hover i { color: #FFF; } .icon-links-grid a:first-child { border-bottom-left-radius: 3px; border-top-left-radius: 3px; } .icon-links-grid a:last-of-type { border-right-style: solid; border-right-width: 1px; border-bottom-right-radius: 3px; border-top-right-radius: 3px; } .icon-links-button a { width: 50px; height: 40px; border-radius: 3px; transition: all .5s; } .icon-links-button a i, .icon-links-button a:hover i { color: #FFF; } .icon-links-popup { position: relative; padding-left: 35px; } .icon-links-popup>i { display: block; position: absolute; width: 20px; height: 20px; left: 0; font-size: 16px; cursor: pointer; } .icon-links-popup>i:before { font-family: "Icons"; content: "\6d"; font-size: 20px; font-style: normal; font-weight: normal; text-transform: none; } .icon-links-popup>div { display: flex; position: relative; visibility: hidden; } .icon-links-popup>div>a { opacity: 0; transition: all .5s; } .icon-links-popup.active>div { visibility: visible; } .icon-links-popup.active>div>a { opacity: 1; } .icon-links.icon-lg i { font-size: 25px; } .icon-links.icon-lg a { margin-right: 25px; } .icon-links-grid.icon-lg a { margin-right: 0; width: 60px; height: 45px; } .icon-links-button.icon-lg a { width: 60px; height: 45px; } .icon-links-popup.icon-lg { padding-left: 45px; } .icon-links-popup.icon-lg>i { height: 25px; width: 25px; } .icon-links-popup.icon-lg>i:before { font-size: 25px; } .icon-links>a:last-child { margin-right: 0; } .icon-social a i { transform: translateX(-50%) translateY(calc(-50% + 2px)); } /* ------------------------------------------------------------------- SOCIAL LINK - COMPONENT ------------------------------------------------------------------- */ .social-colors.icon-links-button i, .social-colors.icon-links-grid i, .social-colors-hover.icon-links-button i, .social-colors-hover.icon-links-grid i { transition: none; } .social-colors.icon-links-button .facebook:not(:hover), .social-colors-hover.icon-links-button .facebook:hover, .social-colors.icon-links-grid .facebook:not(:hover), .social-colors-hover.icon-links-grid .facebook:hover { background-color: #3B5998; border-color: #3B5998; color: #FFF; } .social-colors.icon-links-button .twitter:not(:hover), .social-colors-hover.icon-links-button .twitter:hover, .social-colors.icon-links-grid .twitter:not(:hover), .social-colors-hover.icon-links-grid .twitter:hover { background-color: #3B8ACA; border-color: #3B8ACA; color: #FFF; } .social-colors.icon-links-button .pinterest:not(:hover), .social-colors-hover.icon-links-button .pinterest:hover, .social-colors.icon-links-grid .pinterest:not(:hover), .social-colors-hover.icon-links-grid .pinterest:hover { background-color: #B90B20; border-color: #B90B20; color: #FFF; } .social-colors.icon-links-button .linkedin:not(:hover), .social-colors-hover.icon-links-button .linkedin:hover, .social-colors.icon-links-grid .linkedin:not(:hover), .social-colors-hover.icon-links-grid .linkedin:hover { background-color: #0077B5; border-color: #0077B5; color: #FFF; } .social-colors.icon-links-button .youtube:not(:hover), .social-colors-hover.icon-links-button .youtube:hover, .social-colors.icon-links-grid .youtube:not(:hover), .social-colors-hover.icon-links-grid .youtube:hover { background-color: #cc181e; border-color: #cc181e; color: #FFF; } .social-colors.icon-links-button .instagram:not(:hover), .social-colors-hover.icon-links-button .instagram:hover, .social-colors.icon-links-grid .instagram:not(:hover), .social-colors-hover.icon-links-grid .instagram:hover { background-color: #464646; border-color: #464646; color: #FFF; } .social-colors:not(.icon-links-button):not(.icon-links-grid) .facebook:not(:hover) i, .social-colors-hover:not(.icon-links-button):not(.icon-links-grid) .facebook:hover i { color: #3B5998; } .social-colors:not(.icon-links-button):not(.icon-links-grid) .twitter:not(:hover) i, .social-colors-hover:not(.icon-links-button):not(.icon-links-grid) .twitter:hover i { color: #3B8ACA; } .social-colors:not(.icon-links-button):not(.icon-links-grid) .pinterest:not(:hover) i, .social-colors-hover:not(.icon-links-button):not(.icon-links-grid) .pinterest:hover i { color: #B90B20; } .social-colors:not(.icon-links-button):not(.icon-links-grid) .linkedin:not(:hover) i, .social-colors-hover:not(.icon-links-button):not(.icon-links-grid) .linkedin:hover i { color: #0077B5; } .social-colors:not(.icon-links-button):not(.icon-links-grid) .youtube:not(:hover) i, .social-colors-hover:not(.icon-links-button):not(.icon-links-grid) .youtube:hover i { color: #cc181e; } .social-colors:not(.icon-links-button):not(.icon-links-grid) .instagram:not(:hover) i, .social-colors-hover:not(.icon-links-button):not(.icon-links-grid) .instagram:hover i { color: #464646; } /* ------------------------------------------------------------------- ICON BOX - COMPONENT ------------------------------------------------------------------- */ .icon-box { position: relative; display: flex; } .icon-box i { font-size: 35px; display: block; text-align: left; } .icon-box h3 { font-size: 20px; } .icon-box p { margin: 0; } .icon-box-top { flex-direction: column; } .icon-box-top h3 { margin: 20px 0 10px 0; } .icon-box-left { flex-direction: row; align-items: center; } .icon-box-left i { padding-right: 30px; } .icon-box-left h3 { margin: 0 0 5px 0; } .icon-box-right { flex-direction: row-reverse; align-items: center; text-align: right; } .icon-box-right i { padding-left: 30px; } .icon-box-right h3 { margin: 0 0 5px 0; } .icon-box-top.align-center i { margin-left: auto; margin-right: auto; text-align: center; } .icon-box-top.align-right i { margin-left: auto; margin-right: 0; text-align: right; } /* ------------------------------------------------------------------- MAP - COMPONENTS ------------------------------------------------------------------- */ .google-map { height: 350px; } /* ------------------------------------------------------------------- STEPS - COMPONENTS ------------------------------------------------------------------- */ .box-steps { display: grid; grid-gap: 30px; grid-template-columns: 1fr 1fr 1fr; } .box-steps>div { grid-template-columns: 1fr 1fr 1fr; } .step-item { position: relative; } .step-item>.content { position: relative; padding-top: 60px; } .step-item>.content>*:first-child { margin-top: 0; } .step-item>span { position: absolute; width: 30px; height: 30px; line-height: 30px; border-style: solid; border-width: 1px; border-radius: 50%; text-align: center; font-size: 14px; display: block; font-weight: 600; background: #FFF; } .step-item:before { content: ""; position: absolute; width: 100%; height: 1px; top: 14px; } .box-steps-vertical { display: block; } .box-steps-vertical>.step-item:not(:last-child) { padding-bottom: 30px; } .box-steps-vertical>.step-item>.content { padding: 0 0 0 60px; } .box-steps-vertical>.step-item>span { margin-top: -2px; } .box-steps-vertical>.step-item:before { width: 1px; height: 100%; top: 0; left: 14px; } /* ------------------------------------------------------------------- PROGRESS BAR - COMPONENTS ------------------------------------------------------------------- */ .progress-bar>h4, .progress-circle>h4 { font-size: 16px; margin-bottom: 15px; } .progress-bar>div, .progress-bar>div>div { width: 100%; height: 6px; border-radius: 3px; } .progress-bar>div>div { width: 0%; position: relative; transition: all 1s linear; } .progress-bar>div span { position: absolute; padding: 0 8px; font-size: 13px; right: 0; top: -35px; transform: translateX(50%); margin-right: 1px; border-radius: 3px; color: #FFF; white-space: nowrap; opacity: 0; transition: all 1s; } .progress-bar>div>[data-trigger="null"] span { opacity: 1; } .progress-circle { position: relative; margin: auto; } .progress-circle .content { position: absolute; text-align: center; top: 50%; left: 50%; transform: translateX(-50%) translateY(-50%); width: 100%; padding: 0 30px; } .progress-circle h4 { margin: 0 0 5px 0; } .progress-circle p { margin: 0; font-size: 14px; } .progress-circle .counter { margin: 0; font-size: 25px; } .progress-circle p+.counter, .progress-circle h4+.counter { margin: 15px 0 0 0; } /* ------------------------------------------------------------------- COUNTER - COMPONENTS ------------------------------------------------------------------- */ .counter h3 { font-size: 18px; margin: 0 0 10px 0; } .counter-horizontal i { margin-right: 10px; } .counter-horizontal.counter-icon { display: flex; align-items: center; } .counter-horizontal.counter-icon>i { font-size: 30px; display: block; text-align: left; padding-right: 15px; } .counter-vertical i { margin-bottom: 15px; display: inline-block; } /* ------------------------------------------------------------------- COUNTDOWN - COMPONENTS ------------------------------------------------------------------- */ .countdown h3 { font-size: 18px; margin: 0; } .countdown p { margin: 0; } .countdown [data-time] { display: flex; } .countdown [data-time]>div { padding-right: 15px; } .countdown h3 { margin-bottom: 15px; } .countdown p { margin-top: 10px; } .countdown-horizontal [data-time]>div>span:first-child { padding-right: 5px; } .countdown-vertical [data-time]>div>span { display: block; } /* ------------------------------------------------------------------- TIMELINE - COMPONENTS ------------------------------------------------------------------- */ .timeline>div { position: relative; margin-bottom: 30px; transition: all .5s; } .timeline>div:hover { transform: translateX(5px) } .timeline .badge { position: absolute; left: calc(70% + 60px); } .timeline .badge p { font-weight: 600; font-size: 25px; margin: 30px 0 15px 0; } .timeline .badge span { display: block; font-size: 14px; } .timeline .panel { width: 70%; padding: 30px 60px; border-radius: 3px; } .timeline>div:last-child { padding-bottom: 0; margin-bottom: 0; } .timeline>div:last-child .panel { margin-bottom: 0; } .timeline>div.inverted .badge { left: auto; right: calc(70% + 60px); } .timeline>div.inverted .panel { margin-left: 30%; } .timeline>div.inverted:hover { transform: translateX(-15px) } /* ------------------------------------------------------------------- LIST NAVIGATION - COMPONENT ------------------------------------------------------------------- */ .list-nav { display: flex; margin-top: 30px; } .list-nav a { position: relative; text-decoration: none; transition: all .5s; } .list-nav a.list-archive { width: 30px; height: 30px; margin: 0 30px; font-size: 25px; text-align: center; } .list-nav a.list-archive:before, .list-nav a:first-child:before, .list-nav a:last-child:before { content: "\64"; font-family: "Icons"; text-transform: none; font-weight: 400; } .list-nav a:first-child:before, .list-nav a:last-child:before { position: absolute; font-size: 20px; } .list-nav a:first-child { padding-left: 40px; } .list-nav a:last-child { padding-right: 40px; } .list-nav a:first-child:before { content: "\68"; left: 0; } .list-nav a:last-child:before { content: "\67"; left: auto; right: 0; } .list-nav.align-right { justify-content: flex-end; } .list-nav.align-center { justify-content: center; } .list-nav a:not(.list-archive):empty { display: none; } div.list-nav a:empty+a.list-archive { margin-left: 0; } /* ------------------------------------------------------------------- TAGS - COMPONENT ------------------------------------------------------------------- */ .list-tags { margin: -5px; } .list-tags a { display: inline-block; padding: 3px 12px; border-radius: 3px; transition: all .5s; margin: 5px; font-size: 13px; cursor: pointer; } /* ------------------------------------------------------------------- TABLE - COMPONENT ------------------------------------------------------------------- */ .table { width: 100%; border-spacing: 0; table-layout: fixed; } .table th { font-weight: 600; } .table th, .table td { text-align: left; padding: 5px 10px; } .table.align-center th, .table.align-center td { text-align: center; } .table.align-right th, .table.align-right td { text-align: center; } .table:not(.table-border):not(.table-full-border) { margin: -5px -10px; width: calc(100% + 20px); } .table-border td, .table-border th, .table-full-border td, .table-full-border th { border-style: solid; border-width: 1px; border-right: none; border-top: none; padding: 10px; } .table-border tbody tr td:first-child, .table-border thead tr:first-child th:first-child { border-left: none; padding-left: 0; } .table-border tbody tr:last-child td { border-bottom: none; padding-bottom: 0; } .table-full-border { border-radius: 3px; border-style: solid; border-width: 1px; } .table-full-border th { border-top: none; } .table-full-border th:first-child, .table-full-border td:first-child { border-left: none; } .table-full-border td:last-child { border-right: none; } .table-full-border tr:last-child td { border-bottom: none; } .table-grid:not(.table-border):not(.table-full-border) { margin: -30px; width: calc(100% + 60px); } .table-grid td, .table-grid.table-border tbody tr td:first-child, .table-grid.table-border tbody tr:last-child td { padding: 30px; } .table-grid td>img { max-width: 100%; display: block; } .table-grid.no-padding-y.table-border tbody tr td { padding-top: 0; padding-bottom: 0; vertical-align: top; } .table-grid.table-border.align-left tbody tr td:first-child { padding-left: 0; } .table-columns { display: block; } .table-columns tbody { width: 100%; display: block; } .table-columns>tbody>tr { display: flex; justify-content: space-between; } .table-columns td { display: block; padding: 0 30px; width: 100%; } .table.table-columns:not(.table-border):not(.table-full-border) { margin: 0 -30px; width: calc(100% + 60px); } /* ------------------------------------------------------------------- IMAGE BOX - COMPONENT ------------------------------------------------------------------- */ .img-box { position: relative; overflow: hidden; display: block; border-radius: 3px; transition: all .5s; } .img-box:before { content: ""; opacity: 0; left: 0; right: 0; top: 0; bottom: 0; height: 100%; background: #000; position: absolute; border-radius: 4px; transition: all .5s; } .img-box:hover:before { transition: all 0s; } .img-box:hover, .light .img-box:hover, .img-box:hover:before { opacity: 1; } .img-box img { max-width: 100%; display: block; position: relative; border-radius: 3px; transition: all .5s; } .img-box:hover img { opacity: .8; } .img-box-caption span { position: absolute; bottom: 0; width: 100%; padding: 5px 15px; color: #FFF; font-size: 12px; } .img-box>i { position: absolute; width: 30px; height: 30px; top: 50%; left: 50%; margin-top: -15px; margin-left: -15px; text-align: center; line-height: 30px; color: #fff; text-decoration: none; font-size: 25px; z-index: 5; } img { max-width: 100%; display: inline-block; } .img-grayscale { filter: grayscale(100%); } .img-png:hover, .img-png:before { background: none; } .img-png:hover img { margin: auto !important; height: auto !important; width: auto !important; } /* # CONTAINERS =================================================================== ------------------------------------------------------------------- TABS - CONTAINER ------------------------------------------------------------------- */ .tab-box>.panel:not(.active) { display: none; } .tab-nav { padding: 0; margin: 0 0 30px 0; list-style: none; display: flex; } .tab-nav li { list-style: none; } .tab-center>.tab-nav { justify-content: center; } .tab-right>.tab-nav { justify-content: flex-end; } .tab-left>.tab-nav { justify-content: flex-start; } .tab-justify>.tab-nav { justify-content: space-between; } .tab-justify>.tab-nav li { width: 100%; } .tab-inverse>.tab-nav { margin: 30px 0 0 0; } .tab-nav li a { text-decoration: none; display: block; padding: 10px 15px; border-radius: 3px; border-style: solid; border-width: 1px; margin: 0 15px; font-size: 15px; text-align: center; position: relative; transition: all .5s; } .tab-nav li:first-child a { margin-left: 0; } .tab-nav li:last-child a { margin-right: 0; } .tab-icon>.tab-nav a { padding-left: 45px; } .tab-icon>.tab-nav a i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); } .tab-vertical { display: flex; } .tab-vertical>.tab-nav { display: block; padding: 0 30px 0 0; flex: 0 0 25%; max-width: 25%; } .tab-vertical>.tab-nav li a { margin: 15px 0; } .tab-vertical li:first-child a { margin-top: 0; } .tab-vertical li:last-child a { margin-bottom: 0; } .tab-vertical>.panel { flex: 0 0 75%; max-width: 75%; } .tab-vertical.tab-inverse>.tab-nav { padding: 0 0 0 30px; margin: 0; } .tab-vertical.tab-icon>.tab-nav li a { text-align: left; } .tab-vertical.tab-md-2>.tab-nav { flex: 0 0 16.666667%; max-width: 16.666667%; } .tab-vertical.tab-md-2>.panel { flex: 0 0 83.333333%; max-width: 83.333333%; } .tab-vertical.tab-md-4>.tab-nav { flex: 0 0 33.333333%; max-width: 33.333333%; } .tab-vertical.tab-md-4>.panel { flex: 0 0 66.666666%; max-width: 66.666666%; } .tab-nav li.active a, .tab-nav li:hover a { color: #FFF; } .tab-nav.align-right { justify-content: flex-end; } .tab-nav.align-center { justify-content: center; } /* ------------------------------------------------------------------- GRID LIST AND MOSONRY LIST - CONTAINER ------------------------------------------------------------------- */ .maso-item { padding: 15px; position: relative; } .maso-box { margin: -15px; display: flex; flex-wrap: wrap; } .maso-list>.menu-inner { margin-bottom: 30px; } .maso-list.no-gap .maso-box { margin: 0; } .maso-list.no-gap .maso-item { padding: 0; } .isotope-hidden { visibility: hidden !important; transform: scale(0); max-height: 0; overflow: hidden; } .grid-item { padding: 0; margin: 0; min-width: 0; position: relative; } .grid-item img, .maso-item img { display: block; } .grid-itemnews { padding: 0; margin: 0; min-width: 0; position: relative; } .grid-itemnews img, .maso-item img { display: block; } .grid-box { display: grid; grid-gap: 30px; } .grid-boxnews { display: grid; grid-gap: 30px; } .no-gap>div { grid-gap: 0; } .maso-order { width: 17px; cursor: pointer; } .maso-order:before { font-family: "Icons"; content: "\68"; position: absolute; top: 50%; left: 0; transition: all .5s; transform: translateY(-50%) rotate(-90deg); text-transform: none; } .maso-order[data-sort=desc]:before { transform: translateY(-50%) rotate(90deg); } .maso-layout .maso-item:nth-child(3n+0) .img-box { height: 550px; } .maso-layout .maso-item:nth-child(2n+0) .img-box { height: 350px; } .maso-layout .maso-item:nth-child(4n+0) .img-box { height: 250px; } .maso-layout .maso-item:nth-child(1) .img-box { height: 450px; } /* ------------------------------------------------------------------- PAGINATION AND LOAD MORE - CONTAINER ------------------------------------------------------------------- */ .list-pagination { padding-top: 30px; } .pagination { position: relative; list-style: none; display: flex; align-items: center; margin: 0 -15px 0 -15px; padding: 0; } .pagination li { list-style: none; } .pagination li a { text-decoration: none; padding: 0 15px; position: relative; transition: all .5s; } .pagination li.disabled a { opacity: .5; cursor: default; } .pagination li.page a { font-weight: 600; width: 35px; height: 35px; line-height: 35px; border-style: solid; border-width: 1px; border-radius: 50%; text-align: center; display: block; padding: 0; margin: 0 5px; } .pagination li.page:hover a, .pagination li.page.active a { color: #FFF; } .pagination .last, .pagination .first { display: none; } .pagination .prev a { margin-right: 15px; padding-left: 45px; } .pagination .next a { margin-left: 15px; padding-right: 45px; } .pagination .prev a:before, .pagination .next a:before { font-family: "Icons"; position: absolute; top: 50%; transform: translateY(-50%); text-transform: none; display: block; } .pagination .prev a:before { content: "\68"; left: 15px; } .pagination .next a:before { content: "\67"; right: 15px; } .pagination-lg { margin-top: 15px; } .pagination-lg li { font-size: 20px; } .pagination-lg li.page a { width: 45px; height: 45px; line-height: 45px; margin: 0 10px; } .pagination.align-center { justify-content: center; } .pagination.align-right { justify-content: flex-end; } /* ------------------------------------------------------------------- SCROLL BOX - CONTAINER ------------------------------------------------------------------- */ .scroll-box { padding-right: 15px; } .scroll-box>* { margin-top: 0; } .scroll-box:after { content: ""; position: absolute; height: 50px; bottom: 0; left: 0; right: 0; width: 100%; background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 100%); } .scroll-pos-bottom.scroll-box:after { display: none; } /* ------------------------------------------------------------------- COLLAPSE BOX - CONTAINER ------------------------------------------------------------------- */ .collapse-box>.content * { margin-top: 0; } .collapse-box>.content { overflow: hidden; display: none; position: relative; } .collapse-box>.content:after { content: ""; position: absolute; height: 50px; bottom: 0; left: 0; right: 0; width: 100%; background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(0, 0, 0, 0) 100%); transition: opacity .5s; } .collapse-box.open>.content:after { opacity: 0; } .collapse-button>a { position: relative; margin-top: 10px; padding-left: 30px; cursor: pointer; display: inline-block; } .collapse-button>a:before { font-family: "Icons"; content: "\68"; position: absolute; top: 50%; left: 0; transition: all .5s; transform: translateY(-50%) rotate(-90deg); text-transform: none; } .collapse-box.open .collapse-button>a:before { transform: translateY(-50%) rotate(90deg); } /* ------------------------------------------------------------------- ACCORDION LIST - CONTAINER ------------------------------------------------------------------- */ .accordion-list { list-style: none; padding: 0; margin: 0; } .accordion-list>li { list-style: none; padding: 0; margin: 0; border-bottom-style: solid; border-bottom-width: 1px; } .accordion-list>li:first-child { border-top-style: solid; border-top-width: 1px; } .accordion-list>li.active { padding: 0 0 15px 0; } .accordion-list>li>a { display: block; text-decoration: none; padding: 10px 0 10px 25px; position: relative; transition: all .5s; } .accordion-list>li.active>a:before { transform: rotate(90deg); } .accordion-list>li>a:before { content: "\67"; font-family: "Icons"; position: absolute; left: -5px; top: 50%; margin-top: -9px; width: 20px; height: 20px; font-size: 20px; line-height: 20px; transition: all .5s; opacity: .6; } .accordion-list>li>a:hover:before { opacity: 1; } .accordion-list>li>.content { height: 0; display: none; overflow: hidden; } .accordion-list>li>.content>* { margin-top: 0; margin-bottom: 0; } /* ------------------------------------------------------------------- ALBUM - CONTAINER ------------------------------------------------------------------- */ .album-list { display: grid; grid-gap: 30px; grid-template-columns: 1fr 1fr 1fr; } .album-box { position: relative; } .album-box .caption { position: absolute; bottom: 30px; left: 50px; cursor: pointer; } .album-box .caption h3 { margin: 0; } .album-box:hover .img-box:before { opacity: 1; transition: all 0s; } .album-box:hover .img-box img { opacity: .8; } .album-item:not(.active) { display: none; } .album-item { opacity: 0; } .cnt-album-box, .album.active .album-list { display: none; } .album.active .cnt-album-box { display: block; } .album-title { margin-bottom: 30px; } .album-title>a { display: inline-block; position: relative; margin-left: 30px; padding-left: 30px; transition: all .5s; cursor: pointer; } .album-title>a:before { font-family: "Icons"; content: "\68"; position: absolute; top: 50%; left: 0; transform: translateY(-50%); text-transform: none; } /* ------------------------------------------------------------------- COLUMNS - CONTAINER ------------------------------------------------------------------- */ [data-columns='1']>div, .box-steps[data-columns='1'] { grid-template-columns: 1fr; } [data-columns='2']>div, .box-steps[data-columns='2'] { grid-template-columns: 1fr 1fr; } [data-columns='3']>div, .box-steps[data-columns='3'] { grid-template-columns: 1fr 1fr 1fr; } [data-columns='4']>div, .box-steps[data-columns='4'] { grid-template-columns: 1fr 1fr 1fr 1fr; } [data-columns='5']>div, .box-steps[data-columns='5'] { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; } [data-columns='6']>div, .box-steps[data-columns='6'] { grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; } [data-columns='1'] .maso-item { flex: 0 0 100%; max-width: 100%; } [data-columns='2'] .maso-item { flex: 0 0 50%; max-width: 50%; } [data-columns='3'] .maso-item { flex: 0 0 33.333333%; max-width: 33.333333%; } [data-columns='4'] .maso-item { flex: 0 0 25%; max-width: 25%; } [data-columns='5'] .maso-item { flex: 0 0 20%; max-width: 20%; } [data-columns='6'] .maso-item { flex: 0 0 16.666666%; max-width: 16.666666%; } .fixed-area { z-index: 95; } /* # FOOTER =================================================================== */ footer>.container { padding-top: 80px; padding-bottom: 80px; } .footer-bar { border-top-style: solid; border-top-width: 1px; } .footer-bar>.container { padding-top: 15px; padding-bottom: 15px; font-size: 12px; letter-spacing: .5px; } .footer-bar>.container>span:last-child { float: right; } .footer-wide .container { max-width: 100%; } .footer-parallax { position: fixed; bottom: 0; left: 0; right: 0; z-index: -121; } .footer-parallax-cnt { position: relative; z-index: 1; } footer a { text-decoration: none; } i.scroll-top-btn { position: fixed; bottom: 15px; right: 15px; width: 35px; height: 35px; display: none; box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.17); border-radius: 50%; background: #FFF; text-align: center; cursor: pointer; z-index: 999995; transition: all .5s; } i.scroll-top-btn:hover { margin-bottom: 5px; } i.scroll-top-btn.show { display: block; } i.scroll-top-btn:before { font-family: "Icons"; font-style: normal; font-weight: normal; transform: rotate(90deg); content: "\68"; position: absolute; left: 0; right: 0.5px; font-size: 22px; line-height: 32px; text-transform: none; } /* # ANIMATIONS =================================================================== */ [data-hidden] .anima, [data-anima]:not([data-trigger=hover]) .anima { opacity: 0; } @keyframes ken-burn-in { 0% { transform: scale(1.2); } 100% { transform: scale(1); } } .ken-burn-in>img { animation: ken-burn-in 13s; transform-origin: bottom left; transform: scale(1.2); } .ken-burn-center>img { animation: ken-burn-in 10s; transform: scale(1.2); } .ken-burn-out>img { transform-origin: bottom left; transform: scale(1.1) !important; transition: transform 10s; } @keyframes rotate { 0% { transform: rotate(0); } 100% { transform: rotate(20deg); } } @keyframes scale { 0% { transform: scale(1); } 100% { transform: scale(1.2); } } .rotate { animation: rotate .5s; transform: rotate(20deg); opacity: 1; } @keyframes scale-rotate { 0% { transform: scale(1) rotate(0); } 100% { transform: scale(1.2) rotate(4deg); } } @keyframes fadein { 0% { opacity: 0; } 100% { opacity: 1; } } @keyframes fadeleft { 0% { opacity: 0; transform: translateX(-100px); } 100% { opacity: 1; transform: translateX(0); } } @keyframes faderight { 0% { opacity: 0; transform: translateX(100px); } 100% { opacity: 1; transform: translateX(0); } } @keyframes fadetop { 0% { opacity: 0; transform: translateY(-100px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes fadebottom { 0% { opacity: 0; transform: translateY(100px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes pulse { from { transform: scale(1); transform-origin: center center; animation-timing-function: ease-out; } 10% { transform: scale(0.91); animation-timing-function: ease-in; } 17% { transform: scale(0.98); animation-timing-function: ease-out; } 33% { transform: scale(0.87); animation-timing-function: ease-in; } 45% { transform: scale(1); animation-timing-function: ease-out; } } @keyframes pulse-horizontal { 16.65% { transform: translateX(8px); } 33.3% { opacity: 1; transform: translateX(-6px); } 49.95% { transform: translateX(4px); } 66.6% { transform: translateX(-2px); } 83.25% { transform: translateX(1px); } 100% { transform: translateX(0); } } @keyframes show-scale { 0% { opacity: 0; transform: scale(0); } 100% { opacity: 1; transform: scale(1); } } @keyframes ping { 0% { transform: scale(0.2); opacity: 0.8; } 80% { transform: scale(1.2); opacity: 0; } 100% { transform: scale(2.2); opacity: 0; } } .scale, .scale-rotate, .fade-in, .fade-left, .fade-right, .fade-top, .fade-bottom, .show-scale, .pulse, .pulse-horizontal { opacity: 1 !important; } .img-scale:hover img, .img-scale-rotate img, img-pulse img, .img-pulse-horizontal img { transition: all .5s; } .scale, .img-scale:hover img { animation: scale .5s; transform: scale(1.2); } i.scale { transform: scale(1.2); } .scale-rotate, .img-scale-rotate:hover img { transform: scale(1.2) rotate(4deg); animation: scale-rotate .5s; } .fade-in { animation: fadein .5s; } .fade-left { animation: fadeleft .5s; } .fade-right { animation: faderight .5s; } .fade-top { animation: fadetop .5s; } .fade-bottom { animation: fadebottom .5s; } .show-scale { animation: show-scale .5s; } .pulse, .img-pulse:hover img, .btn-video:after { animation-name: pulse; animation-duration: 1.5s; animation-timing-function: ease-in-out; } .pulse-horizontal, .img-pulse-horizontal:hover img { animation-name: pulse-horizontal; animation-duration: 1s; animation-timing-function: ease-in-out; animation-iteration-count: 1; } .ping, .btn-video:before { animation: ping 0.8s ease-in infinite both; } /* # RESPONSIVE =================================================================== ------------------------------------------------------------------- Large devices (desktops, less than 1200px) ------------------------------------------------------------------- */ @media (max-width: 1199.98px) { .hidden-lg { display: none !important; } [data-columns-lg='1']>div { grid-template-columns: 1fr; } [data-columns-lg='2']>div { grid-template-columns: 1fr 1fr; } [data-columns-lg='3']>div { grid-template-columns: 1fr 1fr 1fr; } [data-columns-lg='4']>div { grid-template-columns: 1fr 1fr 1fr 1fr; } [data-columns-lg='1'] .maso-item { flex: 0 0 100%; max-width: 100%; } [data-columns-lg='2'] .maso-item { flex: 0 0 50%; max-width: 50%; } [data-columns-lg='3'] .maso-item { flex: 0 0 33.333333%; max-width: 33.333333%; } [data-columns-lg='4'] .maso-item { flex: 0 0 25%; max-width: 25%; } [data-columns-lg='5'] .maso-item { flex: 0 0 20%; max-width: 20%; } [data-columns-lg='6'] .maso-item { flex: 0 0 16.666666%; max-width: 16.666666%; } } /* ------------------------------------------------------------------- Medium devices (tablets, less than 992px) ------------------------------------------------------------------- */ @media (max-width: 991.98px) { /* ------------------------------------------------------------------- Layout ------------------------------------------------------------------- */ [class*=col-lg-]+[class*=col-lg-] { margin-top: 30px; } .col-md-6+.col-md-6+.col-md-6 { margin-top: 30px; } .col-md-6+.col-md-6, .col-md-4+.col-md-4 { margin-top: 0; } .row.justify-content-around { margin-right: -30px; margin-left: -30px; } /* ------------------------------------------------------------------- Responsive classes ------------------------------------------------------------------- */ .no-margin-md { margin: 0 !important; } [class*=col-lg-]+[class*=col-lg-]:not( [class*=col-md-]).no-margin-md, .full-width-md+.full-width-md { margin-top: 15px !important; } .full-width-md { width: 100% !important; } .hidden-md { display: none !important; } .align-left-md { text-align: left; } .align-right-md { text-align: right; } .align-center-md { text-align: center; } .icon-links.align-center-md, .list-nav.align-center-md { justify-content: center; } .icon-links.align-left-md, .list-nav.align-left-md { justify-content: flex-start; } /* ------------------------------------------------------------------- Components ------------------------------------------------------------------- */ .form-box [class*=col-lg-]+[class*=col-lg-] { margin-top: 0 !important; } form.form-inline .btn { margin-left: 0; width: 100%; } .menu-inner:not(.menu-inner-vertical) { overflow: hidden; } .menu-inner:not(.menu-inner-vertical)>ul { height: 0; display: block; } .menu-inner.active>ul { height: auto; } .menu-inner:not(.menu-inner-vertical)>div { display: block; } .menu-inner:not(.menu-inner-vertical)>ul>li:not(:last-child) { margin-right: 0; } .menu-inner:not(.menu-inner-vertical) .dropdown ul { border: none; } .menu-inner:not(.menu-inner-vertical) .dropdown-submenu a:after { transform: translateY(-50%) rotate(90deg); right: 0; } .menu-inner .menu-btn { z-index: 1; } .table-6-md td, .table-6-md th { display: block; border-top: none; border-bottom: none; } .table-6-md tr { display: grid; grid-template-columns: 1fr 1fr; } .table-6-md td:nth-child(2n+1), .table-6-md.table-grid.table-border tbody td:nth-child(2n+1) { border-left: none; } .table-6-md.align-left td:nth-child(2n+1), .table-6-md.align-left.table-grid.table-border tbody td:nth-child(2n+1) { padding-left: 0; } /* ------------------------------------------------------------------- Containers ------------------------------------------------------------------- */ [data-columns-md='1']>div { grid-template-columns: 1fr; } [data-columns-md='2']>div { grid-template-columns: 1fr 1fr; } [data-columns-md='3']>div { grid-template-columns: 1fr 1fr 1fr; } [data-columns-md='4']>div { grid-template-columns: 1fr 1fr 1fr 1fr; } [data-columns-md='1'] .maso-item { flex: 0 0 100%; max-width: 100%; } [data-columns-md='2'] .maso-item { flex: 0 0 50%; max-width: 50%; } [data-columns-md='3'] .maso-item { flex: 0 0 33.333333%; max-width: 33.333333%; } [data-columns-md='4'] .maso-item { flex: 0 0 25%; max-width: 25%; } [data-columns-md='5'] .maso-item { flex: 0 0 20%; max-width: 20%; } [data-columns-md='6'] .maso-item { flex: 0 0 16.666666%; max-width: 16.666666%; } .scroll-box.disable-md:after { display: none; } /* ------------------------------------------------------------------- Sections ------------------------------------------------------------------- */ .section-map>.container { max-width: 360px; } /* ------------------------------------------------------------------- Navigation ------------------------------------------------------------------- */ body>nav { height: 50px; } body>nav .menu-brand { max-width: calc(100% - 60px); } body>nav .menu-brand>a { display: flex; align-items: center; } body>nav>.container, body>.menu-mini>.container { max-width: 100%; } .menu-btn { display: block; z-index: 9999; } .dropdown-submenu>a:after, .menu-side:not(.menu-side-collapse) li>a:after { transform: translateY(-50%) rotate(90deg); } .menu-cnt>ul>li>a, .dropdown>ul>li>a, .dropdown-submenu>ul>li>a { padding: 0 30px; } .menu-cnt { height: 0; overflow: hidden; position: absolute; top: 100%; background: #FFF; left: 0; width: 100%; transition: height .5s; display: block; } nav.light .menu-cnt a { color: rgb(68, 68, 68) !important; } nav.align-right .menu-cnt { display: block; } nav.active .menu-cnt { box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.08); z-index: 9995; } body>nav.menu-fixed .menu-cnt { overflow-y: scroll; } .menu-cnt>ul, .menu-cnt>.menu-right { float: none; display: block; width: 100%; height: auto; } .menu-cnt>ul { margin: 0; } .menu-cnt>.menu-right { padding: 15px 0 0 0; margin: 0; height: auto; } .search-bar input[type=text] { width: 100%; } .search-box-menu { border-style: solid; border-width: 1px; border-radius: 3px; } .search-box-menu>input[type=text] { display: block; position: static; box-shadow: none; height: 25px; padding: 5px; } .search-box-menu>i { display: none; } .menu-right>* { margin: 30px; } .shop-menu-cnt>i { position: relative; text-align: left; } .shop-menu-cnt .cart-count { right: 15px; } .shop-menu-cnt .shop-menu { position: static; transform: none; margin: 0 -15px; box-shadow: none; width: auto; } .shop-menu-cnt:not(.active) .shop-menu, .dropdown:not(.active)>ul, .dropdown:hover>ul, .dropdown:hover .mega-menu, .mega-dropdown:hover .mega-menu { display: none; } .shop-menu-cnt.active .shop-menu, .dropdown.active>ul, .dropdown.active>ul, .dropdown.active .mega-menu, .dropdown-submenu>ul, .mega-dropdown.active .mega-menu { display: block; } .menu-right>.lan-menu { margin: 15px; } .lan-menu a { text-align: left; } .dropdown ul:not(.icon-list), .dropdown.icon-list>ul, .dropdown-submenu>ul, .mega-dropdown .mega-menu, .dropdown .mega-menu { position: static; box-shadow: none; } .menu-big-box { padding-bottom: 0; } .menu-big-box .menu-box { height: auto; display: block; float: left; width: calc(100% + 30px); position: static; margin: 0 -15px 0 -15px; } .menu-big-box.active .menu-box { display: none; } .menu-big-box.menu-fixed.scroll-menu .menu-box { display: none; } body>nav.menu-side { padding: 0 15px; } .menu-side .bottom-area { display: none; position: fixed; background: #FFF; left: 0; bottom: 0; right: 0; padding: 0 15px 15px; } .menu-side.active .bottom-area { display: block; } .menu-side:not(.menu-side-collapse) li>a:after { transform: translateY(-50%) rotate(90deg); } .menu-mini .lan-menu li ul { top: 100%; position: absolute; } .mega-menu .col>h5:first-child { margin-top: 30px; } .mega-menu .col:first-child>h5:first-child { margin-top: 0; } .mega-menu .tab-box>.panel.active { display: block; } /* ------------------------------------------------------------------- Footer ------------------------------------------------------------------- */ i.scroll-top-btn { display: block; } .footer-bar>.container>span:last-child { float: none; } } /* ------------------------------------------------------------------- Small devices (landscape phones, less than 768px) ------------------------------------------------------------------- */ @media (max-width: 767.98px) { /* ------------------------------------------------------------------- Layout ------------------------------------------------------------------- */ [class*=col-]:not([class*=col-sm])+[class*=col-]:not([class*=col-sm]) { margin-top: 30px; } /* ------------------------------------------------------------------- Responsive classes ------------------------------------------------------------------- */ .no-margin-sm { margin: 0 !important; } [class*=col-lg-]+[class*=col-lg-].no-margin-sm, .full-width-sm+.full-width-sm { margin-top: 15px !important; } .full-width-sm { width: 100% !important; } .hidden-sm { display: none !important; } .align-left-sm { text-align: left; } .align-right-sm { text-align: right; } .align-center-sm { text-align: center; } /* ------------------------------------------------------------------- Components ------------------------------------------------------------------- */ .table-full-sm tr { display: block; } .table-full-sm { margin-top: -15px; margin-bottom: -15px; } .table-full-sm td, .table-full-sm th { width: 100%; border-right: none; border-left: none; display: block; padding: 15px 0 !important; } .table-border.table-full-sm tbody tr:last-child td:not(:last-child) { border-bottom-style: solid; border-bottom-width: 1px; } .btn:not(.full-width)+.btn.full-width-sm { margin-left: 0; } /* ------------------------------------------------------------------- Containers ------------------------------------------------------------------- */ [data-columns-sm='1']>div { grid-template-columns: 1fr; } [data-columns-sm='2']>div { grid-template-columns: 1fr 1fr; } [data-columns-sm='3']>div { grid-template-columns: 1fr 1fr 1fr; } [data-columns-sm='4']>div { grid-template-columns: 1fr 1fr 1fr 1fr; } [data-columns-sm='1'] .maso-item { flex: 0 0 100%; max-width: 100%; } [data-columns-sm='2'] .maso-item { flex: 0 0 50%; max-width: 50%; } [data-columns-sm='3'] .maso-item { flex: 0 0 33.333333%; max-width: 33.333333%; } [data-columns-sm='4'] .maso-item { flex: 0 0 25%; max-width: 25%; } [data-columns-sm='5'] .maso-item { flex: 0 0 20%; max-width: 20%; } [data-columns-sm='6'] .maso-item { flex: 0 0 16.666666%; max-width: 16.666666%; } .scroll-box.disable-sm:after { display: none; } .tab-nav { display: block; } .tab-nav li a { margin: 10px 0; } /* ------------------------------------------------------------------- Sections ------------------------------------------------------------------- */ .section-block-full>.container>.row>.col:first-child { padding: 0 30px; } .section-block>.block-media { width: 100%; } .section-block>.container>.row { display: block; } .section-block>.block-media, .section-block>.block-media>div { position: relative; height: 400px; } .section-block>.container>.row>.col:first-child:before, .section-block-full.section-block-right>.container>.row>.col:first-child:before { right: auto; left: 50%; top: -144px; transform: rotate(-90deg) translateY(-50%); margin: 0; } .section-block>.container>.row>.col:last-child { position: absolute; top: 0; left: 50%; height: 400px; transform: translateX(-50%); padding-top: 100px; padding-bottom: 100px; } .section-block:not(.section-block-full)+.section-base, .section-map+.section-base { border-top-style: solid; border-top-width: 1px; } .section-block-full>.container>.row>.col, .section-block-full>.container>.row>.col:first-child { max-width: 100%; margin: 0; } main>.section-map { padding-top: 0; } .section-map>.google-map { position: relative !important; height: 300px; } .section-map>.container { max-width: 540px; width: 100%; left: auto; margin: 0 auto; padding: 100px 15px 0 15px; } body>header .breadcrumb { display: none; } } /* ------------------------------------------------------------------- Extra small devices (portrait phones, less than 576px) ------------------------------------------------------------------- */ @media (max-width: 575.98px) { .hidden-xs { display: none !important; } .visible-xs { display: block !important; } .no-margin-xs { margin: 0 !important; } .btn-sm { padding: 5px 20px; font-size: 14px; } .table-6-md tr { grid-template-columns: 1fr; } .table-6-md td { border: none; } .table-grid td, .table-grid.table-border tbody tr td:first-child, .table-grid.table-border tbody tr:last-child td { padding: 15px; } .table.align-left td { padding-left: 0 !important; } .table, .table tbody, .table tr, .table thead, .table th, .table td { display: block; border: none; padding: 0; } .table:not(.table-grid) tr { padding-bottom: 15px; margin-bottom: 15px; border-bottom-style: solid; border-bottom-width: 1px; } table.table-grid td { padding: 30px 0; } table.table-grid tr:first-child td:first-child { padding-top: 0; } table.table-grid tr:last-child td:last-child { padding-bottom: 0; } .table.table-columns:not(.table-border):not(.table-full-border) { margin: 0 -15px; width: calc(100% + 30px); } .table-columns td { display: block; padding: 0 15px; } .table tbody tr:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; } .table.boxed-area { padding: 30px; } .table.boxed-area td { padding: 0 0 30px 0 !important; } .table.boxed-area tr:last-child td:last-child { padding: 0 !important; } .pagination .next a { margin-left: 0; padding-right: 35px; } .pagination .prev a { margin-right: 0; padding-left: 35px; } .cnt-call { padding: 30px; } .col-md-6+.col-md-6 { margin-top: 30px; } .cnt-box-blog-side { display: block; } body .cnt-box-blog-side { display: block; } body .cnt-box-blog-side>.img-box { width: 100%; height: 200px; border-bottom-left-radius: 0; border-bottom-right-radius: 0; } body .cnt-box-blog-side>.caption { width: 100%; padding-left: 0; } .icon-list-horizontal { display: block; } .list-nav a:not(.list-archive) { text-indent: -9995px; width: 33.333%; } .list-nav { justify-content: space-between; } .list-nav a:before { text-indent: 0; } .list-nav.align-left-xs { justify-content: flex-start; } .list-nav.align-left-xs .list-archive { margin-left: 0; } [data-columns-xs='1']>div { grid-template-columns: 1fr; } [data-columns-xs='2']>div { grid-template-columns: 1fr 1fr; } [data-columns-xs='3']>div { grid-template-columns: 1fr 1fr 1fr; } [data-columns-xs='4']>div { grid-template-columns: 1fr 1fr 1fr 1fr; } [data-columns-xs='1'] .maso-item { flex: 0 0 100%; max-width: 100%; } [data-columns-xs='2'] .maso-item { flex: 0 0 50%; max-width: 50%; } [data-columns-xs='3'] .maso-item { flex: 0 0 33.333333%; max-width: 33.333333%; } [data-columns-xs='4'] .maso-item { flex: 0 0 25%; max-width: 25%; } [data-columns-xs='5'] .maso-item { flex: 0 0 20%; max-width: 20%; } [data-columns-xs='6'] .maso-item { flex: 0 0 16.666666%; max-width: 16.666666%; } .box-steps { grid-template-columns: 1fr; } } /* ------------------------------------------------------------------- Inverted responsive classes ------------------------------------------------------------------- */ @media (min-width: 992.98px) { .visible-md { display: none; } } @media (min-width: 767.98px) { .visible-sm { display: none; } } @media (min-width: 576px) { .visible-xs { display: none; } }
0.291082
0.060114
@import url('jqmodal.css'); @import url('jquery.tooltip.css'); @import url('jquery.treeview.css'); @import url('jquery.supercomboselect.css'); @import url('markitup.css'); @import url('jquery-ui-1.8.17.custom.css'); * { margin: 0; padding: 0; outline-style: none; } html, body { height: 100%; overflow: hidden; } body { background-color: #333; font-family: 'Lucida Grande', Verdana, Arial, Helvetica, Sans-serif; margin: 0; padding: 0; font-size: 11px; color: #333; } h1 { font-size: 20px; margin-bottom: 10px; } h2 { font-size: 16px; margin-bottom: 10px; } h3 { font-size: 12px; margin: 15px 0 3px 0; } a { color: #0e3e7e; text-decoration: none; } img { border: 0; max-width: 100%; } a:hover { text-decoration: underline; } a:visited { color: #4679bd;} p { margin: 5px 0 15px 0; } option { margin: 0 2px; } input,select,textarea { font-size: 11px; font-family: 'Lucida Grande', Verdana, Arial, Helvetica, Sans-serif; } textarea { min-height: 40px; overflow: auto; resize: vertical; /*width: 100%;*/ } ul { margin-bottom: 10px; } ul ul { margin: 10px; } optgroup { color: #000; font-style: normal; font-weight: normal; } optgroup option { padding-left: 10px; } fieldset { border-top: 5px solid #eee; border-left: none; border-right: none; border-bottom: none; margin: 0; padding: 20px 0 10px 0; } legend { padding: 5px 30px 5px 5px; font-size: 12px; background-color: #eee; font-weight: bold; text-align: left; } iframe { border: none; } /*---------------------------------------------------------------------------------------------------- UI FORM FIELDS Inspired by Zero Design http://www.getfuelcms.com/forums/discussion/470/updated-admin-ui/#Item_13 ----------------------------------------------------------------------------------------------------*/ ::-moz-focus-inner { border: 0; padding: 0; } input[type="search"]::-webkit-search-decoration { display: none; } input, button, select, textarea { margin: 0; } input[type="radio"], input[type="checkbox"] { position: relative; top: 1px; /* IE8, IE9, IE10 */ top: 0\0; /* IE7 */ *top: -3px; } button, input[type="reset"], input[type="submit"], input[type="button"] { -webkit-appearance: none; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-background-clip: padding; -webkit-background-clip: padding; background-clip: padding-box; background: #ddd url(../images/btn.png) repeat-x; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, whitesmoke), color-stop(1, #cfd1cf)); background: -moz-linear-gradient(top center, whitesmoke 0%, #cfd1cf 100%); border: 1px solid; border-color: #ddd #bbb #999; cursor: pointer; color: #333; /* Helvetica Neue present, because it works better for line-height on buttons than Arial, on OS X. */ font-weight: bold; outline: 0; overflow: visible; padding: 3px 10px; text-shadow: #fff 0 1px 1px; width: auto; /* IE7 */ *padding-top: 2px; *padding-bottom: 0px; } button { /* IE7 */ *padding-top: 1px; *padding-bottom: 1px; } textarea, select, input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"] { -webkit-appearance: none; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -moz-background-clip: padding; -webkit-background-clip: padding; background-clip: padding-box; background-color: #fff; border: 1px solid; border-color: #aaa #c1c1c1 #e1e1e1; outline: 0; padding: 5px 3px 4px 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; /* IE7 */ *padding-top: 2px; *padding-bottom: 1px; *height: auto; -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; -moz-transition: border linear 0.2s, box-shadow linear 0.2s; -ms-transition: border linear 0.2s, box-shadow linear 0.2s; -o-transition: border linear 0.2s, box-shadow linear 0.2s; transition: border linear 0.2s, box-shadow linear 0.2s; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); margin-right: 2px; } select { height: 25px; line-height: 16px; max-width: 525px; } /* Separate rule for Firefox. Separate rule for IE, too. Cannot stack with WebKit's. */ ::-webkit-input-placeholder { color: #888; } input:-moz-placeholder, textarea:-moz-placeholder { color: #888; } input.placeholder_text, textarea.placeholder_text { color: #888; } :invalid { /* Suppress red glow that Firefox adds to form fields by default, even when user is still typing. */ -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } button:focus, button:active, input:focus, input:active, select:focus, select:active, textarea:focus, textarea:active { outline: 0; border-color: rgba(82, 168, 236, 0.8); -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); /* for Opera */ z-index: 1; } input[type="file"]:focus, input[type="file"]:active, input[type="radio"]:focus, input[type="radio"]:active, input[type="checkbox"]:focus, input[type="checkbox"]:active { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } select[disabled], textarea[disabled], input[type="date"][disabled], input[type="datetime"][disabled], input[type="datetime-local"][disabled], input[type="email"][disabled], input[type="month"][disabled], input[type="number"][disabled], input[type="password"][disabled], input[type="search"][disabled], input[type="tel"][disabled], input[type="text"][disabled], input[type="time"][disabled], input[type="url"][disabled], input[type="week"][disabled] { background-color: #eee; } button[disabled], input[disabled], select[disabled], select[disabled] option, select[disabled] optgroup, textarea[disabled] { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; -webkit-user-select: none; -moz-user-select: none; user-select: none; color: #888; cursor: default; } input[readonly], textarea[readonly], select[readonly] { background-color: transparent; border: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; background-image: none; } textarea, select[size], select[multiple] { height: auto; } input[type="file"] { border: 1px dashed #ccc; border-radius: 3px; padding: 10px; } /* Tweaks for Safari + Chrome. */ @media (-webkit-min-device-pixel-ratio: 0) { select { background-image: url(../images/select_arrow.gif); background-repeat: no-repeat; background-position: right center; padding-right: 20px; } select[size], select[multiple] { background-image: none; padding: 0; } ::-webkit-validation-bubble-message { box-shadow: rgba(0, 0, 0, 0.5) 0 0 5px; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #666), color-stop(1, #000)); border: 1px solid; border-color: #747474 #5e5e5e #4f4f4f; color: #fff; font: 13px/17px 'Lucida Grande', Arial, 'Liberation Sans', FreeSans, sans-serif; overflow: hidden; padding: 15px 15px 17px; text-shadow: #000 0 0 1px; height: 16px; } ::-webkit-validation-bubble-arrow, ::-webkit-validation-bubble-top-outer-arrow, ::-webkit-validation-bubble-top-inner-arrow { -webkit-box-shadow: none; box-shadow: none; background: #666; border: 0; } } ::-webkit-scrollbar { width: 12px; } ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.4); border-radius: 10px; } ::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 3px rgba(140,140,140,0.9); } /*---------------------------------------------------------------------------------------------------- END FORM FIELDS Inspired by Zero Design http://www.getfuelcms.com/forums/discussion/470/updated-admin-ui/#Item_13 ----------------------------------------------------------------------------------------------------*/ /* generic classes */ p.instructions { margin-top: 10px; font-size: 14px; line-height: 18px; } ul.nobullets { list-style: none; } ul.nobullets li { margin-bottom: 2px; } .tooltip { cursor: help; text-decoration: none; border-bottom: 1px dotted #0e3e7e;} .fillin { color: #aaa; } .clear { clear: both; height: 0; font-size: 0px; line-height: 0px; } .clearfix:before, .clearfix:after { content: ""; display: table; } .clearfix:after { clear: both; } .clearfix { zoom: 1; } .text_center { text-align: center; margin: auto; } .block { display: block; } .float_none { float: none !important; } .relative { position: relative; } span.required { color:#c30; } .datepicker_hh { margin-right: 2px; } .datepicker_mm { margin: 0 5px 0 2px; } .unpublished { color: #b30 !important; } .published { color: #690; } .div_vert { background: transparent url(../images/div_vert.png) repeat-y center center; width: 2px; height: 36px; padding: 0 15px; } .search { padding-left: 3px; } .show { padding-left: 15px; } .loader { margin: auto; width: 32px; height: 32px; text-align: center; background: #fff url(../images/spinner.gif) no-repeat center center; /*border: 1px solid #ddd;*/ } .loader_sm { margin: auto; width: 16px; height: 16px; text-align: center; background: #fff url(../images/spinner_sm.gif) no-repeat center center !important; } .hidden { display: none; } .float_left { float: left; } .float_right { float: right; } .tiny { font-size: 9px; } tr.drag { border: 1px solid #ccc !important; background-color: #ffe !important } tr.drag td { cursor: move !important; background-color: #ffe !important; } a.editor_viewsource, a.editor_preview { margin: 4px 4px 4px 0; display: block; float: left; height: 14px; line-height: 14px !important; } td.vtop { vertical-align: top; } /* give body context to overwrite other generic styles like the jqModal background color*/ body .success { background-color: #6ec461; background-repeat: no-repeat; } body .warning { background-color: #ff1; background-repeat: no-repeat; } body .error { background-color: #c30; background-repeat: no-repeat; } body .error li { color: #fff; } body .error li p, body .error li li { margin: 0; padding: 0; } span.error, span.success, strong.error, strong.success { color: #fff; padding: 1px 5px; } span.error a { color: #fff; } span.warning, p.warning, div.warning { padding: 2px 5px; } span.error_highlight input, span.error_highlight textarea, span.error_highlight select { border: 2px solid #c30; } .taberror { background-color: rgb(238, 96, 96) !important; } .taberror a { color: #fff !important; } .tabwarn { background-color: #ff1 !important; } .change { background: #ffe; } .delete { color: #c30; font-weight: bold; } a.delete { color: #c30; display: block; float: left; margin-top: 10px; border: 1px solid #ccc; padding: 5px; } a.btn { border: 1px solid #ccc; height: 27px; line-height: 27px; display: block; padding: 0 15px 0 15px; float: left; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px } div.btn { border: 1px solid #ccc; float: left; list-style: none; margin: 0; padding: 0 15px 0 0px; line-height: 27px; } .btn input, .btn .button { border: none; height: 19px; } .update_notice { background: #FFFBCC; border: 1px solid #E6DB55; margin-bottom: 10px; padding: 4px 5px; } .update_notice a { font-style: italic; text-decoration: underline; } .update_notice a:hover { text-decoration: none; } .repeatable { background-color: #fdfdfd; position: relative; padding: 10px; border: 1px solid #eee; margin: 0 10px 10px 0; min-width: 300px; } .repeatable .grabber { min-height: 10px; overflow: hidden; margin: 0 auto 10px auto !important; padding-right: 60px !important; background: transparent url(../images/markitup/handle.png) no-repeat center center; cursor: move; } .repeatable .remove { position: absolute; top: 13px; right: 15px; } .repeatable td>.remove { position: static; } .add_another { padding: 10px; float: left; } .repeatable.ui-sortable-helper { -moz-box-shadow: 1px 3px 5px 1px rgba(0,0,0,0.1); -webkit-box-shadow: 1px 3px 5px 1px rgba(0,0,0,0.1); box-shadow: 1px 3px 5px 1px rgba(0,0,0,0.1); } .repeatable_container.repeatable_container_condensed .repeatable { margin: 0; padding: 1px 5px; } .repeatable_container.repeatable_container_condensed .repeatable .grabber { float: left; } .repeatable_container.non_sortable .grabber { display: none; } .repeatable_container .nonsortable { padding: 0 !important; } /* for multi-file plugin*/ .MultiFile-remove { line-height: 22px; padding: 0 3px; border: 1px solid #ccc; background-color: #f9f9f9; } /*.MultiFile-list { float: right; }*/ .tDnD_whileDrag { background-color: #ff1 !important; } .overwrite_field { margin-top: 3px; } .overwrite_field input { margin-top: 6px; } fieldset.tab { display: none; } fieldset.tab fieldset { display: block; } fieldset.collapsible legend { cursor: pointer; } /****************************************************** footer panel ******************************************************/ div#fuel_footer { font-size: 9px; position: absolute; left: 0px; bottom: 0px; right: 0px; text-align: center; color: #ccc; padding: 3px; height: 14px; } div#fuel_footer a { color: #fff; } div#fuel_boilerplate { line-height: 12px; } /* body*/ div#fuel_body { } /****************************************************** left panel ******************************************************/ div#fuel_top { z-index: 2; line-height: 28px; height: 30px; background-color: #393939; color: #fff; padding: 0 10px; color: #fff; text-shadow: #444 0px 1px 0px; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #5d5d5d), color-stop(1, #393939)); background: -moz-linear-gradient(top center, #5d5d5d 0%, #393939 100%); } div#fuel_top a:hover { text-decoration: underline; } h1#fuel_site_name { float: left; font-size: 18px; width: 172px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } h1#fuel_site_name a { color: #999; text-shadow: #111 0px -1px 0px; text-decoration: none; } h1#fuel_site_name a:hover { color: #aaa; text-decoration: none; } div#fuel_left_panel { z-index: 1; position: absolute; top: 30px; left: 0px; bottom: 0px; width: 200px; background-color: #333; overflow: auto; border-right: 1px solid #292929; overflow-x: hidden; -moz-box-shadow: inset -5px 5px 20px 5px #2f2f2f; -webkit-box-shadow: inset -5px 5px 20px 5px #2f2f2f; box-shadow: inset -5px 5px 20px 5px #2f2f2f; } div#fuel_left_panel a { color: #999; text-decoration: none; text-shadow: #000 0px 1px 0px; display: block; overflow: hidden; text-overflow: ellipsis; width: 130px; } div#fuel_left_panel a:hover { color: #bbb; text-decoration: underline; } div#fuel_left_panel_inner { padding: 10px; text-shadow: #000 0px 1px 0px; } div#fuel_left_panel_inner h3 { margin: 0; cursor: pointer; font-size: 11px; color: #999; text-transform: uppercase; background: transparent url(../images/toggle_arrow_down.png) no-repeat 0px 3px; padding-left: 15px; margin-bottom: 2px; } div#fuel_left_panel_inner h3.closed { background-image: url(../images/toggle_arrow_right.png); background-position: 1px 3px;} div#fuel_left_panel_inner li { list-style: none; margin: 0 -15px 0 -20px; padding: 0 30px 0 30px; width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } div#fuel_left_panel_inner li.active { background: transparent url(../images/leftnav_on.png) repeat-x; color: #fff; } div#fuel_left_panel_inner li.active a { color: #fff; text-shadow: #555 0px 1px 0px; } div#fuel_left_panel_inner li ul li a { margin-left: 15px; } div#fuel_left_panel_inner li.active ul li.active { background: none; } div#fuel_left_panel_inner li.active ul li a { color: #333; text-decoration: none; text-shadow: #fff 0px 1px 0px; background: none; } div#fuel_left_panel_inner li.active ul li.active a { text-decoration: underline; } /* icons */ .ico { display: block; padding-left: 24px; list-style: none; background-position: 5px 2px; background-repeat: no-repeat; line-height: 20px; background-image: url(../images/fuel_icons.png); min-width: 16px; min-height: 16px; } h2.ico { margin-top: 5px; line-height: 21px !important; } .ico_activate, .ico_publish { background-position: 5px -1071px; } .ico_assets{ background-position: 5px -1478px; } .ico_blocks{ background-position: 5px -109px; } .ico_cancel, .ico_error, .ico_no, .ico_remove_line { background-position: 5px -220px; } .ico_categories{ background-position: 5px -553px; } .ico_create { background-position: 5px -923px; } .ico_dashboard { background-position: 5px -664px; } .ico_deactivate, .ico_unpublish { background-position: 5px -1145px; } .ico_delete { background-position: 5px -997px; } .ico_duplicate{ background-position: 5px -960px; } .ico_export { background-position: 5px -1034px; } .ico_fuel { background-position: 5px -590px; } .ico_info { background-position: 15px -737px; } .ico_logs { background-position: 5px -183px; } .ico_manage_cache { background-position: 5px -1108px; } .ico_menu { background-position: 5px -2014px; } .ico_module, .ico_other { background-position: 5px -368px; } .ico_navigation{ background-position: 5px -1515px; } .ico_navigation_download { background-position: 5px -1997px; } .ico_navigation_group { background-position: 5px -294px; } .ico_notes{ background-position: 5px -886px; } .ico_pages{ background-position: 5px -812px; } .ico_pages_upload, .ico_navigation_upload, .ico_blocks_upload{ background-position: 5px -1293px; } .ico_permissions{ background-position: 5px -775px; } .ico_precedence{ background-position: 5px -1737px; } .ico_refresh{ background-position: 5px -146px; } .ico_remove_line { float: right; } .ico_replace { background-position: 5px -1182px; } .ico_save{ background-position: 5px -442px; } .ico_select_all{ background-position: 5px -1330px; } .ico_settings { background-position: 5px -1700px; } .ico_sitevariables{ background-position: 5px -1219px; } .ico_success, .ico_yes { background-position: 5px -332px; } .ico_table { background-position: 5px -1663px; } .ico_tags { background-position: 5px -1774px; } .ico_tools { background-position: 5px -1959px; } .ico_tree{ background-position: 5px -1885px; } .ico_view { background-position: 5px -849px; } .ico_view_all { background-image: none; line-height: 22px; padding-left: 5px; } .ico_users { background-position: 5px -1589px; } .ico_users_send_email{ background-position: 5px -482px; } .ico_warn { background-position: 15px -516px; } .notification .ico_success, .notification .ico_yes { background-position: 15px -330px; } .notification .ico_error { background-position: 15px -220px; } /****************************************************** main panel ******************************************************/ div#fuel_main_panel { position: absolute; top: 0; left: 201px; right: 0px; bottom: 0px; background-color: #fff; -webkit-transition: all 0.2s cubic-bezier(0.445,0,0,1); -moz-transition: all 0.2s cubic-bezier(0.445,0,0,1); -ms-transition: all 0.2s cubic-bezier(0.445,0,0,1); -o-transition: all 0.2s cubic-bezier(0.445,0,0,1); transition: all 0.2s cubic-bezier(0.445,0,0,1); } #nav_toggle { opacity:0.9;} #nav_toggle { position: absolute; left: 182px; top: 0; font-size: 1.3em; color: #fff; opacity:0.5; cursor: pointer; display: block; padding-left: 25px; background:url(../images/icons/ico_nav_list.png) no-repeat left center; background-size: 50%; text-indent: -10000px; } .nav_hide div#fuel_main_panel, div#fuel_left_panel { top: 30px; left: 0px; } body.nav_hide { overflow: hidden; width: 100%; display: block; position: relative; } body.nav_hide, div#fuel_main_panel { min-width: 700px; } .nav_hide div#fuel_top { height: 30px; line-height: 30px; } .nav_hide div#fuel_left_panel { left: -201px; z-index: 50; -webkit-transform: translateX(201px); -moz-transform: translateX(201px); -ms-transform: translateX(201px); -o-transform: translateX(201px); transform: translateX(201px); } .nav_hide div#fuel_main_panel { left: 0px; z-index: 100; } .nav_hide h1#fuel_site_name { width: auto; display: block; float: none; padding: 0 100px 0 85px; text-align: center; } .nav_hide div#fuel_left_panel_inner li.active { -webkit-background-size: auto 100%; background-size: auto 100%; } .nav_hide #nav_toggle { position: absolute; left: 15px; top: 0; font-size: 1.3em; color: #fff; opacity:0.5; cursor: pointer; display: block; padding-left: 20px; background-size: 27%; text-indent: 0; } .nav_hide div#fuel_main_panel {-webkit-transform: translateX(0px); -moz-transform: translateX(0px); -ms-transform: translateX(0px); -o-transform: translateX(0px); transform: translateX(0px); } /* iPads (portrait and landscape) */ @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { div#fuel_left_panel a { font-size: 1.2em; line-height: 2em; } } /* Smartphones (portrait and landscape) */ @media only screen and (min-device-width : 320px) and (max-device-width : 480px) { div#fuel_left_panel a { font-size: 1.2em; line-height: 2em; } } /* bread nav */ div#fuel_main_top_panel { height: 29px; font-size: 13px; color: #fff; background-color: #e7e7e7; border-bottom: 1px solid #ccc; overflow: hidden; } div#fuel_main_top_panel h2 { color: #333; text-shadow: #fff 0px 1px 0px; line-height: 30px; margin-left: 11px; } div#fuel_main_top_panel h2 a { color: #0E3E7E; } div#fuel_main_top_panel li { float: left; display: block; list-style: none; line-height: 29px; font-weight: bold; border-right: 1px solid #6e6e6e;} div#fuel_main_top_panel li a { display: block; color: #fff; text-shadow: #555 0px 1px 0px; background: #6d6d6d url(../images/tab.png) repeat-x; padding: 0 15px; } div#fuel_main_top_panel li a:hover { background: #7c7c7c url(../images/tab.png) repeat-x 0 -29px; } div#fuel_main_top_panel li.active a { background: #e7e7e7 url(../images/tab.png) repeat-x 0 -58px; color: #113556; text-shadow: #fff 0px 1px 0px; } div#fuel_login_logout { position: absolute; top: 8px; right: 15px; font-size: 11px; color: #333; background-color: #e7e7e7; height: 21px;text-shadow: #fff 0px 1px 0px; } div#fuel_actions { height: 46px; border-bottom: 1px solid #b6b6b6; position: relative; min-width: 680px; background: #eee; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, whiteSmoke), color-stop(1, #cfd1cf)); background: -moz-linear-gradient(top center, #f6f6f6 0%, #ddd 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#dddddd'); } /* main content */ div#fuel_main_content { overflow: auto; position: absolute; top: 99px; left: 0px; right: 0px; bottom: 0px; } div#fuel_main_content .buttonbar li, #fuel_main_content_compact .buttonbar li { margin-right: 15px; } div#fuel_main_content_inner { } div#fuel_main_content_inner.has_related { position: absolute; top: 0; left: 0; right: 230px; bottom: 0; } div#fuel_main_content_inner h3 { background-color: #f6f6f6; padding: 5px; margin-bottom: 10px; } div#fuel_main_content_inner { padding: 15px 37px; } div#fuel_main_content_inner .bullets { margin-left: 15px; } div#fuel_loader { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: white; opacity: .4; padding-top: 100px; } div.noactions { top: 52px !important; } div.notitlebar { top: 69px !important; } div.noactions_notitlebar { top: 22px !important; } div.noactions_nonotification { top: 30px !important; } /* inline/compact mode */ div#fuel_main_panel_compact { position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; background-color: #fff; } div#fuel_main_content_compact { background-color: #fff; overflow: auto; position: absolute; top: 99px; left: 0px; right: 0px; bottom: 0px; } /* dashboard */ div.dashboard_pod { float: left; margin-right: 10px } div.dashboard_module { float: left; margin-right: 10px; margin-top: 10px; } /* filters */ div#filters { position: absolute; right: 15px; top: 12px; } a#multi_delete { display: block; } .adv_search { position: absolute; min-width: 360px; background: white; border: 1px solid #b6b6b6; z-index: 1000; left: -120px; padding: 10px 15px; display: none; -moz-box-shadow: 1px 3px 5px 1px rgba(0,0,0,0.3); -webkit-box-shadow: 1px 3px 5px 1px rgba(0,0,0,0.3); box-shadow: 2px 2px 10px 1px rgba(0,0,0,0.3); } .adv_search .more_filters { max-height: 500px; overflow-y: auto; } .adv_search .more_filters div div { float: none; overflow: hidden; margin-bottom: 7px; } .adv_search .label { width: 100px; } .adv_search input[type="text"] { max-width: 217px; } .search_input { position: relative; } #search_term.advanced { padding-right: 15px; } .search_input #adv-search-btn { position: absolute; right: 6px; top: 2px; padding-top: 5px; height: 10px; background-color: #fff; } #filters_container { position: relative; margin-bottom: 30px; } .filters { background: #eee; border-bottom: 1px solid #ccc; padding: 10px 15px; -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3); -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3); box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3); } .filters .more_filters { max-height: 500px; overflow-y: auto; } .filters .more_filters div div { float: left; overflow: hidden; margin-bottom: 0; min-width: 32%; min-height: 32px; } .filters .more_filters .select2-search-choice > div { min-height: 0; } .select2-drop-active { margin-top: -5px !important; } .filters .more_filters div div div { margin-bottom: 0; } .filters .more_filters .label { font-weight: bold; } .filters .more_filters .actions { float: none; } .filters .label { width: 75px; } .filters .field input[type="checkbox"] { top: 5px; } .filters .field input[type="radio"] { top: 3px; } .filters input[type="text"] { max-width: 217px; } a.btn.filters_toggle { height: 20px; line-height: 20px; z-index: 1; left: 50%; margin-left: -45px; position: absolute; text-align: center; background-color: #eeeeee; border-top: none; border-left: 1px solid #cccccc; border-right: 1px solid #cccccc; /*width: 45px;*/ -webkit-border-top-right-radius: 0; -webkit-border-top-left-radius: 0; -moz-border-radius-topright: 0; -moz-border-radius-topleft: 0; border-top-right-radius: 0; border-top-left-radius: 0; -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4); -moz-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4); box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4); } /* other items */ div#other_items { float: left; margin: 2px 20px 0px 20px; } div#other_items select{ max-width: 250px;} /* button bar*/ div#action_btns { position: absolute; top: 9px; left: 15px; height: 29px; overflow: hidden; } div.buttonbar ul { height: 27px; float: left; } div.buttonbar li, .btn, div.btn, .btn input, .btn .button { border-top: 1px solid #ccc; border-left: 1px solid #b9b9b9; border-bottom: 1px solid #b9b9b9; float: left;list-style: none; margin: 0; background: #e6e6e6 url(../images/btn.png) repeat-x; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(1, #ddd)); background: -moz-linear-gradient(top center, #fff 0%, #ddd 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd'); } div.buttonbar li:hover, .btn:hover, div.btn:hover, .btn input:hover, .btn .button:hover { background-position: 0 -27px; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(1, #eee)); background: -moz-linear-gradient(top center, #fff 0%, #eee 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee'); -moz-box-shadow: inset 0 0 5px #ddd; -webkit-box-shadow: inset 0 0 5px #ddd; box-shadow: inner 0 0 5px #ddd; } div.buttonbar li.active { background-position: 0 -54px; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ddd), color-stop(1, #fff)); background: -moz-linear-gradient(top center, #ddd 0%, #fff 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#ffffff'); } div.buttonbar li.active a { color: #000; } div.buttonbar li a { color: #0e3e7e; height: 22px; line-height: 20px; display: block; padding: 0 11px 1px 26px; margin-top: 4px; } div.buttonbar li.spacer, li.unattached { margin-left: 10px;} div.buttonbar li:last-child, li.unattached { border-right: 1px solid #b9b9b9; } div.buttonbar li.end { border-right: 1px solid #b9b9b9; } /* on own line so it will work in IE 8 */ div.buttonbar li:first-child, div.buttonbar li.unattached { -webkit-border-top-left-radius: 4px; -webkit-border-bottom-left-radius: 4px; -moz-border-radius-topleft: 4px; -moz-border-radius-bottomleft: 4px; border-top-left-radius: 4px; border-bottom-left-radius: 4px; } div.buttonbar li:last-child, div.buttonbar li.unattached { -webkit-border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 4px; -moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; } div.buttonbar li.start { border-left: 1px solid #b9b9b9; } div.save_cancel { height: 35px; } div.save_cancel li { margin: 5px 3px; } /* form tabs */ div.form_tabs li { padding: 5px 15px; list-style: none; margin: 0 3px 0 0; border-left: 1px solid #eee; border-right: 1px solid #eee; border-top: 1px solid #eee; text-align: center; float: left; font-weight: bold; background-color: #ffffff; -webkit-border-top-left-radius: 4px; -webkit-border-top-right-radius: 4px; -moz-border-radius-topleft: 4px; -moz-border-radius-topright: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; } div.form_tabs li.active { background-color: #eee; } div.form_tabs li.active a { color: #333; } /* box buttons use for manage */ div.boxbuttons li { float: left; display: block; list-style: none; width: 110px; height: 60px; border: 1px solid #ccc; margin-bottom: 15px; margin-right: 15px; } div.boxbuttons li a { display: block; text-align: center; padding: 10px 5px 5px 5px; width: 100px; height: 45px; background-color: #fff; } div.boxbuttons li a:hover { background-color: #f6f6f6; } div.boxbuttons li i { display: block; padding: 0; margin: auto; width: 21px; height: 22px; padding-right: 5px; } /* notification */ div#fuel_notification { height: 21px; border-bottom: 1px solid #ccc; background-color: #ecf1f5; text-overflow: ellipsis; overflow: hidden; position: relative; } div#notification_extra { z-index: 10; position: relative; } div.notification p, div.notification div, div.notification ul { margin: 0; min-height: 15px; line-height: 15px; padding: 3px 0 3px 35px; list-style: none; background-repeat: no-repeat; list-style: none; } div.notification .ico { line-height: 15px; } /* pagination */ div#pagination { position: absolute; z-index: 1; right: 0px; top: -3px; text-align: right; padding-right: 25px; } div#pagination a { line-height: 21px; padding: 0 3px; border: 1px solid #ccc; background-color: #f9f9f9; } div#pagination a:hover { background-color: #fdfdfd; } div#pagination b { color: #fff; background-color: #4f7193; line-height: 21px; padding: 0 3px; border: 1px solid #ccc; } /* module description */ div#module_description { border-bottom: 1px solid #ccc; background-color: #f6f6f6; padding: 15px; } div#module_description p { margin: 0; } /* data table */ div#table_loader { position: absolute; top: 20px; left: 50%; margin-left: -25px; z-index: 2;} div#data_table_container { padding: 6px 0; } #data_table .publish_hover:hover .publish_action { display: inline; } #data_table .publish_hover:hover .publish_text { display: none; } table#data_table.rearrange tr:hover td { cursor: move !important; background-color: #ffe !important; } table.data { width: 98%; margin: 0px auto; } table.data th { padding: 0 20px 0 0; white-space: nowrap; } table.data td { padding: 5px 20px; border-top: 1px solid #fff; white-space: nowrap; max-width: 300px; text-overflow: ellipsis; overflow: hidden; } table.data th.on, table.data th.on a { color: #4f7193; } table.data th a { text-decoration: underline; } table.data th a, table.data th span { color: #333; display: block; line-height: 22px; padding: 0 0 0 20px; width: 100%; border-left: 1px solid #fff;} table.data th.asc a { background: transparent url(../images/th_arrow_asc.png) no-repeat 5px center; } table.data th.desc a { background: transparent url(../images/th_arrow_desc.png) no-repeat 5px center; } table.data th { text-align: left; } table.data td.next_last { width: 100%; } table.data td.actions { text-align: right; white-space: nowrap; padding-left: 5px; } table.data tr.rowaction:hover td { background-color: #edf2f7 !important; cursor: pointer; } /*table.data th.col1 { min-width: 200px; }*/ table.data tr.alt { background-color: #f3f3f3; } div.nodata { text-align: center; padding: 10px 0 15px 0;} .embedded_list_items table.data th.col1 { min-width: 0; } /* specific data column classes */ span.publish_col { width: 100px; display: block; cursor: pointer !important; } /* form tables */ .form { border: none; border-spacing: 0; display: table; } /* important to display as table so that the proper width can be determined with inline editing */ .form td.label { padding: 6px 15px 0 0; font-weight: bold; vertical-align: top; /*white-space: nowrap; */} .form td.field { padding: 3px 0; white-space: nowrap; } .form td.required { padding-top: 10px; } .form .form td.required { display: none; } div.more_filters { padding-left: 10px; } div.more_filters span.label { float: left; padding-top: 6px; } div.more_filters span.field { float: left; display: block; padding: 0 0 0 5px; } div.more_filters div div { float: left; margin-right: 10px; } /* tree */ div#tree_container { padding: 16px 15px; } div#tree_loader { position: absolute; top: 20px; left: 50%; margin-left: -25px; z-index: 2;} /* #login */ div#login { padding: 15% 0 0 0; border: none; background-color: transparent; margin: 0 auto; } div#login h3 { margin: 0; } div#login h3, div#login p { color: #fff; text-align: center; } div#login ul li { margin-left: 20px; color: #fff; } div#login form { width: 270px; margin: 0 auto; } div#login input { background-color: #1d1d1d; color: #fff; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; border: 2px solid #444; height: 40px; width: 270px; padding: 0 1em; } .login_logo { background: transparent url(../images/fuel_logo.png) no-repeat; background-size: 100%; width: 233px; height: 46px; overflow: hidden; margin: 0 auto 1.5em auto; } div#login ::-webkit-input-placeholder {color: #999; } div#login :-moz-placeholder { color: #999; } div#login :-ms-input-placeholder { color: #999; } div#login input[type="submit"] { background: #3dbfd9 !important; color: #fff; font-size: 20px; text-shadow: none; } div#login_notification { text-overflow: ellipsis; overflow: hidden; width: 440px; margin: auto; } a#forgotten_pwd { text-align: center; display: block; padding-top: 15px; padding-left:20px; color: #999; } /* assets & modal */ a.modal_close, a.asset_delete { position: absolute; left: -11px; top: -11px; z-index: 10; background: transparent url(../images/x_close.png) no-repeat center center; width: 23px; height: 23px; text-indent: -10000px; overflow:hidden; } a.asset_delete { display: none; left: -13px; top: -2px; } div.modal_content { -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;background-color: #fff; width: 100%; height: 100%;/*max-height: 450px;*/ overflow: hidden; } div.modal_content iframe { width: 100% !important; } div.modal_content_inner { padding: 10px 20px; } div#asset_preview { height: 275px; width: 740px; overflow: auto; text-align: center; margin: 10px 0 20px 0;} div#asset_preview img, .img_bg { background-color: #f3f3f3; } div.asset_select > div > div { float: left; } div.asset_select span.label { padding: 0 5px 0 15px; } div.asset_upload_preview { position: relative; } div.img_crop { max-width: 400px; max-height: 200px; overflow: auto; } div#yes_no_modal { text-align: center; margin: 0; } div#yes_no_modal ul { float: none; } div#yes_no_modal li { display: inline-block; margin-right: 5px; float: none;} div#__FUEL_modal__ { -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; width: 98%; max-width: 864px; margin-left: -425px; max-height: 600px; background-color: #fff; } div#__FUEL_modal__ .add_inline_button, div#__FUEL_modal__ .edit_inline_button { display: none; } div#__FUEL_modal__ .loader { margin: 7% -16px 0 auto; position: absolute; left: 50%; } a.btn_field_right { display: block; float: right; margin-bottom: 5px; margin-right: 3px; } div.img_display { float: right; overflow: auto; height: 120px; width: 300px; } div.viewpage_modal { top: 16px; border: 2px solid #666; background-color: #fff; height: 96% !important; width: 96% !important; max-width: 96% !important; max-height: 96% !important; padding: 0; display: none; } div#viewpage_btns { position: absolute; z-index: 1; top: -17px; right: -2px; } a.viewpage_btn { float: left; margin-right: 2px; color: #ccc; background-color: #666; padding: 1px 5px; } a#viewpage_close { right: 0px; } a#viewpage_new_page { right: 100px; } iframe#viewpage_iframe { border: none; width: 100%; height: 100%; } /* misc */ input#Save, input.submit { margin-top: 10px; width: 150px; text-align: center; } input#Cancel, input.cancel { margin-top: 10px; margin-right: 10px; width: 60px; text-align: center; } div#tooltip h3 { font-size: 11px; font-weight: normal; } a.btn_field { -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; line-height: 12px; border: 1px solid #ccc; padding: 3px 5px 3px 5px; background: #eee url(../images/btn.png) repeat-x; } a.btn_field:hover { background-position: 0 -27px; } a#back_to { margin-bottom: 20px; display: block; } .hidden_form { visibility:hidden; height: 0px; overflow: hidden; } /* pages */ div#related_items { z-index: 20; position: absolute; right: 0; width: 210px; background-color: #ecf1f5; border-left: 1px solid #ccc; border-bottom: 1px solid #ccc; padding: 10px; } div#related_items h3 { background-color: transparent; padding-left: 24px; margin-top: 5px; } div#related_items li { list-style: none; padding-left: 5px; margin: 5px 0; } div#related_items select { max-width: 212px; } div#related_items .layout_preview { max-width: 210px; margin: 10px auto; } a.reset { display: block; width: 16px; height: 16px; background: transparent url(../images/fuel_icons.png) no-repeat 0px -146px; margin-right: 5px; } /* users */ div.perms_list ul ul { margin: 10px; } div.perms_list ul li { margin: 8px 0 8px; list-style: none; display: block; } div.perms_list ul li input { margin-right: 2px; } div.perms_list ul ul li { margin: 8px 0 8px 10px; } div.perms_list label { font-weight: bold; } /* tags */ .match_class { display: block; position: absolute; z-index: 10; margin-bottom: 0px; min-height: 30px;} .match_class span { display: inline-block; cursor: pointer; padding: 3px; background-color: #fcfce6; border: 1px solid #ccc; margin: 3px 0 3px 3px; } .multi_field { margin-bottom: 10px; display: inline-block; padding-top: 2px; } /* ckeditor */ .cke_top { min-width: 565px !important; } .cke_button__fuellink_icon { background: url(../js/editors/ckeditor/skins/moono/icons.png) no-repeat 0 -528px !important; } .cke_button__fuelunlink_icon { background: url(../js/editors/ckeditor/skins/moono/icons.png) no-repeat 0 -552px !important; } .cke_button__fuelimage_icon { background: url(../js/editors/ckeditor/skins/moono/icons.png) no-repeat 0 -360px !important; } /* CI profiler */ #codeigniter_profiler { position: absolute; bottom: 0; left: 200px; height: 300px; overflow: auto; }
fuelcms/fuel/modules/fuel/assets/css/fuel.css
@import url('jqmodal.css'); @import url('jquery.tooltip.css'); @import url('jquery.treeview.css'); @import url('jquery.supercomboselect.css'); @import url('markitup.css'); @import url('jquery-ui-1.8.17.custom.css'); * { margin: 0; padding: 0; outline-style: none; } html, body { height: 100%; overflow: hidden; } body { background-color: #333; font-family: 'Lucida Grande', Verdana, Arial, Helvetica, Sans-serif; margin: 0; padding: 0; font-size: 11px; color: #333; } h1 { font-size: 20px; margin-bottom: 10px; } h2 { font-size: 16px; margin-bottom: 10px; } h3 { font-size: 12px; margin: 15px 0 3px 0; } a { color: #0e3e7e; text-decoration: none; } img { border: 0; max-width: 100%; } a:hover { text-decoration: underline; } a:visited { color: #4679bd;} p { margin: 5px 0 15px 0; } option { margin: 0 2px; } input,select,textarea { font-size: 11px; font-family: 'Lucida Grande', Verdana, Arial, Helvetica, Sans-serif; } textarea { min-height: 40px; overflow: auto; resize: vertical; /*width: 100%;*/ } ul { margin-bottom: 10px; } ul ul { margin: 10px; } optgroup { color: #000; font-style: normal; font-weight: normal; } optgroup option { padding-left: 10px; } fieldset { border-top: 5px solid #eee; border-left: none; border-right: none; border-bottom: none; margin: 0; padding: 20px 0 10px 0; } legend { padding: 5px 30px 5px 5px; font-size: 12px; background-color: #eee; font-weight: bold; text-align: left; } iframe { border: none; } /*---------------------------------------------------------------------------------------------------- UI FORM FIELDS Inspired by Zero Design http://www.getfuelcms.com/forums/discussion/470/updated-admin-ui/#Item_13 ----------------------------------------------------------------------------------------------------*/ ::-moz-focus-inner { border: 0; padding: 0; } input[type="search"]::-webkit-search-decoration { display: none; } input, button, select, textarea { margin: 0; } input[type="radio"], input[type="checkbox"] { position: relative; top: 1px; /* IE8, IE9, IE10 */ top: 0\0; /* IE7 */ *top: -3px; } button, input[type="reset"], input[type="submit"], input[type="button"] { -webkit-appearance: none; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-background-clip: padding; -webkit-background-clip: padding; background-clip: padding-box; background: #ddd url(../images/btn.png) repeat-x; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, whitesmoke), color-stop(1, #cfd1cf)); background: -moz-linear-gradient(top center, whitesmoke 0%, #cfd1cf 100%); border: 1px solid; border-color: #ddd #bbb #999; cursor: pointer; color: #333; /* Helvetica Neue present, because it works better for line-height on buttons than Arial, on OS X. */ font-weight: bold; outline: 0; overflow: visible; padding: 3px 10px; text-shadow: #fff 0 1px 1px; width: auto; /* IE7 */ *padding-top: 2px; *padding-bottom: 0px; } button { /* IE7 */ *padding-top: 1px; *padding-bottom: 1px; } textarea, select, input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"] { -webkit-appearance: none; -moz-border-radius: 0; -webkit-border-radius: 0; border-radius: 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -moz-background-clip: padding; -webkit-background-clip: padding; background-clip: padding-box; background-color: #fff; border: 1px solid; border-color: #aaa #c1c1c1 #e1e1e1; outline: 0; padding: 5px 3px 4px 3px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; /* IE7 */ *padding-top: 2px; *padding-bottom: 1px; *height: auto; -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; -moz-transition: border linear 0.2s, box-shadow linear 0.2s; -ms-transition: border linear 0.2s, box-shadow linear 0.2s; -o-transition: border linear 0.2s, box-shadow linear 0.2s; transition: border linear 0.2s, box-shadow linear 0.2s; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); margin-right: 2px; } select { height: 25px; line-height: 16px; max-width: 525px; } /* Separate rule for Firefox. Separate rule for IE, too. Cannot stack with WebKit's. */ ::-webkit-input-placeholder { color: #888; } input:-moz-placeholder, textarea:-moz-placeholder { color: #888; } input.placeholder_text, textarea.placeholder_text { color: #888; } :invalid { /* Suppress red glow that Firefox adds to form fields by default, even when user is still typing. */ -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } button:focus, button:active, input:focus, input:active, select:focus, select:active, textarea:focus, textarea:active { outline: 0; border-color: rgba(82, 168, 236, 0.8); -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); /* for Opera */ z-index: 1; } input[type="file"]:focus, input[type="file"]:active, input[type="radio"]:focus, input[type="radio"]:active, input[type="checkbox"]:focus, input[type="checkbox"]:active { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; } select[disabled], textarea[disabled], input[type="date"][disabled], input[type="datetime"][disabled], input[type="datetime-local"][disabled], input[type="email"][disabled], input[type="month"][disabled], input[type="number"][disabled], input[type="password"][disabled], input[type="search"][disabled], input[type="tel"][disabled], input[type="text"][disabled], input[type="time"][disabled], input[type="url"][disabled], input[type="week"][disabled] { background-color: #eee; } button[disabled], input[disabled], select[disabled], select[disabled] option, select[disabled] optgroup, textarea[disabled] { -moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none; -webkit-user-select: none; -moz-user-select: none; user-select: none; color: #888; cursor: default; } input[readonly], textarea[readonly], select[readonly] { background-color: transparent; border: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; background-image: none; } textarea, select[size], select[multiple] { height: auto; } input[type="file"] { border: 1px dashed #ccc; border-radius: 3px; padding: 10px; } /* Tweaks for Safari + Chrome. */ @media (-webkit-min-device-pixel-ratio: 0) { select { background-image: url(../images/select_arrow.gif); background-repeat: no-repeat; background-position: right center; padding-right: 20px; } select[size], select[multiple] { background-image: none; padding: 0; } ::-webkit-validation-bubble-message { box-shadow: rgba(0, 0, 0, 0.5) 0 0 5px; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #666), color-stop(1, #000)); border: 1px solid; border-color: #747474 #5e5e5e #4f4f4f; color: #fff; font: 13px/17px 'Lucida Grande', Arial, 'Liberation Sans', FreeSans, sans-serif; overflow: hidden; padding: 15px 15px 17px; text-shadow: #000 0 0 1px; height: 16px; } ::-webkit-validation-bubble-arrow, ::-webkit-validation-bubble-top-outer-arrow, ::-webkit-validation-bubble-top-inner-arrow { -webkit-box-shadow: none; box-shadow: none; background: #666; border: 0; } } ::-webkit-scrollbar { width: 12px; } ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.4); border-radius: 10px; } ::-webkit-scrollbar-thumb { border-radius: 10px; -webkit-box-shadow: inset 0 0 3px rgba(140,140,140,0.9); } /*---------------------------------------------------------------------------------------------------- END FORM FIELDS Inspired by Zero Design http://www.getfuelcms.com/forums/discussion/470/updated-admin-ui/#Item_13 ----------------------------------------------------------------------------------------------------*/ /* generic classes */ p.instructions { margin-top: 10px; font-size: 14px; line-height: 18px; } ul.nobullets { list-style: none; } ul.nobullets li { margin-bottom: 2px; } .tooltip { cursor: help; text-decoration: none; border-bottom: 1px dotted #0e3e7e;} .fillin { color: #aaa; } .clear { clear: both; height: 0; font-size: 0px; line-height: 0px; } .clearfix:before, .clearfix:after { content: ""; display: table; } .clearfix:after { clear: both; } .clearfix { zoom: 1; } .text_center { text-align: center; margin: auto; } .block { display: block; } .float_none { float: none !important; } .relative { position: relative; } span.required { color:#c30; } .datepicker_hh { margin-right: 2px; } .datepicker_mm { margin: 0 5px 0 2px; } .unpublished { color: #b30 !important; } .published { color: #690; } .div_vert { background: transparent url(../images/div_vert.png) repeat-y center center; width: 2px; height: 36px; padding: 0 15px; } .search { padding-left: 3px; } .show { padding-left: 15px; } .loader { margin: auto; width: 32px; height: 32px; text-align: center; background: #fff url(../images/spinner.gif) no-repeat center center; /*border: 1px solid #ddd;*/ } .loader_sm { margin: auto; width: 16px; height: 16px; text-align: center; background: #fff url(../images/spinner_sm.gif) no-repeat center center !important; } .hidden { display: none; } .float_left { float: left; } .float_right { float: right; } .tiny { font-size: 9px; } tr.drag { border: 1px solid #ccc !important; background-color: #ffe !important } tr.drag td { cursor: move !important; background-color: #ffe !important; } a.editor_viewsource, a.editor_preview { margin: 4px 4px 4px 0; display: block; float: left; height: 14px; line-height: 14px !important; } td.vtop { vertical-align: top; } /* give body context to overwrite other generic styles like the jqModal background color*/ body .success { background-color: #6ec461; background-repeat: no-repeat; } body .warning { background-color: #ff1; background-repeat: no-repeat; } body .error { background-color: #c30; background-repeat: no-repeat; } body .error li { color: #fff; } body .error li p, body .error li li { margin: 0; padding: 0; } span.error, span.success, strong.error, strong.success { color: #fff; padding: 1px 5px; } span.error a { color: #fff; } span.warning, p.warning, div.warning { padding: 2px 5px; } span.error_highlight input, span.error_highlight textarea, span.error_highlight select { border: 2px solid #c30; } .taberror { background-color: rgb(238, 96, 96) !important; } .taberror a { color: #fff !important; } .tabwarn { background-color: #ff1 !important; } .change { background: #ffe; } .delete { color: #c30; font-weight: bold; } a.delete { color: #c30; display: block; float: left; margin-top: 10px; border: 1px solid #ccc; padding: 5px; } a.btn { border: 1px solid #ccc; height: 27px; line-height: 27px; display: block; padding: 0 15px 0 15px; float: left; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px } div.btn { border: 1px solid #ccc; float: left; list-style: none; margin: 0; padding: 0 15px 0 0px; line-height: 27px; } .btn input, .btn .button { border: none; height: 19px; } .update_notice { background: #FFFBCC; border: 1px solid #E6DB55; margin-bottom: 10px; padding: 4px 5px; } .update_notice a { font-style: italic; text-decoration: underline; } .update_notice a:hover { text-decoration: none; } .repeatable { background-color: #fdfdfd; position: relative; padding: 10px; border: 1px solid #eee; margin: 0 10px 10px 0; min-width: 300px; } .repeatable .grabber { min-height: 10px; overflow: hidden; margin: 0 auto 10px auto !important; padding-right: 60px !important; background: transparent url(../images/markitup/handle.png) no-repeat center center; cursor: move; } .repeatable .remove { position: absolute; top: 13px; right: 15px; } .repeatable td>.remove { position: static; } .add_another { padding: 10px; float: left; } .repeatable.ui-sortable-helper { -moz-box-shadow: 1px 3px 5px 1px rgba(0,0,0,0.1); -webkit-box-shadow: 1px 3px 5px 1px rgba(0,0,0,0.1); box-shadow: 1px 3px 5px 1px rgba(0,0,0,0.1); } .repeatable_container.repeatable_container_condensed .repeatable { margin: 0; padding: 1px 5px; } .repeatable_container.repeatable_container_condensed .repeatable .grabber { float: left; } .repeatable_container.non_sortable .grabber { display: none; } .repeatable_container .nonsortable { padding: 0 !important; } /* for multi-file plugin*/ .MultiFile-remove { line-height: 22px; padding: 0 3px; border: 1px solid #ccc; background-color: #f9f9f9; } /*.MultiFile-list { float: right; }*/ .tDnD_whileDrag { background-color: #ff1 !important; } .overwrite_field { margin-top: 3px; } .overwrite_field input { margin-top: 6px; } fieldset.tab { display: none; } fieldset.tab fieldset { display: block; } fieldset.collapsible legend { cursor: pointer; } /****************************************************** footer panel ******************************************************/ div#fuel_footer { font-size: 9px; position: absolute; left: 0px; bottom: 0px; right: 0px; text-align: center; color: #ccc; padding: 3px; height: 14px; } div#fuel_footer a { color: #fff; } div#fuel_boilerplate { line-height: 12px; } /* body*/ div#fuel_body { } /****************************************************** left panel ******************************************************/ div#fuel_top { z-index: 2; line-height: 28px; height: 30px; background-color: #393939; color: #fff; padding: 0 10px; color: #fff; text-shadow: #444 0px 1px 0px; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #5d5d5d), color-stop(1, #393939)); background: -moz-linear-gradient(top center, #5d5d5d 0%, #393939 100%); } div#fuel_top a:hover { text-decoration: underline; } h1#fuel_site_name { float: left; font-size: 18px; width: 172px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } h1#fuel_site_name a { color: #999; text-shadow: #111 0px -1px 0px; text-decoration: none; } h1#fuel_site_name a:hover { color: #aaa; text-decoration: none; } div#fuel_left_panel { z-index: 1; position: absolute; top: 30px; left: 0px; bottom: 0px; width: 200px; background-color: #333; overflow: auto; border-right: 1px solid #292929; overflow-x: hidden; -moz-box-shadow: inset -5px 5px 20px 5px #2f2f2f; -webkit-box-shadow: inset -5px 5px 20px 5px #2f2f2f; box-shadow: inset -5px 5px 20px 5px #2f2f2f; } div#fuel_left_panel a { color: #999; text-decoration: none; text-shadow: #000 0px 1px 0px; display: block; overflow: hidden; text-overflow: ellipsis; width: 130px; } div#fuel_left_panel a:hover { color: #bbb; text-decoration: underline; } div#fuel_left_panel_inner { padding: 10px; text-shadow: #000 0px 1px 0px; } div#fuel_left_panel_inner h3 { margin: 0; cursor: pointer; font-size: 11px; color: #999; text-transform: uppercase; background: transparent url(../images/toggle_arrow_down.png) no-repeat 0px 3px; padding-left: 15px; margin-bottom: 2px; } div#fuel_left_panel_inner h3.closed { background-image: url(../images/toggle_arrow_right.png); background-position: 1px 3px;} div#fuel_left_panel_inner li { list-style: none; margin: 0 -15px 0 -20px; padding: 0 30px 0 30px; width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } div#fuel_left_panel_inner li.active { background: transparent url(../images/leftnav_on.png) repeat-x; color: #fff; } div#fuel_left_panel_inner li.active a { color: #fff; text-shadow: #555 0px 1px 0px; } div#fuel_left_panel_inner li ul li a { margin-left: 15px; } div#fuel_left_panel_inner li.active ul li.active { background: none; } div#fuel_left_panel_inner li.active ul li a { color: #333; text-decoration: none; text-shadow: #fff 0px 1px 0px; background: none; } div#fuel_left_panel_inner li.active ul li.active a { text-decoration: underline; } /* icons */ .ico { display: block; padding-left: 24px; list-style: none; background-position: 5px 2px; background-repeat: no-repeat; line-height: 20px; background-image: url(../images/fuel_icons.png); min-width: 16px; min-height: 16px; } h2.ico { margin-top: 5px; line-height: 21px !important; } .ico_activate, .ico_publish { background-position: 5px -1071px; } .ico_assets{ background-position: 5px -1478px; } .ico_blocks{ background-position: 5px -109px; } .ico_cancel, .ico_error, .ico_no, .ico_remove_line { background-position: 5px -220px; } .ico_categories{ background-position: 5px -553px; } .ico_create { background-position: 5px -923px; } .ico_dashboard { background-position: 5px -664px; } .ico_deactivate, .ico_unpublish { background-position: 5px -1145px; } .ico_delete { background-position: 5px -997px; } .ico_duplicate{ background-position: 5px -960px; } .ico_export { background-position: 5px -1034px; } .ico_fuel { background-position: 5px -590px; } .ico_info { background-position: 15px -737px; } .ico_logs { background-position: 5px -183px; } .ico_manage_cache { background-position: 5px -1108px; } .ico_menu { background-position: 5px -2014px; } .ico_module, .ico_other { background-position: 5px -368px; } .ico_navigation{ background-position: 5px -1515px; } .ico_navigation_download { background-position: 5px -1997px; } .ico_navigation_group { background-position: 5px -294px; } .ico_notes{ background-position: 5px -886px; } .ico_pages{ background-position: 5px -812px; } .ico_pages_upload, .ico_navigation_upload, .ico_blocks_upload{ background-position: 5px -1293px; } .ico_permissions{ background-position: 5px -775px; } .ico_precedence{ background-position: 5px -1737px; } .ico_refresh{ background-position: 5px -146px; } .ico_remove_line { float: right; } .ico_replace { background-position: 5px -1182px; } .ico_save{ background-position: 5px -442px; } .ico_select_all{ background-position: 5px -1330px; } .ico_settings { background-position: 5px -1700px; } .ico_sitevariables{ background-position: 5px -1219px; } .ico_success, .ico_yes { background-position: 5px -332px; } .ico_table { background-position: 5px -1663px; } .ico_tags { background-position: 5px -1774px; } .ico_tools { background-position: 5px -1959px; } .ico_tree{ background-position: 5px -1885px; } .ico_view { background-position: 5px -849px; } .ico_view_all { background-image: none; line-height: 22px; padding-left: 5px; } .ico_users { background-position: 5px -1589px; } .ico_users_send_email{ background-position: 5px -482px; } .ico_warn { background-position: 15px -516px; } .notification .ico_success, .notification .ico_yes { background-position: 15px -330px; } .notification .ico_error { background-position: 15px -220px; } /****************************************************** main panel ******************************************************/ div#fuel_main_panel { position: absolute; top: 0; left: 201px; right: 0px; bottom: 0px; background-color: #fff; -webkit-transition: all 0.2s cubic-bezier(0.445,0,0,1); -moz-transition: all 0.2s cubic-bezier(0.445,0,0,1); -ms-transition: all 0.2s cubic-bezier(0.445,0,0,1); -o-transition: all 0.2s cubic-bezier(0.445,0,0,1); transition: all 0.2s cubic-bezier(0.445,0,0,1); } #nav_toggle { opacity:0.9;} #nav_toggle { position: absolute; left: 182px; top: 0; font-size: 1.3em; color: #fff; opacity:0.5; cursor: pointer; display: block; padding-left: 25px; background:url(../images/icons/ico_nav_list.png) no-repeat left center; background-size: 50%; text-indent: -10000px; } .nav_hide div#fuel_main_panel, div#fuel_left_panel { top: 30px; left: 0px; } body.nav_hide { overflow: hidden; width: 100%; display: block; position: relative; } body.nav_hide, div#fuel_main_panel { min-width: 700px; } .nav_hide div#fuel_top { height: 30px; line-height: 30px; } .nav_hide div#fuel_left_panel { left: -201px; z-index: 50; -webkit-transform: translateX(201px); -moz-transform: translateX(201px); -ms-transform: translateX(201px); -o-transform: translateX(201px); transform: translateX(201px); } .nav_hide div#fuel_main_panel { left: 0px; z-index: 100; } .nav_hide h1#fuel_site_name { width: auto; display: block; float: none; padding: 0 100px 0 85px; text-align: center; } .nav_hide div#fuel_left_panel_inner li.active { -webkit-background-size: auto 100%; background-size: auto 100%; } .nav_hide #nav_toggle { position: absolute; left: 15px; top: 0; font-size: 1.3em; color: #fff; opacity:0.5; cursor: pointer; display: block; padding-left: 20px; background-size: 27%; text-indent: 0; } .nav_hide div#fuel_main_panel {-webkit-transform: translateX(0px); -moz-transform: translateX(0px); -ms-transform: translateX(0px); -o-transform: translateX(0px); transform: translateX(0px); } /* iPads (portrait and landscape) */ @media only screen and (min-device-width : 768px) and (max-device-width : 1024px) { div#fuel_left_panel a { font-size: 1.2em; line-height: 2em; } } /* Smartphones (portrait and landscape) */ @media only screen and (min-device-width : 320px) and (max-device-width : 480px) { div#fuel_left_panel a { font-size: 1.2em; line-height: 2em; } } /* bread nav */ div#fuel_main_top_panel { height: 29px; font-size: 13px; color: #fff; background-color: #e7e7e7; border-bottom: 1px solid #ccc; overflow: hidden; } div#fuel_main_top_panel h2 { color: #333; text-shadow: #fff 0px 1px 0px; line-height: 30px; margin-left: 11px; } div#fuel_main_top_panel h2 a { color: #0E3E7E; } div#fuel_main_top_panel li { float: left; display: block; list-style: none; line-height: 29px; font-weight: bold; border-right: 1px solid #6e6e6e;} div#fuel_main_top_panel li a { display: block; color: #fff; text-shadow: #555 0px 1px 0px; background: #6d6d6d url(../images/tab.png) repeat-x; padding: 0 15px; } div#fuel_main_top_panel li a:hover { background: #7c7c7c url(../images/tab.png) repeat-x 0 -29px; } div#fuel_main_top_panel li.active a { background: #e7e7e7 url(../images/tab.png) repeat-x 0 -58px; color: #113556; text-shadow: #fff 0px 1px 0px; } div#fuel_login_logout { position: absolute; top: 8px; right: 15px; font-size: 11px; color: #333; background-color: #e7e7e7; height: 21px;text-shadow: #fff 0px 1px 0px; } div#fuel_actions { height: 46px; border-bottom: 1px solid #b6b6b6; position: relative; min-width: 680px; background: #eee; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, whiteSmoke), color-stop(1, #cfd1cf)); background: -moz-linear-gradient(top center, #f6f6f6 0%, #ddd 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#dddddd'); } /* main content */ div#fuel_main_content { overflow: auto; position: absolute; top: 99px; left: 0px; right: 0px; bottom: 0px; } div#fuel_main_content .buttonbar li, #fuel_main_content_compact .buttonbar li { margin-right: 15px; } div#fuel_main_content_inner { } div#fuel_main_content_inner.has_related { position: absolute; top: 0; left: 0; right: 230px; bottom: 0; } div#fuel_main_content_inner h3 { background-color: #f6f6f6; padding: 5px; margin-bottom: 10px; } div#fuel_main_content_inner { padding: 15px 37px; } div#fuel_main_content_inner .bullets { margin-left: 15px; } div#fuel_loader { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-color: white; opacity: .4; padding-top: 100px; } div.noactions { top: 52px !important; } div.notitlebar { top: 69px !important; } div.noactions_notitlebar { top: 22px !important; } div.noactions_nonotification { top: 30px !important; } /* inline/compact mode */ div#fuel_main_panel_compact { position: absolute; top: 0px; left: 0px; right: 0px; bottom: 0px; background-color: #fff; } div#fuel_main_content_compact { background-color: #fff; overflow: auto; position: absolute; top: 99px; left: 0px; right: 0px; bottom: 0px; } /* dashboard */ div.dashboard_pod { float: left; margin-right: 10px } div.dashboard_module { float: left; margin-right: 10px; margin-top: 10px; } /* filters */ div#filters { position: absolute; right: 15px; top: 12px; } a#multi_delete { display: block; } .adv_search { position: absolute; min-width: 360px; background: white; border: 1px solid #b6b6b6; z-index: 1000; left: -120px; padding: 10px 15px; display: none; -moz-box-shadow: 1px 3px 5px 1px rgba(0,0,0,0.3); -webkit-box-shadow: 1px 3px 5px 1px rgba(0,0,0,0.3); box-shadow: 2px 2px 10px 1px rgba(0,0,0,0.3); } .adv_search .more_filters { max-height: 500px; overflow-y: auto; } .adv_search .more_filters div div { float: none; overflow: hidden; margin-bottom: 7px; } .adv_search .label { width: 100px; } .adv_search input[type="text"] { max-width: 217px; } .search_input { position: relative; } #search_term.advanced { padding-right: 15px; } .search_input #adv-search-btn { position: absolute; right: 6px; top: 2px; padding-top: 5px; height: 10px; background-color: #fff; } #filters_container { position: relative; margin-bottom: 30px; } .filters { background: #eee; border-bottom: 1px solid #ccc; padding: 10px 15px; -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3); -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3); box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.3); } .filters .more_filters { max-height: 500px; overflow-y: auto; } .filters .more_filters div div { float: left; overflow: hidden; margin-bottom: 0; min-width: 32%; min-height: 32px; } .filters .more_filters .select2-search-choice > div { min-height: 0; } .select2-drop-active { margin-top: -5px !important; } .filters .more_filters div div div { margin-bottom: 0; } .filters .more_filters .label { font-weight: bold; } .filters .more_filters .actions { float: none; } .filters .label { width: 75px; } .filters .field input[type="checkbox"] { top: 5px; } .filters .field input[type="radio"] { top: 3px; } .filters input[type="text"] { max-width: 217px; } a.btn.filters_toggle { height: 20px; line-height: 20px; z-index: 1; left: 50%; margin-left: -45px; position: absolute; text-align: center; background-color: #eeeeee; border-top: none; border-left: 1px solid #cccccc; border-right: 1px solid #cccccc; /*width: 45px;*/ -webkit-border-top-right-radius: 0; -webkit-border-top-left-radius: 0; -moz-border-radius-topright: 0; -moz-border-radius-topleft: 0; border-top-right-radius: 0; border-top-left-radius: 0; -webkit-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4); -moz-box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4); box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4); } /* other items */ div#other_items { float: left; margin: 2px 20px 0px 20px; } div#other_items select{ max-width: 250px;} /* button bar*/ div#action_btns { position: absolute; top: 9px; left: 15px; height: 29px; overflow: hidden; } div.buttonbar ul { height: 27px; float: left; } div.buttonbar li, .btn, div.btn, .btn input, .btn .button { border-top: 1px solid #ccc; border-left: 1px solid #b9b9b9; border-bottom: 1px solid #b9b9b9; float: left;list-style: none; margin: 0; background: #e6e6e6 url(../images/btn.png) repeat-x; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(1, #ddd)); background: -moz-linear-gradient(top center, #fff 0%, #ddd 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dddddd'); } div.buttonbar li:hover, .btn:hover, div.btn:hover, .btn input:hover, .btn .button:hover { background-position: 0 -27px; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(1, #eee)); background: -moz-linear-gradient(top center, #fff 0%, #eee 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee'); -moz-box-shadow: inset 0 0 5px #ddd; -webkit-box-shadow: inset 0 0 5px #ddd; box-shadow: inner 0 0 5px #ddd; } div.buttonbar li.active { background-position: 0 -54px; background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ddd), color-stop(1, #fff)); background: -moz-linear-gradient(top center, #ddd 0%, #fff 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dddddd', endColorstr='#ffffff'); } div.buttonbar li.active a { color: #000; } div.buttonbar li a { color: #0e3e7e; height: 22px; line-height: 20px; display: block; padding: 0 11px 1px 26px; margin-top: 4px; } div.buttonbar li.spacer, li.unattached { margin-left: 10px;} div.buttonbar li:last-child, li.unattached { border-right: 1px solid #b9b9b9; } div.buttonbar li.end { border-right: 1px solid #b9b9b9; } /* on own line so it will work in IE 8 */ div.buttonbar li:first-child, div.buttonbar li.unattached { -webkit-border-top-left-radius: 4px; -webkit-border-bottom-left-radius: 4px; -moz-border-radius-topleft: 4px; -moz-border-radius-bottomleft: 4px; border-top-left-radius: 4px; border-bottom-left-radius: 4px; } div.buttonbar li:last-child, div.buttonbar li.unattached { -webkit-border-top-right-radius: 4px; -webkit-border-bottom-right-radius: 4px; -moz-border-radius-topright: 4px; -moz-border-radius-bottomright: 4px; border-top-right-radius: 4px; border-bottom-right-radius: 4px; } div.buttonbar li.start { border-left: 1px solid #b9b9b9; } div.save_cancel { height: 35px; } div.save_cancel li { margin: 5px 3px; } /* form tabs */ div.form_tabs li { padding: 5px 15px; list-style: none; margin: 0 3px 0 0; border-left: 1px solid #eee; border-right: 1px solid #eee; border-top: 1px solid #eee; text-align: center; float: left; font-weight: bold; background-color: #ffffff; -webkit-border-top-left-radius: 4px; -webkit-border-top-right-radius: 4px; -moz-border-radius-topleft: 4px; -moz-border-radius-topright: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; } div.form_tabs li.active { background-color: #eee; } div.form_tabs li.active a { color: #333; } /* box buttons use for manage */ div.boxbuttons li { float: left; display: block; list-style: none; width: 110px; height: 60px; border: 1px solid #ccc; margin-bottom: 15px; margin-right: 15px; } div.boxbuttons li a { display: block; text-align: center; padding: 10px 5px 5px 5px; width: 100px; height: 45px; background-color: #fff; } div.boxbuttons li a:hover { background-color: #f6f6f6; } div.boxbuttons li i { display: block; padding: 0; margin: auto; width: 21px; height: 22px; padding-right: 5px; } /* notification */ div#fuel_notification { height: 21px; border-bottom: 1px solid #ccc; background-color: #ecf1f5; text-overflow: ellipsis; overflow: hidden; position: relative; } div#notification_extra { z-index: 10; position: relative; } div.notification p, div.notification div, div.notification ul { margin: 0; min-height: 15px; line-height: 15px; padding: 3px 0 3px 35px; list-style: none; background-repeat: no-repeat; list-style: none; } div.notification .ico { line-height: 15px; } /* pagination */ div#pagination { position: absolute; z-index: 1; right: 0px; top: -3px; text-align: right; padding-right: 25px; } div#pagination a { line-height: 21px; padding: 0 3px; border: 1px solid #ccc; background-color: #f9f9f9; } div#pagination a:hover { background-color: #fdfdfd; } div#pagination b { color: #fff; background-color: #4f7193; line-height: 21px; padding: 0 3px; border: 1px solid #ccc; } /* module description */ div#module_description { border-bottom: 1px solid #ccc; background-color: #f6f6f6; padding: 15px; } div#module_description p { margin: 0; } /* data table */ div#table_loader { position: absolute; top: 20px; left: 50%; margin-left: -25px; z-index: 2;} div#data_table_container { padding: 6px 0; } #data_table .publish_hover:hover .publish_action { display: inline; } #data_table .publish_hover:hover .publish_text { display: none; } table#data_table.rearrange tr:hover td { cursor: move !important; background-color: #ffe !important; } table.data { width: 98%; margin: 0px auto; } table.data th { padding: 0 20px 0 0; white-space: nowrap; } table.data td { padding: 5px 20px; border-top: 1px solid #fff; white-space: nowrap; max-width: 300px; text-overflow: ellipsis; overflow: hidden; } table.data th.on, table.data th.on a { color: #4f7193; } table.data th a { text-decoration: underline; } table.data th a, table.data th span { color: #333; display: block; line-height: 22px; padding: 0 0 0 20px; width: 100%; border-left: 1px solid #fff;} table.data th.asc a { background: transparent url(../images/th_arrow_asc.png) no-repeat 5px center; } table.data th.desc a { background: transparent url(../images/th_arrow_desc.png) no-repeat 5px center; } table.data th { text-align: left; } table.data td.next_last { width: 100%; } table.data td.actions { text-align: right; white-space: nowrap; padding-left: 5px; } table.data tr.rowaction:hover td { background-color: #edf2f7 !important; cursor: pointer; } /*table.data th.col1 { min-width: 200px; }*/ table.data tr.alt { background-color: #f3f3f3; } div.nodata { text-align: center; padding: 10px 0 15px 0;} .embedded_list_items table.data th.col1 { min-width: 0; } /* specific data column classes */ span.publish_col { width: 100px; display: block; cursor: pointer !important; } /* form tables */ .form { border: none; border-spacing: 0; display: table; } /* important to display as table so that the proper width can be determined with inline editing */ .form td.label { padding: 6px 15px 0 0; font-weight: bold; vertical-align: top; /*white-space: nowrap; */} .form td.field { padding: 3px 0; white-space: nowrap; } .form td.required { padding-top: 10px; } .form .form td.required { display: none; } div.more_filters { padding-left: 10px; } div.more_filters span.label { float: left; padding-top: 6px; } div.more_filters span.field { float: left; display: block; padding: 0 0 0 5px; } div.more_filters div div { float: left; margin-right: 10px; } /* tree */ div#tree_container { padding: 16px 15px; } div#tree_loader { position: absolute; top: 20px; left: 50%; margin-left: -25px; z-index: 2;} /* #login */ div#login { padding: 15% 0 0 0; border: none; background-color: transparent; margin: 0 auto; } div#login h3 { margin: 0; } div#login h3, div#login p { color: #fff; text-align: center; } div#login ul li { margin-left: 20px; color: #fff; } div#login form { width: 270px; margin: 0 auto; } div#login input { background-color: #1d1d1d; color: #fff; -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px; border: 2px solid #444; height: 40px; width: 270px; padding: 0 1em; } .login_logo { background: transparent url(../images/fuel_logo.png) no-repeat; background-size: 100%; width: 233px; height: 46px; overflow: hidden; margin: 0 auto 1.5em auto; } div#login ::-webkit-input-placeholder {color: #999; } div#login :-moz-placeholder { color: #999; } div#login :-ms-input-placeholder { color: #999; } div#login input[type="submit"] { background: #3dbfd9 !important; color: #fff; font-size: 20px; text-shadow: none; } div#login_notification { text-overflow: ellipsis; overflow: hidden; width: 440px; margin: auto; } a#forgotten_pwd { text-align: center; display: block; padding-top: 15px; padding-left:20px; color: #999; } /* assets & modal */ a.modal_close, a.asset_delete { position: absolute; left: -11px; top: -11px; z-index: 10; background: transparent url(../images/x_close.png) no-repeat center center; width: 23px; height: 23px; text-indent: -10000px; overflow:hidden; } a.asset_delete { display: none; left: -13px; top: -2px; } div.modal_content { -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;background-color: #fff; width: 100%; height: 100%;/*max-height: 450px;*/ overflow: hidden; } div.modal_content iframe { width: 100% !important; } div.modal_content_inner { padding: 10px 20px; } div#asset_preview { height: 275px; width: 740px; overflow: auto; text-align: center; margin: 10px 0 20px 0;} div#asset_preview img, .img_bg { background-color: #f3f3f3; } div.asset_select > div > div { float: left; } div.asset_select span.label { padding: 0 5px 0 15px; } div.asset_upload_preview { position: relative; } div.img_crop { max-width: 400px; max-height: 200px; overflow: auto; } div#yes_no_modal { text-align: center; margin: 0; } div#yes_no_modal ul { float: none; } div#yes_no_modal li { display: inline-block; margin-right: 5px; float: none;} div#__FUEL_modal__ { -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; width: 98%; max-width: 864px; margin-left: -425px; max-height: 600px; background-color: #fff; } div#__FUEL_modal__ .add_inline_button, div#__FUEL_modal__ .edit_inline_button { display: none; } div#__FUEL_modal__ .loader { margin: 7% -16px 0 auto; position: absolute; left: 50%; } a.btn_field_right { display: block; float: right; margin-bottom: 5px; margin-right: 3px; } div.img_display { float: right; overflow: auto; height: 120px; width: 300px; } div.viewpage_modal { top: 16px; border: 2px solid #666; background-color: #fff; height: 96% !important; width: 96% !important; max-width: 96% !important; max-height: 96% !important; padding: 0; display: none; } div#viewpage_btns { position: absolute; z-index: 1; top: -17px; right: -2px; } a.viewpage_btn { float: left; margin-right: 2px; color: #ccc; background-color: #666; padding: 1px 5px; } a#viewpage_close { right: 0px; } a#viewpage_new_page { right: 100px; } iframe#viewpage_iframe { border: none; width: 100%; height: 100%; } /* misc */ input#Save, input.submit { margin-top: 10px; width: 150px; text-align: center; } input#Cancel, input.cancel { margin-top: 10px; margin-right: 10px; width: 60px; text-align: center; } div#tooltip h3 { font-size: 11px; font-weight: normal; } a.btn_field { -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; line-height: 12px; border: 1px solid #ccc; padding: 3px 5px 3px 5px; background: #eee url(../images/btn.png) repeat-x; } a.btn_field:hover { background-position: 0 -27px; } a#back_to { margin-bottom: 20px; display: block; } .hidden_form { visibility:hidden; height: 0px; overflow: hidden; } /* pages */ div#related_items { z-index: 20; position: absolute; right: 0; width: 210px; background-color: #ecf1f5; border-left: 1px solid #ccc; border-bottom: 1px solid #ccc; padding: 10px; } div#related_items h3 { background-color: transparent; padding-left: 24px; margin-top: 5px; } div#related_items li { list-style: none; padding-left: 5px; margin: 5px 0; } div#related_items select { max-width: 212px; } div#related_items .layout_preview { max-width: 210px; margin: 10px auto; } a.reset { display: block; width: 16px; height: 16px; background: transparent url(../images/fuel_icons.png) no-repeat 0px -146px; margin-right: 5px; } /* users */ div.perms_list ul ul { margin: 10px; } div.perms_list ul li { margin: 8px 0 8px; list-style: none; display: block; } div.perms_list ul li input { margin-right: 2px; } div.perms_list ul ul li { margin: 8px 0 8px 10px; } div.perms_list label { font-weight: bold; } /* tags */ .match_class { display: block; position: absolute; z-index: 10; margin-bottom: 0px; min-height: 30px;} .match_class span { display: inline-block; cursor: pointer; padding: 3px; background-color: #fcfce6; border: 1px solid #ccc; margin: 3px 0 3px 3px; } .multi_field { margin-bottom: 10px; display: inline-block; padding-top: 2px; } /* ckeditor */ .cke_top { min-width: 565px !important; } .cke_button__fuellink_icon { background: url(../js/editors/ckeditor/skins/moono/icons.png) no-repeat 0 -528px !important; } .cke_button__fuelunlink_icon { background: url(../js/editors/ckeditor/skins/moono/icons.png) no-repeat 0 -552px !important; } .cke_button__fuelimage_icon { background: url(../js/editors/ckeditor/skins/moono/icons.png) no-repeat 0 -360px !important; } /* CI profiler */ #codeigniter_profiler { position: absolute; bottom: 0; left: 200px; height: 300px; overflow: auto; }
0.314577
0.075721
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); .tabbrowser-tabs > tab .tab-close-button { margin: 1px 0 3px !important; } .tabbrowser-tabs > tab .tab-icon { margin: 0 !important; } .tabbrowser-tabs { background: transparent !important; margin-top: 1px !important; } .tabbrowser-tabs .tabs-bottom { background: #D4D0C8 !important; border-top: 0 !important; height: 0 !important; } .tabbrowser-tabs .tabs-frame { margin-top: 2px !important; } .tabbrowser-tabs .tabbrowser-tab[selected=true] { margin-bottom: 0px !important; } .tabbrowser-tabs .tabbrowser-tab { margin-left: 1px !important; margin-bottom: -1px !important; background: transparent !important; padding-top: 0 !important; } .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-middle, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-image-left, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-image-right { background: #F0F0E8 !important; border: 1px solid #666666 !important; } .tabbrowser-tabs tab:hover .tab-middle, .tabbrowser-tabs tab:hover .tab-image-left, .tabbrowser-tabs tab:hover .tab-image-right { background: #E4E0D8 !important; } .tabbrowser-tabs .tab-middle, .tabbrowser-tabs .tab-image-left, .tabbrowser-tabs .tab-image-right { background: #D9D4D0 !important; border: 1px solid #96969D !important; } .tabbrowser-tabs .tab-middle, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-middle { border-left: 0 !important; border-right: 0 !important; } .tabbrowser-tabs .tab-image-left, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-image-left { border-right: 0 !important; } .tabbrowser-tabs .tab-image-right, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-image-right { border-left: 0 !important; } .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-middle, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-image-left, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-image-right { border-top: 2px solid #6FA2E4 !important; }
data/usercss/1086.user.css
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); .tabbrowser-tabs > tab .tab-close-button { margin: 1px 0 3px !important; } .tabbrowser-tabs > tab .tab-icon { margin: 0 !important; } .tabbrowser-tabs { background: transparent !important; margin-top: 1px !important; } .tabbrowser-tabs .tabs-bottom { background: #D4D0C8 !important; border-top: 0 !important; height: 0 !important; } .tabbrowser-tabs .tabs-frame { margin-top: 2px !important; } .tabbrowser-tabs .tabbrowser-tab[selected=true] { margin-bottom: 0px !important; } .tabbrowser-tabs .tabbrowser-tab { margin-left: 1px !important; margin-bottom: -1px !important; background: transparent !important; padding-top: 0 !important; } .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-middle, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-image-left, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-image-right { background: #F0F0E8 !important; border: 1px solid #666666 !important; } .tabbrowser-tabs tab:hover .tab-middle, .tabbrowser-tabs tab:hover .tab-image-left, .tabbrowser-tabs tab:hover .tab-image-right { background: #E4E0D8 !important; } .tabbrowser-tabs .tab-middle, .tabbrowser-tabs .tab-image-left, .tabbrowser-tabs .tab-image-right { background: #D9D4D0 !important; border: 1px solid #96969D !important; } .tabbrowser-tabs .tab-middle, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-middle { border-left: 0 !important; border-right: 0 !important; } .tabbrowser-tabs .tab-image-left, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-image-left { border-right: 0 !important; } .tabbrowser-tabs .tab-image-right, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-image-right { border-left: 0 !important; } .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-middle, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-image-left, .tabbrowser-tabs .tabbrowser-tab[selected=true] .tab-image-right { border-top: 2px solid #6FA2E4 !important; }
0.348756
0.117269
html, body{ margin: 0; padding: 0; } :root { --icon-size: 3.5em; --icon-increase: 1.4em; --main-color: #aaa; --largeIcon-size: 124px; --largeIcon-increase: 48px; } a { color:#202020; transition: color 1.5s; } a:hover{ text-decoration: none; color:#202020; transition: color .5s; } a:visited{ text-decoration: none; } a:-webkit-any-link { text-decoration: none; } #navBarDetection{ opacity: 0; height: 55px; width: 100%; position: fixed; z-index: 5; } .navbar { margin: 10 auto 0 auto; background-color: #000; box-shadow: 0 0 30px #00e5e6, 1px 1px 2px black; border-radius: 10px; display: none; border-bottom: 0; } .navbar li { margin-right: 5px; transition: background .5s; } .navbar-nav>li>a { padding-bottom: 12px; } .navbar li:hover { background: #094965; transition: background .5s; } .jumbotron { margin-bottom: 0; background-color: white; } .jumbo-size { position: relative; min-height: 100%; } .vertical-align { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -40%); } #home { background: url('../images/illuminated-keyboard-croped.jpg') no-repeat center center fixed; background-size: cover; color: #00e5e6; } #home h1{ color: #333; font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 50px; margin: 0 auto 80px auto; text-transform: uppercase; text-shadow: 0 0 30px #00e5e6, 1px 1px 2px white; max-width:660px; display: none; } h1.other{ padding: 5px; color: #000000; background-color: rgba(245, 245, 245, 0.4); border-radius: 75px; } #know{ background: url('../images/office-black-and-white-1280x960.jpg') no-repeat center center fixed; background-size: cover; color: #00e5e6; } #know .container{ background-color: rgba(124, 124, 124, 0.8); margin-top: 50px; } #know p{ font-size: 2.5em; } .revealOnScroll{ opacity: 0} .animated { animation: flyin 1s ease forwards; opacity: 0; transform: scale(2); filter: blur(4px); } @keyframes flyin { to { filter: blur(0); transform: scale(1); opacity: 1; } } #about .container{ background-color: rgba(26, 24, 24, 0.918); margin-top: 50px; } #about{ background: url('../images/forest-1183524_1280.jpg') no-repeat center center fixed; background-size: cover; color: white; } #about img { display: block; margin: 50px auto 20px auto; box-shadow: 0 0 15px black; } .slide-in{ animation-duration: 1s; animation-name: slidein; } @keyframes slidein { from { margin-left: 110%; } to { margin-left: 41.5%; } } li { font-size: 1.25em; color:#222222; } #portfolio { background: url('../images/internet-connect-1278x981.jpg') no-repeat center center; background-size: cover; min-height: 1200px; } #portfolio .container{ margin-top: 50px; } .thumbnail { background-color: rgba(124, 124, 124, 0.8); min-height: 200px; position: relative; padding-bottom: 40px; } .bottom{ position: absolute; min-width: 125px; left:50%; margin-left:-63px; bottom: 20px; } #portfolio p, h3, h4, ul, li { color: #222222; } ul { display: block; text-align: left; list-style-type: disc; -webkit-margin-before: 1em; -webkit-margin-after: 1em; -webkit-margin-start: 0; -webkit-margin-end: 0; -webkit-padding-start: 40px; } #connect { background: url('../images/sky-828648_1280.jpg') no-repeat center center fixed; background-size: cover; color: white; } #connect .container{ background-color: rgba(100, 100, 100, 0.6); border-radius: 35%; padding-top: 20px; } .largeIcon{ margin: calc(var(--largeIcon-increase)/2) ; width: var(--largeIcon-size); height: var(--largeIcon-size); transition: .5s; } .largeIcon:hover { margin: 0; width: calc(var(--largeIcon-size) + var(--largeIcon-increase)); height: calc(var(--largeIcon-size) + var(--largeIcon-increase)); transition: .5s; } .icon { margin: calc(var(--icon-increase)/2) ; width: var(--icon-size); height: var(--icon-size); transition: .5s; } .icon:hover { margin: 0; width: calc(var(--icon-size) + var(--icon-increase)); height: calc(var(--icon-size) + var(--icon-increase)); transition: .5s; } @media (max-width: 768px) { :root{ --largeIcon-size: 114px; --largeIcon-increase: 24px; } .navbar-right { float: right!important; } .navText { display: none; } .navbar-nav { display: flex; } } @media (max-width: 464px) { :root{ --largeIcon-size: 74px; --largeIcon-increase: 16px; } .navbar-brand, .navText { display: none; } .navbar-nav { display: flex; } #portfolio { min-height: 2100px; } #cicons { margin-left: auto; margin-right: auto; } }
stylesheets/stylesheet.css
html, body{ margin: 0; padding: 0; } :root { --icon-size: 3.5em; --icon-increase: 1.4em; --main-color: #aaa; --largeIcon-size: 124px; --largeIcon-increase: 48px; } a { color:#202020; transition: color 1.5s; } a:hover{ text-decoration: none; color:#202020; transition: color .5s; } a:visited{ text-decoration: none; } a:-webkit-any-link { text-decoration: none; } #navBarDetection{ opacity: 0; height: 55px; width: 100%; position: fixed; z-index: 5; } .navbar { margin: 10 auto 0 auto; background-color: #000; box-shadow: 0 0 30px #00e5e6, 1px 1px 2px black; border-radius: 10px; display: none; border-bottom: 0; } .navbar li { margin-right: 5px; transition: background .5s; } .navbar-nav>li>a { padding-bottom: 12px; } .navbar li:hover { background: #094965; transition: background .5s; } .jumbotron { margin-bottom: 0; background-color: white; } .jumbo-size { position: relative; min-height: 100%; } .vertical-align { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -40%); } #home { background: url('../images/illuminated-keyboard-croped.jpg') no-repeat center center fixed; background-size: cover; color: #00e5e6; } #home h1{ color: #333; font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 50px; margin: 0 auto 80px auto; text-transform: uppercase; text-shadow: 0 0 30px #00e5e6, 1px 1px 2px white; max-width:660px; display: none; } h1.other{ padding: 5px; color: #000000; background-color: rgba(245, 245, 245, 0.4); border-radius: 75px; } #know{ background: url('../images/office-black-and-white-1280x960.jpg') no-repeat center center fixed; background-size: cover; color: #00e5e6; } #know .container{ background-color: rgba(124, 124, 124, 0.8); margin-top: 50px; } #know p{ font-size: 2.5em; } .revealOnScroll{ opacity: 0} .animated { animation: flyin 1s ease forwards; opacity: 0; transform: scale(2); filter: blur(4px); } @keyframes flyin { to { filter: blur(0); transform: scale(1); opacity: 1; } } #about .container{ background-color: rgba(26, 24, 24, 0.918); margin-top: 50px; } #about{ background: url('../images/forest-1183524_1280.jpg') no-repeat center center fixed; background-size: cover; color: white; } #about img { display: block; margin: 50px auto 20px auto; box-shadow: 0 0 15px black; } .slide-in{ animation-duration: 1s; animation-name: slidein; } @keyframes slidein { from { margin-left: 110%; } to { margin-left: 41.5%; } } li { font-size: 1.25em; color:#222222; } #portfolio { background: url('../images/internet-connect-1278x981.jpg') no-repeat center center; background-size: cover; min-height: 1200px; } #portfolio .container{ margin-top: 50px; } .thumbnail { background-color: rgba(124, 124, 124, 0.8); min-height: 200px; position: relative; padding-bottom: 40px; } .bottom{ position: absolute; min-width: 125px; left:50%; margin-left:-63px; bottom: 20px; } #portfolio p, h3, h4, ul, li { color: #222222; } ul { display: block; text-align: left; list-style-type: disc; -webkit-margin-before: 1em; -webkit-margin-after: 1em; -webkit-margin-start: 0; -webkit-margin-end: 0; -webkit-padding-start: 40px; } #connect { background: url('../images/sky-828648_1280.jpg') no-repeat center center fixed; background-size: cover; color: white; } #connect .container{ background-color: rgba(100, 100, 100, 0.6); border-radius: 35%; padding-top: 20px; } .largeIcon{ margin: calc(var(--largeIcon-increase)/2) ; width: var(--largeIcon-size); height: var(--largeIcon-size); transition: .5s; } .largeIcon:hover { margin: 0; width: calc(var(--largeIcon-size) + var(--largeIcon-increase)); height: calc(var(--largeIcon-size) + var(--largeIcon-increase)); transition: .5s; } .icon { margin: calc(var(--icon-increase)/2) ; width: var(--icon-size); height: var(--icon-size); transition: .5s; } .icon:hover { margin: 0; width: calc(var(--icon-size) + var(--icon-increase)); height: calc(var(--icon-size) + var(--icon-increase)); transition: .5s; } @media (max-width: 768px) { :root{ --largeIcon-size: 114px; --largeIcon-increase: 24px; } .navbar-right { float: right!important; } .navText { display: none; } .navbar-nav { display: flex; } } @media (max-width: 464px) { :root{ --largeIcon-size: 74px; --largeIcon-increase: 16px; } .navbar-brand, .navText { display: none; } .navbar-nav { display: flex; } #portfolio { min-height: 2100px; } #cicons { margin-left: auto; margin-right: auto; } }
0.313
0.076822
padding-left: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } #wrapper.toggled { padding-left: 250px; } #sidebar-wrapper { z-index: 9999; position: fixed; left: 250px; width: 0; height: 100%; margin-left: -250px; background: #000000eb; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } #wrapper.toggled #sidebar-wrapper { width: 250px; } #page-content-wrapper { width: 100%; position: absolute; padding: 15px; } #wrapper.toggled #page-content-wrapper { position: absolute; margin-right: -250px; } /* Sidebar Styles */ .sidebar-nav { position: absolute; top: 60px; width: 300px; margin: 0; padding: 0; list-style: none; } .sidebar-nav li { text-indent: 20px; line-height: 40px; } .sidebar-nav li a { display: block; text-decoration: none; color: #999999; } .sidebar-nav li a:hover { text-decoration: none; color: #fff; background: rgba(255,255,255,0.2); } .sidebar-nav li a:active, .sidebar-nav li a:focus { text-decoration: none; } .sidebar-nav > .sidebar-brand { height: 65px; font-size: 18px; line-height: 60px; } .sidebar-nav > .sidebar-brand a { color: #999999; } .sidebar-nav > .sidebar-brand a:hover { color: #fff; background: none; } #wrapper.toggled { padding-left: 0; } #sidebar-wrapper { width: 300px; } #wrapper.toggled #sidebar-wrapper { width: 0; } #page-content-wrapper { padding: 20px; position: relative; } #wrapper.toggled #page-content-wrapper { position: relative; margin-right: 0; } .painel-do-usuario{ white-space: nowrap; overflow: hidden; position: relative; width: 100%; padding: 10px; overflow: hidden; } .pull-center { text-align: center; } .img-circle{ width: 170px; height: auto; } .informacao-center{ color: rgb(255, 255, 255); line-height: 1; padding: 15px 15px 0; text-align: center; } .informacao-center p { font-size: 12px; font-weight: 600; letter-spacing: .1rem; text-decoration: none; text-transform: uppercase; } .sidebar-brand{ color: rgb(75, 100, 111); background: rgb(26, 34, 38); text-overflow: clip; overflow: hidden; height: 40px!important; font-size: 18px !important; line-height: 40px !important; } .sidebar-brande a { height: 40px; }
public/css/sidebar-vertical.css
padding-left: 0; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } #wrapper.toggled { padding-left: 250px; } #sidebar-wrapper { z-index: 9999; position: fixed; left: 250px; width: 0; height: 100%; margin-left: -250px; background: #000000eb; -webkit-transition: all 0.5s ease; -moz-transition: all 0.5s ease; -o-transition: all 0.5s ease; transition: all 0.5s ease; } #wrapper.toggled #sidebar-wrapper { width: 250px; } #page-content-wrapper { width: 100%; position: absolute; padding: 15px; } #wrapper.toggled #page-content-wrapper { position: absolute; margin-right: -250px; } /* Sidebar Styles */ .sidebar-nav { position: absolute; top: 60px; width: 300px; margin: 0; padding: 0; list-style: none; } .sidebar-nav li { text-indent: 20px; line-height: 40px; } .sidebar-nav li a { display: block; text-decoration: none; color: #999999; } .sidebar-nav li a:hover { text-decoration: none; color: #fff; background: rgba(255,255,255,0.2); } .sidebar-nav li a:active, .sidebar-nav li a:focus { text-decoration: none; } .sidebar-nav > .sidebar-brand { height: 65px; font-size: 18px; line-height: 60px; } .sidebar-nav > .sidebar-brand a { color: #999999; } .sidebar-nav > .sidebar-brand a:hover { color: #fff; background: none; } #wrapper.toggled { padding-left: 0; } #sidebar-wrapper { width: 300px; } #wrapper.toggled #sidebar-wrapper { width: 0; } #page-content-wrapper { padding: 20px; position: relative; } #wrapper.toggled #page-content-wrapper { position: relative; margin-right: 0; } .painel-do-usuario{ white-space: nowrap; overflow: hidden; position: relative; width: 100%; padding: 10px; overflow: hidden; } .pull-center { text-align: center; } .img-circle{ width: 170px; height: auto; } .informacao-center{ color: rgb(255, 255, 255); line-height: 1; padding: 15px 15px 0; text-align: center; } .informacao-center p { font-size: 12px; font-weight: 600; letter-spacing: .1rem; text-decoration: none; text-transform: uppercase; } .sidebar-brand{ color: rgb(75, 100, 111); background: rgb(26, 34, 38); text-overflow: clip; overflow: hidden; height: 40px!important; font-size: 18px !important; line-height: 40px !important; } .sidebar-brande a { height: 40px; }
0.480722
0.061876
@charset "UTF-8"; /* [2] */ /* [8] */ /*=============================================== [SASS DIRECTORY ] [1] Minxin Link [2] Minxin Button [3] Minxin Triangle [4] Minxin LABEL PRODUCT [5] Minxin Scrollbars [6] Minxin Dev Custom ==============================================*/ .no-margin { margin: 0 !important; } /*Dev Custom */ /*====================================================*/ .lib-list-item-product2 { border: none; } .lib-list-item-product2 .image-dev .list-button-dev { position: absolute; top: 50%; left: 50%; z-index: 10; transform: translate3d(-50%, -50%, 0); -moz-transform: translate3d(-50%, -50%, 0); -webkit-transform: translate3d(-50%, -50%, 0); -ms-transform: translate3d(-50%, -50%, 0); } .lib-list-item-product2 .image-dev .list-button-dev li { display: inline-block; float: left; height: 40px; width: 40px; background: #fff; position: relative; border-width: 0 1px 0 0; border-style: solid; border-color: #ddd; opacity: 0; transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out; } .lib-list-item-product2 .image-dev .list-button-dev li:nth-child(1) { transform: translateX(40px); -moz-transform: translateX(40px); -webkit-transform: translateX(40px); -ms-transform: translateX(40px); z-index: 1; transition-delay: 0s; } .lib-list-item-product2 .image-dev .list-button-dev li:nth-child(2) { transition-delay: 0.2s; z-index: 2; } .lib-list-item-product2 .image-dev .list-button-dev li:nth-child(3) { transition-delay: 0.2s; z-index: 2; } .lib-list-item-product2 .image-dev .list-button-dev li:nth-child(4) { transform: translateX(-40px); -moz-transform: translateX(-40px); -webkit-transform: translateX(-40px); -ms-transform: translateX(-40px); z-index: 1; transition-delay: 0s; } .lib-list-item-product2 .image-dev .list-button-dev li:first-child { border-left: 1px solid #ddd; } .lib-list-item-product2 .image-dev .list-button-dev li a, .lib-list-item-product2 .image-dev .list-button-dev li button { background: none; position: absolute; width: 100%; height: 100%; top: 0; left: 0; line-height: 40px; text-align: center; box-shadow: none; border: none; color: #555; width: 40px; padding: 0; } .lib-list-item-product2 .image-dev .list-button-dev li:hover { background: #14c953; } .lib-list-item-product2 .image-dev .list-button-dev li:hover a, .lib-list-item-product2 .image-dev .list-button-dev li:hover button { color: #fff; } .lib-list-item-product2 .caption-dev { text-align: center; padding: 0 15px; } .lib-list-item-product2 .caption-dev .rating-dev { margin: 5px 0; } .lib-list-item-product2 .caption-dev .rating-dev .fa-stack-2x { font-size: 11px; } .lib-list-item-product2 .caption-dev .title-dev { color: #444; font-size: 13px; } .lib-list-item-product2 .caption-dev .price-dev .price.product-price { font-size: 16px; } .lib-list-item-product2 .caption-dev .price-dev .price-new { font-size: 16px; } .lib-list-item-product2 .caption-dev .price-dev .price-old { font-size: 12px; } .lib-list-item-product2 .caption-dev .add-cart-dev { background: #fff; border: 1px solid #ddd; font-size: 12px; text-transform: uppercase; color: #999; font-weight: bold; box-shadow: none; border-radius: 0; padding: 6px 20px; margin: 0 0 30px; transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; } .lib-list-item-product-over2 .image-dev .list-button-dev li { opacity: 1; transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out; } .lib-list-item-product-over2 .image-dev .list-button-dev li:nth-child(1) { transform: translateX(0); -moz-transform: translateX(0); -webkit-transform: translateX(0); -ms-transform: translateX(0); transition-delay: 0.2s; } .lib-list-item-product-over2 .image-dev .list-button-dev li:nth-child(2) { transition-delay: 0s; } .lib-list-item-product-over2 .image-dev .list-button-dev li:nth-child(3) { transition-delay: 0s; } .lib-list-item-product-over2 .image-dev .list-button-dev li:nth-child(4) { transform: translateX(0); -moz-transform: translateX(0); -webkit-transform: translateX(0); -ms-transform: translateX(0); transition-delay: 0.2s; } /*EFECT PRODUCT NUMBER*/ .lib-two-img { position: relative; display: block; } .lib-two-img .img-1 { opacity: 1; position: relative; transition: all 0.5s ease-in-out; } .lib-two-img .img-2 { position: absolute; z-index: 0; top: 0; opacity: 0; display: block; transition: all 0.5s ease-in-out; left: 50%; transform: translateX(-50%); } .lib-two-img-over .img-1 { opacity: 0; transform-style: inherit; transition: all 0.5s ease-in-out; } .lib-two-img-over .img-2 { opacity: 1; transform-style: inherit; transition: all 0.5s ease-in-out; } /*EFFECT SLIDERHOME*/ @keyframes myeffect-slideshow { 0% { opacity: 0; transform: translateY(-300px); -webkit-transform: translateY(-300px); -moz-transform: translateY(-300px); -ms-transform: translateY(-300px); -o-transform: translateY(-300px); } 100% { opacity: 1; transform: translateY(0); -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); } } @-webkit-keyframes myeffect-slideshow { 0% { opacity: 0; transform: translateY(-300px); -webkit-transform: translateY(-300px); -moz-transform: translateY(-300px); -ms-transform: translateY(-300px); -o-transform: translateY(-300px); } 100% { opacity: 1; transform: translateY(0); -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); } } @-moz-keyframes myeffect-slideshow { 0% { opacity: 0; transform: translateY(-300px); -webkit-transform: translateY(-300px); -moz-transform: translateY(-300px); -ms-transform: translateY(-300px); -o-transform: translateY(-300px); } 100% { opacity: 1; transform: translateY(0); -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); } } /* ================================================================================ */ .footer-container { margin-top: 20px; } .common-home .typefooter-2 { margin-top: 0px; } .typefooter-2 { margin-top: 30px; background-color: #1f1f1f; color: #a8a8a8; /* GENERAL */ /* FOOTER BOTTOM */ } .typefooter-2 .module .modtitle { color: #fff; /* [4] */ /* [6] */ /* [6] */ /* [7] */ font-size: 18px; font-size: 1.8rem; /* [8] */ line-height: 20px; margin-bottom: 32px !important; font-weight: 700; text-transform: uppercase; } .typefooter-2 .box-footer .modcontent ul li a { border: 0 none; color: #a8a8a8; /* [4] */ /* [6] */ /* [6] */ /* [7] */ font-size: 12px; font-size: 1.2rem; /* [8] */ padding: 0; font-weight: 400; line-height: 30px; } .typefooter-2 .box-footer.box-information, .typefooter-2 .box-footer.box-service { padding-left: 0; } .typefooter-2 .block-policy { border-bottom: 1px solid #2d2d2d; padding-top: 17px; margin-bottom: 23px; } .typefooter-2 .block-policy .item .item-inner { padding: 30px 15px; } .typefooter-2 .block-policy .item .item-inner .icon { font-size: 26px; color: #a8a8a8; float: left; margin-right: 15px; margin-top: 8px; } .typefooter-2 .block-policy .item .item-inner .content a { font-size: 14px; color: #fff; text-transform: uppercase; font-weight: 700; } .typefooter-2 .block-policy .item .item-inner .content p { color: #b3b3b3; } .typefooter-2 .box-contact ul li { line-height: 30px; } .typefooter-2 .newsletter-footer2 { margin-top: 0px; } .typefooter-2 .newsletter-footer2 .newsletter .title-block .page-heading { color: #fff; /* [4] */ /* [6] */ /* [6] */ /* [7] */ font-size: 18px; font-size: 1.8rem; /* [8] */ line-height: 20px; margin-bottom: 34px !important; font-weight: 700; text-transform: uppercase; } .typefooter-2 .newsletter-footer2 .newsletter .title-block .promotext { font-size: 12px; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup { display: block; margin-top: 11px; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group .input-box { background-color: #fff; vertical-align: top; padding-right: 120px; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group .subcribe { position: absolute; top: 0; right: 0; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group #txtemail { height: 42px; line-height: 42px; width: 100%; box-shadow: none; padding: 0 0 0 15px; border: none; background-color: #fff; font-weight: 300; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group #txtemail::-moz-placeholder { color: #b3b3b3; opacity: 1; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group #txtemail:-ms-input-placeholder { color: #b3b3b3; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group #txtemail::-webkit-input-placeholder { color: #b3b3b3; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group #txtemail:focus { z-index: 0; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .subcribe button { border: 0 none; color: #222; font-weight: 700; font-size: 12px; letter-spacing: 2px; height: 42px; line-height: 42px; padding: 0 17px; text-transform: uppercase; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .subcribe button:hover { color: #fff; } .typefooter-2 .apps { margin-top: 30px; } .typefooter-2 .apps li { float: left; margin-right: 10px; } .typefooter-2 .apps li a:hover img { opacity: 0.8; } .typefooter-2 .modcontent .socials-wrap { display: inline-block; margin-top: 50px; } .typefooter-2 .modcontent .socials-wrap ul li { float: left; margin-right: 10px; } .typefooter-2 .modcontent .socials-wrap ul li a { background-color: #fff; color: #a8a8a8; display: inline-block; font-size: 18px !important; height: 35px; line-height: 35px; text-align: center; width: 35px; transition: all 0.2s ease-in-out 0s; -moz-transition: all 0.2s ease-in-out 0s; -webkit-transition: all 0.2s ease-in-out 0s; } .typefooter-2 .modcontent .socials-wrap ul li a:hover { color: #fff; } .typefooter-2 .app-block .title-footer { display: table-cell; vertical-align: middle; font-size: 18px; text-transform: uppercase; font-weight: 600; color: #fff; } .typefooter-2 .app-block ul { list-style: none; display: table-cell; vertical-align: middle; padding-left: 30px; } .typefooter-2 .app-block ul li { float: left; margin-right: 10px; margin-bottom: 0; } .typefooter-2 .app-block ul li:last-child { margin-right: 0; } .typefooter-2 .footer-top { padding-bottom: 44px; } .typefooter-2 .footer-bottom { color: #fff; text-align: center; } .typefooter-2 .footer-bottom > .container { border-top: 1px solid #2d2d2d; padding: 23px 0 30px 0; } .typefooter-2 .footer-bottom a { color: #fff; } .typefooter-2 .footer-bottom .copyright { margin-top: 12px; font-size: 12px; }
public/assets/frontend/theme/meyer-calcados/css/footer/footer2.css
@charset "UTF-8"; /* [2] */ /* [8] */ /*=============================================== [SASS DIRECTORY ] [1] Minxin Link [2] Minxin Button [3] Minxin Triangle [4] Minxin LABEL PRODUCT [5] Minxin Scrollbars [6] Minxin Dev Custom ==============================================*/ .no-margin { margin: 0 !important; } /*Dev Custom */ /*====================================================*/ .lib-list-item-product2 { border: none; } .lib-list-item-product2 .image-dev .list-button-dev { position: absolute; top: 50%; left: 50%; z-index: 10; transform: translate3d(-50%, -50%, 0); -moz-transform: translate3d(-50%, -50%, 0); -webkit-transform: translate3d(-50%, -50%, 0); -ms-transform: translate3d(-50%, -50%, 0); } .lib-list-item-product2 .image-dev .list-button-dev li { display: inline-block; float: left; height: 40px; width: 40px; background: #fff; position: relative; border-width: 0 1px 0 0; border-style: solid; border-color: #ddd; opacity: 0; transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out; } .lib-list-item-product2 .image-dev .list-button-dev li:nth-child(1) { transform: translateX(40px); -moz-transform: translateX(40px); -webkit-transform: translateX(40px); -ms-transform: translateX(40px); z-index: 1; transition-delay: 0s; } .lib-list-item-product2 .image-dev .list-button-dev li:nth-child(2) { transition-delay: 0.2s; z-index: 2; } .lib-list-item-product2 .image-dev .list-button-dev li:nth-child(3) { transition-delay: 0.2s; z-index: 2; } .lib-list-item-product2 .image-dev .list-button-dev li:nth-child(4) { transform: translateX(-40px); -moz-transform: translateX(-40px); -webkit-transform: translateX(-40px); -ms-transform: translateX(-40px); z-index: 1; transition-delay: 0s; } .lib-list-item-product2 .image-dev .list-button-dev li:first-child { border-left: 1px solid #ddd; } .lib-list-item-product2 .image-dev .list-button-dev li a, .lib-list-item-product2 .image-dev .list-button-dev li button { background: none; position: absolute; width: 100%; height: 100%; top: 0; left: 0; line-height: 40px; text-align: center; box-shadow: none; border: none; color: #555; width: 40px; padding: 0; } .lib-list-item-product2 .image-dev .list-button-dev li:hover { background: #14c953; } .lib-list-item-product2 .image-dev .list-button-dev li:hover a, .lib-list-item-product2 .image-dev .list-button-dev li:hover button { color: #fff; } .lib-list-item-product2 .caption-dev { text-align: center; padding: 0 15px; } .lib-list-item-product2 .caption-dev .rating-dev { margin: 5px 0; } .lib-list-item-product2 .caption-dev .rating-dev .fa-stack-2x { font-size: 11px; } .lib-list-item-product2 .caption-dev .title-dev { color: #444; font-size: 13px; } .lib-list-item-product2 .caption-dev .price-dev .price.product-price { font-size: 16px; } .lib-list-item-product2 .caption-dev .price-dev .price-new { font-size: 16px; } .lib-list-item-product2 .caption-dev .price-dev .price-old { font-size: 12px; } .lib-list-item-product2 .caption-dev .add-cart-dev { background: #fff; border: 1px solid #ddd; font-size: 12px; text-transform: uppercase; color: #999; font-weight: bold; box-shadow: none; border-radius: 0; padding: 6px 20px; margin: 0 0 30px; transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; } .lib-list-item-product-over2 .image-dev .list-button-dev li { opacity: 1; transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out; } .lib-list-item-product-over2 .image-dev .list-button-dev li:nth-child(1) { transform: translateX(0); -moz-transform: translateX(0); -webkit-transform: translateX(0); -ms-transform: translateX(0); transition-delay: 0.2s; } .lib-list-item-product-over2 .image-dev .list-button-dev li:nth-child(2) { transition-delay: 0s; } .lib-list-item-product-over2 .image-dev .list-button-dev li:nth-child(3) { transition-delay: 0s; } .lib-list-item-product-over2 .image-dev .list-button-dev li:nth-child(4) { transform: translateX(0); -moz-transform: translateX(0); -webkit-transform: translateX(0); -ms-transform: translateX(0); transition-delay: 0.2s; } /*EFECT PRODUCT NUMBER*/ .lib-two-img { position: relative; display: block; } .lib-two-img .img-1 { opacity: 1; position: relative; transition: all 0.5s ease-in-out; } .lib-two-img .img-2 { position: absolute; z-index: 0; top: 0; opacity: 0; display: block; transition: all 0.5s ease-in-out; left: 50%; transform: translateX(-50%); } .lib-two-img-over .img-1 { opacity: 0; transform-style: inherit; transition: all 0.5s ease-in-out; } .lib-two-img-over .img-2 { opacity: 1; transform-style: inherit; transition: all 0.5s ease-in-out; } /*EFFECT SLIDERHOME*/ @keyframes myeffect-slideshow { 0% { opacity: 0; transform: translateY(-300px); -webkit-transform: translateY(-300px); -moz-transform: translateY(-300px); -ms-transform: translateY(-300px); -o-transform: translateY(-300px); } 100% { opacity: 1; transform: translateY(0); -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); } } @-webkit-keyframes myeffect-slideshow { 0% { opacity: 0; transform: translateY(-300px); -webkit-transform: translateY(-300px); -moz-transform: translateY(-300px); -ms-transform: translateY(-300px); -o-transform: translateY(-300px); } 100% { opacity: 1; transform: translateY(0); -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); } } @-moz-keyframes myeffect-slideshow { 0% { opacity: 0; transform: translateY(-300px); -webkit-transform: translateY(-300px); -moz-transform: translateY(-300px); -ms-transform: translateY(-300px); -o-transform: translateY(-300px); } 100% { opacity: 1; transform: translateY(0); -moz-transform: translateY(0); -webkit-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); } } /* ================================================================================ */ .footer-container { margin-top: 20px; } .common-home .typefooter-2 { margin-top: 0px; } .typefooter-2 { margin-top: 30px; background-color: #1f1f1f; color: #a8a8a8; /* GENERAL */ /* FOOTER BOTTOM */ } .typefooter-2 .module .modtitle { color: #fff; /* [4] */ /* [6] */ /* [6] */ /* [7] */ font-size: 18px; font-size: 1.8rem; /* [8] */ line-height: 20px; margin-bottom: 32px !important; font-weight: 700; text-transform: uppercase; } .typefooter-2 .box-footer .modcontent ul li a { border: 0 none; color: #a8a8a8; /* [4] */ /* [6] */ /* [6] */ /* [7] */ font-size: 12px; font-size: 1.2rem; /* [8] */ padding: 0; font-weight: 400; line-height: 30px; } .typefooter-2 .box-footer.box-information, .typefooter-2 .box-footer.box-service { padding-left: 0; } .typefooter-2 .block-policy { border-bottom: 1px solid #2d2d2d; padding-top: 17px; margin-bottom: 23px; } .typefooter-2 .block-policy .item .item-inner { padding: 30px 15px; } .typefooter-2 .block-policy .item .item-inner .icon { font-size: 26px; color: #a8a8a8; float: left; margin-right: 15px; margin-top: 8px; } .typefooter-2 .block-policy .item .item-inner .content a { font-size: 14px; color: #fff; text-transform: uppercase; font-weight: 700; } .typefooter-2 .block-policy .item .item-inner .content p { color: #b3b3b3; } .typefooter-2 .box-contact ul li { line-height: 30px; } .typefooter-2 .newsletter-footer2 { margin-top: 0px; } .typefooter-2 .newsletter-footer2 .newsletter .title-block .page-heading { color: #fff; /* [4] */ /* [6] */ /* [6] */ /* [7] */ font-size: 18px; font-size: 1.8rem; /* [8] */ line-height: 20px; margin-bottom: 34px !important; font-weight: 700; text-transform: uppercase; } .typefooter-2 .newsletter-footer2 .newsletter .title-block .promotext { font-size: 12px; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup { display: block; margin-top: 11px; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group .input-box { background-color: #fff; vertical-align: top; padding-right: 120px; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group .subcribe { position: absolute; top: 0; right: 0; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group #txtemail { height: 42px; line-height: 42px; width: 100%; box-shadow: none; padding: 0 0 0 15px; border: none; background-color: #fff; font-weight: 300; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group #txtemail::-moz-placeholder { color: #b3b3b3; opacity: 1; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group #txtemail:-ms-input-placeholder { color: #b3b3b3; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group #txtemail::-webkit-input-placeholder { color: #b3b3b3; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .form-group #txtemail:focus { z-index: 0; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .subcribe button { border: 0 none; color: #222; font-weight: 700; font-size: 12px; letter-spacing: 2px; height: 42px; line-height: 42px; padding: 0 17px; text-transform: uppercase; } .typefooter-2 .newsletter-footer2 .newsletter .block_content form.signup .subcribe button:hover { color: #fff; } .typefooter-2 .apps { margin-top: 30px; } .typefooter-2 .apps li { float: left; margin-right: 10px; } .typefooter-2 .apps li a:hover img { opacity: 0.8; } .typefooter-2 .modcontent .socials-wrap { display: inline-block; margin-top: 50px; } .typefooter-2 .modcontent .socials-wrap ul li { float: left; margin-right: 10px; } .typefooter-2 .modcontent .socials-wrap ul li a { background-color: #fff; color: #a8a8a8; display: inline-block; font-size: 18px !important; height: 35px; line-height: 35px; text-align: center; width: 35px; transition: all 0.2s ease-in-out 0s; -moz-transition: all 0.2s ease-in-out 0s; -webkit-transition: all 0.2s ease-in-out 0s; } .typefooter-2 .modcontent .socials-wrap ul li a:hover { color: #fff; } .typefooter-2 .app-block .title-footer { display: table-cell; vertical-align: middle; font-size: 18px; text-transform: uppercase; font-weight: 600; color: #fff; } .typefooter-2 .app-block ul { list-style: none; display: table-cell; vertical-align: middle; padding-left: 30px; } .typefooter-2 .app-block ul li { float: left; margin-right: 10px; margin-bottom: 0; } .typefooter-2 .app-block ul li:last-child { margin-right: 0; } .typefooter-2 .footer-top { padding-bottom: 44px; } .typefooter-2 .footer-bottom { color: #fff; text-align: center; } .typefooter-2 .footer-bottom > .container { border-top: 1px solid #2d2d2d; padding: 23px 0 30px 0; } .typefooter-2 .footer-bottom a { color: #fff; } .typefooter-2 .footer-bottom .copyright { margin-top: 12px; font-size: 12px; }
0.3295
0.067608
.dpNone, .hidden { display: none !important; } .dpInline, .inline { display: inline !important; } .dpBlock, .block { display: block !important; } .dpInlineBlock, .inlineBlock { display: inline-block !important; } .dpTable { display: table !important; } .dpInlineTable, .inlineTable { display: inline-table !important; } .dpTableBody, .tableBody { display: table-row-group !important; } .dpTableHeader, .tableHeader { display: table-header-group !important; } .dpTableFooter, .tableFooter { display: table-footer-group !important; } .dpTableCaption, .tableCaption { display: table-caption !important; } .dpTableRow, .tableRow { display: table-row !important; } .dpTableCell, .tableCell { display: table-cell !important; } .dpTableColumn, .tableColumn { display: table-column !important; } .dpTableColumnGroup, .tableColumnGroup { display: table-column-group !important; } .dpFlex, .flex { display: flex !important; } .dpInlineFlex, .inlineFlex { display: inline-flex !important; } .dpGrid, .grid { display: grid !important; } .dpInlineGrid, .inlineGrid { display: inline-grid !important; } .dpListItem { display: list-item !important; } @media (min-width: 640px) { .xs\.dpNone .xs\.hidden { display: none !important; } .xs\.dpInline, .xs\.inline { display: inline !important; } .xs\.dpBlock, .xs\.block { display: block !important; } .xs\.dpInlineBlock, .xs\.inlineBlock { display: inline-block !important; } .xs\.dpTable { display: table !important; } .xs\.dpInlineTable, .xs\.inlineTable { display: inline-table !important; } .xs\.dpTableBody, .xs\.tableBody { display: table-row-group !important; } .xs\.dpTableHeader, .xs\.tableHeader { display: table-header-group !important; } .xs\.dpTableFooter, .xs\.tableFooter { display: table-footer-group !important; } .xs\.dpTableCaption, .xs\.tableCaption { display: table-caption !important; } .xs\.dpTableRow, .xs\.tableRow { display: table-row !important; } .xs\.dpTableCell, .xs\.tableCell { display: table-cell !important; } .xs\.dpTableColumn, .xs\.tableColumn { display: table-column !important; } .xs\.dpTableColumnGroup, .xs\.tableColumnGroup { display: table-column-group !important; } .xs\.dpFlex, .xs\.flex { display: flex !important; } .xs\.dpInlineFlex, .xs\.inlineFlex { display: inline-flex !important; } .xs\.dpGrid, .xs\.grid { display: grid !important; } .xs\.dpInlineGrid, .xs\.inlineGrid { display: inline-grid !important; } .xs\.dpListItem { display: list-item !important; } } @media (min-width: 768px) { .sm\.dpNone .sm\.hidden { display: none !important; } .sm\.dpInline, .sm\.inline { display: inline !important; } .sm\.dpBlock, .sm\.block { display: block !important; } .sm\.dpInlineBlock, .sm\.inlineBlock { display: inline-block !important; } .small\\.dpTable { display: table !important; } .sm\.dpInlineTable, .sm\.inlineTable { display: inline-table !important; } .sm\.dpTableBody, .sm\.tableBody { display: table-row-group !important; } .sm\.dpTableHeader, .sm\.tableHeader { display: table-header-group !important; } .sm\.dpTableFooter, .sm\.tableFooter { display: table-footer-group !important; } .sm\.dpTableCaption, .sm\.tableCaption { display: table-caption !important; } .sm\.dpTableRow, .sm\.tableRow { display: table-row !important; } .sm\.dpTableCell, .sm\.tableCell { display: table-cell !important; } .sm\.dpTableColumn, .sm\.tableColumn { display: table-column !important; } .sm\.dpTableColumnGroup, .sm\.tableColumnGroup { display: table-column-group !important; } .sm\.dpFlex, .sm\.flex { display: flex !important; } .sm\.dpInlineFlex, .sm\.inlineFlex { display: inline-flex !important; } .sm\.dpGrid, .sm\.grid { display: grid !important; } .sm\.dpInlineGrid, .sm\.inlineGrid { display: inline-grid !important; } .sm\.dpListItem { display: list-item !important; } } @media (min-width: 1024px) { .md\.dpNone .md\.hidden { display: none !important; } .md\.dpInline, .md\.inline { display: inline !important; } .md\.dpBlock, .md\.block { display: block !important; } .md\.dpInlineBlock, .md\.inlineBlock { display: inline-block !important; } .medium\\.dpTable { display: table !important; } .md\.dpInlineTable, .md\.inlineTable { display: inline-table !important; } .md\.dpTableBody, .md\.tableBody { display: table-row-group !important; } .md\.dpTableHeader, .md\.tableHeader { display: table-header-group !important; } .md\.dpTableFooter, .md\.tableFooter { display: table-footer-group !important; } .md\.dpTableCaption, .md\.tableCaption { display: table-caption !important; } .md\.dpTableRow, .md\.tableRow { display: table-row !important; } .md\.dpTableCell, .md\.tableCell { display: table-cell !important; } .md\.dpTableColumn, .md\.tableColumn { display: table-column !important; } .md\.dpTableColumnGroup, .md\.tableColumnGroup { display: table-column-group !important; } .md\.dpFlex, .md\.flex { display: flex !important; } .md\.dpInlineFlex, .md\.inlineFlex { display: inline-flex !important; } .md\.dpGrid, .md\.grid { display: grid !important; } .md\.dpInlineGrid, .md\.inlineGrid { display: inline-grid !important; } .md\.dpListItem { display: list-item !important; } } @media (min-width: 1280px) { .lg\.dpNone .lg\.hidden { display: none !important; } .lg\.dpInline, .lg\.inline { display: inline !important; } .lg\.dpBlock, .lg\.block { display: block !important; } .lg\.dpInlineBlock, .lg\.inlineBlock { display: inline-block !important; } .large\\.dpTable { display: table !important; } .lg\.dpInlineTable, .lg\.inlineTable { display: inline-table !important; } .lg\.dpTableBody, .lg\.tableBody { display: table-row-group !important; } .lg\.dpTableHeader, .lg\.tableHeader { display: table-header-group !important; } .lg\.dpTableFooter, .lg\.tableFooter { display: table-footer-group !important; } .lg\.dpTableCaption, .lg\.tableCaption { display: table-caption !important; } .lg\.dpTableRow, .lg\.tableRow { display: table-row !important; } .lg\.dpTableCell, .lg\.tableCell { display: table-cell !important; } .lg\.dpTableColumn, .lg\.tableColumn { display: table-column !important; } .lg\.dpTableColumnGroup, .lg\.tableColumnGroup { display: table-column-group !important; } .lg\.dpFlex, .lg\.flex { display: flex !important; } .lg\.dpInlineFlex, .lg\.inlineFlex { display: inline-flex !important; } .lg\.dpGrid, .lg\.grid { display: grid !important; } .lg\.dpInlineGrid, .lg\.inlineGrid { display: inline-grid !important; } .lg\.dpListItem { display: list-item !important; } } @media (min-width: 1536px) { .xl\.dpNone .xl\.hidden { display: none !important; } .xl\.dpInline, .xl\.inline { display: inline !important; } .xl\.dpBlock, .xl\.block { display: block !important; } .xl\.dpInlineBlock, .xl\.inlineBlock { display: inline-block !important; } .larger\\.dpTable { display: table !important; } .xl\.dpInlineTable, .xl\.inlineTable { display: inline-table !important; } .xl\.dpTableBody, .xl\.tableBody { display: table-row-group !important; } .xl\.dpTableHeader, .xl\.tableHeader { display: table-header-group !important; } .xl\.dpTableFooter, .xl\.tableFooter { display: table-footer-group !important; } .xl\.dpTableCaption, .xl\.tableCaption { display: table-caption !important; } .xl\.dpTableRow, .xl\.tableRow { display: table-row !important; } .xl\.dpTableCell, .xl\.tableCell { display: table-cell !important; } .xl\.dpTableColumn, .xl\.tableColumn { display: table-column !important; } .xl\.dpTableColumnGroup, .xl\.tableColumnGroup { display: table-column-group !important; } .xl\.dpFlex, .xl\.flex { display: flex !important; } .xl\.dpInlineFlex, .xl\.inlineFlex { display: inline-flex !important; } .xl\.dpGrid, .xl\.grid { display: grid !important; } .xl\.dpInlineGrid, .xl\.inlineGrid { display: inline-grid !important; } .xl\.dpListItem { display: list-item !important; } } @media (min-width: 1920px) { .\2xl\.dpNone .\2xl\.hidden { display: none !important; } .\2xl\.dpInline, .\2xl\.inline { display: inline !important; } .\2xl\.dpBlock, .\2xl\.block { display: block !important; } .\2xl\.dpInlineBlock, .\2xl\.inlineBlock { display: inline-block !important; } .largest\\.dpTable { display: table !important; } .\2xl\.dpInlineTable, .\2xl\.inlineTable { display: inline-table !important; } .\2xl\.dpTableBody, .\2xl\.tableBody { display: table-row-group !important; } .\2xl\.dpTableHeader, .\2xl\.tableHeader { display: table-header-group !important; } .\2xl\.dpTableFooter, .\2xl\.tableFooter { display: table-footer-group !important; } .\2xl\.dpTableCaption, .\2xl\.tableCaption { display: table-caption !important; } .\2xl\.dpTableRow, .\2xl\.tableRow { display: table-row !important; } .\2xl\.dpTableCell, .\2xl\.tableCell { display: table-cell !important; } .\2xl\.dpTableColumn, .\2xl\.tableColumn { display: table-column !important; } .\2xl\.dpTableColumnGroup, .\2xl\.tableColumnGroup { display: table-column-group !important; } .\2xl\.dpFlex, .\2xl\.flex { display: flex !important; } .\2xl\.dpInlineFlex, .\2xl\.inlineFlex { display: inline-flex !important; } .\2xl\.dpGrid, .\2xl\.grid { display: grid !important; } .\2xl\.dpInlineGrid, .\2xl\.inlineGrid { display: inline-grid !important; } .\2xl\.dpListItem { display: list-item !important; } } @media print { .print\.dpNone, .print\.hidden { display: none !important; } .print\.dpInline, .print\.inline { display: inline !important; } .print\.dpBlock, .print\.block { display: block !important; } .print\.dpInlineBlock, .print\.inlineBlock { display: inline-block !important; } .print\\.dpTable { display: table !important; } .print\.dpInlineTable, .print\.inlineTable { display: inline-table !important; } .print\.dpTableBody, .print\.tableBody { display: table-row-group !important; } .print\.dpTableHeader, .print\.tableHeader { display: table-header-group !important; } .print\.dpTableFooter, .print\.tableFooter { display: table-footer-group !important; } .print\.dpTableCaption, .print\.tableCaption { display: table-caption !important; } .print\.dpTableRow, .print\.tableRow { display: table-row !important; } .print\.dpTableCell, .print\.tableCell { display: table-cell !important; } .print\.dpTableColumn, .print\.tableColumn { display: table-column !important; } .print\.dpTableColumnGroup, .print\.tableColumnGroup { display: table-column-group !important; } .print\.dpFlex, .print\.flex { display: flex !important; } .print\.dpInlineFlex, .print\.inlineFlex { display: inline-flex !important; } .print\.dpGrid, .print\.grid { display: grid !important; } .print\.dpInlineGrid, .print\.inlineGrid { display: inline-grid !important; } .print\.dpListItem { display: list-item !important; } }
node_modules/alga-css/css/utilities/display.css
.dpNone, .hidden { display: none !important; } .dpInline, .inline { display: inline !important; } .dpBlock, .block { display: block !important; } .dpInlineBlock, .inlineBlock { display: inline-block !important; } .dpTable { display: table !important; } .dpInlineTable, .inlineTable { display: inline-table !important; } .dpTableBody, .tableBody { display: table-row-group !important; } .dpTableHeader, .tableHeader { display: table-header-group !important; } .dpTableFooter, .tableFooter { display: table-footer-group !important; } .dpTableCaption, .tableCaption { display: table-caption !important; } .dpTableRow, .tableRow { display: table-row !important; } .dpTableCell, .tableCell { display: table-cell !important; } .dpTableColumn, .tableColumn { display: table-column !important; } .dpTableColumnGroup, .tableColumnGroup { display: table-column-group !important; } .dpFlex, .flex { display: flex !important; } .dpInlineFlex, .inlineFlex { display: inline-flex !important; } .dpGrid, .grid { display: grid !important; } .dpInlineGrid, .inlineGrid { display: inline-grid !important; } .dpListItem { display: list-item !important; } @media (min-width: 640px) { .xs\.dpNone .xs\.hidden { display: none !important; } .xs\.dpInline, .xs\.inline { display: inline !important; } .xs\.dpBlock, .xs\.block { display: block !important; } .xs\.dpInlineBlock, .xs\.inlineBlock { display: inline-block !important; } .xs\.dpTable { display: table !important; } .xs\.dpInlineTable, .xs\.inlineTable { display: inline-table !important; } .xs\.dpTableBody, .xs\.tableBody { display: table-row-group !important; } .xs\.dpTableHeader, .xs\.tableHeader { display: table-header-group !important; } .xs\.dpTableFooter, .xs\.tableFooter { display: table-footer-group !important; } .xs\.dpTableCaption, .xs\.tableCaption { display: table-caption !important; } .xs\.dpTableRow, .xs\.tableRow { display: table-row !important; } .xs\.dpTableCell, .xs\.tableCell { display: table-cell !important; } .xs\.dpTableColumn, .xs\.tableColumn { display: table-column !important; } .xs\.dpTableColumnGroup, .xs\.tableColumnGroup { display: table-column-group !important; } .xs\.dpFlex, .xs\.flex { display: flex !important; } .xs\.dpInlineFlex, .xs\.inlineFlex { display: inline-flex !important; } .xs\.dpGrid, .xs\.grid { display: grid !important; } .xs\.dpInlineGrid, .xs\.inlineGrid { display: inline-grid !important; } .xs\.dpListItem { display: list-item !important; } } @media (min-width: 768px) { .sm\.dpNone .sm\.hidden { display: none !important; } .sm\.dpInline, .sm\.inline { display: inline !important; } .sm\.dpBlock, .sm\.block { display: block !important; } .sm\.dpInlineBlock, .sm\.inlineBlock { display: inline-block !important; } .small\\.dpTable { display: table !important; } .sm\.dpInlineTable, .sm\.inlineTable { display: inline-table !important; } .sm\.dpTableBody, .sm\.tableBody { display: table-row-group !important; } .sm\.dpTableHeader, .sm\.tableHeader { display: table-header-group !important; } .sm\.dpTableFooter, .sm\.tableFooter { display: table-footer-group !important; } .sm\.dpTableCaption, .sm\.tableCaption { display: table-caption !important; } .sm\.dpTableRow, .sm\.tableRow { display: table-row !important; } .sm\.dpTableCell, .sm\.tableCell { display: table-cell !important; } .sm\.dpTableColumn, .sm\.tableColumn { display: table-column !important; } .sm\.dpTableColumnGroup, .sm\.tableColumnGroup { display: table-column-group !important; } .sm\.dpFlex, .sm\.flex { display: flex !important; } .sm\.dpInlineFlex, .sm\.inlineFlex { display: inline-flex !important; } .sm\.dpGrid, .sm\.grid { display: grid !important; } .sm\.dpInlineGrid, .sm\.inlineGrid { display: inline-grid !important; } .sm\.dpListItem { display: list-item !important; } } @media (min-width: 1024px) { .md\.dpNone .md\.hidden { display: none !important; } .md\.dpInline, .md\.inline { display: inline !important; } .md\.dpBlock, .md\.block { display: block !important; } .md\.dpInlineBlock, .md\.inlineBlock { display: inline-block !important; } .medium\\.dpTable { display: table !important; } .md\.dpInlineTable, .md\.inlineTable { display: inline-table !important; } .md\.dpTableBody, .md\.tableBody { display: table-row-group !important; } .md\.dpTableHeader, .md\.tableHeader { display: table-header-group !important; } .md\.dpTableFooter, .md\.tableFooter { display: table-footer-group !important; } .md\.dpTableCaption, .md\.tableCaption { display: table-caption !important; } .md\.dpTableRow, .md\.tableRow { display: table-row !important; } .md\.dpTableCell, .md\.tableCell { display: table-cell !important; } .md\.dpTableColumn, .md\.tableColumn { display: table-column !important; } .md\.dpTableColumnGroup, .md\.tableColumnGroup { display: table-column-group !important; } .md\.dpFlex, .md\.flex { display: flex !important; } .md\.dpInlineFlex, .md\.inlineFlex { display: inline-flex !important; } .md\.dpGrid, .md\.grid { display: grid !important; } .md\.dpInlineGrid, .md\.inlineGrid { display: inline-grid !important; } .md\.dpListItem { display: list-item !important; } } @media (min-width: 1280px) { .lg\.dpNone .lg\.hidden { display: none !important; } .lg\.dpInline, .lg\.inline { display: inline !important; } .lg\.dpBlock, .lg\.block { display: block !important; } .lg\.dpInlineBlock, .lg\.inlineBlock { display: inline-block !important; } .large\\.dpTable { display: table !important; } .lg\.dpInlineTable, .lg\.inlineTable { display: inline-table !important; } .lg\.dpTableBody, .lg\.tableBody { display: table-row-group !important; } .lg\.dpTableHeader, .lg\.tableHeader { display: table-header-group !important; } .lg\.dpTableFooter, .lg\.tableFooter { display: table-footer-group !important; } .lg\.dpTableCaption, .lg\.tableCaption { display: table-caption !important; } .lg\.dpTableRow, .lg\.tableRow { display: table-row !important; } .lg\.dpTableCell, .lg\.tableCell { display: table-cell !important; } .lg\.dpTableColumn, .lg\.tableColumn { display: table-column !important; } .lg\.dpTableColumnGroup, .lg\.tableColumnGroup { display: table-column-group !important; } .lg\.dpFlex, .lg\.flex { display: flex !important; } .lg\.dpInlineFlex, .lg\.inlineFlex { display: inline-flex !important; } .lg\.dpGrid, .lg\.grid { display: grid !important; } .lg\.dpInlineGrid, .lg\.inlineGrid { display: inline-grid !important; } .lg\.dpListItem { display: list-item !important; } } @media (min-width: 1536px) { .xl\.dpNone .xl\.hidden { display: none !important; } .xl\.dpInline, .xl\.inline { display: inline !important; } .xl\.dpBlock, .xl\.block { display: block !important; } .xl\.dpInlineBlock, .xl\.inlineBlock { display: inline-block !important; } .larger\\.dpTable { display: table !important; } .xl\.dpInlineTable, .xl\.inlineTable { display: inline-table !important; } .xl\.dpTableBody, .xl\.tableBody { display: table-row-group !important; } .xl\.dpTableHeader, .xl\.tableHeader { display: table-header-group !important; } .xl\.dpTableFooter, .xl\.tableFooter { display: table-footer-group !important; } .xl\.dpTableCaption, .xl\.tableCaption { display: table-caption !important; } .xl\.dpTableRow, .xl\.tableRow { display: table-row !important; } .xl\.dpTableCell, .xl\.tableCell { display: table-cell !important; } .xl\.dpTableColumn, .xl\.tableColumn { display: table-column !important; } .xl\.dpTableColumnGroup, .xl\.tableColumnGroup { display: table-column-group !important; } .xl\.dpFlex, .xl\.flex { display: flex !important; } .xl\.dpInlineFlex, .xl\.inlineFlex { display: inline-flex !important; } .xl\.dpGrid, .xl\.grid { display: grid !important; } .xl\.dpInlineGrid, .xl\.inlineGrid { display: inline-grid !important; } .xl\.dpListItem { display: list-item !important; } } @media (min-width: 1920px) { .\2xl\.dpNone .\2xl\.hidden { display: none !important; } .\2xl\.dpInline, .\2xl\.inline { display: inline !important; } .\2xl\.dpBlock, .\2xl\.block { display: block !important; } .\2xl\.dpInlineBlock, .\2xl\.inlineBlock { display: inline-block !important; } .largest\\.dpTable { display: table !important; } .\2xl\.dpInlineTable, .\2xl\.inlineTable { display: inline-table !important; } .\2xl\.dpTableBody, .\2xl\.tableBody { display: table-row-group !important; } .\2xl\.dpTableHeader, .\2xl\.tableHeader { display: table-header-group !important; } .\2xl\.dpTableFooter, .\2xl\.tableFooter { display: table-footer-group !important; } .\2xl\.dpTableCaption, .\2xl\.tableCaption { display: table-caption !important; } .\2xl\.dpTableRow, .\2xl\.tableRow { display: table-row !important; } .\2xl\.dpTableCell, .\2xl\.tableCell { display: table-cell !important; } .\2xl\.dpTableColumn, .\2xl\.tableColumn { display: table-column !important; } .\2xl\.dpTableColumnGroup, .\2xl\.tableColumnGroup { display: table-column-group !important; } .\2xl\.dpFlex, .\2xl\.flex { display: flex !important; } .\2xl\.dpInlineFlex, .\2xl\.inlineFlex { display: inline-flex !important; } .\2xl\.dpGrid, .\2xl\.grid { display: grid !important; } .\2xl\.dpInlineGrid, .\2xl\.inlineGrid { display: inline-grid !important; } .\2xl\.dpListItem { display: list-item !important; } } @media print { .print\.dpNone, .print\.hidden { display: none !important; } .print\.dpInline, .print\.inline { display: inline !important; } .print\.dpBlock, .print\.block { display: block !important; } .print\.dpInlineBlock, .print\.inlineBlock { display: inline-block !important; } .print\\.dpTable { display: table !important; } .print\.dpInlineTable, .print\.inlineTable { display: inline-table !important; } .print\.dpTableBody, .print\.tableBody { display: table-row-group !important; } .print\.dpTableHeader, .print\.tableHeader { display: table-header-group !important; } .print\.dpTableFooter, .print\.tableFooter { display: table-footer-group !important; } .print\.dpTableCaption, .print\.tableCaption { display: table-caption !important; } .print\.dpTableRow, .print\.tableRow { display: table-row !important; } .print\.dpTableCell, .print\.tableCell { display: table-cell !important; } .print\.dpTableColumn, .print\.tableColumn { display: table-column !important; } .print\.dpTableColumnGroup, .print\.tableColumnGroup { display: table-column-group !important; } .print\.dpFlex, .print\.flex { display: flex !important; } .print\.dpInlineFlex, .print\.inlineFlex { display: inline-flex !important; } .print\.dpGrid, .print\.grid { display: grid !important; } .print\.dpInlineGrid, .print\.inlineGrid { display: inline-grid !important; } .print\.dpListItem { display: list-item !important; } }
0.438304
0.141104
html, button, input, select, textarea { color: #555; } html { font-size: 62.5%; } body { line-height: 1.6em; font-size: 2.1em; font-family: Georgia, Times, "Times New Roman", serif; } h1, h2 { font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; } h1 { font-size: 3.5em; color: #111111; } h2 { font-size: 1.50em; color: #ccc; text-transform: uppercase; } h3 { font-size: 2em; color: #111111; } pre { line-height: 1.2em; font-size: 0.74em; } hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } audio, canvas, img, video { vertical-align: middle; } fieldset { border: 0; margin: 0; padding: 0; } textarea { resize: vertical; } a, a:hover, a:visited { color: #369; text-decoration: none; border-bottom: 2px solid #ccc; } a:hover { border-bottom: 2px solid #369; } a.api { font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; border-bottom: none; font-weight: bold; } a.api:hover { border-bottom: 2px solid #369; } p { margin-top: 0; margin-bottom: 1em; } /* responsive layout */ nav { position: absolute; margin-left: 800px; margin-top: 3em; width: 250px; padding: 0; margin-right: 1em; } nav.sticky { position: fixed; top: 0; } main, header { max-width: 800px; margin: 0 auto; padding: 2em; } nav { display: none; } @media only screen and (min-width: 1135px) { header, main { margin-right: 250px; } nav { display: block; } } @media only screen and (min-width: 1400px) { header, main { margin-right: auto; } nav { display: block; } } .cfname { font-size: 1.3em; font-weight: bold; } [id^=a\:] a { line-height: 0; font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; color: #ccc; border-bottom: none; visibility: hidden; } [id^=a\:] a:hover { color: #c60f0f; } [id^=a\:]:hover a { visibility: visible; } /* line numbers */ pre code { counter-reset: linenr; } pre code span.linenr { display: block; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } pre:hover code span.linenr:before { counter-increment: linenr; content: counter(linenr); position: absolute; margin-left: calc(-1em - 10px - 100px); width: 100px; text-align: right; color: #ccc; } .bitcoin { font-size: 0.6em; line-height: 1.4em; word-wrap: break-word; } #github-ribbon { position: absolute; top: 0; right: 0; border: 0; } /* ========================================================================== Media Queries ========================================================================== */ @media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) { } /* ========================================================================== Helper classes ========================================================================== */ .ir { background-color: transparent; border: 0; overflow: hidden; *text-indent: -9999px; } .ir:before { content: ""; display: block; width: 0; height: 150%; } .hidden { display: none !important; visibility: hidden; } .visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } .invisible { visibility: hidden; } .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } .clearfix { *zoom: 1; } /* ========================================================================== Print styles ========================================================================== */ @media print { * { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } @page { margin: 0.5cm; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } }
docs/css/main.css
html, button, input, select, textarea { color: #555; } html { font-size: 62.5%; } body { line-height: 1.6em; font-size: 2.1em; font-family: Georgia, Times, "Times New Roman", serif; } h1, h2 { font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; } h1 { font-size: 3.5em; color: #111111; } h2 { font-size: 1.50em; color: #ccc; text-transform: uppercase; } h3 { font-size: 2em; color: #111111; } pre { line-height: 1.2em; font-size: 0.74em; } hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; } audio, canvas, img, video { vertical-align: middle; } fieldset { border: 0; margin: 0; padding: 0; } textarea { resize: vertical; } a, a:hover, a:visited { color: #369; text-decoration: none; border-bottom: 2px solid #ccc; } a:hover { border-bottom: 2px solid #369; } a.api { font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace; border-bottom: none; font-weight: bold; } a.api:hover { border-bottom: 2px solid #369; } p { margin-top: 0; margin-bottom: 1em; } /* responsive layout */ nav { position: absolute; margin-left: 800px; margin-top: 3em; width: 250px; padding: 0; margin-right: 1em; } nav.sticky { position: fixed; top: 0; } main, header { max-width: 800px; margin: 0 auto; padding: 2em; } nav { display: none; } @media only screen and (min-width: 1135px) { header, main { margin-right: 250px; } nav { display: block; } } @media only screen and (min-width: 1400px) { header, main { margin-right: auto; } nav { display: block; } } .cfname { font-size: 1.3em; font-weight: bold; } [id^=a\:] a { line-height: 0; font-family: "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif; color: #ccc; border-bottom: none; visibility: hidden; } [id^=a\:] a:hover { color: #c60f0f; } [id^=a\:]:hover a { visibility: visible; } /* line numbers */ pre code { counter-reset: linenr; } pre code span.linenr { display: block; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } pre:hover code span.linenr:before { counter-increment: linenr; content: counter(linenr); position: absolute; margin-left: calc(-1em - 10px - 100px); width: 100px; text-align: right; color: #ccc; } .bitcoin { font-size: 0.6em; line-height: 1.4em; word-wrap: break-word; } #github-ribbon { position: absolute; top: 0; right: 0; border: 0; } /* ========================================================================== Media Queries ========================================================================== */ @media print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi) { } /* ========================================================================== Helper classes ========================================================================== */ .ir { background-color: transparent; border: 0; overflow: hidden; *text-indent: -9999px; } .ir:before { content: ""; display: block; width: 0; height: 150%; } .hidden { display: none !important; visibility: hidden; } .visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; } .invisible { visibility: hidden; } .clearfix:before, .clearfix:after { content: " "; display: table; } .clearfix:after { clear: both; } .clearfix { *zoom: 1; } /* ========================================================================== Print styles ========================================================================== */ @media print { * { background: transparent !important; color: #000 !important; box-shadow: none !important; text-shadow: none !important; } a, a:visited { text-decoration: underline; } a[href]:after { content: " (" attr(href) ")"; } abbr[title]:after { content: " (" attr(title) ")"; } .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; } pre, blockquote { border: 1px solid #999; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } img { max-width: 100% !important; } @page { margin: 0.5cm; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } }
0.474631
0.132374
* {margin:0; padding:0;} body {font:76% Verdana,Tahoma,Arial,sans-serif; line-height:1.4em; text-align:center; color:#303030; background:#94938D;} body { overflow: scroll; } a {color:#636a46; font-weight:bold; text-decoration:none; background-color:inherit;} /*a {color:#AFB595; font-weight:bold; text-decoration:none; background-color:inherit;}*/ a:hover {color:#636a46; text-decoration:none; background-color:inherit;} a img {border:none;} p {padding:0 0 1.6em 0;} p form {margin-top:0; margin-bottom:20px;} img.left,img.center,img.right {padding:4px;} img.left {float:left; margin:0 12px 5px 0;} img.center {display:block; margin:0 auto 5px auto;} img.right {float:right; margin:0 0 5px 12px;} /* Mathjax fix */ code.has-jax {font: inherit; font-size: 100%; background: inherit; border: inherit; color:#303030 } /* Header and navigation styles */ #container {width:760px; margin:20px auto; padding:1px 0; text-align:left; background:#ffffff; color:#303030;} #header {height:104px; width:758px; margin:0 1px 1px 1px; background:#AFB595 url(../images/escher_cubic_zoom2b.jpg) top left no-repeat; color:#444;} #header h1 {padding:40px 0 0 420px; font-size:3.4em; color:#552316; letter-spacing:-2px; font-weight:bold;} #header h2 {margin:20px 0 0 430px; font-size:1.4em; color:#444; letter-spacing:-1px; font-weight:normal;} #navigation {height:2.2em; line-height:2.2em; width:758px; margin:0 1px; background:#636a46; color:#ffffff;} #navigation li {float:left; list-style-type:none; border-right:1px solid #ffffff; white-space:nowrap;} #navigation li a {display:block; padding:0 10px; font-size:0.8em; font-weight:normal; text-transform:uppercase; text-decoration:none; background-color:inherit; color: #ffffff;} * html #navigation a {width:1%;} #navigation .selected,#navigation a:hover {background:#AFB595; color:#ffffff; text-decoration:none;} /* Content styles */ /* Applies to EVERYTHING! (must be overriden with !important */ /*#header {height:104px; width:758px; margin:0 1px 1px 1px; background:#AFB595 url(../images/escher_cubic_zoom2b.jpg) top left no-repeat; color:#444;}*/ .content {float:left; width:720px; font-size:0.9em; padding:20px 0 10px 20px;} .content h1 {display:block; margin:0 0 0px 0; font-size:1.9em; line-height:normal; font-weight:bold; letter-spacing:0px; color:#444;} .content h2 {display:block; line-height:normal; margin:0 0 8px 0; font-size:1.7em; font-weight:normal; letter-spacing:-1px; color:#505050; background-color:inherit;} .content h2 a {font-weight:normal;} .content h3 {margin:0 0 5px 0; line-height:normal; font-size:1.4em; letter-spacing:+1px;} .content a:hover,#subcontent a:hover {text-decoration:underline;} .content ul,.content ol {margin:0 5px 16px 35px;list-style: outside disc; margin-left: 1em;} .content ul li {position: relative; left: 2em;padding-right: 2em; } .content dl {margin:0 5px 10px 25px;} .content dt {font-weight:bold; margin-bottom:5px;} #content dd {margin:0 0 10px 15px;} /* Tag cloud style */ .tags li { display:inline !important; background:#EEE !important;text-align: center !important; padding-right: 0em !important;left:0 !important; position:relative !important; list-style:none !important;} .tags ul { margin: 0 !important; margin-left:0em !important; list-style:none !important;} .tagvec { background:#EEE; padding-right: 0em !important;} /* Sidebar styles */ #subcontent {float:right; width:170px; padding:20px 20px 10px 0; line-height:1.4em;} #subcontent h2 {display:block; margin:0 0 15px 0; font-size:1.5em; font-weight:normal; text-align:left; letter-spacing:-1px; color:#505050; background-color:inherit;} #subcontent p {margin:0 0 16px 0; font-size:0.9em;} /* Menublock styles */ .menublock {margin:0 0 20px 8px; font-size:0.9em;} .menublock li {list-style:none; display:block; padding:2px; margin-bottom:2px; padding-right: 2em; } .menublock li a {font-weight:bold; text-decoration:none; padding-right: 2em; } .menublock li a:hover {text-decoration:none; padding-right: 2em; } .menublock li ul {margin:3px 0 3px 15px; font-size:1em; font-weight:normal; padding-right: 2em; } .menublock li ul li {margin-bottom:0; padding-right: 2em; } .menublock li ul a {font-weight:normal; padding-right: 2em; } /* Searchbar styles */ #searchbar {margin:0 0 20px 0;} #searchbar form fieldset {margin-left:10px; border:0 solid;} #searchbar #s {height:1.2em; width:110px; margin:0 5px 0 0; border:1px solid #a0a0a0;} #searchbar #searchbutton {width:auto; padding:0 1px; border:1px solid #808080; font-size:0.9em; text-align:center;} /* Footer styles */ #footer {clear:both; width:758px; padding:5px 0; margin:0 1px; font-size:0.9em; background:#AFB595 url() bottom left no-repeat; color:#444;} #footer p {padding:0; margin:0; text-align:center;} #footer a {color:#444; font-weight:400;} #footer a:hover {color:#444; text-decoration: underline;} /* Misc classes and styles */ .floatleft {float:left;margin-right: 10px;} .floatright {float:right;margin-left: 10px;} .caption {text-align:right; font-style: italic;} .splitleft {float:left; width:58%;} .splitright {float:right; width:38%;} .clear {clear:both;} .small {font-size:0.8em;} .hide {display:none;} .textfull{text-align: justify; text-justify: inter-word;} .textcenter {text-align:center;} .textright {text-align:right;} .important {color:#f02025; background-color:inherit; font-weight:bold;} .box {margin-bottom:20px; padding:10px; border:1px solid #636a46; background-color:#E1E3D4; color:#444; line-height:1.5em;}
css/main.css
* {margin:0; padding:0;} body {font:76% Verdana,Tahoma,Arial,sans-serif; line-height:1.4em; text-align:center; color:#303030; background:#94938D;} body { overflow: scroll; } a {color:#636a46; font-weight:bold; text-decoration:none; background-color:inherit;} /*a {color:#AFB595; font-weight:bold; text-decoration:none; background-color:inherit;}*/ a:hover {color:#636a46; text-decoration:none; background-color:inherit;} a img {border:none;} p {padding:0 0 1.6em 0;} p form {margin-top:0; margin-bottom:20px;} img.left,img.center,img.right {padding:4px;} img.left {float:left; margin:0 12px 5px 0;} img.center {display:block; margin:0 auto 5px auto;} img.right {float:right; margin:0 0 5px 12px;} /* Mathjax fix */ code.has-jax {font: inherit; font-size: 100%; background: inherit; border: inherit; color:#303030 } /* Header and navigation styles */ #container {width:760px; margin:20px auto; padding:1px 0; text-align:left; background:#ffffff; color:#303030;} #header {height:104px; width:758px; margin:0 1px 1px 1px; background:#AFB595 url(../images/escher_cubic_zoom2b.jpg) top left no-repeat; color:#444;} #header h1 {padding:40px 0 0 420px; font-size:3.4em; color:#552316; letter-spacing:-2px; font-weight:bold;} #header h2 {margin:20px 0 0 430px; font-size:1.4em; color:#444; letter-spacing:-1px; font-weight:normal;} #navigation {height:2.2em; line-height:2.2em; width:758px; margin:0 1px; background:#636a46; color:#ffffff;} #navigation li {float:left; list-style-type:none; border-right:1px solid #ffffff; white-space:nowrap;} #navigation li a {display:block; padding:0 10px; font-size:0.8em; font-weight:normal; text-transform:uppercase; text-decoration:none; background-color:inherit; color: #ffffff;} * html #navigation a {width:1%;} #navigation .selected,#navigation a:hover {background:#AFB595; color:#ffffff; text-decoration:none;} /* Content styles */ /* Applies to EVERYTHING! (must be overriden with !important */ /*#header {height:104px; width:758px; margin:0 1px 1px 1px; background:#AFB595 url(../images/escher_cubic_zoom2b.jpg) top left no-repeat; color:#444;}*/ .content {float:left; width:720px; font-size:0.9em; padding:20px 0 10px 20px;} .content h1 {display:block; margin:0 0 0px 0; font-size:1.9em; line-height:normal; font-weight:bold; letter-spacing:0px; color:#444;} .content h2 {display:block; line-height:normal; margin:0 0 8px 0; font-size:1.7em; font-weight:normal; letter-spacing:-1px; color:#505050; background-color:inherit;} .content h2 a {font-weight:normal;} .content h3 {margin:0 0 5px 0; line-height:normal; font-size:1.4em; letter-spacing:+1px;} .content a:hover,#subcontent a:hover {text-decoration:underline;} .content ul,.content ol {margin:0 5px 16px 35px;list-style: outside disc; margin-left: 1em;} .content ul li {position: relative; left: 2em;padding-right: 2em; } .content dl {margin:0 5px 10px 25px;} .content dt {font-weight:bold; margin-bottom:5px;} #content dd {margin:0 0 10px 15px;} /* Tag cloud style */ .tags li { display:inline !important; background:#EEE !important;text-align: center !important; padding-right: 0em !important;left:0 !important; position:relative !important; list-style:none !important;} .tags ul { margin: 0 !important; margin-left:0em !important; list-style:none !important;} .tagvec { background:#EEE; padding-right: 0em !important;} /* Sidebar styles */ #subcontent {float:right; width:170px; padding:20px 20px 10px 0; line-height:1.4em;} #subcontent h2 {display:block; margin:0 0 15px 0; font-size:1.5em; font-weight:normal; text-align:left; letter-spacing:-1px; color:#505050; background-color:inherit;} #subcontent p {margin:0 0 16px 0; font-size:0.9em;} /* Menublock styles */ .menublock {margin:0 0 20px 8px; font-size:0.9em;} .menublock li {list-style:none; display:block; padding:2px; margin-bottom:2px; padding-right: 2em; } .menublock li a {font-weight:bold; text-decoration:none; padding-right: 2em; } .menublock li a:hover {text-decoration:none; padding-right: 2em; } .menublock li ul {margin:3px 0 3px 15px; font-size:1em; font-weight:normal; padding-right: 2em; } .menublock li ul li {margin-bottom:0; padding-right: 2em; } .menublock li ul a {font-weight:normal; padding-right: 2em; } /* Searchbar styles */ #searchbar {margin:0 0 20px 0;} #searchbar form fieldset {margin-left:10px; border:0 solid;} #searchbar #s {height:1.2em; width:110px; margin:0 5px 0 0; border:1px solid #a0a0a0;} #searchbar #searchbutton {width:auto; padding:0 1px; border:1px solid #808080; font-size:0.9em; text-align:center;} /* Footer styles */ #footer {clear:both; width:758px; padding:5px 0; margin:0 1px; font-size:0.9em; background:#AFB595 url() bottom left no-repeat; color:#444;} #footer p {padding:0; margin:0; text-align:center;} #footer a {color:#444; font-weight:400;} #footer a:hover {color:#444; text-decoration: underline;} /* Misc classes and styles */ .floatleft {float:left;margin-right: 10px;} .floatright {float:right;margin-left: 10px;} .caption {text-align:right; font-style: italic;} .splitleft {float:left; width:58%;} .splitright {float:right; width:38%;} .clear {clear:both;} .small {font-size:0.8em;} .hide {display:none;} .textfull{text-align: justify; text-justify: inter-word;} .textcenter {text-align:center;} .textright {text-align:right;} .important {color:#f02025; background-color:inherit; font-weight:bold;} .box {margin-bottom:20px; padding:10px; border:1px solid #636a46; background-color:#E1E3D4; color:#444; line-height:1.5em;}
0.30965
0.167355