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 |
|---|---|---|---|---|
Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
display: none;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
overflow: hidden;
touch-action: none;
z-index: 99999;
-webkit-text-size-adjust: 100%;
/* create separate layer, to avoid paint on window.onscroll in webkit/blink */
-webkit-backface-visibility: hidden;
outline: none; }
.pswp * {
box-sizing: border-box; }
.pswp img {
max-width: none; }
/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
/* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
opacity: 0.001;
will-change: opacity;
/* for open/close transition */
transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }
.pswp--open {
display: block; }
.pswp--zoom-allowed .pswp__img {
/* autoprefixer: off */
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in; }
.pswp--zoomed-in .pswp__img {
/* autoprefixer: off */
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: grab; }
.pswp--dragging .pswp__img {
/* autoprefixer: off */
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
cursor: grabbing; }
/*
Background is added as a separate element.
As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.96);
opacity: 0;
transform: translateZ(0);
-webkit-backface-visibility: hidden;
will-change: opacity; }
.pswp__scroll-wrap {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: hidden; }
.pswp__container,
.pswp__zoom-wrap {
touch-action: none;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0; }
/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-touch-callout: none; }
.pswp__zoom-wrap {
position: absolute;
width: 100%;
transform-origin: left top;
/* for open/close transition */
transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }
.pswp__bg {
will-change: opacity;
/* for open/close transition */
transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }
.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
transition: none; }
.pswp__container,
.pswp__zoom-wrap {
-webkit-backface-visibility: hidden; }
.pswp__item {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
overflow: hidden; }
.pswp__img {
position: absolute;
width: auto;
height: auto;
top: 0;
left: 0; }
/*
stretched thumbnail or div placeholder element (see below)
style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
-webkit-backface-visibility: hidden; }
/*
div element that matches size of large image
large image loads on top of it
*/
.pswp__img--placeholder--blank {
background: linear-gradient(to top, rgba(255, 255, 255, 0.85) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.15) 65%, rgba(255, 255, 255, 0.075) 75.5%, rgba(255, 255, 255, 0.037) 82.85%, rgba(255, 255, 255, 0.019) 88%, rgba(255, 255, 255, 0) 100%) !important; }
.pswp--ie .pswp__img {
width: 100% !important;
height: auto !important;
left: 0;
top: 0; }
/*
Error message appears when image is not loaded
(JS option errorMsg controls markup)
*/
.pswp__error-msg {
position: absolute;
left: 0;
top: 50%;
width: 100%;
text-align: center;
font-size: 14px;
line-height: 16px;
margin-top: -8px;
color: #CCC; }
.pswp__error-msg a {
color: #CCC;
text-decoration: underline; }
/*
PhotoSwipe Default UI CSS by <NAME> | photoswipe.com | MIT license
Contents:
1. Buttons
2. Share modal and links
3. Index indicator ("1 of X" counter)
4. Caption
5. Loading indicator
6. Additional styles (root element, top bar, idle state, hidden state, etc.)
*/
/*
1. Buttons
*/
/* <button> css reset */
.pswp__button {
cursor: pointer;
overflow: visible;
-webkit-appearance: none;
display: block;
border: 0;
padding: 0;
margin: 0;
float: right;
opacity: 0.75;
transition: opacity 0.2s;
box-shadow: none; }
.pswp__button:focus, .pswp__button:hover {
opacity: 1; }
.pswp__button:active {
outline: none;
opacity: 0.9; }
.pswp__button::-moz-focus-inner {
padding: 0;
border: 0; }
/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
opacity: 1; }
/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
visibility: hidden; }
/*
Arrow buttons hit area
(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
background: none;
top: 50%;
margin-top: -50px;
width: 70px;
height: 100px;
position: absolute; }
.pswp__button--arrow--left {
left: 0; }
.pswp__button--arrow--right {
right: 0; }
/*
2. Share modal/popup and links
*/
.pswp__counter,
.pswp__share-modal {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.pswp__share-modal {
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
padding: 10px;
position: absolute;
z-index: 100099;
opacity: 0;
transition: opacity 0.25s ease-out;
-webkit-backface-visibility: hidden;
will-change: opacity; }
.pswp__share-modal--hidden {
display: none; }
.pswp__share-tooltip {
z-index: 100119;
position: absolute;
background: #FFF;
top: 15px;
border-radius: 2px;
display: block;
width: auto;
right: 44px;
box-shadow: 0 0 35px rgba(140, 152, 164, 0.15);
transform: translateY(6px);
transition: transform 0.25s;
-webkit-backface-visibility: hidden;
will-change: transform; }
.pswp__share-tooltip a {
display: block;
padding: 8px 12px;
color: #000;
text-decoration: none;
font-size: 14px; }
.pswp__share-tooltip a:hover {
text-decoration: none; }
.pswp__share-tooltip a:first-child {
/* round corners on the first/last list item */
border-radius: 0.25rem 0.25rem 0 0; }
.pswp__share-tooltip a:last-child {
border-radius: 0 0 0.25rem 0.25rem; }
.pswp__share-tooltip a:not(.last-child) {
border-bottom: #e9ecef 1px solid; }
.pswp__share-modal--fade-in {
opacity: 1; }
.pswp__share-modal--fade-in .pswp__share-tooltip {
transform: translateY(0); }
/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
padding: 16px 12px;
color: #313131; }
.pswp--touch .pswp__share-tooltip a:hover {
background-color: #f8f9fa; }
.pswp--touch .pswp__share-tooltip a:first-child {
border: 6px solid rgba(0, 0, 0, 0); }
/*
Preloader
*/
.pswp__preloader {
display: none; }
.pswp__preloader--active {
display: inherit; }
/*
3. Index indicator ("1 of X" counter)
*/
.pswp__counter {
position: absolute;
left: 0;
top: 0;
height: 44px;
font-size: 13px;
line-height: 44px;
color: #212529;
opacity: 0.75;
padding: 0 10px; }
/*
4. Caption
*/
.pswp__caption {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
min-height: 44px; }
.pswp__caption small {
font-size: 11px;
color: #BBB; }
.pswp__caption__center {
text-align: left;
max-width: 420px;
margin: 0 auto;
font-size: 13px;
padding: 10px;
line-height: 20px;
color: #212529; }
.pswp__caption--empty {
display: none; }
/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
visibility: hidden; }
/*
6. Additional styles
*/
/* root element of UI */
.pswp__ui {
-webkit-font-smoothing: auto;
visibility: visible;
opacity: 1;
z-index: 100049; }
/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
position: absolute;
left: 0;
top: 0;
height: 44px;
width: 100%; }
.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
-webkit-backface-visibility: hidden;
will-change: opacity;
transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }
/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
visibility: visible; }
/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
opacity: 0; }
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
opacity: 0; }
/*
pswp__ui--hidden class is added when controls are hidden
e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
/* Force paint & create composition layer for controls. */
opacity: 0.001; }
/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
display: none; }
.pswp__element--disabled {
display: none !important; }
.pswp--minimal--dark .pswp__top-bar {
background: none; } | assets/css/vendor.photoswipe.css | Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
display: none;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
overflow: hidden;
touch-action: none;
z-index: 99999;
-webkit-text-size-adjust: 100%;
/* create separate layer, to avoid paint on window.onscroll in webkit/blink */
-webkit-backface-visibility: hidden;
outline: none; }
.pswp * {
box-sizing: border-box; }
.pswp img {
max-width: none; }
/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
/* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
opacity: 0.001;
will-change: opacity;
/* for open/close transition */
transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }
.pswp--open {
display: block; }
.pswp--zoom-allowed .pswp__img {
/* autoprefixer: off */
cursor: -webkit-zoom-in;
cursor: -moz-zoom-in;
cursor: zoom-in; }
.pswp--zoomed-in .pswp__img {
/* autoprefixer: off */
cursor: -webkit-grab;
cursor: -moz-grab;
cursor: grab; }
.pswp--dragging .pswp__img {
/* autoprefixer: off */
cursor: -webkit-grabbing;
cursor: -moz-grabbing;
cursor: grabbing; }
/*
Background is added as a separate element.
As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, 0.96);
opacity: 0;
transform: translateZ(0);
-webkit-backface-visibility: hidden;
will-change: opacity; }
.pswp__scroll-wrap {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: hidden; }
.pswp__container,
.pswp__zoom-wrap {
touch-action: none;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0; }
/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-webkit-touch-callout: none; }
.pswp__zoom-wrap {
position: absolute;
width: 100%;
transform-origin: left top;
/* for open/close transition */
transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }
.pswp__bg {
will-change: opacity;
/* for open/close transition */
transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }
.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
transition: none; }
.pswp__container,
.pswp__zoom-wrap {
-webkit-backface-visibility: hidden; }
.pswp__item {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
overflow: hidden; }
.pswp__img {
position: absolute;
width: auto;
height: auto;
top: 0;
left: 0; }
/*
stretched thumbnail or div placeholder element (see below)
style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
-webkit-backface-visibility: hidden; }
/*
div element that matches size of large image
large image loads on top of it
*/
.pswp__img--placeholder--blank {
background: linear-gradient(to top, rgba(255, 255, 255, 0.85) 0, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.15) 65%, rgba(255, 255, 255, 0.075) 75.5%, rgba(255, 255, 255, 0.037) 82.85%, rgba(255, 255, 255, 0.019) 88%, rgba(255, 255, 255, 0) 100%) !important; }
.pswp--ie .pswp__img {
width: 100% !important;
height: auto !important;
left: 0;
top: 0; }
/*
Error message appears when image is not loaded
(JS option errorMsg controls markup)
*/
.pswp__error-msg {
position: absolute;
left: 0;
top: 50%;
width: 100%;
text-align: center;
font-size: 14px;
line-height: 16px;
margin-top: -8px;
color: #CCC; }
.pswp__error-msg a {
color: #CCC;
text-decoration: underline; }
/*
PhotoSwipe Default UI CSS by <NAME> | photoswipe.com | MIT license
Contents:
1. Buttons
2. Share modal and links
3. Index indicator ("1 of X" counter)
4. Caption
5. Loading indicator
6. Additional styles (root element, top bar, idle state, hidden state, etc.)
*/
/*
1. Buttons
*/
/* <button> css reset */
.pswp__button {
cursor: pointer;
overflow: visible;
-webkit-appearance: none;
display: block;
border: 0;
padding: 0;
margin: 0;
float: right;
opacity: 0.75;
transition: opacity 0.2s;
box-shadow: none; }
.pswp__button:focus, .pswp__button:hover {
opacity: 1; }
.pswp__button:active {
outline: none;
opacity: 0.9; }
.pswp__button::-moz-focus-inner {
padding: 0;
border: 0; }
/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
opacity: 1; }
/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
visibility: hidden; }
/*
Arrow buttons hit area
(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
background: none;
top: 50%;
margin-top: -50px;
width: 70px;
height: 100px;
position: absolute; }
.pswp__button--arrow--left {
left: 0; }
.pswp__button--arrow--right {
right: 0; }
/*
2. Share modal/popup and links
*/
.pswp__counter,
.pswp__share-modal {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.pswp__share-modal {
display: block;
width: 100%;
height: 100%;
top: 0;
left: 0;
padding: 10px;
position: absolute;
z-index: 100099;
opacity: 0;
transition: opacity 0.25s ease-out;
-webkit-backface-visibility: hidden;
will-change: opacity; }
.pswp__share-modal--hidden {
display: none; }
.pswp__share-tooltip {
z-index: 100119;
position: absolute;
background: #FFF;
top: 15px;
border-radius: 2px;
display: block;
width: auto;
right: 44px;
box-shadow: 0 0 35px rgba(140, 152, 164, 0.15);
transform: translateY(6px);
transition: transform 0.25s;
-webkit-backface-visibility: hidden;
will-change: transform; }
.pswp__share-tooltip a {
display: block;
padding: 8px 12px;
color: #000;
text-decoration: none;
font-size: 14px; }
.pswp__share-tooltip a:hover {
text-decoration: none; }
.pswp__share-tooltip a:first-child {
/* round corners on the first/last list item */
border-radius: 0.25rem 0.25rem 0 0; }
.pswp__share-tooltip a:last-child {
border-radius: 0 0 0.25rem 0.25rem; }
.pswp__share-tooltip a:not(.last-child) {
border-bottom: #e9ecef 1px solid; }
.pswp__share-modal--fade-in {
opacity: 1; }
.pswp__share-modal--fade-in .pswp__share-tooltip {
transform: translateY(0); }
/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
padding: 16px 12px;
color: #313131; }
.pswp--touch .pswp__share-tooltip a:hover {
background-color: #f8f9fa; }
.pswp--touch .pswp__share-tooltip a:first-child {
border: 6px solid rgba(0, 0, 0, 0); }
/*
Preloader
*/
.pswp__preloader {
display: none; }
.pswp__preloader--active {
display: inherit; }
/*
3. Index indicator ("1 of X" counter)
*/
.pswp__counter {
position: absolute;
left: 0;
top: 0;
height: 44px;
font-size: 13px;
line-height: 44px;
color: #212529;
opacity: 0.75;
padding: 0 10px; }
/*
4. Caption
*/
.pswp__caption {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
min-height: 44px; }
.pswp__caption small {
font-size: 11px;
color: #BBB; }
.pswp__caption__center {
text-align: left;
max-width: 420px;
margin: 0 auto;
font-size: 13px;
padding: 10px;
line-height: 20px;
color: #212529; }
.pswp__caption--empty {
display: none; }
/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
visibility: hidden; }
/*
6. Additional styles
*/
/* root element of UI */
.pswp__ui {
-webkit-font-smoothing: auto;
visibility: visible;
opacity: 1;
z-index: 100049; }
/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
position: absolute;
left: 0;
top: 0;
height: 44px;
width: 100%; }
.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
-webkit-backface-visibility: hidden;
will-change: opacity;
transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }
/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
visibility: visible; }
/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
opacity: 0; }
.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
opacity: 0; }
/*
pswp__ui--hidden class is added when controls are hidden
e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
/* Force paint & create composition layer for controls. */
opacity: 0.001; }
/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
display: none; }
.pswp__element--disabled {
display: none !important; }
.pswp--minimal--dark .pswp__top-bar {
background: none; } | 0.35209 | 0.049797 |
1.1 Added unprefixed attributes, :focus style, <button> support
1.0 Released
Usage:
Default button: <a href="" class="button">Label</a>
More fancy with icon: <a href="" class="button orange glossy" data-icon="★">Label</a>
Following additional class names are supported:
Color: orange, pink, blue, green, transparent
Font: serif
Material: glossy, glass
Size: xs, xl
Shape: round, oval, brackets, skew, back, knife, shield, drop, morph
Icon only: icon
Disabled: disabled
*/
@import url(http://fonts.googleapis.com/css?family=Droid + Sans:bold + Lobster);
@import url(http://fonts.googleapis.com/css?family=Lobster);
/* -------------- THE button -------------- */
.button {
/* text */
text-decoration: none;
font: 24px/1em "Droid Sans", sans-serif;
font-weight: bold;
text-shadow: rgba(255, 255, 255, 0.5) 0 1px 0;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
/* layout */
padding: 0.5em 0.6em 0.4em 0.6em;
margin: 0.5em;
display: inline-block;
position: relative;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
/* effects */
border-top: 1px solid rgba(255, 255, 255, 0.8);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
background-image: -webkit-gradient(
radial,
50% 0,
100,
50% 0,
0,
from(rgba(255, 255, 255, 0)),
to(rgba(255, 255, 255, 0.7))
),
url(noise.png);
background-image: -moz-radial-gradient(
top,
ellipse cover,
rgba(255, 255, 255, 0.7) 0%,
rgba(255, 255, 255, 0) 100%
),
url(noise.png);
background-image: gradient(
radial,
50% 0,
100,
50% 0,
0,
from(rgba(255, 255, 255, 0)),
to(rgba(255, 255, 255, 0.7))
),
url(noise.png);
-webkit-transition: background 0.2s ease-in-out;
-moz-transition: background 0.2s ease-in-out;
transition: background 0.2s ease-in-out;
/* color */
color: hsl(0, 0%, 40%) !important;
background-color: hsl(0, 0%, 75%);
-webkit-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(0, 0%, 60%) 0 0.1em 3px, hsl(0, 0%, 45%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(0, 0%, 60%) 0 0.1em 3px, hsl(0, 0%, 45%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(0, 0%, 60%) 0 0.1em 3px, hsl(0, 0%, 45%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
}
/* -------------- button (tag) -------------- */
button.button {
border-left: none;
border-right: none;
}
button.button:hover {
cursor: pointer;
}
/* -------------- icon -------------- */
.button:before {
font: 1.2em/0 sans-serif;
content: attr(
data-icon
); /* gets the icon value from the custom data attribute and puts it infront of the button label */
margin-right: 6px;
}
/* icon only */
.icon {
font-weight: normal;
font-style: normal;
}
.icon:before {
display: block;
height: 0.75em;
line-height: 0.75em;
margin: 0;
}
/* -------------- colours -------------- */
.button.orange {
color: hsl(39, 100%, 30%) !important;
background-color: hsl(39, 100%, 50%);
-webkit-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(39, 100%, 40%) 0 0.1em 3px,
hsl(39, 100%, 30%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(39, 100%, 40%) 0 0.1em 3px,
hsl(39, 100%, 30%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(39, 100%, 40%) 0 0.1em 3px,
hsl(39, 100%, 30%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
}
.button.orange:hover {
background-color: hsl(39, 100%, 65%);
}
.button.blue {
color: hsl(208, 50%, 40%) !important;
background-color: hsl(208, 100%, 75%);
-webkit-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(208, 50%, 55%) 0 0.1em 3px,
hsl(208, 50%, 40%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(208, 50%, 55%) 0 0.1em 3px,
hsl(208, 50%, 40%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(208, 50%, 55%) 0 0.1em 3px,
hsl(208, 50%, 40%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
}
.button.blue:hover {
background-color: hsl(208, 100%, 83%);
}
.button.green {
color: hsl(88, 70%, 30%) !important;
background-color: hsl(88, 70%, 60%);
-webkit-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(88, 70%, 40%) 0 0.1em 3px,
hsl(88, 70%, 30%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(88, 70%, 40%) 0 0.1em 3px,
hsl(88, 70%, 30%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(88, 70%, 40%) 0 0.1em 3px,
hsl(88, 70%, 30%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
}
.button.green:hover {
background-color: hsl(88, 70%, 75%);
}
.button.pink {
color: hsl(340, 100%, 30%) !important;
background-color: hsl(340, 100%, 75%);
-webkit-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(340, 70%, 50%) 0 0.1em 3px,
hsl(340, 80%, 40%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(340, 70%, 50%) 0 0.1em 3px,
hsl(340, 80%, 40%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(340, 70%, 50%) 0 0.1em 3px,
hsl(340, 80%, 40%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
}
.button.pink:hover {
background-color: hsl(340, 100%, 83%);
}
.button.transparent {
color: rgba(0, 0, 0, 0.5) !important;
}
.button.transparent,
.button.transparent:hover,
.button.transparent:active {
background-color: transparent;
background-image: none;
}
.button.transparent:hover {
opacity: 0.9;
}
/* -------------- States -------------- */
.button:hover {
background-color: hsl(0, 0%, 83%);
}
.button:active {
background-image: -webkit-gradient(
radial,
50% 0,
100,
50% 0,
0,
from(rgba(255, 255, 255, 0)),
to(rgba(255, 255, 255, 0))
),
url(noise.png);
background-image: -moz-gradient(
radial,
50% 0,
100,
50% 0,
0,
from(rgba(255, 255, 255, 0)),
to(rgba(255, 255, 255, 0))
),
url(noise.png);
background-image: gradient(
radial,
50% 0,
100,
50% 0,
0,
from(rgba(255, 255, 255, 0)),
to(rgba(255, 255, 255, 0))
),
url(noise.png);
-webkit-box-shadow: inset rgba(255, 255, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.2) 0 -0.1em 0.3em,
/* inner shadow */ rgba(0, 0, 0, 0.4) 0 0.1em 1px,
/* border */ rgba(0, 0, 0, 0.2) 0 0.2em 6px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 255, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.2) 0 -0.1em 0.3em,
/* inner shadow */ rgba(0, 0, 0, 0.4) 0 0.1em 1px,
/* border */ rgba(0, 0, 0, 0.2) 0 0.2em 6px; /* drop shadow */
box-shadow: inset rgba(255, 255, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.2) 0 -0.1em 0.3em,
/* inner shadow */ rgba(0, 0, 0, 0.4) 0 0.1em 1px,
/* border */ rgba(0, 0, 0, 0.2) 0 0.2em 6px; /* drop shadow */
-webkit-transform: translateY(0.2em);
-moz-transform: translateY(0.2em);
transform: translateY(0.2em);
}
.button:focus {
outline: none;
/* color: rgba(254, 255, 255, 0.9) !important; */
text-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px;
}
.button[disabled],
.button[disabled]:hover,
.button.disabled,
.button.disabled:hover {
opacity: 0.5;
cursor: default;
color: rgba(0, 0, 0, 0.2) !important;
text-shadow: none !important;
background-color: rgba(0, 0, 0, 0.05);
background-image: none;
border-top: none;
-webkit-box-shadow: inset rgba(255, 254, 255, 0.4) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.1) 0 -0.1em 0.3em,
/* inner shadow */ rgba(0, 0, 0, 0.3) 0 0.1em 1px,
/* border */ rgba(0, 0, 0, 0.2) 0 0.2em 6px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 254, 255, 0.4) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.1) 0 -0.1em 0.3em,
/* inner shadow */ rgba(0, 0, 0, 0.3) 0 0.1em 1px,
/* border */ rgba(0, 0, 0, 0.2) 0 0.2em 6px; /* drop shadow */
box-shadow: inset rgba(255, 254, 255, 0.4) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.1) 0 -0.1em 0.3em,
/* inner shadow */ rgba(0, 0, 0, 0.3) 0 0.1em 1px,
/* border */ rgba(0, 0, 0, 0.2) 0 0.2em 6px; /* drop shadow */
-webkit-transform: translateY(5px);
-moz-transform: translateY(5px);
transform: translateY(5px);
}
/* -------------- Fonts -------------- */
.serif {
font-family: "Lobster", serif;
font-weight: normal;
}
/* -------------- Sizes -------------- */
.xs {
font-size: 16px;
}
.xl {
font-size: 32px;
}
/* -------------- Materials -------------- */
.button.glossy:after,
.button.glass:after {
content: "";
position: absolute;
width: 90%;
height: 60%;
top: 0;
left: 5%;
-webkit-border-radius: 0.5em 0.5em 1em 1em / 0.5em 0.5em 2em 2em;
-moz-border-radius: 0.5em 0.5em 1em 1em / 0.5em 0.5em 2em 2em;
border-radius: 0.5em 0.5em 1em 1em / 0.5em 0.5em 2em 2em;
background-image: -webkit-gradient(
linear,
0% 0,
100% 0,
from(rgba(255, 255, 255, 0.55)),
to(rgba(255, 255, 255, 0.5)),
color-stop(0.5, rgba(255, 255, 255, 0)),
color-stop(0.8, rgba(255, 255, 255, 0))
);
background-image: -moz-linear-gradient(
left,
rgba(255, 255, 255, 0.55),
rgba(255, 255, 255, 0) 50%,
rgba(255, 255, 255, 0) 80%,
rgba(255, 255, 255, 0.5)
);
background-image: gradient(
linear,
0% 0,
100% 0,
from(rgba(255, 255, 255, 0.55)),
to(rgba(255, 255, 255, 0.5)),
color-stop(0.5, rgba(255, 255, 255, 0)),
color-stop(0.8, rgba(255, 255, 255, 0))
);
}
.button.glossy:active:after,
.button.glass:active:after,
.button.disabled:after,
.button[disabled]:after {
opacity: 0.6;
}
.button.icon.glossy:after,
.button.icon.glass:after {
height: 75%;
}
/* -------------- Glass + Transparent -------------- */
.button.glass {
text-shadow: rgba(255, 255, 255, 0.5) 0 -1px 0,
rgba(0, 0, 0, 0.18) 0 0.18em 0.15em;
}
.button.glass:active {
text-shadow: rgba(255, 255, 255, 0.3) 0 1px 0,
rgba(0, 0, 0, 0.15) 0 0.18em 0.15em;
}
/* -------------- Shapes -------------- */
/* round */
.round,
.round.glossy:after,
.round.glass:after {
border-top: none;
-webkit-border-radius: 1em;
-moz-border-radius: 1em;
border-radius: 1em;
}
/* oval */
.oval {
border-top: none;
padding-left: 0.8em;
padding-right: 0.8em;
-webkit-border-radius: 5em / 2em;
-moz-border-radius: 5em / 2em;
border-radius: 5em / 2em;
}
.oval.glossy:after,
.oval.glass:after {
top: 5%;
-webkit-border-radius: 5em / 2em 2em 1em 1em;
-moz-border-radius: 5em / 2em 2em 1em 1em;
border-radius: 5em / 2em 2em 1em 1em;
}
.oval.icon {
padding-left: 0.8em;
padding-right: 0.8em;
-webkit-border-radius: 1.5em / 1em;
-moz-border-radius: 1.5em / 1em;
border-radius: 1.5em / 1em;
}
.oval.icon.glossy:after,
.oval.icon.glass:after {
-webkit-border-radius: 1.5em / 1em;
-moz-border-radius: 1.5em / 1em;
border-radius: 1.5em / 1em;
}
/* brackets */
.brackets,
.brackets.glossy:after,
.brackets.glass:after {
border-top: none;
-webkit-border-radius: 0.5em / 1em;
-moz-border-radius: 0.5em / 1em;
border-radius: 0.5em / 1em;
}
/* skew */
.skew {
border-top: none;
padding-right: 1.2em;
padding-left: 0.8em;
-webkit-border-radius: 5em 1em / 5em 1em;
-moz-border-radius: 5em 1em / 5em 1em;
border-radius: 5em 1em / 5em 1em;
}
.skew.glossy:after,
.skew.glass:after {
left: 10%;
-webkit-border-radius: 7em 1em / 5em 1em;
-moz-border-radius: 7em 1em / 5em 1em;
border-radius: 7em 1em / 5em 1em;
}
.skew.icon {
padding-right: 0.9em;
padding-left: 0.8em;
}
/* back */
.back,
.back.glossy:after,
.back.glass:after {
border-top-color: rgba(255, 255, 255, 0.5);
-webkit-border-radius: 1.6em 1.6em 1em 1em / 4em 4em 1em 1em;
-moz-border-radius: 1.6em 1.6em 1em 1em / 4em 4em 1em 1em;
border-radius: 1.6em 1.6em 1em 1em / 4em 4em 1em 1em;
}
.back.glossy:after,
.back.glass:after {
left: 6%;
width: 88%;
}
/* knife */
.knife {
padding-left: 1.5em;
-webkit-border-radius: 0.2em 0.5em 0.5em 8em / 0.2em 0.5em 0.5em 5em;
-moz-border-radius: 0.2em 0.5em 0.5em 8em / 0.2em 0.5em 0.5em 5em;
border-radius: 0.2em 0.5em 0.5em 8em / 0.2em 0.5em 0.5em 5em;
}
.knife.glossy:after,
.knife.glass:after {
left: 3%;
width: 97%;
-webkit-border-radius: 0.1em 0.5em 0.5em 8em / 0.1em 0.5em 0.5em 2em;
-moz-border-radius: 0.1em 0.5em 0.5em 8em / 0.1em 0.5em 0.5em 2em;
border-radius: 0.1em 0.5em 0.5em 8em / 0.1em 0.5em 0.5em 2em;
}
.knife.glossy.icon:after,
.knife.glass.icon:after {
left: 5%;
width: 95%;
-webkit-border-radius: 0.5em 0.5em 1em 6em / 0.5em 0.5em 1em 4em;
-moz-border-radius: 0.5em 0.5em 1em 6em / 0.5em 0.5em 1em 4em;
border-radius: 0.5em 0.5em 1em 6em / 0.5em 0.5em 1em 4em;
}
/* shield */
.shield,
.shield.glossy:after,
.shield.glass:after {
-webkit-border-radius: 0.4em 0.4em 2em 2em / 0.4em 0.4em 3em 3em;
-moz-border-radius: 0.4em 0.4em 2em 2em / 0.4em 0.4em 3em 3em;
border-radius: 0.4em 0.4em 2em 2em / 0.4em 0.4em 3em 3em;
}
.shield {
padding-left: 0.8em;
padding-right: 0.8em;
}
.shield.icon {
padding-left: 0.6em;
padding-right: 0.6em;
}
/* drop */
.drop {
border-top: none;
-webkit-border-radius: 2em 5em 2em 0.6em / 2em 4em 2em 0.6em;
-moz-border-radius: 2em 5em 2em 0.6em / 2em 4em 2em 0.6em;
border-radius: 2em 5em 2em 0.6em / 2em 4em 2em 0.6em;
}
.drop.glossy:after,
.drop.glass:after {
left: 4%;
-webkit-border-radius: 2em 6em 2em 1em / 2em 4em 2em 2em;
-moz-border-radius: 2em 6em 2em 1em / 2em 4em 2em 2em;
border-radius: 2em 6em 2em 1em / 2em 4em 2em 2em;
}
.drop.icon {
padding-right: 0.6em;
}
/* morph */
.morph {
border-top: none;
-webkit-border-radius: 5em / 2em;
-moz-border-radius: 5em / 2em;
border-radius: 5em / 2em;
-webkit-transition: -webkit-border-radius 0.3s ease-in-out;
-moz-transition: -moz-border-radius 0.3s ease-in-out;
transition: -moz-border-radius 0.3s ease-in-out;
}
.morph:hover {
-webkit-border-radius: 0.4em 0.4em 2em 2em / 0.4em 0.4em 3em 3em;
-moz-border-radius: 0.4em 0.4em 2em 2em / 0.4em 0.4em 3em 3em;
border-radius: 0.4em 0.4em 2em 2em / 0.4em 0.4em 3em 3em;
}
.morph:active {
-webkit-border-radius: 0.3em;
-moz-border-radius: 0.3em;
border-radius: 0.3em;
}
.morph:after {
display: none;
}
/* Damn, this became a fat baby.. */ | public/bonbon.css |
1.1 Added unprefixed attributes, :focus style, <button> support
1.0 Released
Usage:
Default button: <a href="" class="button">Label</a>
More fancy with icon: <a href="" class="button orange glossy" data-icon="★">Label</a>
Following additional class names are supported:
Color: orange, pink, blue, green, transparent
Font: serif
Material: glossy, glass
Size: xs, xl
Shape: round, oval, brackets, skew, back, knife, shield, drop, morph
Icon only: icon
Disabled: disabled
*/
@import url(http://fonts.googleapis.com/css?family=Droid + Sans:bold + Lobster);
@import url(http://fonts.googleapis.com/css?family=Lobster);
/* -------------- THE button -------------- */
.button {
/* text */
text-decoration: none;
font: 24px/1em "Droid Sans", sans-serif;
font-weight: bold;
text-shadow: rgba(255, 255, 255, 0.5) 0 1px 0;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
/* layout */
padding: 0.5em 0.6em 0.4em 0.6em;
margin: 0.5em;
display: inline-block;
position: relative;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
border-radius: 8px;
/* effects */
border-top: 1px solid rgba(255, 255, 255, 0.8);
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
background-image: -webkit-gradient(
radial,
50% 0,
100,
50% 0,
0,
from(rgba(255, 255, 255, 0)),
to(rgba(255, 255, 255, 0.7))
),
url(noise.png);
background-image: -moz-radial-gradient(
top,
ellipse cover,
rgba(255, 255, 255, 0.7) 0%,
rgba(255, 255, 255, 0) 100%
),
url(noise.png);
background-image: gradient(
radial,
50% 0,
100,
50% 0,
0,
from(rgba(255, 255, 255, 0)),
to(rgba(255, 255, 255, 0.7))
),
url(noise.png);
-webkit-transition: background 0.2s ease-in-out;
-moz-transition: background 0.2s ease-in-out;
transition: background 0.2s ease-in-out;
/* color */
color: hsl(0, 0%, 40%) !important;
background-color: hsl(0, 0%, 75%);
-webkit-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(0, 0%, 60%) 0 0.1em 3px, hsl(0, 0%, 45%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(0, 0%, 60%) 0 0.1em 3px, hsl(0, 0%, 45%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(0, 0%, 60%) 0 0.1em 3px, hsl(0, 0%, 45%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
}
/* -------------- button (tag) -------------- */
button.button {
border-left: none;
border-right: none;
}
button.button:hover {
cursor: pointer;
}
/* -------------- icon -------------- */
.button:before {
font: 1.2em/0 sans-serif;
content: attr(
data-icon
); /* gets the icon value from the custom data attribute and puts it infront of the button label */
margin-right: 6px;
}
/* icon only */
.icon {
font-weight: normal;
font-style: normal;
}
.icon:before {
display: block;
height: 0.75em;
line-height: 0.75em;
margin: 0;
}
/* -------------- colours -------------- */
.button.orange {
color: hsl(39, 100%, 30%) !important;
background-color: hsl(39, 100%, 50%);
-webkit-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(39, 100%, 40%) 0 0.1em 3px,
hsl(39, 100%, 30%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(39, 100%, 40%) 0 0.1em 3px,
hsl(39, 100%, 30%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(39, 100%, 40%) 0 0.1em 3px,
hsl(39, 100%, 30%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
}
.button.orange:hover {
background-color: hsl(39, 100%, 65%);
}
.button.blue {
color: hsl(208, 50%, 40%) !important;
background-color: hsl(208, 100%, 75%);
-webkit-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(208, 50%, 55%) 0 0.1em 3px,
hsl(208, 50%, 40%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(208, 50%, 55%) 0 0.1em 3px,
hsl(208, 50%, 40%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(208, 50%, 55%) 0 0.1em 3px,
hsl(208, 50%, 40%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
}
.button.blue:hover {
background-color: hsl(208, 100%, 83%);
}
.button.green {
color: hsl(88, 70%, 30%) !important;
background-color: hsl(88, 70%, 60%);
-webkit-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(88, 70%, 40%) 0 0.1em 3px,
hsl(88, 70%, 30%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(88, 70%, 40%) 0 0.1em 3px,
hsl(88, 70%, 30%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(88, 70%, 40%) 0 0.1em 3px,
hsl(88, 70%, 30%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
}
.button.green:hover {
background-color: hsl(88, 70%, 75%);
}
.button.pink {
color: hsl(340, 100%, 30%) !important;
background-color: hsl(340, 100%, 75%);
-webkit-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(340, 70%, 50%) 0 0.1em 3px,
hsl(340, 80%, 40%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(340, 70%, 50%) 0 0.1em 3px,
hsl(340, 80%, 40%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
box-shadow: inset rgba(255, 254, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.15) 0 -0.1em 0.3em,
/* inner shadow */ hsl(340, 70%, 50%) 0 0.1em 3px,
hsl(340, 80%, 40%) 0 0.3em 1px,
/* color border */ rgba(0, 0, 0, 0.2) 0 0.5em 5px; /* drop shadow */
}
.button.pink:hover {
background-color: hsl(340, 100%, 83%);
}
.button.transparent {
color: rgba(0, 0, 0, 0.5) !important;
}
.button.transparent,
.button.transparent:hover,
.button.transparent:active {
background-color: transparent;
background-image: none;
}
.button.transparent:hover {
opacity: 0.9;
}
/* -------------- States -------------- */
.button:hover {
background-color: hsl(0, 0%, 83%);
}
.button:active {
background-image: -webkit-gradient(
radial,
50% 0,
100,
50% 0,
0,
from(rgba(255, 255, 255, 0)),
to(rgba(255, 255, 255, 0))
),
url(noise.png);
background-image: -moz-gradient(
radial,
50% 0,
100,
50% 0,
0,
from(rgba(255, 255, 255, 0)),
to(rgba(255, 255, 255, 0))
),
url(noise.png);
background-image: gradient(
radial,
50% 0,
100,
50% 0,
0,
from(rgba(255, 255, 255, 0)),
to(rgba(255, 255, 255, 0))
),
url(noise.png);
-webkit-box-shadow: inset rgba(255, 255, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.2) 0 -0.1em 0.3em,
/* inner shadow */ rgba(0, 0, 0, 0.4) 0 0.1em 1px,
/* border */ rgba(0, 0, 0, 0.2) 0 0.2em 6px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 255, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.2) 0 -0.1em 0.3em,
/* inner shadow */ rgba(0, 0, 0, 0.4) 0 0.1em 1px,
/* border */ rgba(0, 0, 0, 0.2) 0 0.2em 6px; /* drop shadow */
box-shadow: inset rgba(255, 255, 255, 0.6) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.2) 0 -0.1em 0.3em,
/* inner shadow */ rgba(0, 0, 0, 0.4) 0 0.1em 1px,
/* border */ rgba(0, 0, 0, 0.2) 0 0.2em 6px; /* drop shadow */
-webkit-transform: translateY(0.2em);
-moz-transform: translateY(0.2em);
transform: translateY(0.2em);
}
.button:focus {
outline: none;
/* color: rgba(254, 255, 255, 0.9) !important; */
text-shadow: rgba(0, 0, 0, 0.2) 0 1px 2px;
}
.button[disabled],
.button[disabled]:hover,
.button.disabled,
.button.disabled:hover {
opacity: 0.5;
cursor: default;
color: rgba(0, 0, 0, 0.2) !important;
text-shadow: none !important;
background-color: rgba(0, 0, 0, 0.05);
background-image: none;
border-top: none;
-webkit-box-shadow: inset rgba(255, 254, 255, 0.4) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.1) 0 -0.1em 0.3em,
/* inner shadow */ rgba(0, 0, 0, 0.3) 0 0.1em 1px,
/* border */ rgba(0, 0, 0, 0.2) 0 0.2em 6px; /* drop shadow */
-moz-box-shadow: inset rgba(255, 254, 255, 0.4) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.1) 0 -0.1em 0.3em,
/* inner shadow */ rgba(0, 0, 0, 0.3) 0 0.1em 1px,
/* border */ rgba(0, 0, 0, 0.2) 0 0.2em 6px; /* drop shadow */
box-shadow: inset rgba(255, 254, 255, 0.4) 0 0.3em 0.3em,
inset rgba(0, 0, 0, 0.1) 0 -0.1em 0.3em,
/* inner shadow */ rgba(0, 0, 0, 0.3) 0 0.1em 1px,
/* border */ rgba(0, 0, 0, 0.2) 0 0.2em 6px; /* drop shadow */
-webkit-transform: translateY(5px);
-moz-transform: translateY(5px);
transform: translateY(5px);
}
/* -------------- Fonts -------------- */
.serif {
font-family: "Lobster", serif;
font-weight: normal;
}
/* -------------- Sizes -------------- */
.xs {
font-size: 16px;
}
.xl {
font-size: 32px;
}
/* -------------- Materials -------------- */
.button.glossy:after,
.button.glass:after {
content: "";
position: absolute;
width: 90%;
height: 60%;
top: 0;
left: 5%;
-webkit-border-radius: 0.5em 0.5em 1em 1em / 0.5em 0.5em 2em 2em;
-moz-border-radius: 0.5em 0.5em 1em 1em / 0.5em 0.5em 2em 2em;
border-radius: 0.5em 0.5em 1em 1em / 0.5em 0.5em 2em 2em;
background-image: -webkit-gradient(
linear,
0% 0,
100% 0,
from(rgba(255, 255, 255, 0.55)),
to(rgba(255, 255, 255, 0.5)),
color-stop(0.5, rgba(255, 255, 255, 0)),
color-stop(0.8, rgba(255, 255, 255, 0))
);
background-image: -moz-linear-gradient(
left,
rgba(255, 255, 255, 0.55),
rgba(255, 255, 255, 0) 50%,
rgba(255, 255, 255, 0) 80%,
rgba(255, 255, 255, 0.5)
);
background-image: gradient(
linear,
0% 0,
100% 0,
from(rgba(255, 255, 255, 0.55)),
to(rgba(255, 255, 255, 0.5)),
color-stop(0.5, rgba(255, 255, 255, 0)),
color-stop(0.8, rgba(255, 255, 255, 0))
);
}
.button.glossy:active:after,
.button.glass:active:after,
.button.disabled:after,
.button[disabled]:after {
opacity: 0.6;
}
.button.icon.glossy:after,
.button.icon.glass:after {
height: 75%;
}
/* -------------- Glass + Transparent -------------- */
.button.glass {
text-shadow: rgba(255, 255, 255, 0.5) 0 -1px 0,
rgba(0, 0, 0, 0.18) 0 0.18em 0.15em;
}
.button.glass:active {
text-shadow: rgba(255, 255, 255, 0.3) 0 1px 0,
rgba(0, 0, 0, 0.15) 0 0.18em 0.15em;
}
/* -------------- Shapes -------------- */
/* round */
.round,
.round.glossy:after,
.round.glass:after {
border-top: none;
-webkit-border-radius: 1em;
-moz-border-radius: 1em;
border-radius: 1em;
}
/* oval */
.oval {
border-top: none;
padding-left: 0.8em;
padding-right: 0.8em;
-webkit-border-radius: 5em / 2em;
-moz-border-radius: 5em / 2em;
border-radius: 5em / 2em;
}
.oval.glossy:after,
.oval.glass:after {
top: 5%;
-webkit-border-radius: 5em / 2em 2em 1em 1em;
-moz-border-radius: 5em / 2em 2em 1em 1em;
border-radius: 5em / 2em 2em 1em 1em;
}
.oval.icon {
padding-left: 0.8em;
padding-right: 0.8em;
-webkit-border-radius: 1.5em / 1em;
-moz-border-radius: 1.5em / 1em;
border-radius: 1.5em / 1em;
}
.oval.icon.glossy:after,
.oval.icon.glass:after {
-webkit-border-radius: 1.5em / 1em;
-moz-border-radius: 1.5em / 1em;
border-radius: 1.5em / 1em;
}
/* brackets */
.brackets,
.brackets.glossy:after,
.brackets.glass:after {
border-top: none;
-webkit-border-radius: 0.5em / 1em;
-moz-border-radius: 0.5em / 1em;
border-radius: 0.5em / 1em;
}
/* skew */
.skew {
border-top: none;
padding-right: 1.2em;
padding-left: 0.8em;
-webkit-border-radius: 5em 1em / 5em 1em;
-moz-border-radius: 5em 1em / 5em 1em;
border-radius: 5em 1em / 5em 1em;
}
.skew.glossy:after,
.skew.glass:after {
left: 10%;
-webkit-border-radius: 7em 1em / 5em 1em;
-moz-border-radius: 7em 1em / 5em 1em;
border-radius: 7em 1em / 5em 1em;
}
.skew.icon {
padding-right: 0.9em;
padding-left: 0.8em;
}
/* back */
.back,
.back.glossy:after,
.back.glass:after {
border-top-color: rgba(255, 255, 255, 0.5);
-webkit-border-radius: 1.6em 1.6em 1em 1em / 4em 4em 1em 1em;
-moz-border-radius: 1.6em 1.6em 1em 1em / 4em 4em 1em 1em;
border-radius: 1.6em 1.6em 1em 1em / 4em 4em 1em 1em;
}
.back.glossy:after,
.back.glass:after {
left: 6%;
width: 88%;
}
/* knife */
.knife {
padding-left: 1.5em;
-webkit-border-radius: 0.2em 0.5em 0.5em 8em / 0.2em 0.5em 0.5em 5em;
-moz-border-radius: 0.2em 0.5em 0.5em 8em / 0.2em 0.5em 0.5em 5em;
border-radius: 0.2em 0.5em 0.5em 8em / 0.2em 0.5em 0.5em 5em;
}
.knife.glossy:after,
.knife.glass:after {
left: 3%;
width: 97%;
-webkit-border-radius: 0.1em 0.5em 0.5em 8em / 0.1em 0.5em 0.5em 2em;
-moz-border-radius: 0.1em 0.5em 0.5em 8em / 0.1em 0.5em 0.5em 2em;
border-radius: 0.1em 0.5em 0.5em 8em / 0.1em 0.5em 0.5em 2em;
}
.knife.glossy.icon:after,
.knife.glass.icon:after {
left: 5%;
width: 95%;
-webkit-border-radius: 0.5em 0.5em 1em 6em / 0.5em 0.5em 1em 4em;
-moz-border-radius: 0.5em 0.5em 1em 6em / 0.5em 0.5em 1em 4em;
border-radius: 0.5em 0.5em 1em 6em / 0.5em 0.5em 1em 4em;
}
/* shield */
.shield,
.shield.glossy:after,
.shield.glass:after {
-webkit-border-radius: 0.4em 0.4em 2em 2em / 0.4em 0.4em 3em 3em;
-moz-border-radius: 0.4em 0.4em 2em 2em / 0.4em 0.4em 3em 3em;
border-radius: 0.4em 0.4em 2em 2em / 0.4em 0.4em 3em 3em;
}
.shield {
padding-left: 0.8em;
padding-right: 0.8em;
}
.shield.icon {
padding-left: 0.6em;
padding-right: 0.6em;
}
/* drop */
.drop {
border-top: none;
-webkit-border-radius: 2em 5em 2em 0.6em / 2em 4em 2em 0.6em;
-moz-border-radius: 2em 5em 2em 0.6em / 2em 4em 2em 0.6em;
border-radius: 2em 5em 2em 0.6em / 2em 4em 2em 0.6em;
}
.drop.glossy:after,
.drop.glass:after {
left: 4%;
-webkit-border-radius: 2em 6em 2em 1em / 2em 4em 2em 2em;
-moz-border-radius: 2em 6em 2em 1em / 2em 4em 2em 2em;
border-radius: 2em 6em 2em 1em / 2em 4em 2em 2em;
}
.drop.icon {
padding-right: 0.6em;
}
/* morph */
.morph {
border-top: none;
-webkit-border-radius: 5em / 2em;
-moz-border-radius: 5em / 2em;
border-radius: 5em / 2em;
-webkit-transition: -webkit-border-radius 0.3s ease-in-out;
-moz-transition: -moz-border-radius 0.3s ease-in-out;
transition: -moz-border-radius 0.3s ease-in-out;
}
.morph:hover {
-webkit-border-radius: 0.4em 0.4em 2em 2em / 0.4em 0.4em 3em 3em;
-moz-border-radius: 0.4em 0.4em 2em 2em / 0.4em 0.4em 3em 3em;
border-radius: 0.4em 0.4em 2em 2em / 0.4em 0.4em 3em 3em;
}
.morph:active {
-webkit-border-radius: 0.3em;
-moz-border-radius: 0.3em;
border-radius: 0.3em;
}
.morph:after {
display: none;
}
/* Damn, this became a fat baby.. */ | 0.311427 | 0.114814 |
@import '../node_modules/golden-layout/src/css/goldenlayout-base.css';
@import '../node_modules/golden-layout/src/css/goldenlayout-light-theme.css';
@import '../node_modules/react-bootstrap-daterangepicker/css/daterangepicker.css';
body {
position: relative;
overflow-y: hidden;
font-family: Arial, Helvetica, Helvetica Neue;
font-size: 12px !important;
}
.navbar {
border-radius: 0;
}
.control-label {
color: #757575;
font-size: 11px;
font-weight: 500;
margin-bottom: -2px;
}
/* optimize spacing of vertical radios */
.control-label ~ .radio {
margin-top: 7px;
}
.radio + .radio {
margin-top: -8px;
margin-bottom: 0;
}
/* make sure radio label is horizontally even with input */
.radio > label > input[type=radio] {
margin-top: 2px;
}
.form-control {
font-size: 12px;
}
.form-group {
margin-bottom: 2px;
}
.verticalRadioDiv .radio {
margin-top: 0;
margin-bottom: -2px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
/* display: none; <- Crashes Chrome on hover */
-webkit-appearance: none;
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
textarea {
resize: vertical;
overflow-y: scroll;
}
/*
* move the drag handler to the right
* so the vertical scroll handler
* can be accessed
*/
.lm_splitter.lm_horizontal .lm_drag_handle {
left: 0;
width: 15px;
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
::-webkit-scrollbar-thumb {
border-radius: 2px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
::-webkit-scrollbar-corner {
background: rgba(0,0,0,0);
}
.lm_content {
background-color: white;
overflow-y: auto;
height: calc(100vh - 52px) !important;
}
.lm_content::-webkit-scrollbar {
display: none;
}
/**
* need to apply this here because
* this div (button) is built by bootstrap
*/
#field-filter-dropdown {
border-radius: 0;
}
#last-nav-dropdown {
font-size: 27px;
}
@media print {
/**
* make sure, html and body
* have no margins, no padding,
* grow and overflow as needed
*/
html,
body {
margin: 0 !important;
padding: 0 !important;
height: auto !important;
overflow: visible !important;
}
}
.geschaeftPdf div {
background-color: white !important;
}
.geschaeftPdf input,
.geschaeftPdf textarea,
.geschaeftPdf select {
-webkit-appearance: none;
border: none;
border-bottom: 1px solid #CCC;
border-radius: 0;
box-shadow: none;
padding: 0;
overflow-y: visible;
}
.geschaeftPdf .form-control {
height: auto;
}
.geschaeftPdf .input-group-addon {
display: none;
} | app/app.global.css | @import '../node_modules/golden-layout/src/css/goldenlayout-base.css';
@import '../node_modules/golden-layout/src/css/goldenlayout-light-theme.css';
@import '../node_modules/react-bootstrap-daterangepicker/css/daterangepicker.css';
body {
position: relative;
overflow-y: hidden;
font-family: Arial, Helvetica, Helvetica Neue;
font-size: 12px !important;
}
.navbar {
border-radius: 0;
}
.control-label {
color: #757575;
font-size: 11px;
font-weight: 500;
margin-bottom: -2px;
}
/* optimize spacing of vertical radios */
.control-label ~ .radio {
margin-top: 7px;
}
.radio + .radio {
margin-top: -8px;
margin-bottom: 0;
}
/* make sure radio label is horizontally even with input */
.radio > label > input[type=radio] {
margin-top: 2px;
}
.form-control {
font-size: 12px;
}
.form-group {
margin-bottom: 2px;
}
.verticalRadioDiv .radio {
margin-top: 0;
margin-bottom: -2px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
/* display: none; <- Crashes Chrome on hover */
-webkit-appearance: none;
margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}
textarea {
resize: vertical;
overflow-y: scroll;
}
/*
* move the drag handler to the right
* so the vertical scroll handler
* can be accessed
*/
.lm_splitter.lm_horizontal .lm_drag_handle {
left: 0;
width: 15px;
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
::-webkit-scrollbar-thumb {
border-radius: 2px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
}
::-webkit-scrollbar-corner {
background: rgba(0,0,0,0);
}
.lm_content {
background-color: white;
overflow-y: auto;
height: calc(100vh - 52px) !important;
}
.lm_content::-webkit-scrollbar {
display: none;
}
/**
* need to apply this here because
* this div (button) is built by bootstrap
*/
#field-filter-dropdown {
border-radius: 0;
}
#last-nav-dropdown {
font-size: 27px;
}
@media print {
/**
* make sure, html and body
* have no margins, no padding,
* grow and overflow as needed
*/
html,
body {
margin: 0 !important;
padding: 0 !important;
height: auto !important;
overflow: visible !important;
}
}
.geschaeftPdf div {
background-color: white !important;
}
.geschaeftPdf input,
.geschaeftPdf textarea,
.geschaeftPdf select {
-webkit-appearance: none;
border: none;
border-bottom: 1px solid #CCC;
border-radius: 0;
box-shadow: none;
padding: 0;
overflow-y: visible;
}
.geschaeftPdf .form-control {
height: auto;
}
.geschaeftPdf .input-group-addon {
display: none;
} | 0.331769 | 0.045649 |
body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Montserrat', sans-serif;
}
.w3-row-padding img {
margin-bottom: 12px;
}
.bgimg {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-image: url('../images/BgAdded.png');
min-height: 100%;
}
a {
text-decoration: none;
}
p {
font-size: 16px;
}
/* Title */
.title {
height: 50px;
overflow: hidden;
margin-bottom: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
.title-wrapper {
height: 100%;
animation: move 10s ease-in-out infinite alternate;
}
@keyframes move {
20% {
transform: translateY(-50px);
}
40% {
transform: translateY(-100px);
}
60% {
transform: translateY(-150px);
}
80% {
transform: translateY(-200px);
}
100% {
transform: translateY(-250px);
}
}
.item {
height: 50px;
font-size: 25px;
font-weight: bold;
}
/*End Title*/
/*Card Flipping*/
.a-r-qualification {
width: 100%;
display: flex;
margin: 10px 0;
}
.a-r-card {
width: 200px;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
background-color: transparent;
margin: 5px;
border-radius: 20px;
}
.card-flip {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.6s;
transform-style: preserve-3d;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
border-radius: 20px;
}
.a-r-card:hover .card-flip {
transform: rotateY(180deg);
}
.flip-front,
.flip-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
border-radius: 20px;
}
.flip-front {
background-color: #ffffff;
color: black;
}
.flip-back {
background-color: #2980b9;
color: white;
transform: rotateY(180deg);
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.a-r-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.flip-topic {
font-size: 16px;
font-weight: 600;
}
.flip-sub-topic {
font-size: 12px;
font-weight: 600;
}
.flip-desc {
font-size: 10px;
font-weight: 600;
}
/*Card Flipping*/
/* Begins skill bars */
.a-r-skills {
padding: 5px 10px 5px 10px;
}
.container {
width: 100%;
background-color: #ddd;
border-radius: 25px;
overflow: hidden;
}
.skills {
text-align: right;
color: white;
border-radius: 25px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.37);
}
.front {
width: 95%;
background-color: #940d19;
animation: front 3s ease;
}
@keyframes front {
0% {
width: 0;
}
100% {
width: 95%;
}
}
.back {
width: 90%;
background-color: #2196f3;
animation: back 3s ease;
}
@keyframes back {
0% {
width: 0;
}
100% {
width: 90%;
}
}
.ps {
width: 70%;
background-color: #c99914;
animation: ps 3s ease;
}
@keyframes ps {
0% {
width: 0;
}
100% {
width: 70%;
}
}
/* End of skill bars css */
/* Browser */
.list {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.p {
width: 100%;
height: 40vh;
margin: 20px 10px;
border: 2px solid rgb(192, 192, 192);
border-radius: 10px 10px 0px 0px;
overflow: hidden;
}
.p-browser {
height: 20px;
background-color: rgb(192, 192, 192);
display: flex;
align-items: center;
position: sticky;
z-index: 2;
}
.p-circle {
width: 6px;
height: 6px;
border-radius: 50%;
margin: 3px;
background-color: white;
}
.p-img {
width: 100% !important;
transition: all 10s ease;
}
.p:hover .p-img {
transform: translateY(-100%);
}
@media screen and (max-width: 480px) {
.a-r-qualification {
display: none;
}
.main-topic {
font-size: 55px;
}
} | src/css/style.css | body,
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Montserrat', sans-serif;
}
.w3-row-padding img {
margin-bottom: 12px;
}
.bgimg {
background-position: center;
background-repeat: no-repeat;
background-size: cover;
background-image: url('../images/BgAdded.png');
min-height: 100%;
}
a {
text-decoration: none;
}
p {
font-size: 16px;
}
/* Title */
.title {
height: 50px;
overflow: hidden;
margin-bottom: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
.title-wrapper {
height: 100%;
animation: move 10s ease-in-out infinite alternate;
}
@keyframes move {
20% {
transform: translateY(-50px);
}
40% {
transform: translateY(-100px);
}
60% {
transform: translateY(-150px);
}
80% {
transform: translateY(-200px);
}
100% {
transform: translateY(-250px);
}
}
.item {
height: 50px;
font-size: 25px;
font-weight: bold;
}
/*End Title*/
/*Card Flipping*/
.a-r-qualification {
width: 100%;
display: flex;
margin: 10px 0;
}
.a-r-card {
width: 200px;
height: 200px;
display: flex;
align-items: center;
justify-content: center;
background-color: transparent;
margin: 5px;
border-radius: 20px;
}
.card-flip {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.6s;
transform-style: preserve-3d;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
border-radius: 20px;
}
.a-r-card:hover .card-flip {
transform: rotateY(180deg);
}
.flip-front,
.flip-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
border-radius: 20px;
}
.flip-front {
background-color: #ffffff;
color: black;
}
.flip-back {
background-color: #2980b9;
color: white;
transform: rotateY(180deg);
overflow: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.a-r-img {
width: 100%;
height: 100%;
object-fit: cover;
}
.flip-topic {
font-size: 16px;
font-weight: 600;
}
.flip-sub-topic {
font-size: 12px;
font-weight: 600;
}
.flip-desc {
font-size: 10px;
font-weight: 600;
}
/*Card Flipping*/
/* Begins skill bars */
.a-r-skills {
padding: 5px 10px 5px 10px;
}
.container {
width: 100%;
background-color: #ddd;
border-radius: 25px;
overflow: hidden;
}
.skills {
text-align: right;
color: white;
border-radius: 25px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.37);
}
.front {
width: 95%;
background-color: #940d19;
animation: front 3s ease;
}
@keyframes front {
0% {
width: 0;
}
100% {
width: 95%;
}
}
.back {
width: 90%;
background-color: #2196f3;
animation: back 3s ease;
}
@keyframes back {
0% {
width: 0;
}
100% {
width: 90%;
}
}
.ps {
width: 70%;
background-color: #c99914;
animation: ps 3s ease;
}
@keyframes ps {
0% {
width: 0;
}
100% {
width: 70%;
}
}
/* End of skill bars css */
/* Browser */
.list {
width: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.p {
width: 100%;
height: 40vh;
margin: 20px 10px;
border: 2px solid rgb(192, 192, 192);
border-radius: 10px 10px 0px 0px;
overflow: hidden;
}
.p-browser {
height: 20px;
background-color: rgb(192, 192, 192);
display: flex;
align-items: center;
position: sticky;
z-index: 2;
}
.p-circle {
width: 6px;
height: 6px;
border-radius: 50%;
margin: 3px;
background-color: white;
}
.p-img {
width: 100% !important;
transition: all 10s ease;
}
.p:hover .p-img {
transform: translateY(-100%);
}
@media screen and (max-width: 480px) {
.a-r-qualification {
display: none;
}
.main-topic {
font-size: 55px;
}
} | 0.3512 | 0.062417 |
html {
height: 100%;
}
body {
padding: 0;
margin: 0;
background: #FFF;
width: 100%;
height: 100%;
/* min-width: 1180px; */
}
a { text-decoration: none; }
.api_description {
word-break: normal;
}
.textarea {
flex: 1;
padding-left: 60px;
display: flex;
justify-content: space-between;
color: #FFF;
word-wrap:break-word;
word-break:break-all;
}
/* ---- FOR JSON FORMAT */
pre {
background-color: #FFF;
outline: 1px solid #ccc;
padding: 15px;
margin-left: 60px;
margin-top: 0px;
/* width: 125%; */
/* width: 350px; */
height: 500px;
overflow-y: auto;
white-space: pre-wrap;
word-wrap: break-word;
}
.string { color: green; }
.number {color: darkorange; }
.boolean { color: blue; }
.null { color: magenta; }
.key { color: red; font-weight: bold; }
/* -------------- */
.custom_textarea {
font-size: 15px;
}
.input {
width: 160px;
height: 25px;
font-size: 15px;
margin-left: 10px;
}
.input_node_url {
width: 380px;
height: 25px;
font-size: 15px;
margin-left: 10px;
}
.input_conn_node {
width: 260px;
height: 25px;
font-size: 15px;
margin-left: 10px;
}
.input_color {
color: rgb(126, 109, 109);
background: rgb(245, 239, 239);
border-radius: 3px;
border: 1px solid;
}
.disabled {
cursor: not-allowed;
}
.button {
background-color: white;
border: 1px solid #1e222a;
border-radius: 4px;
color: #1e222a;
text-align: center;
transition-duration: 0.4s;
}
.button_small {
padding: 6px 15px;
font-size: 15px;
margin-left: 15px;
border-radius: 4px;
}
.button_big {
padding: 8px 25px;
font-size: 16px;
margin-left: 30px;
}
.button_clear {
padding: 7px 30px;
font-size: 15px;
margin-bottom: 20px;
margin-left: 60px;
}
.button_log {
margin-left: 30px;
}
.button_clear_history {
padding: 6px 25px;
font-size: 15px;
margin-bottom: 10px;
}
.button_clear_cq {
margin-left: 360px;
}
.button_request {
padding: 8px 35px;
font-size: 16px;
margin-top: 5px;
margin-bottom: 15px;
}
.button:hover {
/* Green */
background-color: #4CAF50;
border: 1px solid #dde0e7;
color: white;
cursor: pointer;
}
.url {
color: #26272e;
height: 25px;
line-height: 25px;
font-size: 16px;
font-weight: 500;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
cursor: pointer;
}
.url:hover {
background-color: rgb(65, 165, 247);
/* border: 1px solid #e9ebf0; */
color: white;
}
.url_blue {
color: #4f59a0;
}
.url_conn_history {
color: #4f59a0;
font-size: 15px;
margin-left: -10px;
}
.url_red {
color: #6799b1;
border: 1px solid #6799b1;
margin-right: 15px;
}
.url_red:hover {
background-color: #8b3402;
color: white;
cursor: pointer;
}
.top{
height: 60px;
background: #1E222A;
width: 100%;
display: flex;
}
.topLeft{
color: #FFF;
height: 60px;
line-height: 60px;
font-size: 22px;
font-weight: 600;
width: 220px;
/* width: 15%; */
padding-left: 20px;
/* padding-right: 20px; */
/* margin-right: 20px; */
}
.topRight{
flex: 1;
height: 60px;
padding-left: 20px;
padding-right: 30px;
display: flex;
align-items: center;
justify-content: space-between;
color: #FFF;
font-size: 16px;
}
.topData{
display: flex;
}
.topDataKey{
padding-left: 30px;
}
.topDataVal{
padding-left: 10px;
font-weight: 600;
}
.main{
background: #f5f6f8;
padding: 30px 30px 30px 20px;
display: flex;
/* width: 100%; */
/* height: 100%; */
}
.leftSide{
background: #f5f6f8;
margin-top: -20px;
margin-right: 30px;
padding-left: 30px;
padding-right: 10px;
/* width: 180px; */
width: 13%;
height: 900px;
overflow: auto;
}
.request_div {
/* width: 700px; */
width: 52%;
/* margin-left: 0px; */
}
.custom_request_div{
width: 48%;
/* width: 650px; */
/* padding-left: 30px; */
/* padding-right: 50px; */
margin-left: 50px;
}
.obd_messages_div {
width: 30%;
}
.copyright {
background-color:#1E222A;
color: #eeeff5;
line-height: 50px;
font-size: 20px;
font-weight: 500;
text-align:center;
/* height: 60px; */
/* margin-top: 50px; */
}
.bigText {
color: #26272e;
line-height: 30px;
font-size: 16px;
font-weight: 500;
}
.funcText {
color: #26272e;
line-height: 25px;
font-size: 18px;
font-weight: 600;
padding-left: 15px;
padding-right: 15px;
}
.responseText {
color: #26272e;
line-height: 25px;
font-weight: 500;
padding-left: 15px;
}
.menuTitle{
height: 30px;
line-height: 30px;
color: #9195a5;
cursor: default;
padding-top: 20px;
padding-bottom: 10px;
}
.panelItem{
background: #fff;
-webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);
box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);
border-radius: 6px;
padding: 5px 30px;
padding-bottom: 20px;
margin-bottom: 20px;
color: #9195a5;
word-wrap:break-word;
word-break:break-all;
}
.panelTitle{
color: #45474e;
font-weight: 600;
margin-top: -10px;
}
.str_invoice {
margin-left:30px;
margin-right:30px;
margin-top:30px;
}
.qrcode {
height:200px;
margin-left:200px;
margin-top:50px;
}
.invoice_payment {
color: #26272e;
font-size: 18px;
font-weight: 600;
padding-right: 25px;
}
.tooltip_area {
height: 50px;
background: #dae0a3;
width: 100%;
display: flex;
align-items: center;
}
.header {
width: 100%;
position: relative;
z-index: 999;
}
.header-active{
position: fixed;
top: 0;
}
.resp_area {
background: #dae0a3;
padding: 20px;
/* display: flex; */
/* align-items: center; */
box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);
border-radius: 6px;
word-wrap:break-word;
word-break:break-all;
} | css/main.css | html {
height: 100%;
}
body {
padding: 0;
margin: 0;
background: #FFF;
width: 100%;
height: 100%;
/* min-width: 1180px; */
}
a { text-decoration: none; }
.api_description {
word-break: normal;
}
.textarea {
flex: 1;
padding-left: 60px;
display: flex;
justify-content: space-between;
color: #FFF;
word-wrap:break-word;
word-break:break-all;
}
/* ---- FOR JSON FORMAT */
pre {
background-color: #FFF;
outline: 1px solid #ccc;
padding: 15px;
margin-left: 60px;
margin-top: 0px;
/* width: 125%; */
/* width: 350px; */
height: 500px;
overflow-y: auto;
white-space: pre-wrap;
word-wrap: break-word;
}
.string { color: green; }
.number {color: darkorange; }
.boolean { color: blue; }
.null { color: magenta; }
.key { color: red; font-weight: bold; }
/* -------------- */
.custom_textarea {
font-size: 15px;
}
.input {
width: 160px;
height: 25px;
font-size: 15px;
margin-left: 10px;
}
.input_node_url {
width: 380px;
height: 25px;
font-size: 15px;
margin-left: 10px;
}
.input_conn_node {
width: 260px;
height: 25px;
font-size: 15px;
margin-left: 10px;
}
.input_color {
color: rgb(126, 109, 109);
background: rgb(245, 239, 239);
border-radius: 3px;
border: 1px solid;
}
.disabled {
cursor: not-allowed;
}
.button {
background-color: white;
border: 1px solid #1e222a;
border-radius: 4px;
color: #1e222a;
text-align: center;
transition-duration: 0.4s;
}
.button_small {
padding: 6px 15px;
font-size: 15px;
margin-left: 15px;
border-radius: 4px;
}
.button_big {
padding: 8px 25px;
font-size: 16px;
margin-left: 30px;
}
.button_clear {
padding: 7px 30px;
font-size: 15px;
margin-bottom: 20px;
margin-left: 60px;
}
.button_log {
margin-left: 30px;
}
.button_clear_history {
padding: 6px 25px;
font-size: 15px;
margin-bottom: 10px;
}
.button_clear_cq {
margin-left: 360px;
}
.button_request {
padding: 8px 35px;
font-size: 16px;
margin-top: 5px;
margin-bottom: 15px;
}
.button:hover {
/* Green */
background-color: #4CAF50;
border: 1px solid #dde0e7;
color: white;
cursor: pointer;
}
.url {
color: #26272e;
height: 25px;
line-height: 25px;
font-size: 16px;
font-weight: 500;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
cursor: pointer;
}
.url:hover {
background-color: rgb(65, 165, 247);
/* border: 1px solid #e9ebf0; */
color: white;
}
.url_blue {
color: #4f59a0;
}
.url_conn_history {
color: #4f59a0;
font-size: 15px;
margin-left: -10px;
}
.url_red {
color: #6799b1;
border: 1px solid #6799b1;
margin-right: 15px;
}
.url_red:hover {
background-color: #8b3402;
color: white;
cursor: pointer;
}
.top{
height: 60px;
background: #1E222A;
width: 100%;
display: flex;
}
.topLeft{
color: #FFF;
height: 60px;
line-height: 60px;
font-size: 22px;
font-weight: 600;
width: 220px;
/* width: 15%; */
padding-left: 20px;
/* padding-right: 20px; */
/* margin-right: 20px; */
}
.topRight{
flex: 1;
height: 60px;
padding-left: 20px;
padding-right: 30px;
display: flex;
align-items: center;
justify-content: space-between;
color: #FFF;
font-size: 16px;
}
.topData{
display: flex;
}
.topDataKey{
padding-left: 30px;
}
.topDataVal{
padding-left: 10px;
font-weight: 600;
}
.main{
background: #f5f6f8;
padding: 30px 30px 30px 20px;
display: flex;
/* width: 100%; */
/* height: 100%; */
}
.leftSide{
background: #f5f6f8;
margin-top: -20px;
margin-right: 30px;
padding-left: 30px;
padding-right: 10px;
/* width: 180px; */
width: 13%;
height: 900px;
overflow: auto;
}
.request_div {
/* width: 700px; */
width: 52%;
/* margin-left: 0px; */
}
.custom_request_div{
width: 48%;
/* width: 650px; */
/* padding-left: 30px; */
/* padding-right: 50px; */
margin-left: 50px;
}
.obd_messages_div {
width: 30%;
}
.copyright {
background-color:#1E222A;
color: #eeeff5;
line-height: 50px;
font-size: 20px;
font-weight: 500;
text-align:center;
/* height: 60px; */
/* margin-top: 50px; */
}
.bigText {
color: #26272e;
line-height: 30px;
font-size: 16px;
font-weight: 500;
}
.funcText {
color: #26272e;
line-height: 25px;
font-size: 18px;
font-weight: 600;
padding-left: 15px;
padding-right: 15px;
}
.responseText {
color: #26272e;
line-height: 25px;
font-weight: 500;
padding-left: 15px;
}
.menuTitle{
height: 30px;
line-height: 30px;
color: #9195a5;
cursor: default;
padding-top: 20px;
padding-bottom: 10px;
}
.panelItem{
background: #fff;
-webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);
box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);
border-radius: 6px;
padding: 5px 30px;
padding-bottom: 20px;
margin-bottom: 20px;
color: #9195a5;
word-wrap:break-word;
word-break:break-all;
}
.panelTitle{
color: #45474e;
font-weight: 600;
margin-top: -10px;
}
.str_invoice {
margin-left:30px;
margin-right:30px;
margin-top:30px;
}
.qrcode {
height:200px;
margin-left:200px;
margin-top:50px;
}
.invoice_payment {
color: #26272e;
font-size: 18px;
font-weight: 600;
padding-right: 25px;
}
.tooltip_area {
height: 50px;
background: #dae0a3;
width: 100%;
display: flex;
align-items: center;
}
.header {
width: 100%;
position: relative;
z-index: 999;
}
.header-active{
position: fixed;
top: 0;
}
.resp_area {
background: #dae0a3;
padding: 20px;
/* display: flex; */
/* align-items: center; */
box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.05);
border-radius: 6px;
word-wrap:break-word;
word-break:break-all;
} | 0.47098 | 0.061312 |
html, body, #app, #entryPage, .container{
height: 100%;
}
body{
font-family: mono;
max-width: 26em;
margin: auto;
}
#topbar, #settingsBar{
display: flex;
justify-content: space-between;
font-size: 150%;
align-items: baseline;
}
#topbar a, #settingsBar a, .button{
background-color: #ddd;
color: black;
padding:0.3em;
width: 30%;
text-align: center;
margin:0.5em 0;
text-decoration: none;
border-radius: 2em;
}
#entryPage, #settings, .container{
padding:0 1em;
}
#topbar{
position: sticky;
}
.button{
border:none;
padding:0.5em;
font-size: 110%;
width: 40%;
}
#menu{
display: flex;
flex-direction: column;
align-items: center;
}
textarea{
width: 100%;
height:80%;
overflow: scroll;
font-size: 120%;
border: none;
padding:0;
}
textarea.mini {
height:20em;
overflow: scroll;
}
#menu a{
padding: 10px 5px;
margin: 0.5em;
width: 60%;
font-size: 180%;
background-color: #ddd;
color: black;
text-align: center;
text-decoration: none;
border-radius: 1em;
}
#date, #search span{
font-weight: bold;
font-size: smaller;
text-align: left;
}
#searchbar{
display: flex;
position: sticky;
top: 0;
background: white;
padding: 0.5em 1em;
}
.middle{
position: sticky;
top:40%;
}
#searchbar input{
width: 70%;
align-items: center;
height: min-content;
margin: 0.5em 0.5em 0.5em 0;
padding: 0.5em;
font-size: 110%;
}
#searchresults{
white-space: pre-line;
padding:0 1em;
}
#search span{
font-size: 120%;
text-decoration: underline;
}
.columns{
display: flex;
}
.half{
width: 50%;
}
.half .button{
width: 80%;
margin: auto;
display: block;
}
/* Dark Mode */
.dark, .dark textarea, .dark #searchbar{
background-color: black;
color: white;
}
.dark #menu a, .dark #settingsBar a, .dark #topbar a, .dark .button{
background-color: #333;
color: white;
} | style/style.css | html, body, #app, #entryPage, .container{
height: 100%;
}
body{
font-family: mono;
max-width: 26em;
margin: auto;
}
#topbar, #settingsBar{
display: flex;
justify-content: space-between;
font-size: 150%;
align-items: baseline;
}
#topbar a, #settingsBar a, .button{
background-color: #ddd;
color: black;
padding:0.3em;
width: 30%;
text-align: center;
margin:0.5em 0;
text-decoration: none;
border-radius: 2em;
}
#entryPage, #settings, .container{
padding:0 1em;
}
#topbar{
position: sticky;
}
.button{
border:none;
padding:0.5em;
font-size: 110%;
width: 40%;
}
#menu{
display: flex;
flex-direction: column;
align-items: center;
}
textarea{
width: 100%;
height:80%;
overflow: scroll;
font-size: 120%;
border: none;
padding:0;
}
textarea.mini {
height:20em;
overflow: scroll;
}
#menu a{
padding: 10px 5px;
margin: 0.5em;
width: 60%;
font-size: 180%;
background-color: #ddd;
color: black;
text-align: center;
text-decoration: none;
border-radius: 1em;
}
#date, #search span{
font-weight: bold;
font-size: smaller;
text-align: left;
}
#searchbar{
display: flex;
position: sticky;
top: 0;
background: white;
padding: 0.5em 1em;
}
.middle{
position: sticky;
top:40%;
}
#searchbar input{
width: 70%;
align-items: center;
height: min-content;
margin: 0.5em 0.5em 0.5em 0;
padding: 0.5em;
font-size: 110%;
}
#searchresults{
white-space: pre-line;
padding:0 1em;
}
#search span{
font-size: 120%;
text-decoration: underline;
}
.columns{
display: flex;
}
.half{
width: 50%;
}
.half .button{
width: 80%;
margin: auto;
display: block;
}
/* Dark Mode */
.dark, .dark textarea, .dark #searchbar{
background-color: black;
color: white;
}
.dark #menu a, .dark #settingsBar a, .dark #topbar a, .dark .button{
background-color: #333;
color: white;
} | 0.359589 | 0.061904 |
.typography p {
margin: 0 0 9px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 18px;
}
.typography p small {
font-size: 11px;
color: #999999;
}
.typography .lead {
margin-bottom: 18px;
font-size: 20px;
font-weight: 200;
line-height: 27px;
}
.typography h1, .typography h2, .typography h3, .typography h4, .typography h5, .typography h6 {
margin: 0;
font-weight: bold;
color: #333333;
text-rendering: optimizelegibility;
}
.typography h1 small, .typography h2 small, .typography h3 small, .typography h4 small, .typography h5 small, .typography h6 small {
font-weight: normal;
color: #999999;
}
.typography h1 {
font-size: 30px;
line-height: 36px;
}
.typography h1 small {
font-size: 18px;
}
.typography h2 {
font-size: 24px;
line-height: 36px;
}
.typography h2 small {
font-size: 18px;
}
.typography h3 {
line-height: 27px;
font-size: 18px;
}
.typography h3 small {
font-size: 14px;
}
.typography h4, .typography h5, .typography h6 {
line-height: 18px;
}
.typography h4 {
font-size: 14px;
}
.typography h4 small {
font-size: 12px;
}
.typography h5 {
font-size: 12px;
}
.typography h6 {
font-size: 11px;
color: #999999;
text-transform: uppercase;
}
.typography .page-header {
padding-bottom: 17px;
margin: 18px 0;
border-bottom: 1px solid #eeeeee;
}
.typography .page-header h1 {
line-height: 1;
}
.typography ul, .typography ol {
padding: 0;
margin: 0 0 9px 25px;
}
.typography ul ul,
.typography ul ol,
.typography ol ol,
.typography ol ul {
margin-bottom: 0;
}
.typography ul {
list-style: disc;
}
.typography ol {
list-style: decimal;
}
.typography li {
line-height: 18px;
}
.typography ul.unstyled {
margin-left: 0;
list-style: none;
}
.typography dl {
margin-bottom: 18px;
}
.typography dt,
.typography dd {
line-height: 18px;
}
.typography dt {
font-weight: bold;
}
.typography dd {
margin-left: 9px;
}
.typography hr {
margin: 18px 0;
border: 0;
border-top: 1px solid #e5e5e5;
border-bottom: 1px solid white;
}
.typography strong {
font-weight: bold;
}
.typography em {
font-style: italic;
}
.typography .muted {
color: #999999;
}
.typography abbr {
font-size: 90%;
text-transform: uppercase;
border-bottom: 1px dotted #ddd;
cursor: help;
}
.typography blockquote {
padding: 0 0 0 15px;
margin: 0 0 18px;
border-left: 5px solid #eeeeee;
}
.typography blockquote p {
margin-bottom: 0;
font-size: 16px;
font-weight: 300;
line-height: 22.5px;
}
.typography blockquote small {
display: block;
line-height: 18px;
color: #999999;
}
.typography blockquote small:before {
content: '\2014 \00A0';
}
.typography blockquote.pull-right {
float: right;
padding-left: 0;
padding-right: 15px;
border-left: 0;
border-right: 5px solid #eeeeee;
}
.typography blockquote.pull-right p,
.typography blockquote.pull-right small {
text-align: right;
}
.typography q:before,
.typography q:after,
.typography blockquote:before,
.typography blockquote:after {
content: "";
}
.typography address {
display: block;
margin-bottom: 18px;
line-height: 18px;
font-style: normal;
}
.typography small {
font-size: 100%;
}
.typography cite {
font-style: normal;
}
.typography table {
max-width: 100%;
border-collapse: collapse;
border-spacing: 0;
}
.typography .table {
width: 100%;
margin-bottom: 18px;
}
.typography .table th,
.typography .table td {
padding: 8px;
line-height: 18px;
text-align: left;
border-top: 1px solid #ddd;
}
.typography .table th {
font-weight: bold;
vertical-align: bottom;
}
.typography .table td {
vertical-align: top;
}
.typography .table thead:first-child tr th,
.typography .table thead:first-child tr td {
border-top: 0;
}
.typography .table tbody + tbody {
border-top: 2px solid #ddd;
}
.typography .table-condensed th,
.typography .table-condensed td {
padding: 4px 5px;
}
.typography .table-bordered {
border: 1px solid #ddd;
border-collapse: separate;
*border-collapse: collapsed;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
-khtml-border-radius: 4px;
border-radius: 4px;
}
.typography .table-bordered th + th,
.typography .table-bordered td + td,
.typography .table-bordered th + td,
.typography .table-bordered td + th {
border-left: 1px solid #ddd;
}
.typography .table-bordered thead:first-child tr:first-child th,
.typography .table-bordered tbody:first-child tr:first-child th,
.typography .table-bordered tbody:first-child tr:first-child td {
border-top: 0;
}
.typography .table-bordered thead:first-child tr:first-child th:first-child,
.typography .table-bordered tbody:first-child tr:first-child td:first-child {
-moz-border-radius: 4px 0 0 0;
-webkit-border-radius: 4px 0 0 0;
-o-border-radius: 4px 0 0 0;
-ms-border-radius: 4px 0 0 0;
-khtml-border-radius: 4px 0 0 0;
border-radius: 4px 0 0 0;
}
.typography .table-bordered thead:first-child tr:first-child th:last-child,
.typography .table-bordered tbody:first-child tr:first-child td:last-child {
-moz-border-radius: 0 4px 0 0;
-webkit-border-radius: 0 4px 0 0;
-o-border-radius: 0 4px 0 0;
-ms-border-radius: 0 4px 0 0;
-khtml-border-radius: 0 4px 0 0;
border-radius: 0 4px 0 0;
}
.typography .table-bordered thead:last-child tr:last-child th:first-child,
.typography .table-bordered tbody:last-child tr:last-child td:first-child {
-moz-border-radius: 0 0 0 4px;
-webkit-border-radius: 0 0 0 4px;
-o-border-radius: 0 0 0 4px;
-ms-border-radius: 0 0 0 4px;
-khtml-border-radius: 0 0 0 4px;
border-radius: 0 0 0 4px;
}
.typography .table-bordered thead:last-child tr:last-child th:last-child,
.typography .table-bordered tbody:last-child tr:last-child td:last-child {
-moz-border-radius: 0 0 4px 0;
-webkit-border-radius: 0 0 4px 0;
-o-border-radius: 0 0 4px 0;
-ms-border-radius: 0 0 4px 0;
-khtml-border-radius: 0 0 4px 0;
border-radius: 0 0 4px 0;
}
.typography .table-striped tbody tr:nth-child(odd) td,
.typography .table-striped tbody tr:nth-child(odd) th {
background-color: #f9f9f9;
}
/**
* Cloudy Typography
* Typography adjustments beyond Bootstrap's typography file
* These only apply to content areas with the .typography class
*/
.typography h2 {
margin-top: -7px;
line-height: 28px;
margin-bottom: 10px;
}
.typography img {
border: none;
margin: 0 0 16px 0;
}
.typography img.nomargin {
margin: 0px;
}
.typography img.right {
margin-left: 20px;
}
.typography img.left {
float: left;
margin-right: 10px;
}
.typography img.leftAlone {
float: left;
margin-right: 100%;
}
.typography img.center {
float: none;
margin-left: auto;
margin-right: auto;
display: block;
}
.typography .imgtitle {
position: relative;
top: -10px;
margin-bottom: 16px;
}
.typography .imgtitle.right {
margin-left: 20px;
}
.typography .left {
text-align: left;
}
.typography .center {
text-align: center;
}
.typography .right {
text-align: right;
}
.typography a {
color: #7f9e2c;
text-decoration: none;
}
.typography a:hover {
color: #4f621b;
text-decoration: underline;
}
.typography .well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #eee;
border: 1px solid rgba(0, 0, 0, 0.05);
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
-khtml-border-radius: 4px;
border-radius: 4px;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.typography .well blockquote {
border-color: #ddd;
border-color: rgba(0, 0, 0, 0.15);
}
.typography .pull-right {
float: right;
}
.typography .pull-left {
float: left;
}
body.mceContentBody {
min-height: 200px;
font-size: 70%;
}
body.mceContentBody a.broken {
background-color: #FF7B71;
border: 1px red solid;
} | css/editor.css | .typography p {
margin: 0 0 9px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 18px;
}
.typography p small {
font-size: 11px;
color: #999999;
}
.typography .lead {
margin-bottom: 18px;
font-size: 20px;
font-weight: 200;
line-height: 27px;
}
.typography h1, .typography h2, .typography h3, .typography h4, .typography h5, .typography h6 {
margin: 0;
font-weight: bold;
color: #333333;
text-rendering: optimizelegibility;
}
.typography h1 small, .typography h2 small, .typography h3 small, .typography h4 small, .typography h5 small, .typography h6 small {
font-weight: normal;
color: #999999;
}
.typography h1 {
font-size: 30px;
line-height: 36px;
}
.typography h1 small {
font-size: 18px;
}
.typography h2 {
font-size: 24px;
line-height: 36px;
}
.typography h2 small {
font-size: 18px;
}
.typography h3 {
line-height: 27px;
font-size: 18px;
}
.typography h3 small {
font-size: 14px;
}
.typography h4, .typography h5, .typography h6 {
line-height: 18px;
}
.typography h4 {
font-size: 14px;
}
.typography h4 small {
font-size: 12px;
}
.typography h5 {
font-size: 12px;
}
.typography h6 {
font-size: 11px;
color: #999999;
text-transform: uppercase;
}
.typography .page-header {
padding-bottom: 17px;
margin: 18px 0;
border-bottom: 1px solid #eeeeee;
}
.typography .page-header h1 {
line-height: 1;
}
.typography ul, .typography ol {
padding: 0;
margin: 0 0 9px 25px;
}
.typography ul ul,
.typography ul ol,
.typography ol ol,
.typography ol ul {
margin-bottom: 0;
}
.typography ul {
list-style: disc;
}
.typography ol {
list-style: decimal;
}
.typography li {
line-height: 18px;
}
.typography ul.unstyled {
margin-left: 0;
list-style: none;
}
.typography dl {
margin-bottom: 18px;
}
.typography dt,
.typography dd {
line-height: 18px;
}
.typography dt {
font-weight: bold;
}
.typography dd {
margin-left: 9px;
}
.typography hr {
margin: 18px 0;
border: 0;
border-top: 1px solid #e5e5e5;
border-bottom: 1px solid white;
}
.typography strong {
font-weight: bold;
}
.typography em {
font-style: italic;
}
.typography .muted {
color: #999999;
}
.typography abbr {
font-size: 90%;
text-transform: uppercase;
border-bottom: 1px dotted #ddd;
cursor: help;
}
.typography blockquote {
padding: 0 0 0 15px;
margin: 0 0 18px;
border-left: 5px solid #eeeeee;
}
.typography blockquote p {
margin-bottom: 0;
font-size: 16px;
font-weight: 300;
line-height: 22.5px;
}
.typography blockquote small {
display: block;
line-height: 18px;
color: #999999;
}
.typography blockquote small:before {
content: '\2014 \00A0';
}
.typography blockquote.pull-right {
float: right;
padding-left: 0;
padding-right: 15px;
border-left: 0;
border-right: 5px solid #eeeeee;
}
.typography blockquote.pull-right p,
.typography blockquote.pull-right small {
text-align: right;
}
.typography q:before,
.typography q:after,
.typography blockquote:before,
.typography blockquote:after {
content: "";
}
.typography address {
display: block;
margin-bottom: 18px;
line-height: 18px;
font-style: normal;
}
.typography small {
font-size: 100%;
}
.typography cite {
font-style: normal;
}
.typography table {
max-width: 100%;
border-collapse: collapse;
border-spacing: 0;
}
.typography .table {
width: 100%;
margin-bottom: 18px;
}
.typography .table th,
.typography .table td {
padding: 8px;
line-height: 18px;
text-align: left;
border-top: 1px solid #ddd;
}
.typography .table th {
font-weight: bold;
vertical-align: bottom;
}
.typography .table td {
vertical-align: top;
}
.typography .table thead:first-child tr th,
.typography .table thead:first-child tr td {
border-top: 0;
}
.typography .table tbody + tbody {
border-top: 2px solid #ddd;
}
.typography .table-condensed th,
.typography .table-condensed td {
padding: 4px 5px;
}
.typography .table-bordered {
border: 1px solid #ddd;
border-collapse: separate;
*border-collapse: collapsed;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
-khtml-border-radius: 4px;
border-radius: 4px;
}
.typography .table-bordered th + th,
.typography .table-bordered td + td,
.typography .table-bordered th + td,
.typography .table-bordered td + th {
border-left: 1px solid #ddd;
}
.typography .table-bordered thead:first-child tr:first-child th,
.typography .table-bordered tbody:first-child tr:first-child th,
.typography .table-bordered tbody:first-child tr:first-child td {
border-top: 0;
}
.typography .table-bordered thead:first-child tr:first-child th:first-child,
.typography .table-bordered tbody:first-child tr:first-child td:first-child {
-moz-border-radius: 4px 0 0 0;
-webkit-border-radius: 4px 0 0 0;
-o-border-radius: 4px 0 0 0;
-ms-border-radius: 4px 0 0 0;
-khtml-border-radius: 4px 0 0 0;
border-radius: 4px 0 0 0;
}
.typography .table-bordered thead:first-child tr:first-child th:last-child,
.typography .table-bordered tbody:first-child tr:first-child td:last-child {
-moz-border-radius: 0 4px 0 0;
-webkit-border-radius: 0 4px 0 0;
-o-border-radius: 0 4px 0 0;
-ms-border-radius: 0 4px 0 0;
-khtml-border-radius: 0 4px 0 0;
border-radius: 0 4px 0 0;
}
.typography .table-bordered thead:last-child tr:last-child th:first-child,
.typography .table-bordered tbody:last-child tr:last-child td:first-child {
-moz-border-radius: 0 0 0 4px;
-webkit-border-radius: 0 0 0 4px;
-o-border-radius: 0 0 0 4px;
-ms-border-radius: 0 0 0 4px;
-khtml-border-radius: 0 0 0 4px;
border-radius: 0 0 0 4px;
}
.typography .table-bordered thead:last-child tr:last-child th:last-child,
.typography .table-bordered tbody:last-child tr:last-child td:last-child {
-moz-border-radius: 0 0 4px 0;
-webkit-border-radius: 0 0 4px 0;
-o-border-radius: 0 0 4px 0;
-ms-border-radius: 0 0 4px 0;
-khtml-border-radius: 0 0 4px 0;
border-radius: 0 0 4px 0;
}
.typography .table-striped tbody tr:nth-child(odd) td,
.typography .table-striped tbody tr:nth-child(odd) th {
background-color: #f9f9f9;
}
/**
* Cloudy Typography
* Typography adjustments beyond Bootstrap's typography file
* These only apply to content areas with the .typography class
*/
.typography h2 {
margin-top: -7px;
line-height: 28px;
margin-bottom: 10px;
}
.typography img {
border: none;
margin: 0 0 16px 0;
}
.typography img.nomargin {
margin: 0px;
}
.typography img.right {
margin-left: 20px;
}
.typography img.left {
float: left;
margin-right: 10px;
}
.typography img.leftAlone {
float: left;
margin-right: 100%;
}
.typography img.center {
float: none;
margin-left: auto;
margin-right: auto;
display: block;
}
.typography .imgtitle {
position: relative;
top: -10px;
margin-bottom: 16px;
}
.typography .imgtitle.right {
margin-left: 20px;
}
.typography .left {
text-align: left;
}
.typography .center {
text-align: center;
}
.typography .right {
text-align: right;
}
.typography a {
color: #7f9e2c;
text-decoration: none;
}
.typography a:hover {
color: #4f621b;
text-decoration: underline;
}
.typography .well {
min-height: 20px;
padding: 19px;
margin-bottom: 20px;
background-color: #f5f5f5;
border: 1px solid #eee;
border: 1px solid rgba(0, 0, 0, 0.05);
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-o-border-radius: 4px;
-ms-border-radius: 4px;
-khtml-border-radius: 4px;
border-radius: 4px;
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
-o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}
.typography .well blockquote {
border-color: #ddd;
border-color: rgba(0, 0, 0, 0.15);
}
.typography .pull-right {
float: right;
}
.typography .pull-left {
float: left;
}
body.mceContentBody {
min-height: 200px;
font-size: 70%;
}
body.mceContentBody a.broken {
background-color: #FF7B71;
border: 1px red solid;
} | 0.379263 | 0.096195 |
@font-face {
font-family: "Selected Font";
src: url("/font.woff2");
font-display: swap;
}
* {
position: relative;
font-family: "Selected Font", "Helvetica", "Arial", sans-serif;
}
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#main {
z-index: 1;
width: 100%;
height: calc(100% - 60px);
position: absolute;
top: 60px;
left: 0;
background: rgb(30, 30, 50);
color: rgb(255, 255, 255);
}
#grid {
width: 100%;
display: grid;
grid-template-columns: 350px auto;
grid-template-rows: auto;
grid-gap: 10px;
}
#title,
#image,
#description,
#info,
#episodes {
opacity: 0;
transition: opacity 0.3s;
}
#title {
grid-column: 1 / -1;
grid-row: 1;
padding: 0 24px;
}
#image {
grid-column: 1;
grid-row: 2 / 4;
display: flex;
justify-content: center;
}
#image > img {
border-radius: 4px;
filter: contrast(1.1);
box-shadow: rgb(0 0 0) 4px 4px 12px;
}
#description {
grid-column: 2;
grid-row: 2;
padding: 0 24px;
}
#info {
grid-column: 2;
grid-row: 3;
}
#episodes {
grid-column: 1 / -1;
width: calc(100% - 24px);
margin: 12px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
}
.episode {
width: calc(100% - 12px);
height: 60px;
padding: 6px;
cursor: pointer;
transition: all 0.3s;
}
.status {
position: absolute;
top: 6px;
right: 12px;
font-size: 20px;
transform: scaleX(1.2);
}
.ep-title {
font-size: 18px;
}
.watched {
display: inline-block;
padding: 6px 0;
color: silver;
font-size: 14px;
}
.episode:hover,
.episode:focus {
background: rgba(255, 255, 255, 0.1);
}
#info li {
margin: 2px 0;
}
a {
color: rgb(255, 255, 255);
}
#popup {
z-index: 1000;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 300px;
height: 140px;
background: rgb(30, 30, 50);
color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px 3000px;
display: none;
opacity: 0;
transition: opacity 0.3s;
}
#popup::before {
content: "";
position: absolute;
top: calc(-50vh + 70px);
left: calc(-50vw + 150px);
width: 100vw;
height: 100vh;
}
#popup-title {
padding: 4px 8px;
font-size: 18px;
}
#popup-content {
padding: 2px 8px;
color: rgb(230, 230, 230);
}
#popup-confirm {
position: absolute;
bottom: 8px;
right: 68px;
padding: 4px 8px;
background: rgb(113, 113, 236);
text-shadow: 0 0 3px black;
cursor: pointer;
}
#popup-cancel {
position: absolute;
bottom: 8px;
right: 8px;
padding: 4px 8px;
background: rgb(60, 60, 100);
cursor: pointer;
} | page/anime/style.css | @font-face {
font-family: "Selected Font";
src: url("/font.woff2");
font-display: swap;
}
* {
position: relative;
font-family: "Selected Font", "Helvetica", "Arial", sans-serif;
}
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
#main {
z-index: 1;
width: 100%;
height: calc(100% - 60px);
position: absolute;
top: 60px;
left: 0;
background: rgb(30, 30, 50);
color: rgb(255, 255, 255);
}
#grid {
width: 100%;
display: grid;
grid-template-columns: 350px auto;
grid-template-rows: auto;
grid-gap: 10px;
}
#title,
#image,
#description,
#info,
#episodes {
opacity: 0;
transition: opacity 0.3s;
}
#title {
grid-column: 1 / -1;
grid-row: 1;
padding: 0 24px;
}
#image {
grid-column: 1;
grid-row: 2 / 4;
display: flex;
justify-content: center;
}
#image > img {
border-radius: 4px;
filter: contrast(1.1);
box-shadow: rgb(0 0 0) 4px 4px 12px;
}
#description {
grid-column: 2;
grid-row: 2;
padding: 0 24px;
}
#info {
grid-column: 2;
grid-row: 3;
}
#episodes {
grid-column: 1 / -1;
width: calc(100% - 24px);
margin: 12px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
}
.episode {
width: calc(100% - 12px);
height: 60px;
padding: 6px;
cursor: pointer;
transition: all 0.3s;
}
.status {
position: absolute;
top: 6px;
right: 12px;
font-size: 20px;
transform: scaleX(1.2);
}
.ep-title {
font-size: 18px;
}
.watched {
display: inline-block;
padding: 6px 0;
color: silver;
font-size: 14px;
}
.episode:hover,
.episode:focus {
background: rgba(255, 255, 255, 0.1);
}
#info li {
margin: 2px 0;
}
a {
color: rgb(255, 255, 255);
}
#popup {
z-index: 1000;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 300px;
height: 140px;
background: rgb(30, 30, 50);
color: rgb(255, 255, 255);
box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 0px 3000px;
display: none;
opacity: 0;
transition: opacity 0.3s;
}
#popup::before {
content: "";
position: absolute;
top: calc(-50vh + 70px);
left: calc(-50vw + 150px);
width: 100vw;
height: 100vh;
}
#popup-title {
padding: 4px 8px;
font-size: 18px;
}
#popup-content {
padding: 2px 8px;
color: rgb(230, 230, 230);
}
#popup-confirm {
position: absolute;
bottom: 8px;
right: 68px;
padding: 4px 8px;
background: rgb(113, 113, 236);
text-shadow: 0 0 3px black;
cursor: pointer;
}
#popup-cancel {
position: absolute;
bottom: 8px;
right: 8px;
padding: 4px 8px;
background: rgb(60, 60, 100);
cursor: pointer;
} | 0.35031 | 0.11742 |
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
*{margin:0;
padding:0;
box-sizing: border-box;
}
body {
font-family: 'Lato', sans-serif;
background-image: url("../img/bg.png");
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container{
width:940px;
background-color: #fff;
box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
min-height: 350px;
padding: 80px 90px;
border-radius: 10px;
display: flex;
}
.leftside ,
.rightside {
width: 50%;
}
.leftside img {
height: 300px;
width: 300px;
}
.rightside h1 {
color:#11ac6b;
font-size: 32px;
}
.rightside h2 {
color:#444;
margin: 20px auto 10px;
font-size: 25px;
}
.rightside ul {
color:#444;
font-size: 18px;
margin-top: 5px;
font-weight: 600;
list-style-type: circle;
list-style-position: inside;
}
.rightside ul li{
margin-top: 5px;
}
.rightside a {
background-color: #11ac6b;
border-radius: 100px;
color: #fff;
width: 100%;
display: inline-block;
text-align: center;
padding: 15px 0;
margin-top: 25px;
text-decoration: none;
outline: none;
}
/* question page css starts */
.box {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
min-height: 350px;
width: 640px;
padding: 50px;
}
.title {
border-bottom: 1px solid #464646;
color: #464646;
padding-bottom: 10px;
margin-bottom: 30px;
font-weight: 600;
font-size: 24px;
}
.header {
margin-bottom: 30px;
display: flex;
justify-content: space-between;
}
.scoreBox,
.timerBox{
border-radius: 100px;
padding: 10px 15px;
border: 1px solid #444;
}
.questionBox {
background-color: #594a76;
color: #fff;
border-radius: 10px;
padding: 10px 15px;
}
.optionBox {
display: grid;
grid-template-columns: 1fr 1fr;
margin: 30px 0;
grid-gap: 15px;
}
.optionBox span {
background-color: #ccc;
border-radius: 10px;
color: #444;
border: 1px solid #444;
padding: 10px 15px;
}
.footer {
display: flex;
justify-content: space-between;
}
.footer button {
background-color: #11ac6b;
border-radius: 5px;
padding: 7px 15px;
color: #fff;
border: 0;
outline: none;
font-size: 20px;
}
.resultBox {
margin-bottom: 30px;
display: grid;
grid-template-columns: 1fr 1fr;
grid-row-gap: 15px;
font-size: 20px;
}
.resultBox *:nth-child(odd) {
text-align: right;
}
.resultBox span {
font-weight: 600;
}
.buttonBox {
border-top: 1px solid #444;
text-align: center;
}
.buttonBox a {
background-color: #11ac6b;
border-radius: 50px;
border: 0;
text-decoration: none;
color: #fff;
outline: none;
padding: 7px 15px;
margin-top: 30px;
display: inline-block;
}
.optionBox span.right{
background-color: #00ab00;
border-color:#00ab00;
color: #fff;
}
.optionBox span.wrong{
background-color: #ff3b0e;
border-color:#ff3b0e;
color: #fff;
}
/* question page css ends */
/* media query starts */
@media screen and (max-width: 768px) {
.leftside {
display: none;
}
.container
.box {
width: 425px;
}
.rightside {
width: 100%;
}
.optionBox {
grid-template-columns: 1fr;
}
}
/* media query ends */ | equipo-09/20220321_PatronesHermosos_TrabajoFinal_PFMM_Quiz/css/style.css | @import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');
*{margin:0;
padding:0;
box-sizing: border-box;
}
body {
font-family: 'Lato', sans-serif;
background-image: url("../img/bg.png");
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container{
width:940px;
background-color: #fff;
box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
min-height: 350px;
padding: 80px 90px;
border-radius: 10px;
display: flex;
}
.leftside ,
.rightside {
width: 50%;
}
.leftside img {
height: 300px;
width: 300px;
}
.rightside h1 {
color:#11ac6b;
font-size: 32px;
}
.rightside h2 {
color:#444;
margin: 20px auto 10px;
font-size: 25px;
}
.rightside ul {
color:#444;
font-size: 18px;
margin-top: 5px;
font-weight: 600;
list-style-type: circle;
list-style-position: inside;
}
.rightside ul li{
margin-top: 5px;
}
.rightside a {
background-color: #11ac6b;
border-radius: 100px;
color: #fff;
width: 100%;
display: inline-block;
text-align: center;
padding: 15px 0;
margin-top: 25px;
text-decoration: none;
outline: none;
}
/* question page css starts */
.box {
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.2);
min-height: 350px;
width: 640px;
padding: 50px;
}
.title {
border-bottom: 1px solid #464646;
color: #464646;
padding-bottom: 10px;
margin-bottom: 30px;
font-weight: 600;
font-size: 24px;
}
.header {
margin-bottom: 30px;
display: flex;
justify-content: space-between;
}
.scoreBox,
.timerBox{
border-radius: 100px;
padding: 10px 15px;
border: 1px solid #444;
}
.questionBox {
background-color: #594a76;
color: #fff;
border-radius: 10px;
padding: 10px 15px;
}
.optionBox {
display: grid;
grid-template-columns: 1fr 1fr;
margin: 30px 0;
grid-gap: 15px;
}
.optionBox span {
background-color: #ccc;
border-radius: 10px;
color: #444;
border: 1px solid #444;
padding: 10px 15px;
}
.footer {
display: flex;
justify-content: space-between;
}
.footer button {
background-color: #11ac6b;
border-radius: 5px;
padding: 7px 15px;
color: #fff;
border: 0;
outline: none;
font-size: 20px;
}
.resultBox {
margin-bottom: 30px;
display: grid;
grid-template-columns: 1fr 1fr;
grid-row-gap: 15px;
font-size: 20px;
}
.resultBox *:nth-child(odd) {
text-align: right;
}
.resultBox span {
font-weight: 600;
}
.buttonBox {
border-top: 1px solid #444;
text-align: center;
}
.buttonBox a {
background-color: #11ac6b;
border-radius: 50px;
border: 0;
text-decoration: none;
color: #fff;
outline: none;
padding: 7px 15px;
margin-top: 30px;
display: inline-block;
}
.optionBox span.right{
background-color: #00ab00;
border-color:#00ab00;
color: #fff;
}
.optionBox span.wrong{
background-color: #ff3b0e;
border-color:#ff3b0e;
color: #fff;
}
/* question page css ends */
/* media query starts */
@media screen and (max-width: 768px) {
.leftside {
display: none;
}
.container
.box {
width: 425px;
}
.rightside {
width: 100%;
}
.optionBox {
grid-template-columns: 1fr;
}
}
/* media query ends */ | 0.327561 | 0.09611 |
.member * {
box-sizing: border-box;
}
.member body {
font-family: 'Noto Serif TC';
font-size: 14px;
padding: 0;
margin: 0;
}
.container2 {
height: 100%;
background-color: #e1ece0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.timeline {
width: 100%;
position: relative;
}
.timeline-nav__item {
font-family:'Noto Serif TC';
width: auto;
height: auto;
text-align: center;
opacity: 0.5;
background: transparent;
color: #6e8574;
margin: 15px 25px !important;
position: relative;
font-size: 20px;
line-height: 28px;
font-weight: 400;
outline: none;
cursor: pointer;
}
.timeline-nav__item::before {
content: "";
position: absolute;
top: 30px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
width: 10px;
height: 10px;
border-radius: 100%;
background-color: #6e8574;
transition: .2s;
}
.timeline-nav__item.slick-current {
color: #415847;
opacity: 1;
}
.timeline-nav__item.slick-current::before {
background-color: #415847;
}
.timeline-wrapper {
position: relative;
width: 100%;
}
@media (max-width: 768px) {
.timeline-wrapper {
height: 600px;
max-height: 700px;
}
.timeline .timeline-slide__content{
position: absolute;
width: 90%;
-webkit-transform: translate(-75%, 80%);
background-color: rgb(255, 255, 255);
}
.timeline-slide {
text-align:center;
height: 100%;
}
.timeline-slider {
height: 100%;
margin: 0;
}
.timeline-image .timeimage{
width: 90vw;
margin-top: 10%;
margin-left: 0px;
}
}
.timeline-slider {
height: 100%;
text-align:center;
}
.timeline .slick-list {
height: 100%;
}
@media (min-width: 1080px) {
.timeline .slick-list {
padding: 0 180px !important;
}
}
.timeline .slick-track {
height: 100%;
}
.timeline-image{
margin-top: 5%;
margin-left:5%;
margin-right:5%;
margin-bottom: 100px;
}
.timeimage{
width: 500px;
}
.timeline-slide {
position: relative;
overflow: hidden;
outline: none;
margin: 0;
z-index: 1;
height: 100%;
}
.timeline-slide:after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(190, 210, 160, 0.8);
z-index: 2;
}
.timeline-slide__content {
z-index: 5;
position: absolute;
top: 100px;
background: #ffffff;
width: 55%;
left: 73%;
-webkit-transform: translate(-60%, 50%);
padding: 40px;
opacity: 0;
transition: opacity 1s;
}
@media (min-width: 768px) and (max-width: 979px) {
.timeline-slide__content {
-webkit-transform: translate(-70%, 65%);
width: 90%;
height: 46%;
padding: 5%;
}
}
.timeline-year {
z-index: 5;
font-size: 35px;
color: #ffffff;
background: #ff9900;
padding: 15px 26px;
transition: opacity 1.2s;
position: absolute;
right: 0;
opacity: 0;
}
.timeline-title {
color: #ff9900;
font-size: 26px;
line-height: 30px;
font-weight: 400;
}
.timeline-title2 {
color: #555555;
font-size: 15px;
line-height: 12px;
font-weight: 400;
}
.timeline-text {
font-size: 16px;
height: 100px;
color: #666666;
}
.timeline .slick-current:after {
background-color: rgba(255, 255, 255, 0);
}
.timeline .slick-current .timeline-year {
opacity: 1;
}
.timeline .slick-current .timeline-slide__content {
opacity: 1;
} | css/timeline.css | .member * {
box-sizing: border-box;
}
.member body {
font-family: 'Noto Serif TC';
font-size: 14px;
padding: 0;
margin: 0;
}
.container2 {
height: 100%;
background-color: #e1ece0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.timeline {
width: 100%;
position: relative;
}
.timeline-nav__item {
font-family:'Noto Serif TC';
width: auto;
height: auto;
text-align: center;
opacity: 0.5;
background: transparent;
color: #6e8574;
margin: 15px 25px !important;
position: relative;
font-size: 20px;
line-height: 28px;
font-weight: 400;
outline: none;
cursor: pointer;
}
.timeline-nav__item::before {
content: "";
position: absolute;
top: 30px;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
width: 10px;
height: 10px;
border-radius: 100%;
background-color: #6e8574;
transition: .2s;
}
.timeline-nav__item.slick-current {
color: #415847;
opacity: 1;
}
.timeline-nav__item.slick-current::before {
background-color: #415847;
}
.timeline-wrapper {
position: relative;
width: 100%;
}
@media (max-width: 768px) {
.timeline-wrapper {
height: 600px;
max-height: 700px;
}
.timeline .timeline-slide__content{
position: absolute;
width: 90%;
-webkit-transform: translate(-75%, 80%);
background-color: rgb(255, 255, 255);
}
.timeline-slide {
text-align:center;
height: 100%;
}
.timeline-slider {
height: 100%;
margin: 0;
}
.timeline-image .timeimage{
width: 90vw;
margin-top: 10%;
margin-left: 0px;
}
}
.timeline-slider {
height: 100%;
text-align:center;
}
.timeline .slick-list {
height: 100%;
}
@media (min-width: 1080px) {
.timeline .slick-list {
padding: 0 180px !important;
}
}
.timeline .slick-track {
height: 100%;
}
.timeline-image{
margin-top: 5%;
margin-left:5%;
margin-right:5%;
margin-bottom: 100px;
}
.timeimage{
width: 500px;
}
.timeline-slide {
position: relative;
overflow: hidden;
outline: none;
margin: 0;
z-index: 1;
height: 100%;
}
.timeline-slide:after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(190, 210, 160, 0.8);
z-index: 2;
}
.timeline-slide__content {
z-index: 5;
position: absolute;
top: 100px;
background: #ffffff;
width: 55%;
left: 73%;
-webkit-transform: translate(-60%, 50%);
padding: 40px;
opacity: 0;
transition: opacity 1s;
}
@media (min-width: 768px) and (max-width: 979px) {
.timeline-slide__content {
-webkit-transform: translate(-70%, 65%);
width: 90%;
height: 46%;
padding: 5%;
}
}
.timeline-year {
z-index: 5;
font-size: 35px;
color: #ffffff;
background: #ff9900;
padding: 15px 26px;
transition: opacity 1.2s;
position: absolute;
right: 0;
opacity: 0;
}
.timeline-title {
color: #ff9900;
font-size: 26px;
line-height: 30px;
font-weight: 400;
}
.timeline-title2 {
color: #555555;
font-size: 15px;
line-height: 12px;
font-weight: 400;
}
.timeline-text {
font-size: 16px;
height: 100px;
color: #666666;
}
.timeline .slick-current:after {
background-color: rgba(255, 255, 255, 0);
}
.timeline .slick-current .timeline-year {
opacity: 1;
}
.timeline .slick-current .timeline-slide__content {
opacity: 1;
} | 0.54819 | 0.068382 |
footer {
position: absolute;
bottom: 0;
padding-left: 20px;
width: 100%;
height: 40px;
line-height: 40px;
background-color: #f5f5f5;
text-align: center;
}
code {
background-color: hsla(0, 0%, 0%, 0.04);
border-radius: 3px;
font-family: "SFMono-Regular", Consolas, "Roboto Mono", "Droid Sans Mono",
"Liberation Mono", Menlo, Courier, monospace;
padding: 0;
padding-top: 0.2em;
padding-bottom: 0.2em;
}
.link-style {
color: white;
text-decoration: none;
margin-bottom: 0;
}
.link-style:hover {
color: yellow;
}
/* homepage */
.grid-container {
display: grid;
grid-row-gap: 25px;
grid-column-gap: 25px;
grid-template-columns: auto 300px 50%;
grid-template-rows: 25% auto 25%;
}
.image_item {
grid-column: 2 / span 1;
grid-row: 2 / span 1;
}
.intro_item {
grid-column: 3 / span 1;
grid-row: 2 / span 1;
}
.menu-link {
color: #37234a;
text-decoration: none;
margin-bottom: 0;
}
.menu-link:hover {
color: yellow;
background: #37234a;
}
@media only screen and (max-width: 768px) {
.grid-container {
display: block;
}
.image_item {
width: 70%;
margin-left: auto;
margin-right: auto;
}
.intro_item {
margin-left: auto;
margin-right: auto;
}
.about_image {
width: 80%;
}
}
/* about page */
.about-grid {
display: grid;
grid-column-gap: 25px;
grid-template-columns: 5% 350px auto 5%;
grid-template-rows: 25px auto;
overflow: hidden;
height: 85vh;
}
.about-image {
grid-column: 2 / span 1;
grid-row: 2 / span 1;
overflow-y: scroll;
}
.about-image::-webkit-scrollbar {
display: none;
}
.about-text {
grid-column: 3 / span 1;
grid-row: 2 / span 1;
overflow-y: scroll;
}
.about-text::-webkit-scrollbar {
display: none;
}
.left-space {
margin-left: 15px;
}
/* contact page */
.contact-grid {
display: grid;
grid-column-gap: 25px;
grid-template-columns: 25% auto;
grid-template-rows: 25% auto;
overflow: hidden;
height: 85vh;
}
.contact-text {
grid-column: 2 / span 1;
grid-row: 2 / span 1;
}
/* header */
.header-style {
background: #37234a;
margin-bottom: 0.5rem;
display: grid;
grid-template-columns: 50% 30% 20%;
height: 40px;
}
.title {
grid-column: 1 / span 1;
margin-left: 20%;
padding: 0.5rem 1.0875rem;
margin-bottom: 0;
}
.menu {
grid-column: 3 / span 1;
margin-right: 12%;
padding: 0.5rem 1.0875rem;
align-items: right;
}
.icon {
color: white;
margin-right: 10px;
}
.icon:hover {
color: yellow;
}
.mobile {
display: none;
}
@media only screen and (max-width: 768px) {
.menu {
display: none;
}
.mobile {
display: inline;
}
.browser {
display: none;
}
.about-grid {
display: block;
overflow: visible;
}
}
/* projects page */
.projects-grid {
display: grid;
grid-column-gap: 25px;
grid-row-gap: 25px;
grid-template-columns: 31% 31% auto;
grid-template-rows: 40% 40% auto;
height: 85vh;
}
.project-title {
border-bottom: 5px solid #37234a;
margin-bottom: 10px;
}
.project-title-text {
font-size: 2vw;
font-weight: bold;
text-decoration: none;
color: #37234a;
}
.project-title-text:hover {
color: yellow;
background: #37234a;
}
@media only screen and (max-width: 768px) {
.projects-grid {
display: block;
}
.project-title-text {
font-size: 4vw;
}
}
/* sidebar */
#sidebar a {
position: absolute; /* Position them relative to the browser window */
transition: 0.4s; /* Add transition on hover */
height: 40px;
text-decoration: none; /* Remove underline */
border-radius: 0 5px 5px 0; /* Rounded corners on the top right and bottom right side */
}
#sidebar a:hover {
left: 0; /* On mouse-over, make the elements appear as they should */
}
#home {
top: 50px;
background-color: #37234a;
left: -63px;
}
#about {
top: 100px;
background-color: #37234a;
left: -92px;
}
#experience {
top: 150px;
background-color: #37234a;
left: -105px;
}
#contact {
top: 200px;
background-color: #37234a;
left: -75px;
}
.menu-text {
color: white;
font-weight: bold;
padding-left: 10px;
}
.sidebar-icon {
margin-right: 8px;
margin-left: 15px;
color: white;
margin-top: 7.5px;
}
.feature-flagged {
display: none;
} | src/components/main.css | footer {
position: absolute;
bottom: 0;
padding-left: 20px;
width: 100%;
height: 40px;
line-height: 40px;
background-color: #f5f5f5;
text-align: center;
}
code {
background-color: hsla(0, 0%, 0%, 0.04);
border-radius: 3px;
font-family: "SFMono-Regular", Consolas, "Roboto Mono", "Droid Sans Mono",
"Liberation Mono", Menlo, Courier, monospace;
padding: 0;
padding-top: 0.2em;
padding-bottom: 0.2em;
}
.link-style {
color: white;
text-decoration: none;
margin-bottom: 0;
}
.link-style:hover {
color: yellow;
}
/* homepage */
.grid-container {
display: grid;
grid-row-gap: 25px;
grid-column-gap: 25px;
grid-template-columns: auto 300px 50%;
grid-template-rows: 25% auto 25%;
}
.image_item {
grid-column: 2 / span 1;
grid-row: 2 / span 1;
}
.intro_item {
grid-column: 3 / span 1;
grid-row: 2 / span 1;
}
.menu-link {
color: #37234a;
text-decoration: none;
margin-bottom: 0;
}
.menu-link:hover {
color: yellow;
background: #37234a;
}
@media only screen and (max-width: 768px) {
.grid-container {
display: block;
}
.image_item {
width: 70%;
margin-left: auto;
margin-right: auto;
}
.intro_item {
margin-left: auto;
margin-right: auto;
}
.about_image {
width: 80%;
}
}
/* about page */
.about-grid {
display: grid;
grid-column-gap: 25px;
grid-template-columns: 5% 350px auto 5%;
grid-template-rows: 25px auto;
overflow: hidden;
height: 85vh;
}
.about-image {
grid-column: 2 / span 1;
grid-row: 2 / span 1;
overflow-y: scroll;
}
.about-image::-webkit-scrollbar {
display: none;
}
.about-text {
grid-column: 3 / span 1;
grid-row: 2 / span 1;
overflow-y: scroll;
}
.about-text::-webkit-scrollbar {
display: none;
}
.left-space {
margin-left: 15px;
}
/* contact page */
.contact-grid {
display: grid;
grid-column-gap: 25px;
grid-template-columns: 25% auto;
grid-template-rows: 25% auto;
overflow: hidden;
height: 85vh;
}
.contact-text {
grid-column: 2 / span 1;
grid-row: 2 / span 1;
}
/* header */
.header-style {
background: #37234a;
margin-bottom: 0.5rem;
display: grid;
grid-template-columns: 50% 30% 20%;
height: 40px;
}
.title {
grid-column: 1 / span 1;
margin-left: 20%;
padding: 0.5rem 1.0875rem;
margin-bottom: 0;
}
.menu {
grid-column: 3 / span 1;
margin-right: 12%;
padding: 0.5rem 1.0875rem;
align-items: right;
}
.icon {
color: white;
margin-right: 10px;
}
.icon:hover {
color: yellow;
}
.mobile {
display: none;
}
@media only screen and (max-width: 768px) {
.menu {
display: none;
}
.mobile {
display: inline;
}
.browser {
display: none;
}
.about-grid {
display: block;
overflow: visible;
}
}
/* projects page */
.projects-grid {
display: grid;
grid-column-gap: 25px;
grid-row-gap: 25px;
grid-template-columns: 31% 31% auto;
grid-template-rows: 40% 40% auto;
height: 85vh;
}
.project-title {
border-bottom: 5px solid #37234a;
margin-bottom: 10px;
}
.project-title-text {
font-size: 2vw;
font-weight: bold;
text-decoration: none;
color: #37234a;
}
.project-title-text:hover {
color: yellow;
background: #37234a;
}
@media only screen and (max-width: 768px) {
.projects-grid {
display: block;
}
.project-title-text {
font-size: 4vw;
}
}
/* sidebar */
#sidebar a {
position: absolute; /* Position them relative to the browser window */
transition: 0.4s; /* Add transition on hover */
height: 40px;
text-decoration: none; /* Remove underline */
border-radius: 0 5px 5px 0; /* Rounded corners on the top right and bottom right side */
}
#sidebar a:hover {
left: 0; /* On mouse-over, make the elements appear as they should */
}
#home {
top: 50px;
background-color: #37234a;
left: -63px;
}
#about {
top: 100px;
background-color: #37234a;
left: -92px;
}
#experience {
top: 150px;
background-color: #37234a;
left: -105px;
}
#contact {
top: 200px;
background-color: #37234a;
left: -75px;
}
.menu-text {
color: white;
font-weight: bold;
padding-left: 10px;
}
.sidebar-icon {
margin-right: 8px;
margin-left: 15px;
color: white;
margin-top: 7.5px;
}
.feature-flagged {
display: none;
} | 0.405096 | 0.130645 |
@charset "utf-8";
/* CSS Document */
.circo {
width: 100%;
background-image: url('circo.jpg');
background-size: 100% 100%;
padding-bottom: 50px;
}
body {
margin: 0;
padding: 0;
}
#imagebox-1 {
text-align: center;
font-family: 'Times New Roman';
color: #000000;
font-size: 33.33px;
font-weight: 400;
}
#imagebox-2 {
text-align: center;
font-family: 'Times New Roman';
color: #010101;
font-size: 75px;
font-weight: 400;
margin-top: -50px;
}
#imagebox-3 {
background-color: #ba007c;
font-family: 'Times New Roman';
color: #ffffff;
font-size: 25px;
font-weight: 400;
border-radius: 15px;
padding-left: 20px;
padding-right: 20px;
padding-top: 2px;
padding-bottom: 2px;
border: 1px solid #ba007c;
text-align: center;
height: 20px;
text-decoration: none;
}
.tile {
width: 80px;
height: 5px;
background-color: #ff00ff;
padding-top: 0px;
}
#section1 {
padding-top: 240px;
margin-top:20px;
}
.center {
text-align: center;
}
.mcenter {
margin-left: auto;
margin-right: auto;
}
.section2-img {
max-width: 450px;
width: 100%;
max-height: 450px;
height: 100%;
}
#signature {
widows: 150px;
height: 50;
}
#section2 {
width: 75%;
margin-top: 20px;
height: 480px;
}
.section2-left {
display: inline-block;
float: left;
width: 350px;
}
#section2-text1 {
font-family: Arial;
color: #000000;
font-size: 41.67px;
font-weight: 400;
margin-bottom: -30px;
}
#section2-text2 {
font-family: Arial;
color: #000000;
font-size: 27.08px;
font-weight: 400;
margin-bottom: -10px;
}
#section2-text3 {
font-family: Arial;
color: #606060;
font-size: 12.5px;
font-weight: 400;
}
.section2-right {
display: inline-block;
width: 40%;
float: right;
padding-bottom: 20px;
margin-right: 40px;
}
.vertical {
border: none;
border-left: 1px solid hsla(200, 10%, 50%,100);
height: 45px;
width: 1px;
display: inline-block;
vertical-align: middle;
margin-left: 3px;
margin-right: 3px;
}
.logo-box {
width: 161px;
height: 56px;
display: inline;
vertical-align: middle;
}
.endereco-div {
width: 229px;
height: 25px;
display: inline-block;
}
.telefone-div {
width: 150px;
height: 25px;
display: inline-block;
}
.horario-div {
width: 172px;
height: 25px;
display: inline-block;
}
.endereco-icon, .telefone-icon, .horario-icon {
width: 22px;
height: 22px;
vertical-align: bottom;
}
.horario-adress, .telefone-adress, .endereco-adress {
color: #919191;
}
.header-icons {
display: inline;
}
.outer, .section7-outer {
display: block;
width: 100%;
margin-left: auto;
margin-right: auto;
}
.outer, #section3 {
background-color: #f0f5f5;
padding-top: 30px;
padding-bottom: 50px;
}
.inner {
width: 28.9%;
margin-right: 2%;
margin-left: 2%;
display: inline-block;
background: #ffffff;
}
.section3-img {
width: 100%;
height: 230px;
}
.section3-imgtitle {
background-color: rgba(255,0,255,0.57);
position: absolute;
top: 0px;
left: 0;
width: 100%;
color: white;
font-weight: 700;
font-size: medium;
text-align: center;
}
.section1-box1 {
position: relative;
}
.section3-members {
padding-top:5px;
padding-bottom: 5px;
}
.section3-member {
width: 50px;
height: 50px;
border-radius: 25px;
display: inline;
}
.section3-imgmember {
display: inline-block;
width: 65px;
padding-left: 10px;
}
.section3-txtmember {
display: inline-block;
vertical-align: top;
line-height: 20pt;
color: #919191;
}
.section3-name {
color: #ba007c;
font-weight: 700;
}
#section4 {
background: url("section3.jpg");
background-size: 100% 100%;
height: 550px;
text-align: center;
padding-top: 20px;
}
.section4-line1 {
color: white;
font-size: 40pt;
}
.section4-line2 {
color: white;
font-weight: 800;
font-size: 44pt;
text-indent: 3em;
text-align: left;
}
.section4-line3 {
color: white;
font-weight: 800;
font-size: 44pt;
text-align: left;
text-indent: 10em;
}
.section4-button {
width: 125px;
height: 30px;
font-size: large;
font-weight: 100;
text-align: center;
background-color: #ba007c;
color: white;
border: 0px;
border-radius: 10px;
}
#section5 {
padding-top: 35px;
padding-bottom: 35px;
}
.section5-left, .section5-right {
display: inline-block;
margin-left: auto;
margin-right: auto;
}
.section5-left {
width: 40%;
margin-left: 3%;
margin-right: 3%;
}
.section5-right {
vertical-align: top;
padding-top: 40px;
width: 50%;
}
.section5-imgleft {
width: 100%;
}
.section5-title {
font-family: Arial;
color: #000000;
font-size: 33.33px;
font-weight: 900;
margin-bottom: -20px;
}
.section5-subtitle {
font-family: ArialNarrow;
color: #000000;
font-size: 22.92px;
font-weight: 400;
}
.section5-textright {
font-family: ArialNarrow;
color: #6c6c6c;
font-size: 17.5px;
font-weight: 400;
}
.section5-button {
border-radius: 15px;
background-color: #f0f;
font-family: ArialNarrow;
color: #fefefe;
font-size: 17.5px;
font-weight: 400;
width: 120px;
height: 35px;
padding-left: 10px;
padding-right: 10px;
padding-top: 5px;
padding-bottom: 5px;
margin-top: 5px;
}
#section7 {
background-color: #f0f5f5;
padding-top: 80px;
padding-bottom: 80px;
}
.section7-title1 {
font-family: Arial;
color: #000000;
font-size: 34.21px;
font-weight: 700;
}
.section7-title2 {
font-family: ArialNarrow;
color: #000000;
font-size: 21.71px;
font-weight: 400;
}
.section7-inner {
width: 25%;
display: inline-block;
margin-left: 6%;
}
.section7-img {
width: 100%;
}
.section7-text {
font-family: Arial;
color: #000000;
font-size: 14.58px;
font-weight: 700;
padding-bottom: 0;
margin-bottom: 1px;
}
#section8 {
background-color: #999999;
padding-top: 50px;
padding-bottom: 50px;
}
.section8-txt1 {
font-family: Arial;
color: #ffffff;
font-size: 40.58px;
font-weight: 400;
transform: scale(1.001,1.147);
}
.section8-txt2 {
font-family: Arial;
color: #ffffff;
font-size: 56.25px;
font-weight: 700;
}
.section8-btn {
font-family: Arial;
color: #ffffff;
font-size: 16.67px;
font-weight: 700;
border-radius: 10px;
background-color: #e01150;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
text-decoration: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
#section9 {
background-color: #fd2b69;
padding-top: 50px;
padding-bottom: 60px;
}
.section9-text {
font-family: Arial;
color: #fffeff;
font-size: 33.33px;
font-weight: 700;
}
#newsletter {
font-family: Arial;
color: white;
font-size: 12px;
font-weight: 900;
border: 0px;
border-bottom-width: 2px;
border-bottom-color: #ffffff;
border-bottom-style: solid;
width: 45%;
background-color: #fd2b69;
vertical-align: bottom;
}
#newsbtn {
border-width: 2px;
border-color: white;
border-style: solid;
background-color: #fd2b69;
padding-top: 5px;
padding-bottom: 5px;
color: white;
}
#section11 {
background-color: #f0f0f0;
padding-top: 80px;
padding-bottom: 70px;
}
.section11-text1 {
font-family: Arial;
color: #000000;
font-size: 18.75px;
font-weight: 700;
}
.section11-text2 {
margin-top: -20px;
margin-bottom: 40px;
font-family: Arial;
color: #000000;
font-size: 18.75px;
font-weight: 700;
}
.section11-tel {
font-family: Arial;
color: #ff00a8;
font-size: 18.75px;
font-weight: 700;
}
.section11-credits {
font-family: ArialNarrow;
color: #828282;
font-size: 14.58px;
font-weight: 400;
}
.section11-img {
width: 30px;
height: 30px;
}
.section11-outer {
text-align: center;
}
.section11-inner {
background-color: #ffffff;
display:inline-block;
padding: 5px;
padding-top: 8px;
padding-left: 10px;
padding-right: 10px;
border-radius: 40px;
}
.mySlides {
display:none;
} | style.css | @charset "utf-8";
/* CSS Document */
.circo {
width: 100%;
background-image: url('circo.jpg');
background-size: 100% 100%;
padding-bottom: 50px;
}
body {
margin: 0;
padding: 0;
}
#imagebox-1 {
text-align: center;
font-family: 'Times New Roman';
color: #000000;
font-size: 33.33px;
font-weight: 400;
}
#imagebox-2 {
text-align: center;
font-family: 'Times New Roman';
color: #010101;
font-size: 75px;
font-weight: 400;
margin-top: -50px;
}
#imagebox-3 {
background-color: #ba007c;
font-family: 'Times New Roman';
color: #ffffff;
font-size: 25px;
font-weight: 400;
border-radius: 15px;
padding-left: 20px;
padding-right: 20px;
padding-top: 2px;
padding-bottom: 2px;
border: 1px solid #ba007c;
text-align: center;
height: 20px;
text-decoration: none;
}
.tile {
width: 80px;
height: 5px;
background-color: #ff00ff;
padding-top: 0px;
}
#section1 {
padding-top: 240px;
margin-top:20px;
}
.center {
text-align: center;
}
.mcenter {
margin-left: auto;
margin-right: auto;
}
.section2-img {
max-width: 450px;
width: 100%;
max-height: 450px;
height: 100%;
}
#signature {
widows: 150px;
height: 50;
}
#section2 {
width: 75%;
margin-top: 20px;
height: 480px;
}
.section2-left {
display: inline-block;
float: left;
width: 350px;
}
#section2-text1 {
font-family: Arial;
color: #000000;
font-size: 41.67px;
font-weight: 400;
margin-bottom: -30px;
}
#section2-text2 {
font-family: Arial;
color: #000000;
font-size: 27.08px;
font-weight: 400;
margin-bottom: -10px;
}
#section2-text3 {
font-family: Arial;
color: #606060;
font-size: 12.5px;
font-weight: 400;
}
.section2-right {
display: inline-block;
width: 40%;
float: right;
padding-bottom: 20px;
margin-right: 40px;
}
.vertical {
border: none;
border-left: 1px solid hsla(200, 10%, 50%,100);
height: 45px;
width: 1px;
display: inline-block;
vertical-align: middle;
margin-left: 3px;
margin-right: 3px;
}
.logo-box {
width: 161px;
height: 56px;
display: inline;
vertical-align: middle;
}
.endereco-div {
width: 229px;
height: 25px;
display: inline-block;
}
.telefone-div {
width: 150px;
height: 25px;
display: inline-block;
}
.horario-div {
width: 172px;
height: 25px;
display: inline-block;
}
.endereco-icon, .telefone-icon, .horario-icon {
width: 22px;
height: 22px;
vertical-align: bottom;
}
.horario-adress, .telefone-adress, .endereco-adress {
color: #919191;
}
.header-icons {
display: inline;
}
.outer, .section7-outer {
display: block;
width: 100%;
margin-left: auto;
margin-right: auto;
}
.outer, #section3 {
background-color: #f0f5f5;
padding-top: 30px;
padding-bottom: 50px;
}
.inner {
width: 28.9%;
margin-right: 2%;
margin-left: 2%;
display: inline-block;
background: #ffffff;
}
.section3-img {
width: 100%;
height: 230px;
}
.section3-imgtitle {
background-color: rgba(255,0,255,0.57);
position: absolute;
top: 0px;
left: 0;
width: 100%;
color: white;
font-weight: 700;
font-size: medium;
text-align: center;
}
.section1-box1 {
position: relative;
}
.section3-members {
padding-top:5px;
padding-bottom: 5px;
}
.section3-member {
width: 50px;
height: 50px;
border-radius: 25px;
display: inline;
}
.section3-imgmember {
display: inline-block;
width: 65px;
padding-left: 10px;
}
.section3-txtmember {
display: inline-block;
vertical-align: top;
line-height: 20pt;
color: #919191;
}
.section3-name {
color: #ba007c;
font-weight: 700;
}
#section4 {
background: url("section3.jpg");
background-size: 100% 100%;
height: 550px;
text-align: center;
padding-top: 20px;
}
.section4-line1 {
color: white;
font-size: 40pt;
}
.section4-line2 {
color: white;
font-weight: 800;
font-size: 44pt;
text-indent: 3em;
text-align: left;
}
.section4-line3 {
color: white;
font-weight: 800;
font-size: 44pt;
text-align: left;
text-indent: 10em;
}
.section4-button {
width: 125px;
height: 30px;
font-size: large;
font-weight: 100;
text-align: center;
background-color: #ba007c;
color: white;
border: 0px;
border-radius: 10px;
}
#section5 {
padding-top: 35px;
padding-bottom: 35px;
}
.section5-left, .section5-right {
display: inline-block;
margin-left: auto;
margin-right: auto;
}
.section5-left {
width: 40%;
margin-left: 3%;
margin-right: 3%;
}
.section5-right {
vertical-align: top;
padding-top: 40px;
width: 50%;
}
.section5-imgleft {
width: 100%;
}
.section5-title {
font-family: Arial;
color: #000000;
font-size: 33.33px;
font-weight: 900;
margin-bottom: -20px;
}
.section5-subtitle {
font-family: ArialNarrow;
color: #000000;
font-size: 22.92px;
font-weight: 400;
}
.section5-textright {
font-family: ArialNarrow;
color: #6c6c6c;
font-size: 17.5px;
font-weight: 400;
}
.section5-button {
border-radius: 15px;
background-color: #f0f;
font-family: ArialNarrow;
color: #fefefe;
font-size: 17.5px;
font-weight: 400;
width: 120px;
height: 35px;
padding-left: 10px;
padding-right: 10px;
padding-top: 5px;
padding-bottom: 5px;
margin-top: 5px;
}
#section7 {
background-color: #f0f5f5;
padding-top: 80px;
padding-bottom: 80px;
}
.section7-title1 {
font-family: Arial;
color: #000000;
font-size: 34.21px;
font-weight: 700;
}
.section7-title2 {
font-family: ArialNarrow;
color: #000000;
font-size: 21.71px;
font-weight: 400;
}
.section7-inner {
width: 25%;
display: inline-block;
margin-left: 6%;
}
.section7-img {
width: 100%;
}
.section7-text {
font-family: Arial;
color: #000000;
font-size: 14.58px;
font-weight: 700;
padding-bottom: 0;
margin-bottom: 1px;
}
#section8 {
background-color: #999999;
padding-top: 50px;
padding-bottom: 50px;
}
.section8-txt1 {
font-family: Arial;
color: #ffffff;
font-size: 40.58px;
font-weight: 400;
transform: scale(1.001,1.147);
}
.section8-txt2 {
font-family: Arial;
color: #ffffff;
font-size: 56.25px;
font-weight: 700;
}
.section8-btn {
font-family: Arial;
color: #ffffff;
font-size: 16.67px;
font-weight: 700;
border-radius: 10px;
background-color: #e01150;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
text-decoration: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
#section9 {
background-color: #fd2b69;
padding-top: 50px;
padding-bottom: 60px;
}
.section9-text {
font-family: Arial;
color: #fffeff;
font-size: 33.33px;
font-weight: 700;
}
#newsletter {
font-family: Arial;
color: white;
font-size: 12px;
font-weight: 900;
border: 0px;
border-bottom-width: 2px;
border-bottom-color: #ffffff;
border-bottom-style: solid;
width: 45%;
background-color: #fd2b69;
vertical-align: bottom;
}
#newsbtn {
border-width: 2px;
border-color: white;
border-style: solid;
background-color: #fd2b69;
padding-top: 5px;
padding-bottom: 5px;
color: white;
}
#section11 {
background-color: #f0f0f0;
padding-top: 80px;
padding-bottom: 70px;
}
.section11-text1 {
font-family: Arial;
color: #000000;
font-size: 18.75px;
font-weight: 700;
}
.section11-text2 {
margin-top: -20px;
margin-bottom: 40px;
font-family: Arial;
color: #000000;
font-size: 18.75px;
font-weight: 700;
}
.section11-tel {
font-family: Arial;
color: #ff00a8;
font-size: 18.75px;
font-weight: 700;
}
.section11-credits {
font-family: ArialNarrow;
color: #828282;
font-size: 14.58px;
font-weight: 400;
}
.section11-img {
width: 30px;
height: 30px;
}
.section11-outer {
text-align: center;
}
.section11-inner {
background-color: #ffffff;
display:inline-block;
padding: 5px;
padding-top: 8px;
padding-left: 10px;
padding-right: 10px;
border-radius: 40px;
}
.mySlides {
display:none;
} | 0.227899 | 0.063308 |
.pay{background-color:#f1ffcd }
.gearArea {font-size: .26rem; background-color: rgba(0, 0, 0, 0.2); display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9900; overflow: hidden; -webkit-animation-fill-mode: both; animation-fill-mode: both }
.area_ctrl { vertical-align: middle; background-color: #d5d8df; color: #000; margin: 0; height: auto; width: 100%; position: absolute; left: 0; bottom: 0; z-index: 9901; overflow: hidden; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) }
.slideInUp { -webkit-animation: slideInUp .3s; animation: slideInUp .3s; }
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.area_roll { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: auto; overflow: hidden; background-color: transparent; -webkit-mask: -webkit-gradient(linear, 0% 50%, 0% 100%, from(#debb47), to(rgba(36, 142, 36, 0))); -webkit-mask: -webkit-linear-gradient(top, #debb47 50%, rgba(36, 142, 36, 0)) }
.area_roll>div { font-size: 1.6em; height: 10em; float: left; background-color: transparent; position: relative; overflow: hidden; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1 }
.area_roll>div .gear { width: 100%; float: left; position: absolute; z-index: 9902; margin-top: 4em }
.area_roll_mask { -webkit-mask: -webkit-gradient(linear, 0% 40%, 0% 0%, from(#debb47), to(rgba(36, 142, 36, 0))); -webkit-mask: -webkit-linear-gradient(bottom, #debb47 50%, rgba(36, 142, 36, 0)); padding: 0 }
.area_grid { position: relative; top: 4em; width: 100%; height: 2em; margin: 0; box-sizing: border-box; z-index: 0; border-top: 1px solid #abaeb5; border-bottom: 1px solid #abaeb5 }
.area_roll>div:nth-child(3) .area_grid>div { left: 42% }
.area_btn { color: #6ab42f; font-size: 1.6em; line-height: 1em; text-align: center; padding: .8em 3em }
.area_btn_box:before, .area_btn_box:after { content: ''; position: absolute; height: 1px; width: 100%; display: block; background-color: #96979b; z-index: 15; -webkit-transform: scaleY(0.33); transform: scaleY(0.33) }
.area_btn_box { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; background-color: #f1f2f4; position: relative }
.area_btn_box:before { left: 0; top: 0; -webkit-transform-origin: 50% 20%; transform-origin: 50% 20% }
.area_btn_box:after { left: 0; bottom: 0; -webkit-transform-origin: 50% 70%; transform-origin: 50% 70% }
.tooth { height: 2em; line-height: 2em; text-align: center; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; line-clamp: 1; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; overflow: hidden }
.giftbtn{ background:#f6ad2b !important; color:#fff;}
.giftbtn i{ font-size:.8rem; vertical-align:middle}
.pay .banner{ font-size:.6rem; line-height:2rem; text-align:center; width:100%; height:auto;}
.pay .banner img{ width:100%; height:auto; display:block;}
.pay .md-show .submit{margin:1rem 0 2.4rem 0}
html body.pay div.bggreen.addlist{ padding-top: .2rem}
.pay .newbox{ padding:0; margin-top: 0}
.pay .addlist ul{ margin: 0} | Public/wap/css/address.css | .pay{background-color:#f1ffcd }
.gearArea {font-size: .26rem; background-color: rgba(0, 0, 0, 0.2); display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9900; overflow: hidden; -webkit-animation-fill-mode: both; animation-fill-mode: both }
.area_ctrl { vertical-align: middle; background-color: #d5d8df; color: #000; margin: 0; height: auto; width: 100%; position: absolute; left: 0; bottom: 0; z-index: 9901; overflow: hidden; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0) }
.slideInUp { -webkit-animation: slideInUp .3s; animation: slideInUp .3s; }
@-webkit-keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
@keyframes slideInUp {
from {
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0)
}
to {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
}
.area_roll { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; width: 100%; height: auto; overflow: hidden; background-color: transparent; -webkit-mask: -webkit-gradient(linear, 0% 50%, 0% 100%, from(#debb47), to(rgba(36, 142, 36, 0))); -webkit-mask: -webkit-linear-gradient(top, #debb47 50%, rgba(36, 142, 36, 0)) }
.area_roll>div { font-size: 1.6em; height: 10em; float: left; background-color: transparent; position: relative; overflow: hidden; -webkit-box-flex: 1; -webkit-flex: 1; -ms-flex: 1; flex: 1 }
.area_roll>div .gear { width: 100%; float: left; position: absolute; z-index: 9902; margin-top: 4em }
.area_roll_mask { -webkit-mask: -webkit-gradient(linear, 0% 40%, 0% 0%, from(#debb47), to(rgba(36, 142, 36, 0))); -webkit-mask: -webkit-linear-gradient(bottom, #debb47 50%, rgba(36, 142, 36, 0)); padding: 0 }
.area_grid { position: relative; top: 4em; width: 100%; height: 2em; margin: 0; box-sizing: border-box; z-index: 0; border-top: 1px solid #abaeb5; border-bottom: 1px solid #abaeb5 }
.area_roll>div:nth-child(3) .area_grid>div { left: 42% }
.area_btn { color: #6ab42f; font-size: 1.6em; line-height: 1em; text-align: center; padding: .8em 3em }
.area_btn_box:before, .area_btn_box:after { content: ''; position: absolute; height: 1px; width: 100%; display: block; background-color: #96979b; z-index: 15; -webkit-transform: scaleY(0.33); transform: scaleY(0.33) }
.area_btn_box { display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -webkit-justify-content: space-between; -ms-flex-pack: justify; justify-content: space-between; -webkit-box-align: stretch; -webkit-align-items: stretch; -ms-flex-align: stretch; align-items: stretch; background-color: #f1f2f4; position: relative }
.area_btn_box:before { left: 0; top: 0; -webkit-transform-origin: 50% 20%; transform-origin: 50% 20% }
.area_btn_box:after { left: 0; bottom: 0; -webkit-transform-origin: 50% 70%; transform-origin: 50% 70% }
.tooth { height: 2em; line-height: 2em; text-align: center; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; line-clamp: 1; -webkit-box-orient: vertical; -webkit-box-direction: normal; -webkit-flex-direction: column; -ms-flex-direction: column; flex-direction: column; overflow: hidden }
.giftbtn{ background:#f6ad2b !important; color:#fff;}
.giftbtn i{ font-size:.8rem; vertical-align:middle}
.pay .banner{ font-size:.6rem; line-height:2rem; text-align:center; width:100%; height:auto;}
.pay .banner img{ width:100%; height:auto; display:block;}
.pay .md-show .submit{margin:1rem 0 2.4rem 0}
html body.pay div.bggreen.addlist{ padding-top: .2rem}
.pay .newbox{ padding:0; margin-top: 0}
.pay .addlist ul{ margin: 0} | 0.471953 | 0.17774 |
.ask_form {
text-align: center;
max-width: 754px;
width: 100%;
height: 502px;
background: #FFFFFF;
box-shadow: 0px 4px 4px 4px rgba(0, 0, 0, 0.25);
margin: 150px auto;
}
.form_head {
position: relative;
padding-top: 25px;
width: 347px;
height: 21px;
margin: auto;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
}
.fields_container {
padding-top: 45px;
display: flex;
flex-direction: row;
justify-content: space-between;
margin: auto;
max-width: 600px;
width: 100%;
}
.fields {
padding-top: 25px;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 176.5px;
}
.bigfield {
border: none;
resize: none;
width: 332px;
height: 276px;
background: #FFFFFF;
box-shadow: 0px 4px 4px 4px rgba(0, 0, 0, 0.25);
text-align: left;
padding-left: 15px;
padding-top: 10px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
}
.bigfield::-moz-placeholder {
width: 122px;
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
color: rgba(0, 0, 0, 0.47);
}
.bigfield:-ms-input-placeholder {
width: 122px;
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
color: rgba(0, 0, 0, 0.47);
}
.bigfield::placeholder {
width: 122px;
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
color: rgba(0, 0, 0, 0.47);
}
.name,
.email,
.city {
border-width: 0 0 1px;
height: 21px;
width: 100%;
border-bottom: 1px solid rgba(0, 0, 0, 0.47);
}
input:focus,
button:focus,
textarea:focus {
outline-width: 0;
}
.fields input {
padding-left: 10px;
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
}
.fields input::-moz-placeholder {
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
color: rgba(0, 0, 0, 0.47);
}
.fields input:-ms-input-placeholder {
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
color: rgba(0, 0, 0, 0.47);
}
.fields input::placeholder {
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
color: rgba(0, 0, 0, 0.47);
}
.age {
width: 87px;
border-bottom: 1px solid rgba(0, 0, 0, 0.47);
border-width: 0 0 1px;
}
.send {
margin: 45px auto auto auto;
width: 202px;
height: 53px;
border: none;
background: #FFD082;
border-radius: 26.5px;
}
.send a {
width: 104px;
height: 22px;
font-family: Raleway;
font-style: normal;
font-weight: 300;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
margin: auto;
}
.error {
color: #FF0000;
padding-bottom: 10px;
margin-left: 10px;
}
.d {
display: flex;
flex-direction: row;
justify-content: space-between;
}
@media (max-width: 450px) {
.fields_container {
padding-top: 10px;
flex-direction: column;
margin: auto;
height: 242px;
}
.age {
width: 100%;
}
.fields {
margin: auto;
width: 311px;
padding-top: 0px;
height: 130px;
}
.ask_form {
width: 365px;
height: 386px;
}
.bigfield {
margin: auto;
width: 312px;
height: 89px;
}
.send {
margin: 25px auto;
width: 129px;
height: 40px;
}
.send a {
font-size: 14px;
line-height: 16px;
margin: auto;
width: 83px;
}
.fields input::-moz-placeholder {
font-size: 12px;
line-height: 14px;
}
.fields input:-ms-input-placeholder {
font-size: 12px;
line-height: 14px;
}
.fields input::placeholder,
.fields input {
font-size: 12px;
line-height: 14px;
}
.bigfield::-moz-placeholder {
font-size: 12px;
line-height: 14px;
}
.bigfield:-ms-input-placeholder {
font-size: 12px;
line-height: 14px;
}
.bigfield,
.bigfield::placeholder {
font-size: 12px;
line-height: 14px;
}
.form_head {
width: 272px;
font-size: 14px;
line-height: 16px;
margin: auto;
}
} | public/css/ask_form.css | .ask_form {
text-align: center;
max-width: 754px;
width: 100%;
height: 502px;
background: #FFFFFF;
box-shadow: 0px 4px 4px 4px rgba(0, 0, 0, 0.25);
margin: 150px auto;
}
.form_head {
position: relative;
padding-top: 25px;
width: 347px;
height: 21px;
margin: auto;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
}
.fields_container {
padding-top: 45px;
display: flex;
flex-direction: row;
justify-content: space-between;
margin: auto;
max-width: 600px;
width: 100%;
}
.fields {
padding-top: 25px;
display: flex;
flex-direction: column;
justify-content: space-between;
width: 176.5px;
}
.bigfield {
border: none;
resize: none;
width: 332px;
height: 276px;
background: #FFFFFF;
box-shadow: 0px 4px 4px 4px rgba(0, 0, 0, 0.25);
text-align: left;
padding-left: 15px;
padding-top: 10px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
}
.bigfield::-moz-placeholder {
width: 122px;
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
color: rgba(0, 0, 0, 0.47);
}
.bigfield:-ms-input-placeholder {
width: 122px;
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
color: rgba(0, 0, 0, 0.47);
}
.bigfield::placeholder {
width: 122px;
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
color: rgba(0, 0, 0, 0.47);
}
.name,
.email,
.city {
border-width: 0 0 1px;
height: 21px;
width: 100%;
border-bottom: 1px solid rgba(0, 0, 0, 0.47);
}
input:focus,
button:focus,
textarea:focus {
outline-width: 0;
}
.fields input {
padding-left: 10px;
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
}
.fields input::-moz-placeholder {
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
color: rgba(0, 0, 0, 0.47);
}
.fields input:-ms-input-placeholder {
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
color: rgba(0, 0, 0, 0.47);
}
.fields input::placeholder {
height: 21px;
font-family: Raleway;
font-style: normal;
font-weight: normal;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
color: rgba(0, 0, 0, 0.47);
}
.age {
width: 87px;
border-bottom: 1px solid rgba(0, 0, 0, 0.47);
border-width: 0 0 1px;
}
.send {
margin: 45px auto auto auto;
width: 202px;
height: 53px;
border: none;
background: #FFD082;
border-radius: 26.5px;
}
.send a {
width: 104px;
height: 22px;
font-family: Raleway;
font-style: normal;
font-weight: 300;
font-size: 18px;
line-height: 21px;
display: flex;
align-items: center;
margin: auto;
}
.error {
color: #FF0000;
padding-bottom: 10px;
margin-left: 10px;
}
.d {
display: flex;
flex-direction: row;
justify-content: space-between;
}
@media (max-width: 450px) {
.fields_container {
padding-top: 10px;
flex-direction: column;
margin: auto;
height: 242px;
}
.age {
width: 100%;
}
.fields {
margin: auto;
width: 311px;
padding-top: 0px;
height: 130px;
}
.ask_form {
width: 365px;
height: 386px;
}
.bigfield {
margin: auto;
width: 312px;
height: 89px;
}
.send {
margin: 25px auto;
width: 129px;
height: 40px;
}
.send a {
font-size: 14px;
line-height: 16px;
margin: auto;
width: 83px;
}
.fields input::-moz-placeholder {
font-size: 12px;
line-height: 14px;
}
.fields input:-ms-input-placeholder {
font-size: 12px;
line-height: 14px;
}
.fields input::placeholder,
.fields input {
font-size: 12px;
line-height: 14px;
}
.bigfield::-moz-placeholder {
font-size: 12px;
line-height: 14px;
}
.bigfield:-ms-input-placeholder {
font-size: 12px;
line-height: 14px;
}
.bigfield,
.bigfield::placeholder {
font-size: 12px;
line-height: 14px;
}
.form_head {
width: 272px;
font-size: 14px;
line-height: 16px;
margin: auto;
}
} | 0.392686 | 0.0809 |
.essb-privacy-button {
display: block;
cursor: pointer;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.essb-privacy-outsite {
display: block;
margin: 0 auto;
overflow: hidden;
position: relative;
width: 100px;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
.essb-privacy-outsite.metro:hover {
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
.essb-privacy-button .essb-privacy-icon {
width: 18px;
height: 18px;
line-height: 18px;
}
.essb-privacy-text,.essb-privacy-click {
display: block;
position: absolute;
padding-left: 10px;
width: 100%;
transition: 0.3s ease all;
-moz-transition: 0.3s ease all;
-webkit-transition: 0.3s ease all;
top: 5px;
}
.essb-privacy-text .essb-privacy-text-inner {
position: absolute;
}
.essb-privacy-text {
font-size: 14px;
font-weight: 700;
z-index: 9999;
box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.25);
}
.essb-privacy-text.metro {
box-shadow: none;
}
.essb-privacy-text .fa { padding-top: 3px !important; }
.essb-privacy-text .essb-privacy-text-inner {
font-size: 12px;
padding-left: 5px;
font-weight: normal;
}
.essb-privacy-click {
z-index: 8888;
}
.essb-privacy-outside .essb-privacy-click {
padding-top: 0px;
}
/* G+ */
.essb-privacy-google {
background: #b72513;
height: 26px;
width: 100px;
}
.essb-privacy-google .essb-privacy-text {
background: #b72513;
height: 100%;
color: #ffffff;
}
.essb-privacy-google .essb-privacy-click {
padding-top: 7px;
}
.essb-privacy-facebook {
background: #39599f;
height: 26px;
width: 100px;
}
.essb-privacy-facebook .essb-privacy-text {
background: #39599f;
height: 100%;
color: #ffffff;
}
.essb-privacy-facebook .essb-privacy-click {
padding-top: 7px;
}
.essb-privacy-twitter {
background: #45b0e3;
height: 26px;
width: 100px;
}
.essb-privacy-twitter .essb-privacy-text {
background: #45b0e3;
height: 100%;
color: #ffffff;
}
.essb-privacy-twitter .essb-privacy-click {
padding-top: 7px;
}
.essb-privacy-pinterest {
background: #fa0101;
height: 26px;
width: 100px;
}
.essb-privacy-pinterest .essb-privacy-click {
padding-top: 7px;
}
.essb-privacy-pinterest .essb-privacy-text {
background: #fa0101;
height: 100%;
color: #ffffff;
}
.essb-privacy-youtube {
background: #cc181e;
height: 26px;
width: 100px;
}
.essb-privacy-youtube .essb-privacy-text {
background: #cc181e;
height: 100%;
color: #ffffff;
}
.essb-privacy-youtube .essb-privacy-click {
padding-top: 7px;
}
.essb-privacy-vk {
background: #5d83aa;
height: 26px;
width: 100px;
}
.essb-privacy-vk .essb-privacy-text {
background: #5d83aa;
height: 100%;
color: #ffffff;
}
.essb-privacy-vk .essb-privacy-click {
padding-top: 7px;
}
.essb-privacy-linkedin {
background: #007bb6;
height: 26px;
width: 100px;
}
.essb-privacy-linkedin .essb-privacy-text {
background: #007bb6;
height: 100%;
color: #ffffff;
padding-top: 2px;
}
.essb-privacy-linkedin .essb-privacy-click {
padding-top: 7px;
} | web/app/mu-plugins/easy-social-share-buttons3/assets/css/essb-native-privacy.css | .essb-privacy-button {
display: block;
cursor: pointer;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.essb-privacy-outsite {
display: block;
margin: 0 auto;
overflow: hidden;
position: relative;
width: 100px;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
.essb-privacy-outsite.metro:hover {
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
.essb-privacy-button .essb-privacy-icon {
width: 18px;
height: 18px;
line-height: 18px;
}
.essb-privacy-text,.essb-privacy-click {
display: block;
position: absolute;
padding-left: 10px;
width: 100%;
transition: 0.3s ease all;
-moz-transition: 0.3s ease all;
-webkit-transition: 0.3s ease all;
top: 5px;
}
.essb-privacy-text .essb-privacy-text-inner {
position: absolute;
}
.essb-privacy-text {
font-size: 14px;
font-weight: 700;
z-index: 9999;
box-shadow: inset 0 -4px 0 rgba(0, 0, 0, 0.25);
}
.essb-privacy-text.metro {
box-shadow: none;
}
.essb-privacy-text .fa { padding-top: 3px !important; }
.essb-privacy-text .essb-privacy-text-inner {
font-size: 12px;
padding-left: 5px;
font-weight: normal;
}
.essb-privacy-click {
z-index: 8888;
}
.essb-privacy-outside .essb-privacy-click {
padding-top: 0px;
}
/* G+ */
.essb-privacy-google {
background: #b72513;
height: 26px;
width: 100px;
}
.essb-privacy-google .essb-privacy-text {
background: #b72513;
height: 100%;
color: #ffffff;
}
.essb-privacy-google .essb-privacy-click {
padding-top: 7px;
}
.essb-privacy-facebook {
background: #39599f;
height: 26px;
width: 100px;
}
.essb-privacy-facebook .essb-privacy-text {
background: #39599f;
height: 100%;
color: #ffffff;
}
.essb-privacy-facebook .essb-privacy-click {
padding-top: 7px;
}
.essb-privacy-twitter {
background: #45b0e3;
height: 26px;
width: 100px;
}
.essb-privacy-twitter .essb-privacy-text {
background: #45b0e3;
height: 100%;
color: #ffffff;
}
.essb-privacy-twitter .essb-privacy-click {
padding-top: 7px;
}
.essb-privacy-pinterest {
background: #fa0101;
height: 26px;
width: 100px;
}
.essb-privacy-pinterest .essb-privacy-click {
padding-top: 7px;
}
.essb-privacy-pinterest .essb-privacy-text {
background: #fa0101;
height: 100%;
color: #ffffff;
}
.essb-privacy-youtube {
background: #cc181e;
height: 26px;
width: 100px;
}
.essb-privacy-youtube .essb-privacy-text {
background: #cc181e;
height: 100%;
color: #ffffff;
}
.essb-privacy-youtube .essb-privacy-click {
padding-top: 7px;
}
.essb-privacy-vk {
background: #5d83aa;
height: 26px;
width: 100px;
}
.essb-privacy-vk .essb-privacy-text {
background: #5d83aa;
height: 100%;
color: #ffffff;
}
.essb-privacy-vk .essb-privacy-click {
padding-top: 7px;
}
.essb-privacy-linkedin {
background: #007bb6;
height: 26px;
width: 100px;
}
.essb-privacy-linkedin .essb-privacy-text {
background: #007bb6;
height: 100%;
color: #ffffff;
padding-top: 2px;
}
.essb-privacy-linkedin .essb-privacy-click {
padding-top: 7px;
} | 0.191328 | 0.086208 |
from{right:-50px; opacity:0 }
to{right:0; opacity:1 }
}
@-webkit-keyframes taskbarcome{
from{right:-50px; opacity:0 }
to{right:0; opacity:1 }
}
@-moz-keyframes taskbarcome{
from{right:-50px; opacity:0 }
to{right:0; opacity:1 }
}*/
/* # 为了不改变 */
@keyframes taskbarcome{
from{right:-50px; opacity:1 }
to{right:-50px; opacity:1 }
}
@-webkit-keyframes taskbarcome{
from{right:-50px; opacity:1 }
to{right:-50px; opacity:1 }
}
@-moz-keyframes taskbarcome{
from{right:-50px; opacity:1 }
to{right:-50px; opacity:1 }
}
/*li按钮出场动画*/
@keyframes licome{
from{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); height:0; opacity:0 }
65%{height:50px;}
to{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); opacity:1 }
}
@-webkit-keyframes licome{
from{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); height:0; opacity:0 }
65%{height:50px;}
to{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); opacity:1 }
}
@-moz-keyframes licome{
from{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); height:0; opacity:0 }
65%{height:50px;}
to{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); opacity:1 }
}
/*缩小消失动画*/
@keyframes liscale{
from{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); height:50px;}
65%{height:50px;}
to{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); height:0;}
}
@-webkit-keyframes liscale{
from{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); height:50px;}
65%{height:50px;}
to{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); height:0;}
}
@-moz-keyframes liscale{
from{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); height:50px;}
65%{height:50px;}
to{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); height:0;}
}
#message-taskbar{ position:fixed; top:59px; right:-50px; z-index:999; width:50px; height:100%; min-height:100%; max-height:100%;background-color:#333;background-color:rgba(0,0,0,0.8);animation:taskbarcome 0.6s ease;-webkit-animation:taskbarcome 0.6s ease;-moz-animation:taskbarcome 0.6s ease;}
#message-taskbar .hide{display:none !important;}
#message-taskbar .wrap{padding:20px 0;}
#message-taskbar .message-list{}
#message-taskbar .message-list li{width:50px; height:50px; overflow:hidden; position:relative;animation:licome 0.6s ease;-webkit-animation:licome 0.6s ease;-moz-animation:licome 0.6s ease;}
#message-taskbar .message-list li.noanimat{animation:none;-webkit-animation:none;-moz-animation:none;}
#message-taskbar .message-list li.move{z-index:1;left:auto; top:auto; right:auto; bottom:auto;}
#message-taskbar .message-list li.move a{ cursor:default; background-color:transparent !important;}
#message-taskbar .message-list li.scale{animation:liscale 0.6s ease;-webkit-animation:liscale 0.6s ease;-moz-animation:liscale 0.6s ease;transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0);height:0;}
#message-taskbar .message-list li a{ width:32px; height:32px; display:block; overflow:hidden; padding:9px; position:relative}
#message-taskbar .message-list li a:hover{ background:#000;}
#message-taskbar .message-list li a i{color:#fff; font-style:normal; position:absolute; top:6px; right:6px; background:#c00; display:block; width:16px; height:16px; line-height:16px; font-size:12px; text-align:center; border-radius:50%; overflow:hidden}
#message-taskbar .message-list li img{ width:32px; height:32px; border:none; border-radius:50%;}
/**/
@keyframes boxcome{
from{transform:scale(0.5,0.5);-webkit-transform:scale(0.5,0.5);-moz-transform:scale(0.5,0.5);-ms-transform:scale(0.5,0.5); opacity:0 }
90%{transform:scale(1.02,1.02);-webkit-transform:scale(1.02,1.02);-moz-transform:scale(1.02,1.02);-ms-transform:scale(1.02,1.02);}
to{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); opacity:1 }
}
@-webkit-keyframes boxcome{
from{transform:scale(0.5,0.5);-webkit-transform:scale(0.5,0.5);-moz-transform:scale(0.5,0.5);-ms-transform:scale(0.5,0.5); opacity:0 }
90%{transform:scale(1.02,1.02);-webkit-transform:scale(1.02,1.02);-moz-transform:scale(1.02,1.02);-ms-transform:scale(1.02,1.02);}
to{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); opacity:1 }
}
@-moz-keyframes boxcome{
from{transform:scale(0.5,0.5);-webkit-transform:scale(0.5,0.5);-moz-transform:scale(0.5,0.5);-ms-transform:scale(0.5,0.5); opacity:0 }
90%{transform:scale(1.02,1.02);-webkit-transform:scale(1.02,1.02);-moz-transform:scale(1.02,1.02);-ms-transform:scale(1.02,1.02);}
to{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); opacity:1 }
}
/**/
@keyframes boxcout{
from{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1);top:15%}
to{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); top:60% }
}
@-webkit-keyframes boxcout{
from{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1);top:15%}
to{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); top:60% }
}
@-moz-keyframes boxcout{
from{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1);top:15%}
to{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); top:60% }
}
#msgbox-shield{position:fixed; top:0; left:0; height:100%; min-height:100; max-height:100%; width:100%; background:#000; opacity:0.5;filter:alpha(opacity=50); z-index:997;}
#msgbox-main{ width:720px; height:70%; /*min-height:364px;*/ position:fixed; top:12%; left:50%; margin-left:-361px; background:#fff; z-index:998;transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1);opacity:1;animation:boxcome 0.3s ease;-webkit-animation:boxcome 0.3s ease;-moz-animation:liscale 0.3s ease; border-left:1px solid #ddd;border-right:1px solid #ddd;}
#msgbox-remove{ width:720px; height:80%; position:fixed; top:60%; left:50%; margin-left:-361px; background:#fff; z-index:998;transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0);animation:boxcout 0.5s ease;-webkit-animation:boxcout 0.5s ease;-moz-animation:boxcout 0.5s ease; border:1px solid #ddd;border-top:none;display:none\0;*display:none;}
.msgbox-title-wrap{width:720px;height:39px;background:#fff;margin:-39px 0 0 -1px;border:1px solid #ddd; border-bottom:none;}
.msgbox-title{height:38px;overflow:hidden;border-bottom:1px solid #eee;margin:0 10px;line-height:38px; position:relative;}
.msgbox-title h3{text-indent:8px;font-size:14px;color:#555;}
.msgbox-title h3 span{color:#bbb; font-size:12px; padding-left:12px;}
.msgbox-title h3 span a{color:#999; margin-right:10px;}
.msgbox-title h3 span a.current{color:#666;}
.msgbox-title .rt{position:absolute;top:0;right:0;height:100%;width:200px;}
.msgbox-title .rt .close{ position:absolute; top:6px; right:0; height:26px; width:26px; overflow:hidden;line-height:26px;}
.msgbox-title .rt .close a{ display:block; text-align:center; font-size:18px; color:#0096e6}
.msgbox-title .rt .close a:hover{ background:#eee;}
.msgbox-title .rt .btn{ position:absolute; top:6px; right:36px; height:26px; line-height:26px; overflow:hidden; width:auto;border-radius:3px;}
.msgbox-title .rt .btn a.link{color:#999; margin-right:10px; display:inline; padding:0; background-color:transparent;border-radius:0;}
.msgbox-title .rt .btn a.current{color:#666;}
.msgbox-title .rt .btn a{ display:block; background:#0096e6; font-size:12px;color:#fff; height:100%; width:auto; padding:0 13px; border-radius:3px;}
.msgbox-title .rt .btn a.disabled{color:#99cccc;cursor:default}
.msgbox-footer-wrap{width:720px; padding:10px 0; background:#fff;border:1px solid #ddd;border-top-color:#eee;margin:-1px 0 0 -1px;}
.msgbox-body{height:100%; overflow-x:hidden; overflow-y:auto; background:#fff; border:none; padding:none;scrollbar-arrow-color: #999;
scrollbar-face-color: #A8A8A8;
scrollbar-3dlight-color: #A8A8A8;
scrollbar-highlight-color: #A8A8A8;
scrollbar-shadow-color: #A8A8A8;
scrollbar-darkshadow-color: #A8A8A8;
scrollbar-track-color:#F1F1F1;
scrollbar-base-color:#A8A8A8;
}
.msgbox-body::-webkit-scrollbar{width:9px;background:#fff;}
.msgbox-body::-webkit-scrollbar-track,.friend .groupusers::-webkit-scrollbar-track-piece{background:#f5f5f5;border-left:3px solid #fff;border-right:3px solid #fff;border-radius:4px; width:4.5px;}
.msgbox-body::-webkit-scrollbar-thumb{width:3px;border-left:3px solid #fff;border-right:3px solid #fff;background:#999;border-radius:4.5px;}
.msgbox-body::-webkit-scrollbar-corner,.friend .groupusers::-webkit-resizer,.friend .groupusers::-webkit-scrollbar-button{ display:none}
.msgbox-loading{ background:url(../image/message/ajax-loader.gif) no-repeat center center}
.msgbox-body #set-data{ display:none !important;}
.msgbox-body .hide{ display:none;}
.msgbox-body .common{ width:480px; margin:0 auto; font-size:12px; color:#666; line-height:1.5; overflow:visible; position:relative}
.msgbox-body .common a{color:#0096e6}
.msgbox-body .common ul:after,.msgbox-body .common ul:before{display:block; height:0; content:"."; clear:both; overflow:hidden; visibility:hidden}
.msgbox-body .notice{ padding-top:5px;}
.msgbox-body .notice li{ padding:15px 0; border-bottom:1px solid #eee; line-height:24px; color:#bbb;}
.msgbox-body .notice li.unread{color:#666;}
.msgbox-body .comment{}
.msgbox-body .comment li{ padding:15px 0; border-bottom:1px solid #eee; line-height:24px; *zoom:1;}
.msgbox-body .comment li:after,.msgbox-body .comment li:before{ display:block; height:0; content:"."; clear:both; overflow:hidden; visibility:hidden}
.msgbox-body .comment li .face{width:45px; height:45px; border-radius:50%; position:relative; float:left; padding:11px 0 12px 0;}
.msgbox-body .comment li .face a i{ position:absolute; top:2px; right:2px; display:block; width:10px; height:10px; background-color:#c00; border-radius:50%; font-size:0;}
.msgbox-body .comment li .face a{ display:block; position:relative}
.msgbox-body .comment li .face img{ width:45px; height:45px; border-radius:50%}
.msgbox-body .comment li .detail{ width:348px; height:auto; min-height:45px; float:left; padding:11px 0 0 10px;}
.msgbox-body .comment li .detail .name{font-size:12px; line-height:24px; height:24px;overflow:hidden;}
.msgbox-body .comment li .detail .name a{color:#111;}
.msgbox-body .comment li .detail .name span{color:#ccc; padding-left:8px; color:#666;}
.msgbox-body .comment li .detail .ct,.msgbox-body .comment li .detail .ctzan{font-size:12px; line-height:22px;word-break:break-all;word-wrap:break-word; color:#666;}
.msgbox-body .comment li .detail .long{width:425px;}
.msgbox-body .comment li .detail .ctzan{ height:22px; overflow:hidden;}
.msgbox-body .comment li .detail .ctzan i{ display:inline-block; width:18px; height:22px; background:url(../image/index-ico.png) no-repeat -63px -218px;}
.msgbox-body .comment li .link{ width:68px; height:68px; overflow:hidden; padding-left:9px; position:relative; float:left;}
.msgbox-body .comment li .link a{ display:block; color:#999; width:60px; height:60px; overflow:hidden; font-size:12px; line-height:20px; padding:4px; position:relative; background:#f7f7f7;word-break:break-all;word-wrap:break-word;}
.msgbox-body .comment li .link img{ width:68px; height:68px; margin:-4px }
.msgbox-body .comment li .link a i{ display:block; width:22px; height:22px; background:url(../image/message/video.png) no-repeat; position:absolute; left:5px; bottom:5px;}
.msgbox-body .comment li .reply{ padding-top:10px; float:none; clear:both; position:relative; display:none; height:32px; overflow:visible}
.msgbox-body .comment li .reply input.text{ position:absolute; top:10px; left:0; width:374px; padding:7px 31px 7px 5px; margin:0; border:1px solid #ececec; height:16px; font-size:12px; font-family:inherit; color:#666; overflow:hidden}
.msgbox-body .comment li .reply input.sbmt{ position:absolute; top:10px; right:0; padding:0; margin:0; border:none; height:32px; width:68px;font-size:12px;font-family:inherit; cursor:pointer; background:#0096e6; color:#fff;}
.msgbox-body .comment li .reply a.face-icon{ display:block; position:absolute; width:16px; height:16px; background:url(../image/icon.png) -31px -28px no-repeat; top:18px;right:76px;}
.msgbox-body .comment li .reply a.face-icon:hover{background-position:0 -28px;}
.msgbox-body .comment li .reply .face_parent_div{ overflow:visible; width:100%; margin:0; padding:0; height:0; clear:both;}
.msgbox-body .comment li .face_parent_div .talkPop{top:32px !important; left:81px !important;}
.msgbox-body .comment li .face_parent_div .talkPop .arrow{left:auto !important; right:75px !important;}
.msgbox-body .fright{position:absolute; top:40px;right:-108px; width:44px; height:auto; overflow:visible}
.msgbox-body .checked_user{ position:absolute; left:0; top:0;}
.msgbox-body .checked_user li{ width:20px; height:20px; border-radius:50%; margin-bottom:10px;}
.msgbox-body .checked_user li img{ width:100%; width:100%; border-radius:50%;}
.msgbox-body .first-letter{ position:absolute; right:0; top:0;}
.msgbox-body .first-letter li{ width:16px; height:16px; line-height:16px; text-align:center}
.msgbox-body .first-letter li a{color:#ccc; display:block; font-family:Arial,sans-serif}
.msgbox-body .first-letter li a:hover{color:#666;}
.msgbox-body .friends{ padding:20px 0; font-size:12px;-moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;-khtml-user-select: none;user-select: none; position:relative}
.msgbox-body .friends dt{ font-size:12px; color:#ccc; height:22px; line-height:22px; overflow:hidden; border-bottom:1px solid #eee; text-indent:5px;font-family:Arial,sans-serif}
.msgbox-body .friends dd{*zoom:1;border-bottom:1px solid #eee;}
.msgbox-body .friends dd:after{display:block; height:0; content:"."; clear:both; overflow:hidden; visibility:hidden}
.msgbox-body .friends dd .lt,.msgbox-body .friends dd .rt{height:64px;overflow:hidden; position:relative}
.msgbox-body .friends dd .lt{float:left;width:238px;border-right:1px solid #eee;}
.msgbox-body .friends dd .rt{float:right;width:232px;}
.msgbox-body .friends dd .face{ width:44px; height:44px; border-radius:50%; overflow:hidden; position:absolute; left:0; top:10px;}
.msgbox-body .friends dd .face img{ width:100%; height:100%; border-radius:50%;}
.msgbox-body .friends dd .uname{position:absolute;height:24px;line-height:24px;top:20px;left:54px;}
.msgbox-body .friends dd .uname a{color:#111;}
.msgbox-body .friends .checkbox{ width:20px; height:20px; border:1px solid #ddd; border-radius:50%; position:absolute; top:50%; margin-top:-10px; background:#fff; right:15px; cursor:pointer; line-height:20px; text-align:center; color:#fff; font-size:14px;}
.msgbox-body .friends .checked{ background:#0096e6; }
.msgbox-body .room-list{ font-size:12px;-moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;-khtml-user-select: none;user-select: none;}
.msgbox-body .room-list li{padding:20px 0; border-bottom:1px solid #eee; position:relative; min-height:40px; *height:40px; overflow:hidden;}
.msgbox-body .room-list .clear{position:absolute;top:20px;right:5px;line-height:20px;display:none;}
.msgbox-body .room-list .clear a{color:#666;}
.msgbox-body .room-list li:hover .clear{ display:block}
.msgbox-body .room-list .face{ width:40px; height:40px; border-radius:50%; position:absolute;top:20px; left:0;}
.msgbox-body .room-list .face img{ width:100%; height:100%; border-radius:50%;}
.msgbox-body .room-list .face i{ position:absolute; top:-1px; right:-1px; display:block; width:16px; height:16px; background-color:#c00; border-radius:50%; color:#fff; font-style:normal; text-align:center; line-height:16px;}
.msgbox-body .room-list .detail{ padding-left:54px; line-height:20px;}
.msgbox-body .room-list .detail .uname a{color:#111;}
.msgbox-body .room-list .detail .uname span{ padding-left:8px;color:#666}
.msgbox-body .room-list .detail .content{color:#666;}
.msgbox-body .room-list .detail .hight{color:#0096e6;}
.msgbox-body .msg-list{*zoom:1; padding:10px 0 20px 0; font-size:12px;}
.msgbox-body .msg-list li.msg{ width:360px; padding:10px 60px 0 60px;}
.msgbox-body .msg-list:after,.msgbox-body .msg-list li.msg:after{display:block; height:0; content:"."; clear:both; overflow:hidden; visibility:hidden}
.msgbox-body .msg-list li.msg .left{float:left; width:auto; position:relative;min-height:44px; padding-left:60px; margin-left:-60px;}
.msgbox-body .msg-list li.msg .right{float:right; width:auto; position:relative;min-height:44px; padding-right:60px; margin-right:-60px;}
.msgbox-body .msg-list li.msg .face{position:absolute;top:0;width:44px; height:44px; border-radius:50%;}
.msgbox-body .msg-list li.msg .face img{ width:100%; height:100%; border-radius:50%;}
.msgbox-body .msg-list li.msg .left .face{ left:0;}
.msgbox-body .msg-list li.msg .right .face{ right:0;}
.msgbox-body .msg-list li.msg .content{background:#ffffff; line-height:22px; padding:10px; border:1px solid #ebebeb;color:#555; border-radius:5px; position:relative;word-break:break-all;word-wrap:break-word; min-height:22px;}
.msgbox-body .msg-list li.msg .content .arrow{ position:absolute;top:17px; width:5px; height:11px; font-size:0; background:url(../image/message/icons.png) no-repeat 0 0}
.msgbox-body .msg-list li.msg .content img{max-width:100%;}
.msgbox-body .msg-list li.msg .left .content{ background:#fafafa;}
.msgbox-body .msg-list li.msg .right .content{ background:#ffffff;}
.msgbox-body .msg-list li.msg .left .arrow{left:-5px; background-position:0 0;}
.msgbox-body .msg-list li.msg .right .arrow{right:-5px; background-position:0 -26px; background-color:#fff}
.msgbox-body .msg-list li.msg .content .image,.msgbox-body .msg-list li.msg .content .position{ margin:-8px;}
.msgbox-body .msg-list li.msg .content .image a,.msgbox-body .msg-list li.msg .content .position a{ display:block; width:auto; height:auto; position:relative;}
.msgbox-body .msg-list li.msg .content .image img,.msgbox-body .msg-list li.msg .content .position img{}
.msgbox-body .msg-list li.msg .content .position a span{ display:block; position:absolute; height:30px; width:100%; left:0; bottom:0; line-height:30px; overflow:hidden;background-color:rgba(0,0,0,0.6); color:#fff; text-align:center;}
.msgbox-body .msg-list li.msg .voice{height:42px; line-height:42px; margin:-10px;}
.msgbox-body .msg-list li.msg .voice a{ display:block; background:url(../image/message/icons.png) no-repeat 0 0; color:#999;}
.msgbox-body .msg-list li.msg .left .voice a{ background-position:left -47px; text-align:right; padding:0 10px 0 60px;}
.msgbox-body .msg-list li.msg .right .voice a{ background-position:right -89px; text-align:left; padding:0 60px 0 10px;}
.msgbox-body .msg-list li.msg .left .voice .play{background:url(../image/message/playl.gif) no-repeat left 10px;}
.msgbox-body .msg-list li.msg .right .voice .play{background:url(../image/message/playr.gif) no-repeat right 10px;}
.msgbox-body .msg-list li.msg .card{ display:block;}
.msgbox-body .msg-list li.msg .card .title{ height:22px; line-height:22px; border-bottom:1px solid #ebebeb; font-size:12px;color:#555; font-weight:normal}
.msgbox-body .msg-list li.msg .card .detail{ padding-top:10px; position:relative; min-width:200px;}
.msgbox-body .msg-list li.msg .card .card-face{ width:44px; height:44px; border-radius:50%; overflow:hidden; position:absolute; top:10px; left:0;}
.msgbox-body .msg-list li.msg .card .card-face img{ width:100%; height:100%; border-radius:50%;}
.msgbox-body .msg-list li.msg .card .card-text{ padding-left:54px; line-height:22px; height:44px; overflow:hidden; color:#555;}
.msgbox-body .msg-list li.msg .card .card-text a{color:#555}
.msgbox-body .msg-list li.info{ text-align:center;color:#bbb; padding:10px 60px 0 60px;}
.msgbox-body .msg-list li.info a{color:#999;}
.msgbox-body .msg-list li.more{ text-align:center;color:#ccc; padding:0 60px 0 60px;}
.msgbox-body .msg-list li.more a{color:#555;}
.msgbox-footer .msg-inputs{ height: 28px; width:480px; margin:0 auto; position:relative; }
.msgbox-footer .msg-inputs form{position:relative; display:block;}
.msgbox-footer .msg-inputs .face_box{ position:relative}
.msgbox-footer .msg-inputs .face_box .arrow-t{ display:none !important;}
.msgbox-footer .msg-inputs .face_box #emotions{top: -163px !important; left: 0 !important; z-index: 1 !important; margin:0 !important;}
.msgbox-footer .msg-inputs .face_box .wrap-layer{-webkit-box-shadow:none;box-shadow:none;}
.msgbox-footer .msg-inputs #message_input{ height:26px; border:1px solid #ddd; vertical-align:middle; line-height:26px; width:340px; padding:0 9px; color:#555; font-family:inherit; font-size:12px;}
.msgbox-footer .msg-inputs #message_input:focus{border-color:#bbb}
.msgbox-footer .msg-inputs .btns{ position:absolute; top:3px; right:0; width:44px; height:20px; overflow:hidden; font-size:12px; color:#999; display:block; line-height:20px; text-align:right; cursor:pointer }
.msgbox-footer .msg-inputs .btns i{ display:inline-block; height:20px; width:20px; background:url(../image/icon.png) no-repeat 0 0; position:absolute;top:0; left:0;}
.msgbox-footer .msg-inputs #face_input{right:60px;}
.msgbox-footer .msg-inputs #face_input i{background-position:-31px -26px}
.msgbox-footer .msg-inputs #face_input:hover i{background-position:0 -26px}
.msgbox-footer .msg-inputs #img_input i{background-position:-31px -59px}
.msgbox-footer .msg-inputs #img_input:hover i{background-position:0 -59px}
.msgbox-footer .msg-inputs #file_input{filter:alpha(opacity=0); opacity:0; cursor:pointer !important}
.msgbox-body .pagelist{ padding:20px 0; text-align:center}
.msgbox-body .pagelist a{ padding:5px 10px; display:inline-block; border:1px solid #eee; margin-right:9px; border-radius:3px; color:#0096e6;}
.msgbox-body .pagelist a:hover{ background:#eee}
.msgbox-body .pagelist a.current{ background:#0096e6; color:#fff; cursor:default}
.msgbox-body .empty-list{ height:50px; line-height:50px; color:#999; text-align:center}
/*
* Tooltip
*/
#message-taskbar .message-list li {overflow: visible !important}
.tooltip {
letter-spacing: 0;
position: relative;
display: inline-block
}
.tooltip:before,
.tooltip:after {
position: absolute;
visibility: hidden;
opacity: 0;
z-index: 999999;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
.tooltip:before {
content: '';
border: 6px solid transparent;
}
.tooltip:after {
height: 22px;
padding: 11px 11px 0 11px;
font-size: 13px;
line-height: 11px;
content: attr(data-tooltip);
white-space: nowrap;
background-color: rgba(0, 0, 0, 0.5)!important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
font-family: Avenir, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
font-weight: normal;
color: #ecf0f1;
-webkit-transform: translate(-50%, 0px);
-moz-transform: translate(-50%, 0px);
-ms-transform: translate(-50%, 0px);
-o-transform: translate(-50%, 0px);
transform: translate(-50%, 0px)
}
.tooltip.tip-top:before,
.tooltip.tip-top:after,
.tooltip.tip-bottom:before,
.tooltip.tip-bottom:after,
.tooltip.tip-left:before,
.tooltip.tip-left:after,
.tooltip.tip-right:before,
.tooltip.tip-right:after {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out
}
.tooltip.tip-top:before {
border-top-color: rgba(0, 0, 0, 0.5)
}
.tooltip.tip-bottom:before {
border-bottom-color: rgba(0, 0, 0, 0.5)
}
.tooltip.tip-left:before {
border-left-color: rgba(0, 0, 0, 0.5);
-webkit-transform: translate(-100%, 0px);
-moz-transform: translate(-100%, 0px);
-ms-transform: translate(-100%, 0px);
-o-transform: translate(-100%, 0px);
transform: translate(-100%, 0px)
}
.tooltip.tip-right:before {
border-right-color: rgba(0, 0, 0, 0.5)
}
.tooltip:hover,
.tooltip:focus {
background-color: transparent
}
.tooltip:hover .tip-left:before,
.tooltip:hover .tip-left:after,
.tooltip:focus .tip-left:before,
.tooltip:focus .tip-left:after {
opacity: 1;
visibility: visible;
-webkit-transform: translate(0%, 0px);
-moz-transform: translate(0%, 0px);
-ms-transform: translate(0%, 0px);
-o-transform: translate(0%, 0px);
transform: translate(0%, 0px)
}
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
opacity: 1;
visibility: visible;
-webkit-transform: translate(0%, 0px);
-moz-transform: translate(0%, 0px);
-ms-transform: translate(0%, 0px);
-o-transform: translate(0%, 0px);
transform: translate(0%, 0px)
}
.tip-right:before,
.tip-left:before,
.tip-right:after,
.tip-left:after {
bottom: 50%
}
.tip-right:before,
.tip-left:before {
margin-bottom: -5px
}
.tip-right:after,
.tip-left:after {
margin-bottom: -14.66667px
}
.tip-right:before,
.tip-right:after {
left: 100%
}
.tip-right:before {
margin-left: -2px
}
.tip-right:after {
margin-left: 10px
}
.tip-left:before,
.tip-left:after {
right: 100%
}
.tip-left:before {
margin-right: -2px
}
.tip-left:after {
margin-right: 10px
}
.tip-bottom:before,
.tip-top:before,
.tip-bottom:after,
.tip-top:after {
left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%)
}
.tip-bottom:after,
.tip-top:after {
width: auto
}
.tip-bottom:before,
.tip-bottom:after {
top: 100%
}
.tip-bottom:before {
margin-top: -5px
}
.tip-bottom:after {
margin-top: 7px
}
.tip-bottom:hover:before,
.tip-bottom:hover:after {
-webkit-transform: translate(-50%, 0);
-moz-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
-o-transform: translate(-50%, 0);
transform: translate(-50%, 0)
}
.tip-top:before,
.tip-top:after {
bottom: 100%
}
.tip-top:before {
margin-bottom: -5px
}
.tip-top:after {
margin-bottom: 7px
}
.tip-top:hover:before,
.tip-top:hover:after {
-webkit-transform: translate(-50%, 0px);
-moz-transform: translate(-50%, 0px);
-ms-transform: translate(-50%, 0px);
-o-transform: translate(-50%, 0px);
transform: translate(-50%, 0px)
}
/*隐藏后的呼吸灯*/
@keyframes breathe {
0% {
opacity: .2;
box-shadow:0 1px 2px rgba(255,255,255,0.1);
}
100% {
opacity: 1;
border:1px solid rgba(59,235,235,1);
box-shadow:0 1px 30px rgba(59,255,255,1);
}
}
@-moz-keyframes breathe {
0% {
opacity: .2;
box-shadow:0 1px 2px rgba(255,255,255,0.1);
}
100% {
opacity: 1;
border:1px solid rgba(59,235,235,1);
box-shadow:0 1px 30px rgba(59,255,255,1);
}
}
@-o-keyframes breathe {
0% {
opacity: .2;
box-shadow:0 1px 2px rgba(255,255,255,0.1);
}
100% {
opacity: 1;
border:1px solid rgba(59,235,235,1);
box-shadow:0 1px 30px rgba(59,255,255,1);
}
}
@-webkit-keyframes breathe {
0% {
opacity: .2;
box-shadow:0 1px 2px rgba(255,255,255,0.1);
}
100% {
opacity: 1;
border:1px solid rgba(59,235,235,1);
box-shadow:0 1px 30px rgba(59,255,255,1);
}
}
.smartButton {
display: block;
position: absolute;
width: 20px;
height: 40px;
background-color: #303030;
left: -22px;
top: 50%;
margin-top: -20px;
padding: 10px 0 10px 0;
border-radius: 10px;
cursor:pointer;
}
.smartButton:focus,
.smartButton:hover
{
background-color: #303030;
}
.smartButton i {
display: block;
width: 5px;
height: 100%;
background: #303030;
margin: 0 auto;
border-radius: 5px;
border:1px solid #2b92d4;
color:#fff;
font-size:20px;
text-align:center;
box-shadow:0 1px 2px rgba(0,0,0,.3);
overflow:hidden;
opacity: .2;
box-shadow:0 1px 2px rgba(255,255,255,0.1);
background-color: #6cc3fe;
}
.message-breathe i {
background-image:
gradient(linear, left top, left bottom, from(#6cc3fe), to(#21a1d0));
-webkit-gradient(linear, left top, left bottom, from(#6cc3fe), to(#21a1d0));
-moz-gradient(linear, left top, left bottom, from(#6cc3fe), to(#21a1d0));
-o-gradient(linear, left top, left bottom, from(#6cc3fe), to(#21a1d0));
animation: breathe 1500ms ease-in-out infinite alternate;
-webkit-animation: breathe 1500ms ease-in-out infinite alternate;
-moz-animation: breathe 1500ms ease-in-out infinite alternate;
-o-animation: breathe 1500ms ease-in-out infinite alternate;
}
/* # 联系人搜索按钮 */
.medz-message-s {
width: 190px;
height: 24px;
margin-left: 35px;
background-color: #fff;
outline: none;
resize: none;
box-shadow: none;
border-style: solid;
border-color: #C7C4C4;
border-width: 1px;
padding: 0 5px;
} | addons/theme/stv1/_static/css/message.css | from{right:-50px; opacity:0 }
to{right:0; opacity:1 }
}
@-webkit-keyframes taskbarcome{
from{right:-50px; opacity:0 }
to{right:0; opacity:1 }
}
@-moz-keyframes taskbarcome{
from{right:-50px; opacity:0 }
to{right:0; opacity:1 }
}*/
/* # 为了不改变 */
@keyframes taskbarcome{
from{right:-50px; opacity:1 }
to{right:-50px; opacity:1 }
}
@-webkit-keyframes taskbarcome{
from{right:-50px; opacity:1 }
to{right:-50px; opacity:1 }
}
@-moz-keyframes taskbarcome{
from{right:-50px; opacity:1 }
to{right:-50px; opacity:1 }
}
/*li按钮出场动画*/
@keyframes licome{
from{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); height:0; opacity:0 }
65%{height:50px;}
to{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); opacity:1 }
}
@-webkit-keyframes licome{
from{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); height:0; opacity:0 }
65%{height:50px;}
to{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); opacity:1 }
}
@-moz-keyframes licome{
from{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); height:0; opacity:0 }
65%{height:50px;}
to{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); opacity:1 }
}
/*缩小消失动画*/
@keyframes liscale{
from{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); height:50px;}
65%{height:50px;}
to{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); height:0;}
}
@-webkit-keyframes liscale{
from{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); height:50px;}
65%{height:50px;}
to{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); height:0;}
}
@-moz-keyframes liscale{
from{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); height:50px;}
65%{height:50px;}
to{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); height:0;}
}
#message-taskbar{ position:fixed; top:59px; right:-50px; z-index:999; width:50px; height:100%; min-height:100%; max-height:100%;background-color:#333;background-color:rgba(0,0,0,0.8);animation:taskbarcome 0.6s ease;-webkit-animation:taskbarcome 0.6s ease;-moz-animation:taskbarcome 0.6s ease;}
#message-taskbar .hide{display:none !important;}
#message-taskbar .wrap{padding:20px 0;}
#message-taskbar .message-list{}
#message-taskbar .message-list li{width:50px; height:50px; overflow:hidden; position:relative;animation:licome 0.6s ease;-webkit-animation:licome 0.6s ease;-moz-animation:licome 0.6s ease;}
#message-taskbar .message-list li.noanimat{animation:none;-webkit-animation:none;-moz-animation:none;}
#message-taskbar .message-list li.move{z-index:1;left:auto; top:auto; right:auto; bottom:auto;}
#message-taskbar .message-list li.move a{ cursor:default; background-color:transparent !important;}
#message-taskbar .message-list li.scale{animation:liscale 0.6s ease;-webkit-animation:liscale 0.6s ease;-moz-animation:liscale 0.6s ease;transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0);height:0;}
#message-taskbar .message-list li a{ width:32px; height:32px; display:block; overflow:hidden; padding:9px; position:relative}
#message-taskbar .message-list li a:hover{ background:#000;}
#message-taskbar .message-list li a i{color:#fff; font-style:normal; position:absolute; top:6px; right:6px; background:#c00; display:block; width:16px; height:16px; line-height:16px; font-size:12px; text-align:center; border-radius:50%; overflow:hidden}
#message-taskbar .message-list li img{ width:32px; height:32px; border:none; border-radius:50%;}
/**/
@keyframes boxcome{
from{transform:scale(0.5,0.5);-webkit-transform:scale(0.5,0.5);-moz-transform:scale(0.5,0.5);-ms-transform:scale(0.5,0.5); opacity:0 }
90%{transform:scale(1.02,1.02);-webkit-transform:scale(1.02,1.02);-moz-transform:scale(1.02,1.02);-ms-transform:scale(1.02,1.02);}
to{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); opacity:1 }
}
@-webkit-keyframes boxcome{
from{transform:scale(0.5,0.5);-webkit-transform:scale(0.5,0.5);-moz-transform:scale(0.5,0.5);-ms-transform:scale(0.5,0.5); opacity:0 }
90%{transform:scale(1.02,1.02);-webkit-transform:scale(1.02,1.02);-moz-transform:scale(1.02,1.02);-ms-transform:scale(1.02,1.02);}
to{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); opacity:1 }
}
@-moz-keyframes boxcome{
from{transform:scale(0.5,0.5);-webkit-transform:scale(0.5,0.5);-moz-transform:scale(0.5,0.5);-ms-transform:scale(0.5,0.5); opacity:0 }
90%{transform:scale(1.02,1.02);-webkit-transform:scale(1.02,1.02);-moz-transform:scale(1.02,1.02);-ms-transform:scale(1.02,1.02);}
to{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1); opacity:1 }
}
/**/
@keyframes boxcout{
from{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1);top:15%}
to{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); top:60% }
}
@-webkit-keyframes boxcout{
from{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1);top:15%}
to{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); top:60% }
}
@-moz-keyframes boxcout{
from{transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1);top:15%}
to{transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0); top:60% }
}
#msgbox-shield{position:fixed; top:0; left:0; height:100%; min-height:100; max-height:100%; width:100%; background:#000; opacity:0.5;filter:alpha(opacity=50); z-index:997;}
#msgbox-main{ width:720px; height:70%; /*min-height:364px;*/ position:fixed; top:12%; left:50%; margin-left:-361px; background:#fff; z-index:998;transform:scale(1,1);-webkit-transform:scale(1,1);-moz-transform:scale(1,1);-ms-transform:scale(1,1);opacity:1;animation:boxcome 0.3s ease;-webkit-animation:boxcome 0.3s ease;-moz-animation:liscale 0.3s ease; border-left:1px solid #ddd;border-right:1px solid #ddd;}
#msgbox-remove{ width:720px; height:80%; position:fixed; top:60%; left:50%; margin-left:-361px; background:#fff; z-index:998;transform:scale(0,0);-webkit-transform:scale(0,0);-moz-transform:scale(0,0);-ms-transform:scale(0,0);animation:boxcout 0.5s ease;-webkit-animation:boxcout 0.5s ease;-moz-animation:boxcout 0.5s ease; border:1px solid #ddd;border-top:none;display:none\0;*display:none;}
.msgbox-title-wrap{width:720px;height:39px;background:#fff;margin:-39px 0 0 -1px;border:1px solid #ddd; border-bottom:none;}
.msgbox-title{height:38px;overflow:hidden;border-bottom:1px solid #eee;margin:0 10px;line-height:38px; position:relative;}
.msgbox-title h3{text-indent:8px;font-size:14px;color:#555;}
.msgbox-title h3 span{color:#bbb; font-size:12px; padding-left:12px;}
.msgbox-title h3 span a{color:#999; margin-right:10px;}
.msgbox-title h3 span a.current{color:#666;}
.msgbox-title .rt{position:absolute;top:0;right:0;height:100%;width:200px;}
.msgbox-title .rt .close{ position:absolute; top:6px; right:0; height:26px; width:26px; overflow:hidden;line-height:26px;}
.msgbox-title .rt .close a{ display:block; text-align:center; font-size:18px; color:#0096e6}
.msgbox-title .rt .close a:hover{ background:#eee;}
.msgbox-title .rt .btn{ position:absolute; top:6px; right:36px; height:26px; line-height:26px; overflow:hidden; width:auto;border-radius:3px;}
.msgbox-title .rt .btn a.link{color:#999; margin-right:10px; display:inline; padding:0; background-color:transparent;border-radius:0;}
.msgbox-title .rt .btn a.current{color:#666;}
.msgbox-title .rt .btn a{ display:block; background:#0096e6; font-size:12px;color:#fff; height:100%; width:auto; padding:0 13px; border-radius:3px;}
.msgbox-title .rt .btn a.disabled{color:#99cccc;cursor:default}
.msgbox-footer-wrap{width:720px; padding:10px 0; background:#fff;border:1px solid #ddd;border-top-color:#eee;margin:-1px 0 0 -1px;}
.msgbox-body{height:100%; overflow-x:hidden; overflow-y:auto; background:#fff; border:none; padding:none;scrollbar-arrow-color: #999;
scrollbar-face-color: #A8A8A8;
scrollbar-3dlight-color: #A8A8A8;
scrollbar-highlight-color: #A8A8A8;
scrollbar-shadow-color: #A8A8A8;
scrollbar-darkshadow-color: #A8A8A8;
scrollbar-track-color:#F1F1F1;
scrollbar-base-color:#A8A8A8;
}
.msgbox-body::-webkit-scrollbar{width:9px;background:#fff;}
.msgbox-body::-webkit-scrollbar-track,.friend .groupusers::-webkit-scrollbar-track-piece{background:#f5f5f5;border-left:3px solid #fff;border-right:3px solid #fff;border-radius:4px; width:4.5px;}
.msgbox-body::-webkit-scrollbar-thumb{width:3px;border-left:3px solid #fff;border-right:3px solid #fff;background:#999;border-radius:4.5px;}
.msgbox-body::-webkit-scrollbar-corner,.friend .groupusers::-webkit-resizer,.friend .groupusers::-webkit-scrollbar-button{ display:none}
.msgbox-loading{ background:url(../image/message/ajax-loader.gif) no-repeat center center}
.msgbox-body #set-data{ display:none !important;}
.msgbox-body .hide{ display:none;}
.msgbox-body .common{ width:480px; margin:0 auto; font-size:12px; color:#666; line-height:1.5; overflow:visible; position:relative}
.msgbox-body .common a{color:#0096e6}
.msgbox-body .common ul:after,.msgbox-body .common ul:before{display:block; height:0; content:"."; clear:both; overflow:hidden; visibility:hidden}
.msgbox-body .notice{ padding-top:5px;}
.msgbox-body .notice li{ padding:15px 0; border-bottom:1px solid #eee; line-height:24px; color:#bbb;}
.msgbox-body .notice li.unread{color:#666;}
.msgbox-body .comment{}
.msgbox-body .comment li{ padding:15px 0; border-bottom:1px solid #eee; line-height:24px; *zoom:1;}
.msgbox-body .comment li:after,.msgbox-body .comment li:before{ display:block; height:0; content:"."; clear:both; overflow:hidden; visibility:hidden}
.msgbox-body .comment li .face{width:45px; height:45px; border-radius:50%; position:relative; float:left; padding:11px 0 12px 0;}
.msgbox-body .comment li .face a i{ position:absolute; top:2px; right:2px; display:block; width:10px; height:10px; background-color:#c00; border-radius:50%; font-size:0;}
.msgbox-body .comment li .face a{ display:block; position:relative}
.msgbox-body .comment li .face img{ width:45px; height:45px; border-radius:50%}
.msgbox-body .comment li .detail{ width:348px; height:auto; min-height:45px; float:left; padding:11px 0 0 10px;}
.msgbox-body .comment li .detail .name{font-size:12px; line-height:24px; height:24px;overflow:hidden;}
.msgbox-body .comment li .detail .name a{color:#111;}
.msgbox-body .comment li .detail .name span{color:#ccc; padding-left:8px; color:#666;}
.msgbox-body .comment li .detail .ct,.msgbox-body .comment li .detail .ctzan{font-size:12px; line-height:22px;word-break:break-all;word-wrap:break-word; color:#666;}
.msgbox-body .comment li .detail .long{width:425px;}
.msgbox-body .comment li .detail .ctzan{ height:22px; overflow:hidden;}
.msgbox-body .comment li .detail .ctzan i{ display:inline-block; width:18px; height:22px; background:url(../image/index-ico.png) no-repeat -63px -218px;}
.msgbox-body .comment li .link{ width:68px; height:68px; overflow:hidden; padding-left:9px; position:relative; float:left;}
.msgbox-body .comment li .link a{ display:block; color:#999; width:60px; height:60px; overflow:hidden; font-size:12px; line-height:20px; padding:4px; position:relative; background:#f7f7f7;word-break:break-all;word-wrap:break-word;}
.msgbox-body .comment li .link img{ width:68px; height:68px; margin:-4px }
.msgbox-body .comment li .link a i{ display:block; width:22px; height:22px; background:url(../image/message/video.png) no-repeat; position:absolute; left:5px; bottom:5px;}
.msgbox-body .comment li .reply{ padding-top:10px; float:none; clear:both; position:relative; display:none; height:32px; overflow:visible}
.msgbox-body .comment li .reply input.text{ position:absolute; top:10px; left:0; width:374px; padding:7px 31px 7px 5px; margin:0; border:1px solid #ececec; height:16px; font-size:12px; font-family:inherit; color:#666; overflow:hidden}
.msgbox-body .comment li .reply input.sbmt{ position:absolute; top:10px; right:0; padding:0; margin:0; border:none; height:32px; width:68px;font-size:12px;font-family:inherit; cursor:pointer; background:#0096e6; color:#fff;}
.msgbox-body .comment li .reply a.face-icon{ display:block; position:absolute; width:16px; height:16px; background:url(../image/icon.png) -31px -28px no-repeat; top:18px;right:76px;}
.msgbox-body .comment li .reply a.face-icon:hover{background-position:0 -28px;}
.msgbox-body .comment li .reply .face_parent_div{ overflow:visible; width:100%; margin:0; padding:0; height:0; clear:both;}
.msgbox-body .comment li .face_parent_div .talkPop{top:32px !important; left:81px !important;}
.msgbox-body .comment li .face_parent_div .talkPop .arrow{left:auto !important; right:75px !important;}
.msgbox-body .fright{position:absolute; top:40px;right:-108px; width:44px; height:auto; overflow:visible}
.msgbox-body .checked_user{ position:absolute; left:0; top:0;}
.msgbox-body .checked_user li{ width:20px; height:20px; border-radius:50%; margin-bottom:10px;}
.msgbox-body .checked_user li img{ width:100%; width:100%; border-radius:50%;}
.msgbox-body .first-letter{ position:absolute; right:0; top:0;}
.msgbox-body .first-letter li{ width:16px; height:16px; line-height:16px; text-align:center}
.msgbox-body .first-letter li a{color:#ccc; display:block; font-family:Arial,sans-serif}
.msgbox-body .first-letter li a:hover{color:#666;}
.msgbox-body .friends{ padding:20px 0; font-size:12px;-moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;-khtml-user-select: none;user-select: none; position:relative}
.msgbox-body .friends dt{ font-size:12px; color:#ccc; height:22px; line-height:22px; overflow:hidden; border-bottom:1px solid #eee; text-indent:5px;font-family:Arial,sans-serif}
.msgbox-body .friends dd{*zoom:1;border-bottom:1px solid #eee;}
.msgbox-body .friends dd:after{display:block; height:0; content:"."; clear:both; overflow:hidden; visibility:hidden}
.msgbox-body .friends dd .lt,.msgbox-body .friends dd .rt{height:64px;overflow:hidden; position:relative}
.msgbox-body .friends dd .lt{float:left;width:238px;border-right:1px solid #eee;}
.msgbox-body .friends dd .rt{float:right;width:232px;}
.msgbox-body .friends dd .face{ width:44px; height:44px; border-radius:50%; overflow:hidden; position:absolute; left:0; top:10px;}
.msgbox-body .friends dd .face img{ width:100%; height:100%; border-radius:50%;}
.msgbox-body .friends dd .uname{position:absolute;height:24px;line-height:24px;top:20px;left:54px;}
.msgbox-body .friends dd .uname a{color:#111;}
.msgbox-body .friends .checkbox{ width:20px; height:20px; border:1px solid #ddd; border-radius:50%; position:absolute; top:50%; margin-top:-10px; background:#fff; right:15px; cursor:pointer; line-height:20px; text-align:center; color:#fff; font-size:14px;}
.msgbox-body .friends .checked{ background:#0096e6; }
.msgbox-body .room-list{ font-size:12px;-moz-user-select: none;-webkit-user-select: none;-ms-user-select: none;-khtml-user-select: none;user-select: none;}
.msgbox-body .room-list li{padding:20px 0; border-bottom:1px solid #eee; position:relative; min-height:40px; *height:40px; overflow:hidden;}
.msgbox-body .room-list .clear{position:absolute;top:20px;right:5px;line-height:20px;display:none;}
.msgbox-body .room-list .clear a{color:#666;}
.msgbox-body .room-list li:hover .clear{ display:block}
.msgbox-body .room-list .face{ width:40px; height:40px; border-radius:50%; position:absolute;top:20px; left:0;}
.msgbox-body .room-list .face img{ width:100%; height:100%; border-radius:50%;}
.msgbox-body .room-list .face i{ position:absolute; top:-1px; right:-1px; display:block; width:16px; height:16px; background-color:#c00; border-radius:50%; color:#fff; font-style:normal; text-align:center; line-height:16px;}
.msgbox-body .room-list .detail{ padding-left:54px; line-height:20px;}
.msgbox-body .room-list .detail .uname a{color:#111;}
.msgbox-body .room-list .detail .uname span{ padding-left:8px;color:#666}
.msgbox-body .room-list .detail .content{color:#666;}
.msgbox-body .room-list .detail .hight{color:#0096e6;}
.msgbox-body .msg-list{*zoom:1; padding:10px 0 20px 0; font-size:12px;}
.msgbox-body .msg-list li.msg{ width:360px; padding:10px 60px 0 60px;}
.msgbox-body .msg-list:after,.msgbox-body .msg-list li.msg:after{display:block; height:0; content:"."; clear:both; overflow:hidden; visibility:hidden}
.msgbox-body .msg-list li.msg .left{float:left; width:auto; position:relative;min-height:44px; padding-left:60px; margin-left:-60px;}
.msgbox-body .msg-list li.msg .right{float:right; width:auto; position:relative;min-height:44px; padding-right:60px; margin-right:-60px;}
.msgbox-body .msg-list li.msg .face{position:absolute;top:0;width:44px; height:44px; border-radius:50%;}
.msgbox-body .msg-list li.msg .face img{ width:100%; height:100%; border-radius:50%;}
.msgbox-body .msg-list li.msg .left .face{ left:0;}
.msgbox-body .msg-list li.msg .right .face{ right:0;}
.msgbox-body .msg-list li.msg .content{background:#ffffff; line-height:22px; padding:10px; border:1px solid #ebebeb;color:#555; border-radius:5px; position:relative;word-break:break-all;word-wrap:break-word; min-height:22px;}
.msgbox-body .msg-list li.msg .content .arrow{ position:absolute;top:17px; width:5px; height:11px; font-size:0; background:url(../image/message/icons.png) no-repeat 0 0}
.msgbox-body .msg-list li.msg .content img{max-width:100%;}
.msgbox-body .msg-list li.msg .left .content{ background:#fafafa;}
.msgbox-body .msg-list li.msg .right .content{ background:#ffffff;}
.msgbox-body .msg-list li.msg .left .arrow{left:-5px; background-position:0 0;}
.msgbox-body .msg-list li.msg .right .arrow{right:-5px; background-position:0 -26px; background-color:#fff}
.msgbox-body .msg-list li.msg .content .image,.msgbox-body .msg-list li.msg .content .position{ margin:-8px;}
.msgbox-body .msg-list li.msg .content .image a,.msgbox-body .msg-list li.msg .content .position a{ display:block; width:auto; height:auto; position:relative;}
.msgbox-body .msg-list li.msg .content .image img,.msgbox-body .msg-list li.msg .content .position img{}
.msgbox-body .msg-list li.msg .content .position a span{ display:block; position:absolute; height:30px; width:100%; left:0; bottom:0; line-height:30px; overflow:hidden;background-color:rgba(0,0,0,0.6); color:#fff; text-align:center;}
.msgbox-body .msg-list li.msg .voice{height:42px; line-height:42px; margin:-10px;}
.msgbox-body .msg-list li.msg .voice a{ display:block; background:url(../image/message/icons.png) no-repeat 0 0; color:#999;}
.msgbox-body .msg-list li.msg .left .voice a{ background-position:left -47px; text-align:right; padding:0 10px 0 60px;}
.msgbox-body .msg-list li.msg .right .voice a{ background-position:right -89px; text-align:left; padding:0 60px 0 10px;}
.msgbox-body .msg-list li.msg .left .voice .play{background:url(../image/message/playl.gif) no-repeat left 10px;}
.msgbox-body .msg-list li.msg .right .voice .play{background:url(../image/message/playr.gif) no-repeat right 10px;}
.msgbox-body .msg-list li.msg .card{ display:block;}
.msgbox-body .msg-list li.msg .card .title{ height:22px; line-height:22px; border-bottom:1px solid #ebebeb; font-size:12px;color:#555; font-weight:normal}
.msgbox-body .msg-list li.msg .card .detail{ padding-top:10px; position:relative; min-width:200px;}
.msgbox-body .msg-list li.msg .card .card-face{ width:44px; height:44px; border-radius:50%; overflow:hidden; position:absolute; top:10px; left:0;}
.msgbox-body .msg-list li.msg .card .card-face img{ width:100%; height:100%; border-radius:50%;}
.msgbox-body .msg-list li.msg .card .card-text{ padding-left:54px; line-height:22px; height:44px; overflow:hidden; color:#555;}
.msgbox-body .msg-list li.msg .card .card-text a{color:#555}
.msgbox-body .msg-list li.info{ text-align:center;color:#bbb; padding:10px 60px 0 60px;}
.msgbox-body .msg-list li.info a{color:#999;}
.msgbox-body .msg-list li.more{ text-align:center;color:#ccc; padding:0 60px 0 60px;}
.msgbox-body .msg-list li.more a{color:#555;}
.msgbox-footer .msg-inputs{ height: 28px; width:480px; margin:0 auto; position:relative; }
.msgbox-footer .msg-inputs form{position:relative; display:block;}
.msgbox-footer .msg-inputs .face_box{ position:relative}
.msgbox-footer .msg-inputs .face_box .arrow-t{ display:none !important;}
.msgbox-footer .msg-inputs .face_box #emotions{top: -163px !important; left: 0 !important; z-index: 1 !important; margin:0 !important;}
.msgbox-footer .msg-inputs .face_box .wrap-layer{-webkit-box-shadow:none;box-shadow:none;}
.msgbox-footer .msg-inputs #message_input{ height:26px; border:1px solid #ddd; vertical-align:middle; line-height:26px; width:340px; padding:0 9px; color:#555; font-family:inherit; font-size:12px;}
.msgbox-footer .msg-inputs #message_input:focus{border-color:#bbb}
.msgbox-footer .msg-inputs .btns{ position:absolute; top:3px; right:0; width:44px; height:20px; overflow:hidden; font-size:12px; color:#999; display:block; line-height:20px; text-align:right; cursor:pointer }
.msgbox-footer .msg-inputs .btns i{ display:inline-block; height:20px; width:20px; background:url(../image/icon.png) no-repeat 0 0; position:absolute;top:0; left:0;}
.msgbox-footer .msg-inputs #face_input{right:60px;}
.msgbox-footer .msg-inputs #face_input i{background-position:-31px -26px}
.msgbox-footer .msg-inputs #face_input:hover i{background-position:0 -26px}
.msgbox-footer .msg-inputs #img_input i{background-position:-31px -59px}
.msgbox-footer .msg-inputs #img_input:hover i{background-position:0 -59px}
.msgbox-footer .msg-inputs #file_input{filter:alpha(opacity=0); opacity:0; cursor:pointer !important}
.msgbox-body .pagelist{ padding:20px 0; text-align:center}
.msgbox-body .pagelist a{ padding:5px 10px; display:inline-block; border:1px solid #eee; margin-right:9px; border-radius:3px; color:#0096e6;}
.msgbox-body .pagelist a:hover{ background:#eee}
.msgbox-body .pagelist a.current{ background:#0096e6; color:#fff; cursor:default}
.msgbox-body .empty-list{ height:50px; line-height:50px; color:#999; text-align:center}
/*
* Tooltip
*/
#message-taskbar .message-list li {overflow: visible !important}
.tooltip {
letter-spacing: 0;
position: relative;
display: inline-block
}
.tooltip:before,
.tooltip:after {
position: absolute;
visibility: hidden;
opacity: 0;
z-index: 999999;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0)
}
.tooltip:before {
content: '';
border: 6px solid transparent;
}
.tooltip:after {
height: 22px;
padding: 11px 11px 0 11px;
font-size: 13px;
line-height: 11px;
content: attr(data-tooltip);
white-space: nowrap;
background-color: rgba(0, 0, 0, 0.5)!important;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
font-family: Avenir, Microsoft Yahei, Hiragino Sans GB, Microsoft Sans Serif, WenQuanYi Micro Hei, sans-serif;
font-weight: normal;
color: #ecf0f1;
-webkit-transform: translate(-50%, 0px);
-moz-transform: translate(-50%, 0px);
-ms-transform: translate(-50%, 0px);
-o-transform: translate(-50%, 0px);
transform: translate(-50%, 0px)
}
.tooltip.tip-top:before,
.tooltip.tip-top:after,
.tooltip.tip-bottom:before,
.tooltip.tip-bottom:after,
.tooltip.tip-left:before,
.tooltip.tip-left:after,
.tooltip.tip-right:before,
.tooltip.tip-right:after {
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out
}
.tooltip.tip-top:before {
border-top-color: rgba(0, 0, 0, 0.5)
}
.tooltip.tip-bottom:before {
border-bottom-color: rgba(0, 0, 0, 0.5)
}
.tooltip.tip-left:before {
border-left-color: rgba(0, 0, 0, 0.5);
-webkit-transform: translate(-100%, 0px);
-moz-transform: translate(-100%, 0px);
-ms-transform: translate(-100%, 0px);
-o-transform: translate(-100%, 0px);
transform: translate(-100%, 0px)
}
.tooltip.tip-right:before {
border-right-color: rgba(0, 0, 0, 0.5)
}
.tooltip:hover,
.tooltip:focus {
background-color: transparent
}
.tooltip:hover .tip-left:before,
.tooltip:hover .tip-left:after,
.tooltip:focus .tip-left:before,
.tooltip:focus .tip-left:after {
opacity: 1;
visibility: visible;
-webkit-transform: translate(0%, 0px);
-moz-transform: translate(0%, 0px);
-ms-transform: translate(0%, 0px);
-o-transform: translate(0%, 0px);
transform: translate(0%, 0px)
}
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
opacity: 1;
visibility: visible;
-webkit-transform: translate(0%, 0px);
-moz-transform: translate(0%, 0px);
-ms-transform: translate(0%, 0px);
-o-transform: translate(0%, 0px);
transform: translate(0%, 0px)
}
.tip-right:before,
.tip-left:before,
.tip-right:after,
.tip-left:after {
bottom: 50%
}
.tip-right:before,
.tip-left:before {
margin-bottom: -5px
}
.tip-right:after,
.tip-left:after {
margin-bottom: -14.66667px
}
.tip-right:before,
.tip-right:after {
left: 100%
}
.tip-right:before {
margin-left: -2px
}
.tip-right:after {
margin-left: 10px
}
.tip-left:before,
.tip-left:after {
right: 100%
}
.tip-left:before {
margin-right: -2px
}
.tip-left:after {
margin-right: 10px
}
.tip-bottom:before,
.tip-top:before,
.tip-bottom:after,
.tip-top:after {
left: 50%;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
transform: translateX(-50%)
}
.tip-bottom:after,
.tip-top:after {
width: auto
}
.tip-bottom:before,
.tip-bottom:after {
top: 100%
}
.tip-bottom:before {
margin-top: -5px
}
.tip-bottom:after {
margin-top: 7px
}
.tip-bottom:hover:before,
.tip-bottom:hover:after {
-webkit-transform: translate(-50%, 0);
-moz-transform: translate(-50%, 0);
-ms-transform: translate(-50%, 0);
-o-transform: translate(-50%, 0);
transform: translate(-50%, 0)
}
.tip-top:before,
.tip-top:after {
bottom: 100%
}
.tip-top:before {
margin-bottom: -5px
}
.tip-top:after {
margin-bottom: 7px
}
.tip-top:hover:before,
.tip-top:hover:after {
-webkit-transform: translate(-50%, 0px);
-moz-transform: translate(-50%, 0px);
-ms-transform: translate(-50%, 0px);
-o-transform: translate(-50%, 0px);
transform: translate(-50%, 0px)
}
/*隐藏后的呼吸灯*/
@keyframes breathe {
0% {
opacity: .2;
box-shadow:0 1px 2px rgba(255,255,255,0.1);
}
100% {
opacity: 1;
border:1px solid rgba(59,235,235,1);
box-shadow:0 1px 30px rgba(59,255,255,1);
}
}
@-moz-keyframes breathe {
0% {
opacity: .2;
box-shadow:0 1px 2px rgba(255,255,255,0.1);
}
100% {
opacity: 1;
border:1px solid rgba(59,235,235,1);
box-shadow:0 1px 30px rgba(59,255,255,1);
}
}
@-o-keyframes breathe {
0% {
opacity: .2;
box-shadow:0 1px 2px rgba(255,255,255,0.1);
}
100% {
opacity: 1;
border:1px solid rgba(59,235,235,1);
box-shadow:0 1px 30px rgba(59,255,255,1);
}
}
@-webkit-keyframes breathe {
0% {
opacity: .2;
box-shadow:0 1px 2px rgba(255,255,255,0.1);
}
100% {
opacity: 1;
border:1px solid rgba(59,235,235,1);
box-shadow:0 1px 30px rgba(59,255,255,1);
}
}
.smartButton {
display: block;
position: absolute;
width: 20px;
height: 40px;
background-color: #303030;
left: -22px;
top: 50%;
margin-top: -20px;
padding: 10px 0 10px 0;
border-radius: 10px;
cursor:pointer;
}
.smartButton:focus,
.smartButton:hover
{
background-color: #303030;
}
.smartButton i {
display: block;
width: 5px;
height: 100%;
background: #303030;
margin: 0 auto;
border-radius: 5px;
border:1px solid #2b92d4;
color:#fff;
font-size:20px;
text-align:center;
box-shadow:0 1px 2px rgba(0,0,0,.3);
overflow:hidden;
opacity: .2;
box-shadow:0 1px 2px rgba(255,255,255,0.1);
background-color: #6cc3fe;
}
.message-breathe i {
background-image:
gradient(linear, left top, left bottom, from(#6cc3fe), to(#21a1d0));
-webkit-gradient(linear, left top, left bottom, from(#6cc3fe), to(#21a1d0));
-moz-gradient(linear, left top, left bottom, from(#6cc3fe), to(#21a1d0));
-o-gradient(linear, left top, left bottom, from(#6cc3fe), to(#21a1d0));
animation: breathe 1500ms ease-in-out infinite alternate;
-webkit-animation: breathe 1500ms ease-in-out infinite alternate;
-moz-animation: breathe 1500ms ease-in-out infinite alternate;
-o-animation: breathe 1500ms ease-in-out infinite alternate;
}
/* # 联系人搜索按钮 */
.medz-message-s {
width: 190px;
height: 24px;
margin-left: 35px;
background-color: #fff;
outline: none;
resize: none;
box-shadow: none;
border-style: solid;
border-color: #C7C4C4;
border-width: 1px;
padding: 0 5px;
} | 0.285472 | 0.097347 |
* {
margin: 0px;
padding: 0px;
}
body {
padding-top: 0px;
background:url("images/bg.png") #000;
color: #FFF;
font-family: verdana, arial, sans-serif;
text-align: left;
letter-spacing: 1px;
}
a {color: #A92332;font-size: 14px;text-decoration:none;}
a:hover {color: #01a9c0;}
.more{float: right; font-size: 11px; color: #add8f9; font-weight: bold; text-decoration: none;}
.clear{clear:both;}
p{ margin: 20px 0px 20px 0px;line-height: 16px;font-size: 14px;}
#container {
margin-left: auto ;
margin-right: auto ;
width:873px;
}
.success
{
color:green;
}
.fail
{
color:red;
}
#Main-Container{
width:750px;
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
box-shadow: 3px 3px 4px #000;
-webkit-box-shadow: 2px 2px 3px #000;
-moz-box-shadow: 2px 2px 3px #000;
border: solid 4px #FFF;
margin-left: auto ;
margin-right: auto ;
}
#logo {
width:500px;
text-align:center;
margin-left: auto ;
margin-right: auto ;
}
#Main{
width:650px;
height: 500px;
margin-left: auto ;
margin-right: auto ;
}
#Main h2{
color: #d4e5f2;
font-family: Arial;
font-size: 18px;
padding: 0 0 10px 5px;
}
#left {
float:left;
width:435px;
margin: 0px 0px 0px 85px;
display:inline;
}
#right {
float:right;
width:258px;
height:auto;
margin: 0px 62px 20px 0px;
display:inline;
}
#right a img{
margin: 8px 8px 8px 0px;
border: none 0px #FFFFFF;
}
#menu-bar {
width:680px;
margin: 0px 0px 0px 0px;
padding: 6px 6px 0px 6px;
height: 34px;
line-height: 100%;
border-radius: 15px 15px 0px 0px;
-webkit-border-radius: 24px;
-moz-border-radius: 24px;
box-shadow: 2px 2px 3px #666666;
-webkit-box-shadow: 2px 2px 3px #666666;
-moz-box-shadow: 2px 2px 3px #666666;
background: #000000;
border: solid 4px #FFF;
border-bottom:none;
}
#menu-bar li {
margin: 0 2px;
padding: 0 0 2px;
float: left;
position: relative;
list-style: none;
}
#menu-bar a {
font-weight: bold;
font-family: arial;
font-style: normal;
font-size: 12px;
color: #E7E5E5;
text-decoration: none;
display: block;
padding: 8px 15px;
margin: 0;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
text-shadow: 2px 2px 3px #000000;
}
#menu-bar .current a, #menu-bar li:hover > a {
background: #027BAB;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#10D5EB, endColorstr=#0883FF);
background: -webkit-gradient(linear, left top, left bottom, from(#10D5EB), to(#0883FF));
background: -moz-linear-gradient(top, #10D5EB, #0883FF);
color: #000000;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
text-shadow: 2px 2px 3px #FFFFFF;
}
#menu-bar ul li:hover a, #menu-bar li:hover li a {
background: none;
border: none;
color: #666;
-box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
}
#menu-bar ul a:hover {
background: #0399D4 !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#10D5EB, endColorstr=#0883FF);
background: -webkit-gradient(linear, left top, left bottom, from(#10D5EB), to(#0883FF)) !important;
background: -moz-linear-gradient(top, #10D5EB, #0883FF) !important;
color: #000000 !important;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
text-shadow: 2px 2px 3px #FFFFFF;
}
#menu-bar ul {
background: #DDDDDD;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFF, endColorstr=#CFCFCF);
background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#CFCFCF));
background: -moz-linear-gradient(top, #FFFFFF, #CFCFCF);
display: none;
margin: 0;
padding: 0;
width: 250px;
position: absolute;
top: 30px;
left: 0;
border: solid 1px #B4B4B4;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-box-shadow: 2px 2px 3px #222222;
-moz-box-shadow: 2px 2px 3px #222222;
box-shadow: 2px 2px 3px #222222;
}
#menu-bar li:hover > ul {
display: block;
}
#menu-bar ul li {
float: none;
margin: 0;
padding: 0;
}
#menu-bar ul a {
padding:5px 0 5px 8px;
color:#424242 !important;
font-size:12px;
font-style:normal;
font-family:arial;
font-weight: normal;
text-shadow: 2px 2px 3px #FFFFFF;
}
#menu-bar ul li:first-child > a {
border-top-left-radius: 10px;
-webkit-border-top-left-radius: 10px;
-moz-border-radius-topleft: 10px;
border-top-right-radius: 10px;
-webkit-border-top-right-radius: 10px;
-moz-border-radius-topright: 10px;
}
#menu-bar ul li:last-child > a {
border-bottom-left-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-bottomleft: 10px;
border-bottom-right-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
-moz-border-radius-bottomright: 10px;
}
#menu-bar:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
#menu-bar {
display: inline-block;
}
html[xmlns] #menu-bar {
display: block;
}
* html #menu-bar {
height: 1%;
}
#menu-bar ul li ul {
left: 100%; top:0;
background:#FFf;
} | src/main/webapp/style.css | * {
margin: 0px;
padding: 0px;
}
body {
padding-top: 0px;
background:url("images/bg.png") #000;
color: #FFF;
font-family: verdana, arial, sans-serif;
text-align: left;
letter-spacing: 1px;
}
a {color: #A92332;font-size: 14px;text-decoration:none;}
a:hover {color: #01a9c0;}
.more{float: right; font-size: 11px; color: #add8f9; font-weight: bold; text-decoration: none;}
.clear{clear:both;}
p{ margin: 20px 0px 20px 0px;line-height: 16px;font-size: 14px;}
#container {
margin-left: auto ;
margin-right: auto ;
width:873px;
}
.success
{
color:green;
}
.fail
{
color:red;
}
#Main-Container{
width:750px;
border-radius: 15px;
-webkit-border-radius: 15px;
-moz-border-radius: 15px;
box-shadow: 3px 3px 4px #000;
-webkit-box-shadow: 2px 2px 3px #000;
-moz-box-shadow: 2px 2px 3px #000;
border: solid 4px #FFF;
margin-left: auto ;
margin-right: auto ;
}
#logo {
width:500px;
text-align:center;
margin-left: auto ;
margin-right: auto ;
}
#Main{
width:650px;
height: 500px;
margin-left: auto ;
margin-right: auto ;
}
#Main h2{
color: #d4e5f2;
font-family: Arial;
font-size: 18px;
padding: 0 0 10px 5px;
}
#left {
float:left;
width:435px;
margin: 0px 0px 0px 85px;
display:inline;
}
#right {
float:right;
width:258px;
height:auto;
margin: 0px 62px 20px 0px;
display:inline;
}
#right a img{
margin: 8px 8px 8px 0px;
border: none 0px #FFFFFF;
}
#menu-bar {
width:680px;
margin: 0px 0px 0px 0px;
padding: 6px 6px 0px 6px;
height: 34px;
line-height: 100%;
border-radius: 15px 15px 0px 0px;
-webkit-border-radius: 24px;
-moz-border-radius: 24px;
box-shadow: 2px 2px 3px #666666;
-webkit-box-shadow: 2px 2px 3px #666666;
-moz-box-shadow: 2px 2px 3px #666666;
background: #000000;
border: solid 4px #FFF;
border-bottom:none;
}
#menu-bar li {
margin: 0 2px;
padding: 0 0 2px;
float: left;
position: relative;
list-style: none;
}
#menu-bar a {
font-weight: bold;
font-family: arial;
font-style: normal;
font-size: 12px;
color: #E7E5E5;
text-decoration: none;
display: block;
padding: 8px 15px;
margin: 0;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
text-shadow: 2px 2px 3px #000000;
}
#menu-bar .current a, #menu-bar li:hover > a {
background: #027BAB;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#10D5EB, endColorstr=#0883FF);
background: -webkit-gradient(linear, left top, left bottom, from(#10D5EB), to(#0883FF));
background: -moz-linear-gradient(top, #10D5EB, #0883FF);
color: #000000;
-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
box-shadow: 0 1px 1px rgba(0, 0, 0, .2);
text-shadow: 2px 2px 3px #FFFFFF;
}
#menu-bar ul li:hover a, #menu-bar li:hover li a {
background: none;
border: none;
color: #666;
-box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
}
#menu-bar ul a:hover {
background: #0399D4 !important;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#10D5EB, endColorstr=#0883FF);
background: -webkit-gradient(linear, left top, left bottom, from(#10D5EB), to(#0883FF)) !important;
background: -moz-linear-gradient(top, #10D5EB, #0883FF) !important;
color: #000000 !important;
border-radius: 0;
-webkit-border-radius: 0;
-moz-border-radius: 0;
text-shadow: 2px 2px 3px #FFFFFF;
}
#menu-bar ul {
background: #DDDDDD;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#FFFFFF, endColorstr=#CFCFCF);
background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#CFCFCF));
background: -moz-linear-gradient(top, #FFFFFF, #CFCFCF);
display: none;
margin: 0;
padding: 0;
width: 250px;
position: absolute;
top: 30px;
left: 0;
border: solid 1px #B4B4B4;
border-radius: 10px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-box-shadow: 2px 2px 3px #222222;
-moz-box-shadow: 2px 2px 3px #222222;
box-shadow: 2px 2px 3px #222222;
}
#menu-bar li:hover > ul {
display: block;
}
#menu-bar ul li {
float: none;
margin: 0;
padding: 0;
}
#menu-bar ul a {
padding:5px 0 5px 8px;
color:#424242 !important;
font-size:12px;
font-style:normal;
font-family:arial;
font-weight: normal;
text-shadow: 2px 2px 3px #FFFFFF;
}
#menu-bar ul li:first-child > a {
border-top-left-radius: 10px;
-webkit-border-top-left-radius: 10px;
-moz-border-radius-topleft: 10px;
border-top-right-radius: 10px;
-webkit-border-top-right-radius: 10px;
-moz-border-radius-topright: 10px;
}
#menu-bar ul li:last-child > a {
border-bottom-left-radius: 10px;
-webkit-border-bottom-left-radius: 10px;
-moz-border-radius-bottomleft: 10px;
border-bottom-right-radius: 10px;
-webkit-border-bottom-right-radius: 10px;
-moz-border-radius-bottomright: 10px;
}
#menu-bar:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
#menu-bar {
display: inline-block;
}
html[xmlns] #menu-bar {
display: block;
}
* html #menu-bar {
height: 1%;
}
#menu-bar ul li ul {
left: 100%; top:0;
background:#FFf;
} | 0.157525 | 0.073099 |
@charset "utf-8";
/*
* Copyright (C) 2015 NS Solutions Corporation, All Rights Reserved.
*/
html, body {
width: 100%;
height: 100%;
overflow: hidden;
}
.box {
border: 2px gray solid;
border-radius: 10px;
background-color: white;
padding: 5px;
}
#main {
width: 100%;
height: 100%;
margin-top: -40px;
padding: 40px 15px 15px 15px;
}
.dividedbox {
width: 100%;
height: 100%;
}
/* DividedBox */
.dividedBox .dividerHandler {
display: none !important;
}
.dividedBox > .divider {
background-color: #E2E2E2;
}
.row {
overflow-x: hidden;
overflow-y: scroll;
max-height: 700px;
}
.tab-pane > .row {
margin: 0;
}
#imageDiffContainer {
width: 75%;
height: 100%;
margin-left: 8px;
}
#imageDiffContainer .panel-body {
height: 100%;
}
#expected-mode {
height: 100%;
overflow-y: auto;
}
#actual-mode, #actual-mode .tab-pane {
height: 100%;
}
#actual-mode .tab-content {
height: calc(100% - 42px);
}
#actual-mode .tab-pane .row:nth-child(2) {
height: calc(100% - 45px);
}
.image-diff {
padding: 0;
}
.image-diff img {
width: 100%;
}
/* detail area */
.legend {
vertical-align: top;
}
.legend.expected {
color: blue;
vertical-align: top;
}
.legend.actual {
color: red;
}
.label-row {
height: 45px;
position: relative;
overflow-y: hidden;
padding-right: 17px;
}
.handle .actual {
float: right;
}
.label-row > .image-label {
font-size: 14pt;
color: #ffffff;
text-align: center;
margin: 18px 0 0;
}
.expected img {
border: 1px solid blue;
}
.actual img {
border: 1px solid red;
}
.expected .image-label {
background: #0000ff;
}
.actual .image-label {
background: #ff0000;
}
.image-overlay {
position: relative;
}
.image-overlay .expected {
position: absolute;
overflow: hidden;
width: 100%;
left: 0;
top: 0;
}
.image-overlay .swipe-bar {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 1px;
background-color: gray;
}
#quick-flipping .image-diff.image-label {
cursor: pointer;
}
#edge-overlapping .large {
width: 175px;
height: 175px;
position: absolute;
border-radius: 100%;
background: white no-repeat;
box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85),
0 0 7px 7px rgba(0, 0, 0, 0.25),
inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
display: none;
}
#edge-overlapping canvas {
max-width: 100%;
}
#edge-overlapping .label-row > div {
position: absolute;
top: 50%;
margin: -0.5em 0 0;
}
#edge-overlapping .legend {
display: inline-table;
text-align: center;
margin: 0 10px 0 0;
}
#edge-overlapping .legend:after {
content: '';
display: table-cell;
width: 70px;
background: -webkit-linear-gradient(transparent 50%, currentColor 50%, currentColor -webkit-calc(50% + 1px), transparent -webkit-calc(50% + 1px));
background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, currentColor), color-stop(currentColor calc(50% + 1px)), to(transparent calc(50% + 1px)));
background: linear-gradient(transparent 50%, currentColor 50%, currentColor calc(50% + 1px), transparent calc(50% + 1px));
}
#edge-overlapping .legend:after {
border-left: 1em solid transparent;
}
#edge-overlapping .image-diff {
border: 1px solid rgb(216, 216, 216);
}
.image-selector-row {
height: 45px;
}
.image-selector {
width: auto
}
.glyphicon.glyphicon-file.actual {
color: red;
}
.glyphicon.glyphicon-file.actual.none {
opacity: 0.1
}
.glyphicon.glyphicon-file.expected {
color: blue;
}
.glyphicon.glyphicon-file.expected.none {
opacity: 0.1
}
/* File upload */
#fileUploadContainer {
position: absolute;
width: 100%;
height: 100%;
top: 0;
z-index: 1500;
cursor: not-allowed;
}
.file-upload-container {
position: absolute;
border: 8px solid gray;
border-radius: 6px;
}
.file-upload {
position: relative;
float: left;
width: 50%;
height: 100%;
opacity: 0.5;
}
.file-upload.expected {
background: blue;
}
.file-upload.actual {
background: red;
}
.container-over {
z-index: 100;
}
.active {
opacity: 0.8;
}
/* Image list */
#imageListContainer {
width: 20%;
margin-right: 8px;
}
.image-list {
height: 50%;
}
.image-list.expected {
padding-bottom: 10px;
}
.image-list.actual {
padding-top: 10px;
}
.image-list .panel {
width: 100%;
height: 100%;
margin-top: 0;
margin-bottom: 0;
}
.image-list .panel-heading {
padding-top: 8px;
padding-bottom: 8px;
}
.btn-select-execution {
position: absolute;
right: 15px;
padding: 3px 10px;
margin-top: -3px;
}
.image-list .panel-body {
height: 100%;
padding: 10px 5px 50px 0;
}
.image-list .scrollable {
height: 100%;
overflow-x: hidden;
overflow-y: auto;
}
.image-list .tree-root {
font-size: 0.9em;
}
/* Popup */
#executionList {
height: 400px;
overflow-x: hidden;
overflow-y: auto;
}
#executionList tr.selected {
background: #d9edf7; /* TODO */
} | pitalium-explorer/src/main/webapp/src/fileDiff/fileDiff.css | @charset "utf-8";
/*
* Copyright (C) 2015 NS Solutions Corporation, All Rights Reserved.
*/
html, body {
width: 100%;
height: 100%;
overflow: hidden;
}
.box {
border: 2px gray solid;
border-radius: 10px;
background-color: white;
padding: 5px;
}
#main {
width: 100%;
height: 100%;
margin-top: -40px;
padding: 40px 15px 15px 15px;
}
.dividedbox {
width: 100%;
height: 100%;
}
/* DividedBox */
.dividedBox .dividerHandler {
display: none !important;
}
.dividedBox > .divider {
background-color: #E2E2E2;
}
.row {
overflow-x: hidden;
overflow-y: scroll;
max-height: 700px;
}
.tab-pane > .row {
margin: 0;
}
#imageDiffContainer {
width: 75%;
height: 100%;
margin-left: 8px;
}
#imageDiffContainer .panel-body {
height: 100%;
}
#expected-mode {
height: 100%;
overflow-y: auto;
}
#actual-mode, #actual-mode .tab-pane {
height: 100%;
}
#actual-mode .tab-content {
height: calc(100% - 42px);
}
#actual-mode .tab-pane .row:nth-child(2) {
height: calc(100% - 45px);
}
.image-diff {
padding: 0;
}
.image-diff img {
width: 100%;
}
/* detail area */
.legend {
vertical-align: top;
}
.legend.expected {
color: blue;
vertical-align: top;
}
.legend.actual {
color: red;
}
.label-row {
height: 45px;
position: relative;
overflow-y: hidden;
padding-right: 17px;
}
.handle .actual {
float: right;
}
.label-row > .image-label {
font-size: 14pt;
color: #ffffff;
text-align: center;
margin: 18px 0 0;
}
.expected img {
border: 1px solid blue;
}
.actual img {
border: 1px solid red;
}
.expected .image-label {
background: #0000ff;
}
.actual .image-label {
background: #ff0000;
}
.image-overlay {
position: relative;
}
.image-overlay .expected {
position: absolute;
overflow: hidden;
width: 100%;
left: 0;
top: 0;
}
.image-overlay .swipe-bar {
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 1px;
background-color: gray;
}
#quick-flipping .image-diff.image-label {
cursor: pointer;
}
#edge-overlapping .large {
width: 175px;
height: 175px;
position: absolute;
border-radius: 100%;
background: white no-repeat;
box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.85),
0 0 7px 7px rgba(0, 0, 0, 0.25),
inset 0 0 40px 2px rgba(0, 0, 0, 0.25);
display: none;
}
#edge-overlapping canvas {
max-width: 100%;
}
#edge-overlapping .label-row > div {
position: absolute;
top: 50%;
margin: -0.5em 0 0;
}
#edge-overlapping .legend {
display: inline-table;
text-align: center;
margin: 0 10px 0 0;
}
#edge-overlapping .legend:after {
content: '';
display: table-cell;
width: 70px;
background: -webkit-linear-gradient(transparent 50%, currentColor 50%, currentColor -webkit-calc(50% + 1px), transparent -webkit-calc(50% + 1px));
background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, currentColor), color-stop(currentColor calc(50% + 1px)), to(transparent calc(50% + 1px)));
background: linear-gradient(transparent 50%, currentColor 50%, currentColor calc(50% + 1px), transparent calc(50% + 1px));
}
#edge-overlapping .legend:after {
border-left: 1em solid transparent;
}
#edge-overlapping .image-diff {
border: 1px solid rgb(216, 216, 216);
}
.image-selector-row {
height: 45px;
}
.image-selector {
width: auto
}
.glyphicon.glyphicon-file.actual {
color: red;
}
.glyphicon.glyphicon-file.actual.none {
opacity: 0.1
}
.glyphicon.glyphicon-file.expected {
color: blue;
}
.glyphicon.glyphicon-file.expected.none {
opacity: 0.1
}
/* File upload */
#fileUploadContainer {
position: absolute;
width: 100%;
height: 100%;
top: 0;
z-index: 1500;
cursor: not-allowed;
}
.file-upload-container {
position: absolute;
border: 8px solid gray;
border-radius: 6px;
}
.file-upload {
position: relative;
float: left;
width: 50%;
height: 100%;
opacity: 0.5;
}
.file-upload.expected {
background: blue;
}
.file-upload.actual {
background: red;
}
.container-over {
z-index: 100;
}
.active {
opacity: 0.8;
}
/* Image list */
#imageListContainer {
width: 20%;
margin-right: 8px;
}
.image-list {
height: 50%;
}
.image-list.expected {
padding-bottom: 10px;
}
.image-list.actual {
padding-top: 10px;
}
.image-list .panel {
width: 100%;
height: 100%;
margin-top: 0;
margin-bottom: 0;
}
.image-list .panel-heading {
padding-top: 8px;
padding-bottom: 8px;
}
.btn-select-execution {
position: absolute;
right: 15px;
padding: 3px 10px;
margin-top: -3px;
}
.image-list .panel-body {
height: 100%;
padding: 10px 5px 50px 0;
}
.image-list .scrollable {
height: 100%;
overflow-x: hidden;
overflow-y: auto;
}
.image-list .tree-root {
font-size: 0.9em;
}
/* Popup */
#executionList {
height: 400px;
overflow-x: hidden;
overflow-y: auto;
}
#executionList tr.selected {
background: #d9edf7; /* TODO */
} | 0.455199 | 0.081923 |
a#coffee-link, div#coffee-container {
border-radius: 4px;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-opera-border-radius: 4px;
-webkit-border-radius: 4px;
}
div#link a {
color: #EA9C00;
font: bold 10px verdana;
letter-spacing: .9px;
text-decoration: none;
}
div#link a:hover {
color: #DC5;
font: bold 10px verdana;
letter-spacing: .9px;
text-decoration: underline;
}
a#coffee-link {
background: url('../img/coffee.png') 6px 2px no-repeat;
border: 1px solid #D9C640;
color: #FFF;
display: block;
font: bold 10px verdana;
letter-spacing: .9px;
padding: 4px 5px 4px 26px;
text-decoration: none;
}
a#coffee-link:hover {
text-decoration: underline;
}
div#adsense {
font: 10px verdana;
color: #AB9927;
text-indent: 7px;
}
div#coffee-container {
background-color: #DC5;
float: right;
margin-right: 15px;
}
div.description {
font: 10px verdana;
color: #555;
letter-spacing: .1px;
margin-bottom: 10px;
text-indent: 7px;
text-align: left;
width: 99%;
}
div#link {
font: 10px verdana;
color: #AB9927;
text-indent: 7px;
}
div.notice {
font: 9px verdana;
color: #777;
letter-spacing: .1px;
margin-bottom: 3px;
text-indent: 7px;
text-align: left;
width: 99%;
}
div.session {
font: bold 13px verdana;
border-bottom: 1px solid #EFEFEF;
color: #444;
letter-spacing: .7px;
margin-bottom: 10px;
margin-top: 24px;
text-align: left;
width: 99%;
}
div.source {
background: #F8F8FF;
border: 1px solid #EFEFEF;
border-left: 3px solid #CCC;
color: #444;
font: 12px monospace;
letter-spacing: .1px;
margin-bottom: 7px;
margin-top: 5px;
padding: 7px;
width: 99%;
}
div.text {
font: 10px verdana;
color: #555;
letter-spacing: .1px;
margin-bottom: 20px;
margin-top: 5px;
text-align: left;
text-indent: 7px;
width: 99%;
}
div.title {
font: bold 17px verdana;
color: #269;
letter-spacing: .7px;
margin-bottom: 20px;
margin-top: 5px;
text-align: left;
width: 99%;
}
span.comment-html, span.comment-script {
font: 12px monospace;
letter-spacing: .1px;
margin-bottom: 7px;
margin-top: 5px;
}
span.comment-html {
color: #5e85de;
}
span.comment-script {
color: #578F73;
}
span#version {
color: #777;
font: 10px verdana;
} | static/lib/raty/css/raty_default.css | a#coffee-link, div#coffee-container {
border-radius: 4px;
-khtml-border-radius: 4px;
-moz-border-radius: 4px;
-opera-border-radius: 4px;
-webkit-border-radius: 4px;
}
div#link a {
color: #EA9C00;
font: bold 10px verdana;
letter-spacing: .9px;
text-decoration: none;
}
div#link a:hover {
color: #DC5;
font: bold 10px verdana;
letter-spacing: .9px;
text-decoration: underline;
}
a#coffee-link {
background: url('../img/coffee.png') 6px 2px no-repeat;
border: 1px solid #D9C640;
color: #FFF;
display: block;
font: bold 10px verdana;
letter-spacing: .9px;
padding: 4px 5px 4px 26px;
text-decoration: none;
}
a#coffee-link:hover {
text-decoration: underline;
}
div#adsense {
font: 10px verdana;
color: #AB9927;
text-indent: 7px;
}
div#coffee-container {
background-color: #DC5;
float: right;
margin-right: 15px;
}
div.description {
font: 10px verdana;
color: #555;
letter-spacing: .1px;
margin-bottom: 10px;
text-indent: 7px;
text-align: left;
width: 99%;
}
div#link {
font: 10px verdana;
color: #AB9927;
text-indent: 7px;
}
div.notice {
font: 9px verdana;
color: #777;
letter-spacing: .1px;
margin-bottom: 3px;
text-indent: 7px;
text-align: left;
width: 99%;
}
div.session {
font: bold 13px verdana;
border-bottom: 1px solid #EFEFEF;
color: #444;
letter-spacing: .7px;
margin-bottom: 10px;
margin-top: 24px;
text-align: left;
width: 99%;
}
div.source {
background: #F8F8FF;
border: 1px solid #EFEFEF;
border-left: 3px solid #CCC;
color: #444;
font: 12px monospace;
letter-spacing: .1px;
margin-bottom: 7px;
margin-top: 5px;
padding: 7px;
width: 99%;
}
div.text {
font: 10px verdana;
color: #555;
letter-spacing: .1px;
margin-bottom: 20px;
margin-top: 5px;
text-align: left;
text-indent: 7px;
width: 99%;
}
div.title {
font: bold 17px verdana;
color: #269;
letter-spacing: .7px;
margin-bottom: 20px;
margin-top: 5px;
text-align: left;
width: 99%;
}
span.comment-html, span.comment-script {
font: 12px monospace;
letter-spacing: .1px;
margin-bottom: 7px;
margin-top: 5px;
}
span.comment-html {
color: #5e85de;
}
span.comment-script {
color: #578F73;
}
span#version {
color: #777;
font: 10px verdana;
} | 0.252568 | 0.109563 |
@charset "utf-8";
body { margin:0px; font-size:12px; color:#000;
}
.word-1{ font-size:12px; color:#FFF; text-decoration:none}
.word-1 A{ font-size:12px; color:#FFF;text-decoration:none}
.word-2{ font-size:12px; color:#c14f02; font-weight:bold; text-decoration:none}
.word-2 A{ font-size:12px; color:#c14f02; font-weight:bold;text-decoration:none}
.word-3{ font-size:14px; color:#333333; font-family:"微软雅黑","宋体"; text-decoration:none;}
.word-3 A{ font-size:14px; color:#333333; font-family:"微软雅黑","宋体";text-decoration:none}
.word-4{ font-size:12px; color: #085b85; }
.word-4 A{ font-size:12px; color: #085b85; text-decoration:underline;}
.word-5{ font-size:12px;color: #085b85; }
.word-5 A{ font-size:12px;color: #085b85; }
.word-6{ color: #085b85; font-size:14px; }
.word-6 a{ color: #085b85; font-size:14px; }
.word-7{ font-size:12px; color: #ff4500; }
.word-7 A{ font-size:12px; color:#ff4500; text-decoration:underline;}
.word-8{ font-size:12px; color:#000;}
.word-9{ color: #000000; font-size:14px; }
.word-9 a{ color: #000000; font-size:14px; }
.topdiv{height:109px; background:url(../images/top-bg.jpg) repeat-x top}
.topdiv-1{height:109px; background:url(../images/top-left.jpg) no-repeat left;}
.topdiv-2{height:109px; background:url(../images/top-right.jpg) no-repeat right;}
.leftdiv-bt-1 td{padding-left:10px; width:154px; font-size:12px; font-weight:bold; color:#426273;background:url(../images/left-2.jpg) no-repeat left; text-align:left;}
.leftdiv-bt-2 td{padding-left:10px; width:154px; font-size:12px; font-weight:bold; color:#426273;background:url(../images/left-1.jpg) no-repeat left; text-align:left;}
.td-line-1{ border-bottom:1px dotted #ffffff; background:url(../images/left-5.jpg) no-repeat 2px 7px; padding-left:11px;}
.td-line-2{ border-bottom:1px dotted #ffffff; background:url(../images/left-6.jpg) no-repeat 2px 7px; padding-left:11px;}
.mar-t{ margin-top:2px;}
.td-bg{background:url(../images/right-2.jpg); background-color:#FFFfff}
.td-bg-2{background:url(../images/right-2.jpg) repeat-y left top; background-color:#FFFfff}
.td-bg-1{ background:url(../images/right-7.jpg) no-repeat right center;}
.bor-1{ border:1px solid #b8ccd6; border-top:0px;}
.pad-5{ padding:5px;}
.input-1{
width:180px;
height:15px;
line-height:15px;
}
.input-2{ width:90%; height:15px; line-height:15px;}
.input-3{ width:100px; height:15px; line-height:15px;}
.input-5{ width:170px; height:15px; line-height:15px;}
.input-6{ height:12px; line-height:12px;}
.text-1{ width:90%; line-height:23px;}
.td-pad{}
.td-pad td{padding:2px;}
.line-30{ line-height:30px;}
.select /*下拉框*/
{
overflow:auto;
font-size:12px;
background-color:#ffffff;
}
.button-z2 {
font-size: 12px;
color: #000;
background-image: url(../images/button_05.jpg);
background-repeat: no-repeat;
height: 21px;
width: 60px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}
.button-z4 {
font-size: 12px;
color: #000;
background-image: url(../images/button_07.jpg);
background-repeat: no-repeat;
height: 21px;
width: 88px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}
.button-z6 {
font-size: 12px;
color: #000;
background-image: url(../images/button_09.jpg);
background-repeat: no-repeat;
height: 21px;
width: 140px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}
.button-z {
font-size: 12px;
color: #000;
background-image: url(../images/button-1_03.jpg);
background-repeat: no-repeat;
height: 21px;
width: 48px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}
.tab-img-01 {
background-image: url(../images/tab-02.jpg);
background-repeat: repeat-x;
background-position: bottom;
font-size: 12px;
color: #000;
}
.tab-img-02 {
background-image: url(../images/tab-02.jpg);
background-repeat: repeat-x;
background-position: bottom;
font-size: 12px;
color: #ff4500;
A:text-decoration:underline;
} | jakarta-tomcat-5.0.28/webapps/gUnit_gmgl/css/style.css | @charset "utf-8";
body { margin:0px; font-size:12px; color:#000;
}
.word-1{ font-size:12px; color:#FFF; text-decoration:none}
.word-1 A{ font-size:12px; color:#FFF;text-decoration:none}
.word-2{ font-size:12px; color:#c14f02; font-weight:bold; text-decoration:none}
.word-2 A{ font-size:12px; color:#c14f02; font-weight:bold;text-decoration:none}
.word-3{ font-size:14px; color:#333333; font-family:"微软雅黑","宋体"; text-decoration:none;}
.word-3 A{ font-size:14px; color:#333333; font-family:"微软雅黑","宋体";text-decoration:none}
.word-4{ font-size:12px; color: #085b85; }
.word-4 A{ font-size:12px; color: #085b85; text-decoration:underline;}
.word-5{ font-size:12px;color: #085b85; }
.word-5 A{ font-size:12px;color: #085b85; }
.word-6{ color: #085b85; font-size:14px; }
.word-6 a{ color: #085b85; font-size:14px; }
.word-7{ font-size:12px; color: #ff4500; }
.word-7 A{ font-size:12px; color:#ff4500; text-decoration:underline;}
.word-8{ font-size:12px; color:#000;}
.word-9{ color: #000000; font-size:14px; }
.word-9 a{ color: #000000; font-size:14px; }
.topdiv{height:109px; background:url(../images/top-bg.jpg) repeat-x top}
.topdiv-1{height:109px; background:url(../images/top-left.jpg) no-repeat left;}
.topdiv-2{height:109px; background:url(../images/top-right.jpg) no-repeat right;}
.leftdiv-bt-1 td{padding-left:10px; width:154px; font-size:12px; font-weight:bold; color:#426273;background:url(../images/left-2.jpg) no-repeat left; text-align:left;}
.leftdiv-bt-2 td{padding-left:10px; width:154px; font-size:12px; font-weight:bold; color:#426273;background:url(../images/left-1.jpg) no-repeat left; text-align:left;}
.td-line-1{ border-bottom:1px dotted #ffffff; background:url(../images/left-5.jpg) no-repeat 2px 7px; padding-left:11px;}
.td-line-2{ border-bottom:1px dotted #ffffff; background:url(../images/left-6.jpg) no-repeat 2px 7px; padding-left:11px;}
.mar-t{ margin-top:2px;}
.td-bg{background:url(../images/right-2.jpg); background-color:#FFFfff}
.td-bg-2{background:url(../images/right-2.jpg) repeat-y left top; background-color:#FFFfff}
.td-bg-1{ background:url(../images/right-7.jpg) no-repeat right center;}
.bor-1{ border:1px solid #b8ccd6; border-top:0px;}
.pad-5{ padding:5px;}
.input-1{
width:180px;
height:15px;
line-height:15px;
}
.input-2{ width:90%; height:15px; line-height:15px;}
.input-3{ width:100px; height:15px; line-height:15px;}
.input-5{ width:170px; height:15px; line-height:15px;}
.input-6{ height:12px; line-height:12px;}
.text-1{ width:90%; line-height:23px;}
.td-pad{}
.td-pad td{padding:2px;}
.line-30{ line-height:30px;}
.select /*下拉框*/
{
overflow:auto;
font-size:12px;
background-color:#ffffff;
}
.button-z2 {
font-size: 12px;
color: #000;
background-image: url(../images/button_05.jpg);
background-repeat: no-repeat;
height: 21px;
width: 60px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}
.button-z4 {
font-size: 12px;
color: #000;
background-image: url(../images/button_07.jpg);
background-repeat: no-repeat;
height: 21px;
width: 88px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}
.button-z6 {
font-size: 12px;
color: #000;
background-image: url(../images/button_09.jpg);
background-repeat: no-repeat;
height: 21px;
width: 140px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}
.button-z {
font-size: 12px;
color: #000;
background-image: url(../images/button-1_03.jpg);
background-repeat: no-repeat;
height: 21px;
width: 48px;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
}
.tab-img-01 {
background-image: url(../images/tab-02.jpg);
background-repeat: repeat-x;
background-position: bottom;
font-size: 12px;
color: #000;
}
.tab-img-02 {
background-image: url(../images/tab-02.jpg);
background-repeat: repeat-x;
background-position: bottom;
font-size: 12px;
color: #ff4500;
A:text-decoration:underline;
} | 0.209955 | 0.088112 |
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,700|Gelasio:400i&display=swap");
* {
--ds-orange: #cf3f02;
--black: #534e4e;
--white: white;
--dark: rgba(255, 255, 255, 0.3);
}
/*********************************************
* GLOBAL STYLES
*********************************************/
.dark body {
color: #fff;
}
body {
font-family: "Open Sans", sans-serif;
font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "pnum" 1, "tnum" 0,
"onum" 1, "lnum" 0, "dlig" 0;
font-weight: 300;
font-size: 40px;
color: #fff;
background: #222;
}
.bg-50 {
background-color: rgba(0, 0, 0, 0.5);
}
.bg-75 {
background-color: rgba(0, 0, 0, 0.75);
}
.offset {
position: absolute;
width: 40%;
right: 0;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 5px 25px rgba(0, 0, 0, 0.2);
font-size: 20px;
padding: 20px;
}
hr {
background-color: var(--ds-orange);
border: 0;
height: 4px;
width: 80%;
margin-top: 1em;
margin-bottom: 1em;
}
::selection {
background: var(--dark);
}
::-moz-selection {
color: #fff;
background: var(--ds-orange);
}
.slides section,
.slides section > section {
line-height: 1.3;
font-weight: inherit;
}
/*********************************************
* HEADERS
*********************************************/
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
margin: 0 0 20px 0;
line-height: 1.2;
letter-spacing: normal;
word-wrap: break-word;
text-shadow: 0px 0px 30px rgba(0, 0, 0);
}
h1 {
font-size: 3.77em;
}
h2 {
font-size: 2.11em;
}
h3 {
font-size: 1.55em;
}
h4 {
font-size: 1em;
}
/*********************************************
* OTHER
*********************************************/
p {
margin: 20px 0;
line-height: 1.3;
}
/* Ensure certain elements are never larger than the slide itself */
img,
video,
iframe {
max-width: 95%;
max-height: 95%;
}
strong,
b {
font-weight: bold;
}
em {
font-style: italic;
}
ol,
dl,
ul {
display: inline-block;
text-align: left;
margin: 0 0 0 1em;
}
ol {
list-style-type: decimal;
}
ul {
list-style-type: disc;
}
ul ul {
list-style-type: square;
}
ul ul ul {
list-style-type: circle;
}
li {
margin-bottom: 0.5em;
}
ul ul,
ul ol,
ol ol,
ol ul {
display: block;
margin-left: 40px;
}
dt {
font-weight: bold;
}
dd {
margin-left: 40px;
}
/*
blockquote
*/
blockquote {
margin: 0;
}
blockquote p {
display: block;
position: relative;
width: 70%;
margin: 20px auto;
padding: 8px;
font-family: "Gelasio", serif;
font-style: italic;
font-size: 0.7em;
border-left: 5px solid #ddd;
color: #ccc;
text-align: left;
padding-left: 1em;
}
blockquote p::before {
content: "\201C";
}
blockquote p::after {
content: "\201D";
}
blockquote p:first-child,
blockquote p:last-child {
display: inline-block;
}
blockquote cite {
font-style: italic;
font-size: 0.6em;
}
blockquote cite::before {
content: "\2014\2002";
}
q {
font-style: italic;
}
pre {
display: block;
position: relative;
width: 90%;
margin: 20px auto;
text-align: left;
font-size: 0.55em;
font-family: monospace;
line-height: 1.2em;
word-wrap: break-word;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}
code {
font-family: monospace;
text-transform: none;
}
pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal;
}
table {
margin: auto;
border-collapse: collapse;
border-spacing: 0;
}
table th {
font-weight: bold;
}
table th,
table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid;
}
table th[align="center"],
table td[align="center"] {
text-align: center;
}
table th[align="right"],
table td[align="right"] {
text-align: right;
}
table tbody tr:last-child th,
table tbody tr:last-child td {
border-bottom: none;
}
sup {
vertical-align: super;
font-size: smaller;
}
sub {
vertical-align: sub;
font-size: smaller;
}
small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top;
}
small * {
vertical-align: top;
}
/*********************************************
* LINKS
*********************************************/
a {
color: var(--ds-orange);
text-decoration: none;
-webkit-transition: color 0.15s ease;
-moz-transition: color 0.15s ease;
transition: color 0.15s ease;
}
a:hover {
color: #dd5566;
border: none;
}
.roll span:after {
color: #fff;
background: #6a1520;
}
/*********************************************
* IMAGES
*********************************************/
section img {
margin: 15px 0px;
}
section img.plain {
border: 0;
box-shadow: none;
}
a img {
-webkit-transition: all 0.15s linear;
-moz-transition: all 0.15s linear;
transition: all 0.15s linear;
}
a:hover img {
background: rgba(255, 255, 255, 0.2);
border-color: var(--ds-orange);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
}
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
.controls {
color: var(--ds-orange);
}
/*********************************************
* PROGRESS BAR
*********************************************/
.progress {
background: rgba(0, 0, 0, 0.2);
color: var(--ds-orange);
}
.progress span {
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
}
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #222;
}
}
code {
background-color: rgba(255, 255, 255, 0.3);
display: inline-block;
border-radius: 2px;
font-size: smaller;
padding-left: 0.25rem;
padding-right: 0.25rem;
}
pre code {
background-color: rgba(255, 255, 255, 0.05) !important;
}
small code {
vertical-align: baseline;
} | css/theme/devseed.css | @import url("https://fonts.googleapis.com/css?family=Open+Sans:300,700|Gelasio:400i&display=swap");
* {
--ds-orange: #cf3f02;
--black: #534e4e;
--white: white;
--dark: rgba(255, 255, 255, 0.3);
}
/*********************************************
* GLOBAL STYLES
*********************************************/
.dark body {
color: #fff;
}
body {
font-family: "Open Sans", sans-serif;
font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "pnum" 1, "tnum" 0,
"onum" 1, "lnum" 0, "dlig" 0;
font-weight: 300;
font-size: 40px;
color: #fff;
background: #222;
}
.bg-50 {
background-color: rgba(0, 0, 0, 0.5);
}
.bg-75 {
background-color: rgba(0, 0, 0, 0.75);
}
.offset {
position: absolute;
width: 40%;
right: 0;
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5), 0 5px 25px rgba(0, 0, 0, 0.2);
font-size: 20px;
padding: 20px;
}
hr {
background-color: var(--ds-orange);
border: 0;
height: 4px;
width: 80%;
margin-top: 1em;
margin-bottom: 1em;
}
::selection {
background: var(--dark);
}
::-moz-selection {
color: #fff;
background: var(--ds-orange);
}
.slides section,
.slides section > section {
line-height: 1.3;
font-weight: inherit;
}
/*********************************************
* HEADERS
*********************************************/
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight: 700;
margin: 0 0 20px 0;
line-height: 1.2;
letter-spacing: normal;
word-wrap: break-word;
text-shadow: 0px 0px 30px rgba(0, 0, 0);
}
h1 {
font-size: 3.77em;
}
h2 {
font-size: 2.11em;
}
h3 {
font-size: 1.55em;
}
h4 {
font-size: 1em;
}
/*********************************************
* OTHER
*********************************************/
p {
margin: 20px 0;
line-height: 1.3;
}
/* Ensure certain elements are never larger than the slide itself */
img,
video,
iframe {
max-width: 95%;
max-height: 95%;
}
strong,
b {
font-weight: bold;
}
em {
font-style: italic;
}
ol,
dl,
ul {
display: inline-block;
text-align: left;
margin: 0 0 0 1em;
}
ol {
list-style-type: decimal;
}
ul {
list-style-type: disc;
}
ul ul {
list-style-type: square;
}
ul ul ul {
list-style-type: circle;
}
li {
margin-bottom: 0.5em;
}
ul ul,
ul ol,
ol ol,
ol ul {
display: block;
margin-left: 40px;
}
dt {
font-weight: bold;
}
dd {
margin-left: 40px;
}
/*
blockquote
*/
blockquote {
margin: 0;
}
blockquote p {
display: block;
position: relative;
width: 70%;
margin: 20px auto;
padding: 8px;
font-family: "Gelasio", serif;
font-style: italic;
font-size: 0.7em;
border-left: 5px solid #ddd;
color: #ccc;
text-align: left;
padding-left: 1em;
}
blockquote p::before {
content: "\201C";
}
blockquote p::after {
content: "\201D";
}
blockquote p:first-child,
blockquote p:last-child {
display: inline-block;
}
blockquote cite {
font-style: italic;
font-size: 0.6em;
}
blockquote cite::before {
content: "\2014\2002";
}
q {
font-style: italic;
}
pre {
display: block;
position: relative;
width: 90%;
margin: 20px auto;
text-align: left;
font-size: 0.55em;
font-family: monospace;
line-height: 1.2em;
word-wrap: break-word;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}
code {
font-family: monospace;
text-transform: none;
}
pre code {
display: block;
padding: 5px;
overflow: auto;
max-height: 400px;
word-wrap: normal;
}
table {
margin: auto;
border-collapse: collapse;
border-spacing: 0;
}
table th {
font-weight: bold;
}
table th,
table td {
text-align: left;
padding: 0.2em 0.5em 0.2em 0.5em;
border-bottom: 1px solid;
}
table th[align="center"],
table td[align="center"] {
text-align: center;
}
table th[align="right"],
table td[align="right"] {
text-align: right;
}
table tbody tr:last-child th,
table tbody tr:last-child td {
border-bottom: none;
}
sup {
vertical-align: super;
font-size: smaller;
}
sub {
vertical-align: sub;
font-size: smaller;
}
small {
display: inline-block;
font-size: 0.6em;
line-height: 1.2em;
vertical-align: top;
}
small * {
vertical-align: top;
}
/*********************************************
* LINKS
*********************************************/
a {
color: var(--ds-orange);
text-decoration: none;
-webkit-transition: color 0.15s ease;
-moz-transition: color 0.15s ease;
transition: color 0.15s ease;
}
a:hover {
color: #dd5566;
border: none;
}
.roll span:after {
color: #fff;
background: #6a1520;
}
/*********************************************
* IMAGES
*********************************************/
section img {
margin: 15px 0px;
}
section img.plain {
border: 0;
box-shadow: none;
}
a img {
-webkit-transition: all 0.15s linear;
-moz-transition: all 0.15s linear;
transition: all 0.15s linear;
}
a:hover img {
background: rgba(255, 255, 255, 0.2);
border-color: var(--ds-orange);
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55);
}
/*********************************************
* NAVIGATION CONTROLS
*********************************************/
.controls {
color: var(--ds-orange);
}
/*********************************************
* PROGRESS BAR
*********************************************/
.progress {
background: rgba(0, 0, 0, 0.2);
color: var(--ds-orange);
}
.progress span {
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);
}
/*********************************************
* PRINT BACKGROUND
*********************************************/
@media print {
.backgrounds {
background-color: #222;
}
}
code {
background-color: rgba(255, 255, 255, 0.3);
display: inline-block;
border-radius: 2px;
font-size: smaller;
padding-left: 0.25rem;
padding-right: 0.25rem;
}
pre code {
background-color: rgba(255, 255, 255, 0.05) !important;
}
small code {
vertical-align: baseline;
} | 0.450359 | 0.122944 |
._idfootnote {
font-size: 0.75em;
margin-left: 1em;
text-align: left;
text-indent: -1em
}
._idfootnotelink {
color: #118aca;
line-height: 1.2;
text-decoration: none
}
._idfootnotes {
display: block;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
page-break-inside: auto
}
.attrib {
-epub-text-align-last: left;
display: block;
font-family: "<NAME>", "<NAME>", sans-serif;
font-size: 1.125em;
font-style: normal;
font-variant: normal;
font-weight: 200;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
line-height: 1.23;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
orphans: 2;
text-align: right;
text-decoration: none;
text-transform: none;
widows: 2
}
.bio {
display: table-cell;
padding-bottom: 1px;
padding-left: 1px;
padding-right: 1px;
padding-top: 1px;
text-align: center;
vertical-align: inherit;
width: 15%
}
.bio1 {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_reg", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1em;
font-weight: normal;
hyphens: none;
line-height: 1.2;
margin-bottom: 1.8em;
margin-left: 0;
margin-right: 0;
margin-top: 0;
page-break-after: avoid;
text-align: center
}
.bio2 {
display: table-cell;
padding-bottom: 1em;
padding-left: 15px;
padding-right: 1px;
padding-top: 1px;
text-align: inherit;
vertical-align: top
}
.black {
color: #000
}
.blockquote {
-epub-text-align-last: left;
display: block;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
margin-bottom: 1em;
margin-left: 15px;
margin-right: 15px;
margin-top: 1em;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.blue {
color: #118aca
}
.blue1 {
color: #118aca;
line-height: 1.2
}
.body {
-epub-text-align-last: left;
display: block;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.bullets {
display: list-item;
margin-bottom: 1em
}
.calibre {
-epub-hyphens: auto;
-moz-hyphens: auto;
-webkit-hyphens: auto;
adobe-hyphenate: none;
display: block;
font-family: "Tisa OT", "Bitter", Chaparral, Garamond, Georgia, serif;
font-size: 1em;
font-variant: none;
hyphens: auto;
line-height: 1.5;
margin-bottom: 0;
margin-left: 5pt;
margin-right: 5pt;
margin-top: 0;
padding-left: 0;
padding-right: 0
}
.calibre1 {
color: #118aca;
text-decoration: none
}
.calibre2 {
display: none;
height: auto;
left: 25px;
opacity: 0;
position: absolute;
top: 25px;
width: 100%;
z-index: 2147483647
}
.calibre3 {
display: none;
height: auto;
opacity: 0;
position: absolute;
width: 100%;
z-index: 2147483647
}
.calibre4 {
display: inline-block;
height: auto;
left: 25px;
opacity: 0.8;
position: absolute;
top: 25px;
width: 100%;
z-index: 2147483647
}
.calibre5 {
font-family: inherit;
font-style: italic
}
.calibre6 {
font-family: inherit;
font-weight: bold
}
.calibre7 {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_reg", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.41667em;
font-weight: normal;
hyphens: none;
line-height: 1.2;
margin-bottom: 1.01em;
margin-left: 0;
margin-right: 0;
margin-top: 1.5em;
page-break-after: avoid
}
.calibre8 {
display: block
}
.calibre9 {
line-height: 1.2
}
.calibre10 {
display: block;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
page-break-inside: avoid
}
.calibre11 {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_reg", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.125em;
font-weight: normal;
hyphens: none;
line-height: 1.15;
margin-bottom: -0.58em;
margin-left: 0;
margin-right: 0;
margin-top: 1.5em;
page-break-after: avoid
}
.calibre12 {
color: #118aca;
display: block;
list-style-type: disc;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
padding-bottom: 0;
padding-left: 28px;
padding-right: 0;
padding-top: 0
}
.calibre13 {
background-color: #118aca;
border-bottom-color: transparent;
border-bottom-style: solid;
border-bottom-width: 0;
border-left-color: transparent;
border-left-style: solid;
border-left-width: 0;
border-right-color: transparent;
border-right-style: solid;
border-right-width: 0;
border-top-color: transparent;
border-top-style: solid;
border-top-width: 0;
color: #118aca;
display: block;
height: 1px;
margin-bottom: 0.5em;
margin-left: auto;
margin-right: auto;
margin-top: 0.5em
}
.calibre14 {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_reg", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.125em;
font-style: italic;
font-weight: normal;
hyphens: none;
line-height: 1.23;
margin-bottom: -0.61em;
margin-left: 0;
margin-right: 0;
margin-top: 1.5em;
page-break-after: avoid
}
.calibre15 {
color: #118aca;
display: block;
list-style-type: decimal;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
padding-bottom: 0;
padding-left: 28px;
padding-right: 0;
padding-top: 0
}
.calibre16 {
display: block;
line-height: 1.2
}
.calibre17 {
color: #118aca;
display: block;
list-style-type: circle;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
padding-bottom: 0;
padding-left: 28px;
padding-right: 0;
padding-top: 0
}
.calibre18 {
border-collapse: collapse;
border-spacing: 2px;
display: table;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
text-indent: 0;
width: 100%
}
.calibre19 {
display: table-row-group;
vertical-align: middle
}
.calibre20 {
display: table-row;
vertical-align: inherit
}
.calibre21 {
height: auto;
margin-top: 0;
width: 100%
}
.calibre22 {
display: none;
height: auto;
left: 26px;
opacity: 0;
position: absolute;
top: 359.094px;
width: 100%;
z-index: 2147483647
}
.captions {
-epub-text-align-last: left;
display: block;
font-size: 0.75em;
font-style: italic;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
line-height: 1.34;
margin-bottom: 1em;
margin-left: 10%;
margin-right: 10%;
margin-top: 1em;
orphans: 2;
page-break-inside: avoid;
text-align: center;
text-decoration: none;
text-transform: none;
widows: 2;
width: 80%
}
.captions1 {
font-family: inherit;
font-style: normal;
font-weight: bold
}
.captions2 {
font-family: inherit;
font-style: normal
}
.case-study {
-epub-text-align-last: left;
display: block;
font-family: "Brandon_reg", Helvetica, "HelveticaNeue", sans-serif;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
margin-bottom: 1em;
margin-left: 25px;
margin-right: 25px;
margin-top: 1em;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.case-study-block-quote {
-epub-text-align-last: left;
display: block;
font-family: "Brandon_reg", Helvetica, "HelveticaNeue", sans-serif;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
margin-bottom: 1em;
margin-left: 50px;
margin-right: 50px;
margin-top: 1em;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.case-study-header {
-epub-hyphens: none;
-epub-text-align-last: left;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
background-color: #118aca;
color: white;
display: block;
font-size: 1.125em;
font-style: normal;
font-variant: normal;
font-weight: bold;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
hyphens: none;
line-height: 1.15;
margin-bottom: 0.58em;
margin-left: 0.58em;
margin-right: 0.58em;
margin-top: 0.58em;
orphans: 2;
padding-bottom: 0.58em;
padding-left: 15px;
padding-right: 15px;
padding-top: 0.8625em;
page-break-after: avoid;
text-align: center;
text-decoration: none;
text-transform: none;
widows: 2
}
.case-study1 {
color: #118aca;
display: block;
font-family: "Brandon_reg", Helvetica, "HelveticaNeue", sans-serif;
list-style-type: disc;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
padding-bottom: 0;
padding-left: 56px;
padding-right: 0;
padding-top: 0
}
.chapter-number {
color: #118aca;
float: left;
font-size: 5.7em;
line-height: 1;
margin-bottom: 0;
margin-left: 0;
margin-right: 0.04em;
margin-top: -0.25em
}
.chapter-number-b {
color: #118aca;
float: left;
font-size: 5.7em;
line-height: 1;
margin-bottom: 0;
margin-left: 0;
margin-right: 0.04em;
margin-top: -0.175em
}
.chapter-number-b1 {
color: #118aca;
float: left;
font-size: 1.41176em;
line-height: 1;
margin-bottom: 0;
margin-left: 0;
margin-right: 0.04em;
margin-top: -0.175em
}
.chapter-number-c {
color: #118aca;
float: left;
font-size: 5.7em;
line-height: 1;
margin-bottom: 0;
margin-left: 0;
margin-right: 0.04em;
margin-top: -0.05em
}
.chapter-number-c1 {
color: #118aca;
float: left;
font-size: 1.41176em;
line-height: 1;
margin-bottom: 0;
margin-left: 0;
margin-right: 0.04em;
margin-top: -0.05em
}
.chapter-number1 {
color: #118aca;
float: left;
font-size: 1.41176em;
line-height: 1;
margin-bottom: 0;
margin-left: 0;
margin-right: 0.04em;
margin-top: -0.25em
}
.chapter-title {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
color: #118aca;
display: block;
font-family: "Brandon_med", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.41667em;
font-weight: bold;
hyphens: none;
line-height: 1.52;
margin-bottom: 0;
margin-left: 25%;
margin-right: 0;
margin-top: 0;
padding-top: 3.03em;
page-break-after: avoid
}
.chapter-title-b {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_med", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.41667em;
font-weight: normal;
hyphens: none;
line-height: 1.265;
margin-bottom: 3.03em;
margin-left: 25%;
margin-right: 0;
margin-top: 0;
max-width: 350px;
padding-top: 3.03em;
page-break-after: avoid
}
.chapter-title1 {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_med", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.41667em;
font-weight: normal;
hyphens: none;
line-height: 1.52;
margin-bottom: 3.03em;
margin-left: 25%;
margin-right: 0;
margin-top: 0;
padding-top: 0;
page-break-after: avoid
}
.copyright {
-epub-text-align-last: left;
display: block;
font-size: 0.75em;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
line-height: 1.34;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
orphans: 2;
text-align: center;
text-decoration: none;
text-indent: 0;
text-transform: none;
widows: 2
}
.cover {
display: block;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
page-break-inside: avoid;
width: 100%
}
.dblink {
color: #513;
text-decoration: none
}
.endnotes {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
color: #000;
display: block;
font-family: "Brandon_reg", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.125em;
font-weight: normal;
hyphens: none;
line-height: 2.7;
margin-bottom: -1.16em;
margin-left: 0;
margin-right: 0;
margin-top: 1.8em;
page-break-after: avoid
}
.ep_cover_page {
height: auto;
width: 100%
}
.footnotes {
color: #118aca;
font-size: 0.75em;
line-height: 1.2;
vertical-align: super
}
.footnotes1 {
color: #118aca;
font-size: 1em;
line-height: 1.2;
vertical-align: super
}
.footnotes2 {
-epub-text-align-last: left;
display: block;
font-size: 0.77778em;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
line-height: 1.34;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.index_map {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_reg", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.125em;
font-weight: normal;
hyphens: none;
line-height: 1.15;
margin-bottom: 1em;
margin-left: 33%;
margin-right: 33%;
margin-top: 1em;
page-break-after: avoid;
text-align: center
}
.index-main {
-epub-text-align-last: left;
display: block;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.index-separator {
-epub-text-align-last: left;
display: block;
font-family: "Brandon_med", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.125em;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
line-height: 1.23;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
orphans: 2;
page-break-after: avoid;
text-decoration: none;
text-transform: none;
widows: 2
}
.index-sub {
-epub-text-align-last: left;
display: block;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
margin-bottom: 0;
margin-left: 15px;
margin-right: 0;
margin-top: 0;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.logo {
display: block;
margin-bottom: 0;
margin-left: 37.5%;
margin-right: 37.5%;
margin-top: 0;
padding-top: 2em;
page-break-inside: avoid;
width: 25%
}
.nowrap {
white-space: nowrap
}
.pagebreak {
display: block;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
page-break-after: always;
page-break-inside: avoid
}
.preface {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "<NAME>", "<NAME>", sans-serif;
font-size: 1.125em;
font-style: italic;
font-weight: normal;
hyphens: none;
line-height: 1.15;
margin-bottom: -0.58em;
margin-left: 15px;
margin-right: 0;
margin-top: 1.5em;
page-break-after: avoid
}
.roman_num {
font-family: "Roboto Slab", "Tisa OT", "Bitter", Chaparral, Garamond, Georgia, serif;
font-size: 1em
}
.sub-bullets {
display: list-item;
list-style-type: none;
margin-bottom: 20px;
margin-left: 20px;
margin-right: 20px;
margin-top: 20px;
text-indent: -20px
}
.table {
display: block;
margin-bottom: 0;
margin-left: 5%;
margin-right: 5%;
margin-top: 0;
page-break-inside: avoid;
width: 90%
} | public/p4zbp-8mxvm_files/stylesheet.css | ._idfootnote {
font-size: 0.75em;
margin-left: 1em;
text-align: left;
text-indent: -1em
}
._idfootnotelink {
color: #118aca;
line-height: 1.2;
text-decoration: none
}
._idfootnotes {
display: block;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
page-break-inside: auto
}
.attrib {
-epub-text-align-last: left;
display: block;
font-family: "<NAME>", "<NAME>", sans-serif;
font-size: 1.125em;
font-style: normal;
font-variant: normal;
font-weight: 200;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
line-height: 1.23;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
orphans: 2;
text-align: right;
text-decoration: none;
text-transform: none;
widows: 2
}
.bio {
display: table-cell;
padding-bottom: 1px;
padding-left: 1px;
padding-right: 1px;
padding-top: 1px;
text-align: center;
vertical-align: inherit;
width: 15%
}
.bio1 {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_reg", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1em;
font-weight: normal;
hyphens: none;
line-height: 1.2;
margin-bottom: 1.8em;
margin-left: 0;
margin-right: 0;
margin-top: 0;
page-break-after: avoid;
text-align: center
}
.bio2 {
display: table-cell;
padding-bottom: 1em;
padding-left: 15px;
padding-right: 1px;
padding-top: 1px;
text-align: inherit;
vertical-align: top
}
.black {
color: #000
}
.blockquote {
-epub-text-align-last: left;
display: block;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
margin-bottom: 1em;
margin-left: 15px;
margin-right: 15px;
margin-top: 1em;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.blue {
color: #118aca
}
.blue1 {
color: #118aca;
line-height: 1.2
}
.body {
-epub-text-align-last: left;
display: block;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.bullets {
display: list-item;
margin-bottom: 1em
}
.calibre {
-epub-hyphens: auto;
-moz-hyphens: auto;
-webkit-hyphens: auto;
adobe-hyphenate: none;
display: block;
font-family: "Tisa OT", "Bitter", Chaparral, Garamond, Georgia, serif;
font-size: 1em;
font-variant: none;
hyphens: auto;
line-height: 1.5;
margin-bottom: 0;
margin-left: 5pt;
margin-right: 5pt;
margin-top: 0;
padding-left: 0;
padding-right: 0
}
.calibre1 {
color: #118aca;
text-decoration: none
}
.calibre2 {
display: none;
height: auto;
left: 25px;
opacity: 0;
position: absolute;
top: 25px;
width: 100%;
z-index: 2147483647
}
.calibre3 {
display: none;
height: auto;
opacity: 0;
position: absolute;
width: 100%;
z-index: 2147483647
}
.calibre4 {
display: inline-block;
height: auto;
left: 25px;
opacity: 0.8;
position: absolute;
top: 25px;
width: 100%;
z-index: 2147483647
}
.calibre5 {
font-family: inherit;
font-style: italic
}
.calibre6 {
font-family: inherit;
font-weight: bold
}
.calibre7 {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_reg", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.41667em;
font-weight: normal;
hyphens: none;
line-height: 1.2;
margin-bottom: 1.01em;
margin-left: 0;
margin-right: 0;
margin-top: 1.5em;
page-break-after: avoid
}
.calibre8 {
display: block
}
.calibre9 {
line-height: 1.2
}
.calibre10 {
display: block;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
page-break-inside: avoid
}
.calibre11 {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_reg", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.125em;
font-weight: normal;
hyphens: none;
line-height: 1.15;
margin-bottom: -0.58em;
margin-left: 0;
margin-right: 0;
margin-top: 1.5em;
page-break-after: avoid
}
.calibre12 {
color: #118aca;
display: block;
list-style-type: disc;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
padding-bottom: 0;
padding-left: 28px;
padding-right: 0;
padding-top: 0
}
.calibre13 {
background-color: #118aca;
border-bottom-color: transparent;
border-bottom-style: solid;
border-bottom-width: 0;
border-left-color: transparent;
border-left-style: solid;
border-left-width: 0;
border-right-color: transparent;
border-right-style: solid;
border-right-width: 0;
border-top-color: transparent;
border-top-style: solid;
border-top-width: 0;
color: #118aca;
display: block;
height: 1px;
margin-bottom: 0.5em;
margin-left: auto;
margin-right: auto;
margin-top: 0.5em
}
.calibre14 {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_reg", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.125em;
font-style: italic;
font-weight: normal;
hyphens: none;
line-height: 1.23;
margin-bottom: -0.61em;
margin-left: 0;
margin-right: 0;
margin-top: 1.5em;
page-break-after: avoid
}
.calibre15 {
color: #118aca;
display: block;
list-style-type: decimal;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
padding-bottom: 0;
padding-left: 28px;
padding-right: 0;
padding-top: 0
}
.calibre16 {
display: block;
line-height: 1.2
}
.calibre17 {
color: #118aca;
display: block;
list-style-type: circle;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
padding-bottom: 0;
padding-left: 28px;
padding-right: 0;
padding-top: 0
}
.calibre18 {
border-collapse: collapse;
border-spacing: 2px;
display: table;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
text-indent: 0;
width: 100%
}
.calibre19 {
display: table-row-group;
vertical-align: middle
}
.calibre20 {
display: table-row;
vertical-align: inherit
}
.calibre21 {
height: auto;
margin-top: 0;
width: 100%
}
.calibre22 {
display: none;
height: auto;
left: 26px;
opacity: 0;
position: absolute;
top: 359.094px;
width: 100%;
z-index: 2147483647
}
.captions {
-epub-text-align-last: left;
display: block;
font-size: 0.75em;
font-style: italic;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
line-height: 1.34;
margin-bottom: 1em;
margin-left: 10%;
margin-right: 10%;
margin-top: 1em;
orphans: 2;
page-break-inside: avoid;
text-align: center;
text-decoration: none;
text-transform: none;
widows: 2;
width: 80%
}
.captions1 {
font-family: inherit;
font-style: normal;
font-weight: bold
}
.captions2 {
font-family: inherit;
font-style: normal
}
.case-study {
-epub-text-align-last: left;
display: block;
font-family: "Brandon_reg", Helvetica, "HelveticaNeue", sans-serif;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
margin-bottom: 1em;
margin-left: 25px;
margin-right: 25px;
margin-top: 1em;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.case-study-block-quote {
-epub-text-align-last: left;
display: block;
font-family: "Brandon_reg", Helvetica, "HelveticaNeue", sans-serif;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
margin-bottom: 1em;
margin-left: 50px;
margin-right: 50px;
margin-top: 1em;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.case-study-header {
-epub-hyphens: none;
-epub-text-align-last: left;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
background-color: #118aca;
color: white;
display: block;
font-size: 1.125em;
font-style: normal;
font-variant: normal;
font-weight: bold;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
hyphens: none;
line-height: 1.15;
margin-bottom: 0.58em;
margin-left: 0.58em;
margin-right: 0.58em;
margin-top: 0.58em;
orphans: 2;
padding-bottom: 0.58em;
padding-left: 15px;
padding-right: 15px;
padding-top: 0.8625em;
page-break-after: avoid;
text-align: center;
text-decoration: none;
text-transform: none;
widows: 2
}
.case-study1 {
color: #118aca;
display: block;
font-family: "Brandon_reg", Helvetica, "HelveticaNeue", sans-serif;
list-style-type: disc;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
padding-bottom: 0;
padding-left: 56px;
padding-right: 0;
padding-top: 0
}
.chapter-number {
color: #118aca;
float: left;
font-size: 5.7em;
line-height: 1;
margin-bottom: 0;
margin-left: 0;
margin-right: 0.04em;
margin-top: -0.25em
}
.chapter-number-b {
color: #118aca;
float: left;
font-size: 5.7em;
line-height: 1;
margin-bottom: 0;
margin-left: 0;
margin-right: 0.04em;
margin-top: -0.175em
}
.chapter-number-b1 {
color: #118aca;
float: left;
font-size: 1.41176em;
line-height: 1;
margin-bottom: 0;
margin-left: 0;
margin-right: 0.04em;
margin-top: -0.175em
}
.chapter-number-c {
color: #118aca;
float: left;
font-size: 5.7em;
line-height: 1;
margin-bottom: 0;
margin-left: 0;
margin-right: 0.04em;
margin-top: -0.05em
}
.chapter-number-c1 {
color: #118aca;
float: left;
font-size: 1.41176em;
line-height: 1;
margin-bottom: 0;
margin-left: 0;
margin-right: 0.04em;
margin-top: -0.05em
}
.chapter-number1 {
color: #118aca;
float: left;
font-size: 1.41176em;
line-height: 1;
margin-bottom: 0;
margin-left: 0;
margin-right: 0.04em;
margin-top: -0.25em
}
.chapter-title {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
color: #118aca;
display: block;
font-family: "Brandon_med", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.41667em;
font-weight: bold;
hyphens: none;
line-height: 1.52;
margin-bottom: 0;
margin-left: 25%;
margin-right: 0;
margin-top: 0;
padding-top: 3.03em;
page-break-after: avoid
}
.chapter-title-b {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_med", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.41667em;
font-weight: normal;
hyphens: none;
line-height: 1.265;
margin-bottom: 3.03em;
margin-left: 25%;
margin-right: 0;
margin-top: 0;
max-width: 350px;
padding-top: 3.03em;
page-break-after: avoid
}
.chapter-title1 {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_med", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.41667em;
font-weight: normal;
hyphens: none;
line-height: 1.52;
margin-bottom: 3.03em;
margin-left: 25%;
margin-right: 0;
margin-top: 0;
padding-top: 0;
page-break-after: avoid
}
.copyright {
-epub-text-align-last: left;
display: block;
font-size: 0.75em;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
line-height: 1.34;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
orphans: 2;
text-align: center;
text-decoration: none;
text-indent: 0;
text-transform: none;
widows: 2
}
.cover {
display: block;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
page-break-inside: avoid;
width: 100%
}
.dblink {
color: #513;
text-decoration: none
}
.endnotes {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
color: #000;
display: block;
font-family: "Brandon_reg", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.125em;
font-weight: normal;
hyphens: none;
line-height: 2.7;
margin-bottom: -1.16em;
margin-left: 0;
margin-right: 0;
margin-top: 1.8em;
page-break-after: avoid
}
.ep_cover_page {
height: auto;
width: 100%
}
.footnotes {
color: #118aca;
font-size: 0.75em;
line-height: 1.2;
vertical-align: super
}
.footnotes1 {
color: #118aca;
font-size: 1em;
line-height: 1.2;
vertical-align: super
}
.footnotes2 {
-epub-text-align-last: left;
display: block;
font-size: 0.77778em;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
line-height: 1.34;
margin-bottom: 1em;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.index_map {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "Brandon_reg", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.125em;
font-weight: normal;
hyphens: none;
line-height: 1.15;
margin-bottom: 1em;
margin-left: 33%;
margin-right: 33%;
margin-top: 1em;
page-break-after: avoid;
text-align: center
}
.index-main {
-epub-text-align-last: left;
display: block;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.index-separator {
-epub-text-align-last: left;
display: block;
font-family: "Brandon_med", "Merriweather Sans", Helvetica, "HelveticaNeue", sans-serif;
font-size: 1.125em;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
line-height: 1.23;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 1em;
orphans: 2;
page-break-after: avoid;
text-decoration: none;
text-transform: none;
widows: 2
}
.index-sub {
-epub-text-align-last: left;
display: block;
font-style: normal;
font-variant: normal;
font-weight: normal;
hyphenate-limit-last: always;
hyphenate-limit-lines: 2;
margin-bottom: 0;
margin-left: 15px;
margin-right: 0;
margin-top: 0;
orphans: 2;
text-decoration: none;
text-transform: none;
widows: 2
}
.logo {
display: block;
margin-bottom: 0;
margin-left: 37.5%;
margin-right: 37.5%;
margin-top: 0;
padding-top: 2em;
page-break-inside: avoid;
width: 25%
}
.nowrap {
white-space: nowrap
}
.pagebreak {
display: block;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
margin-top: 0;
page-break-after: always;
page-break-inside: avoid
}
.preface {
-epub-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
adobe-hyphenate: none;
display: block;
font-family: "<NAME>", "<NAME>", sans-serif;
font-size: 1.125em;
font-style: italic;
font-weight: normal;
hyphens: none;
line-height: 1.15;
margin-bottom: -0.58em;
margin-left: 15px;
margin-right: 0;
margin-top: 1.5em;
page-break-after: avoid
}
.roman_num {
font-family: "Roboto Slab", "Tisa OT", "Bitter", Chaparral, Garamond, Georgia, serif;
font-size: 1em
}
.sub-bullets {
display: list-item;
list-style-type: none;
margin-bottom: 20px;
margin-left: 20px;
margin-right: 20px;
margin-top: 20px;
text-indent: -20px
}
.table {
display: block;
margin-bottom: 0;
margin-left: 5%;
margin-right: 5%;
margin-top: 0;
page-break-inside: avoid;
width: 90%
} | 0.527317 | 0.125467 |
body {
font-family: 'Open sans', serif;
font-weight: 300;
-webkit-font-smoothing: antialiased !important;
color: #666;
}
a {
color: rgb(20, 90, 109);
}
a:hover {
color: #E76C5A;
}
.header-background {
height: 25vh;
position: relative;
overflow: hidden;
background-color: rgba(255,255,255,.5);
}
.background-image {
background-size: cover;
background-position: center;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.btn-primary {
font-family: "Open Sans", sans-serif;
background-color: rgb(20, 90, 109);
border-color: rgb(12, 55, 66);
font-weight: 700;
}
.btn-primary:hover {
background-color: rgb(25, 113, 138);
}
.header-background {
background-attachment: fixed;
background-attachment: scroll;
background-position: center center;
background-size: cover;
height: 25vh;
}
.header-title {
font-weight: 700;
font-size: 4rem;
color: black;
}
.header-info-logo {
position: relative;
top: -70px;
width: 130px;
height: 130px;
margin-bottom: -70px;
}
.header-description {
font-size: 1.8em;
line-height: 105%;
margin: 3rem auto;
}
img.navbar-logo {
width: 40px;
}
.navigation-top {
background: white;
}
.navigation-top .navbar-brand {
font-weight: 700;
font-size: 1.7rem;
color: #666;
}
.navigation-top .navbar-nav .nav-link {
font-size: 1.2rem;
color: #E76C5A;
font-weight: 700;
}
.navigation-top .navbar-nav .nav-link:hover {
color: #bf311c;
}
.icon {
display: inline-block;
font-size: inherit;
height: 1em;
width: 1em;
overflow: visible;
vertical-align: -.125em;
text-rendering: auto;
}
.icon-lynda {
background: url('/assets/images/icon-lynda.png') no-repeat center center;
background-size: contain;
}
.icon-lil {
background: url('/assets/images/icon-lil.png') no-repeat center center;
background-size: contain;
}
.item {
font-size: 1.2em;
margin-top: 2.5em;
}
.item-links {
font-family: "Open Sans", sans-serif;
font-size: 1em;
}
.item-meta {
font-family: "Open Sans";
font-size: .95rem;
}
.item-links a {
padding-left: 1em;
}
@media (max-width: 576px) {
.item-links a {
padding-left: 0;
display: block;
margin-top: 1rem;
}
}
.main {
font-family: 'Merriweather', serif;
font-weight: 300;
}
.sidebar {
border-left: 1px dotted gray;
font-size: .9rem;
}
.sidebar .item-links a {
padding-left: 0;
font-size: 1.2em;
}
.sidebar .sidebar-title {
font-family: "Open Sans", sans-serif;
font-weight: bold;
margin-bottom: .5rem;
color: #bf311c;
}
.sidebar .item-links {
margin-top: 1em;
}
.sidebar .item-description {
font-family: "Open Sans", sans-serif;
font-size: 1.2em;
}
.sidebar .item-links a {
display: block;
font-weight: 400;
}
.sidebar a {
color: #666;
}
.sidebar .item {
font-size: .9rem;
margin-top: 2rem;
}
.item:first-child {
margin-top: 0;
}
.item-title {
font-family: 'Bree Serif';
font-weight: 300;
font-size: 1.7em;
line-height: 105%;
margin-bottom: 1em;
}
.sidebar .item-title {
font-size: 1.5em;
}
.sidebar .item-img {
margin-bottom: 1em;
}
.page-title {
font-weight: 700;
font-family: "Open Sans", sans-serif;
font-size: 2.8em;
margin-bottom: .8em;
}
.page-content {
font-size: 1.2em;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
font-weight: 700;
font-family: "Open Sans", sans-serif;
}
.page-content p {
margin-top: 2rem auto;
}
.page-content img {
max-width: 100%;
}
.page-content iframe, .page-content .embed-responsive {
margin-bottom: 2rem;
}
@media (min-width: 768px) and (max-width: 979px) {
.sidebar .item-title {
font-family: 'Open Sans', sans-serif;
font-size: 1.1em;
font-weight: bold;
}
.sidebar .item {
margin-top: 0;
}
.sidebar .item-meta {
font-size: .7em;
}
} | assets/css/main.css | body {
font-family: 'Open sans', serif;
font-weight: 300;
-webkit-font-smoothing: antialiased !important;
color: #666;
}
a {
color: rgb(20, 90, 109);
}
a:hover {
color: #E76C5A;
}
.header-background {
height: 25vh;
position: relative;
overflow: hidden;
background-color: rgba(255,255,255,.5);
}
.background-image {
background-size: cover;
background-position: center;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.btn-primary {
font-family: "Open Sans", sans-serif;
background-color: rgb(20, 90, 109);
border-color: rgb(12, 55, 66);
font-weight: 700;
}
.btn-primary:hover {
background-color: rgb(25, 113, 138);
}
.header-background {
background-attachment: fixed;
background-attachment: scroll;
background-position: center center;
background-size: cover;
height: 25vh;
}
.header-title {
font-weight: 700;
font-size: 4rem;
color: black;
}
.header-info-logo {
position: relative;
top: -70px;
width: 130px;
height: 130px;
margin-bottom: -70px;
}
.header-description {
font-size: 1.8em;
line-height: 105%;
margin: 3rem auto;
}
img.navbar-logo {
width: 40px;
}
.navigation-top {
background: white;
}
.navigation-top .navbar-brand {
font-weight: 700;
font-size: 1.7rem;
color: #666;
}
.navigation-top .navbar-nav .nav-link {
font-size: 1.2rem;
color: #E76C5A;
font-weight: 700;
}
.navigation-top .navbar-nav .nav-link:hover {
color: #bf311c;
}
.icon {
display: inline-block;
font-size: inherit;
height: 1em;
width: 1em;
overflow: visible;
vertical-align: -.125em;
text-rendering: auto;
}
.icon-lynda {
background: url('/assets/images/icon-lynda.png') no-repeat center center;
background-size: contain;
}
.icon-lil {
background: url('/assets/images/icon-lil.png') no-repeat center center;
background-size: contain;
}
.item {
font-size: 1.2em;
margin-top: 2.5em;
}
.item-links {
font-family: "Open Sans", sans-serif;
font-size: 1em;
}
.item-meta {
font-family: "Open Sans";
font-size: .95rem;
}
.item-links a {
padding-left: 1em;
}
@media (max-width: 576px) {
.item-links a {
padding-left: 0;
display: block;
margin-top: 1rem;
}
}
.main {
font-family: 'Merriweather', serif;
font-weight: 300;
}
.sidebar {
border-left: 1px dotted gray;
font-size: .9rem;
}
.sidebar .item-links a {
padding-left: 0;
font-size: 1.2em;
}
.sidebar .sidebar-title {
font-family: "Open Sans", sans-serif;
font-weight: bold;
margin-bottom: .5rem;
color: #bf311c;
}
.sidebar .item-links {
margin-top: 1em;
}
.sidebar .item-description {
font-family: "Open Sans", sans-serif;
font-size: 1.2em;
}
.sidebar .item-links a {
display: block;
font-weight: 400;
}
.sidebar a {
color: #666;
}
.sidebar .item {
font-size: .9rem;
margin-top: 2rem;
}
.item:first-child {
margin-top: 0;
}
.item-title {
font-family: 'Bree Serif';
font-weight: 300;
font-size: 1.7em;
line-height: 105%;
margin-bottom: 1em;
}
.sidebar .item-title {
font-size: 1.5em;
}
.sidebar .item-img {
margin-bottom: 1em;
}
.page-title {
font-weight: 700;
font-family: "Open Sans", sans-serif;
font-size: 2.8em;
margin-bottom: .8em;
}
.page-content {
font-size: 1.2em;
}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
font-weight: 700;
font-family: "Open Sans", sans-serif;
}
.page-content p {
margin-top: 2rem auto;
}
.page-content img {
max-width: 100%;
}
.page-content iframe, .page-content .embed-responsive {
margin-bottom: 2rem;
}
@media (min-width: 768px) and (max-width: 979px) {
.sidebar .item-title {
font-family: 'Open Sans', sans-serif;
font-size: 1.1em;
font-weight: bold;
}
.sidebar .item {
margin-top: 0;
}
.sidebar .item-meta {
font-size: .7em;
}
} | 0.42931 | 0.083965 |
html, body {
background-image: url("../admin-asset/images/abstract-background-blur-255379.jpg");
background-size: cover;
background-position: center;
padding: 0 !important;
}
body > div {
background: rgba(255,255,255,.7);
min-height: 100vh;
}
td p > a {
color: #4646ff;
text-decoration: none !important;
}
td p > a:hover {
color: #0000f0;
}
#navbarDropdown::before {
content: "\f2bd";
position: absolute;
top: 50%;
left: 0;
font-family: "Font Awesome 5 Free";
transform: translate(0,-50%);
font-size: 20px;
color: #0000f0;
}
#navbarDropdown {
position: relative;
padding-left: 30px;
}
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;
}
.links > a {
color: #636b6f;
padding: 0 25px;
font-size: 13px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
.m-b-md {
margin-bottom: 30px;
}
.side_menus ul {
list-style: none;
padding-left: 0px;
background-color: #fff;
}
.side_menus ul li {
border-bottom: 1px solid #eee;
}
.side_menus ul li a {
display: block;
padding: 10px 14px;
text-decoration: none;
color: #292929;
transition: .4s all;
}
.side_menus ul li a:hover {
padding-left: 25px;
color: #180505;
background-color: #ececece6;
}
.side_menus ul li:last-child {
}
.col-md-2.side_menu_section {
padding: 0;
background: #fff;
border: 1px solid;
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 4px 4px 0px 0;
}
.side_menus h4 {
border: 1px solid #d8d8d8;
padding: 15px 12px;
margin: 0;
background-color: #f7f7f7;
color: #393939;
font-size: 16px;
border-radius: 4px 4px 0px 0;
}
.Admin-replay {
width: 80%;
padding: 20px 30px;
background-color: #f5f3f3;
float: left;
border-radius: 25px;
}
.Admin-replay img {
width: 50px;
height: auto;
float: left;
margin-right: 20px;
}
.Customer-replay {
width: 80%;
text-align: right;
background-color: #007cdc;
color: #fff;
padding: 20px 30px;
margin: 10px 0;
float: right;
border-radius: 25px;
}
.Customer-replay img {
width: 50px;
height: auto;
float: right;
margin-left: 20px;
}
.chat_section_main {
padding-right: 15%;
padding-left: 15%;
}
.table_extra_effect {
box-shadow: 0 0 20px #ddd;
margin-bottom: 20px;
}
.logo_container img {
max-height: 60px;
}
.match_password {
display: inline-block;
margin: 0 auto;
}
.match_password p {
display: contents;
}
.match_password button {
margin-left: 15px;
}
#navbarDropdown::before {
display: none;
}
.dropdown-menu-right {
width: 250px;
}
.profile_main_right_top {
text-align: center;
}
.dropdown-item.left {
display: inherit;
width: 50%;
float: right;
clear: none;
text-align: right;
}
.dropdown-item.right {
display: inherit;
width: 50%;
float: left;
clear: none;
}
.table-bordered thead th, .table-bordered thead td {
border-bottom-width: 2px;
color: #0000f0;
background: #f6f6f6;
background: #ccc;
}
.card-header {
padding: 0.75rem 1.25rem;
margin-bottom: 0;
background-color: #1b2d4f;
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
color: #fff;
font-size: 18px;
font-weight: bold;
}
.table th, .table td {
padding: 0.75rem;
vertical-align: top;
border-top: 1px solid #dee2e6;
text-align: center;
color: #1b2d4f;
}
.btn-success {
color: #fff;
background-color: #6060ff;
border-color: #6060ff;
}
.btn-success:hover {
color: #fff;
background-color: #0000f0;
border-color: #0000f0;
}
.nav-item.dropdown:hover .dropdown-menu {
display: block;
}
#navbarDropdown::before {
content: "\f2bd";
position: absolute;
top: 50%;
left: 0;
font-family: "Font Awesome 5 Free";
transform: translate(0,-50%);
font-size: 20px;
color: #0000f0;
}
#navbarDropdown {
position: relative;
padding-left: 30px;
}
.form-control{
height: auto;
}
.btn-primary {
color: #fff;
background-color: #fe000a;
border-color: #fe000a;
font-weight: bold;
}
.btn-primary:hover {
color: #fff;
background-color: #0000f0;
border-color: #0000f0;
}
.full-height {
height: 100vh;
}
.flex-center {
align-items: center;
display: flex;
justify-content: center;
background: rgba(255,255,255,.7);
}
.position-ref {
position: relative;
}
.top-right {
position: absolute;
right: 0;
top: 50%;
transform: translate(0,-50%);
}
.content {
text-align: center;
padding: 50px 0 20px;
}
.title {
font-size: 84px;
}
.links > a {
color: #fe000a;
padding: 0 25px;
font-size: 13px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
.m-b-md {
margin-bottom: 30px;
}
.logo_container img {
max-height: 60px;
}
.header_sec {
background: rgba(255,255,255,.7);
padding: 10px 0;
}
.header_sec .container {
position: relative;
}
.service_decs {
color: #000;
font-size: 16px;
}
.service_title h2 {
font-size: 22px;
color: #000;
margin-bottom: 20px;
}
.service_icon {
font-size: 30px;
color: #0000f0;
transition: all .5s;
}
.mcb-wrap-inner {
background: rgba(255,255,255,.8);
padding: 30px;
margin-bottom: 30px;
min-height: 270px;
transition: all .5s;
}
.mcb-wrap-inner:hover {
background: #fff;
}
.mcb-wrap-inner:hover .service_icon {
color: #fe000a;
}
p.login-icon {
text-align: center;
text-transform: capitalize;
margin-bottom: 30px;
}
p.login-icon b{
color: #fe000a;
font-weight: bold;
}
.login-icon i {
color: #fe000a;
display: block;
font-size: 60PX;
margin-bottom: 10px;
}
.form-control{
height: 40px;
border-radius: 0;
box-shadow: none;
}
.form-control:focus {
border-color: #fe000a;
outline: 0;
box-shadow: none;
}
a.forget-pass {
color: #fe000a;
border-bottom: 1px dashed;
text-align: right;
}
a#remember-button {
color: #8d8a8a;
}
.login-model input[type="checkbox"] {
width: auto;
margin: 0;
}
.popup_login a{
color: #fe000a;
}
.popup_login{
font-size: 15px;
}
.button {
background-color: #fe000a;
color: #fff;
font-weight: 600;
height: 40px;
line-height: normal;
text-align: center;
margin-top: 30px;
width: 100%;
border: none;
box-shadow: none;
}
.button:hover {
background-color: #0000f0;
}
.close {
font-size: 21px !important;
}
.modal-footer {
padding: 10px 15px;
border-top: 1px solid #e5e5e5;
background-color: #f5f5f5;
text-align: center;
}
.modal-footer a{
color: #fe000a;
}
.modal-header .close {
opacity: .6;
}
.modal-header {
border: none;
}
.forget_link{
text-align: right;
}
.header_sec .container {
position: relative;
}
.header_sec .error-message {
width: 40%;
position: absolute;
top: 7px;
left: 29%;
font-weight: bold;
padding: 10px 20px;
}
.header_sec .error-message button.close {
color: #eee;
opacity: 1;
}
.profile_main_right_top img {
width: 200px;
height: 150px;
}
.alert p {
margin-bottom: 0px;
}
.alert {
min-width: 40%;
}
/*1-31-2019*/
a.btn.btn-success.btn-green.btn-xs {
background-color: #23a82e;
border-color: #23a82e;
}
.dv-header-search {
float: right;
margin-bottom: 10px;
}
.dv-header-search input.dv-header-input {
padding: 2px 12px;
}
.dv-header-title {
float: left;
}
.side_menus ul li:last-child {
border: none;
}
.side_menus ul li ul {
margin-left: 20px;
}
.side_menus ul li ul li {
border: none;
}
.side_menus ul li ul li a:before {
content: ">";
padding: 0 5px 0 0;
font-size: 16px;
font-family: cursive;
color: #aca4a4;
}
.dv-footer-item .dv-footer-sub {
float: left;
padding: 0 5px;
}.dv-footer > .dv-footer-item:last-child {
float: right;
}.dv-footer-item {
display: inline-block;
}
table td a.btn {
padding: 3px 6px;
font-size: 10px;
}
.download_list_ul li {
display: inline-block;
padding: 10px;
border: 1px solid #ddd;
width: 100px;
height: 100px;
margin: 0 5px;
}
.download_list_ul img {
width: 100%;
height: 100%;
}
.download_list_ul {
padding: 0;
text-align: center;
} | public/css/custom-style.css | html, body {
background-image: url("../admin-asset/images/abstract-background-blur-255379.jpg");
background-size: cover;
background-position: center;
padding: 0 !important;
}
body > div {
background: rgba(255,255,255,.7);
min-height: 100vh;
}
td p > a {
color: #4646ff;
text-decoration: none !important;
}
td p > a:hover {
color: #0000f0;
}
#navbarDropdown::before {
content: "\f2bd";
position: absolute;
top: 50%;
left: 0;
font-family: "Font Awesome 5 Free";
transform: translate(0,-50%);
font-size: 20px;
color: #0000f0;
}
#navbarDropdown {
position: relative;
padding-left: 30px;
}
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;
}
.links > a {
color: #636b6f;
padding: 0 25px;
font-size: 13px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
.m-b-md {
margin-bottom: 30px;
}
.side_menus ul {
list-style: none;
padding-left: 0px;
background-color: #fff;
}
.side_menus ul li {
border-bottom: 1px solid #eee;
}
.side_menus ul li a {
display: block;
padding: 10px 14px;
text-decoration: none;
color: #292929;
transition: .4s all;
}
.side_menus ul li a:hover {
padding-left: 25px;
color: #180505;
background-color: #ececece6;
}
.side_menus ul li:last-child {
}
.col-md-2.side_menu_section {
padding: 0;
background: #fff;
border: 1px solid;
border: 1px solid rgba(0, 0, 0, 0.125);
border-radius: 4px 4px 0px 0;
}
.side_menus h4 {
border: 1px solid #d8d8d8;
padding: 15px 12px;
margin: 0;
background-color: #f7f7f7;
color: #393939;
font-size: 16px;
border-radius: 4px 4px 0px 0;
}
.Admin-replay {
width: 80%;
padding: 20px 30px;
background-color: #f5f3f3;
float: left;
border-radius: 25px;
}
.Admin-replay img {
width: 50px;
height: auto;
float: left;
margin-right: 20px;
}
.Customer-replay {
width: 80%;
text-align: right;
background-color: #007cdc;
color: #fff;
padding: 20px 30px;
margin: 10px 0;
float: right;
border-radius: 25px;
}
.Customer-replay img {
width: 50px;
height: auto;
float: right;
margin-left: 20px;
}
.chat_section_main {
padding-right: 15%;
padding-left: 15%;
}
.table_extra_effect {
box-shadow: 0 0 20px #ddd;
margin-bottom: 20px;
}
.logo_container img {
max-height: 60px;
}
.match_password {
display: inline-block;
margin: 0 auto;
}
.match_password p {
display: contents;
}
.match_password button {
margin-left: 15px;
}
#navbarDropdown::before {
display: none;
}
.dropdown-menu-right {
width: 250px;
}
.profile_main_right_top {
text-align: center;
}
.dropdown-item.left {
display: inherit;
width: 50%;
float: right;
clear: none;
text-align: right;
}
.dropdown-item.right {
display: inherit;
width: 50%;
float: left;
clear: none;
}
.table-bordered thead th, .table-bordered thead td {
border-bottom-width: 2px;
color: #0000f0;
background: #f6f6f6;
background: #ccc;
}
.card-header {
padding: 0.75rem 1.25rem;
margin-bottom: 0;
background-color: #1b2d4f;
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
color: #fff;
font-size: 18px;
font-weight: bold;
}
.table th, .table td {
padding: 0.75rem;
vertical-align: top;
border-top: 1px solid #dee2e6;
text-align: center;
color: #1b2d4f;
}
.btn-success {
color: #fff;
background-color: #6060ff;
border-color: #6060ff;
}
.btn-success:hover {
color: #fff;
background-color: #0000f0;
border-color: #0000f0;
}
.nav-item.dropdown:hover .dropdown-menu {
display: block;
}
#navbarDropdown::before {
content: "\f2bd";
position: absolute;
top: 50%;
left: 0;
font-family: "Font Awesome 5 Free";
transform: translate(0,-50%);
font-size: 20px;
color: #0000f0;
}
#navbarDropdown {
position: relative;
padding-left: 30px;
}
.form-control{
height: auto;
}
.btn-primary {
color: #fff;
background-color: #fe000a;
border-color: #fe000a;
font-weight: bold;
}
.btn-primary:hover {
color: #fff;
background-color: #0000f0;
border-color: #0000f0;
}
.full-height {
height: 100vh;
}
.flex-center {
align-items: center;
display: flex;
justify-content: center;
background: rgba(255,255,255,.7);
}
.position-ref {
position: relative;
}
.top-right {
position: absolute;
right: 0;
top: 50%;
transform: translate(0,-50%);
}
.content {
text-align: center;
padding: 50px 0 20px;
}
.title {
font-size: 84px;
}
.links > a {
color: #fe000a;
padding: 0 25px;
font-size: 13px;
font-weight: 600;
letter-spacing: .1rem;
text-decoration: none;
text-transform: uppercase;
}
.m-b-md {
margin-bottom: 30px;
}
.logo_container img {
max-height: 60px;
}
.header_sec {
background: rgba(255,255,255,.7);
padding: 10px 0;
}
.header_sec .container {
position: relative;
}
.service_decs {
color: #000;
font-size: 16px;
}
.service_title h2 {
font-size: 22px;
color: #000;
margin-bottom: 20px;
}
.service_icon {
font-size: 30px;
color: #0000f0;
transition: all .5s;
}
.mcb-wrap-inner {
background: rgba(255,255,255,.8);
padding: 30px;
margin-bottom: 30px;
min-height: 270px;
transition: all .5s;
}
.mcb-wrap-inner:hover {
background: #fff;
}
.mcb-wrap-inner:hover .service_icon {
color: #fe000a;
}
p.login-icon {
text-align: center;
text-transform: capitalize;
margin-bottom: 30px;
}
p.login-icon b{
color: #fe000a;
font-weight: bold;
}
.login-icon i {
color: #fe000a;
display: block;
font-size: 60PX;
margin-bottom: 10px;
}
.form-control{
height: 40px;
border-radius: 0;
box-shadow: none;
}
.form-control:focus {
border-color: #fe000a;
outline: 0;
box-shadow: none;
}
a.forget-pass {
color: #fe000a;
border-bottom: 1px dashed;
text-align: right;
}
a#remember-button {
color: #8d8a8a;
}
.login-model input[type="checkbox"] {
width: auto;
margin: 0;
}
.popup_login a{
color: #fe000a;
}
.popup_login{
font-size: 15px;
}
.button {
background-color: #fe000a;
color: #fff;
font-weight: 600;
height: 40px;
line-height: normal;
text-align: center;
margin-top: 30px;
width: 100%;
border: none;
box-shadow: none;
}
.button:hover {
background-color: #0000f0;
}
.close {
font-size: 21px !important;
}
.modal-footer {
padding: 10px 15px;
border-top: 1px solid #e5e5e5;
background-color: #f5f5f5;
text-align: center;
}
.modal-footer a{
color: #fe000a;
}
.modal-header .close {
opacity: .6;
}
.modal-header {
border: none;
}
.forget_link{
text-align: right;
}
.header_sec .container {
position: relative;
}
.header_sec .error-message {
width: 40%;
position: absolute;
top: 7px;
left: 29%;
font-weight: bold;
padding: 10px 20px;
}
.header_sec .error-message button.close {
color: #eee;
opacity: 1;
}
.profile_main_right_top img {
width: 200px;
height: 150px;
}
.alert p {
margin-bottom: 0px;
}
.alert {
min-width: 40%;
}
/*1-31-2019*/
a.btn.btn-success.btn-green.btn-xs {
background-color: #23a82e;
border-color: #23a82e;
}
.dv-header-search {
float: right;
margin-bottom: 10px;
}
.dv-header-search input.dv-header-input {
padding: 2px 12px;
}
.dv-header-title {
float: left;
}
.side_menus ul li:last-child {
border: none;
}
.side_menus ul li ul {
margin-left: 20px;
}
.side_menus ul li ul li {
border: none;
}
.side_menus ul li ul li a:before {
content: ">";
padding: 0 5px 0 0;
font-size: 16px;
font-family: cursive;
color: #aca4a4;
}
.dv-footer-item .dv-footer-sub {
float: left;
padding: 0 5px;
}.dv-footer > .dv-footer-item:last-child {
float: right;
}.dv-footer-item {
display: inline-block;
}
table td a.btn {
padding: 3px 6px;
font-size: 10px;
}
.download_list_ul li {
display: inline-block;
padding: 10px;
border: 1px solid #ddd;
width: 100px;
height: 100px;
margin: 0 5px;
}
.download_list_ul img {
width: 100%;
height: 100%;
}
.download_list_ul {
padding: 0;
text-align: center;
} | 0.41052 | 0.198258 |
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0);
transform: rotate(0);
}
to {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes spin {
from {
-webkit-transform: rotate(0);
transform: rotate(0);
}
to {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
* {
padding: 0;
margin: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
h2 {
font-size: 1.3rem;
}
h5 {
color: black;
font-size: 1.5rem;
margin: auto 15px;
}
h6 {
color: black;
font-size: 1.25rem;
margin: auto 15px;
}
body {
font-family: "Roboto", sans-serif;
width: 100vw;
}
.mlAuto {
margin-left: auto;
}
.mrAuto {
margin-right: auto;
}
.mtAuto {
margin-top: auto;
}
.margin0 {
margin: 0;
}
.width100 {
width: 100%;
}
.height100 {
height: 100%;
}
.row,
.rowStatic {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.col {
padding: 20px;
width: 50%;
}
.col2 {
width: 100%;
}
.col75 {
width: 75%;
}
.col25 {
width: 25%;
}
.col20 {
width: 20%;
}
.col40 {
width: 40%;
}
.col90 {
width: 90%;
}
.col10 {
width: 10%;
}
.pad20 {
padding: 20px;
}
.fullScreenInfo {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: white;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
z-index: 3000;
}
.fullScreenInfoText {
font-size: 50px;
color: #1f1f1f;
}
.notificationContainer {
position: fixed;
top: auto;
bottom: 0;
right: 5px;
width: 282px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
z-index: 2003;
}
.notification {
height: 48px;
min-width: 170px;
margin: 2px;
background-color: #f1f1f4;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
padding: 10px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.notificationContent {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
color: white;
font-weight: 600;
font-size: 20px;
height: auto;
}
.notificationTitle {
color: black;
font-size: 16px;
margin: 0;
margin-bottom: 10px;
}
.notificationIcon {
margin: 0;
width: 50px;
height: 50px;
padding: 10px;
font-size: 28px;
color: black;
}
.notificationText {
color: black;
font-size: 12px;
}
.baseLink {
color: black;
text-decoration: none;
font-size: 16px;
}
.baseLink:hover {
cursor: pointer;
color: #4c4c47;
}
.transparent {
background-color: transparent;
border-color: transparent;
}
.topbarButton {
background-color: transparent;
color: #2d2d2a;
border: 1px solid transparent;
width: 48px;
height: 48px;
font-size: 1rem;
margin: 8px;
}
.topbarButton:hover {
background-color: #ffffff20;
border-radius: 8px;
}
.topbarButtonSmaller {
background-color: transparent;
color: #2d2d2a;
border: 1px solid transparent;
width: 28px;
height: 48px;
font-size: 1.2rem;
margin: 8px;
}
.searchBox {
height: 40px;
margin: 12px;
min-width: 250px;
width: 35%;
border-radius: 8px;
border: 1px solid transparent;
padding-left: 10px;
padding-right: 10px;
font-size: 20px;
}
.baseButton {
background: -webkit-gradient(linear, left top, left bottom, from(#039BE5), to(#1E88E5));
background: linear-gradient(#039BE5, #1E88E5);
color: white;
border: 1px solid transparent;
font-size: 0.75rem;
margin: 8px;
padding: 10px 16px;
text-decoration: none;
font-weight: 400;
font-family: "Roboto", sans-serif;
line-height: 1.2;
border-radius: 6px;
text-align: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.baseButton:hover {
background-color: transparent;
color: #4c4c47;
border: 1px solid #4c4c47;
-webkit-transition: all 0.3s;
transition: all 0.3s;
cursor: pointer;
}
.baseButton.link {
background-color: transparent;
color: #4c4c47;
}
.baseButton.link:hover,
.baseButton.link.alert:hover {
color: black;
border: 1px solid transparent;
}
.baseButton.link.alert {
color: #d50000;
}
.baseButtonM0 {
background-color: #4c4c47;
color: white;
border: 1px solid transparent;
font-size: 0.75rem;
margin: 0 8px 8px 8px;
padding: 6px;
text-decoration: none;
font-weight: 400;
font-family: "Roboto", sans-serif;
line-height: 1.2;
border-radius: 2px;
text-align: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 40px;
}
.baseButtonM0:hover {
background-color: transparent;
color: #4c4c47;
border: 1px solid #4c4c47;
-webkit-transition: all 0.3s;
transition: all 0.3s;
cursor: pointer;
}
.contentTitle {
color: black;
font-size: 1.5rem;
margin: auto 15px;
}
.baseControl {
padding: 10px;
background-color: white;
border-radius: 8px;
}
.editorContainer {
height: 600px;
margin: 8px;
}
table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
border-color: #2d2d2a;
}
div.responsiveTable {
background-color: white;
}
.paginate_button {
border-color: #4c4c47;
}
.paginate_button.disabled {
border-color: #dee2e6;
}
.paginate_button.current {
background-color: #4c4c47;
color: white;
}
.paginate_button:hover {
background-color: #4c4c47;
color: white;
cursor: pointer;
}
.dataTables_search {
border-color: #dee2e6;
}
.dataTables_select {
color: #2d2d2a;
border-color: #dee2e6;
}
.modal {
background-color: white;
color: black;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 2001;
}
.modalBackground {
color: black;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 2001;
}
.modalBackground.opened {
background: rgba(180, 180, 180, 0.3);
-webkit-backdrop-filter: blur(2px);
backdrop-filter: blur(2px);
right: 0;
bottom: 0;
left: 0;
top: 0;
padding: auto;
}
.modalBottomLeft {
bottom: 100%;
left: 100%;
-webkit-transition: bottom left 0.5s linear;
transition: bottom left 0.5s linear;
}
.modalBottomRight {
bottom: 100%;
right: 100%;
-webkit-transition: bottom right 0.5s linear;
transition: bottom right 0.5s linear;
}
.modalTopLeft {
top: 100%;
left: 100%;
-webkit-transition: top left 0.5s linear;
transition: top left 0.5s linear;
}
.modalTopRight {
top: 100%;
right: 100%;
-webkit-transition: top right 0.5s linear;
transition: top right 0.5s linear;
}
.modal.opened {
right: 0;
bottom: 0;
left: 0;
top: 0;
}
.modalContent {
width: 100%;
height: 100%;
display: none;
overflow-y: auto;
}
.modalSmallerContent {
width: 50%;
height: 80%;
display: none;
overflow-y: auto;
margin: 10% 25%;
background-color: white;
}
.modalWindowHeader {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
height: 34px;
}
.modalWindowButton {
background-color: transparent;
color: black;
border: 1px solid transparent;
width: 48px;
height: 48px;
font-size: 1rem;
margin: 8;
}
.modalWindowButton:hover {
background-color: #00000020;
border-radius: 8px;
}
.modalWindowTitle {
margin-top: auto;
margin-bottom: auto;
}
.modalWindowContent {
padding: 20px;
}
.modalHelperInfo {
padding: 20px;
}
.modalHeaderButtons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.baseButtonLink {
background-color: transparent;
color: black;
border: 1px solid transparent;
font-size: 1rem;
padding: 10px 20px;
text-decoration: none;
font-weight: 400;
font-family: "Roboto", sans-serif;
line-height: 1.5;
display: block;
text-align: left;
}
.baseButtonLinkSmaller {
background-color: transparent;
color: black;
border: 1px solid transparent;
font-size: 1rem;
padding: 5px 20px;
text-decoration: none;
font-weight: 400;
font-family: "Roboto", sans-serif;
line-height: 1.5;
display: block;
text-align: left;
}
.baseButtonLink:hover,
.baseButtonLinkSmaller:hover {
background-color: #00000020;
}
.dropdownButton {
cursor: pointer;
background-color: transparent;
color: #2d2d2a;
border: 1px solid transparent;
width: 28px;
height: 48px;
font-size: 1.25rem;
margin: 8px;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdownContent {
display: none;
position: absolute;
right: 24px;
top: 40px;
background-color: white;
min-width: 250px;
-webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 10;
}
.dropdownContentMiddle {
display: none;
position: absolute;
right: 24px;
top: -140px;
background-color: white;
min-width: 250px;
-webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 10;
}
.dropdownContent.active,
.dropdownContentMiddle.active {
display: block;
}
.colorBlock {
width: 32px;
height: 32px;
}
.ui-datepicker {
background-color: white;
color: black;
border: 1px solid #dee2e6;
padding: 10px;
width: 400px;
display: none;
}
.ui-datepicker-header {
height: 48px;
width: 100%;
position: relative;
}
.ui-datepicker-prev {
position: absolute;
left: 2px;
font-weight: 900;
font-family: "Font Awesome 5 Free";
}
.ui-datepicker-next {
position: absolute;
right: 2px;
font-weight: 900;
font-family: "Font Awesome 5 Free";
}
.ui-datepicker-title {
position: absolute;
top: 0;
text-align: center;
width: 276px;
margin: 0 51px;
}
.ui-datepicker-calendar {
width: 100%;
}
.ui-datepicker-calendar tbody tr td {
text-decoration: none;
color: black;
text-align: center;
border: 1px solid #dee2e6;
padding: 5px 0;
}
.ui-datepicker-calendar thead tr th {
text-align: center;
border: 1px solid #dee2e6;
padding: 5px 0;
}
.ui-datepicker-calendar tbody tr td a {
text-decoration: none;
color: black;
}
.ui-datepicker-calendar thead tr th a {
text-decoration: none;
color: black;
}
.ui-datepicker-current-day {
background-color: #dee2e6;
}
.ui-datepicker-unselectable span {
color: #dee2e6;
}
.ui-icon-circle-triangle-e {
color: white;
}
.ui-icon-circle-triangle-e::after {
color: black;
content: "\f0a9";
}
.ui-icon-circle-triangle-w {
color: white;
}
.ui-icon-circle-triangle-w::before {
color: black;
content: "\f0a8";
}
@media (max-width: 980px) {
.row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.col {
width: 100%;
}
.dropdownButtons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.searchBox {
width: auto;
}
.formTextBox {
min-width: 64px;
}
.modalWindowHeader {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
height: auto;
margin: 0 20px;
}
.modalSmallerContent {
width: 100%;
height: 100%;
margin: 0;
}
.modalBackground.opened {
padding: 0;
}
.taskContainerBase {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.baseControl.table {
overflow-x: scroll;
display: block;
width: 100%;
}
.mlAuto.modalHeaderButtons {
margin-left: 0;
}
.modalHeaderButtons {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.editorContainer {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
overflow-y: auto;
height: 500px;
margin: 8px;
}
}
.containerScroller {
overflow: hidden;
}
.navbar {
height: 64px;
background-color: #e7e7ea;
}
.navbarBrand {
width: 300px;
background-color: #f1f1f4;
height: 64px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.navbarContent {
width: calc(100vw - 300px);
height: 64px;
background-color: white;
-webkit-box-shadow: 0 4px 16px 0 rgba(167, 175, 183, 0.33);
box-shadow: 0 4px 16px 0 rgba(167, 175, 183, 0.33);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.navbarLogo {
width: 170px;
max-width: 170px;
margin: auto;
vertical-align: middle;
}
.fixedTop {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 2000;
}
.flexRow {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.contentContainer {
min-height: 200vh;
background-color: whitesmoke;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.sidebar {
width: 300px;
z-index: 11;
background-color: #f1f1f4;
min-height: calc(100vh-64px);
padding-bottom: 50px;
}
.nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
list-style: none;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.navItem {
line-height: 1;
color: black;
font-size: 15px;
}
.navCategory {
color: rgba(0, 0, 0, 0.7);
border-bottom: 1px solid rgba(0, 0, 0, 0.13);
margin: 0 30px;
font-size: 15px;
font-weight: 500;
padding: 10px 0 15px 0;
}
.navLink,
.navLink:visited {
background-color: transparent;
-webkit-transition: padding 0.3s;
transition: padding 0.3s;
position: relative;
height: 52px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 15px 30px 15px 30px;
white-space: nowrap;
color: black;
text-decoration: none;
border: none;
}
.navTitle {
-webkit-transition: padding 0.3s;
transition: padding 0.3s;
font-size: 15px;
vertical-align: middle;
font-weight: 500;
display: inline-block;
}
.navLink:hover .navTitle,
.navLink.active .navTitle {
padding-left: 10px;
}
.navIcon {
font-size: 15px;
color: black;
margin-right: 20px;
}
.container {
padding: 1.5rem;
width: 100%;
}
.containerTopbar {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.containerTitle {
font-weight: 400;
font-size: 20px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}
.containerButtons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
padding: 10px;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
height: 76px;
}
.content {
min-height: 100px;
}
@media (max-width: 980px) {
.contentContainer {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.sidebar {
width: 100vw;
}
.navbarContent {
-webkit-box-shadow: none;
box-shadow: none;
background-color: #f1f1f4;
}
.container {
width: 100vw;
}
.navbar {
-webkit-box-shadow: 0 4px 16px 0 rgba(167, 175, 183, 0.33);
box-shadow: 0 4px 16px 0 rgba(167, 175, 183, 0.33);
}
}
.indicatorItem {
background-color: white;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-perspective: 1000px;
perspective: 1000px;
}
.indicatorTitle {
font-size: 15px;
height: 32px;
}
.indicatorItemContainer {
-webkit-transition: 0.6s;
transition: 0.6s;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.indicatorItem.active .indicatorItemContainer,
.indicatorItem.active .indicatorItemContainer {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.indicatorContent,
.indicatorInfo {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.indicatorInfo {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.indicatorContent {
z-index: 4000;
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
}
.indicatorInfo {
z-index: 3999;
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.ql-container {
height: calc(100% - 42px);
}
.transparentButtonLink {
background-color: transparent;
color: black;
border: 1px solid transparent;
font-size: 1rem;
padding: 2px;
text-decoration: none;
font-weight: 400;
font-family: "Roboto", sans-serif;
line-height: 1.5;
display: block;
text-align: left;
}
.transparentButtonLink:hover {
background-color: #00000020;
}
@-webkit-keyframes spinner {
0% {
-webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg);
transform: translate3d(-50%, -50%, 0) rotate(0deg);
}
100% {
-webkit-transform: translate3d(-50%, -50%, 0) rotate(360deg);
transform: translate3d(-50%, -50%, 0) rotate(360deg);
}
}
@keyframes spinner {
0% {
-webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg);
transform: translate3d(-50%, -50%, 0) rotate(0deg);
}
100% {
-webkit-transform: translate3d(-50%, -50%, 0) rotate(360deg);
transform: translate3d(-50%, -50%, 0) rotate(360deg);
}
}
.spin::before {
-webkit-animation: 1.5s linear infinite spinner;
animation: 1.5s linear infinite spinner;
-webkit-animation-play-state: inherit;
animation-play-state: inherit;
border: solid 5px transparent;
border-bottom-color: white;
border-radius: 50%;
content: "";
height: 40px;
width: 40px;
position: fixed;
top: calc(50%-20px);
left: calc(50%-20px);
-webkit-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
will-change: transform;
}
.loadingScreen {
background-color: #9e9e9e;
}
.modalLoading {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: white;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.spinner-box {
width: 300px;
height: 300px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: transparent;
}
.circle-border {
width: 150px;
height: 150px;
padding: 3px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 50%;
background: #3ff9dc;
background: -webkit-gradient(linear, left bottom, left top, color-stop(33%, rgba(63, 249, 220, 0.1)), to(#0d47a1));
background: linear-gradient(0deg, rgba(63, 249, 220, 0.1) 33%, #0d47a1 100%);
-webkit-animation: spin 0.8s linear 0s infinite;
animation: spin 0.8s linear 0s infinite;
}
.circle-core {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: white;
}
@media (max-width: 980px) {
.containerTopbar, .containerButtons {
height: auto;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.baseButton.mlAuto {
margin-left: 8px !important;
}
}
/*# sourceMappingURL=styles.css.map */ | assets/css/template/styles.css | @-webkit-keyframes spin {
from {
-webkit-transform: rotate(0);
transform: rotate(0);
}
to {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
@keyframes spin {
from {
-webkit-transform: rotate(0);
transform: rotate(0);
}
to {
-webkit-transform: rotate(359deg);
transform: rotate(359deg);
}
}
* {
padding: 0;
margin: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
h2 {
font-size: 1.3rem;
}
h5 {
color: black;
font-size: 1.5rem;
margin: auto 15px;
}
h6 {
color: black;
font-size: 1.25rem;
margin: auto 15px;
}
body {
font-family: "Roboto", sans-serif;
width: 100vw;
}
.mlAuto {
margin-left: auto;
}
.mrAuto {
margin-right: auto;
}
.mtAuto {
margin-top: auto;
}
.margin0 {
margin: 0;
}
.width100 {
width: 100%;
}
.height100 {
height: 100%;
}
.row,
.rowStatic {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.col {
padding: 20px;
width: 50%;
}
.col2 {
width: 100%;
}
.col75 {
width: 75%;
}
.col25 {
width: 25%;
}
.col20 {
width: 20%;
}
.col40 {
width: 40%;
}
.col90 {
width: 90%;
}
.col10 {
width: 10%;
}
.pad20 {
padding: 20px;
}
.fullScreenInfo {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: white;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
z-index: 3000;
}
.fullScreenInfoText {
font-size: 50px;
color: #1f1f1f;
}
.notificationContainer {
position: fixed;
top: auto;
bottom: 0;
right: 5px;
width: 282px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
z-index: 2003;
}
.notification {
height: 48px;
min-width: 170px;
margin: 2px;
background-color: #f1f1f4;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
padding: 10px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.notificationContent {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
color: white;
font-weight: 600;
font-size: 20px;
height: auto;
}
.notificationTitle {
color: black;
font-size: 16px;
margin: 0;
margin-bottom: 10px;
}
.notificationIcon {
margin: 0;
width: 50px;
height: 50px;
padding: 10px;
font-size: 28px;
color: black;
}
.notificationText {
color: black;
font-size: 12px;
}
.baseLink {
color: black;
text-decoration: none;
font-size: 16px;
}
.baseLink:hover {
cursor: pointer;
color: #4c4c47;
}
.transparent {
background-color: transparent;
border-color: transparent;
}
.topbarButton {
background-color: transparent;
color: #2d2d2a;
border: 1px solid transparent;
width: 48px;
height: 48px;
font-size: 1rem;
margin: 8px;
}
.topbarButton:hover {
background-color: #ffffff20;
border-radius: 8px;
}
.topbarButtonSmaller {
background-color: transparent;
color: #2d2d2a;
border: 1px solid transparent;
width: 28px;
height: 48px;
font-size: 1.2rem;
margin: 8px;
}
.searchBox {
height: 40px;
margin: 12px;
min-width: 250px;
width: 35%;
border-radius: 8px;
border: 1px solid transparent;
padding-left: 10px;
padding-right: 10px;
font-size: 20px;
}
.baseButton {
background: -webkit-gradient(linear, left top, left bottom, from(#039BE5), to(#1E88E5));
background: linear-gradient(#039BE5, #1E88E5);
color: white;
border: 1px solid transparent;
font-size: 0.75rem;
margin: 8px;
padding: 10px 16px;
text-decoration: none;
font-weight: 400;
font-family: "Roboto", sans-serif;
line-height: 1.2;
border-radius: 6px;
text-align: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.baseButton:hover {
background-color: transparent;
color: #4c4c47;
border: 1px solid #4c4c47;
-webkit-transition: all 0.3s;
transition: all 0.3s;
cursor: pointer;
}
.baseButton.link {
background-color: transparent;
color: #4c4c47;
}
.baseButton.link:hover,
.baseButton.link.alert:hover {
color: black;
border: 1px solid transparent;
}
.baseButton.link.alert {
color: #d50000;
}
.baseButtonM0 {
background-color: #4c4c47;
color: white;
border: 1px solid transparent;
font-size: 0.75rem;
margin: 0 8px 8px 8px;
padding: 6px;
text-decoration: none;
font-weight: 400;
font-family: "Roboto", sans-serif;
line-height: 1.2;
border-radius: 2px;
text-align: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
height: 40px;
}
.baseButtonM0:hover {
background-color: transparent;
color: #4c4c47;
border: 1px solid #4c4c47;
-webkit-transition: all 0.3s;
transition: all 0.3s;
cursor: pointer;
}
.contentTitle {
color: black;
font-size: 1.5rem;
margin: auto 15px;
}
.baseControl {
padding: 10px;
background-color: white;
border-radius: 8px;
}
.editorContainer {
height: 600px;
margin: 8px;
}
table.table-bordered.dataTable th,
table.table-bordered.dataTable td {
border-color: #2d2d2a;
}
div.responsiveTable {
background-color: white;
}
.paginate_button {
border-color: #4c4c47;
}
.paginate_button.disabled {
border-color: #dee2e6;
}
.paginate_button.current {
background-color: #4c4c47;
color: white;
}
.paginate_button:hover {
background-color: #4c4c47;
color: white;
cursor: pointer;
}
.dataTables_search {
border-color: #dee2e6;
}
.dataTables_select {
color: #2d2d2a;
border-color: #dee2e6;
}
.modal {
background-color: white;
color: black;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 2001;
}
.modalBackground {
color: black;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 2001;
}
.modalBackground.opened {
background: rgba(180, 180, 180, 0.3);
-webkit-backdrop-filter: blur(2px);
backdrop-filter: blur(2px);
right: 0;
bottom: 0;
left: 0;
top: 0;
padding: auto;
}
.modalBottomLeft {
bottom: 100%;
left: 100%;
-webkit-transition: bottom left 0.5s linear;
transition: bottom left 0.5s linear;
}
.modalBottomRight {
bottom: 100%;
right: 100%;
-webkit-transition: bottom right 0.5s linear;
transition: bottom right 0.5s linear;
}
.modalTopLeft {
top: 100%;
left: 100%;
-webkit-transition: top left 0.5s linear;
transition: top left 0.5s linear;
}
.modalTopRight {
top: 100%;
right: 100%;
-webkit-transition: top right 0.5s linear;
transition: top right 0.5s linear;
}
.modal.opened {
right: 0;
bottom: 0;
left: 0;
top: 0;
}
.modalContent {
width: 100%;
height: 100%;
display: none;
overflow-y: auto;
}
.modalSmallerContent {
width: 50%;
height: 80%;
display: none;
overflow-y: auto;
margin: 10% 25%;
background-color: white;
}
.modalWindowHeader {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
height: 34px;
}
.modalWindowButton {
background-color: transparent;
color: black;
border: 1px solid transparent;
width: 48px;
height: 48px;
font-size: 1rem;
margin: 8;
}
.modalWindowButton:hover {
background-color: #00000020;
border-radius: 8px;
}
.modalWindowTitle {
margin-top: auto;
margin-bottom: auto;
}
.modalWindowContent {
padding: 20px;
}
.modalHelperInfo {
padding: 20px;
}
.modalHeaderButtons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.baseButtonLink {
background-color: transparent;
color: black;
border: 1px solid transparent;
font-size: 1rem;
padding: 10px 20px;
text-decoration: none;
font-weight: 400;
font-family: "Roboto", sans-serif;
line-height: 1.5;
display: block;
text-align: left;
}
.baseButtonLinkSmaller {
background-color: transparent;
color: black;
border: 1px solid transparent;
font-size: 1rem;
padding: 5px 20px;
text-decoration: none;
font-weight: 400;
font-family: "Roboto", sans-serif;
line-height: 1.5;
display: block;
text-align: left;
}
.baseButtonLink:hover,
.baseButtonLinkSmaller:hover {
background-color: #00000020;
}
.dropdownButton {
cursor: pointer;
background-color: transparent;
color: #2d2d2a;
border: 1px solid transparent;
width: 28px;
height: 48px;
font-size: 1.25rem;
margin: 8px;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdownContent {
display: none;
position: absolute;
right: 24px;
top: 40px;
background-color: white;
min-width: 250px;
-webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 10;
}
.dropdownContentMiddle {
display: none;
position: absolute;
right: 24px;
top: -140px;
background-color: white;
min-width: 250px;
-webkit-box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 10;
}
.dropdownContent.active,
.dropdownContentMiddle.active {
display: block;
}
.colorBlock {
width: 32px;
height: 32px;
}
.ui-datepicker {
background-color: white;
color: black;
border: 1px solid #dee2e6;
padding: 10px;
width: 400px;
display: none;
}
.ui-datepicker-header {
height: 48px;
width: 100%;
position: relative;
}
.ui-datepicker-prev {
position: absolute;
left: 2px;
font-weight: 900;
font-family: "Font Awesome 5 Free";
}
.ui-datepicker-next {
position: absolute;
right: 2px;
font-weight: 900;
font-family: "Font Awesome 5 Free";
}
.ui-datepicker-title {
position: absolute;
top: 0;
text-align: center;
width: 276px;
margin: 0 51px;
}
.ui-datepicker-calendar {
width: 100%;
}
.ui-datepicker-calendar tbody tr td {
text-decoration: none;
color: black;
text-align: center;
border: 1px solid #dee2e6;
padding: 5px 0;
}
.ui-datepicker-calendar thead tr th {
text-align: center;
border: 1px solid #dee2e6;
padding: 5px 0;
}
.ui-datepicker-calendar tbody tr td a {
text-decoration: none;
color: black;
}
.ui-datepicker-calendar thead tr th a {
text-decoration: none;
color: black;
}
.ui-datepicker-current-day {
background-color: #dee2e6;
}
.ui-datepicker-unselectable span {
color: #dee2e6;
}
.ui-icon-circle-triangle-e {
color: white;
}
.ui-icon-circle-triangle-e::after {
color: black;
content: "\f0a9";
}
.ui-icon-circle-triangle-w {
color: white;
}
.ui-icon-circle-triangle-w::before {
color: black;
content: "\f0a8";
}
@media (max-width: 980px) {
.row {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.col {
width: 100%;
}
.dropdownButtons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.searchBox {
width: auto;
}
.formTextBox {
min-width: 64px;
}
.modalWindowHeader {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
height: auto;
margin: 0 20px;
}
.modalSmallerContent {
width: 100%;
height: 100%;
margin: 0;
}
.modalBackground.opened {
padding: 0;
}
.taskContainerBase {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.baseControl.table {
overflow-x: scroll;
display: block;
width: 100%;
}
.mlAuto.modalHeaderButtons {
margin-left: 0;
}
.modalHeaderButtons {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.editorContainer {
-webkit-box-flex: 1;
-ms-flex: 1;
flex: 1;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
overflow-y: auto;
height: 500px;
margin: 8px;
}
}
.containerScroller {
overflow: hidden;
}
.navbar {
height: 64px;
background-color: #e7e7ea;
}
.navbarBrand {
width: 300px;
background-color: #f1f1f4;
height: 64px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.navbarContent {
width: calc(100vw - 300px);
height: 64px;
background-color: white;
-webkit-box-shadow: 0 4px 16px 0 rgba(167, 175, 183, 0.33);
box-shadow: 0 4px 16px 0 rgba(167, 175, 183, 0.33);
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.navbarLogo {
width: 170px;
max-width: 170px;
margin: auto;
vertical-align: middle;
}
.fixedTop {
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 2000;
}
.flexRow {
display: -webkit-box !important;
display: -ms-flexbox !important;
display: flex !important;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.contentContainer {
min-height: 200vh;
background-color: whitesmoke;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
}
.sidebar {
width: 300px;
z-index: 11;
background-color: #f1f1f4;
min-height: calc(100vh-64px);
padding-bottom: 50px;
}
.nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
list-style: none;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.navItem {
line-height: 1;
color: black;
font-size: 15px;
}
.navCategory {
color: rgba(0, 0, 0, 0.7);
border-bottom: 1px solid rgba(0, 0, 0, 0.13);
margin: 0 30px;
font-size: 15px;
font-weight: 500;
padding: 10px 0 15px 0;
}
.navLink,
.navLink:visited {
background-color: transparent;
-webkit-transition: padding 0.3s;
transition: padding 0.3s;
position: relative;
height: 52px;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
padding: 15px 30px 15px 30px;
white-space: nowrap;
color: black;
text-decoration: none;
border: none;
}
.navTitle {
-webkit-transition: padding 0.3s;
transition: padding 0.3s;
font-size: 15px;
vertical-align: middle;
font-weight: 500;
display: inline-block;
}
.navLink:hover .navTitle,
.navLink.active .navTitle {
padding-left: 10px;
}
.navIcon {
font-size: 15px;
color: black;
margin-right: 20px;
}
.container {
padding: 1.5rem;
width: 100%;
}
.containerTopbar {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
width: 100%;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.containerTitle {
font-weight: 400;
font-size: 20px;
padding-bottom: 10px;
border-bottom: 1px solid rgba(0, 0, 0, 0.13);
}
.containerButtons {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
padding: 10px;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
height: 76px;
}
.content {
min-height: 100px;
}
@media (max-width: 980px) {
.contentContainer {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.sidebar {
width: 100vw;
}
.navbarContent {
-webkit-box-shadow: none;
box-shadow: none;
background-color: #f1f1f4;
}
.container {
width: 100vw;
}
.navbar {
-webkit-box-shadow: 0 4px 16px 0 rgba(167, 175, 183, 0.33);
box-shadow: 0 4px 16px 0 rgba(167, 175, 183, 0.33);
}
}
.indicatorItem {
background-color: white;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-perspective: 1000px;
perspective: 1000px;
}
.indicatorTitle {
font-size: 15px;
height: 32px;
}
.indicatorItemContainer {
-webkit-transition: 0.6s;
transition: 0.6s;
-webkit-transform-style: preserve-3d;
transform-style: preserve-3d;
}
.indicatorItem.active .indicatorItemContainer,
.indicatorItem.active .indicatorItemContainer {
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.indicatorContent,
.indicatorInfo {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.indicatorInfo {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.indicatorContent {
z-index: 4000;
-webkit-transform: rotateY(0deg);
transform: rotateY(0deg);
}
.indicatorInfo {
z-index: 3999;
-webkit-transform: rotateY(180deg);
transform: rotateY(180deg);
}
.ql-container {
height: calc(100% - 42px);
}
.transparentButtonLink {
background-color: transparent;
color: black;
border: 1px solid transparent;
font-size: 1rem;
padding: 2px;
text-decoration: none;
font-weight: 400;
font-family: "Roboto", sans-serif;
line-height: 1.5;
display: block;
text-align: left;
}
.transparentButtonLink:hover {
background-color: #00000020;
}
@-webkit-keyframes spinner {
0% {
-webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg);
transform: translate3d(-50%, -50%, 0) rotate(0deg);
}
100% {
-webkit-transform: translate3d(-50%, -50%, 0) rotate(360deg);
transform: translate3d(-50%, -50%, 0) rotate(360deg);
}
}
@keyframes spinner {
0% {
-webkit-transform: translate3d(-50%, -50%, 0) rotate(0deg);
transform: translate3d(-50%, -50%, 0) rotate(0deg);
}
100% {
-webkit-transform: translate3d(-50%, -50%, 0) rotate(360deg);
transform: translate3d(-50%, -50%, 0) rotate(360deg);
}
}
.spin::before {
-webkit-animation: 1.5s linear infinite spinner;
animation: 1.5s linear infinite spinner;
-webkit-animation-play-state: inherit;
animation-play-state: inherit;
border: solid 5px transparent;
border-bottom-color: white;
border-radius: 50%;
content: "";
height: 40px;
width: 40px;
position: fixed;
top: calc(50%-20px);
left: calc(50%-20px);
-webkit-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
will-change: transform;
}
.loadingScreen {
background-color: #9e9e9e;
}
.modalLoading {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: white;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
}
.spinner-box {
width: 300px;
height: 300px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background-color: transparent;
}
.circle-border {
width: 150px;
height: 150px;
padding: 3px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
border-radius: 50%;
background: #3ff9dc;
background: -webkit-gradient(linear, left bottom, left top, color-stop(33%, rgba(63, 249, 220, 0.1)), to(#0d47a1));
background: linear-gradient(0deg, rgba(63, 249, 220, 0.1) 33%, #0d47a1 100%);
-webkit-animation: spin 0.8s linear 0s infinite;
animation: spin 0.8s linear 0s infinite;
}
.circle-core {
width: 100%;
height: 100%;
border-radius: 50%;
background-color: white;
}
@media (max-width: 980px) {
.containerTopbar, .containerButtons {
height: auto;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
}
.baseButton.mlAuto {
margin-left: 8px !important;
}
}
/*# sourceMappingURL=styles.css.map */ | 0.447943 | 0.106087 |
html {
box-sizing: border-box;
height: 100%;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
margin: 0;
padding: 0;
min-height: 100%;
font-family: 'Inconsolata', monospace;
background: #000;
color: #fff;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
svg {
display: block;
}
.navigation {
display: flex;
position: fixed;
top: 10px;
right: 10px;
width: 64px;
border: 1px solid #fff;
}
.navigation:hover .navigation__list {
visibility: visible;
opacity: 1;
transition: visibility linear,
opacity ease-out 0.2s;
}
.navigation__list {
visibility: hidden;
opacity: 0;
z-index: 2;
display: flex;
position: absolute;
top: -1px;
right: -1px;
flex-direction: row;
flex-wrap: wrap;
height: auto;
width: 152px;
background: #fff;
transition: 0.15s all 0.2s ease-out;
border: 1px solid #fff;
}
.navigation__current {
right: 31px;
width: 31px;
height: 31px;
background: #ddd;
font-size: 16px;
line-height: 31px;
text-align: center;
color: #000;
}
.navigation__item {
position: relative;
height: 30px;
font-size: 16px;
line-height: 30px;
color: #333;
}
.navigation__link {
position: relative;
display: block;
width: 30px;
height: 30px;
text-align: center;
text-decoration: none;
transition: all 0.15s ease-out;
color: #333;
}
.navigation__link--active {
cursor: default;
}
.navigation__link--active,
.navigation__link:hover {
background: #ddd;
}
.tooltip {
visibility: hidden;
opacity: 0;
position: absolute;
right: 38px;
top: 3px;
padding: 0 5px 0 8px;
background: #000;
color: #fff;
line-height: 24px;
transition: 0.1s all 0.10s ease-out;
transform: translateX(-8px);
white-space: nowrap;
pointer-events: none;
}
.navigation__item:hover .tooltip {
visibility: visible;
opacity: 1;
transition: visibility 0s linear 0.2s,
opacity 0.10s ease-out 0.2s,
transform 0.15s ease-out 0.2s;
transform: translateX(0);
}
@media only screen and (max-width: 640px) {
.navigation__item .tooltip {
display: none;
}
}
.tooltip::after {
position: absolute;
right: -12px;
top: 0;
content: '';
pointer-events: none;
width: 0;
height: 0;
border-style: solid;
border-width: 12px 0 12px 12px;
border-color: transparent transparent transparent #000;
}
.info {
position: fixed;
z-index: 2;
left: 10px;
top: 10px;
}
.info__icon {
display: block;
width: 33px;
height: 33px;
line-height: 33px;
background: #000;
color: #fff;
text-align: center;
font-size: 18px;
border: 1px solid #fff;
}
.info__panel {
visibility: hidden;
opacity: 0;
position: absolute;
left: 0;
top: 0;
padding: 0 10px;
width: 600px;
background: #fff;
transition: 0.15s all 0.2s ease-out;
}
.info:hover .info__panel {
visibility: visible;
opacity: 1;
transition: visibility linear,
opacity ease-out 0.2s;
}
.info__text {
font-size: 16px;
line-height: 1.5;
color: #000;
}
.info__text h1 {
margin: 0;
font-size: 24px;
}
.info__text h3 {
margin: 0;
}
.info__text a {
color: #000;
}
.pause {
position: fixed;
z-index: 1;
top: 10px;
left: 53px;
padding: 0 8px;
background: #000;
border: 1px solid #fff;
font-size: 18px;
color: #fff;
height: 33px;
line-height: 31px;
white-space: nowrap;
}
@media only screen and (max-width: 640px) {
.pause {
font-size: 16px;
}
} | public/css/styles.css | html {
box-sizing: border-box;
height: 100%;
}
*, *:before, *:after {
box-sizing: inherit;
}
body {
margin: 0;
padding: 0;
min-height: 100%;
font-family: 'Inconsolata', monospace;
background: #000;
color: #fff;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
svg {
display: block;
}
.navigation {
display: flex;
position: fixed;
top: 10px;
right: 10px;
width: 64px;
border: 1px solid #fff;
}
.navigation:hover .navigation__list {
visibility: visible;
opacity: 1;
transition: visibility linear,
opacity ease-out 0.2s;
}
.navigation__list {
visibility: hidden;
opacity: 0;
z-index: 2;
display: flex;
position: absolute;
top: -1px;
right: -1px;
flex-direction: row;
flex-wrap: wrap;
height: auto;
width: 152px;
background: #fff;
transition: 0.15s all 0.2s ease-out;
border: 1px solid #fff;
}
.navigation__current {
right: 31px;
width: 31px;
height: 31px;
background: #ddd;
font-size: 16px;
line-height: 31px;
text-align: center;
color: #000;
}
.navigation__item {
position: relative;
height: 30px;
font-size: 16px;
line-height: 30px;
color: #333;
}
.navigation__link {
position: relative;
display: block;
width: 30px;
height: 30px;
text-align: center;
text-decoration: none;
transition: all 0.15s ease-out;
color: #333;
}
.navigation__link--active {
cursor: default;
}
.navigation__link--active,
.navigation__link:hover {
background: #ddd;
}
.tooltip {
visibility: hidden;
opacity: 0;
position: absolute;
right: 38px;
top: 3px;
padding: 0 5px 0 8px;
background: #000;
color: #fff;
line-height: 24px;
transition: 0.1s all 0.10s ease-out;
transform: translateX(-8px);
white-space: nowrap;
pointer-events: none;
}
.navigation__item:hover .tooltip {
visibility: visible;
opacity: 1;
transition: visibility 0s linear 0.2s,
opacity 0.10s ease-out 0.2s,
transform 0.15s ease-out 0.2s;
transform: translateX(0);
}
@media only screen and (max-width: 640px) {
.navigation__item .tooltip {
display: none;
}
}
.tooltip::after {
position: absolute;
right: -12px;
top: 0;
content: '';
pointer-events: none;
width: 0;
height: 0;
border-style: solid;
border-width: 12px 0 12px 12px;
border-color: transparent transparent transparent #000;
}
.info {
position: fixed;
z-index: 2;
left: 10px;
top: 10px;
}
.info__icon {
display: block;
width: 33px;
height: 33px;
line-height: 33px;
background: #000;
color: #fff;
text-align: center;
font-size: 18px;
border: 1px solid #fff;
}
.info__panel {
visibility: hidden;
opacity: 0;
position: absolute;
left: 0;
top: 0;
padding: 0 10px;
width: 600px;
background: #fff;
transition: 0.15s all 0.2s ease-out;
}
.info:hover .info__panel {
visibility: visible;
opacity: 1;
transition: visibility linear,
opacity ease-out 0.2s;
}
.info__text {
font-size: 16px;
line-height: 1.5;
color: #000;
}
.info__text h1 {
margin: 0;
font-size: 24px;
}
.info__text h3 {
margin: 0;
}
.info__text a {
color: #000;
}
.pause {
position: fixed;
z-index: 1;
top: 10px;
left: 53px;
padding: 0 8px;
background: #000;
border: 1px solid #fff;
font-size: 18px;
color: #fff;
height: 33px;
line-height: 31px;
white-space: nowrap;
}
@media only screen and (max-width: 640px) {
.pause {
font-size: 16px;
}
} | 0.631026 | 0.071203 |
.searchBarContainer {
margin: auto auto;
}
.autoCompleteOuterContainer--searchBar {
border: none;
}
.discountInsideContainer {
background-color: #662d91;
font-weight: 600;
}
.infoCardImage--ysaInfoCard {
width: 40%;
height: 40%;
align-items: center;
}
.infoCardImageContainer--ysaInfoCard {
background-color: #662d91;
display: flex;
align-items: center;
justify-content: center;
}
.infoCardContainer--ysaInfoCard {
background-color: #662d91;
background-image: url("https://hiringcoders11.vtexassets.com/arquivos/backgroundImgYsa.jpg");
background-repeat: no-repeat;
padding: 0;
}
.infoCardHeadline--ysaInfoCard {
color: white;
}
.infoCardSubhead--ysaInfoCard {
color: white;
}
/* ---InfoCard Ysa---- */
.infoCardImage--ysaInfoCard {
width: 40%;
height: 40%;
}
.infoCardImageContainer--ysaInfoCard {
background-color: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
}
.infoCardContainer--ysaInfoCard {
background-color: #662d91;
background-image: url("https://hiringcoders11.vtexassets.com/arquivos/backgroundImgYsa.jpg");
background-repeat: no-repeat;
background-position: left;
background-size: 50% 100%;
padding: 0;
}
/* --- InfoCard Teto --- */
.infoCardContainer--teto-home {
padding: 0;
width: 90%;
/* height: 320px; */
margin: 0 auto;
overflow: hidden;
max-width: 1100px;
background-image: linear-gradient(
to left,
#d3a9f1,
rgba(102, 45, 145, 0.2),
#d3a9f1
);
display: flex;
align-items: initial;
}
.infoCardImageContainer--teto-home {
width: 50%;
}
.infoCardCallActionContainer--teto-home {
align-items: center;
justify-content: center;
}
.infoCardTextContainer--teto-home {
display: flex;
justify-content: center;
align-items: center;
}
.infoCardHeadline--ysaInfoCard {
color: white;
}
.infoCardSubhead--ysaInfoCard {
color: white;
}
.infoCardImage--teto-home {
width: 100%;
}
.infoCardCallActionContainer--teto-home {
align-items: center;
justify-content: center;
}
.infoCardHeadline--teto-home {
color: #662d91;
} | store/tv-store/styles/css/vtex.store-components.css | .searchBarContainer {
margin: auto auto;
}
.autoCompleteOuterContainer--searchBar {
border: none;
}
.discountInsideContainer {
background-color: #662d91;
font-weight: 600;
}
.infoCardImage--ysaInfoCard {
width: 40%;
height: 40%;
align-items: center;
}
.infoCardImageContainer--ysaInfoCard {
background-color: #662d91;
display: flex;
align-items: center;
justify-content: center;
}
.infoCardContainer--ysaInfoCard {
background-color: #662d91;
background-image: url("https://hiringcoders11.vtexassets.com/arquivos/backgroundImgYsa.jpg");
background-repeat: no-repeat;
padding: 0;
}
.infoCardHeadline--ysaInfoCard {
color: white;
}
.infoCardSubhead--ysaInfoCard {
color: white;
}
/* ---InfoCard Ysa---- */
.infoCardImage--ysaInfoCard {
width: 40%;
height: 40%;
}
.infoCardImageContainer--ysaInfoCard {
background-color: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
}
.infoCardContainer--ysaInfoCard {
background-color: #662d91;
background-image: url("https://hiringcoders11.vtexassets.com/arquivos/backgroundImgYsa.jpg");
background-repeat: no-repeat;
background-position: left;
background-size: 50% 100%;
padding: 0;
}
/* --- InfoCard Teto --- */
.infoCardContainer--teto-home {
padding: 0;
width: 90%;
/* height: 320px; */
margin: 0 auto;
overflow: hidden;
max-width: 1100px;
background-image: linear-gradient(
to left,
#d3a9f1,
rgba(102, 45, 145, 0.2),
#d3a9f1
);
display: flex;
align-items: initial;
}
.infoCardImageContainer--teto-home {
width: 50%;
}
.infoCardCallActionContainer--teto-home {
align-items: center;
justify-content: center;
}
.infoCardTextContainer--teto-home {
display: flex;
justify-content: center;
align-items: center;
}
.infoCardHeadline--ysaInfoCard {
color: white;
}
.infoCardSubhead--ysaInfoCard {
color: white;
}
.infoCardImage--teto-home {
width: 100%;
}
.infoCardCallActionContainer--teto-home {
align-items: center;
justify-content: center;
}
.infoCardHeadline--teto-home {
color: #662d91;
} | 0.41834 | 0.087213 |
.comment-list {
color: #666;
border-top: dotted 1px #aaa;
margin-bottom: 2%;
}
.comment {
overflow: hidden;
padding: .2em 2em .2em .5em;
border-bottom: dotted 1px #ddd;
line-height: 16px;
}
.comment p {
display: inline;
}
.comment .vote-option.voted {
color: #FF0000;
}
.comment .comment-meta-hidden {
display: none;
}
.comment:hover .comment-meta-hidden {
display: inline-block;
vertical-align: top;
}
.comment .flag-it.selected,
.comment .flag-it:hover {
color: #f8d408;
}
.comment-meta {
width: 5%;
min-height: 33px;
}
@media only screen and (max-width: 550px) {
.comment-meta {
height: 40px;
text-align: center;
}
}
.comment-option {
color: #d0d0d0;
}
.comment-container {
width: 94%;
float: right;
}
.comment-container > * {
display: inline;
}
.comment-container .ajax-form {
margin-top: .5em;
}
.comment:hover,
.to-flag {
background-color: #FAFAFA;
}
.same-author {
background-color: #E0EAF1;
padding: 0 .35em;
}
.modal-flag {
background-color: white;
border: 1px solid #eaeaea;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
position: absolute;
width: 22%;
z-index: 999;
padding: 10px;
}
@media only screen and (max-width: 1220px) {
.modal-flag {
width: 32%;
}
}
@media only screen and (max-width: 840px) {
.modal-flag {
width: 36%;
}
}
@media only screen and (max-width: 700px) {
.modal-flag {
width: 40%;
}
}
@media only screen and (max-width: 550px) {
.modal-flag {
width: 53%;
}
}
@media only screen and (max-width: 400px) {
.modal-flag {
width: 60%;
}
}
.modal-flag input[type="radio"] {
display: inline-block;
width: 5%;
vertical-align: middle;
}
.modal-flag label {
display: inline-block;
width: 90%;
}
.modal-flag textarea {
border: 1px solid #aaa;
width: 85%;
}
@media only screen and (max-width: 1220px) {
.modal-flag textarea {
width: 88%;
}
}
@media only screen and (max-width: 840px) {
.modal-flag textarea {
width: 83%;
}
}
@media only screen and (max-width: 700px) {
.modal-flag textarea {
width: 82%;
}
}
@media only screen and (max-width: 550px) {
.modal-flag textarea {
width: 83%;
}
}
.modal-flag input[type="submit"] {
background-color: #333;
border: 1px solid black;
box-shadow: 0 2px 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
color: white;
font-size: 1em;
font-weight: normal;
margin: 4% 25%;
opacity: 0.5;
width: 50%;
}
.modal-flag input[type="submit"]:hover {
opacity: 0.7;
}
.modal-flag input[type="submit"]:active {
opacity: 1;
}
.comment-vote-count {
color: #9B764F;
font-size: 1.25em;
font-weight: bold;
margin-top: 10%;
float: left;
}
.modal-close-button {
cursor: pointer;
font-size: 1.4em;
float: right;
}
.comment-remaining-characters {
padding: 0.5em 0;
} | src/main/resources/static/assets/generated-css/comments.css | .comment-list {
color: #666;
border-top: dotted 1px #aaa;
margin-bottom: 2%;
}
.comment {
overflow: hidden;
padding: .2em 2em .2em .5em;
border-bottom: dotted 1px #ddd;
line-height: 16px;
}
.comment p {
display: inline;
}
.comment .vote-option.voted {
color: #FF0000;
}
.comment .comment-meta-hidden {
display: none;
}
.comment:hover .comment-meta-hidden {
display: inline-block;
vertical-align: top;
}
.comment .flag-it.selected,
.comment .flag-it:hover {
color: #f8d408;
}
.comment-meta {
width: 5%;
min-height: 33px;
}
@media only screen and (max-width: 550px) {
.comment-meta {
height: 40px;
text-align: center;
}
}
.comment-option {
color: #d0d0d0;
}
.comment-container {
width: 94%;
float: right;
}
.comment-container > * {
display: inline;
}
.comment-container .ajax-form {
margin-top: .5em;
}
.comment:hover,
.to-flag {
background-color: #FAFAFA;
}
.same-author {
background-color: #E0EAF1;
padding: 0 .35em;
}
.modal-flag {
background-color: white;
border: 1px solid #eaeaea;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
position: absolute;
width: 22%;
z-index: 999;
padding: 10px;
}
@media only screen and (max-width: 1220px) {
.modal-flag {
width: 32%;
}
}
@media only screen and (max-width: 840px) {
.modal-flag {
width: 36%;
}
}
@media only screen and (max-width: 700px) {
.modal-flag {
width: 40%;
}
}
@media only screen and (max-width: 550px) {
.modal-flag {
width: 53%;
}
}
@media only screen and (max-width: 400px) {
.modal-flag {
width: 60%;
}
}
.modal-flag input[type="radio"] {
display: inline-block;
width: 5%;
vertical-align: middle;
}
.modal-flag label {
display: inline-block;
width: 90%;
}
.modal-flag textarea {
border: 1px solid #aaa;
width: 85%;
}
@media only screen and (max-width: 1220px) {
.modal-flag textarea {
width: 88%;
}
}
@media only screen and (max-width: 840px) {
.modal-flag textarea {
width: 83%;
}
}
@media only screen and (max-width: 700px) {
.modal-flag textarea {
width: 82%;
}
}
@media only screen and (max-width: 550px) {
.modal-flag textarea {
width: 83%;
}
}
.modal-flag input[type="submit"] {
background-color: #333;
border: 1px solid black;
box-shadow: 0 2px 1px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(255, 255, 255, 0.4) inset;
color: white;
font-size: 1em;
font-weight: normal;
margin: 4% 25%;
opacity: 0.5;
width: 50%;
}
.modal-flag input[type="submit"]:hover {
opacity: 0.7;
}
.modal-flag input[type="submit"]:active {
opacity: 1;
}
.comment-vote-count {
color: #9B764F;
font-size: 1.25em;
font-weight: bold;
margin-top: 10%;
float: left;
}
.modal-close-button {
cursor: pointer;
font-size: 1.4em;
float: right;
}
.comment-remaining-characters {
padding: 0.5em 0;
} | 0.379493 | 0.115836 |
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,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
display: block;
}
*[hidden] {
display: none;
}
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;
}
input,
textarea,
img {
word-wrap: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
html {
-webkit-text-size-adjust: none;
overflow-x: hidden;
}
html,
body {
height: 100%;
line-height: 1;
background-color: #fefefe;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
font-weight: normal;
font-style: normal;
}
caption,
th {
text-align: left;
}
em,
i,
small,
caption,
th {
font-weight: normal;
font-style: normal;
font-size: 100%;
}
a:hover {
text-decoration: none;
cursor: pointer;
}
a {
outline: 0;
color: inherit;
line-height: inherit;
text-decoration: none !important;
}
a,
button {
outline: 0;
border: 0;
}
input,
select {
border: 1px solid #ccc;
font-family: inherit;
}
button::-moz-focus-inner {
border: 0;
padding: 0;
margin: 0;
}
textarea,
input,
button,
select {
outline: 0;
font-size: inherit;
line-height: inherit;
color: inherit;
font-family: inherit;
outline: 0;
}
textarea {
overflow: auto;
resize: none;
font-family: inherit;
}
::selection {
background: rgba(56, 137, 194, 0.8);
color: #fff;
}
::-moz-selection {
background: rgba(56, 137, 194, 0.8);
color: #fff;
}
::-webkit-scrollbar {
width: 4px;
height: 0;
background: #aaa;
}
::-webkit-scrollbar-button {
background-color: #fff;
}
::-webkit-scrollbar-track {
background: #aaa;
}
::-webkit-scrollbar-track-piece {
background: #fff;
}
::-webkit-scrollbar-thumb {
background: #aaa;
}
::-webkit-scrollbar-corner {
background: #82afff;
}
::-webkit-scrollbar-resizer {
background: #ff0bee;
}
scrollbar {
-moz-appearance: none !important;
background: #0f0 !important;
}
scrollbarbutton {
-moz-appearance: none !important;
background-color: #00f !important;
}
scrollbarbutton:hover {
-moz-appearance: none !important;
background-color: #f00 !important;
}
scrollbarbutton {
display: none !important;
}
scrollbar[orient='vertical'] {
min-width: 8px !important;
}
input::selection,
textarea::selection,
.btn-positive::selection {
background: #39f;
color: #fff;
}
input::-moz-selection,
textarea::-moz-selection,
.btn-positive::-moz-selection {
background: #39f;
color: #fff;
}
input:disabled,
select:disabled,
textarea:disabled {
background: #ccc;
}
*[hidden] {
display: none;
}
.fz12 {
font-size: 0.12rem;
}
.fz14 {
font-size: 0.14rem;
}
.fz16 {
font-size: 0.16rem;
}
.fz18 {
font-size: 0.18rem;
}
.fz20 {
font-size: 0.20rem;
}
.fz24 {
font-size: 0.24rem;
}
.fz28 {
font-size: 0.28rem;
}
.fz30 {
font-size: 0.30rem;
}
.fz32 {
font-size: 0.32rem;
}
.fz34 {
font-size: 0.34rem;
}
.fb {
font-weight: bold;
}
.fn {
font-weight: normal;
}
.t2 {
text-indent: 2em;
}
.textdu {
text-decoration: underline;
}
.textdn {
text-decoration: none;
}
.textIndent5 {
text-indent: 5px;
}
.clearfix:before,
.clearfix:after {
content: '';
display: block;
clear: both;
visibility: hidden;
width: 100%;
height: 0;
line-height: 0;
}
.none {
display: none !important;
}
.hide {
display: none;
}
.block {
display: block !important;
}
.show {
display: block;
}
.inlineb {
display: inline-block;
}
.inline {
display: inline !important;
}
.fl {
float: left;
}
.fr {
float: right;
}
.funset {
float: unset !important;
}
.ofh {
overflow: hidden;
}
.tc {
text-align: center;
}
.tr {
text-align: right;
}
.tl {
text-align: left;
}
.cd {
cursor: default;
}
.cp {
cursor: pointer;
}
.br4 {
border-radius: 0.04rem;
}
.br5 {
border-radius: 0.05rem;
}
.br6 {
border-radius: 0.06rem;
}
.br8 {
border-radius: 0.08rem;
}
.br15 {
border-radius: 0.15rem;
}
.cricle {
border-radius: 50%;
}
.borb1e {
border-bottom: 1px solid #eee;
}
.bort1e {
border-top: 1px solid #eee;
}
.borr1e {
border-right: 1px solid #eee;
}
.borl1e {
border-left: 1px solid #eee;
}
.bor1e {
border: 1px solid #eee;
}
.borb1d {
border-bottom: 1px solid #ddd;
}
.bort1d {
border-top: 1px solid #ddd;
}
.borr1d {
border-right: 1px solid #ddd;
}
.borl1d {
border-left: 1px solid #ddd;
}
.bor1d {
border: 1px solid #ddd;
}
.borl1f {
border-left: 1px solid #fff;
}
.borr1f {
border-right: 1px solid #fff;
}
.borb0 {
border-bottom: 0 !important;
}
.bort0 {
border-top: 0 !important;
}
.borl0 {
border-left: 0 !important;
}
.borr0 {
border-right: 0 !important;
}
.bor0 {
border: 0;
}
.circle {
border-radius: 50%;
}
.img-responsive {
display: block;
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
.ellipsis {
display: inline-block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.ellipsis2 {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.boxS {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.boxSha,
.boxShadow {
box-shadow: 0 0 10px rgba(202, 202, 202, 0.7);
}
.userSelNo {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
user-select: none;
}
.cfff,
.cf {
color: #fff;
}
.c34 {
color: #343434;
}
.cae {
color: #aeaeae;
}
.ca {
color: #aaa;
}
.ce2 {
color: #e2e2e2;
}
.c3 {
color: #333;
}
.c6 {
color: #666;
}
.c9 {
color: #999;
}
.cblue {
color: #75a8ff;
}
.cred {
color: #ff5754;
}
.bgf4 {
background-color: #f4f4f4;
}
.bgfff {
background-color: #fff;
}
.bgccc {
background-color: #ccc;
}
.bgeee {
background-color: #eee;
}
.bgblue {
background-color: #75a8ff;
}
.bgred {
background-color: #ff5754;
}
.bgmagenta {
background-color: #ff5d8a;
}
.bgorange {
background-color: #ffa053;
}
.bgyellow {
background: #ff9500;
}
.bg06 {
background-color: rgba(0, 0, 0, 0.6);
}
.bg03 {
background-color: rgba(0, 0, 0, 0.3);
}
.disable {
pointer-events: none;
cursor: not-allowed;
background: #c8c8c8 !important;
}
.pr {
position: relative;
}
.pa {
position: absolute;
}
.pf {
position: fixed;
}
.top0 {
top: 0;
}
.left0 {
left: 0;
}
.right0 {
right: 0;
}
.bottom0 {
bottom: 0;
}
.zindex1 {
z-index: 1;
}
.zindex-1 {
z-index: -1;
}
.pf-cc {
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.p-cc {
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.top-fixed {
position: fixed;
top: 0;
}
.h48 {
height: 0.48rem;
}
.lh48 {
line-height: 0.48rem;
}
.h40 {
height: 0.40rem;
}
.lh40 {
line-height: 0.40rem;
}
.h36 {
height: 0.36rem;
}
.hl36 {
line-height: 0.36rem;
}
.h30 {
height: 0.30rem;
}
.lh30 {
line-height: 0.30rem;
}
.h35 {
height: 0.35rem;
}
.lh35 {
line-height: 0.35rem;
}
.lh1 {
line-height: 1;
}
.h100p {
height: 100% !important;
}
.w100p {
width: 100% !important;
}
.w90p {
width: 90%;
}
.w80p {
width: 80%;
}
.w70p {
width: 70%;
}
.w60p {
width: 60%;
}
.w50p {
width: 50%;
}
.w30p {
width: 30%;
}
.w33p {
width: 33.33%;
}
.w25p {
width: 25%;
}
.w20p {
width: 20%;
}
.w240 {
width: 2.40rem;
}
.w100 {
width: 1rem;
}
.w50 {
width: 0.50rem;
}
.w40 {
width: 0.40rem;
}
.w35 {
width: 0.35rem;
}
.w30 {
width: 0.30rem;
}
.w200 {
width: 2rem;
}
.mauto {
margin-right: auto;
margin-left: auto;
}
.mnone {
margin: 0;
}
.m5 {
margin: 0.05rem;
}
.m10 {
margin: 0.10rem;
}
.m15 {
margin: 0.15rem;
}
.m20 {
margin: 0.20rem;
}
.m30 {
margin: 0.30rem;
}
.mr0 {
margin-right: 0;
}
.mr5 {
margin-right: 0.05rem;
}
.mr10 {
margin-right: 0.10rem;
}
.mr15 {
margin-right: 0.15rem;
}
.mr20 {
margin-right: 0.20rem;
}
.mr30 {
margin-right: 0.30rem;
}
.ml0 {
margin-left: 0;
}
.ml5 {
margin-left: 0.05rem;
}
.ml10 {
margin-left: 0.10rem;
}
.ml15 {
margin-left: 0.15rem;
}
.ml20 {
margin-left: 0.20rem;
}
.ml30 {
margin-left: 0.30rem;
}
.mb0 {
margin-bottom: 0;
}
.mb5 {
margin-bottom: 0.05rem;
}
.mb10 {
margin-bottom: 0.10rem;
}
.mb15 {
margin-bottom: 0.15rem;
}
.mb20 {
margin-bottom: 0.20rem;
}
.mb25 {
margin-bottom: 0.25rem;
}
.mb30 {
margin-bottom: 0.30rem;
}
.mb50 {
margin-bottom: 0.50rem;
}
.mt0 {
margin-top: 0;
}
.mt5 {
margin-top: 0.05rem;
}
.mt10 {
margin-top: 0.10rem;
}
.mt15 {
margin-top: 0.15rem;
}
.mt20 {
margin-top: 0.20rem;
}
.mt25 {
margin-top: 0.25rem;
}
.mt30 {
margin-top: 0.30rem;
}
.mt50 {
margin-top: 0.50rem;
}
.p0 {
padding: 0;
}
.p5 {
padding: 0.05rem;
}
.p10 {
padding: 0.10rem;
}
.p15 {
padding: 0.15rem;
}
.p20 {
padding: 0.20rem;
}
.p30 {
padding: 0.30rem;
}
.pl0 {
padding-left: 0;
}
.pl5 {
padding-left: 0.05rem;
}
.pl10 {
padding-left: 0.10rem;
}
.pl15 {
padding-left: 0.15rem;
}
.pl20 {
padding-left: 0.20rem;
}
.pl30 {
padding-left: 0.30rem;
}
.pr0 {
padding-right: 0;
}
.pr5 {
padding-right: 0.5rem;
}
.pr10 {
padding-right: 0.10rem;
}
.pr15 {
padding-right: 0.15rem;
}
.pr20 {
padding-right: 0.20rem;
}
.pr30 {
padding-right: 0.30rem;
}
.pt0 {
padding-top: 0;
}
.pt5 {
padding-top: 0.5rem;
}
.pt10 {
padding-top: 0.10rem;
}
.pt15 {
padding-top: 0.15rem;
}
.pt20 {
padding-top: 0.20rem;
}
.pt30 {
padding-top: 0.30rem;
}
.pt40 {
padding-top: 0.40rem;
}
.pt50 {
padding-top: 0.50rem;
}
.pb0 {
padding-bottom: 0;
}
.pb5 {
padding-bottom: 0.05rem;
}
.pb10 {
padding-bottom: 0.10rem;
}
.pb15 {
padding-bottom: 0.15rem;
}
.pb20 {
padding-bottom: 0.20rem;
}
.pb30 {
padding-bottom: 0.30rem;
}
.pb40 {
padding-bottom: 0.40rem;
}
.pb50 {
padding-bottom: 0.50rem;
}
.disflex {
display: -webkit-flex;
display: flex;
}
.flexdc {
flex-direction: column;
}
.flexdr {
flex-direction: row;
}
.flexdrr {
flex-direction: row-reverse;
}
.aligncc {
align-content: center;
}
.alignsa {
align-content: space-around;
}
.alignsb {
align-content: space-between;
}
.justifycc {
justify-content: center;
}
.justifysa {
justify-content: space-around;
}
.justifysb {
justify-content: space-between;
}
.justifyfe {
justify-content: flex-end;
}
.alignic {
align-items: center;
}
.alignsc {
align-self: center;
}
.alignsfe {
align-self: flex-end;
}
.alignsfs {
align-self: flex-start;
}
.flexwrap {
flex-wrap: wrap;
}
.flex1 {
flex: 1;
-webkit-flex: 1;
}
.flex2 {
flex: 2;
}
.flex3 {
flex: 3;
}
.flex4 {
flex: 4;
}
.flex5 {
flex: 5;
}
.flex6 {
flex: 6;
}
.flex7 {
flex: 7;
}
.flex8 {
flex: 8;
}
.ver1 {
vertical-align: 1px;
}
.opacity0 {
opacity: 0;
}
.opacity1 {
opacity: 1;
}
.scrollY {
overflow-y: scroll;
}
.scrollX {
overflow-x: scroll;
} | css/m.reset.css | 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,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
display: block;
}
*[hidden] {
display: none;
}
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;
}
input,
textarea,
img {
word-wrap: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
html {
-webkit-text-size-adjust: none;
overflow-x: hidden;
}
html,
body {
height: 100%;
line-height: 1;
background-color: #fefefe;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
font-weight: normal;
font-style: normal;
}
caption,
th {
text-align: left;
}
em,
i,
small,
caption,
th {
font-weight: normal;
font-style: normal;
font-size: 100%;
}
a:hover {
text-decoration: none;
cursor: pointer;
}
a {
outline: 0;
color: inherit;
line-height: inherit;
text-decoration: none !important;
}
a,
button {
outline: 0;
border: 0;
}
input,
select {
border: 1px solid #ccc;
font-family: inherit;
}
button::-moz-focus-inner {
border: 0;
padding: 0;
margin: 0;
}
textarea,
input,
button,
select {
outline: 0;
font-size: inherit;
line-height: inherit;
color: inherit;
font-family: inherit;
outline: 0;
}
textarea {
overflow: auto;
resize: none;
font-family: inherit;
}
::selection {
background: rgba(56, 137, 194, 0.8);
color: #fff;
}
::-moz-selection {
background: rgba(56, 137, 194, 0.8);
color: #fff;
}
::-webkit-scrollbar {
width: 4px;
height: 0;
background: #aaa;
}
::-webkit-scrollbar-button {
background-color: #fff;
}
::-webkit-scrollbar-track {
background: #aaa;
}
::-webkit-scrollbar-track-piece {
background: #fff;
}
::-webkit-scrollbar-thumb {
background: #aaa;
}
::-webkit-scrollbar-corner {
background: #82afff;
}
::-webkit-scrollbar-resizer {
background: #ff0bee;
}
scrollbar {
-moz-appearance: none !important;
background: #0f0 !important;
}
scrollbarbutton {
-moz-appearance: none !important;
background-color: #00f !important;
}
scrollbarbutton:hover {
-moz-appearance: none !important;
background-color: #f00 !important;
}
scrollbarbutton {
display: none !important;
}
scrollbar[orient='vertical'] {
min-width: 8px !important;
}
input::selection,
textarea::selection,
.btn-positive::selection {
background: #39f;
color: #fff;
}
input::-moz-selection,
textarea::-moz-selection,
.btn-positive::-moz-selection {
background: #39f;
color: #fff;
}
input:disabled,
select:disabled,
textarea:disabled {
background: #ccc;
}
*[hidden] {
display: none;
}
.fz12 {
font-size: 0.12rem;
}
.fz14 {
font-size: 0.14rem;
}
.fz16 {
font-size: 0.16rem;
}
.fz18 {
font-size: 0.18rem;
}
.fz20 {
font-size: 0.20rem;
}
.fz24 {
font-size: 0.24rem;
}
.fz28 {
font-size: 0.28rem;
}
.fz30 {
font-size: 0.30rem;
}
.fz32 {
font-size: 0.32rem;
}
.fz34 {
font-size: 0.34rem;
}
.fb {
font-weight: bold;
}
.fn {
font-weight: normal;
}
.t2 {
text-indent: 2em;
}
.textdu {
text-decoration: underline;
}
.textdn {
text-decoration: none;
}
.textIndent5 {
text-indent: 5px;
}
.clearfix:before,
.clearfix:after {
content: '';
display: block;
clear: both;
visibility: hidden;
width: 100%;
height: 0;
line-height: 0;
}
.none {
display: none !important;
}
.hide {
display: none;
}
.block {
display: block !important;
}
.show {
display: block;
}
.inlineb {
display: inline-block;
}
.inline {
display: inline !important;
}
.fl {
float: left;
}
.fr {
float: right;
}
.funset {
float: unset !important;
}
.ofh {
overflow: hidden;
}
.tc {
text-align: center;
}
.tr {
text-align: right;
}
.tl {
text-align: left;
}
.cd {
cursor: default;
}
.cp {
cursor: pointer;
}
.br4 {
border-radius: 0.04rem;
}
.br5 {
border-radius: 0.05rem;
}
.br6 {
border-radius: 0.06rem;
}
.br8 {
border-radius: 0.08rem;
}
.br15 {
border-radius: 0.15rem;
}
.cricle {
border-radius: 50%;
}
.borb1e {
border-bottom: 1px solid #eee;
}
.bort1e {
border-top: 1px solid #eee;
}
.borr1e {
border-right: 1px solid #eee;
}
.borl1e {
border-left: 1px solid #eee;
}
.bor1e {
border: 1px solid #eee;
}
.borb1d {
border-bottom: 1px solid #ddd;
}
.bort1d {
border-top: 1px solid #ddd;
}
.borr1d {
border-right: 1px solid #ddd;
}
.borl1d {
border-left: 1px solid #ddd;
}
.bor1d {
border: 1px solid #ddd;
}
.borl1f {
border-left: 1px solid #fff;
}
.borr1f {
border-right: 1px solid #fff;
}
.borb0 {
border-bottom: 0 !important;
}
.bort0 {
border-top: 0 !important;
}
.borl0 {
border-left: 0 !important;
}
.borr0 {
border-right: 0 !important;
}
.bor0 {
border: 0;
}
.circle {
border-radius: 50%;
}
.img-responsive {
display: block;
max-width: 100%;
margin-left: auto;
margin-right: auto;
}
.ellipsis {
display: inline-block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.ellipsis2 {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
.boxS {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.boxSha,
.boxShadow {
box-shadow: 0 0 10px rgba(202, 202, 202, 0.7);
}
.userSelNo {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
user-select: none;
}
.cfff,
.cf {
color: #fff;
}
.c34 {
color: #343434;
}
.cae {
color: #aeaeae;
}
.ca {
color: #aaa;
}
.ce2 {
color: #e2e2e2;
}
.c3 {
color: #333;
}
.c6 {
color: #666;
}
.c9 {
color: #999;
}
.cblue {
color: #75a8ff;
}
.cred {
color: #ff5754;
}
.bgf4 {
background-color: #f4f4f4;
}
.bgfff {
background-color: #fff;
}
.bgccc {
background-color: #ccc;
}
.bgeee {
background-color: #eee;
}
.bgblue {
background-color: #75a8ff;
}
.bgred {
background-color: #ff5754;
}
.bgmagenta {
background-color: #ff5d8a;
}
.bgorange {
background-color: #ffa053;
}
.bgyellow {
background: #ff9500;
}
.bg06 {
background-color: rgba(0, 0, 0, 0.6);
}
.bg03 {
background-color: rgba(0, 0, 0, 0.3);
}
.disable {
pointer-events: none;
cursor: not-allowed;
background: #c8c8c8 !important;
}
.pr {
position: relative;
}
.pa {
position: absolute;
}
.pf {
position: fixed;
}
.top0 {
top: 0;
}
.left0 {
left: 0;
}
.right0 {
right: 0;
}
.bottom0 {
bottom: 0;
}
.zindex1 {
z-index: 1;
}
.zindex-1 {
z-index: -1;
}
.pf-cc {
position: fixed;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.p-cc {
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.top-fixed {
position: fixed;
top: 0;
}
.h48 {
height: 0.48rem;
}
.lh48 {
line-height: 0.48rem;
}
.h40 {
height: 0.40rem;
}
.lh40 {
line-height: 0.40rem;
}
.h36 {
height: 0.36rem;
}
.hl36 {
line-height: 0.36rem;
}
.h30 {
height: 0.30rem;
}
.lh30 {
line-height: 0.30rem;
}
.h35 {
height: 0.35rem;
}
.lh35 {
line-height: 0.35rem;
}
.lh1 {
line-height: 1;
}
.h100p {
height: 100% !important;
}
.w100p {
width: 100% !important;
}
.w90p {
width: 90%;
}
.w80p {
width: 80%;
}
.w70p {
width: 70%;
}
.w60p {
width: 60%;
}
.w50p {
width: 50%;
}
.w30p {
width: 30%;
}
.w33p {
width: 33.33%;
}
.w25p {
width: 25%;
}
.w20p {
width: 20%;
}
.w240 {
width: 2.40rem;
}
.w100 {
width: 1rem;
}
.w50 {
width: 0.50rem;
}
.w40 {
width: 0.40rem;
}
.w35 {
width: 0.35rem;
}
.w30 {
width: 0.30rem;
}
.w200 {
width: 2rem;
}
.mauto {
margin-right: auto;
margin-left: auto;
}
.mnone {
margin: 0;
}
.m5 {
margin: 0.05rem;
}
.m10 {
margin: 0.10rem;
}
.m15 {
margin: 0.15rem;
}
.m20 {
margin: 0.20rem;
}
.m30 {
margin: 0.30rem;
}
.mr0 {
margin-right: 0;
}
.mr5 {
margin-right: 0.05rem;
}
.mr10 {
margin-right: 0.10rem;
}
.mr15 {
margin-right: 0.15rem;
}
.mr20 {
margin-right: 0.20rem;
}
.mr30 {
margin-right: 0.30rem;
}
.ml0 {
margin-left: 0;
}
.ml5 {
margin-left: 0.05rem;
}
.ml10 {
margin-left: 0.10rem;
}
.ml15 {
margin-left: 0.15rem;
}
.ml20 {
margin-left: 0.20rem;
}
.ml30 {
margin-left: 0.30rem;
}
.mb0 {
margin-bottom: 0;
}
.mb5 {
margin-bottom: 0.05rem;
}
.mb10 {
margin-bottom: 0.10rem;
}
.mb15 {
margin-bottom: 0.15rem;
}
.mb20 {
margin-bottom: 0.20rem;
}
.mb25 {
margin-bottom: 0.25rem;
}
.mb30 {
margin-bottom: 0.30rem;
}
.mb50 {
margin-bottom: 0.50rem;
}
.mt0 {
margin-top: 0;
}
.mt5 {
margin-top: 0.05rem;
}
.mt10 {
margin-top: 0.10rem;
}
.mt15 {
margin-top: 0.15rem;
}
.mt20 {
margin-top: 0.20rem;
}
.mt25 {
margin-top: 0.25rem;
}
.mt30 {
margin-top: 0.30rem;
}
.mt50 {
margin-top: 0.50rem;
}
.p0 {
padding: 0;
}
.p5 {
padding: 0.05rem;
}
.p10 {
padding: 0.10rem;
}
.p15 {
padding: 0.15rem;
}
.p20 {
padding: 0.20rem;
}
.p30 {
padding: 0.30rem;
}
.pl0 {
padding-left: 0;
}
.pl5 {
padding-left: 0.05rem;
}
.pl10 {
padding-left: 0.10rem;
}
.pl15 {
padding-left: 0.15rem;
}
.pl20 {
padding-left: 0.20rem;
}
.pl30 {
padding-left: 0.30rem;
}
.pr0 {
padding-right: 0;
}
.pr5 {
padding-right: 0.5rem;
}
.pr10 {
padding-right: 0.10rem;
}
.pr15 {
padding-right: 0.15rem;
}
.pr20 {
padding-right: 0.20rem;
}
.pr30 {
padding-right: 0.30rem;
}
.pt0 {
padding-top: 0;
}
.pt5 {
padding-top: 0.5rem;
}
.pt10 {
padding-top: 0.10rem;
}
.pt15 {
padding-top: 0.15rem;
}
.pt20 {
padding-top: 0.20rem;
}
.pt30 {
padding-top: 0.30rem;
}
.pt40 {
padding-top: 0.40rem;
}
.pt50 {
padding-top: 0.50rem;
}
.pb0 {
padding-bottom: 0;
}
.pb5 {
padding-bottom: 0.05rem;
}
.pb10 {
padding-bottom: 0.10rem;
}
.pb15 {
padding-bottom: 0.15rem;
}
.pb20 {
padding-bottom: 0.20rem;
}
.pb30 {
padding-bottom: 0.30rem;
}
.pb40 {
padding-bottom: 0.40rem;
}
.pb50 {
padding-bottom: 0.50rem;
}
.disflex {
display: -webkit-flex;
display: flex;
}
.flexdc {
flex-direction: column;
}
.flexdr {
flex-direction: row;
}
.flexdrr {
flex-direction: row-reverse;
}
.aligncc {
align-content: center;
}
.alignsa {
align-content: space-around;
}
.alignsb {
align-content: space-between;
}
.justifycc {
justify-content: center;
}
.justifysa {
justify-content: space-around;
}
.justifysb {
justify-content: space-between;
}
.justifyfe {
justify-content: flex-end;
}
.alignic {
align-items: center;
}
.alignsc {
align-self: center;
}
.alignsfe {
align-self: flex-end;
}
.alignsfs {
align-self: flex-start;
}
.flexwrap {
flex-wrap: wrap;
}
.flex1 {
flex: 1;
-webkit-flex: 1;
}
.flex2 {
flex: 2;
}
.flex3 {
flex: 3;
}
.flex4 {
flex: 4;
}
.flex5 {
flex: 5;
}
.flex6 {
flex: 6;
}
.flex7 {
flex: 7;
}
.flex8 {
flex: 8;
}
.ver1 {
vertical-align: 1px;
}
.opacity0 {
opacity: 0;
}
.opacity1 {
opacity: 1;
}
.scrollY {
overflow-y: scroll;
}
.scrollX {
overflow-x: scroll;
} | 0.406862 | 0.066721 |
:root {
--lx-selection-color: hsl(0, 0%, 20%) !important;
--lx-selection-background-color: hsl(156, 72%, 67%);
--lx-info-color: hsl(190, 95%, 75%);
--lx-warning-color: hsl(35, 90%, 65%);
--lx-error-color: hsl(0, 100%, 65%);
--lx-sucess-color: hsl(135, 95%, 65%);
--lx-bs-s: 0.3px 0.5px 0.7px hsla(var(--shadow-color), 34%), 0.4px 0.8px 1px -1.2px hsla(var(--shadow-color), 34%), 1px 2px 2.5px -2.5px hsla(var(--shadow-color), 34%);
--lx-bs-m: 0.3px 0.5px 0.7px hsla(var(--shadow-color), 36%), 0.8px 1.6px 2px -0.8px hsla(var(--shadow-color), 36%), 2.1px 4.1px 5.2px -1.7px hsla(var(--shadow-color), 36%), 5px 10px 12.6px -2.5px hsla(var(--shadow-color), 36%);
--lx-bs-l: 0.3px 0.5px 0.7px hsla(var(--shadow-color), 34%), 1.5px 2.9px 3.7px -0.4px hsla(var(--shadow-color), 34%), 2.7px 5.4px 6.8px -0.7px hsla(var(--shadow-color), 34%), 4.5px 8.9px 11.2px -1.1px hsla(var(--shadow-color), 34%), 7.1px 14.3px 18px -1.4px hsla(var(--shadow-color), 34%), 11.2px 22.3px 28.1px -1.8px hsla(var(--shadow-color), 34%), 17px 33.9px 42.7px -2.1px hsla(var(--shadow-color), 34%), 25px 50px 62.9px -2.5px hsla(var(--shadow-color), 34%);
--lx-primary-background-color-light: hsl(0, 0%, 100%);
--lx-secondary-background-color-light: hsl(160, 20%, 98%);
--lx-primary-text-color-light: hsl(0, 0%, 5%);
--lx-secondary-text-color-light: hsl(215, 14%, 34%);
--lx-primary-color-lighten-light: hsl(160, 55%, 30%);
--lx-primary-color-light: hsl(160, 70%, 30%);
--lx-primary-color-darken-light: hsl(160, 70%, 20%);
--shadow-color-light: 0, 0%, 63%;
--lx-primary-background-color-dark: hsl(0, 0%, 9%);
--lx-secondary-background-color-dark: hsl(0, 0%, 12%);
--lx-primary-text-color-dark: hsl(0, 0%, 90%);
--lx-secondary-text-color-dark: hsl(0, 0%, 65%);
--lx-primary-color-lighten-dark: hsl(160, 65%, 55%);
--lx-primary-color-dark: hsl(160, 65%, 45%);
--lx-primary-color-darken-dark: hsl(160, 65%, 35%);
--shadow-color-dark: 0, 0%, 2%;
}
@media (prefers-color-scheme: light) {
:root {
color-scheme: light;
--lx-primary-background-color: var(--lx-primary-background-color-light);
--lx-secondary-background-color: var(--lx-secondary-background-color-light);
--lx-primary-text-color: var(--lx-primary-text-color-light);
--lx-secondary-text-color: var(--lx-secondary-text-color-light);
--lx-primary-color-lighten: var(--lx-primary-color-lighten-light);
--lx-primary-color: var(--lx-primary-color-light);
--lx-primary-color-darken: var(--lx-primary-color-darken-light);
--shadow-color: var(--shadow-color-light);
}
}
@media (prefers-color-scheme: dark) {
:root {
color-scheme: dark;
--lx-primary-background-color: var(--lx-primary-background-color-dark);
--lx-secondary-background-color: var(--lx-secondary-background-color-dark);
--lx-primary-text-color: var(--lx-primary-text-color-dark);
--lx-secondary-text-color: var(--lx-secondary-text-color-dark);
--lx-primary-color-lighten: var(--lx-primary-color-lighten-dark);
--lx-primary-color: var(--lx-primary-color-dark);
--lx-primary-color-darken: var(--lx-primary-color-darken-dark);
--shadow-color: var(--shadow-color-dark);
}
}
[color-scheme=light] {
color-scheme: light;
--lx-primary-background-color: var(--lx-primary-background-color-light);
--lx-secondary-background-color: var(--lx-secondary-background-color-light);
--lx-primary-text-color: var(--lx-primary-text-color-light);
--lx-secondary-text-color: var(--lx-secondary-text-color-light);
--lx-primary-color-lighten: var(--lx-primary-color-lighten-light);
--lx-primary-color: var(--lx-primary-color-light);
--lx-primary-color-darken: var(--lx-primary-color-darken-light);
--shadow-color: var(--shadow-color-light);
}
[color-scheme=dark] {
color-scheme: dark;
--lx-primary-background-color: var(--lx-primary-background-color-dark);
--lx-secondary-background-color: var(--lx-secondary-background-color-dark);
--lx-primary-text-color: var(--lx-primary-text-color-dark);
--lx-secondary-text-color: var(--lx-secondary-text-color-dark);
--lx-primary-color-lighten: var(--lx-primary-color-lighten-dark);
--lx-primary-color: var(--lx-primary-color-dark);
--lx-primary-color-darken: var(--lx-primary-color-darken-dark);
--shadow-color: var(--shadow-color-dark);
}
:root {
--base-size: 100%;
--lx-radius-small: .25rem;
--lx-radius-medium: .5rem;
--lx-radius-large: 1rem;
--row-gap: 1rem;
}
.bs-none {
box-shadow: none !important;
}
.bs-s {
box-shadow: var(--lx-bs-s);
}
.bs-m {
box-shadow: var(--lx-bs-m);
}
.bs-l {
box-shadow: var(--lx-bs-l);
}
.has-dflex {
display: flex !important;
}
.has-dflex-center {
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
.flow-w-col {
flex-flow: wrap column !important;
}
.flow-nw-col {
flex-flow: nowrap column !important;
}
.flow-w-row {
flex-flow: wrap row !important;
}
.flow-nw-row {
flex-flow: nowrap row !important;
}
.align-center {
align-items: center !important;
}
.align-end {
align-items: flex-end !important;
}
.align-start {
align-items: flex-start !important;
}
.align-stretch {
align-items: stretch !important;
}
.justify-around {
justify-content: space-around !important;
}
.justify-between {
justify-content: space-between !important;
}
.justify-evenly {
justify-content: space-evenly !important;
}
.justify-center {
justify-content: center !important;
}
.justify-end {
justify-content: flex-end !important;
}
.justify-start {
justify-content: flex-start !important;
}
.is-gapless {
gap: 0;
}
.has-gap-1 {
gap: 1rem !important;
}
.has-gap-2 {
gap: 2rem !important;
}
.has-gap-3 {
gap: 3rem !important;
}
.has-gap-4 {
gap: 4rem !important;
}
.has-gap-5 {
gap: 5rem !important;
}
.has-gap-6 {
gap: 6rem !important;
}
.has-gap-7 {
gap: 7rem !important;
}
.has-gap-8 {
gap: 8rem !important;
}
.has-gap-9 {
gap: 9rem !important;
}
.has-gap-10 {
gap: 10rem !important;
}
.ps-absolute {
position: absolute;
}
.ps-fixed {
position: fixed;
}
.ps-relative {
position: relative;
}
.ps-static {
position: static;
}
.ps-sticky {
position: sticky;
}
.is-float-left {
float: left;
}
.is-float-right {
float: right;
}
.is-left-aligned {
text-align: left;
}
.is-centralized {
text-align: center;
}
.is-right-aligned {
text-align: right;
}
.is-justified {
text-align: justify;
}
.featured {
font-size: 1.2rem;
}
.lx-text {
width: 100%;
display: flex;
flex-flow: wrap column;
align-items: flex-start;
justify-content: flex-start;
gap: 1em;
}
.lx-text * {
margin: 0;
}
.lx-text.fit {
width: fit-content;
}
.lx-icon {
width: 1em;
height: 1em;
stroke: currentColor;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
fill: none;
}
.is-hidden {
visibility: hidden !important;
}
.is-visible {
visibility: visible !important;
}
.hide,
.hide-on-desk {
display: none !important;
visibility: hidden !important;
}
.desk-prompt {
display: block;
}
@media (hover: none) {
.desk-prompt {
display: none;
}
}
.mb-prompt {
display: block;
}
@media (hover: hover) {
.mb-prompt {
display: none;
}
}
@media screen and (max-width: 60rem) {
.hide-on-desk {
display: block !important;
visibility: visible !important;
}
.hide-on-mb {
display: none !important;
visibility: hidden !important;
}
} | dist/expanded/helpers.css | :root {
--lx-selection-color: hsl(0, 0%, 20%) !important;
--lx-selection-background-color: hsl(156, 72%, 67%);
--lx-info-color: hsl(190, 95%, 75%);
--lx-warning-color: hsl(35, 90%, 65%);
--lx-error-color: hsl(0, 100%, 65%);
--lx-sucess-color: hsl(135, 95%, 65%);
--lx-bs-s: 0.3px 0.5px 0.7px hsla(var(--shadow-color), 34%), 0.4px 0.8px 1px -1.2px hsla(var(--shadow-color), 34%), 1px 2px 2.5px -2.5px hsla(var(--shadow-color), 34%);
--lx-bs-m: 0.3px 0.5px 0.7px hsla(var(--shadow-color), 36%), 0.8px 1.6px 2px -0.8px hsla(var(--shadow-color), 36%), 2.1px 4.1px 5.2px -1.7px hsla(var(--shadow-color), 36%), 5px 10px 12.6px -2.5px hsla(var(--shadow-color), 36%);
--lx-bs-l: 0.3px 0.5px 0.7px hsla(var(--shadow-color), 34%), 1.5px 2.9px 3.7px -0.4px hsla(var(--shadow-color), 34%), 2.7px 5.4px 6.8px -0.7px hsla(var(--shadow-color), 34%), 4.5px 8.9px 11.2px -1.1px hsla(var(--shadow-color), 34%), 7.1px 14.3px 18px -1.4px hsla(var(--shadow-color), 34%), 11.2px 22.3px 28.1px -1.8px hsla(var(--shadow-color), 34%), 17px 33.9px 42.7px -2.1px hsla(var(--shadow-color), 34%), 25px 50px 62.9px -2.5px hsla(var(--shadow-color), 34%);
--lx-primary-background-color-light: hsl(0, 0%, 100%);
--lx-secondary-background-color-light: hsl(160, 20%, 98%);
--lx-primary-text-color-light: hsl(0, 0%, 5%);
--lx-secondary-text-color-light: hsl(215, 14%, 34%);
--lx-primary-color-lighten-light: hsl(160, 55%, 30%);
--lx-primary-color-light: hsl(160, 70%, 30%);
--lx-primary-color-darken-light: hsl(160, 70%, 20%);
--shadow-color-light: 0, 0%, 63%;
--lx-primary-background-color-dark: hsl(0, 0%, 9%);
--lx-secondary-background-color-dark: hsl(0, 0%, 12%);
--lx-primary-text-color-dark: hsl(0, 0%, 90%);
--lx-secondary-text-color-dark: hsl(0, 0%, 65%);
--lx-primary-color-lighten-dark: hsl(160, 65%, 55%);
--lx-primary-color-dark: hsl(160, 65%, 45%);
--lx-primary-color-darken-dark: hsl(160, 65%, 35%);
--shadow-color-dark: 0, 0%, 2%;
}
@media (prefers-color-scheme: light) {
:root {
color-scheme: light;
--lx-primary-background-color: var(--lx-primary-background-color-light);
--lx-secondary-background-color: var(--lx-secondary-background-color-light);
--lx-primary-text-color: var(--lx-primary-text-color-light);
--lx-secondary-text-color: var(--lx-secondary-text-color-light);
--lx-primary-color-lighten: var(--lx-primary-color-lighten-light);
--lx-primary-color: var(--lx-primary-color-light);
--lx-primary-color-darken: var(--lx-primary-color-darken-light);
--shadow-color: var(--shadow-color-light);
}
}
@media (prefers-color-scheme: dark) {
:root {
color-scheme: dark;
--lx-primary-background-color: var(--lx-primary-background-color-dark);
--lx-secondary-background-color: var(--lx-secondary-background-color-dark);
--lx-primary-text-color: var(--lx-primary-text-color-dark);
--lx-secondary-text-color: var(--lx-secondary-text-color-dark);
--lx-primary-color-lighten: var(--lx-primary-color-lighten-dark);
--lx-primary-color: var(--lx-primary-color-dark);
--lx-primary-color-darken: var(--lx-primary-color-darken-dark);
--shadow-color: var(--shadow-color-dark);
}
}
[color-scheme=light] {
color-scheme: light;
--lx-primary-background-color: var(--lx-primary-background-color-light);
--lx-secondary-background-color: var(--lx-secondary-background-color-light);
--lx-primary-text-color: var(--lx-primary-text-color-light);
--lx-secondary-text-color: var(--lx-secondary-text-color-light);
--lx-primary-color-lighten: var(--lx-primary-color-lighten-light);
--lx-primary-color: var(--lx-primary-color-light);
--lx-primary-color-darken: var(--lx-primary-color-darken-light);
--shadow-color: var(--shadow-color-light);
}
[color-scheme=dark] {
color-scheme: dark;
--lx-primary-background-color: var(--lx-primary-background-color-dark);
--lx-secondary-background-color: var(--lx-secondary-background-color-dark);
--lx-primary-text-color: var(--lx-primary-text-color-dark);
--lx-secondary-text-color: var(--lx-secondary-text-color-dark);
--lx-primary-color-lighten: var(--lx-primary-color-lighten-dark);
--lx-primary-color: var(--lx-primary-color-dark);
--lx-primary-color-darken: var(--lx-primary-color-darken-dark);
--shadow-color: var(--shadow-color-dark);
}
:root {
--base-size: 100%;
--lx-radius-small: .25rem;
--lx-radius-medium: .5rem;
--lx-radius-large: 1rem;
--row-gap: 1rem;
}
.bs-none {
box-shadow: none !important;
}
.bs-s {
box-shadow: var(--lx-bs-s);
}
.bs-m {
box-shadow: var(--lx-bs-m);
}
.bs-l {
box-shadow: var(--lx-bs-l);
}
.has-dflex {
display: flex !important;
}
.has-dflex-center {
display: flex !important;
align-items: center !important;
justify-content: center !important;
}
.flow-w-col {
flex-flow: wrap column !important;
}
.flow-nw-col {
flex-flow: nowrap column !important;
}
.flow-w-row {
flex-flow: wrap row !important;
}
.flow-nw-row {
flex-flow: nowrap row !important;
}
.align-center {
align-items: center !important;
}
.align-end {
align-items: flex-end !important;
}
.align-start {
align-items: flex-start !important;
}
.align-stretch {
align-items: stretch !important;
}
.justify-around {
justify-content: space-around !important;
}
.justify-between {
justify-content: space-between !important;
}
.justify-evenly {
justify-content: space-evenly !important;
}
.justify-center {
justify-content: center !important;
}
.justify-end {
justify-content: flex-end !important;
}
.justify-start {
justify-content: flex-start !important;
}
.is-gapless {
gap: 0;
}
.has-gap-1 {
gap: 1rem !important;
}
.has-gap-2 {
gap: 2rem !important;
}
.has-gap-3 {
gap: 3rem !important;
}
.has-gap-4 {
gap: 4rem !important;
}
.has-gap-5 {
gap: 5rem !important;
}
.has-gap-6 {
gap: 6rem !important;
}
.has-gap-7 {
gap: 7rem !important;
}
.has-gap-8 {
gap: 8rem !important;
}
.has-gap-9 {
gap: 9rem !important;
}
.has-gap-10 {
gap: 10rem !important;
}
.ps-absolute {
position: absolute;
}
.ps-fixed {
position: fixed;
}
.ps-relative {
position: relative;
}
.ps-static {
position: static;
}
.ps-sticky {
position: sticky;
}
.is-float-left {
float: left;
}
.is-float-right {
float: right;
}
.is-left-aligned {
text-align: left;
}
.is-centralized {
text-align: center;
}
.is-right-aligned {
text-align: right;
}
.is-justified {
text-align: justify;
}
.featured {
font-size: 1.2rem;
}
.lx-text {
width: 100%;
display: flex;
flex-flow: wrap column;
align-items: flex-start;
justify-content: flex-start;
gap: 1em;
}
.lx-text * {
margin: 0;
}
.lx-text.fit {
width: fit-content;
}
.lx-icon {
width: 1em;
height: 1em;
stroke: currentColor;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
fill: none;
}
.is-hidden {
visibility: hidden !important;
}
.is-visible {
visibility: visible !important;
}
.hide,
.hide-on-desk {
display: none !important;
visibility: hidden !important;
}
.desk-prompt {
display: block;
}
@media (hover: none) {
.desk-prompt {
display: none;
}
}
.mb-prompt {
display: block;
}
@media (hover: hover) {
.mb-prompt {
display: none;
}
}
@media screen and (max-width: 60rem) {
.hide-on-desk {
display: block !important;
visibility: visible !important;
}
.hide-on-mb {
display: none !important;
visibility: hidden !important;
}
} | 0.412175 | 0.140101 |
*{
box-sizing: border-box;
padding: 0;
margin: 0;
font-size: medium;
}
body{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif !important;
}
/*----------Definition-----*/
.definition{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 25px;
text-align: left;
border-left: 5px solid cyan;
padding:10px 15px;
background-color: rgba(0, 255, 255,0.2);
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
}
.main{
margin-bottom: 60px;
}
/*------------Button----------------*/
.shadow {
border-radius: 20px !important;
padding: 0px 25px !important;
}
.custom-btn{
background-color: #66ffb5 !important;
padding: 5px 25px !important;
width:120px !important;
}
.custom-btn-lg{
background-color: #ff3333 !important;
padding: 5px 25px !important;
width:220px !important;
color: #fafafa !important;
}
.custom-btn:hover{
background-color: #ff3333 !important;
transition: 0.5s ease-in;
color: #fafafa !important;
}
.custom-btn-lg:hover{
background-color: #66ffb5 !important;
transition: 0.5s ease-in;
color: #0f0f0f !important;
}
/*------------Navigation----------------*/
.navbar{
background-color: #ccffdd;
}
.navbar-nav{
text-align: center;
}
.nav-link{
box-sizing: border-box;
}
/*------------Icon-with-Text----------------*/
.icon-container{
display: flex;
}
.icon-text{
padding:20px 10px;
margin:auto;
text-align: center;
}
.icon{
width:45vw;
box-sizing: border-box;
padding:20px;
margin: 10px auto;
animation: motion 2s ease-in-out infinite alternate-reverse both
}
/*------------Main---------------*/
.main h1{
text-align: center;
}
.chart{
box-sizing: border-box;
width: 90vw;
height: 40vw;
margin:10px auto;
border: 2px outset #66ffb5;
border-radius: 5px;
box-shadow: 2px 2px 5px #000000;
display: flex;
overflow: hidden;
background-color: #272727;
}
.chart-btn .custom-btn{
width: 100px !important;
margin:5px 25px;
}
.chart-bar, .chart-bar1, .chart-bar2, .chart-bar3, .chart-bar4, .chart-bar5{
box-sizing: border-box;
border-radius: 3px;
/*width:0.9rem*/
/*height:95%;*/
margin-top:2px;
margin-bottom: 0;
background-color: #66ffb5;
color: #fafafa;
text-shadow: 1px 1px 2px black;
animation: glow 2s ease-in-out infinite alternate-reverse both;
}
/*-----------------CODE-Screen-----------------*/
#code-screen{
width:80%;
height: 35vw;
overflow: auto;
}
#options #language #lang{
border-radius: 5px;
width:100px !important;
}
#fetch-code{
padding-left: 15px;
}
#fetch-code div{
font-size: 1.5vw !important;
}
.copy-alert{
position: fixed;
right:25px;
top:25px;
z-index: 1;
padding:2px 4px;
border-radius: 4px;
background-color: #292929;
color: #fafafa;
}
.sorry-alert{
position: fixed;
right:15px;
top:15px;
z-index: 2;
padding:10px 20px;
border-radius: 10px;
background-color: #292929;
color: #fafafa;
border: 5px #fafafa outset;
box-shadow: 5px 5px 15px #000000;
}
.appear{
display:block
}
.disappear{
display:none;
}
/*----------RANGE SLIDER----------------*/
.slider {
-webkit-appearance: none;
width: 100%;
height: 15px;
border-radius: 5px;
background: #d3d3d3;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 25px;
height: 25px;
border-radius: 50%;
background: #00ffb3;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 25px;
height: 25px;
border-radius: 50%;
background: #00ffb3;
cursor: pointer;
}
/*--------------HOVER-----------------*/
.nav-link:hover{
border-bottom: 2px solid #ff3333 ;
padding-bottom: 6px;
}
/*----------Keyframes---------------*/
@keyframes motion{
0%{transform: translateY(10px);}
100%{transform: translateY(-10px);}
}
@-webkit-keyframes motion{
0%{transform: translateY(10px);}
100%{transform: translateY(-10px);}
}
@keyframes glow {
0% {box-shadow: 0px 0px 2.5px #ae02fd;}
33% {box-shadow: 0px 0px 7.5px white;}
66% {box-shadow: 0px 0px 5px#ae02fd;}
}
/*--------------MEDIA QUERY-----------------*/
@media screen and (max-width:300px){
.navbar-brand-name{
display: none !important;
}
.icon-text h3{
font-size: 1.3rem !important;
font-weight: 900;
}
.icon-text p{
font-size: 1rem !important;
}
}
@media screen and (max-width:576px){
.icon{
width:120vw;
}
#fetch-code div{
font-size: 2.5vw !important;
}
/*-----------Line-----------------*/
.hr{
width:80%;
height:3px;
border-radius: 3px;
background-color: #c4c4c4;
margin: 10px auto;
}
}
@media screen and (max-width:768px){
.icon-container{
display: block;
}
.icon{
width:80vw;
}
#code-screen{
height:350px;
}
}
@media screen and (max-width:992px){
.navbar-nav{
background-color:#e6fff3;
}
.definition{
font-size: 15px;
}
}
@media screen and (min-width:1200px){
.icon-text h3{
font-size: 3rem !important;
}
.icon-text p{
font-size: 1.5rem !important;
}
}
@media screen and (max-width:385px){
.footer-link-items{
margin:15px auto;
}
} | Sorting Visulaiser/styles/style.css | *{
box-sizing: border-box;
padding: 0;
margin: 0;
font-size: medium;
}
body{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif !important;
}
/*----------Definition-----*/
.definition{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-size: 25px;
text-align: left;
border-left: 5px solid cyan;
padding:10px 15px;
background-color: rgba(0, 255, 255,0.2);
border-top-right-radius: 20px;
border-bottom-right-radius: 20px;
}
.main{
margin-bottom: 60px;
}
/*------------Button----------------*/
.shadow {
border-radius: 20px !important;
padding: 0px 25px !important;
}
.custom-btn{
background-color: #66ffb5 !important;
padding: 5px 25px !important;
width:120px !important;
}
.custom-btn-lg{
background-color: #ff3333 !important;
padding: 5px 25px !important;
width:220px !important;
color: #fafafa !important;
}
.custom-btn:hover{
background-color: #ff3333 !important;
transition: 0.5s ease-in;
color: #fafafa !important;
}
.custom-btn-lg:hover{
background-color: #66ffb5 !important;
transition: 0.5s ease-in;
color: #0f0f0f !important;
}
/*------------Navigation----------------*/
.navbar{
background-color: #ccffdd;
}
.navbar-nav{
text-align: center;
}
.nav-link{
box-sizing: border-box;
}
/*------------Icon-with-Text----------------*/
.icon-container{
display: flex;
}
.icon-text{
padding:20px 10px;
margin:auto;
text-align: center;
}
.icon{
width:45vw;
box-sizing: border-box;
padding:20px;
margin: 10px auto;
animation: motion 2s ease-in-out infinite alternate-reverse both
}
/*------------Main---------------*/
.main h1{
text-align: center;
}
.chart{
box-sizing: border-box;
width: 90vw;
height: 40vw;
margin:10px auto;
border: 2px outset #66ffb5;
border-radius: 5px;
box-shadow: 2px 2px 5px #000000;
display: flex;
overflow: hidden;
background-color: #272727;
}
.chart-btn .custom-btn{
width: 100px !important;
margin:5px 25px;
}
.chart-bar, .chart-bar1, .chart-bar2, .chart-bar3, .chart-bar4, .chart-bar5{
box-sizing: border-box;
border-radius: 3px;
/*width:0.9rem*/
/*height:95%;*/
margin-top:2px;
margin-bottom: 0;
background-color: #66ffb5;
color: #fafafa;
text-shadow: 1px 1px 2px black;
animation: glow 2s ease-in-out infinite alternate-reverse both;
}
/*-----------------CODE-Screen-----------------*/
#code-screen{
width:80%;
height: 35vw;
overflow: auto;
}
#options #language #lang{
border-radius: 5px;
width:100px !important;
}
#fetch-code{
padding-left: 15px;
}
#fetch-code div{
font-size: 1.5vw !important;
}
.copy-alert{
position: fixed;
right:25px;
top:25px;
z-index: 1;
padding:2px 4px;
border-radius: 4px;
background-color: #292929;
color: #fafafa;
}
.sorry-alert{
position: fixed;
right:15px;
top:15px;
z-index: 2;
padding:10px 20px;
border-radius: 10px;
background-color: #292929;
color: #fafafa;
border: 5px #fafafa outset;
box-shadow: 5px 5px 15px #000000;
}
.appear{
display:block
}
.disappear{
display:none;
}
/*----------RANGE SLIDER----------------*/
.slider {
-webkit-appearance: none;
width: 100%;
height: 15px;
border-radius: 5px;
background: #d3d3d3;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 25px;
height: 25px;
border-radius: 50%;
background: #00ffb3;
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 25px;
height: 25px;
border-radius: 50%;
background: #00ffb3;
cursor: pointer;
}
/*--------------HOVER-----------------*/
.nav-link:hover{
border-bottom: 2px solid #ff3333 ;
padding-bottom: 6px;
}
/*----------Keyframes---------------*/
@keyframes motion{
0%{transform: translateY(10px);}
100%{transform: translateY(-10px);}
}
@-webkit-keyframes motion{
0%{transform: translateY(10px);}
100%{transform: translateY(-10px);}
}
@keyframes glow {
0% {box-shadow: 0px 0px 2.5px #ae02fd;}
33% {box-shadow: 0px 0px 7.5px white;}
66% {box-shadow: 0px 0px 5px#ae02fd;}
}
/*--------------MEDIA QUERY-----------------*/
@media screen and (max-width:300px){
.navbar-brand-name{
display: none !important;
}
.icon-text h3{
font-size: 1.3rem !important;
font-weight: 900;
}
.icon-text p{
font-size: 1rem !important;
}
}
@media screen and (max-width:576px){
.icon{
width:120vw;
}
#fetch-code div{
font-size: 2.5vw !important;
}
/*-----------Line-----------------*/
.hr{
width:80%;
height:3px;
border-radius: 3px;
background-color: #c4c4c4;
margin: 10px auto;
}
}
@media screen and (max-width:768px){
.icon-container{
display: block;
}
.icon{
width:80vw;
}
#code-screen{
height:350px;
}
}
@media screen and (max-width:992px){
.navbar-nav{
background-color:#e6fff3;
}
.definition{
font-size: 15px;
}
}
@media screen and (min-width:1200px){
.icon-text h3{
font-size: 3rem !important;
}
.icon-text p{
font-size: 1.5rem !important;
}
}
@media screen and (max-width:385px){
.footer-link-items{
margin:15px auto;
}
} | 0.355887 | 0.066176 |
@-moz-document url-prefix("https://www.ebay-kleinanzeigen.de/") {
/*** HINWEIS LÖSCHEN START ***/
body::before {
white-space: pre;
margin: 20px 50px;
display: block;
content: 'userstyles.org wird nicht mehr unterstützt: Dieser Userstyle ist veraltet, wird nicht mehr gepflegt und hat keine Optionen. \A Auf https://github.com/stonecrusher/stylus-UserCSS/tree/master/ebay-kleinanzeigen findest du die neueste UserCSS Version für das STYLUS Addon. \A Du kannst diesen Hinweis im Quelltext löschen, falls du diese Version trotzdem weiter nutzen willst.';
}
/*** HINWEIS LÖSCHEN ENDE ***/
body,
#site-header {
color: #ccc !important;
background-blend-mode: hard-light !important;
}
body,
#site-header {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAA<KEY>);
}
.mainnav-item:hover .mainnav-item-inner,
.on .mainnav-item-inner,
.mainnav-item.on,
.mainnav-item:hover,
.formerror {
color: #444 !important;
background-color: #ccc !important;
}
.formerror::after,
.formerror.is-inline::after {
background-color: transparent !important;
}
body,
.mainnav-sub-header,
.flexlist--header,
.aditem-addon,
.savedsearchitem-addon,
#viewad-cntr-num,
.itemtile-body,
.dropdown-list > li,
.textdropdown-options > li,
.savedsearchitem,
.followuseritem,
.modal-dialog > header,
.modal-dialog-content,
.text-light,
.textcounter,
.headline,
.headline-huge,
.headline-big,
.headline-large,
.headline-mediumlarge,
.headline-medium,
.headline-small,
.sectionheadline,
.sectionheadline-underlined,
.icon-headline,
.icon-headline-small {
color: #ccc !important;
}
h1:not(#viewad-price),
h2:not(#viewad-price),
h3:not(#viewad-price),
h4:not(#viewad-price),
h5:not(#viewad-price),
h6:not(#viewad-price) {
color: #ccc !important;
}
.boxheader > h1,
.boxheader-nomarginbottom > h1,
.boxheader > h2,
.boxheader-nomarginbottom > h2,
.boxheader > h3,
.boxheader-nomarginbottom > h3,
.boxheader > h4,
.boxheader-nomarginbottom > h4,
.boxheader > h5,
.boxheader-nomarginbottom > h5,
.boxheader > h6,
.boxheader-nomarginbottom > h6 {
color: #ccc !important;
}
body#login,
body#vap,
body#home,
body#srchrslt,
body#msgbox,
body#my-manageads,
body#my-settngs,
body#wtchlst,
body#my-followuser,
body#my-savedsearches,
body#postad-step1,
body#pstad,
body#pstrads,
body#prview,
body#browseCtgry,
body#logout {
color: #ccc !important;
}
.articleheader--price,
.button-secondary,
.button-inverted,
.aditem-details > strong {
color: #0a0 !important;
}
.outcomebox-error > header h1,
.outcomebox-success > header h1,
.outcomebox-warning > header h1,
.outcomebox-error > header h2,
.outcomebox-success > header h2,
.outcomebox-warning > header h2,
.outcomebox-error > header h3,
.outcomebox-success > header h3,
.outcomebox-warning > header h3,
.outcomebox-error > header h4,
.outcomebox-success > header h4,
.outcomebox-warning > header h4,
.outcomebox-error > header h5,
.outcomebox-success > header h5,
.outcomebox-warning > header h5,
.outcomebox-error > header h6,
.outcomebox-success > header h6,
.outcomebox-warning > header h6 {
color: #000 !important;
}
.manageadbox * {
color: #000 !important;
}
.manageadbox a {
color: #0c5fa7 !important;
}
a,
.textdropdown {
/* Sortierungslink */
color: #70b7f5 !important;
}
.outcomemessage-error a,
.outcomemessage-success a,
.outcomemessage-warning a {
color: #0e71c8 !important;
}
.mainnav-item-inner {
color: #ccc !important;
}
.bubblebox,
.bubblebox h1 {
color: #555 !important;
}
input,
.browsebox-selected-itembox,
.outcomebox-success h1 {
color: #444 !important;
}
.contentbox,
.contentbox-unpadded,
.contentbox-info,
.contentbox-landingpage,
.info-contentbox,
.mainnav-sub,
.dropdown-list,
.textdropdown-options,
.itemtile,
.itemtile-condensed,
.itemtile-fullpic,
.actionlist-body,
.mfp-popup,
.mfp-popup-medium,
.mfp-popup-small,
.mfp-popup-large,
.mfp-popup-huge,
.mfp-popup-fullscreen {
background-color: #555 !important;
}
.ad-listitem.is-highlight {
background-color: #666 !important;
}
.dropdown-list > li.is-active,
.dropdown-list > li:hover,
.textdropdown-options > li.is-active,
.textdropdown-options > li:hover,
.attributelist-striped .attributelist--key:nth-of-type(2n+1),
.attributelist-striped .attributelist--value:nth-of-type(2n+1),
.manageaditem > footer,
.savedsearchitem-footer,
.followuseritem-footer,
.aditem-footer,
.sectionbox,
.outcomebox-error .conditionalcomment-outcomeboxbody,
.outcomebox-success .conditionalcomment-outcomeboxbody,
.outcomebox-warning .conditionalcomment-outcomeboxbody,
.outcomebox-error .outcomebox--body,
.outcomebox-success .outcomebox--body,
.outcomebox-warning .outcomebox--body,
.login-overlay {
background-color: #444 !important;
}
.login-overlay::before {
background-color: #444 !important;
color: #444 !important;
}
.textdropdown-options:after,
.dropdown-list::after {
background-color: #555 !important;
}
.a-green.bar {
background-color: #070 !important;
}
.imagebox,
.imagebox-small,
.imagebox-storelogo-mini,
.imagebox-thumbnail,
.imagebox-storelogo {
background-color: #444 !important;
border-color: #444 !important;
border-radius: 5px !important;
}
.imagebox.is-nopic,
.is-nopic.imagebox-small,
.is-nopic.imagebox-storelogo-mini,
.is-nopic.imagebox-thumbnail,
.is-nopic.imagebox-storelogo {
filter: invert(0.8) !important;
}
#viewad-sticky .iconbox {
background-color: #aaa !important;
filter: invert(1) !important;
}
#viewad-sticky .iconbox:hover {
background-color: #bbb !important;
}
#viewad-action-box .iconbox {
background-color: #444 !important;
border-color: #555 !important;
}
#viewad-action-box .iconbox:hover {
background-color: #555 !important;
}
.button-secondary,
.button-inverted {
background-color: #444 !important;
}
.button-secondary:hover,
.button-inverted:hover {
background-color: #363636 !important;
}
.button-toggle,
.is-toggled {
background-color: #7a7a7a !important;
}
.button-toggle:hover,
.is-toggled:hover {
background-color: #999 !important;
}
.modal-dialog > header {
border-color: #999 !important;
}
.ad-gallery .ad-prev-image,
.ad-gallery-horizontal .ad-prev-image,
.ad-gallery .ad-next-image,
.ad-gallery-horizontal .ad-next-image {
background-color: #444 !important;
}
.formcontrol,
textarea,
select,
.splitfield-dropdown,
.recaptchatable input[type="text"] {
background-color: #444 !important;
color: #ccc !important;
}
.splitfield-right {
background-color: #070 !important;
}
.ad-gallery .ad-thumb-list > li.ad-active .imagebox-thumbnail,
.ad-gallery-horizontal .ad-thumb-list > li.ad-active .imagebox-thumbnail {
border-color: #999 !important;
}
.link-open-section, .textdropdown-input {
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMCIgeT0iMCIgd2lkdGg9IjgiIGhlaWdodD0iNSIgdmlld0JveD0iMCAwLjggOCA1IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMC44IDggNSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM1Mi4wMDAwMDAsIC0xODY5LjAwMDAwMCkiPjxwYXRoIGZpbGw9IiM3MGI3ZjUiIGQ9Ik0zNTIgMTg2OS44aDhsLTQgNUwzNTIgMTg2OS44eiIvPjwvZz48L3N2Zz4=) !important;
}
.button-toggle,
.is-toggled {
color: #9bcdf8 !important;
}
.listitem-container,
.conversationitem,
.msgbox-to {
background-color: #555 !important;
}
.conversationitem:hover,
.conversationitem.is-active,
.msgbox-from {
background-color: #444 !important;
}
#msgbox-conversation-overview > ul > li:last-of-type {
border-bottom: 1px solid #cbcbcb !important;
}
.msgbox-to {
color: #ccc !important;
}
.browsebox-selected-itembox,
.tooltip {
background-color: #444 !important;
color: #ccc !important;
}
.pvap-paused-veil {
background-color: rgba(255,169,116,0.4) !important;
}
.notification-center .notification-list .notification-footer {
background-color: #444 !important;
}
html {
overflow: auto !important;
}
.splitlinebox,
.contentbox.boxedarticle {
background: #444 !important;
}
#viewad-description {
background: #555 !important;
}
.splitlinebox h1,
.splitlinebox h2,
.splitlinebox h3,
.splitlinebox h4,
.splitlinebox h5,
.itemlist-separatedbefore > li:first-child,
.itemlist-padded-separatedbefore > li:first-child,
.itemlist > li + li,
.itemlist-separatedbefore > li + li,
.itemlist-padded-separatedbefore > li + li,
.itemlist-separatedafter > li + li,
.itemlist-padded-separatedafter > li + li,
.itemlist-padded > li + li,
.button-secondary,
.button-inverted,
.iconbox {
border-color: #999 !important;
}
#viewad-locality,
.boxedarticle--details--full {
color: #ccc !important;
}
.galleryimage-large--cover {
opacity: 1 !important;
background: #444 !important;
}
.button-secondary,
.button-inverted {
background-color: #555 !important;
}
.button-secondary:hover,
.button-inverted:hover {
background-color: #444 !important;
}
.button-icon.icon-star-open-gray {
filter: invert(0.8) !important;
}
#viewad-contact-phone-login {
color: #70b7f5 !important;
}
.splitfield-left {
background-color: #ccc !important;
}
.checktaglist .checktag {
color: #ccc !important;
}
#liberty-vip_pro-middle {
background: #070 !important;
}
.stickybox,
.stickybox--top,
.stickybox--bottom {
background: #444 !important;
}
.simpletag {
color: #999 !important;
background: #444 !important;
}
.has-above-header-info #site-header {
border-top: 0 !important;
margin-bottom: 7px !important;
}
#site-header-top {
padding-top: 5px !important;
margin-bottom: 2px !important;
}
#site-header {
margin-bottom: 10px !important;
}
#site-signin.is-centered-button {
top: 18px !important;
}
#site-signin > .login-overlay {
display: none !important;
}
#vip-atf-billboard,
#store-gallery,
#home-gallery,
#vap_adsense-middle,
.adsenseplacement,
#brws_banner-supersize,
#srchrslt-adtable > .ad-listitem:not(.lazyload-item),
#vap #pla-container,
#postad-publish div.l-row.a-double-margin.l-container-row,
#srchrslt-adtable-topads,
#measure-emotions-survey {
display: none !important;
}
advertiser\:remarketing { display: none !important; } /* Ding im Footer und CookieContainer */
#postad-features,
.manageaditem-featuretable,
.manageadbox .featuretable {
display: none !important;
}
.itemtile,
.itemtile-condensed,
.itemtile-fullpic {
height: initial !important;
}
.itemtile-title {
line-height: 1.2 !important;
white-space: normal !important;
height: 3.6em !important;
margin-bottom: 2px !important;
}
.itemtile-location,
.itemtile-category {
margin: 0 !important;
line-height: 1.2 !important;
}
.itemtile-body {
padding: 5px 10px !important;
}
} | data/usercss/163136.user.css | @-moz-document url-prefix("https://www.ebay-kleinanzeigen.de/") {
/*** HINWEIS LÖSCHEN START ***/
body::before {
white-space: pre;
margin: 20px 50px;
display: block;
content: 'userstyles.org wird nicht mehr unterstützt: Dieser Userstyle ist veraltet, wird nicht mehr gepflegt und hat keine Optionen. \A Auf https://github.com/stonecrusher/stylus-UserCSS/tree/master/ebay-kleinanzeigen findest du die neueste UserCSS Version für das STYLUS Addon. \A Du kannst diesen Hinweis im Quelltext löschen, falls du diese Version trotzdem weiter nutzen willst.';
}
/*** HINWEIS LÖSCHEN ENDE ***/
body,
#site-header {
color: #ccc !important;
background-blend-mode: hard-light !important;
}
body,
#site-header {
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAA<KEY>);
}
.mainnav-item:hover .mainnav-item-inner,
.on .mainnav-item-inner,
.mainnav-item.on,
.mainnav-item:hover,
.formerror {
color: #444 !important;
background-color: #ccc !important;
}
.formerror::after,
.formerror.is-inline::after {
background-color: transparent !important;
}
body,
.mainnav-sub-header,
.flexlist--header,
.aditem-addon,
.savedsearchitem-addon,
#viewad-cntr-num,
.itemtile-body,
.dropdown-list > li,
.textdropdown-options > li,
.savedsearchitem,
.followuseritem,
.modal-dialog > header,
.modal-dialog-content,
.text-light,
.textcounter,
.headline,
.headline-huge,
.headline-big,
.headline-large,
.headline-mediumlarge,
.headline-medium,
.headline-small,
.sectionheadline,
.sectionheadline-underlined,
.icon-headline,
.icon-headline-small {
color: #ccc !important;
}
h1:not(#viewad-price),
h2:not(#viewad-price),
h3:not(#viewad-price),
h4:not(#viewad-price),
h5:not(#viewad-price),
h6:not(#viewad-price) {
color: #ccc !important;
}
.boxheader > h1,
.boxheader-nomarginbottom > h1,
.boxheader > h2,
.boxheader-nomarginbottom > h2,
.boxheader > h3,
.boxheader-nomarginbottom > h3,
.boxheader > h4,
.boxheader-nomarginbottom > h4,
.boxheader > h5,
.boxheader-nomarginbottom > h5,
.boxheader > h6,
.boxheader-nomarginbottom > h6 {
color: #ccc !important;
}
body#login,
body#vap,
body#home,
body#srchrslt,
body#msgbox,
body#my-manageads,
body#my-settngs,
body#wtchlst,
body#my-followuser,
body#my-savedsearches,
body#postad-step1,
body#pstad,
body#pstrads,
body#prview,
body#browseCtgry,
body#logout {
color: #ccc !important;
}
.articleheader--price,
.button-secondary,
.button-inverted,
.aditem-details > strong {
color: #0a0 !important;
}
.outcomebox-error > header h1,
.outcomebox-success > header h1,
.outcomebox-warning > header h1,
.outcomebox-error > header h2,
.outcomebox-success > header h2,
.outcomebox-warning > header h2,
.outcomebox-error > header h3,
.outcomebox-success > header h3,
.outcomebox-warning > header h3,
.outcomebox-error > header h4,
.outcomebox-success > header h4,
.outcomebox-warning > header h4,
.outcomebox-error > header h5,
.outcomebox-success > header h5,
.outcomebox-warning > header h5,
.outcomebox-error > header h6,
.outcomebox-success > header h6,
.outcomebox-warning > header h6 {
color: #000 !important;
}
.manageadbox * {
color: #000 !important;
}
.manageadbox a {
color: #0c5fa7 !important;
}
a,
.textdropdown {
/* Sortierungslink */
color: #70b7f5 !important;
}
.outcomemessage-error a,
.outcomemessage-success a,
.outcomemessage-warning a {
color: #0e71c8 !important;
}
.mainnav-item-inner {
color: #ccc !important;
}
.bubblebox,
.bubblebox h1 {
color: #555 !important;
}
input,
.browsebox-selected-itembox,
.outcomebox-success h1 {
color: #444 !important;
}
.contentbox,
.contentbox-unpadded,
.contentbox-info,
.contentbox-landingpage,
.info-contentbox,
.mainnav-sub,
.dropdown-list,
.textdropdown-options,
.itemtile,
.itemtile-condensed,
.itemtile-fullpic,
.actionlist-body,
.mfp-popup,
.mfp-popup-medium,
.mfp-popup-small,
.mfp-popup-large,
.mfp-popup-huge,
.mfp-popup-fullscreen {
background-color: #555 !important;
}
.ad-listitem.is-highlight {
background-color: #666 !important;
}
.dropdown-list > li.is-active,
.dropdown-list > li:hover,
.textdropdown-options > li.is-active,
.textdropdown-options > li:hover,
.attributelist-striped .attributelist--key:nth-of-type(2n+1),
.attributelist-striped .attributelist--value:nth-of-type(2n+1),
.manageaditem > footer,
.savedsearchitem-footer,
.followuseritem-footer,
.aditem-footer,
.sectionbox,
.outcomebox-error .conditionalcomment-outcomeboxbody,
.outcomebox-success .conditionalcomment-outcomeboxbody,
.outcomebox-warning .conditionalcomment-outcomeboxbody,
.outcomebox-error .outcomebox--body,
.outcomebox-success .outcomebox--body,
.outcomebox-warning .outcomebox--body,
.login-overlay {
background-color: #444 !important;
}
.login-overlay::before {
background-color: #444 !important;
color: #444 !important;
}
.textdropdown-options:after,
.dropdown-list::after {
background-color: #555 !important;
}
.a-green.bar {
background-color: #070 !important;
}
.imagebox,
.imagebox-small,
.imagebox-storelogo-mini,
.imagebox-thumbnail,
.imagebox-storelogo {
background-color: #444 !important;
border-color: #444 !important;
border-radius: 5px !important;
}
.imagebox.is-nopic,
.is-nopic.imagebox-small,
.is-nopic.imagebox-storelogo-mini,
.is-nopic.imagebox-thumbnail,
.is-nopic.imagebox-storelogo {
filter: invert(0.8) !important;
}
#viewad-sticky .iconbox {
background-color: #aaa !important;
filter: invert(1) !important;
}
#viewad-sticky .iconbox:hover {
background-color: #bbb !important;
}
#viewad-action-box .iconbox {
background-color: #444 !important;
border-color: #555 !important;
}
#viewad-action-box .iconbox:hover {
background-color: #555 !important;
}
.button-secondary,
.button-inverted {
background-color: #444 !important;
}
.button-secondary:hover,
.button-inverted:hover {
background-color: #363636 !important;
}
.button-toggle,
.is-toggled {
background-color: #7a7a7a !important;
}
.button-toggle:hover,
.is-toggled:hover {
background-color: #999 !important;
}
.modal-dialog > header {
border-color: #999 !important;
}
.ad-gallery .ad-prev-image,
.ad-gallery-horizontal .ad-prev-image,
.ad-gallery .ad-next-image,
.ad-gallery-horizontal .ad-next-image {
background-color: #444 !important;
}
.formcontrol,
textarea,
select,
.splitfield-dropdown,
.recaptchatable input[type="text"] {
background-color: #444 !important;
color: #ccc !important;
}
.splitfield-right {
background-color: #070 !important;
}
.ad-gallery .ad-thumb-list > li.ad-active .imagebox-thumbnail,
.ad-gallery-horizontal .ad-thumb-list > li.ad-active .imagebox-thumbnail {
border-color: #999 !important;
}
.link-open-section, .textdropdown-input {
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMCIgeT0iMCIgd2lkdGg9IjgiIGhlaWdodD0iNSIgdmlld0JveD0iMCAwLjggOCA1IiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMC44IDggNSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM1Mi4wMDAwMDAsIC0xODY5LjAwMDAwMCkiPjxwYXRoIGZpbGw9IiM3MGI3ZjUiIGQ9Ik0zNTIgMTg2OS44aDhsLTQgNUwzNTIgMTg2OS44eiIvPjwvZz48L3N2Zz4=) !important;
}
.button-toggle,
.is-toggled {
color: #9bcdf8 !important;
}
.listitem-container,
.conversationitem,
.msgbox-to {
background-color: #555 !important;
}
.conversationitem:hover,
.conversationitem.is-active,
.msgbox-from {
background-color: #444 !important;
}
#msgbox-conversation-overview > ul > li:last-of-type {
border-bottom: 1px solid #cbcbcb !important;
}
.msgbox-to {
color: #ccc !important;
}
.browsebox-selected-itembox,
.tooltip {
background-color: #444 !important;
color: #ccc !important;
}
.pvap-paused-veil {
background-color: rgba(255,169,116,0.4) !important;
}
.notification-center .notification-list .notification-footer {
background-color: #444 !important;
}
html {
overflow: auto !important;
}
.splitlinebox,
.contentbox.boxedarticle {
background: #444 !important;
}
#viewad-description {
background: #555 !important;
}
.splitlinebox h1,
.splitlinebox h2,
.splitlinebox h3,
.splitlinebox h4,
.splitlinebox h5,
.itemlist-separatedbefore > li:first-child,
.itemlist-padded-separatedbefore > li:first-child,
.itemlist > li + li,
.itemlist-separatedbefore > li + li,
.itemlist-padded-separatedbefore > li + li,
.itemlist-separatedafter > li + li,
.itemlist-padded-separatedafter > li + li,
.itemlist-padded > li + li,
.button-secondary,
.button-inverted,
.iconbox {
border-color: #999 !important;
}
#viewad-locality,
.boxedarticle--details--full {
color: #ccc !important;
}
.galleryimage-large--cover {
opacity: 1 !important;
background: #444 !important;
}
.button-secondary,
.button-inverted {
background-color: #555 !important;
}
.button-secondary:hover,
.button-inverted:hover {
background-color: #444 !important;
}
.button-icon.icon-star-open-gray {
filter: invert(0.8) !important;
}
#viewad-contact-phone-login {
color: #70b7f5 !important;
}
.splitfield-left {
background-color: #ccc !important;
}
.checktaglist .checktag {
color: #ccc !important;
}
#liberty-vip_pro-middle {
background: #070 !important;
}
.stickybox,
.stickybox--top,
.stickybox--bottom {
background: #444 !important;
}
.simpletag {
color: #999 !important;
background: #444 !important;
}
.has-above-header-info #site-header {
border-top: 0 !important;
margin-bottom: 7px !important;
}
#site-header-top {
padding-top: 5px !important;
margin-bottom: 2px !important;
}
#site-header {
margin-bottom: 10px !important;
}
#site-signin.is-centered-button {
top: 18px !important;
}
#site-signin > .login-overlay {
display: none !important;
}
#vip-atf-billboard,
#store-gallery,
#home-gallery,
#vap_adsense-middle,
.adsenseplacement,
#brws_banner-supersize,
#srchrslt-adtable > .ad-listitem:not(.lazyload-item),
#vap #pla-container,
#postad-publish div.l-row.a-double-margin.l-container-row,
#srchrslt-adtable-topads,
#measure-emotions-survey {
display: none !important;
}
advertiser\:remarketing { display: none !important; } /* Ding im Footer und CookieContainer */
#postad-features,
.manageaditem-featuretable,
.manageadbox .featuretable {
display: none !important;
}
.itemtile,
.itemtile-condensed,
.itemtile-fullpic {
height: initial !important;
}
.itemtile-title {
line-height: 1.2 !important;
white-space: normal !important;
height: 3.6em !important;
margin-bottom: 2px !important;
}
.itemtile-location,
.itemtile-category {
margin: 0 !important;
line-height: 1.2 !important;
}
.itemtile-body {
padding: 5px 10px !important;
}
} | 0.234757 | 0.066691 |
.light {
background-image: radial-gradient(circle, #fff, #aaa, #333);
cursor: pointer;
width: 20px;
height: 20px;
display: inline-block;
border-radius: 50%;
}
.light + span {
display: none;
}
.light-danger {
background-image: radial-gradient(circle, #e17777, #892726, #700604);
}
.light-danger.flash {
animation: danger .6s linear infinite;
}
.light-danger:hover {
background-image: radial-gradient(circle, #e17777, #b33332, #bf211e);
}
@keyframes danger {
0% {
background-image: radial-gradient(circle, #e17777, #892726, #700604);
}
55% {
background-image: radial-gradient(circle, #e17777, #892726, #700604);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
}
.light-success {
background-image: radial-gradient(circle, #5cb85c, #116811, #024702);
}
.light-success.flash {
animation: success .6s linear infinite;
}
.light-success:hover {
background-image: radial-gradient(circle, #5cb85c, #0c980c, #087b08);
}
@keyframes success {
0% {
background-image: radial-gradient(circle, #5cb85c, #116811, #024702);
}
55% {
background-image: radial-gradient(circle, #5cb85c, #116811, #024702);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
}
.light-info {
background-image: radial-gradient(circle, #5bc0de, #1d7792, #085166);
}
.light-info.flash {
animation: info .6s linear infinite;
}
.light-info:hover {
background-image: radial-gradient(circle, #5bc0de, #085166, #085166);
}
@keyframes info {
0% {
background-image: radial-gradient(circle, #5bc0de, #1d7792, #085166);
}
55% {
background-image: radial-gradient(circle, #5bc0de, #1d7792, #085166);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
}
.light-warning {
background-image: radial-gradient(circle, #ffc107, #cc9f18, #a28018);
}
.light-warning.flash {
animation: warning .6s linear infinite;
}
.light-warning:hover {
background-image: radial-gradient(circle, #ffc107, #a28018, #a28018);
}
@keyframes warning {
0% {
background-image: radial-gradient(circle, #ffc107, #cc9f18, #a28018);
}
55% {
background-image: radial-gradient(circle, #ffc107, #cc9f18, #a28018);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
}
.light-primary {
background-image: radial-gradient(circle, #007bff, #0f5fb5, #104f94);
}
.light-primary.flash {
animation: primary .6s linear infinite;
}
.light-primary:hover {
background-image: radial-gradient(circle, #007bff, #104f94, #104f94);
}
@keyframes primary {
0% {
background-image: radial-gradient(circle, #007bff, #0f5fb5, #104f94);
}
55% {
background-image: radial-gradient(circle, #007bff, #0f5fb5, #104f94);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
}
.light-secondary {
background-image: radial-gradient(circle, #6c757d, #4b5054, #3b3d40);
}
.light-secondary.flash {
animation: secondary .6s linear infinite;
}
.light-secondary:hover {
background-image: radial-gradient(circle, #6c757d, #3b3d40, #3b3d40)
}
@keyframes secondary {
0% {
background-image: radial-gradient(circle, #6c757d, #4b5054, #3b3d40);
}
55% {
background-image: radial-gradient(circle, #6c757d, #3b3d40, #3b3d40);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
}
.light-dark {
background-image: radial-gradient(circle, #6061e2, #3232a0, #17177b);
}
.light-dark.flash {
animation: dark .6s linear infinite;
}
.light-dark:hover {
background-image: radial-gradient(circle, #6061e2, #17177b, #17177b);
}
@keyframes dark {
0% {
background-image: radial-gradient(circle, #6061e2, #3232a0, #17177b);
}
55% {
background-image: radial-gradient(circle, #6061e2, #3232a0, #17177b);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
} | src/BootstrapBlazor/Components/Light/Light.razor.cs.css | .light {
background-image: radial-gradient(circle, #fff, #aaa, #333);
cursor: pointer;
width: 20px;
height: 20px;
display: inline-block;
border-radius: 50%;
}
.light + span {
display: none;
}
.light-danger {
background-image: radial-gradient(circle, #e17777, #892726, #700604);
}
.light-danger.flash {
animation: danger .6s linear infinite;
}
.light-danger:hover {
background-image: radial-gradient(circle, #e17777, #b33332, #bf211e);
}
@keyframes danger {
0% {
background-image: radial-gradient(circle, #e17777, #892726, #700604);
}
55% {
background-image: radial-gradient(circle, #e17777, #892726, #700604);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
}
.light-success {
background-image: radial-gradient(circle, #5cb85c, #116811, #024702);
}
.light-success.flash {
animation: success .6s linear infinite;
}
.light-success:hover {
background-image: radial-gradient(circle, #5cb85c, #0c980c, #087b08);
}
@keyframes success {
0% {
background-image: radial-gradient(circle, #5cb85c, #116811, #024702);
}
55% {
background-image: radial-gradient(circle, #5cb85c, #116811, #024702);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
}
.light-info {
background-image: radial-gradient(circle, #5bc0de, #1d7792, #085166);
}
.light-info.flash {
animation: info .6s linear infinite;
}
.light-info:hover {
background-image: radial-gradient(circle, #5bc0de, #085166, #085166);
}
@keyframes info {
0% {
background-image: radial-gradient(circle, #5bc0de, #1d7792, #085166);
}
55% {
background-image: radial-gradient(circle, #5bc0de, #1d7792, #085166);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
}
.light-warning {
background-image: radial-gradient(circle, #ffc107, #cc9f18, #a28018);
}
.light-warning.flash {
animation: warning .6s linear infinite;
}
.light-warning:hover {
background-image: radial-gradient(circle, #ffc107, #a28018, #a28018);
}
@keyframes warning {
0% {
background-image: radial-gradient(circle, #ffc107, #cc9f18, #a28018);
}
55% {
background-image: radial-gradient(circle, #ffc107, #cc9f18, #a28018);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
}
.light-primary {
background-image: radial-gradient(circle, #007bff, #0f5fb5, #104f94);
}
.light-primary.flash {
animation: primary .6s linear infinite;
}
.light-primary:hover {
background-image: radial-gradient(circle, #007bff, #104f94, #104f94);
}
@keyframes primary {
0% {
background-image: radial-gradient(circle, #007bff, #0f5fb5, #104f94);
}
55% {
background-image: radial-gradient(circle, #007bff, #0f5fb5, #104f94);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
}
.light-secondary {
background-image: radial-gradient(circle, #6c757d, #4b5054, #3b3d40);
}
.light-secondary.flash {
animation: secondary .6s linear infinite;
}
.light-secondary:hover {
background-image: radial-gradient(circle, #6c757d, #3b3d40, #3b3d40)
}
@keyframes secondary {
0% {
background-image: radial-gradient(circle, #6c757d, #4b5054, #3b3d40);
}
55% {
background-image: radial-gradient(circle, #6c757d, #3b3d40, #3b3d40);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
}
.light-dark {
background-image: radial-gradient(circle, #6061e2, #3232a0, #17177b);
}
.light-dark.flash {
animation: dark .6s linear infinite;
}
.light-dark:hover {
background-image: radial-gradient(circle, #6061e2, #17177b, #17177b);
}
@keyframes dark {
0% {
background-image: radial-gradient(circle, #6061e2, #3232a0, #17177b);
}
55% {
background-image: radial-gradient(circle, #6061e2, #3232a0, #17177b);
}
100% {
background-image: radial-gradient(circle, #fff, #aaa, #333);
}
} | 0.693784 | 0.241389 |
@font-face {
font-family: 'Shizuru';
src: url(./assets/Shizuru-Regular.ttf) format('truetype');
}
.principal {
background-color: #fff;
margin: 10px;
width: 100%;
height: 100%;
display: grid;
grid-template-rows: 350px 10% 15%;
grid-gap: 20px;
}
.frase_0 {
color: #ffffff;
background-image: linear-gradient(45deg, #ff0000, #0000ff);
display: flex;
justify-content: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 30px;
padding: 25px;
text-shadow: 0 0 4px #fff, 0 0 4px #ff0;
}
.frase_1 {
color: #0c7003;
background-image: linear-gradient(90deg, #eeff00, #00f7ff);
display: flex;
justify-content:end;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 45px;
text-transform: lowercase;
padding: 25px;
text-shadow: 0 0 4px #fff, 0 0 14px #ff0;
}
.frase_2 {
color: #ffffff;
background-color: #fd856a;
display: flex;
justify-content:baseline;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 50px;
text-transform: uppercase;
padding: 25px;
text-shadow: 0 0 4px #fff, 0 0 4px #ff0;
}
.frase_3 {
color: #2a56da;
background-color: #fd6ad8;
display: flex;
justify-content: center;
font-family:Georgia, 'Times New Roman', Times, serif;
font-size: 150px;
text-transform: capitalize;
padding: 25px;
text-shadow:
3px 3px 0px #fff,
6px 6px 0px #ff03ea,
9px 9px 0px #00ee,
12px 12px 0px rgb(252, 5, 5);
}
.frase_4 {
color: #fff;
background-image: linear-gradient(180deg, #05e5f5, #0005ff);
display: flex;
justify-content: end;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 100px;
text-transform: lowercase;
padding: 95px;
text-shadow: 0 0 4px #fff, 0 0 8px #ff0;
}
.frase_5 {
color: #fd0606;
background-image: linear-gradient(60deg, #ddf505, #ff0055);
display: flex;
justify-content:last baseline;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 100px;
text-transform: unset;
padding: 95px;
text-shadow: 0 0 4px #fff, 0 0 4px #ffff55;
}
.frase_6 {
color: #ffffff;
background-image: linear-gradient(60deg, #ff0000,#ffaa00,#ffff55,#00aa00, #55ffff, #0000aa, #aa00aa);
display: flex;
justify-content:center;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 120px;
font-weight: 700;
text-transform: uppercase;
padding: 95px;
}
.frase_7 {
background: linear-gradient(217deg, rgba(255,0,0,.8), rgba(255,0,0,0) 70.71%),
linear-gradient(127deg, rgba(0,255,0,.8), rgba(0,255,0,0) 70.71%),
linear-gradient(336deg, rgba(0,0,255,.8), rgba(0,0,255,0) 70.71%);
display: flex;
justify-content:center;
font-family: 'Shizuru';
color: #fff;
font-size: 120px;
font-weight: 400;
text-transform: lowercase;
padding: 65px;
margin: 35px;
border: #fff double 35px;
text-shadow: 0 0 4px #fff, 0 0 4px #ff0;
}
.frase_8 {
color:#09012b ;
background-image: linear-gradient(60deg, #ff0000,#ffaa00,#ffff55,#00aa00, #55ffff, #0000aa, #aa00aa);
display: flex;
justify-content:center;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 120px;
font-weight: 700;
text-transform: uppercase;
padding: 95px;
transform: scaleX(-1);
text-shadow:
3px 3px 0px #55ffff,
6px 6px 0px #ffff55,
9px 9px 0px #ff0000,
12px 12px 0px #00aa00;
}
.frase_9 {
display: flex;
justify-content:center;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 120px;
font-weight: 700;
text-transform: uppercase;
padding: 95px;
margin: 35px;
border: 15px solid;
border-image: linear-gradient(90deg, #0703fd, #fd0294 100%) 1;
/*efeitos para degradê na font*/
/* Primeiro passo: definir um degradê como fundo */
background-image: linear-gradient(to bottom, rgb(128, 4, 252), rgb(4, 139, 250), rgb(6, 252, 227));
/* Segundo passo: apagar do fundo tudo que não estiver imediatamente atrás de texto */
background-clip: text;
-webkit-background-clip: text; /* Alguns navegadores precisam do prefixo */
/* Terceiro passo: apagar o texto, deixando apenas o fundo atrás dele */
-webkit-text-fill-color: transparent;
/* Cor que contraste com o degradê, caso o navegador não suporte `background-clip: text` */
color: #2008f5;
text-shadow:
3px 3px 6px rgb(7, 158, 245),
-6px -6px 3px rgb(23, 7, 250),
-9px 9px 7px rgb(218, 5, 247),
12px -12px 7px rgb(250, 5, 140)
}
.txt-relogio {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Sans Unicode', Verdana, sans-serif;
color: #c202fd;
font-size: 25px;
}
.imagem, .div-botao, .div-relogio {
display: flex;
align-items: center;
justify-content: center;
}
.btn-troca-efeito {
font-size:20px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
width:140px;
height:50px;
border-width:1px;
color:#fff;
border-color:#02f5fd;
font-weight:bold;
border-top-left-radius:18px;
border-top-right-radius:18px;
border-bottom-left-radius:18px;
border-bottom-right-radius:18px;
box-shadow: 3px 4px 0px 0px #64639c;
text-shadow: 0px 1px 0px #0d0b72;
background:linear-gradient(#02f5fd, #b0b7fa);
}
.btn-troca-efeito:hover {
background: linear-gradient(#88b7e4, #019790);
} | estagioMod2/2.1-react/desafio-react/src/App.css | @font-face {
font-family: 'Shizuru';
src: url(./assets/Shizuru-Regular.ttf) format('truetype');
}
.principal {
background-color: #fff;
margin: 10px;
width: 100%;
height: 100%;
display: grid;
grid-template-rows: 350px 10% 15%;
grid-gap: 20px;
}
.frase_0 {
color: #ffffff;
background-image: linear-gradient(45deg, #ff0000, #0000ff);
display: flex;
justify-content: center;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 30px;
padding: 25px;
text-shadow: 0 0 4px #fff, 0 0 4px #ff0;
}
.frase_1 {
color: #0c7003;
background-image: linear-gradient(90deg, #eeff00, #00f7ff);
display: flex;
justify-content:end;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 45px;
text-transform: lowercase;
padding: 25px;
text-shadow: 0 0 4px #fff, 0 0 14px #ff0;
}
.frase_2 {
color: #ffffff;
background-color: #fd856a;
display: flex;
justify-content:baseline;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 50px;
text-transform: uppercase;
padding: 25px;
text-shadow: 0 0 4px #fff, 0 0 4px #ff0;
}
.frase_3 {
color: #2a56da;
background-color: #fd6ad8;
display: flex;
justify-content: center;
font-family:Georgia, 'Times New Roman', Times, serif;
font-size: 150px;
text-transform: capitalize;
padding: 25px;
text-shadow:
3px 3px 0px #fff,
6px 6px 0px #ff03ea,
9px 9px 0px #00ee,
12px 12px 0px rgb(252, 5, 5);
}
.frase_4 {
color: #fff;
background-image: linear-gradient(180deg, #05e5f5, #0005ff);
display: flex;
justify-content: end;
font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
font-size: 100px;
text-transform: lowercase;
padding: 95px;
text-shadow: 0 0 4px #fff, 0 0 8px #ff0;
}
.frase_5 {
color: #fd0606;
background-image: linear-gradient(60deg, #ddf505, #ff0055);
display: flex;
justify-content:last baseline;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-size: 100px;
text-transform: unset;
padding: 95px;
text-shadow: 0 0 4px #fff, 0 0 4px #ffff55;
}
.frase_6 {
color: #ffffff;
background-image: linear-gradient(60deg, #ff0000,#ffaa00,#ffff55,#00aa00, #55ffff, #0000aa, #aa00aa);
display: flex;
justify-content:center;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 120px;
font-weight: 700;
text-transform: uppercase;
padding: 95px;
}
.frase_7 {
background: linear-gradient(217deg, rgba(255,0,0,.8), rgba(255,0,0,0) 70.71%),
linear-gradient(127deg, rgba(0,255,0,.8), rgba(0,255,0,0) 70.71%),
linear-gradient(336deg, rgba(0,0,255,.8), rgba(0,0,255,0) 70.71%);
display: flex;
justify-content:center;
font-family: 'Shizuru';
color: #fff;
font-size: 120px;
font-weight: 400;
text-transform: lowercase;
padding: 65px;
margin: 35px;
border: #fff double 35px;
text-shadow: 0 0 4px #fff, 0 0 4px #ff0;
}
.frase_8 {
color:#09012b ;
background-image: linear-gradient(60deg, #ff0000,#ffaa00,#ffff55,#00aa00, #55ffff, #0000aa, #aa00aa);
display: flex;
justify-content:center;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 120px;
font-weight: 700;
text-transform: uppercase;
padding: 95px;
transform: scaleX(-1);
text-shadow:
3px 3px 0px #55ffff,
6px 6px 0px #ffff55,
9px 9px 0px #ff0000,
12px 12px 0px #00aa00;
}
.frase_9 {
display: flex;
justify-content:center;
font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 120px;
font-weight: 700;
text-transform: uppercase;
padding: 95px;
margin: 35px;
border: 15px solid;
border-image: linear-gradient(90deg, #0703fd, #fd0294 100%) 1;
/*efeitos para degradê na font*/
/* Primeiro passo: definir um degradê como fundo */
background-image: linear-gradient(to bottom, rgb(128, 4, 252), rgb(4, 139, 250), rgb(6, 252, 227));
/* Segundo passo: apagar do fundo tudo que não estiver imediatamente atrás de texto */
background-clip: text;
-webkit-background-clip: text; /* Alguns navegadores precisam do prefixo */
/* Terceiro passo: apagar o texto, deixando apenas o fundo atrás dele */
-webkit-text-fill-color: transparent;
/* Cor que contraste com o degradê, caso o navegador não suporte `background-clip: text` */
color: #2008f5;
text-shadow:
3px 3px 6px rgb(7, 158, 245),
-6px -6px 3px rgb(23, 7, 250),
-9px 9px 7px rgb(218, 5, 247),
12px -12px 7px rgb(250, 5, 140)
}
.txt-relogio {
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Sans Unicode', Verdana, sans-serif;
color: #c202fd;
font-size: 25px;
}
.imagem, .div-botao, .div-relogio {
display: flex;
align-items: center;
justify-content: center;
}
.btn-troca-efeito {
font-size:20px;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
width:140px;
height:50px;
border-width:1px;
color:#fff;
border-color:#02f5fd;
font-weight:bold;
border-top-left-radius:18px;
border-top-right-radius:18px;
border-bottom-left-radius:18px;
border-bottom-right-radius:18px;
box-shadow: 3px 4px 0px 0px #64639c;
text-shadow: 0px 1px 0px #0d0b72;
background:linear-gradient(#02f5fd, #b0b7fa);
}
.btn-troca-efeito:hover {
background: linear-gradient(#88b7e4, #019790);
} | 0.325842 | 0.089654 |
.bar {
margin-top:30px;
background-image: url("../img/header/bar_o.png");
background-size: cover;
background-position: center;
height:40px;
width: 100%;
display: flex;
flex-direction: column;
}
.bar_text {
color: white;
font-family: code;
margin: auto;
}
main {
margin-right:30px;
margin-top:20px;
flex-direction: column;
}
/* .my_info_text {
text-align: center;
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-direction: row;
border-radius: 5px;
border: 1px solid red;
} */
/* .info {
display: flex;
flex-direction: column;
border: 1px solid rgba(0, 0, 0, 0.1);
background-color: rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
margin-top:15px;
border: 1px solid #01D7F9;
} */
/* .my_picture {
margin-bottom:5px;
max-height: 140px;
border: 1px solid red;
} */
.image_header {
width:100%;
max-height: 500px;
height: 250px;
/* margin-bottom:50px; */
background-image: url("../img/header/desk_pic_2_opacity.png");
background-size: cover;
background-position: center;
display: flex;
border-radius: 10%;
box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
opacity: 0.9;
}
.image_header_motivation {
width:100%;
max-height: 500px;
height: 250px;
/* margin-bottom:50px; */
background-image: url("../img/header/dordrecht.jpg");
background-size: cover;
background-position: center;
display: flex;
border-radius: 10%;
box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
opacity: 0.9;
}
.image_header_game {
width:100%;
margin-bottom:50px;
display: flex;
}
.image_header:hover {
opacity: 1;
transition: opacity 2s;
}
.image_header_picture {
margin: auto;
font-family: code;
font-size: 50px;
color: white;
text-align: center;
line-height: 70px;
}
.center_flex {
display: flex;
}
.outer_for_center {
margin: auto;
padding:10px;
text-align: center;
}
.sidemap {
margin: 10px 20px 0px 0px;
}
.info_me_wrapper {
/* display: flex; */
width:100%;
height: auto;
border: 1px solid rgba(0, 0, 0, 0.1);
background-color: rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
/* border: 1px solid red; */
/* align-items: center; */
/* text-align: center; */
float: left;
line-height: 18px;
font-size:15px;
font-family: Arial, Helvetica, sans-serif;
}
.my_picture {
max-height: 100px;
margin:0;
padding:0;
}
.info_text {
/* border: 1px solid red; */
height: 100%;
padding:10px;
}
.info_picture {
padding:10px;
float: left;
/* border: 1px solid red; */
}
.interests ul li {
list-style-type: initial;
text-decoration-style: initial;
}
.interests{
margin-left:25px;
padding: 5px;
}
ol{
padding: 0 25px;
}
ol li{
padding-left: 0px;
}
table, th, tr, td {
border: 1px solid black;
padding:5px;
} | css/contents_about.css | .bar {
margin-top:30px;
background-image: url("../img/header/bar_o.png");
background-size: cover;
background-position: center;
height:40px;
width: 100%;
display: flex;
flex-direction: column;
}
.bar_text {
color: white;
font-family: code;
margin: auto;
}
main {
margin-right:30px;
margin-top:20px;
flex-direction: column;
}
/* .my_info_text {
text-align: center;
font-family: Arial, Helvetica, sans-serif;
display: flex;
flex-direction: row;
border-radius: 5px;
border: 1px solid red;
} */
/* .info {
display: flex;
flex-direction: column;
border: 1px solid rgba(0, 0, 0, 0.1);
background-color: rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
margin-top:15px;
border: 1px solid #01D7F9;
} */
/* .my_picture {
margin-bottom:5px;
max-height: 140px;
border: 1px solid red;
} */
.image_header {
width:100%;
max-height: 500px;
height: 250px;
/* margin-bottom:50px; */
background-image: url("../img/header/desk_pic_2_opacity.png");
background-size: cover;
background-position: center;
display: flex;
border-radius: 10%;
box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
opacity: 0.9;
}
.image_header_motivation {
width:100%;
max-height: 500px;
height: 250px;
/* margin-bottom:50px; */
background-image: url("../img/header/dordrecht.jpg");
background-size: cover;
background-position: center;
display: flex;
border-radius: 10%;
box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
opacity: 0.9;
}
.image_header_game {
width:100%;
margin-bottom:50px;
display: flex;
}
.image_header:hover {
opacity: 1;
transition: opacity 2s;
}
.image_header_picture {
margin: auto;
font-family: code;
font-size: 50px;
color: white;
text-align: center;
line-height: 70px;
}
.center_flex {
display: flex;
}
.outer_for_center {
margin: auto;
padding:10px;
text-align: center;
}
.sidemap {
margin: 10px 20px 0px 0px;
}
.info_me_wrapper {
/* display: flex; */
width:100%;
height: auto;
border: 1px solid rgba(0, 0, 0, 0.1);
background-color: rgba(0, 0, 0, 0.1);
box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
/* border: 1px solid red; */
/* align-items: center; */
/* text-align: center; */
float: left;
line-height: 18px;
font-size:15px;
font-family: Arial, Helvetica, sans-serif;
}
.my_picture {
max-height: 100px;
margin:0;
padding:0;
}
.info_text {
/* border: 1px solid red; */
height: 100%;
padding:10px;
}
.info_picture {
padding:10px;
float: left;
/* border: 1px solid red; */
}
.interests ul li {
list-style-type: initial;
text-decoration-style: initial;
}
.interests{
margin-left:25px;
padding: 5px;
}
ol{
padding: 0 25px;
}
ol li{
padding-left: 0px;
}
table, th, tr, td {
border: 1px solid black;
padding:5px;
} | 0.421909 | 0.108803 |
:root {
--about-font-size: min(1.5vw, 15px);
}
.about-left {
height: 100%;
width: 40%;
left: 0px;
position: absolute;
background-color: white;
opacity: 0.8;
}
.about-right {
height: 100%;
width: 60%;
right: 0px;
position: absolute;
background-color: #001c45;
opacity: 0.8;
}
.about-font {
position: absolute;
right: 0;
top: 30%;
font-size: 3em;
font-family: 'Noto Serif SC', serif;
}
.about-font-1 {
position: absolute;
right: 160px;
margin-bottom: -60px;
margin-right: 30px;
}
.about-font-2 {
position: absolute;
top: 160px;
right: 160px;
margin-bottom: -60px;
margin-right: 30px;
}
.about-font-3 {
top: 0px;
right: 10px;
position: absolute;
margin-bottom: -60px;
margin-right: 30px;
}
.about-font-4 {
top: 160px;
right: 10px;
position: absolute;
margin-bottom: -60px;
margin-right: 30px;
}
.about-right {
position: absolute;
font-size: 1em;
font-family: serif;
color: white;
}
.about-right-all {
position: absolute;
width: 75%;
height: 80%;
top: 10%;
overflow:scroll;
}
.about-right-all::-webkit-scrollbar {
display: none;
}
.about-right div {
position: absolute;
left: 30px;
}
.about-right-intro {
top: 200px;
width: 100%;
height: 100%;
}
.about-right-version {
top: 700px;
width: 100%;
height: 100%;
}
.about-right-todo {
top: 1300px;
width: 100%;
height: 100%;
}
.about-right-title {
font-size: 2em;
font-family: 'Noto Serif SC', serif;
}
#about-right-title-content1 {
position: absolute;
left: 0px;
}
#about-right-title-content2 {
position: absolute;
left: 40px;
}
#about-right-title-content3 {
position: absolute;
top: 40px;
}
#about-right-title-content4 {
position: absolute;
top: 40px;
left: 40px;
}
.about-right-content {
top: 100px;
position: absolute;
font-size: var(--about-font-size);
}
.about-right-link {
top: 450px;
width: 100%;
height: 100%;
} | ChineseTime/wwwroot/css/about.css | :root {
--about-font-size: min(1.5vw, 15px);
}
.about-left {
height: 100%;
width: 40%;
left: 0px;
position: absolute;
background-color: white;
opacity: 0.8;
}
.about-right {
height: 100%;
width: 60%;
right: 0px;
position: absolute;
background-color: #001c45;
opacity: 0.8;
}
.about-font {
position: absolute;
right: 0;
top: 30%;
font-size: 3em;
font-family: 'Noto Serif SC', serif;
}
.about-font-1 {
position: absolute;
right: 160px;
margin-bottom: -60px;
margin-right: 30px;
}
.about-font-2 {
position: absolute;
top: 160px;
right: 160px;
margin-bottom: -60px;
margin-right: 30px;
}
.about-font-3 {
top: 0px;
right: 10px;
position: absolute;
margin-bottom: -60px;
margin-right: 30px;
}
.about-font-4 {
top: 160px;
right: 10px;
position: absolute;
margin-bottom: -60px;
margin-right: 30px;
}
.about-right {
position: absolute;
font-size: 1em;
font-family: serif;
color: white;
}
.about-right-all {
position: absolute;
width: 75%;
height: 80%;
top: 10%;
overflow:scroll;
}
.about-right-all::-webkit-scrollbar {
display: none;
}
.about-right div {
position: absolute;
left: 30px;
}
.about-right-intro {
top: 200px;
width: 100%;
height: 100%;
}
.about-right-version {
top: 700px;
width: 100%;
height: 100%;
}
.about-right-todo {
top: 1300px;
width: 100%;
height: 100%;
}
.about-right-title {
font-size: 2em;
font-family: 'Noto Serif SC', serif;
}
#about-right-title-content1 {
position: absolute;
left: 0px;
}
#about-right-title-content2 {
position: absolute;
left: 40px;
}
#about-right-title-content3 {
position: absolute;
top: 40px;
}
#about-right-title-content4 {
position: absolute;
top: 40px;
left: 40px;
}
.about-right-content {
top: 100px;
position: absolute;
font-size: var(--about-font-size);
}
.about-right-link {
top: 450px;
width: 100%;
height: 100%;
} | 0.704465 | 0.192843 |
body{
background: #234;
color: #AAA;
}
.red{
color: #F44336;
}
.green{
color: #00897B;
}
#hash-id{
margin-left: 3px;
color: #F44336;
}
.convo{
position: relative;
color: white;
margin: 3em 2em;
border-radius: 0 5em;
min-height: 3em;
box-shadow: 1px 1px 5px 0px black
}
.convo .avatar{
position: absolute;
width: 5em;
height: 5em;
border-radius: 8em;
border: 2px solid white;
top:-2em;
}
.convo .username{
position: absolute;
padding: 0.3em 5em;
max-height: 2em;
top:-2em;
background: white;
color: black;
}
.convo.mine{
background: #00897B;
padding: 0.5em 3em 0.5em 5em;
border-radius: 0 5em;
}
.convo.others{
background: #F44336;
padding: 0.5em 5em 0.5em 3em;
border-radius: 5em 0;
}
.convo.mine .avatar {
left:-0.5em;
}
.convo.others .avatar {
right:-0.5em;
}
.convo.mine .username{
left: 2em;
border-radius: 0 4em;
}
.convo.others .username{
right: 2em;
border-radius: 4em 0;
}
.room-update{
text-align: center;
padding: 0.3em;
margin: 0.5em;
}
/* Form */
#send-form {
position: relative;
height: 4em;
}
#send-form #message{
border-radius: 5em;
height: 100%;
padding: 0.5em 8em 0.5em 2em;
width: 100%;
}
#send-form #send-btn{
position: absolute;
right: 0;
top: 0;
height: 100%;
border-radius: 0 4em 4em 0;
padding-left: 2em;
padding-right:2em;
text-shadow: 2px 2px 5px black;
}
/**/
/*Animation*/
.buzz{
animation: buzz 0.1s ease-in 10;
}
@keyframes buzz {
0%{ transform: translateX(-2%); }
90%{ transform: translateX(2%); }
}
/**/
/*#chatbox -> [messages, controls, top-bar]*/
#chatbox{
height: 100vh;
padding-bottom: 8em;
padding-top: 8em;
}
#top-bar{
position: absolute;
top: 0;
left: 0;
right: 0;
padding: 1em 2em;
}
#messages{
height: 100%;
overflow-y: scroll;
}
#controls{
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 1em 2em;
}
#control-bar{
padding: 0 2em;
}
#control-bar > *{
border-radius: 2em 2em 0 0;
height: 2em;
text-align: center;
border: none;
background: #F44336;
color: white;
}
#send-buzz{
margin-top: -3px;
}
#control-bar #username-change:hover{
cursor: pointer;
}
#top-bar{
border-bottom: 2px solid #aaa;
}
#top-bar h1{
margin: 0;
}
/* Index*/
body#index{
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
#secret-form{
margin: 2em auto 1em auto;
width: 60%;
}
#secret-form .input-group-addon{
border-radius: 2em 0 0 2em;
background: white;
padding: 0 0.5em;
font-size: 1.5em;
color: black;
}
#input-secret{
margin: auto;
padding: 0.5em 1em;
border-radius: 0 3em 3em 0;
}
#btn-start-chat{
display: block;
margin: 1em auto;
border-radius: 3em;
padding: 0.5em 3em;
}
/**/
/* User list*/
#user-list > div{
display: inline-block;
padding: 5px 10px;
margin: 5px;
border-radius: 10px;
background: #00897B;
}
/* User list ends*/ | public/css/style.css | body{
background: #234;
color: #AAA;
}
.red{
color: #F44336;
}
.green{
color: #00897B;
}
#hash-id{
margin-left: 3px;
color: #F44336;
}
.convo{
position: relative;
color: white;
margin: 3em 2em;
border-radius: 0 5em;
min-height: 3em;
box-shadow: 1px 1px 5px 0px black
}
.convo .avatar{
position: absolute;
width: 5em;
height: 5em;
border-radius: 8em;
border: 2px solid white;
top:-2em;
}
.convo .username{
position: absolute;
padding: 0.3em 5em;
max-height: 2em;
top:-2em;
background: white;
color: black;
}
.convo.mine{
background: #00897B;
padding: 0.5em 3em 0.5em 5em;
border-radius: 0 5em;
}
.convo.others{
background: #F44336;
padding: 0.5em 5em 0.5em 3em;
border-radius: 5em 0;
}
.convo.mine .avatar {
left:-0.5em;
}
.convo.others .avatar {
right:-0.5em;
}
.convo.mine .username{
left: 2em;
border-radius: 0 4em;
}
.convo.others .username{
right: 2em;
border-radius: 4em 0;
}
.room-update{
text-align: center;
padding: 0.3em;
margin: 0.5em;
}
/* Form */
#send-form {
position: relative;
height: 4em;
}
#send-form #message{
border-radius: 5em;
height: 100%;
padding: 0.5em 8em 0.5em 2em;
width: 100%;
}
#send-form #send-btn{
position: absolute;
right: 0;
top: 0;
height: 100%;
border-radius: 0 4em 4em 0;
padding-left: 2em;
padding-right:2em;
text-shadow: 2px 2px 5px black;
}
/**/
/*Animation*/
.buzz{
animation: buzz 0.1s ease-in 10;
}
@keyframes buzz {
0%{ transform: translateX(-2%); }
90%{ transform: translateX(2%); }
}
/**/
/*#chatbox -> [messages, controls, top-bar]*/
#chatbox{
height: 100vh;
padding-bottom: 8em;
padding-top: 8em;
}
#top-bar{
position: absolute;
top: 0;
left: 0;
right: 0;
padding: 1em 2em;
}
#messages{
height: 100%;
overflow-y: scroll;
}
#controls{
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 1em 2em;
}
#control-bar{
padding: 0 2em;
}
#control-bar > *{
border-radius: 2em 2em 0 0;
height: 2em;
text-align: center;
border: none;
background: #F44336;
color: white;
}
#send-buzz{
margin-top: -3px;
}
#control-bar #username-change:hover{
cursor: pointer;
}
#top-bar{
border-bottom: 2px solid #aaa;
}
#top-bar h1{
margin: 0;
}
/* Index*/
body#index{
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
#secret-form{
margin: 2em auto 1em auto;
width: 60%;
}
#secret-form .input-group-addon{
border-radius: 2em 0 0 2em;
background: white;
padding: 0 0.5em;
font-size: 1.5em;
color: black;
}
#input-secret{
margin: auto;
padding: 0.5em 1em;
border-radius: 0 3em 3em 0;
}
#btn-start-chat{
display: block;
margin: 1em auto;
border-radius: 3em;
padding: 0.5em 3em;
}
/**/
/* User list*/
#user-list > div{
display: inline-block;
padding: 5px 10px;
margin: 5px;
border-radius: 10px;
background: #00897B;
}
/* User list ends*/ | 0.337313 | 0.118768 |
* {
padding: 0;
margin: 0;
}
.menu_link1,
.menu_link2,
.menu_link3,
.menu_link4,
.menu_link5,
.menu_link6 {
font-family: var(--font-action);
color: rgb(192, 180, 180);
font-size: 2rem;
letter-spacing: .1rem;
transition: color 1s;
-webkit-transition: color 1s;
-moz-transition: color 1s;
-ms-transition: color 1s;
-o-transition: color 1s;
}
.menu_link1:hover {
color: white;
background-color: #2e0247;
width: 100%;
animation: shandar 1s infinite alternate;
-webkit-animation: shandar 1s infinite alternate;
border-radius: 10%;
-webkit-border-radius: 10%;
-moz-border-radius: 10%;
-ms-border-radius: 10%;
-o-border-radius: 10%;
}
.menu_link2:hover {
color: white;
background-color: #1832f5;
width: 100%;
animation: asgard 1s infinite alternate;
-webkit-animation: asgard 1s infinite alternate;
border-radius: 10%;
-webkit-border-radius: 10%;
-moz-border-radius: 10%;
-ms-border-radius: 10%;
-o-border-radius: 10%;
}
.menu_link3:hover {
color: white;
background-color: #fd0f0fea;
width: 100%;
animation: colecionador 1s infinite alternate;
-webkit-animation: colecionador 1s infinite alternate;
border-radius: 10%;
-webkit-border-radius: 10%;
-moz-border-radius: 10%;
-ms-border-radius: 10%;
-o-border-radius: 10%;
}
.menu_link4:hover {
color: white;
background-color: #ff9914;
width: 100%;
animation: vormir 1s infinite alternate;
-webkit-animation: vormir 1s infinite alternate;
border-radius: 10%;
-webkit-border-radius: 10%;
-moz-border-radius: 10%;
-ms-border-radius: 10%;
-o-border-radius: 10%;
}
.menu_link5:hover {
color: white;
background-color: #0aff0a;
width: 100%;
animation: tita 1s infinite alternate;
-webkit-animation: tita 1s infinite alternate;
border-radius: 10%;
-webkit-border-radius: 10%;
-moz-border-radius: 10%;
-ms-border-radius: 10%;
-o-border-radius: 10%;
}
.menu_link6:hover {
color: white;
background-color: #e4f315;
width: 100%;
animation: wankanda 1s infinite alternate;
-webkit-animation: wankanda 1s infinite alternate;
border-radius: 10%;
-webkit-border-radius: 10%;
-moz-border-radius: 10%;
-ms-border-radius: 10%;
-o-border-radius: 10%;
}
@keyframes poder {
from {
opacity: 0.3;
}
to {
opacity: 1;
}
}
@keyframes shandar {
from {
filter: none;
-webkit-filter: none;
}
to {
filter: drop-shadow(0 0 6px purple);
-webkit-filter: drop-shadow(0 0 6px purple);
}
}
@keyframes espaço {
from {
opacity: 0.3;
}
to {
opacity: 1;
}
}
@keyframes asgard {
from {
filter: none;
-webkit-filter: none;
}
to {
filter: drop-shadow(0 0 6px #1020A0);
-webkit-filter: drop-shadow(0 0 6px #1020A0);
}
}
@keyframes realidade {
from {
opacity: 0.3;
}
to {
opacity: 1;
}
}
@keyframes colecionador {
from {
filter: none;
-webkit-filter: none;
}
to {
filter: drop-shadow(0 0 6px #362134);
-webkit-filter: drop-shadow(0 0 6px #362134);
}
}
@keyframes alma {
from {
opacity: 0.3;
}
to {
opacity: 1;
}
}
@keyframes vormir {
from {
filter: none;
-webkit-filter: none;
}
to {
filter: drop-shadow(0 0 6px #271D22);
-webkit-filter: drop-shadow(0 0 6px #271D22);
}
}
@keyframes tempo {
from {
opacity: 0.3;
}
to {
opacity: 1;
}
}
@keyframes tita {
from {
filter: none;
-webkit-filter: none;
}
to {
filter: drop-shadow(0 0 6px #2A2B2A);
-webkit-filter: drop-shadow(0 0 6px #2A2B2A);
}
}
@keyframes mente {
from {
opacity: 0.3;
}
to {
opacity: 1;
}
}
@keyframes wankanda {
from {
filter: none;
-webkit-filter: none;
}
to {
filter: drop-shadow(0 0 6px #B0B1A3);
-webkit-filter: drop-shadow(0 0 6px #B0B1A3);
}
} | css/joias_menu.css | * {
padding: 0;
margin: 0;
}
.menu_link1,
.menu_link2,
.menu_link3,
.menu_link4,
.menu_link5,
.menu_link6 {
font-family: var(--font-action);
color: rgb(192, 180, 180);
font-size: 2rem;
letter-spacing: .1rem;
transition: color 1s;
-webkit-transition: color 1s;
-moz-transition: color 1s;
-ms-transition: color 1s;
-o-transition: color 1s;
}
.menu_link1:hover {
color: white;
background-color: #2e0247;
width: 100%;
animation: shandar 1s infinite alternate;
-webkit-animation: shandar 1s infinite alternate;
border-radius: 10%;
-webkit-border-radius: 10%;
-moz-border-radius: 10%;
-ms-border-radius: 10%;
-o-border-radius: 10%;
}
.menu_link2:hover {
color: white;
background-color: #1832f5;
width: 100%;
animation: asgard 1s infinite alternate;
-webkit-animation: asgard 1s infinite alternate;
border-radius: 10%;
-webkit-border-radius: 10%;
-moz-border-radius: 10%;
-ms-border-radius: 10%;
-o-border-radius: 10%;
}
.menu_link3:hover {
color: white;
background-color: #fd0f0fea;
width: 100%;
animation: colecionador 1s infinite alternate;
-webkit-animation: colecionador 1s infinite alternate;
border-radius: 10%;
-webkit-border-radius: 10%;
-moz-border-radius: 10%;
-ms-border-radius: 10%;
-o-border-radius: 10%;
}
.menu_link4:hover {
color: white;
background-color: #ff9914;
width: 100%;
animation: vormir 1s infinite alternate;
-webkit-animation: vormir 1s infinite alternate;
border-radius: 10%;
-webkit-border-radius: 10%;
-moz-border-radius: 10%;
-ms-border-radius: 10%;
-o-border-radius: 10%;
}
.menu_link5:hover {
color: white;
background-color: #0aff0a;
width: 100%;
animation: tita 1s infinite alternate;
-webkit-animation: tita 1s infinite alternate;
border-radius: 10%;
-webkit-border-radius: 10%;
-moz-border-radius: 10%;
-ms-border-radius: 10%;
-o-border-radius: 10%;
}
.menu_link6:hover {
color: white;
background-color: #e4f315;
width: 100%;
animation: wankanda 1s infinite alternate;
-webkit-animation: wankanda 1s infinite alternate;
border-radius: 10%;
-webkit-border-radius: 10%;
-moz-border-radius: 10%;
-ms-border-radius: 10%;
-o-border-radius: 10%;
}
@keyframes poder {
from {
opacity: 0.3;
}
to {
opacity: 1;
}
}
@keyframes shandar {
from {
filter: none;
-webkit-filter: none;
}
to {
filter: drop-shadow(0 0 6px purple);
-webkit-filter: drop-shadow(0 0 6px purple);
}
}
@keyframes espaço {
from {
opacity: 0.3;
}
to {
opacity: 1;
}
}
@keyframes asgard {
from {
filter: none;
-webkit-filter: none;
}
to {
filter: drop-shadow(0 0 6px #1020A0);
-webkit-filter: drop-shadow(0 0 6px #1020A0);
}
}
@keyframes realidade {
from {
opacity: 0.3;
}
to {
opacity: 1;
}
}
@keyframes colecionador {
from {
filter: none;
-webkit-filter: none;
}
to {
filter: drop-shadow(0 0 6px #362134);
-webkit-filter: drop-shadow(0 0 6px #362134);
}
}
@keyframes alma {
from {
opacity: 0.3;
}
to {
opacity: 1;
}
}
@keyframes vormir {
from {
filter: none;
-webkit-filter: none;
}
to {
filter: drop-shadow(0 0 6px #271D22);
-webkit-filter: drop-shadow(0 0 6px #271D22);
}
}
@keyframes tempo {
from {
opacity: 0.3;
}
to {
opacity: 1;
}
}
@keyframes tita {
from {
filter: none;
-webkit-filter: none;
}
to {
filter: drop-shadow(0 0 6px #2A2B2A);
-webkit-filter: drop-shadow(0 0 6px #2A2B2A);
}
}
@keyframes mente {
from {
opacity: 0.3;
}
to {
opacity: 1;
}
}
@keyframes wankanda {
from {
filter: none;
-webkit-filter: none;
}
to {
filter: drop-shadow(0 0 6px #B0B1A3);
-webkit-filter: drop-shadow(0 0 6px #B0B1A3);
}
} | 0.445771 | 0.130951 |
.home__main {
font-family: 'Piazzolla', serif;
width: 100%;
display: flex;
margin-top: 50px;
flex-direction: column;
align-items: center;
justify-content: center;
margin-right: auto;
margin-left: auto;
overflow: hidden;
}
@media (min-width:576px) {
.home__main {
max-width: 540px
}
}
@media (min-width:768px) {
.home__main {
max-width: 720px
}
}
@media (min-width:992px) {
.home__main {
max-width: 960px
}
}
@media (min-width:1200px) {
.home__main {
max-width: 1140px
}
}
.content__top {
max-width: 80%;
text-align: center;
font-family: 'Poppins', sans-serif;
}
.content__top p {
font-weight: 400;
}
.content__about {
margin-top: 50px;
display: flex;
justify-content: space-between;
}
.about__image {
width: 50%;
height: 100%;
}
.about__image img {
width: 410px;
height: 550px;
object-fit: cover;
filter: brightness(70%);
}
.about__article {
width: 50%;
display: flex;
flex-direction: column;
justify-content: center;
text-align: left;
padding: 20px;
margin-top: 40px;
}
.about__article h3 {
font-size: 2rem;
font-family: 'Poppins', sans-serif;
font-weight: 700;
}
.about__article>* {
margin-bottom: 30px;
font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 768px) {
.content__about {
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.about__image {
width: 50%;
min-width: 768px;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.about__article {
width: 100%;
text-align: center;
}
.about__article>p:nth-child(2) {
font-size: 14px;
display: none;
}
}
@media screen and (max-width: 990px) {
.content__about {
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.about__image {
min-width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.about__article {
width: 100%;
text-align: center;
}
.about__article>p:nth-child(2) {
font-size: 14px;
display: none;
}
}
.potensi__box{
width: 100%;
} | resources/js/components/Pages/Home__Main.css | .home__main {
font-family: 'Piazzolla', serif;
width: 100%;
display: flex;
margin-top: 50px;
flex-direction: column;
align-items: center;
justify-content: center;
margin-right: auto;
margin-left: auto;
overflow: hidden;
}
@media (min-width:576px) {
.home__main {
max-width: 540px
}
}
@media (min-width:768px) {
.home__main {
max-width: 720px
}
}
@media (min-width:992px) {
.home__main {
max-width: 960px
}
}
@media (min-width:1200px) {
.home__main {
max-width: 1140px
}
}
.content__top {
max-width: 80%;
text-align: center;
font-family: 'Poppins', sans-serif;
}
.content__top p {
font-weight: 400;
}
.content__about {
margin-top: 50px;
display: flex;
justify-content: space-between;
}
.about__image {
width: 50%;
height: 100%;
}
.about__image img {
width: 410px;
height: 550px;
object-fit: cover;
filter: brightness(70%);
}
.about__article {
width: 50%;
display: flex;
flex-direction: column;
justify-content: center;
text-align: left;
padding: 20px;
margin-top: 40px;
}
.about__article h3 {
font-size: 2rem;
font-family: 'Poppins', sans-serif;
font-weight: 700;
}
.about__article>* {
margin-bottom: 30px;
font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 768px) {
.content__about {
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.about__image {
width: 50%;
min-width: 768px;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.about__article {
width: 100%;
text-align: center;
}
.about__article>p:nth-child(2) {
font-size: 14px;
display: none;
}
}
@media screen and (max-width: 990px) {
.content__about {
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
}
.about__image {
min-width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.about__article {
width: 100%;
text-align: center;
}
.about__article>p:nth-child(2) {
font-size: 14px;
display: none;
}
}
.potensi__box{
width: 100%;
} | 0.653459 | 0.070017 |
@font-face {
font-family: '<NAME>';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/static/fonts/hindmadurai.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Nunito';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/static/fonts/nunito.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
src: url(/static/fonts/inconsolata-extended.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
src: url(/static/fonts/inconsolata.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body { font-family: 'Nunito', sans-serif; }
button { font-family: 'Nunito', sans-serif; }
input { font-family: 'Nunito', sans-serif; }
body { background-color: rgb(245, 255, 243); }
button {
padding: 5px;
margin: 5px;
background-color: rgb(193, 251, 138);
border-radius: 5px;
border: 1px solid #ccc;
}
button:hover {
background-color: rgb(171, 255, 92);
cursor: pointer;
}
body { padding: 0; margin: 0; }
body { font-size: 100%; }
h2 { margin: 0; }
footer { font-size: 75%; }
footer a { padding: 5px; }
pre { font-family: 'Inconsolata', monospace}
#main-title {
float: left;
font-family: 'Hind Madurai', sans-serif;
font-size: 110%;
margin-top: -2px;
padding: 0 5px;
}
#main { position: fixed; top: 0px; bottom: 28px; width: 100%; overflow: auto; }
footer { position: fixed; bottom: 0px; height: 18px; left: 10px; right: 10px; }
footer { background: repeat url(/static/images/epaper.png); }
footer { outline: 1px solid #ddd; box-shadow: 1px 1px 1px 1px #ccc;}
.toast { background: repeat url(/static/images/epaper.png); }
#tabs { position: fixed; top: 0px; height: 25px; left: 261px; right: 190px; overflow: hidden; }
#doc-header { position: fixed; top: 25px; height: 56px; left: 260px; right: 203px; overflow: hidden; }
#doc-header { background: repeat url(/static/images/epaper.png); }
#doc-header { border: 1px solid #ddd; border-bottom: none; box-shadow: 1px 1px 1px 1px #ccc;}
#main-view { position: fixed; top: 80px; bottom: 27px; left: 260px; right: 203px; border: 1px solid #ddd; overflow: auto; box-shadow: 1px 1px 1px 1px #ccc;}
#main-view { background: repeat url(/static/images/epaper.png); }
#main-view { border-top: 3px solid #efe;}
#left-panel { background-color: #111; z-index: 100;}
#left-panel { background: repeat url(/static/images/epaper.png); }
#right-panel { background-color: #555; }
#right-panel { background: repeat url(/static/images/epaper.png); }
#left-panel { position: fixed; top: 18px; bottom: 26px; left: 0px; width: 250px; outline: 1px solid #ddd; overflow: auto; white-space: nowrap; box-shadow: 1px 1px 1px 1px #ccc; }
#right-panel { position: fixed; top: 204px; bottom: 26px; right: 0px; width: 193px; outline: 1px solid #ddd; overflow: auto; box-shadow: 1px 1px 1px 1px #ccc; }
#center-panel { z-index: 50; position: fixed; right: 200px; height: 100%; overflow: auto; }
#status-bar { position: fixed; left: 150px; font-size: 14px; }
#fps { position: fixed; left: 15px; font-size: 14px; }
#tabs > * { box-shadow: 1px 1px 1px 1px #ccc; }
#tabs > * { cursor: pointer; display: inline; white-space: nowrap; overflow: hidden; }
#tabs > * { font-size: 16px; padding: 5px; margin: 0px; }
#tabs > * { border-right: 1px solid #444; background: #ddd; color: #444 }
#tabs > *.selected { cursor: default; background: repeat url(/static/images/epaper.png); }
#tabs > * > span { display: inline-block; width: 222px; overflow: hidden; }
#tabs > * > a { cursor: pointer; padding: 0 2px; font-size: 14px; position: relative; top: -6px; right: -4px; }
#left-panel { font-family: 'Inconsolata', monospace; font-size: 90%; }
#left-panel pre { padding: 2px; margin: 0px; cursor: pointer; }
#left-panel .folder { font-weight: 700; }
.file.selected { background: #444; }
video {
width: 100%;
max-height: 100%;
padding: 0;
margin: 0;
}
video.preview {
cursor: pointer;
}
#more-tabs {
font-size: 90%;
background-color: #fff;
color: #222;
position: fixed;
top: 2px;
right: 205px;
padding: 0 6px;
border-radius: 8px;
display: none;
}
#offline { color: #666; }
#invited { color: #888; }
#left-panel:hover {
overflow-x: visible;
}
#left-panel > :hover {
background-color: #eee;
overflow-x: visible;
}
#context-menu {
display: none;
position: fixed;
background-color: #fff;
border: 1px solid #888;
border-radius: 5px;
font-size: 90%;
min-width: 200px;
}
#context-menu > p {
padding: 6px;
margin: 4px 0;
cursor: pointer;
}
#context-menu > p:not(.disabled):hover {
background-color: #eee;
}
#context-menu > .disabled {
cursor: default;
}
#context-menu hr {
width: 100%;
border-top: none;
border-bottom: 1px solid #eee;
margin: 0;
padding: 0;
}
.CodeMirror-simplescroll-horizontal {
height: 24px;
}
.CodeMirror-simplescroll-vertical {
width: 24px;
}
video.gallery {
width: 45%;
border-radius: 10px;
margin: 5px;
}
iframe.pdf {
width: 100%;
height: 800px;
}
.started-message p {
margin: 3px;
}
.started-message p:first-child {
margin-top: 20px;
margin-bottom: 15px;
}
.CodeMirror {
height: auto;
font-size: 20px;
font-family: "Cousine", monospace;
line-height: 28px;
}
.CodeMirror-gutter {
margin-right: 20px;
}
.cm-s-vscode-dark .CodeMirror-gutters {
background-color: #333;
}
.CodeMirror-linenumber {
margin-left: 8px;
}
.CodeMirror-lines {
margin-left: 2px;
}
.CodeMirror pre.CodeMirror-line {
margin-left: 0px;
}
.cm-s-vscode-dark .CodeMirror-cursor {
border-left: 2px solid #ffffecaa;
}
.CodeMirror {
position: fixed;
top: 80px;
bottom: 27px;
left: 261px;
right: 204px;
}
.cm-s-vscode-dark.CodeMirror {background: #222;}
#lock-icon {
font-size: 22px;
}
#right-panel button {
font-size: 22px;
}
#right-panel form[name="invite"] button {
font-size: initial;
}
canvas.audio {
width: 100%;
height: 20px;
margin-top: -4px;
}
#modal {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 500px;
max-width: 100%;
max-height: 100%;
padding: 20px;
z-index: 100;
background-color: #fff;
border: 1px solid #555;
border-radius: 3px;
box-shadow: 1px 1px 1px 1px #ccc;
}
#modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99;
background-color: rgba(245, 255, 243, 0.9);
}
#modal button.close {
float: right;
border: none;
background: #fff;
padding: 10px 15px;
margin-top: -10px;
margin-right: -10px;
}
#modal { background: repeat url(/static/images/epaper.png); }
.edit-preview {
font-size: 90%;
background-color: #222;
color: #aab;
overflow: hidden;
}
#whiteboard img {
margin-right: -21px;
}
#doc-header h2 {
display: inline-block;
padding: 15px;
font-size: 18px;
white-space: nowrap;
max-width: 100px;
}
#doc-header div {
display: inline-block;
margin: 6px;
}
#exit {
position: fixed;
font-size: 175%;
padding: 0 66px;
right: 2px;
background-color: #fee;
color: #f00;
}
#whiteboard {
position: fixed;
font-size: 125%;
padding: 0 36px;
top: 48px;
right: 2px;
background-color: #fff;
color: #444;
}
#whiteboard img {
width: 30px;
}
#whiteboard #eraser {
width: 30px;
margin: 0;
margin-left: -18px;
margin-right: 10px;
}
button[name="share-video"] {
position: fixed;
top: 122px;
font-size: 125%;
padding: 0 16px;
right: 2px;
}
button[name="share-screen"] {
position: fixed;
top: 160px;
font-size: 125%;
padding: 0 16px;
right: 2px;
}
#right-panel > div {
margin: 5px;
border-radius: 5px;
border: solid 5px #222;
background-color: #fff;
}
#right-panel [name="your-email"] {
margin: 0;
padding-left: 3px;
overflow: hidden;
white-space: nowrap;
border-bottom: solid 1px #ddd;
}
#right-panel video {
display: none;
}
#right-panel .demo {
display: none;
width: 100%;
height: 85px;
}
#right-footer {
position: fixed;
right: 35px;
}
footer > img {
position: fixed;
right: 10px;
}
#getting-started {
display: none;
} | gateway/system10k/static/app/prospero.css | @font-face {
font-family: '<NAME>';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/static/fonts/hindmadurai.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Nunito';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/static/fonts/nunito.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
src: url(/static/fonts/inconsolata-extended.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 400;
font-stretch: 100%;
src: url(/static/fonts/inconsolata.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+0590-05FF, U+20AA, U+25CC, U+FB1D-FB4F;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine-extended.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
src: url(/static/fonts/cousine.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body { font-family: 'Nunito', sans-serif; }
button { font-family: 'Nunito', sans-serif; }
input { font-family: 'Nunito', sans-serif; }
body { background-color: rgb(245, 255, 243); }
button {
padding: 5px;
margin: 5px;
background-color: rgb(193, 251, 138);
border-radius: 5px;
border: 1px solid #ccc;
}
button:hover {
background-color: rgb(171, 255, 92);
cursor: pointer;
}
body { padding: 0; margin: 0; }
body { font-size: 100%; }
h2 { margin: 0; }
footer { font-size: 75%; }
footer a { padding: 5px; }
pre { font-family: 'Inconsolata', monospace}
#main-title {
float: left;
font-family: 'Hind Madurai', sans-serif;
font-size: 110%;
margin-top: -2px;
padding: 0 5px;
}
#main { position: fixed; top: 0px; bottom: 28px; width: 100%; overflow: auto; }
footer { position: fixed; bottom: 0px; height: 18px; left: 10px; right: 10px; }
footer { background: repeat url(/static/images/epaper.png); }
footer { outline: 1px solid #ddd; box-shadow: 1px 1px 1px 1px #ccc;}
.toast { background: repeat url(/static/images/epaper.png); }
#tabs { position: fixed; top: 0px; height: 25px; left: 261px; right: 190px; overflow: hidden; }
#doc-header { position: fixed; top: 25px; height: 56px; left: 260px; right: 203px; overflow: hidden; }
#doc-header { background: repeat url(/static/images/epaper.png); }
#doc-header { border: 1px solid #ddd; border-bottom: none; box-shadow: 1px 1px 1px 1px #ccc;}
#main-view { position: fixed; top: 80px; bottom: 27px; left: 260px; right: 203px; border: 1px solid #ddd; overflow: auto; box-shadow: 1px 1px 1px 1px #ccc;}
#main-view { background: repeat url(/static/images/epaper.png); }
#main-view { border-top: 3px solid #efe;}
#left-panel { background-color: #111; z-index: 100;}
#left-panel { background: repeat url(/static/images/epaper.png); }
#right-panel { background-color: #555; }
#right-panel { background: repeat url(/static/images/epaper.png); }
#left-panel { position: fixed; top: 18px; bottom: 26px; left: 0px; width: 250px; outline: 1px solid #ddd; overflow: auto; white-space: nowrap; box-shadow: 1px 1px 1px 1px #ccc; }
#right-panel { position: fixed; top: 204px; bottom: 26px; right: 0px; width: 193px; outline: 1px solid #ddd; overflow: auto; box-shadow: 1px 1px 1px 1px #ccc; }
#center-panel { z-index: 50; position: fixed; right: 200px; height: 100%; overflow: auto; }
#status-bar { position: fixed; left: 150px; font-size: 14px; }
#fps { position: fixed; left: 15px; font-size: 14px; }
#tabs > * { box-shadow: 1px 1px 1px 1px #ccc; }
#tabs > * { cursor: pointer; display: inline; white-space: nowrap; overflow: hidden; }
#tabs > * { font-size: 16px; padding: 5px; margin: 0px; }
#tabs > * { border-right: 1px solid #444; background: #ddd; color: #444 }
#tabs > *.selected { cursor: default; background: repeat url(/static/images/epaper.png); }
#tabs > * > span { display: inline-block; width: 222px; overflow: hidden; }
#tabs > * > a { cursor: pointer; padding: 0 2px; font-size: 14px; position: relative; top: -6px; right: -4px; }
#left-panel { font-family: 'Inconsolata', monospace; font-size: 90%; }
#left-panel pre { padding: 2px; margin: 0px; cursor: pointer; }
#left-panel .folder { font-weight: 700; }
.file.selected { background: #444; }
video {
width: 100%;
max-height: 100%;
padding: 0;
margin: 0;
}
video.preview {
cursor: pointer;
}
#more-tabs {
font-size: 90%;
background-color: #fff;
color: #222;
position: fixed;
top: 2px;
right: 205px;
padding: 0 6px;
border-radius: 8px;
display: none;
}
#offline { color: #666; }
#invited { color: #888; }
#left-panel:hover {
overflow-x: visible;
}
#left-panel > :hover {
background-color: #eee;
overflow-x: visible;
}
#context-menu {
display: none;
position: fixed;
background-color: #fff;
border: 1px solid #888;
border-radius: 5px;
font-size: 90%;
min-width: 200px;
}
#context-menu > p {
padding: 6px;
margin: 4px 0;
cursor: pointer;
}
#context-menu > p:not(.disabled):hover {
background-color: #eee;
}
#context-menu > .disabled {
cursor: default;
}
#context-menu hr {
width: 100%;
border-top: none;
border-bottom: 1px solid #eee;
margin: 0;
padding: 0;
}
.CodeMirror-simplescroll-horizontal {
height: 24px;
}
.CodeMirror-simplescroll-vertical {
width: 24px;
}
video.gallery {
width: 45%;
border-radius: 10px;
margin: 5px;
}
iframe.pdf {
width: 100%;
height: 800px;
}
.started-message p {
margin: 3px;
}
.started-message p:first-child {
margin-top: 20px;
margin-bottom: 15px;
}
.CodeMirror {
height: auto;
font-size: 20px;
font-family: "Cousine", monospace;
line-height: 28px;
}
.CodeMirror-gutter {
margin-right: 20px;
}
.cm-s-vscode-dark .CodeMirror-gutters {
background-color: #333;
}
.CodeMirror-linenumber {
margin-left: 8px;
}
.CodeMirror-lines {
margin-left: 2px;
}
.CodeMirror pre.CodeMirror-line {
margin-left: 0px;
}
.cm-s-vscode-dark .CodeMirror-cursor {
border-left: 2px solid #ffffecaa;
}
.CodeMirror {
position: fixed;
top: 80px;
bottom: 27px;
left: 261px;
right: 204px;
}
.cm-s-vscode-dark.CodeMirror {background: #222;}
#lock-icon {
font-size: 22px;
}
#right-panel button {
font-size: 22px;
}
#right-panel form[name="invite"] button {
font-size: initial;
}
canvas.audio {
width: 100%;
height: 20px;
margin-top: -4px;
}
#modal {
display: none;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 500px;
max-width: 100%;
max-height: 100%;
padding: 20px;
z-index: 100;
background-color: #fff;
border: 1px solid #555;
border-radius: 3px;
box-shadow: 1px 1px 1px 1px #ccc;
}
#modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99;
background-color: rgba(245, 255, 243, 0.9);
}
#modal button.close {
float: right;
border: none;
background: #fff;
padding: 10px 15px;
margin-top: -10px;
margin-right: -10px;
}
#modal { background: repeat url(/static/images/epaper.png); }
.edit-preview {
font-size: 90%;
background-color: #222;
color: #aab;
overflow: hidden;
}
#whiteboard img {
margin-right: -21px;
}
#doc-header h2 {
display: inline-block;
padding: 15px;
font-size: 18px;
white-space: nowrap;
max-width: 100px;
}
#doc-header div {
display: inline-block;
margin: 6px;
}
#exit {
position: fixed;
font-size: 175%;
padding: 0 66px;
right: 2px;
background-color: #fee;
color: #f00;
}
#whiteboard {
position: fixed;
font-size: 125%;
padding: 0 36px;
top: 48px;
right: 2px;
background-color: #fff;
color: #444;
}
#whiteboard img {
width: 30px;
}
#whiteboard #eraser {
width: 30px;
margin: 0;
margin-left: -18px;
margin-right: 10px;
}
button[name="share-video"] {
position: fixed;
top: 122px;
font-size: 125%;
padding: 0 16px;
right: 2px;
}
button[name="share-screen"] {
position: fixed;
top: 160px;
font-size: 125%;
padding: 0 16px;
right: 2px;
}
#right-panel > div {
margin: 5px;
border-radius: 5px;
border: solid 5px #222;
background-color: #fff;
}
#right-panel [name="your-email"] {
margin: 0;
padding-left: 3px;
overflow: hidden;
white-space: nowrap;
border-bottom: solid 1px #ddd;
}
#right-panel video {
display: none;
}
#right-panel .demo {
display: none;
width: 100%;
height: 85px;
}
#right-footer {
position: fixed;
right: 35px;
}
footer > img {
position: fixed;
right: 10px;
}
#getting-started {
display: none;
} | 0.291485 | 0.097648 |
@def DEBUG_COLOR #f0f;
@url DEBUG_BACKGROUND_IMAGE_URL DEBUG_BACKGROUND_IMAGE_DATA;
.sc-toolbar {
display: box;
display: -webkit-box;
display: -moz-box;
position: relative;
width: 100%;
box-orient: horizontal;
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
box-pack:begin;
-webkit-box-pack:begin;
-moz-box-pack:begin;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-align: center;
-webkit-box-align: center;
-moz-box-align: center;
height: 45px;
border-top: 1px solid DEBUG_COLOR;
border-bottom: 1px solid DEBUG_COLOR;
padding: 0px;
background-image: DEBUG_BACKGROUND_IMAGE_URL;
}
.sc-toolbar > h1 {
box-flex: 1;
-webkit-box-flex: 1;
-moz-box-flex: 1;
text-align: center;
margin: 0px;
font: bold 20px/32px Helvetica, Sans-serif;
letter-spacing: -1px;
color: DEBUG_COLOR;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.sc-toolbar > h1.h2 {
font-size: 16px;
}
.sc-toolbar .sc-heading.sc-toolbar-center {
position: absolute;
top: 0;
right: 85px;
bottom: 0;
left: 85px;
line-height: 43px;
}
.sc-toolbar .sc-button {
margin: 0px 3px 0px 10px;
-webkit-margin-collapse: discard;
}
.sc-toolbar .sc-button + .sc-button {
margin: 0px 3px;
}
.sc-toolbar .sc-button:last-of-type {
margin-right: 10px;
}
.sc-button.borderedButton.nextButton { margin-right: 15px; }
.sc-toolbar.plainIconToolStrip {
box-pack: justify;
-webkit-box-pack: justify;
-moz-box-pack: justify;
}
.sc-toolbar > .sc-segmented-control {
margin: 0px 10px;
}
.sc-toolbar .sc-button.buttonSegment {
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(#92a1bf),color-stop(.25,#798aad),color-stop(.5,#6276a0),color-stop(.5,#556a97),color-stop(.75,#566c98),to(#546993))");
background-image: literal("-moz-linear-gradient(top,#92a1bf 0%,#798aad 25%,#6276a0 50%,#556a97 50%,#566c98 75%,#546993 100%)");
background-image: literal("linear-gradient(to bottom,#92a1bf 0%,#798aad 25%,#6276a0 50%,#556a97 50%,#566c98 75%,#546993 100%)");
box-shadow: 0 1px 1px #9aa5bb, 0 -1px 1px #8e96a5;
-webkit-box-shadow: 0 1px 1px #9aa5bb, 0 -1px 1px #8e96a5;
-moz-box-shadow: 0 1px 1px #9aa5bb, 0 -1px 1px #8e96a5;
border: solid 1px #54617d;
border-color: #484e59 #54617d #4c5c7a #54617d;
cursor: pointer;
margin: 0;
padding: 0px 10px;
font-size: 12px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-flex: 1;
-webkit-box-flex: 1;
-moz-box-flex: 1;
text-align: center;
color: #fff;
-webkit-tap-highlight-color: transparent;
-webkit-user-select: none;
}
.sc-toolbar .sc-button.buttonSegment.touchedButton {
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(#7d88a5),color-stop(.25,#58698c),color-stop(.5,#3a4e78),color-stop(.5,#253c6a),color-stop(.75,#273f6d),to(#273f6d))");
background-image: literal("-moz-linear-gradient(top,#7d88a5 0%,#58698c 25%,#3a4e78 50%,#253c6a 50%,#273f6d 75%,#273f6d 100%)");
-webkit-tap-highlight-color: transparent;
}
.sc-toolbar .sc-button.buttonSegment.disabled.touchedButton {
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(#92a1bf),color-stop(.25,#798aad),color-stop(.5,#6276a0),color-stop(.5,#556a97),color-stop(.75,#566c98),to(#546993))");
background-image: literal("-moz-linear-gradient(top,#92a1bf 0%,#798aad 25%,#6276a0 50%,#556a97 50%,#566c98 75%,#546993 100%)");
color: #fff;
border-color: #484e59 #54617d #4c5c7a #54617d;
}
.sc-toolbar .sc-button.buttonSegment:first-of-type {
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
border-left: solid 1px #424650;
}
.sc-toolbar .sc-button.buttonSegment:last-of-type {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
.sc-toolbar.customTintedToolStrip {
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,.5)),color-stop(.5,rgba(30,30,30,.5)),color-stop(.5,rgba(0,0,0,.5)),to(rgba(0,0,0,.45)))");
background-image: literal("-moz-linear-gradient(top,rgba(255,255,255,.5)0%,rgba(30,30,30,.5)50%,rgba(0,0,0,.5)50%,rgba(0,0,0,.45)100%)");
border-top: 1px solid #878788;
border-bottom: 1px solid #2c2c2c;
}
.sc-navstack > .sc-navigationbar + .sc-layout-vbox .sc-toolbar.customTintedToolStrip { border-top-width: 0; }
.sc-button.buttonSegment.customTintedButton,
.sc-button.buttonSegment.customTintedButton.disabled.touchedButton {
border: solid 1px #484e59;
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,.5)),color-stop(.5,rgba(30,30,30,.5)),color-stop(.5,rgba(0,0,0,.5)),to(rgba(0,0,0,.5)))");
background-image: literal("-moz-linear-gradient(top,rgba(255,255,255,.5)0%,rgba(30,30,30,.5)50%,rgba(0,0,0,.5)50%,rgba(0,0,0,.5)100%)");
color: #fff;
}
.sc-button.buttonSegment.customTintedButton.touchedButton {
border: solid 1px #484e59;
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.35)),color-stop(.5,rgba(0,0,0,.35)),color-stop(.5,rgba(50,50,50,.35)),to(rgba(255,255,255,.35)))");
background-image: literal("-moz-linear-gradient(top,rgba(0,0,0,.35)0%,rgba(0,0,0,.35)50%,rgba(50,50,50,.35)50%,rgba(255,255,255,.35)100%)");
color: #fff;
}
@if user.agent gecko1_8 {
.sc-toolbar.pickerToolbar {
background-image: literal("-moz-linear-gradient(top,rgba(0,0,0,.4)0%,rgba(0,0,0,.55)50%,rgba(0,0,0,.6)50%)");
-moz-box-pack: justify;
}
} @else {
.sc-toolbar.pickerToolbar {
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.4)),color-stop(.5,rgba(0,0,0,.55)),color-stop(.5,rgba(0,0,0,.6)))");
-webkit-box-pack: justify;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
}
@if user.agent android {
.sc-toolbar.pickerToolbar {
-webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25);
}
}
.sc-toolbar.pickerToolbar {
position: absolute;
bottom: 215px;
border-top-color: #484848;
border-bottom: 1px solid #313945;
background-image: literal("linear-gradient(to bottom,rgba(0,0,0,.4)0%,rgba(0,0,0,.55)50%,rgba(0,0,0,.6)50%)");
box-pack: justify;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
@if user.agent gecko1_8 {
} @else {
.pickerToolbar > .sc-button.borderedButton {
-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 1px 0 #8c8c8c;
}
}
@if user.agent android {
.pickerToolbar > .sc-button.borderedButton {
-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2), 0 1px 1px #8c8c8c;
}
}
.pickerToolbar > .sc-button.borderedButton {
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 1px 0 #8c8c8c;
} | mobile/src/main/java/com/smartgwt/mobile/client/internal/theme/ios/toolbar.gwt.css | @def DEBUG_COLOR #f0f;
@url DEBUG_BACKGROUND_IMAGE_URL DEBUG_BACKGROUND_IMAGE_DATA;
.sc-toolbar {
display: box;
display: -webkit-box;
display: -moz-box;
position: relative;
width: 100%;
box-orient: horizontal;
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
box-pack:begin;
-webkit-box-pack:begin;
-moz-box-pack:begin;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-align: center;
-webkit-box-align: center;
-moz-box-align: center;
height: 45px;
border-top: 1px solid DEBUG_COLOR;
border-bottom: 1px solid DEBUG_COLOR;
padding: 0px;
background-image: DEBUG_BACKGROUND_IMAGE_URL;
}
.sc-toolbar > h1 {
box-flex: 1;
-webkit-box-flex: 1;
-moz-box-flex: 1;
text-align: center;
margin: 0px;
font: bold 20px/32px Helvetica, Sans-serif;
letter-spacing: -1px;
color: DEBUG_COLOR;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
.sc-toolbar > h1.h2 {
font-size: 16px;
}
.sc-toolbar .sc-heading.sc-toolbar-center {
position: absolute;
top: 0;
right: 85px;
bottom: 0;
left: 85px;
line-height: 43px;
}
.sc-toolbar .sc-button {
margin: 0px 3px 0px 10px;
-webkit-margin-collapse: discard;
}
.sc-toolbar .sc-button + .sc-button {
margin: 0px 3px;
}
.sc-toolbar .sc-button:last-of-type {
margin-right: 10px;
}
.sc-button.borderedButton.nextButton { margin-right: 15px; }
.sc-toolbar.plainIconToolStrip {
box-pack: justify;
-webkit-box-pack: justify;
-moz-box-pack: justify;
}
.sc-toolbar > .sc-segmented-control {
margin: 0px 10px;
}
.sc-toolbar .sc-button.buttonSegment {
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(#92a1bf),color-stop(.25,#798aad),color-stop(.5,#6276a0),color-stop(.5,#556a97),color-stop(.75,#566c98),to(#546993))");
background-image: literal("-moz-linear-gradient(top,#92a1bf 0%,#798aad 25%,#6276a0 50%,#556a97 50%,#566c98 75%,#546993 100%)");
background-image: literal("linear-gradient(to bottom,#92a1bf 0%,#798aad 25%,#6276a0 50%,#556a97 50%,#566c98 75%,#546993 100%)");
box-shadow: 0 1px 1px #9aa5bb, 0 -1px 1px #8e96a5;
-webkit-box-shadow: 0 1px 1px #9aa5bb, 0 -1px 1px #8e96a5;
-moz-box-shadow: 0 1px 1px #9aa5bb, 0 -1px 1px #8e96a5;
border: solid 1px #54617d;
border-color: #484e59 #54617d #4c5c7a #54617d;
cursor: pointer;
margin: 0;
padding: 0px 10px;
font-size: 12px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-flex: 1;
-webkit-box-flex: 1;
-moz-box-flex: 1;
text-align: center;
color: #fff;
-webkit-tap-highlight-color: transparent;
-webkit-user-select: none;
}
.sc-toolbar .sc-button.buttonSegment.touchedButton {
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(#7d88a5),color-stop(.25,#58698c),color-stop(.5,#3a4e78),color-stop(.5,#253c6a),color-stop(.75,#273f6d),to(#273f6d))");
background-image: literal("-moz-linear-gradient(top,#7d88a5 0%,#58698c 25%,#3a4e78 50%,#253c6a 50%,#273f6d 75%,#273f6d 100%)");
-webkit-tap-highlight-color: transparent;
}
.sc-toolbar .sc-button.buttonSegment.disabled.touchedButton {
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(#92a1bf),color-stop(.25,#798aad),color-stop(.5,#6276a0),color-stop(.5,#556a97),color-stop(.75,#566c98),to(#546993))");
background-image: literal("-moz-linear-gradient(top,#92a1bf 0%,#798aad 25%,#6276a0 50%,#556a97 50%,#566c98 75%,#546993 100%)");
color: #fff;
border-color: #484e59 #54617d #4c5c7a #54617d;
}
.sc-toolbar .sc-button.buttonSegment:first-of-type {
border-top-left-radius: 6px;
border-bottom-left-radius: 6px;
border-left: solid 1px #424650;
}
.sc-toolbar .sc-button.buttonSegment:last-of-type {
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
}
.sc-toolbar.customTintedToolStrip {
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,.5)),color-stop(.5,rgba(30,30,30,.5)),color-stop(.5,rgba(0,0,0,.5)),to(rgba(0,0,0,.45)))");
background-image: literal("-moz-linear-gradient(top,rgba(255,255,255,.5)0%,rgba(30,30,30,.5)50%,rgba(0,0,0,.5)50%,rgba(0,0,0,.45)100%)");
border-top: 1px solid #878788;
border-bottom: 1px solid #2c2c2c;
}
.sc-navstack > .sc-navigationbar + .sc-layout-vbox .sc-toolbar.customTintedToolStrip { border-top-width: 0; }
.sc-button.buttonSegment.customTintedButton,
.sc-button.buttonSegment.customTintedButton.disabled.touchedButton {
border: solid 1px #484e59;
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(rgba(255,255,255,.5)),color-stop(.5,rgba(30,30,30,.5)),color-stop(.5,rgba(0,0,0,.5)),to(rgba(0,0,0,.5)))");
background-image: literal("-moz-linear-gradient(top,rgba(255,255,255,.5)0%,rgba(30,30,30,.5)50%,rgba(0,0,0,.5)50%,rgba(0,0,0,.5)100%)");
color: #fff;
}
.sc-button.buttonSegment.customTintedButton.touchedButton {
border: solid 1px #484e59;
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.35)),color-stop(.5,rgba(0,0,0,.35)),color-stop(.5,rgba(50,50,50,.35)),to(rgba(255,255,255,.35)))");
background-image: literal("-moz-linear-gradient(top,rgba(0,0,0,.35)0%,rgba(0,0,0,.35)50%,rgba(50,50,50,.35)50%,rgba(255,255,255,.35)100%)");
color: #fff;
}
@if user.agent gecko1_8 {
.sc-toolbar.pickerToolbar {
background-image: literal("-moz-linear-gradient(top,rgba(0,0,0,.4)0%,rgba(0,0,0,.55)50%,rgba(0,0,0,.6)50%)");
-moz-box-pack: justify;
}
} @else {
.sc-toolbar.pickerToolbar {
background-image: literal("-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.4)),color-stop(.5,rgba(0,0,0,.55)),color-stop(.5,rgba(0,0,0,.6)))");
-webkit-box-pack: justify;
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
}
@if user.agent android {
.sc-toolbar.pickerToolbar {
-webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25);
}
}
.sc-toolbar.pickerToolbar {
position: absolute;
bottom: 215px;
border-top-color: #484848;
border-bottom: 1px solid #313945;
background-image: literal("linear-gradient(to bottom,rgba(0,0,0,.4)0%,rgba(0,0,0,.55)50%,rgba(0,0,0,.6)50%)");
box-pack: justify;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
@if user.agent gecko1_8 {
} @else {
.pickerToolbar > .sc-button.borderedButton {
-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 1px 0 #8c8c8c;
}
}
@if user.agent android {
.pickerToolbar > .sc-button.borderedButton {
-webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2), 0 1px 1px #8c8c8c;
}
}
.pickerToolbar > .sc-button.borderedButton {
box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), 0 1px 0 #8c8c8c;
} | 0.26923 | 0.067087 |
{
min-height: 100vh;
background: #102626;
}
#landing_page h1{
color: white;
text-align: center;
margin-top: 0px;
margin-bottom: 50px;
font-size: 35px;
}
.container_land{
width: 100%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
-webkit-box-reflect: below 1px linear-gradient(#0001,#0004)
}
.container_land .loader{
position: relative;
width: 200px;
height: 200px;
border-radius: 50%;
background: #0d2323;
animation: animate 2s linear infinite;
}
@keyframes animate{
0%
{
transform: rotate(0deg);
}
100%
{
transform: rotate(360deg);
}
}
.container_land .loader::before
{
content: '';
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
background: linear-gradient(to top,transparent, rgba(0,255,249,0.4));
background-size: 100px 180px;
background-repeat: no-repeat;
border-top-left-radius: 100px;
border-bottom-left-radius: 100px;
}
.container_land .loader::after{
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%);
width: 20px;
height: 20px;
background: #00fff9;
border-radius: 50%;
z-index: 10;
box-shadow: 0 0 10px #00fff9,
0 0 20px #00fff9,
0 0 30px #00fff9,
0 0 40px #00fff9,
0 0 50px #00fff9,
0 0 60px #00fff9,
0 0 70px #00fff9,
0 0 80px #00fff9,
0 0 90px #00fff9,
0 0 100px #00fff9;
}
.container_land .loader span{
position: absolute;
top: 20px;
left: 20px;
right: 20px;
bottom: 20px;
background: #102626;
border-radius: 50%;
}
.buttons{
display: flex;
justify-content: space-evenly;
margin-top: 17em;
}
.button-click{
font-size: 20px;
padding-left: 50px;
padding-right: 50px;
background-color: rgba(0, 231, 212, 0.896);
border-radius: 20px;
transition: ease-in .4s;
box-shadow: 0px 5px 30px;
}
.button-click:hover
{
transform: scale(1.15);
}
/* Mobile View */
@media only screen and (max-width: 768px)
{
.buttons{
display: none;
}
} | CSS/landing_page.css | {
min-height: 100vh;
background: #102626;
}
#landing_page h1{
color: white;
text-align: center;
margin-top: 0px;
margin-bottom: 50px;
font-size: 35px;
}
.container_land{
width: 100%;
position: relative;
display: flex;
justify-content: center;
align-items: center;
-webkit-box-reflect: below 1px linear-gradient(#0001,#0004)
}
.container_land .loader{
position: relative;
width: 200px;
height: 200px;
border-radius: 50%;
background: #0d2323;
animation: animate 2s linear infinite;
}
@keyframes animate{
0%
{
transform: rotate(0deg);
}
100%
{
transform: rotate(360deg);
}
}
.container_land .loader::before
{
content: '';
position: absolute;
top: 0;
left: 0;
width: 50%;
height: 100%;
background: linear-gradient(to top,transparent, rgba(0,255,249,0.4));
background-size: 100px 180px;
background-repeat: no-repeat;
border-top-left-radius: 100px;
border-bottom-left-radius: 100px;
}
.container_land .loader::after{
content: '';
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%);
width: 20px;
height: 20px;
background: #00fff9;
border-radius: 50%;
z-index: 10;
box-shadow: 0 0 10px #00fff9,
0 0 20px #00fff9,
0 0 30px #00fff9,
0 0 40px #00fff9,
0 0 50px #00fff9,
0 0 60px #00fff9,
0 0 70px #00fff9,
0 0 80px #00fff9,
0 0 90px #00fff9,
0 0 100px #00fff9;
}
.container_land .loader span{
position: absolute;
top: 20px;
left: 20px;
right: 20px;
bottom: 20px;
background: #102626;
border-radius: 50%;
}
.buttons{
display: flex;
justify-content: space-evenly;
margin-top: 17em;
}
.button-click{
font-size: 20px;
padding-left: 50px;
padding-right: 50px;
background-color: rgba(0, 231, 212, 0.896);
border-radius: 20px;
transition: ease-in .4s;
box-shadow: 0px 5px 30px;
}
.button-click:hover
{
transform: scale(1.15);
}
/* Mobile View */
@media only screen and (max-width: 768px)
{
.buttons{
display: none;
}
} | 0.450601 | 0.085061 |
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.wrapper {
width: 1110px;
margin: 0 auto;
}
img{
max-width: 100%;
height: auto;
display: block;
}
.text-header {
margin: 0 0 113px 0;
padding-top: 40px;
}
.logo {
float: left;
font-family: 'Roboto', sans-serif;
color: #555252;
text-transform: uppercase;
font-weight: 300;
text-decoration: none;
margin: 0;
display:block;
}
.header-nav {
float: right;
margin-top:8px;
}
h1 {
font-size: 30px;
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size: 30px;
color: #555252;
}
.name::first-letter {
font-family: 'Roboto', sans-serif;
color:#1abc9c;
font-size: 30px;
font-weight: 900;
text-transform: uppercase;
}
.name::first-line {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size: 30px;
color: #555252;
}
h1{
margin:0 0 0 0;
}
.list_one {
list-style: none;
float: left;
/* margin: 0 30px 0 0; */
}
/*
.list_one:last-child {
margin: 0 0 0 0px;
} */
.list_one:not(:last-child){
margin: 0 30px 0 0;
}
.nav-link {
text-decoration: none;
color: #0f0101;
font-size: 14px;
line-height: 11px;
font-family: 'Open Sans', sans-serif;
font-weight: 700;
text-transform: uppercase;
}
.nav-link:hover{
color: #1abc9c
}
.clearfix::after {
content: "";
display: table;
clear: both;
}
.section-title {
font-size: 48px;
text-align: center;
font-family: 'Roboto', sans-serif;
font-weight: 900;
line-height: 32px;
text-transform: uppercase;
color: #515151;
margin-bottom: 133px;
}
.section-title::after{
content:"";
border-bottom: 7px solid #1abc9c;
display:block;
margin: 0 auto;
margin-top: 32px;
width: 164px ;
}
.image {
display: block;
height: auto;
max-width: 100%;
transition: 0.2s;
}
.image:hover {
transform: scale(1.2);
}
.featured-photo {
list-style: none;
float:left;
width: 255px ;
background-color: #e9f0fd;
}
.featured-photo:not(:nth-child(4n)){
margin-right: 30px;
}
.featured-photo:not(:nth-last-child(-n+4)) {
margin-bottom: 30px;
}
.title-name {
background: #323232;
padding-left: 14px;
font-family: 'Roboto', sans-serif;
font-weight: 900;
transition: .2s;
}
.featured-photo:hover .title-name {
background-color: #1abc9c;
cursor: pointer;
}
.imet-title {
float:left;
text-transform: uppercase;
font-size: 18px;
line-height: 40px;
font-weight: 900;
height: 40px;
color: #ffffff;
margin: 0 auto;
}
.price-title {
float: right;
text-transform: uppercase;
font-size: 18px;
line-height: 40px;
font-weight: 900;
width: 54px;
height: 40px;
color: #ffffff;
background: rgba(255, 255, 255, 0.44) ;
text-align: center;
}
.title {
margin-bottom: 105px;
}
.news {
margin-bottom: 80px;
}
.section-news {
font-size: 48px;
text-align: center;
font-family: 'Roboto', sans-serif;
font-weight: 900;
line-height: 32px;
text-transform: uppercase;
color: #515151;
margin-bottom: 133px;
}
.section-news::after{
content:"";
border-bottom: 7px solid #1abc9c;
display:block;
margin: 0 auto;
margin-top: 32px;
width: 164px ;
}
.news-article__item {
float:left;
list-style: none;
width: 350px;
}
.image1 {
margin: 0 0 18px 0;
}
.news-article__item:not(:nth-child(3n)){
margin-right: 30px;
}
.news-article__item:not(:nth-last-child(-n+3)) {
margin-bottom: 30px;
}
.lorem {
font-size: 18px;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
line-height: 26px;
margin-bottom: 32px;
}
.lorem::after{
content:"";
border-bottom: 3px solid #1abc9c;
display:block;
margin: 0;
margin-top: 15px;
width: 136px ;
}
.article-text {
font-size: 14px;
font-family: 'Open Sans', sans-serif;
line-height: 26px;
padding: 0;
margin: 0 0 19px 0;
}
.read {
display:inline-block;
min-height: 51px;
min-width: 159px;
text-decoration: none;
border:none;
text-align:center;
color:#e9f0fd;
font-family: 'Open Sans', sans-serif;
font-weight: 300;
font-size: 16px;
background-color: #4ec6ab;
cursor: pointer;
border-radius: 3px;
line-height: 51px;
}
.read:hover {
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.39);
}
.read{
color:
rgb(0, 255, 0); | html-css/home_work4/css/style.css | *{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.wrapper {
width: 1110px;
margin: 0 auto;
}
img{
max-width: 100%;
height: auto;
display: block;
}
.text-header {
margin: 0 0 113px 0;
padding-top: 40px;
}
.logo {
float: left;
font-family: 'Roboto', sans-serif;
color: #555252;
text-transform: uppercase;
font-weight: 300;
text-decoration: none;
margin: 0;
display:block;
}
.header-nav {
float: right;
margin-top:8px;
}
h1 {
font-size: 30px;
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size: 30px;
color: #555252;
}
.name::first-letter {
font-family: 'Roboto', sans-serif;
color:#1abc9c;
font-size: 30px;
font-weight: 900;
text-transform: uppercase;
}
.name::first-line {
font-family: 'Roboto', sans-serif;
font-weight: 300;
font-size: 30px;
color: #555252;
}
h1{
margin:0 0 0 0;
}
.list_one {
list-style: none;
float: left;
/* margin: 0 30px 0 0; */
}
/*
.list_one:last-child {
margin: 0 0 0 0px;
} */
.list_one:not(:last-child){
margin: 0 30px 0 0;
}
.nav-link {
text-decoration: none;
color: #0f0101;
font-size: 14px;
line-height: 11px;
font-family: 'Open Sans', sans-serif;
font-weight: 700;
text-transform: uppercase;
}
.nav-link:hover{
color: #1abc9c
}
.clearfix::after {
content: "";
display: table;
clear: both;
}
.section-title {
font-size: 48px;
text-align: center;
font-family: 'Roboto', sans-serif;
font-weight: 900;
line-height: 32px;
text-transform: uppercase;
color: #515151;
margin-bottom: 133px;
}
.section-title::after{
content:"";
border-bottom: 7px solid #1abc9c;
display:block;
margin: 0 auto;
margin-top: 32px;
width: 164px ;
}
.image {
display: block;
height: auto;
max-width: 100%;
transition: 0.2s;
}
.image:hover {
transform: scale(1.2);
}
.featured-photo {
list-style: none;
float:left;
width: 255px ;
background-color: #e9f0fd;
}
.featured-photo:not(:nth-child(4n)){
margin-right: 30px;
}
.featured-photo:not(:nth-last-child(-n+4)) {
margin-bottom: 30px;
}
.title-name {
background: #323232;
padding-left: 14px;
font-family: 'Roboto', sans-serif;
font-weight: 900;
transition: .2s;
}
.featured-photo:hover .title-name {
background-color: #1abc9c;
cursor: pointer;
}
.imet-title {
float:left;
text-transform: uppercase;
font-size: 18px;
line-height: 40px;
font-weight: 900;
height: 40px;
color: #ffffff;
margin: 0 auto;
}
.price-title {
float: right;
text-transform: uppercase;
font-size: 18px;
line-height: 40px;
font-weight: 900;
width: 54px;
height: 40px;
color: #ffffff;
background: rgba(255, 255, 255, 0.44) ;
text-align: center;
}
.title {
margin-bottom: 105px;
}
.news {
margin-bottom: 80px;
}
.section-news {
font-size: 48px;
text-align: center;
font-family: 'Roboto', sans-serif;
font-weight: 900;
line-height: 32px;
text-transform: uppercase;
color: #515151;
margin-bottom: 133px;
}
.section-news::after{
content:"";
border-bottom: 7px solid #1abc9c;
display:block;
margin: 0 auto;
margin-top: 32px;
width: 164px ;
}
.news-article__item {
float:left;
list-style: none;
width: 350px;
}
.image1 {
margin: 0 0 18px 0;
}
.news-article__item:not(:nth-child(3n)){
margin-right: 30px;
}
.news-article__item:not(:nth-last-child(-n+3)) {
margin-bottom: 30px;
}
.lorem {
font-size: 18px;
font-family: 'Open Sans', sans-serif;
font-weight: 600;
line-height: 26px;
margin-bottom: 32px;
}
.lorem::after{
content:"";
border-bottom: 3px solid #1abc9c;
display:block;
margin: 0;
margin-top: 15px;
width: 136px ;
}
.article-text {
font-size: 14px;
font-family: 'Open Sans', sans-serif;
line-height: 26px;
padding: 0;
margin: 0 0 19px 0;
}
.read {
display:inline-block;
min-height: 51px;
min-width: 159px;
text-decoration: none;
border:none;
text-align:center;
color:#e9f0fd;
font-family: 'Open Sans', sans-serif;
font-weight: 300;
font-size: 16px;
background-color: #4ec6ab;
cursor: pointer;
border-radius: 3px;
line-height: 51px;
}
.read:hover {
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.39);
}
.read{
color:
rgb(0, 255, 0); | 0.309545 | 0.067516 |
body
{
background-color: initial;
background-color: white;
}
h1,h2,h3,h4,h5,h6
{
text-align: center;
}
p
{
text-align: center;
font-size: 1.5em;
}
.italic-little
{
font-style: italic;
font-size: 0.8em;
}
.bold
{
font-weight: bold;
}
.not-aligned h1,
.not-aligned h2,
.not-aligned h3,
.not-aligned h4,
.not-aligned h5,
.not-aligned h6,
.not-aligned p
{
text-align: left;
}
.gold
{
color: gold;
}
.oldGold
{
color: goldenrod;
}
a:hover
{
color: gold;
text-decoration: none;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover
{
color: gold;
}
.navbar-default .navbar-nav>li>a:hover
{
color: gold;
}
.left
{
left: 0;
}
/***
* Header
***/
h1
{
border-bottom: 3px solid black;
padding-bottom: 20px;
}
#header
{
height: 94vh;
margin-top: -70px;
position: relative;
}
#logo-large img
{
position: absolute;
top: 12%;
left: 15%;
height: 200px;
}
#titles
{
width: 100%;
text-align: center;
color: white;
position: absolute;
left: 0px;
bottom: 20px;
}
#title
{
margin-top: 400px;
}
#desktop-image
{
height: 100%;
}
#desktop-image img
{
max-height: 1200px;
height:100%;
width: 100%;
}
#facebook-logo
{
color:white;
}
.rent-it-mobile
{
position: absolute;
bottom: 0px;
left:0;
background-color: #424242;
width: 100%;
padding: 30px 0px;
box-shadow: 0px -2px 20px 0px black;
}
.rent-it
{
position: absolute;
bottom: 0px;
left:0;
background-color: #424242;
width: 100%;
padding: 30px 0px;
box-shadow: 0px -2px 20px 0px black;
}
#desktop-form
{
background-color: rgba(50,50,50,0.5);
border-radius: 10px 10px 10px 10px;
}
#form-input-group
{
padding: 40px 25px;
}
#form-input-group input,
#form-input-group select
{
height: 50px;
margin-bottom: 5px;
}
#form-input-group placeholder
{
line-height: 50px;
}
#form-button-container
{
margin-top: 20px;
}
/***
* End Header
***/
/***
* Home Page
***/
.section
{
border-bottom: 1px silver solid;
padding: 50px 0px;
}
.cta-container
{
padding: 50px 0;
}
#marketing-figures
{
margin-bottom: 100px;
}
#marketing-figures h2
{
margin-bottom: 50px;
}
#marketing-figures p
{
font-size: 2em;
}
.earnings
{
color: gold;
font-weight: bold;
}
.benefits img
{
width: 100%;
height: 220px;
}
.prices
{
border-bottom: 1px silver solid;
}
.bubble
{
text-align:center;
border-radius: 50px;
width: 68px;
padding: 20px;
margin-left: 40%;
}
.second-screen
{
background-color: white;
}
.navbar-default
{
border-color: initial;
}
.navbar-brand
{
color: white;
}
#beta-version
{
background-color: rgba(40,40,40,.9);
color: white;
transform: rotate(-38deg);
position: absolute;
top: 35px;
left: -85px;
padding: 5px 90px;
}
.google-maps
{
width: 400px;
height: 450px;
border:0;
}
footer a
{
color: white;
}
footer h5
{
font-size: 1.2em;
}
.scooter-img
{
width: 550px;
height: 400px;
}
.scooter-show
{
height: 645px;
}
.next,
.previous
{
top: 300px;
}
@-webkit-keyframes shaker {
0% { -webkit-transform: translate(0,0); transform: scale(1);}
50% { -webkit-transform: translate(0,0px); transform: scale(1);}
52% { -webkit-transform: translate(0,2px); transform: scale(0.9);}
54% { -webkit-transform: translate(0,-2px); transform: scale(1.1);}
56% { -webkit-transform: translate(0, 0); transform: scale(1);}
100%{ -webkit-transform: translate(0, 0); transform: scale(1);}
}
.button-bounce {
animation-name: shaker;
animation-duration: 5s;
animation-iteration-count: infinite;
transform-origin:50% 50%;
animation-timing-function: linear;
}
#facebook-buttons
{
position: absolute;
top: 50px;
background-color: #424242;
right: 0px;
padding: 20px;
border-radius: 0px 0px 0px 10px;
}
#facebook-logo
{
margin-right: 20px;
}
#like-share
{
top: -5px;
}
@media screen and (max-width:767px)
{
/***
* Generals
***/
p
{
font-size: 1em;
}
/***
* Mobile Header
***/
#desktop-image img
{
width: 100%;
height: 60%;
}
#desktop-form
{
background-color: rgba(50,50,50,1);
}
#facebook-logo
{
margin-right: 10px;
}
#like-share
{
right: -6px;
}
.input-container-right
{
padding-right: 0;
}
.input-container-left
{
padding-left: 0;
}
.input-container
{
padding: 0;
}
.input-container label
{
color: white;
}
.date-input
{
margin-top: 10px;
}
.rent-scooter
{
margin-left: -35px;
margin-top: 25px;
}
/***
* End Mobile Header
***/
.cta-container a
{
font-size: 0.8em;
}
.scooter-img
{
width: 290px;
height: 180px;
}
.scooter-show
{
height: initial;
}
.next,
.previous
{
top: 80px;
}
.fb-like
{
right: -368px;
}
} | public/css/app.css | body
{
background-color: initial;
background-color: white;
}
h1,h2,h3,h4,h5,h6
{
text-align: center;
}
p
{
text-align: center;
font-size: 1.5em;
}
.italic-little
{
font-style: italic;
font-size: 0.8em;
}
.bold
{
font-weight: bold;
}
.not-aligned h1,
.not-aligned h2,
.not-aligned h3,
.not-aligned h4,
.not-aligned h5,
.not-aligned h6,
.not-aligned p
{
text-align: left;
}
.gold
{
color: gold;
}
.oldGold
{
color: goldenrod;
}
a:hover
{
color: gold;
text-decoration: none;
}
.navbar-default .navbar-nav>li>a:focus, .navbar-default .navbar-nav>li>a:hover
{
color: gold;
}
.navbar-default .navbar-nav>li>a:hover
{
color: gold;
}
.left
{
left: 0;
}
/***
* Header
***/
h1
{
border-bottom: 3px solid black;
padding-bottom: 20px;
}
#header
{
height: 94vh;
margin-top: -70px;
position: relative;
}
#logo-large img
{
position: absolute;
top: 12%;
left: 15%;
height: 200px;
}
#titles
{
width: 100%;
text-align: center;
color: white;
position: absolute;
left: 0px;
bottom: 20px;
}
#title
{
margin-top: 400px;
}
#desktop-image
{
height: 100%;
}
#desktop-image img
{
max-height: 1200px;
height:100%;
width: 100%;
}
#facebook-logo
{
color:white;
}
.rent-it-mobile
{
position: absolute;
bottom: 0px;
left:0;
background-color: #424242;
width: 100%;
padding: 30px 0px;
box-shadow: 0px -2px 20px 0px black;
}
.rent-it
{
position: absolute;
bottom: 0px;
left:0;
background-color: #424242;
width: 100%;
padding: 30px 0px;
box-shadow: 0px -2px 20px 0px black;
}
#desktop-form
{
background-color: rgba(50,50,50,0.5);
border-radius: 10px 10px 10px 10px;
}
#form-input-group
{
padding: 40px 25px;
}
#form-input-group input,
#form-input-group select
{
height: 50px;
margin-bottom: 5px;
}
#form-input-group placeholder
{
line-height: 50px;
}
#form-button-container
{
margin-top: 20px;
}
/***
* End Header
***/
/***
* Home Page
***/
.section
{
border-bottom: 1px silver solid;
padding: 50px 0px;
}
.cta-container
{
padding: 50px 0;
}
#marketing-figures
{
margin-bottom: 100px;
}
#marketing-figures h2
{
margin-bottom: 50px;
}
#marketing-figures p
{
font-size: 2em;
}
.earnings
{
color: gold;
font-weight: bold;
}
.benefits img
{
width: 100%;
height: 220px;
}
.prices
{
border-bottom: 1px silver solid;
}
.bubble
{
text-align:center;
border-radius: 50px;
width: 68px;
padding: 20px;
margin-left: 40%;
}
.second-screen
{
background-color: white;
}
.navbar-default
{
border-color: initial;
}
.navbar-brand
{
color: white;
}
#beta-version
{
background-color: rgba(40,40,40,.9);
color: white;
transform: rotate(-38deg);
position: absolute;
top: 35px;
left: -85px;
padding: 5px 90px;
}
.google-maps
{
width: 400px;
height: 450px;
border:0;
}
footer a
{
color: white;
}
footer h5
{
font-size: 1.2em;
}
.scooter-img
{
width: 550px;
height: 400px;
}
.scooter-show
{
height: 645px;
}
.next,
.previous
{
top: 300px;
}
@-webkit-keyframes shaker {
0% { -webkit-transform: translate(0,0); transform: scale(1);}
50% { -webkit-transform: translate(0,0px); transform: scale(1);}
52% { -webkit-transform: translate(0,2px); transform: scale(0.9);}
54% { -webkit-transform: translate(0,-2px); transform: scale(1.1);}
56% { -webkit-transform: translate(0, 0); transform: scale(1);}
100%{ -webkit-transform: translate(0, 0); transform: scale(1);}
}
.button-bounce {
animation-name: shaker;
animation-duration: 5s;
animation-iteration-count: infinite;
transform-origin:50% 50%;
animation-timing-function: linear;
}
#facebook-buttons
{
position: absolute;
top: 50px;
background-color: #424242;
right: 0px;
padding: 20px;
border-radius: 0px 0px 0px 10px;
}
#facebook-logo
{
margin-right: 20px;
}
#like-share
{
top: -5px;
}
@media screen and (max-width:767px)
{
/***
* Generals
***/
p
{
font-size: 1em;
}
/***
* Mobile Header
***/
#desktop-image img
{
width: 100%;
height: 60%;
}
#desktop-form
{
background-color: rgba(50,50,50,1);
}
#facebook-logo
{
margin-right: 10px;
}
#like-share
{
right: -6px;
}
.input-container-right
{
padding-right: 0;
}
.input-container-left
{
padding-left: 0;
}
.input-container
{
padding: 0;
}
.input-container label
{
color: white;
}
.date-input
{
margin-top: 10px;
}
.rent-scooter
{
margin-left: -35px;
margin-top: 25px;
}
/***
* End Mobile Header
***/
.cta-container a
{
font-size: 0.8em;
}
.scooter-img
{
width: 290px;
height: 180px;
}
.scooter-show
{
height: initial;
}
.next,
.previous
{
top: 80px;
}
.fb-like
{
right: -368px;
}
} | 0.409103 | 0.09739 |
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,800,900&subset=cyrillic");
@import url("../fonts/intro/font.css");
@font-face {
font-family: Monsterrat;
src: url(../fonts/montserrat/Montserrat-Light.otf);
font-weight: 300; }
@font-face {
font-family: Monsterrat;
src: url(../fonts/montserrat/Montserrat-Regular.otf);
font-weight: 400; }
@font-face {
font-family: Monsterrat;
src: url(../fonts/montserrat/Montserrat-Bold.otf);
font-weight: 500; }
@font-face {
font-family: Monsterrat;
src: url(../fonts/montserrat/Montserrat-SemiBold.otf);
font-weight: 600; }
@font-face {
font-family: Monsterrat;
src: url(../fonts/montserrat/Montserrat-Bold.ttf);
font-weight: 800; }
html {
font-size: 15px; }
body {
font-family: 'Monsterrat', sans-serif; }
/* ================== HELPERS =================== */
a:hover {
text-decoration: none; }
.img-wrap {
text-align: center;
display: block; }
.img-wrap img {
max-width: 100%; }
.zoom-in {
transition: transform ease .3s; }
.zoom-wrap:hover .zoom-in {
transform: scale(1.1);
transition: transform ease .3s; }
/* ================= DEFINED VARIABLES =================== */
.icon-xs, .icon-sm, .icon-md, .icon-lg {
display: inline-block;
text-align: center; }
.icon-xs {
width: 32px;
height: 32px;
line-height: 32px;
font-size: 16px; }
.icon-sm {
width: 42px;
height: 42px;
line-height: 42px;
font-size: 22px; }
.icon-md {
width: 60px;
height: 60px;
line-height: 60px;
font-size: 32px; }
.icon-lg {
width: 80px;
height: 80px;
line-height: 80px;
font-size: 42px; }
.img-xs, .img-sm, .img-md, .img-lg {
object-fit: cover; }
.img-xs {
width: 40px;
height: 40px; }
.img-sm {
width: 80px;
height: 80px; }
.img-md {
width: 160px;
height: 160px; }
.img-lg {
width: 400px;
height: 300px; }
.center-xy {
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%, -50%); }
.center-y {
top: 50%;
position: absolute;
transform: translateY(-50%); }
.center-x {
left: 50%;
position: absolute;
transform: translateX(-50%); }
.center {
margin-left: auto;
margin-right: auto; }
.overflow-h {
overflow: hidden; }
.flip-h {
transform: scaleX(-1); }
.card-body-lg {
padding: 2rem; }
.shadow-in {
box-shadow: inset 0 2px 4px rgba(51, 51, 51, 0.4); }
.vh-100 {
height: 100vh; }
.vh-90 {
height: 90vh; }
.vh-80 {
height: 80vh; }
.vh-70 {
height: 70vh; }
.vh-60 {
height: 60vh; }
.vh-50 {
height: 50vh; }
[class*="hover-"] {
transition: .5s; }
.hover-shadow:hover {
box-shadow: 0 4px 15px rgba(51, 51, 51, 0.5);
transition: .5s; }
.hover-bg:hover {
background: #2855AF;
/* For browsers that do not support gradients */
background: -webkit-linear-gradient(left top, #2855AF, #2855AF);
/* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(bottom right, #2855AF, #2855AF);
/* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(bottom right, #2855AF, #2855AF);
/* For Firefox 3.6 to 15 */
background: linear-gradient(to bottom right, #2855AF, #2855AF);
/* Standard syntax */
transition: .5s; }
.hover-zoom:hover {
transition: .5s;
transform: scaleX(1); }
/* ========== input with icon ========== */
.input-icon {
position: relative; }
.input-icon i + input, .input-icon i + select {
padding-left: 36px; }
.input-icon i {
position: absolute;
color: #ccc;
z-index: 9;
left: 7px;
top: 4px;
width: 24px;
text-align: center;
padding: 7px 0; }
.form-inline .form-control-sm[type="number"] {
max-width: 100px; }
/* ========== borders ========== */
.border {
border: 1px solid #dee2e6; }
.border-left-white {
border-left: 1px solid rgba(255, 255, 255, 0.3); }
.border-right-white {
border-right: 1px solid rgba(255, 255, 255, 0.3); }
.border-top-white {
border-top: 1px solid rgba(255, 255, 255, 0.3); }
.border-bottom-white {
border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.circle {
border-radius: 100%; }
.round {
border-radius: 200px; }
/* ============== spacing ============== */
.padding-y {
padding-top: 40px;
padding-bottom: 40px; }
.padding-top {
padding-top: 40px; }
.padding-bottom {
padding-bottom: 40px; }
.padding-y-lg {
padding-top: 70px;
padding-bottom: 70px; }
.padding-top-lg {
padding-top: 60px; }
.padding-bottom-lg {
padding-bottom: 60px; }
.padding-y-sm {
padding-top: 16px;
padding-bottom: 16px; }
.padding-top-sm {
padding-top: 16px; }
.padding-bottom-sm {
padding-bottom: 16px; }
.nopadding {
padding: 0px; }
.p0 {
padding: 0px; }
.p5 {
padding: 5px; }
.p7 {
padding: 7px; }
.p10 {
padding: 10px; }
.p15 {
padding: 15px; }
.p20 {
padding: 20px; }
.p30 {
padding: 30px; }
.p40 {
padding: 40px; }
.p50 {
padding: 50px; }
.p60 {
padding: 60px; }
.nomargin {
margin: 0px; }
.m0 {
margin: 0px; }
.m5 {
margin: 5px; }
.m7 {
margin: 7px; }
.m10 {
margin: 10px; }
.m15 {
margin: 15px; }
.m30 {
margin: 30px; }
.m40 {
margin: 40px; }
.m50 {
margin: 50px; }
.m60 {
margin: 60px; }
.relative {
position: relative;
z-index: 3; }
.absolute {
position: absolute; }
var {
font-style: normal; }
figure {
margin-bottom: 0; }
.form-noborder input, .form-noborder select, .form-noborder .btn {
border: none; }
.form-noborder select.form-control-lg:not([size]):not([multiple]) {
height: 2.875rem; }
/* all clearfix */
article:after,
.form-group:after {
display: block;
clear: both;
content: ""; }
.border-cols:not(:last-child) {
border-bottom: 1px solid #dee2e6; }
.border-cols > [class*="col-"] {
overflow: hidden;
border-color: #dee2e6;
border-width: 0 0 0 1px;
border-style: solid; }
/* -------------------- small grid gutter --------------------- */
.row-sm {
margin-right: -7px;
margin-left: -7px;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.row-sm > [class^="col"] {
padding-left: 7px;
padding-right: 7px; }
/* -------------------- colors and gradients --------------------- */
.opacity_01 {
opacity: 0.1 !important; }
.new_blue {
color: #2855AF !important; }
.bg-contact {
background: url(../images/bg/bg-contact.png) no-repeat;
background-position: bottom left;
background-size: 550px; }
.bg-mailbox {
background: url(../images/bg/mailbox.png) no-repeat;
background-position: bottom left;
background-size: 470px; }
.bg-anim-item {
animation: floating 15s linear infinite;
position: absolute;
max-width: 40px;
opacity: 0.6; }
.bg-pattern {
background-image: url(../images/bg/bg-pattern.svg);
background-position: center center; }
.bg-dots {
background-image: url(../images/bg/dots.svg);
background-position: center center; }
.bg-pattern2 {
background-image: url(../images/bg/bg-pattern2.svg);
background-position: center center; }
.bg-wave {
background: url(../images/bg/bg-wave.svg) no-repeat;
background-size: cover;
background-position: center 120px; }
.bg-wave2 {
background: url(../images/bg/bg-wave2.svg) no-repeat;
background-size: cover;
background-position: center 20px; }
.bg-wave3 {
background: url(../images/bg/bg-wave.svg) no-repeat;
background-size: cover;
background-position: center 500px; }
.bg-wave4 {
background: url(../images/bg/bg-wave2.svg) no-repeat;
background-size: cover;
background-position: center 120px; }
.bg-wave-dark-bottom {
background: url(../images/bg/bg-wave-dark.png) no-repeat;
background-position: top center;
background-size: 100% 100%;
min-height: 870px; }
.bg-wave-bottom {
background: url(../images/bg/bg-wave-bottom.svg);
background-size: cover;
background-position: center bottom; }
.bg-wave-dark2 {
background: #0F1F39 url(../images/bg/wave-dark2.png);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%; }
.bg-lines-bottom {
background: url(../images/bg/lines-bottom.svg) repeat-x;
background-position: center bottom; }
.bg-lines-bottom-dark {
background: url(../images/bg/lines-bottom-dark.svg) repeat-x;
background-position: center bottom; }
.bg-wave-dark {
background: url(../images/bg/bg-dark.png) no-repeat;
background-size: 100% 100%;
background-position: center; }
.bg-pattern-bottom {
background: url(../images/bg/pattern-bottom.svg) repeat-x;
background-position: center bottom;
background-size: cover; }
.bg-white {
background-color: #fff !important; }
.bg-white-50 {
background-color: rgba(255, 255, 255, 0.5); }
.bg-dark-50 {
background-color: rgba(0, 0, 0, 0.5); }
.bg-grad-primary {
background: #386bd2;
/* For browsers that do not support gradients */
background: -webkit-linear-gradient(left top, #1f4185, #386bd2);
/* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(bottom right, #1f4185, #386bd2);
/* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(bottom right, #1f4185, #386bd2);
/* For Firefox 3.6 to 15 */
background: linear-gradient(to bottom right, #1f4185, #386bd2);
/* Standard syntax */ }
.bg {
background-color: #f8f8f8 !important; }
.bg2 {
background-color: #eceded !important; }
.bg-purple {
background-color: #6f42c1; }
.bg-orange {
background-color: #fd7e14; }
.bg-green {
background-color: #28a745; }
.bg-blue {
background-color: #2855AF !important; }
.bg-grey {
background: #2E406C !important; }
.bg-grey_e5 {
background: #E5E5E5 !important; }
.bg-grey_e5_after_top200 {
position: relative; }
.bg-grey_e5_after_top200:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 200px;
background: #E5E5E5 !important; }
.bg-gradient_top-bottom {
position: relative; }
.bg-gradient_top-bottom:after, .bg-gradient_top-bottom:before {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0; }
.bg-gradient_top-bottom:before {
top: 16rem;
background: linear-gradient(0deg, #E9EEF7 -1.36%, #FFFFFF 95.27%); }
.bg-gradient_top-bottom:after {
top: 20rem;
background: linear-gradient(0deg, #E9EEF7 -1.36%, #FFFFFF 90.44%);
opacity: 0.5; }
.bg-gradient_top-bottom > section, .bg-gradient_top-bottom > div {
position: relative;
z-index: 1; }
.bg-gradient_bottom-top_lg {
position: relative; }
.bg-gradient_bottom-top_lg:after, .bg-gradient_bottom-top_lg:before {
content: "";
width: 100%;
position: absolute;
left: 0; }
.bg-gradient_bottom-top_lg:before {
height: calc( 100% - 30rem );
top: 30rem;
background: linear-gradient(180deg, #E9EEF7 -1.36%, #FFFFFF 90.44%);
opacity: 0.5; }
.bg-gradient_bottom-top_lg:after {
height: calc( 100% - 34rem );
top: 34rem;
background: linear-gradient(180deg, #E9EEF7 -1.36%, #FFFFFF 95.27%); }
.bg-gradient_bottom-top_lg > section, .bg-gradient_bottom-top_lg > div {
position: relative;
z-index: 1; }
.bg-gradient_bottom-top {
position: relative; }
.bg-gradient_bottom-top:after, .bg-gradient_bottom-top:before {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0; }
.bg-gradient_bottom-top:before {
top: 6rem;
background: linear-gradient(180deg, #E9EEF7 -1.36%, #FFFFFF 90.44%);
opacity: 0.5; }
.bg-gradient_bottom-top:after {
top: 10rem;
background: linear-gradient(180deg, #E9EEF7 -1.36%, #FFFFFF 95.27%); }
.bg-gradient_bottom-top > section, .bg-gradient_bottom-top > div {
position: relative;
z-index: 1; }
/* --------------------- titles ---------------------- */
.title-section {
font-weight: bold;
position: relative;
z-index: 9;
font-size: 36px;
color: #2855AF; }
article ul {
margin-left: 0;
padding-left: 20px; }
.section-heading {
margin-bottom: 50px;
margin-top: 10px;
position: relative; }
.section-heading .bg-num {
font-family: Montserrat;
font-style: normal;
font-weight: 800;
font-size: 120px;
color: rgba(40, 85, 175, 0.1);
margin-top: -50%;
display: inline-block;
line-height: 1; }
.section-heading .bg-num.white {
color: rgba(255, 255, 255, 0.1); }
.section-heading .lead {
font-size: 26px;
font-weight: normal;
color: #6c757d;
line-height: 1.2; }
.section-heading2 {
margin-bottom: 50px;
margin-top: 10px;
position: relative; }
.section-heading2 .bg-num {
font-family: Montserrat;
font-style: normal;
font-weight: 800;
font-size: 120px;
color: #E8E8E8;
margin-top: -20px;
display: inline-block;
line-height: 1;
position: absolute;
left: 50%;
top: 0;
transform: translateX(-50%); }
.section-heading2 .lead {
font-size: 26px;
font-weight: normal;
color: #6c757d;
line-height: 1.2; }
.section-heading-aside {
margin-bottom: 30px;
margin-top: 10px;
display: block;
position: relative; }
.section-heading-aside .bg-num {
opacity: .6;
padding-right: 20px;
font-family: Montserrat;
font-style: normal;
font-weight: 800;
font-size: 160px;
color: rgba(224, 221, 248, 0.7);
display: inline-block;
line-height: 1;
position: absolute;
right: 100%;
top: -20px; }
.section-heading-aside .title-section {
font-size: 40px;
line-height: 1;
margin-bottom: 0; }
.section-heading-aside .subtitle {
font-size: 32px;
margin: 0; }
.white-opacity {
color: rgba(255, 255, 255, 0.15) !important; }
.title-text {
margin-top: 45px;
margin-bottom: 20px; }
.title-category {
margin: 0;
padding: 1rem 1rem; }
.title-bg {
padding: 7px 15px;
color: #fff; }
.font-title {
font-family: "Roboto", sans-serif; }
.text-lg {
font-size: 125%; }
/* ================== title element ================ */
.b {
font-weight: 600; }
.wight-700 {
font-weight: 700; }
strong {
font-weight: 800; }
.white {
color: #fff; }
.black, .dark {
color: #000; }
/* ================== title helpers ================ */
.rtl {
direction: rtl; }
.ltr {
direction: ltr; }
.lh-sm {
line-height: 1.2; }
.lh-lg {
line-height: 1.6; }
/*!
* grid for 24 of 1
* made by bootstrap-ecommerce.com
*/
.col-1-24 {
flex: 0 0 4.1666666667%;
max-width: 4.1666666667%; }
.col-2-24 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-3-24 {
flex: 0 0 12.5%;
max-width: 12.5%; }
.col-4-24 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-5-24 {
flex: 0 0 20.8333333333%;
max-width: 20.8333333333%; }
.col-6-24 {
flex: 0 0 25%;
max-width: 25%; }
.col-7-24 {
flex: 0 0 29.1666666667%;
max-width: 29.1666666667%; }
.col-8-24 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-9-24 {
flex: 0 0 37.5%;
max-width: 37.5%; }
.col-10-24 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-11-24 {
flex: 0 0 45.8333333333%;
max-width: 45.8333333333%; }
.col-12-24 {
flex: 0 0 50%;
max-width: 50%; }
.col-13-24 {
flex: 0 0 54.1666666667%;
max-width: 54.1666666667%; }
.col-14-24 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-15-24 {
flex: 0 0 62.5%;
max-width: 62.5%; }
.col-16-24 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-17-24 {
flex: 0 0 70.8333333333%;
max-width: 70.8333333333%; }
.col-18-24 {
flex: 0 0 75%;
max-width: 75%; }
.col-19-24 {
flex: 0 0 79.1666666667%;
max-width: 79.1666666667%; }
.col-20-24 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-21-24 {
flex: 0 0 87.5%;
max-width: 87.5%; }
.col-22-24 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-23-24 {
flex: 0 0 95.8333333333%;
max-width: 95.8333333333%; }
.col-24, .col-24-24 {
flex: 0 0 100%;
max-width: 100%; }
.offset-1-24 {
margin-left: 4.1666666667%; }
.offset-2-24 {
margin-left: 8.3333333333%; }
.offset-3-24 {
margin-left: 12.5%; }
.offset-4-24 {
margin-left: 16.6666666667%; }
.offset-5-24 {
margin-left: 20.8333333333%; }
.offset-6-24 {
margin-left: 25%; }
.offset-7-24 {
margin-left: 29.1666666667%; }
.offset-8-24 {
margin-left: 33.3333333333%; }
.offset-9-24 {
margin-left: 37.5%; }
.offset-10-24 {
margin-left: 41.6666666667%; }
.offset-11-24 {
margin-left: 45.8333333333%; }
.offset-12-24 {
margin-left: 50%; }
.offset-13-24 {
margin-left: 54.1666666667%; }
.offset-14-24 {
margin-left: 58.3333333333%; }
.offset-15-24 {
margin-left: 62.5%; }
.offset-16-24 {
margin-left: 66.6666666667%; }
.offset-17-24 {
margin-left: 70.8333333333%; }
.offset-18-24 {
margin-left: 75%; }
.offset-19-24 {
margin-left: 79.1666666667%; }
.offset-20-24 {
margin-left: 83.3333333333%; }
.offset-21-24 {
margin-left: 87.5%; }
.offset-22-24 {
margin-left: 91.6666666667%; }
.offset-23-24 {
margin-left: 95.8333333333%; }
@media (min-width: 576px) {
.col-sm-1-24 {
flex: 0 0 4.1666666667%;
max-width: 4.1666666667%; }
.col-sm-2-24 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-sm-3-24 {
flex: 0 0 12.5%;
max-width: 12.5%; }
.col-sm-4-24 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-sm-5-24 {
flex: 0 0 20.8333333333%;
max-width: 20.8333333333%; }
.col-sm-6-24 {
flex: 0 0 25%;
max-width: 25%; }
.col-sm-7-24 {
flex: 0 0 29.1666666667%;
max-width: 29.1666666667%; }
.col-sm-8-24 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-sm-9-24 {
flex: 0 0 37.5%;
max-width: 37.5%; }
.col-sm-10-24 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-sm-11-24 {
flex: 0 0 45.8333333333%;
max-width: 45.8333333333%; }
.col-sm-12-24 {
flex: 0 0 50%;
max-width: 50%; }
.col-sm-13-24 {
flex: 0 0 54.1666666667%;
max-width: 54.1666666667%; }
.col-sm-14-24 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-sm-15-24 {
flex: 0 0 62.5%;
max-width: 62.5%; }
.col-sm-16-24 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-sm-17-24 {
flex: 0 0 70.8333333333%;
max-width: 70.8333333333%; }
.col-sm-18-24 {
flex: 0 0 75%;
max-width: 75%; }
.col-sm-19-24 {
flex: 0 0 79.1666666667%;
max-width: 79.1666666667%; }
.col-sm-20-24 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-sm-21-24 {
flex: 0 0 87.5%;
max-width: 87.5%; }
.col-sm-22-24 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-sm-23-24 {
flex: 0 0 95.8333333333%;
max-width: 95.8333333333%; }
.col-sm-24, .col-sm-24-24 {
flex: 0 0 100%;
max-width: 100%; }
.offset-sm-1-24 {
margin-left: 4.1666666667%; }
.offset-sm-2-24 {
margin-left: 8.3333333333%; }
.offset-sm-3-24 {
margin-left: 12.5%; }
.offset-sm-4-24 {
margin-left: 16.6666666667%; }
.offset-sm-5-24 {
margin-left: 20.8333333333%; }
.offset-sm-6-24 {
margin-left: 25%; }
.offset-sm-7-24 {
margin-left: 29.1666666667%; }
.offset-sm-8-24 {
margin-left: 33.3333333333%; }
.offset-sm-9-24 {
margin-left: 37.5%; }
.offset-sm-10-24 {
margin-left: 41.6666666667%; }
.offset-sm-11-24 {
margin-left: 45.8333333333%; }
.offset-sm-12-24 {
margin-left: 50%; }
.offset-sm-13-24 {
margin-left: 54.1666666667%; }
.offset-sm-14-24 {
margin-left: 58.3333333333%; }
.offset-sm-15-24 {
margin-left: 62.5%; }
.offset-sm-16-24 {
margin-left: 66.6666666667%; }
.offset-sm-17-24 {
margin-left: 70.8333333333%; }
.offset-sm-18-24 {
margin-left: 75%; }
.offset-sm-19-24 {
margin-left: 79.1666666667%; }
.offset-sm-20-24 {
margin-left: 83.3333333333%; }
.offset-sm-21-24 {
margin-left: 87.5%; }
.offset-sm-22-24 {
margin-left: 91.6666666667%; }
.offset-sm-23-24 {
margin-left: 95.8333333333%; } }
@media (min-width: 768px) {
.col-md-1-24 {
flex: 0 0 4.1666666667%;
max-width: 4.1666666667%; }
.col-md-2-24 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-md-3-24 {
flex: 0 0 12.5%;
max-width: 12.5%; }
.col-md-4-24 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-md-5-24 {
flex: 0 0 20.8333333333%;
max-width: 20.8333333333%; }
.col-md-6-24 {
flex: 0 0 25%;
max-width: 25%; }
.col-md-7-24 {
flex: 0 0 29.1666666667%;
max-width: 29.1666666667%; }
.col-md-8-24 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-md-9-24 {
flex: 0 0 37.5%;
max-width: 37.5%; }
.col-md-10-24 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-md-11-24 {
flex: 0 0 45.8333333333%;
max-width: 45.8333333333%; }
.col-md-12-24 {
flex: 0 0 50%;
max-width: 50%; }
.col-md-13-24 {
flex: 0 0 54.1666666667%;
max-width: 54.1666666667%; }
.col-md-14-24 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-md-15-24 {
flex: 0 0 62.5%;
max-width: 62.5%; }
.col-md-16-24 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-md-17-24 {
flex: 0 0 70.8333333333%;
max-width: 70.8333333333%; }
.col-md-18-24 {
flex: 0 0 75%;
max-width: 75%; }
.col-md-19-24 {
flex: 0 0 79.1666666667%;
max-width: 79.1666666667%; }
.col-md-20-24 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-md-21-24 {
flex: 0 0 87.5%;
max-width: 87.5%; }
.col-md-22-24 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-md-23-24 {
flex: 0 0 95.8333333333%;
max-width: 95.8333333333%; }
.col-md-24, .col-md-24-24 {
flex: 0 0 100%;
max-width: 100%; }
.offset-md-1-24 {
margin-left: 4.1666666667%; }
.offset-md-2-24 {
margin-left: 8.3333333333%; }
.offset-md-3-24 {
margin-left: 12.5%; }
.offset-md-4-24 {
margin-left: 16.6666666667%; }
.offset-md-5-24 {
margin-left: 20.8333333333%; }
.offset-md-6-24 {
margin-left: 25%; }
.offset-md-7-24 {
margin-left: 29.1666666667%; }
.offset-md-8-24 {
margin-left: 33.3333333333%; }
.offset-md-9-24 {
margin-left: 37.5%; }
.offset-md-10-24 {
margin-left: 41.6666666667%; }
.offset-md-11-24 {
margin-left: 45.8333333333%; }
.offset-md-12-24 {
margin-left: 50%; }
.offset-md-13-24 {
margin-left: 54.1666666667%; }
.offset-md-14-24 {
margin-left: 58.3333333333%; }
.offset-md-15-24 {
margin-left: 62.5%; }
.offset-md-16-24 {
margin-left: 66.6666666667%; }
.offset-md-17-24 {
margin-left: 70.8333333333%; }
.offset-md-18-24 {
margin-left: 75%; }
.offset-md-19-24 {
margin-left: 79.1666666667%; }
.offset-md-20-24 {
margin-left: 83.3333333333%; }
.offset-md-21-24 {
margin-left: 87.5%; }
.offset-md-22-24 {
margin-left: 91.6666666667%; }
.offset-md-23-24 {
margin-left: 95.8333333333%; } }
@media (min-width: 992px) {
.col-lg-1-24 {
flex: 0 0 4.1666666667%;
max-width: 4.1666666667%; }
.col-lg-2-24 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-lg-3-24 {
flex: 0 0 12.5%;
max-width: 12.5%; }
.col-lg-4-24 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-lg-5-24 {
flex: 0 0 20.8333333333%;
max-width: 20.8333333333%; }
.col-lg-6-24 {
flex: 0 0 25%;
max-width: 25%; }
.col-lg-7-24 {
flex: 0 0 29.1666666667%;
max-width: 29.1666666667%; }
.col-lg-8-24 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-lg-9-24 {
flex: 0 0 37.5%;
max-width: 37.5%; }
.col-lg-10-24 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-lg-11-24 {
flex: 0 0 45.8333333333%;
max-width: 45.8333333333%; }
.col-lg-12-24 {
flex: 0 0 50%;
max-width: 50%; }
.col-lg-13-24 {
flex: 0 0 54.1666666667%;
max-width: 54.1666666667%; }
.col-lg-14-24 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-lg-15-24 {
flex: 0 0 62.5%;
max-width: 62.5%; }
.col-lg-16-24 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-lg-17-24 {
flex: 0 0 70.8333333333%;
max-width: 70.8333333333%; }
.col-lg-18-24 {
flex: 0 0 75%;
max-width: 75%; }
.col-lg-19-24 {
flex: 0 0 79.1666666667%;
max-width: 79.1666666667%; }
.col-lg-20-24 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-lg-21-24 {
flex: 0 0 87.5%;
max-width: 87.5%; }
.col-lg-22-24 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-lg-23-24 {
flex: 0 0 95.8333333333%;
max-width: 95.8333333333%; }
.col-lg-24, .col-lg-24-24 {
flex: 0 0 100%;
max-width: 100%; }
.offset-lg-1-24 {
margin-left: 4.1666666667%; }
.offset-lg-2-24 {
margin-left: 8.3333333333%; }
.offset-lg-3-24 {
margin-left: 12.5%; }
.offset-lg-4-24 {
margin-left: 16.6666666667%; }
.offset-lg-5-24 {
margin-left: 20.8333333333%; }
.offset-lg-6-24 {
margin-left: 25%; }
.offset-lg-7-24 {
margin-left: 29.1666666667%; }
.offset-lg-8-24 {
margin-left: 33.3333333333%; }
.offset-lg-9-24 {
margin-left: 37.5%; }
.offset-lg-10-24 {
margin-left: 41.6666666667%; }
.offset-lg-11-24 {
margin-left: 45.8333333333%; }
.offset-lg-12-24 {
margin-left: 50%; }
.offset-lg-13-24 {
margin-left: 54.1666666667%; }
.offset-lg-14-24 {
margin-left: 58.3333333333%; }
.offset-lg-15-24 {
margin-left: 62.5%; }
.offset-lg-16-24 {
margin-left: 66.6666666667%; }
.offset-lg-17-24 {
margin-left: 70.8333333333%; }
.offset-lg-18-24 {
margin-left: 75%; }
.offset-lg-19-24 {
margin-left: 79.1666666667%; }
.offset-lg-20-24 {
margin-left: 83.3333333333%; }
.offset-lg-21-24 {
margin-left: 87.5%; }
.offset-lg-22-24 {
margin-left: 91.6666666667%; }
.offset-lg-23-24 {
margin-left: 95.8333333333%; } }
@media (min-width: 1200px) {
.col-xl-1-24 {
flex: 0 0 4.1666666667%;
max-width: 4.1666666667%; }
.col-xl-2-24 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-xl-3-24 {
flex: 0 0 12.5%;
max-width: 12.5%; }
.col-xl-4-24 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-xl-5-24 {
flex: 0 0 20.8333333333%;
max-width: 20.8333333333%; }
.col-xl-6-24 {
flex: 0 0 25%;
max-width: 25%; }
.col-xl-7-24 {
flex: 0 0 29.1666666667%;
max-width: 29.1666666667%; }
.col-xl-8-24 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-xl-9-24 {
flex: 0 0 37.5%;
max-width: 37.5%; }
.col-xl-10-24 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-xl-11-24 {
flex: 0 0 45.8333333333%;
max-width: 45.8333333333%; }
.col-xl-12-24 {
flex: 0 0 50%;
max-width: 50%; }
.col-xl-13-24 {
flex: 0 0 54.1666666667%;
max-width: 54.1666666667%; }
.col-xl-14-24 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-xl-15-24 {
flex: 0 0 62.5%;
max-width: 62.5%; }
.col-xl-16-24 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-xl-17-24 {
flex: 0 0 70.8333333333%;
max-width: 70.8333333333%; }
.col-xl-18-24 {
flex: 0 0 75%;
max-width: 75%; }
.col-xl-19-24 {
flex: 0 0 79.1666666667%;
max-width: 79.1666666667%; }
.col-xl-20-24 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-xl-21-24 {
flex: 0 0 87.5%;
max-width: 87.5%; }
.col-xl-22-24 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-xl-23-24 {
flex: 0 0 95.8333333333%;
max-width: 95.8333333333%; }
.col-xl-24, .col-xl-24-24 {
flex: 0 0 100%;
max-width: 100%; }
.offset-xl-1-24 {
margin-left: 4.1666666667%; }
.offset-xl-2-24 {
margin-left: 8.3333333333%; }
.offset-xl-3-24 {
margin-left: 12.5%; }
.offset-xl-4-24 {
margin-left: 16.6666666667%; }
.offset-xl-5-24 {
margin-left: 20.8333333333%; }
.offset-xl-6-24 {
margin-left: 25%; }
.offset-xl-7-24 {
margin-left: 29.1666666667%; }
.offset-xl-8-24 {
margin-left: 33.3333333333%; }
.offset-xl-9-24 {
margin-left: 37.5%; }
.offset-xl-10-24 {
margin-left: 41.6666666667%; }
.offset-xl-11-24 {
margin-left: 45.8333333333%; }
.offset-xl-12-24 {
margin-left: 50%; }
.offset-xl-13-24 {
margin-left: 54.1666666667%; }
.offset-xl-14-24 {
margin-left: 58.3333333333%; }
.offset-xl-15-24 {
margin-left: 62.5%; }
.offset-xl-16-24 {
margin-left: 66.6666666667%; }
.offset-xl-17-24 {
margin-left: 70.8333333333%; }
.offset-xl-18-24 {
margin-left: 75%; }
.offset-xl-19-24 {
margin-left: 79.1666666667%; }
.offset-xl-20-24 {
margin-left: 83.3333333333%; }
.offset-xl-21-24 {
margin-left: 87.5%; }
.offset-xl-22-24 {
margin-left: 91.6666666667%; }
.offset-xl-23-24 {
margin-left: 95.8333333333%; } }
/* by default 24 grid cols full width */
[class^="col-"][class*="-24"] {
position: relative;
width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px; }
/* nogutter for 24 grid cols */
.no-gutters > [class*="col-"] {
padding-right: 0 !important;
padding-left: 0 !important; }
/* ================== SECTIONS =================== */
.navbar {
position: relative;
z-index: 999; }
.navbar .nav-link {
font-size: 18px;
font-weight: bold; }
.navbar .nav-item {
margin-left: 20px; }
.navbar .dropdown-menu {
min-width: 5rem;
transform: translateX(-20%); }
.navbar .dropdown-menu a:active {
color: #fff; }
.navbar-brand .logo {
margin-right: 7px;
max-height: 60px;
display: inline-block; }
.section-intro {
position: relative;
padding-bottom: 15px;
background-image: url(../images/bg/bg-main.png);
background-repeat: no-repeat;
background-position: top center;
background-size: 100% 90%; }
.section-intro.section-intro-v2 {
overflow: hidden;
background: #00091F;
min-height: 100vh; }
.section-intro.section-intro-v2 .particles-js-canvas-el {
position: absolute;
left: 0;
top: 0; }
.section-intro.section-intro-v2 > .container {
min-height: calc( 100vh - 80px - 1rem ); }
.section-intro.section-intro-v2 > .container > .row {
position: relative;
z-index: 3;
width: 100%; }
.section-intro.section-intro-v2 > .container .bg-icons-v2 {
position: absolute;
top: 0;
width: 100%;
bottom: 0;
z-index: 1; }
.section-intro.section-intro-v2 > .container .bg-icons-v2 img {
position: absolute;
max-width: 100%;
max-height: 100%; }
.section-intro.section-intro-v2 > .container .bg-icons-v2 img:nth-child(1) {
top: 41%;
right: 30%;
animation: rotate-float 15s linear infinite; }
.section-intro.section-intro-v2 > .container .bg-icons-v2 img:nth-child(2) {
top: 20%;
right: 5%;
animation: rotate-float 30s linear infinite; }
.section-intro.section-intro-v2 > .container .bg-icons-v2 img:nth-child(3) {
top: 26%;
right: 5%;
animation: rotate-float 30s linear infinite reverse; }
.section-intro.section-intro-v2 > .container .bg-icons-v2 img:nth-child(4) {
top: 21%;
right: 30%;
animation: rotate 10s linear infinite; }
.section-intro .title-intro {
/*font-family: 'Intro Bold';*/
font-style: normal;
font-weight: 600;
line-height: normal;
font-size: 60px;
margin-bottom: 50px; }
.section-intro .container {
position: relative;
z-index: 3; }
.section-intro .bg-icons {
position: absolute;
top: 0;
width: 100%;
bottom: 0;
z-index: 1; }
.section-intro .bg-icons img {
position: absolute;
max-width: 40px;
max-height: 40px; }
.section-intro .bg-icons img:nth-child(1) {
top: 41%;
left: 4%;
animation: rotate-float 15s linear infinite; }
.section-intro .bg-icons img:nth-child(2) {
top: 20%;
left: 33%;
animation: rotate-float 30s linear infinite; }
.section-intro .bg-icons img:nth-child(3) {
top: 26%;
left: 90%;
animation: rotate-float 30s linear infinite reverse; }
.section-intro .bg-icons img:nth-child(4) {
top: 21%;
left: 61%;
opacity: .3;
animation: rotate 10s linear infinite; }
.section-intro .bg-icons img:nth-child(5) {
top: 68%;
left: -6%;
opacity: .3;
animation: floating 15s linear infinite; }
.section-intro .bg-icons img:nth-child(6) {
top: 55%;
left: 89%;
animation: rotate-float 20s linear infinite; }
.section-intro .bg-icons img:nth-child(7) {
top: 54%;
left: 34%;
animation: rotate 30s linear infinite; }
.img-intro {
max-width: 100%;
margin-top: 100px; }
.section-intro-page {
position: relative;
padding-bottom: 15px; }
.section-intro-page.section-intro-page_v2 {
overflow: hidden; }
.section-intro-page.section-intro-page_v2 > .container {
position: relative;
z-index: 2;
min-height: calc( 100vh - 80px - 1rem ); }
.section-intro-page.section-intro-page_v2 > .container .intro-wrap {
padding-top: 0; }
.section-intro-page.section-intro-page_v2 > .container .intro-wrap .intro-center {
margin-bottom: 42px; }
.section-intro-page.section-intro-page_v2 > .container .intro-wrap .intro-bottom {
cursor: pointer;
user-select: none;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%); }
.section-intro-page canvas {
width: 100%;
top: 0;
height: 100%;
position: absolute; }
.section-intro-page .intro-wrap {
padding-top: 140px;
margin-bottom: 150px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column; }
.section-intro-page .title-intro {
position: relative;
z-index: 2;
font-family: 'Intro';
letter-spacing: 5px;
font-style: normal;
font-weight: 600;
line-height: normal;
font-size: 70px; }
.section-intro-page .intro-center {
position: relative; }
.section-intro-page .bg-icons-page {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%; }
.section-intro-page .bg-icons-page img {
position: absolute;
animation-name: rotate-float;
animation-iteration-count: infinite;
animation-timing-function: linear; }
.section-intro-page .bg-icons-page img:nth-child(1) {
top: 12%;
left: -7%;
animation-duration: 31s; }
.section-intro-page .bg-icons-page img:nth-child(2) {
top: 0%;
left: -58%;
animation-duration: 25s;
animation-direction: reverse; }
.section-intro-page .bg-icons-page img:nth-child(3) {
top: -12%;
left: 133%;
animation-duration: 28s; }
.section-intro-page .bg-icons-page img:nth-child(4) {
top: 50%;
left: 71%;
animation-duration: 38s;
animation-direction: reverse; }
.section-intro-page .bg-icons-page img:nth-child(5) {
top: -71%;
left: 79%;
animation-duration: 18s; }
.section-intro-page .bg-icons-page img:nth-child(6) {
top: -40%;
left: -15%;
animation-duration: 35s;
animation-direction: reverse; }
.section-intro-page .bg-icons-page img:nth-child(7) {
top: 0%;
left: 120%;
animation-duration: 30s; }
.animation_duration_10 {
animation-duration: 10s; }
.animation_duration_20 {
animation-duration: 20s; }
.animation_duration_30 {
animation-duration: 30s; }
.animation_duration_40 {
animation-duration: 40s; }
.animation_direction_reverse {
animation-direction: reverse; }
@keyframes rotate {
0% {
transform: rotate(0deg); }
100% {
transform: rotate(359deg); } }
.animate-rotate {
animation-name: rotate;
animation-duration: 30s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
@keyframes rotate-float {
0% {
transform: rotate(0deg) translate(-70px); }
100% {
transform: rotate(-359deg) translate(-70px); } }
.rotate-float {
animation-name: rotate-float;
animation-duration: 30s;
animation-fill-mode: both;
animation-iteration-count: infinite;
animation-timing-function: linear; }
@keyframes floating {
0% {
transform: rotate(0deg) translate(-40px); }
100% {
transform: rotate(-360deg) translate(-40px); } }
@keyframes floating2 {
0% {
transform: rotate(0deg) translate(-40px); }
50% {
transform: rotate(-180deg) translate(-40px); }
100% {
transform: rotate(-360deg) translate(-40px); } }
@keyframes pulse {
0% {
transform: scale(1); }
50% {
transform: scale(1.3); }
100% {
transform: scale(1); } }
.animate-pulse {
animation-name: pulse;
animation-duration: 2.5s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
@keyframes rubberBand {
0% {
transform: scale(1); }
30% {
transform: scaleX(1.25) scaleY(0.75); }
40% {
transform: scaleX(0.75) scaleY(1.25); }
60% {
transform: scaleX(1.15) scaleY(0.85); }
100% {
transform: scale(1); } }
.rubberBand {
animation-name: rubberBand;
animation-duration: 2.5s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
@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; } }
.animate-flip {
backface-visibility: visible;
animation-name: flip;
animation-duration: 2.5s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
@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%); } }
.animate-wobble {
animation-name: wobble;
animation-duration: 2.5s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
.intro-bottom {
color: #fff;
position: relative;
z-index: 5;
margin-top: 0; }
.intro-bottom a {
color: inherit;
display: block;
animation: bounce_down 2s ease-in-out infinite; }
.intro-bottom a:hover {
color: #2855AF; }
.intro-bottom i {
font-size: 36px; }
.intro-bottom .down-btn-wrap {
margin-top: 0;
margin-bottom: 3%; }
@keyframes bounce_down {
0%, 100%, 20%, 50%, 80% {
transform: translateY(0); }
40% {
transform: translateY(30px); }
60% {
transform: translateY(15px); } }
@keyframes bounce_up {
0%, 100%, 20%, 50%, 80% {
transform: translateY(0); }
40% {
transform: translateY(-30px); }
60% {
transform: translateY(-15px); } }
.bounce-1 {
animation-duration: 2s;
animation-iteration-count: infinite;
animation-name: bounce-1;
animation-timing-function: linear; }
@keyframes bounce-1 {
0% {
transform: translateY(0); }
50% {
transform: translateY(-50px); }
100% {
transform: translateY(0); } }
/* ================== header main ================== */
body.active-menu .section-intro-page, body.active-menu .section-intro {
padding-top: 84px; }
body.active-menu .navbar {
position: fixed;
top: 0;
left: 0;
right: 0; }
/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author <NAME> @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
*/
button:focus {
outline: 0 !important; }
.hamburger {
outline: 0;
padding: 10px 10px;
display: inline-block;
cursor: pointer;
transition-property: opacity, filter;
transition-duration: 0.15s;
transition-timing-function: linear;
font: inherit;
color: inherit;
text-transform: none;
background-color: transparent;
border: 0;
margin: 0;
overflow: visible; }
.hamburger:hover {
opacity: 0.7; }
.hamburger-box {
width: 40px;
height: 20px;
display: inline-block;
position: relative; }
.hamburger-inner {
display: block;
top: 50%;
margin-top: -2px; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
width: 36px;
height: 3px;
background-color: #fff;
border-radius: 4px;
position: absolute;
transition-property: transform;
transition-duration: 0.15s;
transition-timing-function: ease; }
.hamburger-inner::before, .hamburger-inner::after {
content: "";
display: block; }
.hamburger-inner::before {
top: -12px;
width: 60%; }
.hamburger-inner::after {
bottom: -12px; }
/*
* Slider
*/
.hamburger--slider .hamburger-inner {
top: 2px; }
.hamburger--slider .hamburger-inner::before {
top: 10px;
transition-property: transform, opacity;
transition-timing-function: ease;
transition-duration: 0.15s; }
.hamburger--slider .hamburger-inner::after {
top: 20px; }
.hamburger--slider.is-active .hamburger-inner {
transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--slider.is-active .hamburger-inner::before {
transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
opacity: 0; }
.hamburger--slider.is-active .hamburger-inner::after {
transform: translate3d(0, -20px, 0) rotate(-90deg); }
/*
* Arrow Turn
*/
.hamburger--arrowturn.is-active .hamburger-inner {
transform: rotate(-180deg); }
.hamburger--arrowturn.is-active .hamburger-inner::before {
transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
.hamburger--arrowturn.is-active .hamburger-inner::after {
transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
/*
* Arrow Turn Right
*/
.hamburger--arrowturn-r.is-active .hamburger-inner {
transform: rotate(-180deg); }
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }
.down-btn-wrap {
margin-top: 5%;
margin-bottom: 3%; }
/* desktop only */
/* desktop only .end */
/* ================ SECTION-FOOTER ================== */
.section-footer a {
color: inherit; }
.section-footer p {
margin-top: 10px;
margin-bottom: 10px; }
.footer-bottom {
padding: 15px 0; }
.logo-footer {
height: 50px; }
.social-wrap a {
font-size: 18px;
display: inline-block;
margin: 3px; }
.phone {
font-size: 16px;
color: #FF068A;
font-weight: bold; }
/* ====================== NEW FOOTER ==================== */
.overflow-visible {
overflow: visible !important; }
.new_footer {
position: relative;
overflow: hidden; }
.new_footer.overflow-visible:before, .new_footer.overflow-visible:after {
content: none; }
.new_footer:before, .new_footer:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0; }
.new_footer:before {
top: 50px;
background: linear-gradient(180deg, #E9EEF7 -0.65%, #FFFFFF 84.42%);
opacity: 0.5; }
.new_footer:after {
top: 100px;
background: linear-gradient(180deg, #E9EEF7 -0.65%, #FFFFFF 97.75%); }
.new_footer > section,
.new_footer > div,
.new_footer > p,
.new_footer > footer {
position: relative;
z-index: 1; }
.new_footer .seo-text-slider_arrows {
text-align: center; }
.new_footer .seo-text-slider_arrows span {
cursor: pointer;
display: inline-block; }
.new_footer .seo-text-slider_arrows span.prev {
margin-right: 15px; }
.new_footer .seo-text-slider_arrows span img {
display: block; }
.new_footer .section-shape .for_shape:after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 700%;
height: 100%;
background: #2855AF;
border-radius: 0px 20px 20px 0px; }
.new_footer .section-shape .for_shape .section-heading {
position: relative;
z-index: 2;
min-height: 120px; }
.new_footer .section-shape .for_shape .section-heading .bg-num {
color: rgba(255, 255, 255, 0.1);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin-top: auto; }
.new_footer .new_carusel_style .heading-types-mobile h2 {
color: #2855AF; }
.new_footer .new_carusel_style .text {
right: 0;
color: rgba(40, 85, 175, 0.05); }
.new_footer .new_carusel_style .shape-bg-aud {
background: #2855AF; }
.new_footer .new_carusel_style .item-type-mobile:after {
background-color: #3FA6D7; }
.new_footer .seo-text-site {
margin-top: 2rem;
margin-left: 20%;
margin-right: 20%;
text-align: justify;
line-height: 25px;
font-size: 15px; }
.new_footer .new-index-bottom .footer_bubbles {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
.new_footer .new-index-bottom .footer_bubbles img {
position: absolute;
animation-name: rotate-float;
animation-fill-mode: both;
animation-iteration-count: infinite;
animation-timing-function: linear; }
.new_footer .new-index-bottom .footer_bubbles img:nth-child(1) {
bottom: 0;
left: 0;
animation-duration: 20s; }
.new_footer .new-index-bottom .footer_bubbles img:nth-child(2) {
top: 0;
left: 0;
animation-duration: 25s;
animation-direction: reverse; }
.new_footer .new-index-bottom .footer_bubbles img:nth-child(3) {
bottom: 0;
right: 35%;
animation-duration: 25s; }
.new_footer .new-index-bottom .footer_bubbles img:nth-child(4) {
top: 0;
right: 35%;
animation-duration: 30s;
animation-direction: reverse; }
.new_footer .new-index-bottom .footer_bubbles img:nth-child(5) {
bottom: 0;
right: 0;
animation-duration: 30s; }
.new_footer .new-index-bottom .footer_bubbles img:nth-child(6) {
top: 50px;
right: 0;
animation-duration: 20s;
animation-direction: reverse; }
.new_footer .section-footer .phone {
color: #2855AF; }
/* ================== PAGES =================== */
.section-intro.no-bg {
background-image: none; }
.portfolio-temporary {
position: relative;
margin-top: -100px; }
.portfolio-temporary img {
max-width: 100%;
width: 100%;
display: block; }
.portfolio-temporary a.portfolio-temporary-link {
position: absolute;
z-index: 5;
padding: 5px 10px 10px 5px;
display: inline-block;
font-size: 16px; }
.portfolio-temporary a.portfolio-temporary-link:before {
position: absolute;
content: "";
bottom: 5px;
right: 0;
height: 2px;
width: 50%;
transition: all 0.3s; }
.portfolio-temporary a.portfolio-temporary-link:after {
position: absolute;
content: "";
bottom: 1px;
right: 0;
height: 10px;
width: 10px;
border-top: 2px solid;
border-right: 2px solid;
transform: rotate(45deg);
transition: all 0.3s; }
.portfolio-temporary a.portfolio-temporary-link:hover::before,
.portfolio-temporary a.portfolio-temporary-link:hover::after {
right: -5px; }
.portfolio-temporary a.link-white {
color: #ffffff;
left: 50%;
bottom: 30px;
transform: translateX(-50%); }
.portfolio-temporary a.link-white:before {
background: #ffffff; }
.portfolio-temporary a.link-white:after {
border-color: #ffffff; }
.portfolio-temporary a.link-black {
color: #000000;
right: 100px;
bottom: 30px; }
.portfolio-temporary a.link-black:before {
background: #000000; }
.portfolio-temporary a.link-black:after {
border-color: #000000; }
.portfolio-temporary-bottom-slide .slide .item:focus {
outline: none; }
.portfolio-temporary-bottom-slide .slide .item a {
position: relative;
display: block;
text-decoration: none;
color: #ffffff; }
.portfolio-temporary-bottom-slide .slide .item a > div {
display: table;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0;
background: rgba(0, 9, 31, 0.95);
transition: all .3s; }
.portfolio-temporary-bottom-slide .slide .item a > div > div {
display: table-cell;
vertical-align: middle;
text-align: center;
padding-right: 15px;
padding-left: 15px; }
.portfolio-temporary-bottom-slide .slide .item a > div > div h3 {
font-family: 'Intro', sans-serif;
font-weight: 600;
text-transform: uppercase;
font-size: 38px;
margin-bottom: 18px; }
.portfolio-temporary-bottom-slide .slide .item a > div > div p {
font-family: 'Intro', sans-serif;
font-size: 20px;
margin-bottom: 90px; }
.portfolio-temporary-bottom-slide .slide .item a > div > div span {
display: inline-block;
text-indent: -999px;
position: relative;
width: 76px;
height: 10px; }
.portfolio-temporary-bottom-slide .slide .item a > div > div span:before {
background: #ffffff;
position: absolute;
content: "";
bottom: 5px;
right: 0;
height: 2px;
width: 100%;
transition: all 0.3s; }
.portfolio-temporary-bottom-slide .slide .item a > div > div span:after {
position: absolute;
content: "";
bottom: 1px;
right: 0;
height: 10px;
width: 10px;
border-top: 2px solid;
border-right: 2px solid;
transform: rotate(45deg);
transition: all 0.3s; }
.portfolio-temporary-bottom-slide .slide .item a img {
width: 100%;
height: 100%;
max-height: 380px;
min-height: 380px;
object-fit: cover; }
.portfolio-temporary-bottom-slide .slide .item a:hover div {
opacity: 1; }
.nav {
/* display: none; */
position: fixed;
z-index: -1;
top: 0;
left: 100%;
width: 100%;
height: 100%;
padding: 30px;
transition: all .2s ease-in-out;
color: #fff;
background: #00091F;
overflow: hidden; }
.nav .container {
position: relative;
z-index: 2; }
.nav:before {
content: "";
position: absolute;
width: 460px;
height: 460px;
left: -254px;
top: -147px;
background: url(../images/bg-bubbles/bubble_blue_344.svg) no-repeat center;
background-size: contain;
z-index: 1;
animation: floating 10s linear infinite; }
.nav:after {
content: "";
position: absolute;
width: 460px;
height: 460px;
right: -254px;
bottom: -147px;
background: url(../images/bg-bubbles/bubble_blue_light_413.svg) no-repeat center;
background-size: contain;
z-index: 1;
animation: floating 15s linear infinite; }
.nav a {
color: #fff;
text-decoration: none; }
.nav a:hover {
color: #2855AF; }
.nav.active {
display: block;
z-index: 200;
left: 0; }
.nav .col-md-4 {
padding-top: 50px;
margin: 0;
margin-top: 50px; }
.nav .col-md-4 ul {
list-style: none;
padding-left: 0; }
.nav .col-md-4.nav-services h2 {
padding: 15px 0;
font-size: 2.225rem;
cursor: pointer; }
.nav .col-md-4.nav-services a {
word-break: break-word;
font-size: 15px;
padding: 5px 0;
margin-bottom: 10px;
font-family: 'Montserrat';
font-weight: 400; }
.nav .col-md-4.nav-contact h2 {
padding: 15px 0;
font-size: 2.225rem;
cursor: pointer; }
.nav .col-md-4.nav-contact p {
font-size: 15px;
padding: 5px 0;
margin-bottom: 25px;
font-family: 'Montserrat';
font-weight: 600; }
.nav .col-md-4.nav-contact a {
font-size: 15px;
padding: 5px 0;
font-family: 'Montserrat';
font-weight: 600;
color: #FF068A; }
.nav ul li a {
display: block;
padding: 15px 0;
font-weight: 600;
font-size: 36px; }
.nav-footer {
/*position:absolute; bottom:0; left:0; right:0;*/
padding: 10px;
text-align: center; }
.item-feature {
margin-bottom: 30px;
margin-top: 30px; }
.item-feature img {
height: 46px; }
.item-feature p {
margin-top: 20px;
font-family: Montserrat;
font-style: normal;
font-weight: bold;
line-height: normal;
font-size: 16px; }
.icon-download {
width: 16px;
height: 16px;
vertical-align: middle;
margin-left: 5px; }
.section-shape .section-heading {
margin-bottom: 10px; }
.nav-portfolio {
margin-bottom: 45px !important; }
.nav-portfolio li {
font-family: Montserrat;
font-style: normal;
font-weight: 600;
line-height: normal;
margin-bottom: 20px;
font-size: 28px;
margin-right: 15px; }
.nav-portfolio li a {
padding: 10px;
color: #071D31; }
.nav-portfolio li a:hover {
color: #2855AF; }
.nav-portfolio li.active a {
border-bottom: 3px solid #2855AF; }
.box-request .step {
display: none; }
.box-request .step.active {
display: block;
animation-name: move_block;
animation-duration: .2s; }
.box-request.box-request_v2 {
box-shadow: 10px 10px 70px rgba(40, 85, 175, 0.05);
border-radius: 2rem !important;
border: 0;
padding: 3.3rem; }
.box-request.box-request_v2 h3 {
font-size: 1.8rem;
line-height: 2.15rem;
margin-bottom: 3.3rem;
max-width: 90%;
color: #2855AF; }
.box-request.box-request_v2 .dots > span {
background-color: transparent;
border: 2px solid #2855AF; }
.box-request.box-request_v2 .dots > span.active, .box-request.box-request_v2 .dots > span.done {
border-color: #2855AF !important;
background-color: #2855AF !important; }
.box-request.box-request_v2 .dots > span.active i, .box-request.box-request_v2 .dots > span.done i {
color: #ffffff;
opacity: 1; }
.box-request.box-request_v2 .dots > span i {
opacity: 0; }
@keyframes move_block {
from {
transform: translateX(200px);
opacity: 0; }
to {
transform: translateX(0px);
opacity: 1; } }
.slider-wrap div:focus, .slider-wrap div:active {
outline: 0 !important; }
.slider-wrap .slick-track {
outline: 0; }
.slider-wrap .stat-wrap {
font-size: 20px; }
.box-request {
border-radius: 10px !important; }
.box-request form {
max-width: 500px;
display: block;
margin-top: 30px; }
.box-request .dots {
text-align: center;
margin-bottom: 30px;
margin-top: 30px; }
.box-request .dots > span {
display: inline-block;
width: 20px;
height: 20px;
border-radius: 20px;
border: 1px solid #2855AF; }
.box-request .dots > span.active {
background: #2855AF; }
.item-portfolio strong {
color: #2855AF; }
.item-portfolio img {
max-width: 520px;
max-height: 520px;
display: block;
margin: 0 auto; }
.form-group label {
color: #333;
font-size: 18px; }
.form-group .form-control {
border: 0;
border-bottom: 1px solid #ccc;
padding-left: 0; }
.form-group .form-control:focus {
border-bottom: 1px solid #2855AF; }
.item-portfolio .row {
align-items: center; }
.item-portfolio article {
transform: translateY(200px);
opacity: 0;
transition: all .6s ease-in; }
.item-portfolio.slick-center article {
transition: all .6s ease-in;
transform: translateY(0);
opacity: 1; }
.dots-form span {
line-height: 18px;
font-size: 12px;
background: #54A6D3;
border-color: #54A6D3;
position: relative;
margin-left: 26px; }
.dots-form span:after {
content: "";
width: 20px;
height: 1px;
display: block;
background: #858586;
position: absolute;
top: 45%;
left: 23px; }
.dots-form span:last-child:after {
display: none; }
.dots-form span i {
color: #54A6D3; }
.dots-form span.done i {
color: #fff; }
.dots-form span.done {
background: #2855AF; }
.dots-form span.active i {
opacity: 0; }
.dots-form span.active {
background: #fff !important;
border-color: #2855AF !important; }
.shape-bg-why {
display: block;
position: absolute;
width: 70%;
height: 212px;
left: 0px;
top: 0px;
background: #2855AF;
opacity: 0.9;
z-index: -1;
border-radius: 0px 20px 20px 0px; }
.shape-right {
left: auto;
right: 0;
border-radius: 20px 0px 0px 20px; }
.item-pricing {
border-radius: 20px;
overflow: hidden;
border: 0;
width: 90%;
transition: 0.2s;
box-shadow: 4px 4px 30px rgba(62, 102, 183, 0.2), 0 20px 0 -10px #fff, 4px 4px 30px rgba(62, 102, 183, 0.2); }
.item-pricing ul {
line-height: 1.8;
padding-left: 20px; }
.item-pricing ul {
min-height: 200px; }
.item-pricing:hover {
transform: scale(1.1);
transition: 0.2s; }
.item-pricing .card-header {
background: #2855AF;
opacity: 0.9;
padding-top: 17px;
padding-bottom: 17px; }
.item-pricing .card-header.bg-dark {
background: none; }
.partners-wrap img {
max-width: 100%;
box-shadow: 4px 4px 30px rgba(62, 102, 183, 0.2); }
.bottom-box-contact-wrap {
justify-content: center;
display: flex; }
.bottom-box-contact-wrap .box {
max-width: 360px;
width: 100%; }
.slide-shape-wrap {
position: relative;
user-select: none; }
.slide-shape-wrap a {
position: absolute;
top: 38%; }
.slide-shape-wrap .slick-prev-shape {
left: -40px; }
.slide-shape-wrap .slick-next-shape {
right: -40px; }
.slide-shape-wrap .item-slide {
padding-left: 10px;
user-select: none;
padding-right: 10px;
padding-bottom: 20px;
outline: none; }
.envelopes {
width: 600px;
height: 600px;
position: absolute;
left: 0;
bottom: 0;
display: block; }
.envelopes img {
position: absolute;
transform: rotate(6deg) scale(0.7, 0.5);
left: 155px;
top: 262px;
transition: all .5s; }
.envelopes.spread .envelope:nth-child(1) {
left: 181px;
top: 243px;
transform: rotate(-65deg) scale(0.8); }
.envelopes.spread .envelope:nth-child(2) {
left: 476px;
top: 294px;
transform: rotate(16deg) scale(0.6); }
.envelopes.spread .envelope:nth-child(3) {
left: 453px;
top: 187px;
transform: rotate(-76deg) scale(0.6); }
.envelopes.spread .envelope:nth-child(4) {
left: 512px;
top: 88px;
transform: rotateZ(67deg) scale(0.4); }
.envelopes.spread .envelope:nth-child(5) {
left: 427px;
top: 105px;
transform: rotate(-26deg) scale(0.5); }
.envelopes.spread .envelope:nth-child(6) {
left: 246px;
top: 355px;
transform: rotate(35deg) scale(0.7); }
.envelopes.spread .envelope:nth-child(7) {
left: 379px;
top: 337px;
transform: rotate(1deg) scale(0.7); }
.envelopes.spread .envelope:nth-child(8) {
left: 396px;
top: 242px;
transform: rotate(-55deg) scale(0.7); }
.envelopes.spread .envelope:nth-child(9) {
left: 361px;
top: 181px;
transform: rotate(-25deg); }
.envelopes.spread .envelope:nth-child(10) {
left: 318px;
top: 279px;
transform: rotate(-16deg); }
.envelopes.spread .envelope:nth-child(11) {
left: 274px;
top: 218px;
transform: rotate(-62deg) scale(0.8); }
.envelopes.spread .envelope:nth-child(12) {
left: 236px;
top: 128px;
transform: rotate(-66deg) scale(0.7); }
.pulse-play {
position: absolute;
left: -60px;
top: 40%;
display: block;
z-index: 99;
user-select: none; }
.pulse-play:hover {
transform: scale(1.2);
transition: .3s; }
.pulse-play:focus {
outline: 0 !important;
border: 0; }
.pulse-round {
position: absolute;
border: 5px solid #2855AF;
left: -15px;
top: -15px;
border-radius: 100%;
display: block;
animation: pulse 1.5s ease-out;
animation-iteration-count: infinite;
height: 150px;
width: 150px; }
.pulse-round:focus {
outline: 0 !important; }
@keyframes move-shake {
0%, 100%, 20%, 50%, 80% {
-webkit-transform: translateX(0) rotate(0);
transform: translateX(0) rotate(0); }
40% {
-webkit-transform: translateX(30px) rotate(3deg);
transform: translateX(30px) rotate(3deg); }
60% {
-webkit-transform: translateX(15px) rotate(-3deg);
transform: translateX(15px) rotate(-3deg); } }
@keyframes pulse {
0% {
transform: scale(0.7);
opacity: .9; }
50% {
transform: scale(1.2);
opacity: 0; }
51% {
transform: scale(0.7);
opacity: 0; }
52% {
transform: scale(0.7);
opacity: 1; }
100% {
transform: scale(1.2);
opacity: 0; } }
.section-steps-reklama .arrow-next img {
max-width: 20px;
margin-top: -30px; }
.shape-bg-why-red {
background: linear-gradient(90deg, #FF068A 0%, #E62753 100%);
display: block;
position: absolute;
width: 70%;
height: 212px;
left: 0px;
top: 0px;
opacity: 0.9;
z-index: -1;
border-radius: 0px 5px 5px 0px; }
.showcase-reklama .float-right {
max-width: 80%; }
.img-showcase-reklama {
position: relative;
margin-top: 70px;
background: #5377BF;
box-shadow: 4px 4px 25px rgba(40, 85, 175, 0.2);
border-radius: 20px;
width: 470px;
height: 260px; }
.img-showcase-reklama img {
position: absolute;
bottom: 60px;
left: 50%;
transform: translateX(-50%); }
.img-showcase-reklama .title {
color: #fff;
font-weight: bold;
position: absolute;
bottom: 20px;
left: 30px;
width: calc(100% - 60px); }
.img-showcase-reklama .num {
float: right;
color: #fff; }
.item-benefit-reklama {
border-radius: 10px;
background: #FFFFFF;
display: flex;
box-shadow: 4px 4px 30px rgba(49, 22, 248, 0.3);
margin-bottom: 30px;
height: 120px;
position: relative; }
.item-benefit-reklama img {
margin-left: 7px; }
.item-benefit-reklama p {
margin-bottom: 0;
font-weight: bold; }
.item-benefit-reklama .hover {
transition: .3s;
position: absolute;
top: 0;
height: 100%;
left: 0%;
opacity: 0;
transform: scale(0.1);
width: 100%;
bottom: 0;
padding: 20px;
border-radius: 10px;
color: #fff;
text-align: center;
background: #2855AF; }
.item-benefit-reklama:hover .hover {
opacity: 1;
transition: .3s;
transform: scale(1);
font-size: 18px; }
.items-tool-reklama-wrap p {
font-size: 20px;
margin-top: 20px;
font-weight: bold; }
.item-step-reklama {
margin-bottom: 50px;
min-height: 180px;
border: 0;
overflow: hidden;
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(40, 85, 175, 0.1);
border-radius: 10px;
margin-right: 15px;
margin-left: 15px; }
.item-step-reklama .card-title {
position: relative;
padding-left: 25px;
font-size: 13px;
text-transform: uppercase;
line-height: 2;
color: #444F60;
margin-top: 10px;
font-weight: bold; }
.item-step-reklama .card-title:after {
content: "";
height: 3px;
width: 50px;
display: block;
position: absolute;
bottom: -5px;
background: #2855AF; }
.item-step-reklama ul {
margin: 0;
padding-left: 20px;
font-size: 14px; }
.item-step-reklama .corner {
position: absolute;
width: 45px;
height: 45px;
font-size: 20px;
padding-top: 5px;
padding-left: 12px;
color: #fff;
font-weight: bold;
left: 0;
top: 0;
background: #2855AF;
border-radius: 5px 0px 100px; }
.img-arrow {
max-width: 16px;
position: absolute;
top: 35%;
right: -10px; }
.order-tarif {
display: flex;
background: #fff;
align-items: stretch;
margin-top: 70px; }
.order-tarif .icon {
padding: 20px;
display: flex;
align-items: center; }
.order-tarif .text {
padding: 30px;
display: flex;
align-items: center; }
.order-tarif .action {
padding: 30px;
display: flex;
align-items: center;
margin-left: auto; }
.item-why-reklama {
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(62, 102, 183, 0.2);
border-radius: 5px;
padding: 15px 10px;
display: flex;
height: 100%; }
.item-why-reklama .iconbox img {
height: 46px; }
.section-steps-seo .arrow-next img {
max-width: 15px;
margin-top: -30px; }
.arrow-wrap {
position: absolute;
width: 180px;
top: 0px;
color: #2855AF; }
.arrow-wrap img {
left: -20px;
top: 5px;
position: absolute; }
.btn-action-wrap-seo .btn {
min-width: 200px;
margin-left: 5px;
margin-right: 5px; }
.btn-action-wrap-seo .btn:hover {
transform: translateY(-4px);
transition: .2s;
box-shadow: 1px 8px 15px rgba(0, 0, 0, 0.3);
color: #fff; }
.btn-action-wrap-seo .btn-primary:after {
display: none; }
.btn-action-wrap-seo .btn-primary:before {
display: none; }
.item-serv-seo {
margin-bottom: 30px;
height: 120px;
position: relative;
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(40, 85, 175, 0.15);
border-radius: 10px;
display: flex; }
.item-serv-seo img {
margin-left: 7px;
width: 50px;
height: 50px; }
.item-serv-seo p {
margin-bottom: 0;
font-weight: bold; }
.item-serv-seo .hover {
transition: .3s;
text-align: center;
position: absolute;
top: -7%;
height: 114%;
left: -5%;
opacity: 0;
transform: scale(0.1);
width: 110%;
bottom: 0;
background: linear-gradient(90deg, #3FA6D7 0%, #2855AF 100%);
padding: 30px;
border-radius: 0.25rem;
color: #fff;
font-size: 12px;
display: flex;
justify-content: center;
flex-direction: column;
text-align: center; }
.item-serv-seo:hover .hover {
opacity: 1;
transition: .3s;
transform: scale(1); }
.text-slide-portfolio {
font-size: 19px; }
.text-slide-portfolio .btn {
margin-top: 20px; }
.item-step-seo {
margin-bottom: 30px;
border: 0;
overflow: hidden; }
.item-step-seo .card-body {
border-left: 15px solid;
overflow: hidden;
border-color: #2855AF; }
.item-step-seo .card-title {
position: relative;
padding-left: 15px;
line-height: 2;
color: #444F60;
z-index: 3;
font-weight: bold; }
.item-step-seo .card-title:before {
position: absolute;
z-index: -1;
content: attr(data-num);
color: #E8F0FF;
left: -7px;
top: -5px;
font-size: 60px;
font-weight: bold;
line-height: 1; }
.item-step-seo ul {
margin: 0;
padding-left: 20px;
font-size: 12px;
color: #858586; }
.tools-seo-wrap p {
font-size: 20px;
margin-top: 20px;
font-weight: bold; }
.item-tool-seo {
padding: 7px;
width: 100px;
height: 100px;
display: inline-block;
text-align: center;
align-items: center;
justify-content: center;
padding-top: 15px; }
.line-tool-seo {
height: 5px;
width: 70px;
background: #2855AF;
display: inline-block;
transform: translateY(-30px); }
.item-why-seo {
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(62, 102, 183, 0.2);
border-radius: 5px;
padding: 15px 10px;
display: flex;
height: 100%; }
.item-why-seo .iconbox {
width: 100%; }
.item-why-seo .iconbox img {
height: 46px; }
.page-seo_result .img_content .positio_absolute {
position: absolute;
left: 50%;
top: 0;
width: 320px;
height: 100%;
margin-left: -160px; }
.page-seo_result .img_content .positio_absolute img {
position: absolute;
top: 0;
left: 0; }
.page-seo_result .img_content .positio_absolute img.table_animate {
animation-iteration-count: infinite;
animation-name: bounce-1;
animation-timing-function: linear; }
.page-seo_result .img_content .positio_absolute img.table_animate:nth-child(2) {
animation-duration: 13s; }
.page-seo_result .img_content .positio_absolute img.table_animate:nth-child(3) {
animation-duration: 12s; }
.page-seo_result .img_content .positio_absolute img.table_animate:nth-child(4) {
animation-duration: 15s; }
.page-seo_result .img_content .positio_absolute img.table_animate:nth-child(5) {
animation-duration: 16s; }
.page-seo_result .img_content > img {
display: block;
margin: 0 auto;
position: relative;
z-index: 2; }
.item-feature-smm img {
height: 46px; }
.item-feature-smm p {
margin-top: 20px;
font-family: Montserrat;
font-style: normal;
font-weight: bold;
line-height: normal;
font-size: 16px; }
.img-intro-smm {
max-width: 580px;
margin-top: 80px; }
.item-why-smm {
margin-bottom: 30px; }
.item-why-smm .icon {
text-align: center; }
.item-why-smm img {
max-width: 150px;
margin-left: -40px; }
.item-why-smm p {
padding-left: 30px;
margin-left: 23%;
font-weight: bold;
font-size: 16px; }
.img-step-site + .animate-rotate {
left: 10%;
top: 0;
max-width: 80%; }
.step-smm {
position: relative;
margin-bottom: 60px;
margin-left: 45px; }
.step-smm .num {
font-size: 110px;
line-height: 1;
opacity: 0.1;
color: #2855AF;
font-weight: bold;
position: absolute;
left: 0;
top: 0;
transform: translate(-50%, -40%); }
.step-smm .title {
font-size: 32px;
font-weight: bold;
position: relative;
margin-bottom: 20px; }
.item-tool-smm .img-wrap {
padding: 7px;
width: 100px;
height: 100px;
display: inline-block;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
text-align: center;
align-items: center;
justify-content: center;
border-radius: 100%;
margin-bottom: 15px; }
.item-tool-smm p {
font-weight: bold;
font-size: 18px; }
.line-tool-smm {
height: 5px;
width: 70px;
background: #2855AF;
display: inline-block;
position: relative;
top: -25px; }
.item-whyus-smm {
margin-bottom: 45px;
margin-top: 45px; }
.item-whyus-smm .icon {
text-align: center; }
.item-whyus-smm img {
max-width: 130px;
margin-left: -40px; }
.item-whyus-smm p {
padding-left: 30px;
margin-left: 16%;
font-weight: normal;
font-size: 18px; }
.block-cert-smm {
border-radius: 7px;
color: #fff;
position: relative;
z-index: 10;
background: #0782bd;
padding: 60px 30px;
min-height: 410px;
background-image: linear-gradient(to right, #0782bd, #2b26ef); }
.block-cert-wrap-smm {
position: relative;
margin-left: 30px;
margin-right: 30px; }
.block-cert-wrap-smm .stack1 {
display: block;
position: absolute;
height: 90%;
width: 110%;
top: 5%;
left: -5%;
background: linear-gradient(90deg, rgba(12, 154, 184, 0.2) 0%, rgba(69, 45, 248, 0.2) 100%);
border-radius: 5px; }
.block-cert-wrap-smm .stack2 {
display: block;
position: absolute;
height: 95%;
width: 105%;
top: 2.5%;
left: -2.5%;
background: linear-gradient(90deg, rgba(12, 154, 184, 0.6) 0%, rgba(69, 45, 248, 0.6) 100%);
border-radius: 5px; }
.smm_bottom_content .retangle_shape .retangle_shape_content {
padding-right: 4rem; }
.smm_bottom_content .retangle_shape .retangle_shape_content .section-heading {
margin-bottom: 20px; }
.smm_bottom_content .retangle_shape .retangle_shape_content .section-heading .bg-num {
color: #fff;
opacity: .1; }
.smm_bottom_content img {
display: block;
margin: 0 auto 4rem auto;
max-width: 100%; }
.section-works-foto {
overflow: hidden; }
.section-works-foto .slick-next {
right: 45%; }
.section-works-foto .slick-prev {
left: 45%; }
.section-works-foto .slick-prev, .section-works-foto .slick-next {
top: 90%; }
.accordion {
max-width: 90%; }
.accordion-heading {
cursor: pointer;
margin-bottom: 30px;
display: block; }
.accordion-heading img:first-child {
margin-right: 20px; }
.accordion-heading .icon {
float: right;
width: 20px; }
.accordion-heading .title {
font-weight: bold;
font-size: 24px; }
.accordion-content {
display: none;
padding-left: 55px;
padding-bottom: 10px; }
.accordion-heading.active + .accordion-content {
display: block; }
.accordion-heading .icon {
transform: rotate(0deg);
transition: 0.3s; }
.accordion-heading.active .icon {
transform: rotate(180deg); }
.item-serv-foto {
text-align: center;
margin-bottom: 30px;
min-height: 200px;
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(49, 22, 248, 0.3);
border-radius: 5px; }
.item-serv-foto img {
height: 54px;
width: auto; }
.item-serv-foto .num {
padding-top: 7px;
color: #fff;
font-size: 20px;
font-weight: bold;
background: #2855AF;
width: 100px;
height: 50px;
text-align: center;
display: inline-block;
border-radius: 0 0 100px 100px;
margin-bottom: 15px;
transition: all .2s; }
.item-serv-foto p {
margin-top: 15px;
font-weight: bold; }
.item-serv-foto:hover {
background: #2855AF;
transition: all .2s;
color: #fff; }
.item-serv-foto:hover .num {
background: #fff;
color: #2855AF; }
.item-serv-foto:hover img {
filter: brightness(0) invert(1); }
.step-foto {
position: relative;
margin-top: 40px; }
.step-foto .num {
font-size: 110px;
color: #DBE7FC;
font-weight: bold;
position: absolute;
z-index: -1;
z-index: -1;
top: -40px;
line-height: 1;
left: -40px; }
.item-work-foto {
position: relative; }
.item-work-foto .pulse-play {
position: absolute;
left: -60px;
top: 40%;
display: block; }
.item-work-foto .pulse-play:hover {
transform: scale(1.2);
transition: .3s; }
.col-img-step-fotomoto {
position: relative; }
.col-img-step-fotomoto .img-fluid {
display: block;
margin: 0 auto;
position: relative;
z-index: 1; }
.col-img-step-fotomoto .animate-rotate {
position: absolute;
top: 40px;
left: 50%;
margin-left: -150px;
width: 300px; }
.bg-shape-foto {
position: absolute;
top: -70px;
right: -200px;
z-index: -1;
width: 600px;
height: 600px;
border-radius: 100%;
display: block;
background: #2855AF; }
.img-why-foto {
float: right; }
.why-wrap-fotomoto {
margin-top: -20px; }
.item-why-fotomoto {
background: #FFFFFF;
box-shadow: 4px 4px 7px rgba(60, 101, 182, 0.2);
border-radius: 5px;
padding: 15px 10px;
display: flex;
height: 180px; }
.item-why-fotomoto .iconbox {
width: 100%; }
.item-why-fotomoto .iconbox img {
height: 70px; }
.section-order-bot .box-request {
margin-top: 200px; }
.card-bot-about {
position: relative;
background: #2855AF;
border-radius: 5px;
padding: 30px;
color: #fff;
margin-left: 30px;
margin-right: 30px;
height: 85%;
margin-top: 3%; }
.card-bot-about .section-heading {
margin-top: 0;
margin-bottom: 0; }
.card-bot-about .section-heading .bg-num {
transform: translateY(-20px); }
.card-bot-about .stack1 {
display: block;
position: absolute;
height: 10px;
width: 95%;
top: -10px;
left: 2.5%;
background: rgba(40, 85, 175, 0.5);
border-radius: 5px 5px 0px 0px; }
.card-bot-about .stack2 {
display: block;
position: absolute;
height: 10px;
width: 90%;
top: -20px;
left: 5%;
background: rgba(40, 85, 175, 0.2);
border-radius: 5px 5px 0px 0px; }
.card-bot-what-wrap {
position: relative; }
.card-bot-what-wrap .backside {
text-align: center;
font-size: 14px;
padding: 15px;
overflow: hidden;
display: block;
position: absolute;
height: 100%;
width: 90%;
top: -10px;
left: 5%;
background: #FFFFFF;
border: 1px solid #E5E3FF;
box-sizing: border-box;
box-shadow: 4px 4px 20px rgba(49, 22, 248, 0.1);
border-radius: 10px;
z-index: 1; }
.card-bot-what-wrap:hover .card-bot-what {
transition: all .3s;
transform: translate(100%);
opacity: 0;
visibility: hidden; }
.card-bot-what {
position: relative;
z-index: 5;
transition: all .3s;
transform: translate(0);
opacity: 1;
margin-bottom: 45px;
padding: 10px;
text-align: center;
background: #FFFFFF;
border: 1px solid #E5E3FF;
box-sizing: border-box;
box-shadow: 4px 4px 20px rgba(49, 22, 248, 0.1);
border-radius: 10px; }
.card-bot-what img {
margin-top: 15px;
margin-bottom: 15px; }
.card-bot-what p {
font-weight: bold; }
.list-steps-bot li {
font-weight: bold;
margin-bottom: 10px;
font-size: 20px;
list-style: none; }
.list-steps-bot li i {
background: #7CCCDB;
display: inline-block;
width: 27px;
height: 27px;
opacity: 0.9;
font-style: normal;
line-height: 27px;
text-align: center;
border-radius: 30px;
color: #fff;
margin-right: 20px; }
.img-step-bot {
position: relative; }
.img-step-bot img {
position: relative;
z-index: 2;
display: block;
margin: 0 auto;
max-width: 100%; }
.img-step-bot img.animate-table {
position: absolute;
top: 80px;
left: 22%;
max-width: 51%;
animation-duration: 16s;
animation-iteration-count: infinite;
animation-name: bounce-1;
animation-timing-function: linear;
z-index: 1; }
.img-step-bot img.animate-rotate {
z-index: 0;
position: absolute;
top: 50px;
left: 50%;
margin-left: -160px;
width: 320px; }
.slider-controls-bottype {
position: absolute;
top: 23px;
right: 60px; }
.slider-controls-bottype a {
margin: 5px; }
.icon-bot-why {
margin-bottom: 20px; }
.icon-bot-why .icon {
margin-bottom: 10px; }
.icon-bot-why .title {
color: #2855AF; }
.icon-bot-why p {
color: #444F60;
max-width: 310px; }
.img-bot-why {
position: relative; }
.img-bot-why .animate-rotate {
position: absolute;
top: 0;
left: 50%;
margin-left: -96px;
width: 192px; }
.img-bot-why .img-robot {
position: absolute;
top: 80px;
left: 50%;
margin-left: -48px;
width: 96px;
animation-duration: 16s;
animation-iteration-count: infinite;
animation-name: bounce-1;
animation-timing-function: linear; }
.img-bot-why .img-fluid {
display: block;
margin: 0 auto;
position: relative;
z-index: 1; }
.img-bot-why .gear_contetnt {
position: absolute;
left: 15%;
top: 50px;
width: 80px;
height: 70px; }
.img-bot-why .gear_contetnt img {
position: absolute;
animation-name: rotate;
animation-duration: 30s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
.img-bot-why .gear_contetnt img:nth-child(1) {
top: 21px;
left: 0; }
.img-bot-why .gear_contetnt img:nth-child(2) {
top: 0;
left: 27px; }
.img-bot-why .gear_contetnt img:nth-child(3) {
bottom: 0;
right: 0; }
.bot_keys_slider.box {
box-shadow: 10px 10px 40px rgba(40, 85, 175, 0.1), 0 20px 0 -10px #fff, 10px 10px 40px rgba(40, 85, 175, 0.1); }
.order-tarif-bot {
box-shadow: 4px 4px 35px rgba(40, 85, 175, 0.1), 0 20px 0 -10px #fff, 4px 4px 35px rgba(40, 85, 175, 0.1);
display: flex;
background: #fff;
align-items: stretch;
margin-top: 50px; }
.order-tarif-bot .icon {
padding: 20px;
display: flex;
align-items: center; }
.order-tarif-bot .text {
padding: 45px;
padding-right: 0;
display: flex;
align-items: center; }
.order-tarif-bot h4 {
font-weight: bold;
font-size: 30px;
margin-bottom: 0; }
.order-tarif-bot .action {
padding: 30px;
display: flex;
align-items: center;
margin-left: auto; }
.items-type-bot-wrap {
margin-top: -20px; }
.item-type-bot {
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(49, 22, 248, 0.3);
border-radius: 5px;
padding: 15px 10px;
display: flex;
height: 100%; }
.item-type-bot .iconbox {
width: 100%; }
.item-type-bot .iconbox img {
height: 46px; }
.item-type-mobile {
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(49, 22, 248, 0.3);
border-radius: 5px;
padding: 15px 10px;
display: flex;
height: 140px; }
.item-type-mobile .iconbox {
width: 100%; }
.item-type-mobile .iconbox p {
word-break: break-word; }
.item-type-mobile .iconbox img {
height: 46px; }
.heading-types-mobile {
margin-top: -50px;
max-width: 60%; }
.heading-step-mobile {
margin-left: -90px; }
.mobile-portfolio .slick-prev {
left: 0; }
.mobile-portfolio .slick-next {
right: 0; }
.mobile-portfolio .item-portfolio article {
margin: 30px; }
.mobile-portfolio .item-portfolio img {
max-width: 750px;
max-height: 575px; }
.slider-controls-types-mobile a {
margin: 5px; }
.item-step-mobile {
margin-bottom: 50px; }
.item-step-mobile .icon-num {
color: #fff;
width: 40px;
height: 40px;
font-size: 18px;
font-weight: bold;
border-radius: 40px;
display: block;
background: #2855AF;
text-align: center;
line-height: 40px;
margin-bottom: 15px; }
.item-step-mobile .title {
font-size: 20px;
font-weight: bold;
margin-bottom: 15px; }
.section-steps-mobile {
background-repeat-y: no-repeat; }
.item-mobile-method {
margin-bottom: 70px;
position: relative; }
.item-mobile-method .num {
width: 80px;
height: 80px;
display: block;
border: 6px solid #2855AF;
text-align: center;
line-height: 70px;
margin-bottom: 10px;
color: #E1E0E9;
font-size: 36px;
font-weight: 800;
border-radius: 50%; }
.item-mobile-method .line {
width: 100px;
height: 2px;
background-color: #ddd;
display: inline-block;
position: absolute;
top: 35px;
left: 52%; }
.mobile-method-wrap {
transform: translateX(-50px); }
.mobile-method-wrap .backside {
background: #3FA6D7;
border-radius: 120px 5px 5px 5px;
display: block;
height: 100%;
width: 100%;
position: absolute;
z-index: 1;
left: -80px;
top: -80px;
padding-left: 30px;
padding-top: 30px; }
.block-method-about-mobile {
position: relative;
z-index: 3;
background: #2855AF;
border-radius: 5px 5px 120px 5px;
color: #fff;
padding: 60px; }
.block-method-about-mobile .title {
margin-bottom: 20px;
margin-top: 20px; }
.icon-mobile-why {
margin-top: 30px; }
.icon-mobile-why .title {
font-weight: bold; }
.icon-mobile-why .icon {
margin-bottom: 20px; }
.item-why-mobile {
text-align: center;
margin-bottom: 50px; }
.item-why-mobile .icon-shape {
border-radius: 100%;
margin-bottom: 20px;
line-height: 80px;
width: 80px;
height: 80px;
display: inline-block;
background: #2855AF;
box-shadow: 2px 4px 8px rgba(47, 87, 223, 0.4); }
.item-why-mobile .title {
font-weight: bold; }
.slider-controls-areas-mobile {
position: absolute;
top: 23px;
left: 60px; }
.slider-controls-areas-mobile a {
margin: 5px; }
.new_carusel_style {
padding-top: 130px; }
.new_carusel_style .text {
position: absolute;
right: 10%;
top: 0;
color: #F8F7FC;
font-size: 150px;
line-height: .5;
font-weight: 800; }
.new_carusel_style .shape-bg-aud {
top: 70px;
z-index: 0;
background: #00091F; }
.new_carusel_style .bg-icons {
position: absolute;
right: 0;
top: 70px;
height: 70px;
width: 71%; }
.new_carusel_style .bg-icons img {
position: absolute; }
.new_carusel_style .bg-icons img:nth-child(1) {
top: 10px;
left: 0;
animation: floating 20s linear infinite; }
.new_carusel_style .bg-icons img:nth-child(2) {
bottom: 0;
left: 25%;
animation: anime-top-bottom 20s linear infinite; }
.new_carusel_style .bg-icons img:nth-child(3) {
top: -10px;
left: 45%;
animation: rotate-float 20s linear infinite reverse; }
.new_carusel_style .bg-icons img:nth-child(4) {
bottom: 0;
left: 67%;
animation: anime-left-right 20s linear infinite; }
.new_carusel_style .bg-icons img:nth-child(5) {
top: 5px;
right: 10px;
animation: floating 20s linear infinite; }
.new_carusel_style .heading-types-mobile {
margin-top: -15px; }
.new_carusel_style .heading-types-mobile h2 {
color: #072A50; }
.new_carusel_style .item-type-mobile {
position: relative;
overflow: hidden;
transition: all .3s;
height: 150px;
box-shadow: 4px 4px 16px -3px rgba(49, 22, 248, 0.3); }
.new_carusel_style .item-type-mobile:after {
content: "";
width: 100%;
height: 0;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
background: #2834DF;
transition: height .3s; }
.new_carusel_style .item-type-mobile:hover:after {
height: 120%; }
.new_carusel_style .item-type-mobile:hover .iconbox span img.default {
opacity: 0; }
.new_carusel_style .item-type-mobile:hover .iconbox span img.hover {
opacity: 1; }
.new_carusel_style .item-type-mobile:hover .iconbox p {
color: #ffffff; }
.new_carusel_style .item-type-mobile a {
position: relative;
top: auto;
left: auto;
display: block;
width: 100%;
height: 100%; }
.new_carusel_style .item-type-mobile a:focus, .new_carusel_style .item-type-mobile a:active, .new_carusel_style .item-type-mobile a:hover {
outline: none;
text-decoration: none; }
.new_carusel_style .item-type-mobile .iconbox {
position: relative;
z-index: 2; }
.new_carusel_style .item-type-mobile .iconbox span {
position: relative;
width: 40px;
height: 40px;
display: block;
margin: 0 auto 15px auto; }
.new_carusel_style .item-type-mobile .iconbox span img {
position: absolute;
left: 0;
top: 0;
max-width: 100%;
max-height: 100%;
margin-bottom: 0;
transition: all .3s; }
.new_carusel_style .item-type-mobile .iconbox span img.default {
opacity: 1; }
.new_carusel_style .item-type-mobile .iconbox span img.hover {
opacity: 0; }
.new_carusel_style .item-type-mobile .iconbox p {
color: #1A2236;
transition: all .3s; }
.contentn_video_w100 {
overflow: hidden;
position: relative;
display: block;
width: 100%;
height: 100%;
background: #2855AF;
border: 10px solid #2855AF;
border-radius: 0 55px;
line-height: 0; }
.contentn_video_w100:after {
content: "";
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: white;
border-radius: 0 50px;
opacity: .4;
visibility: visible;
transition: all .3s; }
.contentn_video_w100 img {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 0 55px;
visibility: visible;
opacity: 1; }
.contentn_video_w100 svg {
cursor: pointer;
max-width: 50px;
max-height: 50px;
position: absolute;
right: 15px;
bottom: 15px;
transform: translateX(75px);
opacity: 0;
visibility: hidden;
transition: all .3s; }
.contentn_video_w100.active:after {
visibility: hidden;
opacity: 0; }
.contentn_video_w100.active > a {
opacity: 0 !important;
visibility: hidden !important; }
.contentn_video_w100.active img {
visibility: hidden;
opacity: 0; }
.contentn_video_w100.active svg {
z-index: 2;
transform: translateX(0);
visibility: visible;
opacity: 1; }
.contentn_video_w100 > a.pulse-play {
transition: all .3s;
visibility: visible;
opacity: 1;
z-index: 2;
top: 50%;
left: 50%;
height: 130px;
width: 130px;
margin-top: -65px;
margin-left: -65px; }
.contentn_video_w100 > a.circle-ripple {
background: url(../images/my-warehouse/play.svg) no-repeat 24px center;
background-size: 2.2rem;
background-color: #2855AF;
width: 5rem;
height: 5rem;
border-radius: 50%;
animation: ripple 0.7s linear infinite;
display: block;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
cursor: pointer;
z-index: 1;
visibility: visible;
opacity: 1;
transition: all .3s; }
.contentn_video_w100 > a.circle-ripple:focus, .contentn_video_w100 > a.circle-ripple:hover {
outline: none;
text-decoration: none; }
.contentn_video_w100 video {
width: 100%;
height: 100%;
border-radius: 0 50px; }
.card-brand-what {
position: relative;
text-align: center;
margin-bottom: 30px;
background: #FFFFFF;
border: 1px solid #E5E3FF;
box-sizing: border-box;
box-shadow: 4px 4px 30px rgba(40, 85, 175, 0.1);
border-radius: 10px;
padding: 20px; }
.card-brand-what:before {
position: absolute;
content: "";
width: 90%;
height: 10px;
border: 1px solid #E5E3FF;
border-bottom: 0;
top: -11px;
left: 5%;
border-radius: 10px 10px 0 0;
box-shadow: 4px 4px 30px rgba(40, 85, 175, 0.1);
background-color: rgba(255, 255, 255, 0.4); }
.card-brand-what .icon-wrap {
margin-bottom: 15px; }
.card-brand-what p {
margin-bottom: 0;
font-size: 12px; }
.box-request.brand {
border-color: #1aa8af; }
.slide-control-portfolio-brand {
width: 80px;
position: absolute;
right: 25%;
top: 100%; }
.slide-control-portfolio-brand + .slick-slider .item-portfolio .row {
align-items: inherit; }
.slide-control-portfolio-brand + .slick-slider .item-portfolio .row .content_img {
position: relative;
display: table; }
.slide-control-portfolio-brand + .slick-slider .item-portfolio .row .content_img img {
position: relative;
z-index: 2; }
.slide-control-portfolio-brand + .slick-slider .item-portfolio .row .content_img:after {
content: "";
position: absolute;
width: 70%;
height: calc( 100% - 15px );
right: -23px;
top: 28px;
background: #7CCCDB;
box-shadow: 4px 4px 25px rgba(124, 204, 219, 0.2);
border-radius: 20px; }
.img-stepline-brand {
margin-top: -120px;
max-width: 100%; }
.step-wrapper {
top: -100px; }
.step-wrapper .icon-finish {
position: absolute;
right: 3%;
bottom: 3%;
opacity: 0;
visibility: hidden; }
.linestep {
visibility: hidden;
opacity: 0;
text-align: center;
max-width: 250px;
position: absolute; }
.linestep .num {
color: #fff;
border-radius: 100px;
display: inline-block;
width: 40px;
height: 40px;
text-align: center;
line-height: 40px;
font-weight: bold;
background: #2855AF; }
.linestep p {
width: 250px;
position: absolute;
margin-top: 7px;
font-weight: 500;
line-height: normal;
font-size: 18px; }
.linestep p.top {
bottom: 50px;
left: -110px; }
.linestep p.bottom {
left: -110px; }
.linestep p.left {
width: 200px;
right: 34px;
top: -17px; }
.linestep p.right {
width: 200px;
left: 34px;
top: -17px; }
.path {
visibility: hidden; }
.move-line .path {
visibility: visible;
stroke-dasharray: 3700;
stroke-dashoffset: 3700;
animation: moveline 2.5s linear forwards; }
@keyframes moveline {
to {
stroke-dashoffset: 0; } }
.move-line .linestep,
.move-line .icon-finish {
visibility: hidden;
opacity: 0;
animation-name: showstepline;
animation-duration: .2s;
animation-fill-mode: forwards; }
.move-line .linestep1 {
animation-delay: .3s; }
.move-line .linestep2 {
animation-delay: .5s; }
.move-line .linestep3 {
animation-delay: .7s; }
.move-line .linestep4 {
animation-delay: .9s; }
.move-line .linestep5 {
animation-delay: 1.1s; }
.move-line .linestep6 {
animation-delay: 1.5s; }
.move-line .linestep7 {
animation-delay: 1.7s; }
.move-line .linestep8 {
animation-delay: 1.9s; }
.move-line .icon-finish {
animation-delay: 2.1s; }
@keyframes showstepline {
from {
transform: scale(0.2);
opacity: 0; }
to {
visibility: visible;
transform: scale(1);
opacity: 1; } }
.item-dev-brand {
text-align: center;
position: relative;
margin-bottom: 30px;
margin-right: 20px;
background: #FFFFFF;
border: 1px solid #E5E3FF;
box-shadow: 4px 4px 7px rgba(40, 85, 175, 0.1);
border-radius: 10px; }
.item-dev-brand .card-body {
padding: 15px 10px; }
.item-dev-brand .title {
font-size: 16px;
font-weight: bold;
margin-top: 15px; }
.item-dev-brand .circle {
line-height: 90px;
width: 90px;
height: 90px;
display: inline-block;
background: #ECEBFF; }
.item-dev-brand p {
font-size: 14px; }
.item-dev-brand .btn {
border-radius: 30px;
line-height: 50px;
min-width: auto;
width: 50px;
height: 50px;
padding: 0;
transition: all .2s;
background: #ECEBFF;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
margin-bottom: -50px;
position: relative;
z-index: 10; }
.item-dev-brand .btn span {
display: none; }
.item-dev-brand .btn:hover {
width: auto;
padding: 0 20px;
transition: all .2s;
background: #2855AF;
color: #fff; }
.item-dev-brand .btn:hover span {
display: block; }
.item-dev-brand .btn:hover i {
display: none; }
.item-dev-brand .layer {
position: absolute;
top: 100%;
width: 90%;
left: 5%;
height: 10px;
border-radius: 0 0 10px 10px;
background: rgba(255, 255, 255, 0.4);
border: 1px solid #E5E3FF;
box-shadow: 4px 4px 30px rgba(40, 85, 175, 0.1);
display: block;
z-index: 1; }
.heading-why-brand {
padding-top: 70%;
max-width: 300px;
position: relative;
z-index: 20; }
.icon-brand-why {
margin-bottom: 50px;
position: relative;
width: 250px; }
.icon-brand-why .num {
font-size: 80px;
color: #7CCCDB;
opacity: 0.1;
position: absolute;
top: 20px;
left: -60px;
z-index: 1;
font-weight: bold; }
.icon-brand-why .icon {
margin-bottom: 10px; }
.icon-brand-why .title {
font-size: 16px;
font-weight: 500;
position: relative;
z-index: 3; }
.icon-brand-why p {
position: relative;
z-index: 3; }
.bg-circle-brand {
position: absolute;
right: -100px;
top: -70px;
background-image: url("../images/brand/circle.png");
background-repeat: no-repeat;
width: 900px;
height: 900px; }
.control-slide-dev {
margin-top: 45%;
font-size: 36px; }
.section-intro.kunuz .title-intro {
font-size: 45px; }
.tooltip-text {
display: none; }
.mytip {
display: block;
text-align: center;
padding: 20px;
max-width: 400px;
z-index: 10;
position: absolute;
background: #FFFFFF;
border: 1px solid #E5E3FF;
box-shadow: 4px 4px 20px rgba(49, 22, 248, 0.2);
border-radius: 10px; }
.heading-serv-kunuz {
position: relative;
margin-top: -20px; }
.heading-serv-kunuz .title-section {
font-size: 24px;
color: #444F60;
font-weight: 300 !important; }
.heading-serv-kunuz .bg-num {
position: absolute;
top: 0;
margin-top: -10%;
left: 40%; }
.mobile-kunuz-wrap {
text-align: center; }
.mobile-kunuz-wrap .mobile {
margin-bottom: 15px;
margin-top: 15px; }
.mobile-kunuz-wrap .info {
border: 2px dashed #ccc;
padding: 10px;
max-width: 75%;
display: block;
margin-left: auto;
margin-right: auto; }
.mobile-kunuz-wrap .info big {
font-size: 26px;
color: #2855AF;
font-weight: 800; }
.item-social-wrap {
text-align: center; }
.item-social-wrap img {
margin-bottom: 15px; }
.item-social-wrap big {
font-size: 24px;
font-weight: bold;
color: #2855AF; }
.item-social-wrap p {
margin-bottom: 0; }
.item-social-wrap a {
font-size: 13px;
color: #2855AF;
padding-right: 32px;
background: url(../images/kunuz/arrow-right_blue.svg) no-repeat right center;
background-size: 26px; }
.item-social-wrap:nth-child(1),
.item-social-wrap:nth-child(5) {
margin-top: -150px; }
.item-social-wrap:nth-child(2),
.item-social-wrap:nth-child(4) {
margin-top: -60px; }
.item-social-wrap:nth-child(3) {
margin-top: -35px; }
.line-social-kunuz {
max-width: 85%;
margin-right: auto;
margin-left: auto; }
.line-social-kunuz img {
max-width: 100%; }
.block-info-social {
position: relative;
margin-right: auto;
margin-left: auto;
background: #FFFFFF;
width: 180px;
height: 120px;
border-radius: 10px;
box-shadow: 2px 2px 6px rgba(46, 64, 108, 0.3);
padding: 15px; }
.block-info-social:after {
bottom: 100%;
left: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: rgba(136, 183, 213, 0);
border-bottom-color: #fff;
border-width: 10px;
margin-left: -10px; }
.items-serv-wrap-kunuz {
margin-top: 70px; }
.shape-bg-aud {
display: block;
position: absolute;
width: 70%;
height: 175px;
right: 0px;
top: 0px;
background: #2855AF;
opacity: 0.9;
z-index: -1;
border-radius: 5px 0 0 5px; }
.heading-aud-kunuz {
margin-top: -70px;
max-width: 60%; }
.item-aud-kunuz {
margin-top: -20px; }
.item-aud-kunuz .card {
height: 100%;
border: 0;
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(49, 22, 248, 0.3);
border-radius: 5px; }
.item-aud-kunuz .num {
font-weight: bold;
line-height: normal;
font-size: 32px;
color: #fff; }
.item-aud-kunuz .iconbox img {
height: 46px; }
.heading-mobile-kunuz {
margin-top: 150px; }
.pricing-top-wrap-kunuz {
text-align: center;
margin-bottom: 50px; }
.pricing-top-wrap-kunuz .btn-group {
background: #FFFFFF;
box-shadow: 0px 2px 30px rgba(49, 22, 248, 0.3);
border-radius: 30px; }
.pricing-top-wrap-kunuz .btn-group b {
padding-top: 10px;
display: block; }
.pricing-top-wrap-kunuz .btn-group .btn {
border: 0;
min-width: 200px; }
.pricing-top-wrap-kunuz .btn-group .btn:first-child {
border-radius: 20px 0 0 20px; }
.pricing-top-wrap-kunuz .btn-group .btn:last-child {
border-radius: 0 20px 20px 0; }
.item-serv-kunuz {
margin-bottom: 30px; }
.item-serv-kunuz .icon-num {
width: 40px;
height: 40px;
font-size: 18px;
font-weight: bold;
border-radius: 40px;
display: block;
background: #2855AF;
text-align: center;
line-height: 40px;
margin-bottom: 15px; }
.item-serv-kunuz .title {
font-size: 18px;
font-weight: 600;
margin-bottom: 15px; }
.item-serv-kunuz p {
font-size: 16px; }
.list-award-kunuz {
list-style: none; }
.list-award-kunuz li {
margin-bottom: 20px; }
.list-award-kunuz .icon {
float: left;
margin-right: 20px; }
.list-award-kunuz p {
font-size: 20px;
font-weight: bold;
color: #2855AF; }
.clients-wrap-kunuz {
text-align: center; }
.clients-wrap-kunuz a {
opacity: 0.3;
transition: all 0.4s; }
.clients-wrap-kunuz a:hover {
opacity: 1; }
.clients-wrap-kunuz img {
margin: 30px;
max-height: 50px; }
.section-pricing-kunuz .item-pricing-kunuz {
width: 100%; }
.card-kunuz-stat {
position: relative;
padding: 20px;
text-align: center;
margin-bottom: 30px;
background: #FFFFFF;
border: 1px solid #E5E3FF;
box-sizing: border-box;
box-shadow: 4px 4px 20px rgba(49, 22, 248, 0.1);
border-radius: 10px; }
.card-kunuz-stat p {
margin: 0; }
.card-kunuz-stat .title {
font-size: 26px;
color: #2855AF; }
.card-kunuz-stat img {
width: 60px;
height: 60px;
margin-bottom: 20px; }
.card-kunuz-stat.last {
margin-top: 80px; }
.card-kunuz-stat:before {
position: absolute;
content: "";
width: 90%;
height: 12px;
border: 1px solid #E5E3FF;
border-bottom: 0;
top: -12px;
left: 5%;
border-radius: 10px 10px 0 0;
background-color: rgba(221, 221, 221, 0.1); }
.section-pricing-kunuz .btn:after {
display: none; }
.section-pricing-kunuz .item-pricing-kunuz {
border-radius: 10px;
overflow: hidden;
border: 0;
box-shadow: 5px 0px 40px 5px rgba(66, 52, 244, 0.2), 0 20px 0 -10px #fff, 0 25px 40px -10px rgba(66, 52, 244, 0.2); }
.section-pricing-kunuz .item-pricing-kunuz .card-header {
transition: all .3s;
padding: 1.5rem .5rem; }
.section-pricing-kunuz .item-pricing-kunuz .card-body {
transition: all .3s; }
.section-pricing-kunuz .item-pricing-kunuz .card-body .btn {
border-radius: 0; }
.section-pricing-kunuz .item-pricing-kunuz ul {
line-height: 1.8;
padding-left: 20px; }
.section-pricing-kunuz .item-pricing-kunuz ul {
min-height: 280px; }
.section-pricing-kunuz .item-pricing-kunuz:hover .card-body {
background: #2855AF;
color: #fff; }
.section-pricing-kunuz .item-pricing-kunuz:hover .btn {
background: #fff;
color: #2855AF; }
.section-pricing-kunuz .item-pricing-kunuz:hover .btn:hover {
color: #fff; }
.section-pricing-kunuz .item-pricing-kunuz:hover .card-header {
background: #fff !important;
color: #2855AF; }
.section-pricing-kunuz .item-pricing-kunuz .card-header.bg-dark {
background: none; }
.item-feature-site img {
height: 46px; }
.item-feature-site p {
margin-top: 20px;
font-family: Montserrat;
font-style: normal;
font-weight: bold;
line-height: normal;
font-size: 16px; }
.img-intro-site {
max-width: 580px;
margin-top: 100px; }
.step-site {
margin-bottom: 60px;
margin-left: 45px;
position: relative;
padding-top: 2.5rem; }
.step-site .num {
position: absolute;
left: -3rem;
top: 0;
font-weight: bold;
font-size: 7.33rem;
line-height: 5.5rem;
color: #2855AF;
opacity: 0.1; }
.step-site .title {
font-size: 32px;
font-weight: bold;
position: relative;
margin-bottom: 20px; }
.step-site .title:after {
position: absolute;
display: block;
height: 5px;
width: 100px;
bottom: 0;
left: 0;
background: #0c9ab8;
background: -moz-linear-gradient(left, #0c9ab8 0%, #452df8 100%);
background: -webkit-linear-gradient(left, #0c9ab8 0%, #452df8 100%);
background: linear-gradient(to right, #0c9ab8 0%, #452df8 100%); }
.item-serv-site {
text-align: center;
margin-bottom: 30px;
padding-bottom: 20px;
min-height: 280px;
background: #FFFFFF;
padding: 0 15px;
padding-bottom: 10px;
box-shadow: 4px 4px 30px rgba(59, 100, 183, 0.2);
border-radius: 10px; }
.item-serv-site img {
margin-top: 15px;
margin-bottom: 15px; }
.item-serv-site .num {
padding-top: 7px;
color: #fff;
font-size: 20px;
font-weight: bold;
background: #2855AF;
width: 100px;
height: 50px;
text-align: center;
display: inline-block;
border-radius: 0 0 100px 100px;
margin-bottom: 15px; }
.item-serv-site p {
margin-top: 15px;
font-weight: bold; }
.item-serv-site:hover {
background: #2855AF;
transition: all .2s;
color: #fff; }
.item-serv-site:hover .num {
background: #fff;
color: #2855AF; }
.item-serv-site:hover img {
filter: brightness(0) invert(1); }
.img-step-site {
max-width: 100%;
margin-bottom: 60px; }
.item-tool-site .img-wrap {
padding: 7px;
width: 100px;
height: 100px;
display: inline-block;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
text-align: center;
align-items: center;
justify-content: center;
border-radius: 100%;
margin-bottom: 15px; }
.item-tool-site p {
font-weight: bold;
font-size: 18px; }
.line-tool-site {
height: 5px;
width: 70px;
background: #2855AF;
display: inline-block;
position: relative;
top: -25px; }
.btn-tabs-tools-site {
margin-bottom: 45px; }
.block-why-site-wrap {
transform: translateX(-50px); }
.block-why-site-wrap .backside {
background: linear-gradient(90deg, rgba(12, 154, 184, 0.3) 0%, rgba(69, 45, 248, 0.3) 100%);
border-radius: 5px;
display: block;
height: 94%;
width: 100%;
position: absolute;
z-index: 1;
left: 10px;
top: 3%; }
.block-why-site {
position: relative;
z-index: 3;
min-height: 450px;
background: linear-gradient(90deg, #0c9ab8 0%, #452df8 100%);
border-radius: 5px;
color: #fff;
padding: 60px; }
.block-why-site .title {
margin-bottom: 20px;
margin-top: 20px; }
.block-why-site p {
font-size: 18px;
text-align: center; }
.items-why-site-wrap {
margin-top: 50px; }
.item-site-why {
margin-top: 30px;
margin-bottom: 30px; }
.item-site-why .icon-wrap {
margin-bottom: 20px; }
.item-site-why p {
padding-left: 50px;
font-size: 18px; }
.item-pricing-main-wrap {
margin-top: 70px;
width: 95%;
position: relative; }
.item-pricing-main-wrap .backside {
position: absolute;
display: block;
height: 10px;
width: 90%;
top: -10px;
border-radius: 15px 15px 0 0;
left: 5%;
background: #2855AF;
box-shadow: 4px 4px 22px rgba(62, 102, 183, 0.12); }
.item-pricing-main-wrap .icon-shape {
display: block;
border-radius: 100%;
background-color: white;
width: 100px;
height: 100px;
position: absolute;
top: -50px;
z-index: 100;
left: calc(50% - 50px);
line-height: 100px;
text-align: center;
border: 1px solid #ddd;
box-shadow: 0 0 20px #e0e0e0; }
.item-pricing-main {
border-radius: 4px;
overflow: hidden;
box-shadow: 0 7px 30px #b5cff5;
width: 100%;
padding-top: 50px;
border: 0;
box-shadow: 4px 4px 22px rgba(62, 102, 183, 0.12);
border-radius: 15px; }
.item-pricing-main .title,
.item-pricing-main .price {
text-align: center; }
.item-pricing-main .title {
font-weight: bold; }
.item-pricing-main .price {
font-size: 26px;
font-weight: 300; }
.item-pricing-main ul {
padding-left: 20px; }
.item-pricing-main ul {
min-height: 200px; }
/* SECTIOn REVIEW ABOUT */
.item-review-about {
padding-left: 60px;
position: relative; }
.item-review-about .icon-play {
position: absolute;
left: 0px;
top: 32%; }
.item-review-about .img-work {
border-radius: 50%; }
.bg-shape-portfolio-about {
position: absolute;
top: -50px;
right: -200px;
z-index: -1;
width: 600px;
height: 600px;
border-radius: 100%;
display: block;
background: #FF5722;
box-shadow: 4px 4px 15px rgba(35, 26, 100, 0.4); }
.info-review-about {
color: #fff; }
.info-review-about .name {
font-size: 34px;
font-weight: bold; }
.info-review-about .job {
font-size: 22px; }
.section-review-about .controllers {
z-index: 10;
position: absolute;
bottom: 0; }
.section-review-about .controllers img {
margin: 5px; }
.slide-team .item-slide {
padding: 7px; }
.slide-team .item-slide:focus {
outline: 0; }
.slide-team .item-slide .name {
font-size: 16px;
font-weight: bold;
color: #2855AF;
margin-bottom: 0; }
.slide-team .img-wrap {
text-align: left;
margin-bottom: 10px; }
.slide-team .item-slide:nth-child(odd) {
margin-top: 40px; }
.slide-team .item-team-add {
height: 280px;
padding: 30px;
text-align: center;
padding-top: 45%;
border-radius: 0;
font-size: 20px;
color: #2855AF; }
.partners-wrap-about {
text-align: center; }
.partners-wrap-about .item-partner-about {
margin-bottom: 40px;
opacity: .6;
display: inline-block;
max-height: 60px; }
.partners-wrap-about .item-partner-about:hover {
opacity: 1;
transition: 0.3s; }
.link-team.page-scroll {
position: absolute;
right: 0;
top: 10px;
z-index: 20;
padding-bottom: 10px;
padding-right: 15px; }
.link-team.page-scroll:before {
position: absolute;
content: "";
bottom: 5px;
right: 0;
height: 2px;
width: 40%;
transition: all 0.3s;
background: #2834DF; }
.link-team.page-scroll:after {
position: absolute;
content: "";
bottom: 1px;
right: 0;
height: 10px;
width: 10px;
border-top: 2px solid;
border-right: 2px solid #2834DF;
transform: rotate(45deg);
transition: all 0.3s; }
/* ==== CONTACT ==== */
.map-viewport {
position: relative;
width: 100%;
height: 500px; }
.map-viewport .map {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0; }
.map-viewport .btn {
cursor: pointer;
border: 0;
border-radius: 2px;
background-color: white;
box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
transition: all 300ms ease-in-out; }
.map-viewport .btn.zoom {
position: absolute;
left: 20px;
color: #1647ff;
font-size: 20px;
padding: 5px 8px; }
.map-viewport .btn.zoom.in {
top: 50%;
margin-top: -37px; }
.map-viewport .btn.zoom.out {
bottom: 50%;
margin-bottom: -37px; }
.map-viewport .btn.zoom.center {
top: 50%;
margin-top: -87px; }
.map-viewport .btn.zoom:hover,
.map-viewport .btn.zoom:active {
color: white;
background-color: #1647ff; }
.map-viewport .btn.zoom:active {
opacity: 0.75; }
.map img[src*='marker'] {
animation-name: pulse_marker;
animation-duration: 1s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
@keyframes pulse_marker {
0% {
transform: scale(1); }
50% {
transform: scale(0.7); }
100% {
transform: scale(1); } }
.section-page-contact {
min-height: 600px; }
.block-contact {
padding: 45px; }
.block-contact .title {
font-weight: bold;
color: #2855AF;
font-size: 38px;
margin-bottom: 20px; }
.block-contact {
background: #FFFFFF;
border: 10px solid #2855AF;
box-shadow: 2px -2px 10px rgba(3, 28, 45, 0.2);
border-radius: 6px; }
.block-contact .form-group {
max-width: 300px;
margin-bottom: 20px;
margin-left: auto;
margin-right: auto; }
.block-contact .form-group label {
margin-bottom: 0; }
.block-contact .success-content {
transition: transform 0.3s, opacity 0.3s;
transform: scale(0.1);
visibility: hidden;
opacity: 0;
height: 1px;
text-align: center; }
.block-contact.active .success-content {
height: auto;
opacity: 1;
visibility: visible;
transform: scale(1);
margin: 50px 0; }
.block-contact.active > h4, .block-contact.active > form, .block-contact.active > div.form-group, .block-contact.active > div.text-center {
display: none; }
.contact-info {
padding: 45px;
padding-left: 60px; }
.contact-info .title {
color: #2855AF;
font-weight: bold;
margin-top: 20px; }
.contact-info p {
margin-bottom: 20px; }
#map_wrapper {
position: relative; }
#map_wrapper .container {
position: relative;
z-index: 5; }
#map_wrapper .container .contact-info {
position: absolute;
top: 55px;
right: 0;
z-index: 5;
background: #fff;
box-shadow: 10px 10px 70px rgba(40, 85, 175, 0.1);
border-radius: 20px; }
.slide-clients-home {
overflow: hidden; }
.intro-home {
height: 100vh; }
.intro-home .bg-icons-page img:nth-child(6) {
top: -5%;
left: 66%;
height: 10px; }
.intro-home .bg-icons-page img:nth-child(7) {
top: 90%;
left: 15%;
height: 7px; }
.intro-home .bg-icons-page img:nth-child(4) {
top: 74%;
left: 118%; }
.intro-home .bg-icons-page img:nth-child(1) {
top: 63%;
left: -22%;
-webkit-animation: rotate-float 30s linear infinite reverse;
animation: rotate-float 30s linear infinite reverse; }
.intro-home .bg-icons-page img:nth-child(2) {
top: 9%;
left: 86%; }
.intro-home .bg-icons-page img:nth-child(3) {
top: 56%;
left: 108%; }
.intro-home .bg-icons-page img:nth-child(5) {
top: 93%;
left: 88%; }
.intro-home .bg-icons-page img:nth-child(8) {
position: absolute;
top: -18px;
left: -25px;
height: 150px;
animation: move-shake 2s linear infinite; }
.intro-home .bg-icons-page img:nth-child(9) {
position: absolute;
top: -71px;
left: -131px;
height: 210px; }
.intro-home .bg-icons-page img:nth-child(10) {
position: absolute;
top: -71px;
left: -131px;
height: 210px; }
.intro-center-home {
position: relative; }
.intro-center-home .title-sm {
font-size: 50px;
font-family: 'Montserrat', sans-serif;
font-weight: 900;
position: relative;
z-index: 2;
line-height: 1; }
.intro-center-home .title-intro {
font-size: 100px;
font-family: 'Intro';
font-weight: 900;
position: relative;
z-index: 2;
line-height: 1;
letter-spacing: normal; }
.title-section-home {
font-size: 50px; }
.bg-home-portfolio {
background: #071D31;
height: 500px;
width: 100%;
top: 300px;
display: block;
position: absolute;
z-index: 0; }
.link-about-home i {
vertical-align: middle;
margin-left: 10px; }
.homepage-stat {
display: inline-flex;
vertical-align: middle;
align-items: center; }
.homepage-stat .num {
font-size: 50px;
color: #2855AF;
font-weight: bold;
padding: 10px; }
.homepage-stat .text {
font-size: 12px; }
.item-serv-home {
position: relative; }
.item-serv-home .hover {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
bottom: 0;
background: rgba(255, 255, 255, 0.8);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); }
.item-serv-home:hover .hover {
z-index: 10;
display: block; }
.item-serv-home .btn {
min-width: auto;
margin-top: 30%; }
.main-item-work {
opacity: 1;
transition: opacity 0.5s, max-width 0.5s, padding 0.5s, height 1.5s; }
.main-item-work.width-zero {
height: 0;
opacity: 0;
max-width: 0;
padding: 0; }
.item-work-home {
border: 1px solid #E5E3FF;
border-radius: 10px;
height: 400px; }
.item-work-home .img-wrap {
border-radius: 10px;
overflow: hidden;
height: 100%; }
.item-work-home:before {
position: absolute;
content: "";
width: 90%;
height: 10px;
border: 1px solid #E5E3FF;
border-bottom: 0;
top: -11px;
left: 5%;
border-radius: 8px 8px 0 0;
background-color: #fefefe; }
.item-work-home img {
width: 100%;
height: 100%;
object-fit: cover; }
.item-work-home.item-sm {
height: calc( 50% - 15px);
margin-bottom: 30px; }
.item-work-home.item-sm:last-child {
margin-bottom: 0; }
.serv-home-wrap {
width: 100%;
margin-top: 30px;
margin-bottom: 30px; }
.item-serv-home {
width: 25%;
float: left;
padding: 20px 15px;
background-color: #2855AF;
color: #fff;
height: 150px;
outline: 1px solid rgba(255, 255, 255, 0.4);
text-align: center; }
.item-serv-home .icon {
width: 40px;
height: 40px; }
.item-serv-home p {
font-size: 12px;
margin-top: 15px; }
.title-clients-home {
margin-top: 120px; }
.section-review-home .section-heading {
position: absolute;
top: 100px; }
.section-review-home .controllers-home-review {
position: absolute;
bottom: 100px;
z-index: 20; }
.section-review-home .item-video-slide {
margin-top: 30px;
margin-bottom: 45px; }
.info-review-home {
color: #fff;
margin-top: 200px; }
.info-review-home .name {
font-size: 34px;
font-weight: bold; }
.info-review-home .job {
font-size: 22px; }
.item-review-home {
position: relative; }
.item-review-home .pulse-play {
left: 0;
top: 42%; }
.item-review-home .img-video {
max-width: 500px; }
.blog-wrap-home {
margin-top: 30px; }
.img-blog-aside {
width: 480px;
height: 420px;
margin-top: 50px;
margin-bottom: -100px;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); }
.bg-video-home {
width: 40%;
position: absolute;
right: 0;
top: 0;
height: 500px;
background: #2855AF; }
.bg-blog-home {
width: 40%;
position: absolute;
left: 0;
bottom: -30px;
height: 470px;
background: #2855AF; }
.social-wrap-blog-home a {
padding: 7px;
margin-top: 30px;
color: #fff;
font-size: 120%; }
.clients-wrap-home {
text-align: center; }
.clients-wrap-home img {
max-height: 70px;
max-width: 100%;
margin: 30px 7px;
filter: grayscale(100%);
opacity: 0.7; }
.clients-wrap-home .slide-item:hover img {
filter: none;
opacity: 1; }
.clients-wrap-home .slide-item:focus {
outline: 0; }
body {
overflow-x: hidden; }
.section-intro-page > .container .intro-wrap {
min-height: calc( 100vh - 80px - 1rem );
padding-top: 0;
margin-bottom: 0; }
.section-intro-page > .container .intro-wrap .intro-center-home {
margin-bottom: 45px; }
.section-intro-page > .container .bg-home-intro-bubbles {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
.section-intro-page > .container .bg-home-intro-bubbles span {
position: absolute;
border-radius: 50%;
overflow: hidden; }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(1) {
animation: floating2 25s linear infinite;
left: -50px;
top: -50px;
width: 168px;
height: 168px;
background: radial-gradient(47.95% 47.95% at 33.29% 21.11%, #62A2E7 0%, #202CD7 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1); }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(2) {
animation: floating2 15s linear infinite;
top: -70px;
left: 33%;
width: 29px;
height: 29px;
background: radial-gradient(52.39% 53.26% at 63.74% 14.37%, #FFFFFF 0%, #C9D0D0 53.31%, #8F9998 100%); }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(3) {
animation: floating2 25s linear infinite reverse;
top: -90px;
left: 60%;
width: 73px;
height: 73px;
background: radial-gradient(43.47% 46.61% at 29.82% 22.46%, #CFF4FF 0%, #7CCCDB 48.62%, #53B1C2 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1); }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(4) {
animation: floating2 25s linear infinite;
top: 0;
left: 105%;
width: 37px;
height: 37px;
background: radial-gradient(46.63% 50% at 35.09% 27.12%, #59ABFF 2.77%, #2E7FD2 46.7%, #0959AC 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1); }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(5) {
animation: floating2 20s linear infinite reverse;
top: 105%;
left: 10%;
width: 29px;
height: 29px;
background: radial-gradient(52.44% 52.44% at 33.29% 21.11%, #00D8FF 0%, #357AD7 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1); }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(6) {
animation: floating2 20s linear infinite;
top: 85%;
left: 45%;
width: 60px;
height: 61px;
background: radial-gradient(52.44% 52.44% at 33.29% 21.11%, #8AAEF4 0%, #2855AF 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1); }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(7) {
animation: floating2 30s linear infinite reverse;
top: 45%;
left: 90%;
width: 125px;
height: 125px;
background: radial-gradient(52.44% 52.44% at 33.29% 21.11%, #8AAEF4 0%, #2855AF 100%);
box-shadow: -10px 0px 20px rgba(9, 51, 136, 0.4); }
.intro-wrap .btn.btn-primary,
.navbar .btn.btn-primary {
background: #2855AF;
border-radius: 36px;
overflow: visible; }
.intro-wrap .btn.btn-primary:after,
.navbar .btn.btn-primary:after {
content: none; }
.intro-wrap .btn.btn-primary:before,
.navbar .btn.btn-primary:before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border-radius: 60px;
border: 2px solid #2855AF;
background-color: transparent;
animation-name: bt;
animation-duration: 1.5s;
/*animation-fill-mode: both;*/
animation-iteration-count: infinite;
z-index: 0; }
.intro-wrap .btn.btn-primary:hover,
.navbar .btn.btn-primary:hover {
color: #ffffff; }
.new-index-bg {
background: #00091F; }
.new-index-bg .title-intro img {
display: none; }
.new-index-bg .title-sm span {
display: none; }
.new-index-bg .bg-icons-mobile {
position: absolute;
left: 40px;
right: 40px;
top: 180px;
bottom: 100px;
display: none; }
@keyframes bt {
0% {
transform: scale(1);
opacity: 1; }
50% {
transform: scale(1.2, 1.5);
opacity: 0; }
100% {
transform: scale(1);
opacity: 0; } }
.index-about-section {
background: #00091F;
padding-bottom: 135px; }
.index-about-section .section-heading h2 {
font-size: 4.375rem;
margin-top: 40px;
margin-bottom: 40px;
color: #2855AF !important; }
.index-about-section .section-heading p {
color: #ffffff;
font-size: 1.125rem; }
.index-about-section .homepage-stat {
display: block;
text-align: center; }
.index-about-section .homepage-stat .num-text {
width: 110px;
height: 110px;
border-radius: 50%;
background: #2855AF;
box-shadow: 0px 0px 40px rgba(40, 52, 223, 0.5);
display: table;
margin: 0 auto 25px auto; }
.index-about-section .homepage-stat .num-text .num-text-main {
display: table-cell;
vertical-align: middle; }
.index-about-section .homepage-stat .num-text .text {
display: block;
color: #ffffff;
font-size: 1rem;
line-height: normal; }
.index-about-section .homepage-stat .num-text .num {
display: block;
color: #ffffff;
font-size: 3.125rem;
padding: 0;
line-height: normal; }
.index-about-section .homepage-stat > .text {
font-size: 1rem;
color: #ffffff;
text-transform: uppercase; }
.index-new-portfolio {
position: relative;
background: #00091F;
padding-top: 185px;
padding-bottom: 200px; }
.index-new-portfolio .bg {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
height: 100%;
width: 100%;
max-width: 1600px;
z-index: 1;
background-color: transparent !important; }
.index-new-portfolio .bg .bg-text {
text-transform: uppercase;
font-family: 'Intro';
font-size: 18.75rem;
color: rgba(255, 255, 255, 0.1);
line-height: 0.75;
cursor: default;
position: absolute;
display: inline-block;
z-index: 1;
font-weight: 900;
white-space: nowrap; }
.index-new-portfolio .bg .bg-text::selection {
background: transparent; }
.index-new-portfolio .bg .bg-text.top {
top: 20px;
right: 0; }
.index-new-portfolio .bg .bg-text.bottom {
bottom: 20px;
right: 0; }
.index-new-portfolio .bg .bg-text.right {
color: rgba(66, 52, 244, 0.2);
top: 50%;
left: 100%;
transform: rotate(90deg) translateY(-50%); }
.index-new-portfolio .bg .bg-circle-animation {
position: absolute;
background: radial-gradient(52.44% 52.44% at 33.29% 21.11%, #8AAEF4 0%, #2855AF 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
border-radius: 50%;
animation: floating 15s linear infinite; }
.index-new-portfolio .bg .bg-circle-animation.top {
background: radial-gradient(52.44% 52.44% at 33.29% 21.11%, #8AAEF4 0%, #2855AF 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
width: 616px;
height: 616px;
right: -250px;
top: -75px; }
.index-new-portfolio .bg .bg-circle-animation.left {
background: radial-gradient(47.95% 47.95% at 33.29% 21.11%, #62A2E7 0%, #202CD7 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
width: 408px;
height: 408px;
left: 81px;
top: 50%;
margin-top: -200px; }
.index-new-portfolio .bg .bg-circle-animation.bottom-one {
background: radial-gradient(77.52% 77.52% at 9.69% 9.69%, #64CDFF 24.12%, #0B6996 83.33%);
box-shadow: 0px 60px 70px rgba(40, 85, 175, 0.05);
width: 498px;
height: 498px;
left: 50%;
bottom: 15px;
margin-left: -200px;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 4px 4px 15px rgba(35, 26, 100, 0.4); }
.index-new-portfolio .container {
background: #EBEBEB;
border-radius: 200px 0px 0px 200px;
position: relative;
z-index: 5;
padding-top: 100px;
padding-bottom: 200px; }
.index-new-portfolio .container .title-section-home {
margin-bottom: 150px;
text-align: center;
font-size: 4.375rem;
color: #2855AF !important; }
.index-new-portfolio .container .bg-text {
position: absolute;
left: 45%;
top: 45%;
transform: rotate(90deg);
text-transform: uppercase;
font-family: 'Intro';
font-size: 14rem;
color: rgba(66, 52, 244, 0.2);
line-height: 0.75;
cursor: default;
display: inline-block;
z-index: 2;
white-space: nowrap;
font-weight: 900; }
.index-new-portfolio .container .bg-text::selection {
background: transparent; }
.index-new-portfolio .container::after {
content: "";
position: absolute;
width: 500%;
height: 100%;
left: 99%;
top: 0;
background: #EBEBEB; }
.index-new-portfolio .container .article-row {
position: relative;
z-index: 2; }
.index-new-portfolio .container .article-row::after {
content: "";
display: table;
clear: both; }
.index-new-portfolio .container .article-row .article {
width: 50%;
position: relative; }
.index-new-portfolio .container .article-row .article img {
height: 100%;
position: relative;
display: block;
margin: 0 auto; }
.index-new-portfolio .container .article-row .article:nth-child(1) {
height: 444px; }
.index-new-portfolio .container .article-row .article:nth-child(2),
.index-new-portfolio .container .article-row .article:nth-child(3) {
height: 220px; }
.index-new-portfolio .container .article-row.one .article {
float: right; }
.index-new-portfolio .container .article-row.second .article {
float: left; }
.index-new-portfolio .container .index-new-portfolio-more-link {
display: table;
margin: 0 auto;
font-size: 1rem;
color: #ffffff;
min-width: 180px;
text-align: center;
background: #2855AF;
box-shadow: 0px 0px 10px rgba(40, 52, 223, 0.5);
border-radius: 41px;
padding: 10px;
font-weight: 600;
position: relative;
top: 100px; }
.index-services {
padding-top: 120px;
padding-bottom: 350px;
background: #00091F; }
.index-services .container {
position: relative; }
.index-services .container .bg-circle-animation {
position: absolute;
width: 94px;
height: 94px;
right: 0;
top: 0;
background: radial-gradient(46.63% 50% at 35.09% 27.12%, #4FA3FB 2.77%, #2E7FD2 46.7%, #0959AC 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
border-radius: 50%;
animation: floating 15s linear infinite; }
.index-services .section-heading {
margin-bottom: 95px; }
.index-services .section-heading .title-section-home {
font-size: 4.375rem;
color: #2855AF !important; }
.index-services .info-serv-home {
color: #ffffff; }
.index-services .info-serv-home .btn.btn-primary {
border-radius: 41px;
font-size: 1rem;
background: #2855AF !important;
box-shadow: 0px 0px 10px rgba(40, 52, 223, 0.5);
border-radius: 41px;
font-weight: 600;
overflow: visible; }
.index-services .info-serv-home .btn.btn-primary:after {
content: none; }
.index-services .info-serv-home .btn.btn-primary:before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border-radius: 60px;
border: 2px solid #2855AF;
background-color: transparent;
animation-name: bt;
animation-duration: 1.5s;
/*animation-fill-mode: both;*/
animation-iteration-count: infinite;
z-index: 0; }
.index-services .info-serv-home .btn.btn-primary:hover {
color: #ffffff; }
.index-services .info-serv-home .btn.btn-light {
background-color: transparent;
border: none;
color: #ffffff;
font-size: 1rem;
position: relative;
min-width: auto;
margin-left: 15px; }
.index-services .info-serv-home .btn.btn-light::before {
position: absolute;
content: "";
bottom: 5px;
right: 0;
height: 2px;
width: 40%;
transition: all 0.3s;
background: #ffffff; }
.index-services .info-serv-home .btn.btn-light::after {
position: absolute;
content: "";
bottom: 1px;
right: 0;
height: 10px;
width: 10px;
border-top: 2px solid;
border-right: 2px solid #ffffff;
transform: rotate(45deg);
transition: all 0.3s; }
.index-services .info-serv-home .btn.btn-light:hover, .index-services .info-serv-home .btn.btn-light:focus {
border: none;
box-shadow: none; }
.index-services .info-serv-home .btn.btn-light:hover::before, .index-services .info-serv-home .btn.btn-light:hover::after, .index-services .info-serv-home .btn.btn-light:focus::before, .index-services .info-serv-home .btn.btn-light:focus::after {
right: -3px; }
.index-services .item-serv-home {
background-color: transparent;
outline: none; }
.index-services .item-serv-home.active {
background: #2855AF;
box-shadow: 0px 0px 20px rgba(40, 52, 223, 0.5);
border-radius: 5px; }
.index-services .item-serv-home:hover {
cursor: pointer; }
.index-services .item-serv-home img, .index-services .item-serv-home p {
cursor: pointer; }
.index-services .item-serv-home img::selection, .index-services .item-serv-home p::selection {
background: transparent; }
.index-review {
background: #00091F;
padding-top: 270px; }
.index-review:after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #EBEBEB;
border-radius: 0px 300px 0px 0px;
overflow: hidden;
z-index: 1; }
.index-review .bg {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
height: 100%;
width: 100%;
max-width: 1600px;
z-index: 2;
background-color: transparent !important; }
.index-review .bg .bg-circle-animation.top {
width: 540px;
height: 540px;
border-radius: 50%;
position: absolute;
left: -270px;
top: -270px;
background: radial-gradient(46.63% 50% at 35.09% 27.12%, #59ABFF 2.77%, #2E7FD2 46.7%, #0959AC 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
animation: floating 15s linear infinite; }
.index-review .bg .bg-circle-animation.middle {
width: 100px;
height: 100px;
border-radius: 50%;
position: absolute;
left: 10%;
top: 50%;
margin-top: -50px;
background: radial-gradient(46.63% 50% at 35.09% 27.12%, #4FA3FB 2.77%, #2E7FD2 46.7%, #0959AC 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
animation: floating 15s linear infinite reverse; }
.index-review .bg .bg-circle-animation.bottom-left {
width: 440px;
height: 440px;
border-radius: 50%;
position: absolute;
left: -220px;
bottom: -220px;
animation: floating 15s linear infinite; }
.index-review .bg .bg-circle-animation.bottom-right {
width: 320px;
height: 320px;
border-radius: 50%;
position: absolute;
right: -160px;
bottom: -160px;
padding: 50px;
background: radial-gradient(77.52% 77.52% at 9.69% 9.69%, #64CDFF 24.12%, #1D7DAB 83.33%);
box-shadow: 0px 60px 70px rgba(40, 85, 175, 0.05);
animation: floating 15s linear infinite; }
.index-review .container {
position: relative;
z-index: 3; }
.index-review .container .index-review-titile {
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, -80%);
font-size: 12.5rem;
line-height: 12.5rem;
color: #2855AF;
opacity: 0.1;
font-weight: 900;
white-space: nowrap; }
.index-review .container .bg-video-home {
height: 400px;
width: 350px;
border-radius: 0px 15px;
top: 20%;
right: 8.3%;
bottom: auto; }
.index-review .container .item-video-slide {
margin-top: 0;
margin-bottom: 0; }
.index-review .container .item-video-slide .video-content {
border: 10px solid #ffffff;
border-radius: 0px 15px;
position: relative;
overflow: hidden; }
.index-review .container .item-video-slide .video-content:after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1;
background: rgba(255, 255, 255, 0.45); }
.index-review .container .item-video-slide .video-content .pulse-play {
z-index: 2;
left: 50%;
top: 50%;
margin-top: -55px;
margin-left: -65px; }
.index-review .container .item-video-slide .info-review-home {
margin-top: 45px;
margin-left: 15%; }
.index-review .container .item-video-slide .info-review-home .name {
font-size: 1.875rem;
color: #2855AF;
margin-bottom: 0.8125rem; }
.index-review .container .item-video-slide .info-review-home .job {
font-size: 1.125rem;
color: #071D31; }
.index-review .container .slick-dots {
position: absolute;
right: 10%;
top: 35%;
bottom: auto;
width: auto;
z-index: 9; }
.index-review .container .slick-dots li {
display: block;
width: auto;
height: auto;
margin-bottom: 35px; }
.index-review .container .slick-dots li button {
font-size: 1.125rem;
line-height: 1.125rem;
color: #ffffff;
width: auto;
height: auto;
background: transparent;
opacity: 1;
font-weight: 300; }
.index-review .container .slick-dots li.slick-active button {
font-weight: 600; }
.index-review .container .controllers-home-review {
right: 24%;
bottom: 75px; }
.index-review .container .controllers-home-review a:first-child {
margin-right: 30px; }
.index-bottom-slider {
background: #EBEBEB; }
.index-bottom-slider .title-section-home {
font-size: 4.375rem;
color: #2855AF !important;
text-align: center;
margin-bottom: 100px; }
.index-bottom-slider .clients-content img {
max-width: 100%;
padding: 5px 12px;
opacity: .7; }
.index-bottom-slider .clients-content img:hover {
cursor: pointer;
filter: grayscale(0);
opacity: 1; }
.index-bottom-slider img {
filter: grayscale(100%);
opacity: .7;
display: block;
margin: 0 auto;
transition: all 0.3s; }
.index-bottom-slider img:first-child {
margin-bottom: 100px; }
.index-bottom-slider .clients-wrap-home .slide-item:hover img {
opacity: 0.7;
filter: grayscale(100%); }
.index-bottom-slider .clients-wrap-home .slide-item:hover img:hover {
filter: grayscale(0%);
opacity: 1; }
.new-index-bottom {
background: #00091F;
height: 240px; }
.new-index-bottom .container,
.new-index-bottom .col-md-6 {
height: 100%; }
.new-index-bottom .button-container {
position: absolute;
height: 100%;
width: 100%;
z-index: 3;
left: 0;
top: 0; }
.new-index-bottom .button-container a {
display: table;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
font-size: 3.125rem;
color: #ffffff;
transition: all 0.5s;
font-family: Montserrat;
font-weight: 600;
white-space: nowrap; }
.new-index-bottom .button-container a:hover {
letter-spacing: 2px;
color: #ffffff; }
.new-index-bottom .bg-icons-page {
position: absolute;
left: 0;
top: 0;
z-index: 1;
height: 100%;
width: 100%; }
.new-index-bottom .bg-icons-page img {
position: absolute; }
.new-index-bottom .bg-icons-page img:nth-child(1) {
bottom: 30px;
left: 55%; }
.new-index-bottom .bg-icons-page img:nth-child(2) {
bottom: 20px;
right: 20px; }
.new-index-bottom .bg-icons-page img:nth-child(3) {
top: 50px;
left: 45%; }
.new-index-bottom .bg-icons-page img:nth-child(4) {
top: 55px;
right: 0; }
.new-index-bottom .bg-icons-page img:nth-child(5) {
bottom: 40px;
left: 0; }
.new-index-bottom .bg-icons-page img:nth-child(6) {
top: 31%;
left: 16%;
animation: move-shake 2s linear infinite; }
/* PAGE BLOG */
#blogs {
background: #E5E5E5;
padding: 100px 0 50px 0;
overflow: hidden; }
#blogs > .container {
position: relative; }
#blogs > .container > .row {
position: relative;
z-index: 3; }
#blogs > .container > .row .item {
margin-bottom: 100px; }
#blogs > .container > .row .item .row {
align-items: center; }
#blogs > .container > .row .item .row img {
border-radius: 5px;
max-width: 100%;
display: block;
margin: 0 auto; }
#blogs > .container > .row .item .row h2 {
font-size: 2.7rem;
color: #00091F;
margin-bottom: 30px; }
#blogs > .container > .row .item .row a {
color: #00091F;
position: relative;
margin-left: 15px; }
#blogs > .container > .row .item .row a:hover::after {
left: 20%; }
#blogs > .container > .row .item .row a:after {
content: "";
width: 100%;
height: 16px;
position: absolute;
left: 15%;
bottom: -16px;
background: url(../images/blog/arrow-right-black.svg) no-repeat right center;
background-size: contain;
transition: all 0.3s; }
#blogs > .container:before {
content: "";
position: absolute;
width: 530px;
height: 530px;
background: radial-gradient(43.47% 46.61% at 29.82% 22.46%, #CFF4FF 0%, #7CCCDB 48.62%, #53B1C2 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
border-radius: 50%;
top: 3%;
left: 80%;
animation: floating 15s linear infinite; }
#blogs > .container:after {
content: "";
position: absolute;
width: 266px;
height: 266px;
background: radial-gradient(43.47% 46.61% at 29.82% 22.46%, #CFF4FF 0%, #7CCCDB 48.62%, #53B1C2 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
border-radius: 50%;
top: 41%;
right: 91%;
animation: floating 10s linear infinite; }
#blog_content {
overflow: hidden;
padding: 100px 0 50px 0;
background: #E5E5E5; }
#blog_content:before {
content: "";
position: absolute;
width: 100%;
height: 700px;
top: 0;
left: 0;
right: 0;
background: #00091F; }
#blog_content header {
position: relative;
margin-bottom: 85px; }
#blog_content header:after {
content: "";
position: absolute;
width: 363px;
height: 363px;
background: #2855AF;
box-shadow: 0px 0px 40px rgba(40, 52, 223, 0.5);
border-radius: 50%;
top: 8%;
right: -12%;
animation: floating 10s linear infinite;
max-width: 100%; }
#blog_content header h1 {
position: relative;
z-index: 2;
color: #ffffff;
margin-bottom: 70px;
font-size: 2.7rem;
text-align: center; }
#blog_content header img {
position: relative;
z-index: 2;
border: 10px solid #ffffff;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
border-radius: 10px;
margin: 0 auto;
display: block;
max-width: 100%; }
#blog_content main p {
font-family: Montserrat;
font-size: 22px;
line-height: 150%;
letter-spacing: 0.05em;
color: #071D31;
margin-bottom: 30px; }
#blog_content main img {
display: block;
margin: 70px auto 90px auto;
max-width: 100%; }
#blog_content footer > a {
font-size: 18px;
line-height: 22px;
color: #2855AF;
position: relative; }
#blog_content footer > a:after {
content: "";
width: 100%;
height: 16px;
position: absolute;
left: 15%;
bottom: -16px;
background: url(../images/blog/arrow-right-blue.svg) no-repeat right center;
background-size: contain;
transition: all 0.3s; }
#blog_content footer > a:hover::after {
left: 20%; }
#blog_content footer > p {
display: inline-block;
margin-left: 60px; }
#blog_content footer > p a {
font-size: 22px;
color: #2855AF;
margin: 0 10px; }
#blog_content .another-posts {
margin-top: 80px; }
#blog_content .another-posts h2 {
font-size: 2.7rem;
color: #00091F;
margin-bottom: 40px; }
#blog_content .another-posts .col-md-4 a {
display: table;
position: relative;
border-radius: 5px;
overflow: hidden;
height: 300px;
margin: 0 auto; }
#blog_content .another-posts .col-md-4 a img {
max-width: 100%;
height: 300px;
object-fit: cover;
transition: all 0.3s; }
#blog_content .another-posts .col-md-4 a:hover img {
transform: scale(1.1); }
#blog_content .another-posts .col-md-4 a p {
transition: all 0.3s;
padding: 5px;
font-weight: bold;
font-size: 18px;
line-height: 22px;
text-align: center;
color: #00091F;
background: rgba(255, 255, 255, 0.8);
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 100px;
display: table;
margin-bottom: 0; }
#blog_content .another-posts .col-md-4 a p span {
display: table-cell;
vertical-align: middle; }
#blog_content .another-posts .col-md-4 a:hover p {
height: 100%; }
.bg_dark_blue2 {
background-color: #00174c;
overflow: hidden; }
.bg_dark_blue2_img_right_top {
background-image: url(../images/kompleks-marketing/bg-dark_right-top.svg);
background-repeat: no-repeat;
background-position: right top;
background-size: contain; }
.bg_dark_blue2_img_right_bottom {
background-image: url(../images/kompleks-marketing/bg-dark_right-bottom.svg);
background-repeat: no-repeat;
background-position: right bottom;
background-size: contain; }
.bg_dark_blue2_img_left_top {
background-image: url(../images/kompleks-marketing/bg-dark_left-top.svg);
background-repeat: no-repeat;
background-position: left top;
background-size: contain; }
.bg_dark_blue_light2 {
background-color: #26A1C1 !important; }
.color_blue_light2 {
color: #21B1C9 !important; }
.box-shadow_color_blue_light2 {
box-shadow: 0px 5px 50px rgba(33, 177, 201, 0.5); }
.integrated-marketing_intro {
background-color: #00174c;
background-image: url(../images/kompleks-marketing/bg-intro.png);
background-repeat: no-repeat;
background-position: top left;
background-size: 100% 100%;
overflow: hidden; }
.integrated-marketing_intro .section-intro {
background-image: url(../images/kompleks-marketing/intro_top_right.svg);
background-repeat: no-repeat;
background-position: top right;
background-size: contain; }
.integrated-marketing_intro .section-intro .img-fluid {
animation: anime-top-bottom 5s linear infinite; }
.integrated-marketing_intro .section-intro .intro-icons {
position: absolute;
right: 0;
top: 0;
width: 25%;
height: 100%;
max-width: 400px; }
.integrated-marketing_intro .section-intro .intro-icons img {
position: absolute;
max-width: 100%; }
.integrated-marketing_intro .section-intro .intro-icons img:nth-child(1) {
top: 5%;
right: 0; }
.integrated-marketing_intro .section-intro .intro-icons img:nth-child(2) {
top: 15%;
right: 5%;
animation: rotate-float 25s linear infinite reverse; }
.integrated-marketing_intro .section-intro .intro-icons img:nth-child(3) {
top: 25%;
left: 5%;
animation: anime-top-bottom 15s linear infinite; }
.integrated-marketing_intro .section-intro .intro-icons img:nth-child(4) {
top: 45%;
right: 25%;
animation: anime-left-right 20s linear infinite; }
.integrated-marketing_intro .section-intro .intro-icons img:nth-child(5) {
top: 45%;
left: 0;
animation: rotate-float 50s linear infinite; }
.integrated-marketing_intro .section-intro .intro-icons img:nth-child(6) {
top: 75%;
right: 55%;
animation: rotate-float 50s linear infinite reverse; }
.slider_hover_blue .item-slide .item-dev-brand {
border: none; }
.slider_hover_blue .item-slide .item-dev-brand .card-body {
transition: all .3s;
border-radius: 10px; }
.slider_hover_blue .item-slide .item-dev-brand .card-body .img-wrap {
position: relative;
border-radius: 50%;
width: 80px;
height: 80px;
background: rgba(33, 177, 201, 0.1);
margin: 15px auto 0 auto;
transition: all .3s; }
.slider_hover_blue .item-slide .item-dev-brand .card-body .img-wrap img {
max-width: 52px;
max-height: 52px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
transition: all .3s; }
.slider_hover_blue .item-slide .item-dev-brand .card-body .img-wrap img.default {
opacity: 1; }
.slider_hover_blue .item-slide .item-dev-brand .card-body .img-wrap img.hover {
opacity: 0; }
.slider_hover_blue .item-slide .item-dev-brand .card-body p {
transition: all .3s; }
.slider_hover_blue .item-slide .item-dev-brand .card-body .btn {
transition: all .3s; }
.slider_hover_blue .item-slide .item-dev-brand .layer {
transition: all .3s; }
.slider_hover_blue .item-slide .item-dev-brand:hover .card-body {
background: #21B1C9;
border: none; }
.slider_hover_blue .item-slide .item-dev-brand:hover .card-body .img-wrap {
background-color: rgba(255, 255, 255, 0.1); }
.slider_hover_blue .item-slide .item-dev-brand:hover .card-body .img-wrap img.default {
opacity: 0; }
.slider_hover_blue .item-slide .item-dev-brand:hover .card-body .img-wrap img.hover {
opacity: 1; }
.slider_hover_blue .item-slide .item-dev-brand:hover .card-body p {
color: #ffffff; }
.slider_hover_blue .item-slide .item-dev-brand:hover .card-body .btn {
background: #DA0F60;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
color: #ffffff; }
.slider_hover_blue .item-slide .item-dev-brand:hover .layer {
background-color: #0D4770; }
.marketing_steps_section .row {
position: relative; }
.marketing_steps_section .row:before {
content: "";
position: absolute;
left: 50%;
top: 0;
margin-right: -3px;
width: 6px;
height: 100%;
background: url(../images/kompleks-marketing/steps_line.svg) no-repeat center;
background-size: 100% 100%; }
.marketing_steps_section .row > div {
position: relative; }
.marketing_steps_section .row > div span {
position: absolute;
left: -15px;
top: 50%;
width: 34px;
height: 34px;
margin-top: -17px;
background: #21B1C9;
box-shadow: 0px 5px 50px rgba(33, 177, 201, 0.5);
line-height: 34px;
color: #ffffff;
border-radius: 50%;
text-align: center; }
.marketing_steps_section .row > div h6 {
font-size: 18px; }
.marketing_steps_section .row > div.text-md-right span {
left: auto;
right: -20px; }
.komplecks_marketing-cases header {
position: relative; }
.komplecks_marketing-cases header .bg-num {
font-size: 530px;
position: absolute;
left: 0;
top: 0;
margin-top: 0;
transform: translate(-45%, -32%);
color: rgba(38, 161, 193, 0.1); }
.komplecks_marketing-cases .slide-control-portfolio-brand {
top: 105%;
right: auto;
left: 25%; }
.komplecks_marketing-cases .item-portfolio img {
max-width: 650px; }
.kompleks-marketing_section-six {
padding-bottom: 1000px; }
.kompleks-marketing_section-six .bg_image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.kompleks-marketing_section-six .anime-img-content {
max-width: 815px;
width: 51%;
height: 900px;
position: absolute;
left: 20px;
top: 20%;
z-index: 2; }
.kompleks-marketing_section-six .anime-img-content img {
position: absolute;
max-width: 100%;
/*animation: anime-top-bottom 5s linear infinite;*/ }
.kompleks-marketing_section-six .anime-img-content img:nth-child(1) {
left: 0;
top: 0;
animation: anime-top-bottom 15s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(2) {
left: 15%;
bottom: 0;
animation: anime-top-bottom 30s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(3) {
left: 12%;
top: 20%;
z-index: 1;
animation: anime-top-bottom 20s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(4) {
left: 48%;
top: 45%;
z-index: 1;
animation: anime-top-bottom 10s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(5) {
left: 45%;
top: 23%;
animation: anime-top-bottom 25s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(6) {
left: 27%;
top: 47%;
animation: anime-left-right 15s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(7) {
left: 5%;
top: 37%;
animation: anime-left-right 10s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(8) {
left: 40%;
top: 60%;
animation: anime-left-right 20s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(9) {
right: -50px;
top: 62%;
animation: anime-left-right 30s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(10) {
left: 10%;
top: 5%;
animation: anime-top-bottom 15s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(11) {
right: 0;
top: 80%;
animation: anime-top-bottom 15s linear infinite;
animation-direction: reverse; }
.kompleks-marketing_section-six .container {
position: relative;
z-index: 3; }
.kompleks-marketing_section-six .container .icon-brand-why .num {
top: -35px;
line-height: 1;
color: #07315B; }
.modal-content-price {
margin-top: 85px; }
.modal-content-price:before {
content: "";
position: absolute;
left: 5%;
bottom: -20px;
height: 50%;
width: 90%;
background: #26A1C1;
opacity: 0.2;
border-radius: 15px;
z-index: 1; }
.modal-content-price div {
position: relative;
z-index: 3;
border-radius: 15px;
overflow: hidden;
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(38, 161, 193, 0.5); }
.modal-content-price div header {
background: linear-gradient(99.29deg, #21B1C9 0%, #176F93 100%);
padding: 22px 0; }
.modal-content-price div p {
color: #565D69;
font-size: 25px;
padding: 35px 0;
position: relative;
max-width: 410px;
display: block;
margin: 0 auto; }
.modal-content-price div p:after {
content: "";
position: absolute;
width: 84%;
left: 7%;
bottom: 0;
border: 1px solid #D8D5ED; }
.modal-content-price div a {
margin-top: 35px;
margin-bottom: 50px; }
.modal-content-price div a:hover, .modal-content-price div a:focus, .modal-content-price div a:active {
box-shadow: none; }
@keyframes anime-top-bottom {
0% {
transform: translate(0, 0); }
33% {
transform: translate(-15px, 30px); }
66% {
transform: translate(15px, -30px); }
100% {
transform: translate(0, 0); } }
@keyframes anime-left-right {
0% {
transform: translate(0, 0); }
33% {
transform: translate(-30px, 10px); }
66% {
transform: translate(30px, -10px); }
100% {
transform: translate(0, 0); } }
@media (max-width: 1599px) {
.kompleks-marketing_section-six {
padding-bottom: 500px !important; }
.kompleks-marketing_section-six .anime-img-content {
height: 800px; } }
@media (max-width: 1200px) {
.komplecks_marketing-cases .item-portfolio img {
max-width: 100%; } }
@media (max-width: 992px) {
.integrated-marketing_intro .section-intro .intro-icons {
width: 100%;
max-width: 100%; } }
@media (max-width: 768px) {
.marketing_steps_section .row > div span,
.marketing_steps_section .row > div.text-md-right span {
margin-top: 0;
top: 0;
right: auto;
left: 0; }
.komplecks_marketing-cases .slide-control-portfolio-brand {
top: 95%;
left: 100%; }
.kompleks-marketing_section-six {
padding-bottom: 300px !important; }
.kompleks-marketing_section-six .anime-img-content {
top: 0;
left: 0;
height: 500px;
max-width: 100%;
width: 100%;
overflow: hidden; }
.kompleks-marketing_section-six .anime-img-content img {
animation: none !important; }
.kompleks-marketing_section-six .icon-brand-why {
padding: 15px;
background: rgba(0, 0, 0, 0.6);
border-radius: 10px; } }
.color_darkturquoise {
color: #339DC7; }
.color_darkturquoise_light_03 {
color: rgba(51, 157, 199, 0.3) !important; }
.color_dark {
color: #072A50; }
.color_white {
color: #ffffff; }
.bg-dark-blue-img {
background: url(../images/amo-crm/bg-dark-blue.png) no-repeat center -50%;
background-size: 100% 1000px; }
.bg-dark-blue-color {
position: relative;
background: #002650; }
.bg-dark-blue-color:before {
content: "";
position: absolute;
left: 0;
top: -1px;
width: 100%;
height: 2px;
background: #002650; }
.bg-dark-blue-color_before-50 {
position: relative; }
.bg-dark-blue-color_before-50 .bg-anim-item {
z-index: 3; }
.bg-dark-blue-color_before-50 .container {
position: relative;
z-index: 2; }
.bg-dark-blue-color_before-50:before {
content: "";
position: absolute;
left: 0;
top: -1px;
width: 100%;
height: 50%;
background: #002650; }
.overflow-hidden {
overflow: hidden; }
.section-amo_crm-opportunities .col-md-5 {
position: relative; }
.section-amo_crm-opportunities .section-heading {
margin-bottom: 100px; }
.section-amo_crm-opportunities .bg-anim-item {
width: 326px;
max-width: 100%;
display: block !important; }
.section-amo_crm-opportunities .img-step-site {
position: relative;
z-index: 2; }
.section-amo_crm-opportunities .step-smm {
margin-bottom: 100px; }
.section-amo_crm-opportunities .step-smm h4 {
color: #2855AF;
margin-bottom: 30px; }
.section-amo_crm-opportunities .step-smm ul {
padding-left: 0;
list-style: none; }
.section-amo_crm-opportunities .step-smm ul li {
position: relative;
padding-left: 30px;
margin-bottom: 15px; }
.section-amo_crm-opportunities .step-smm ul li:before {
content: "";
position: absolute;
left: 0;
top: 5px;
width: 10px;
height: 10px;
border-radius: 50%;
background: #2855AF; }
.section-amo_crm-benefit {
overflow: hidden; }
.section-amo_crm-benefit header.section-heading {
margin-top: 60px;
margin-bottom: 200px; }
.section-amo_crm-benefit .circle_lines img {
position: absolute;
left: 50%;
transform: translateX(-50%); }
.section-amo_crm-benefit .circle_lines img:nth-child(1) {
top: 85px; }
.section-amo_crm-benefit .circle_lines img:nth-child(2) {
top: 100px; }
.section-amo_crm-benefit .circle_lines img:nth-child(3) {
top: 105px; }
.section-amo_crm-benefit .icons_content {
position: relative;
z-index: 3; }
.section-amo_crm-benefit .icons_content .line {
display: flex;
text-align: center;
justify-content: center; }
.section-amo_crm-benefit .icons_content .line .article {
cursor: pointer;
display: inline-block;
width: 180px;
margin-left: 35px;
margin-right: 35px; }
.section-amo_crm-benefit .icons_content .line .article .img {
width: 80px;
height: 80px;
display: block;
margin: 0 auto 10px auto;
background: #F1FBFF;
box-shadow: 0px 0px 20px rgba(55, 160, 202, 0.5);
border-radius: 50%;
position: relative;
transition: all .3s; }
.section-amo_crm-benefit .icons_content .line .article .img img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 42px;
transition: all .3s; }
.section-amo_crm-benefit .icons_content .line .article .img img.default {
opacity: 1; }
.section-amo_crm-benefit .icons_content .line .article .img img.hover {
opacity: 0; }
.section-amo_crm-benefit .icons_content .line .article p {
color: #ffffff; }
.section-amo_crm-benefit .icons_content .line .article:hover .img {
background: #37A0CA;
box-shadow: 0px 0px 30px rgba(95, 198, 239, 0.5); }
.section-amo_crm-benefit .icons_content .line .article:hover .img img.default {
opacity: 0; }
.section-amo_crm-benefit .icons_content .line .article:hover .img img.hover {
opacity: 1; }
.section-amo_crm-benefit .icons_content .line.line1 {
margin-bottom: 140px; }
.section-amo_crm-benefit .icons_content .line.line1 .article:first-child,
.section-amo_crm-benefit .icons_content .line.line1 .article:last-child {
margin-top: -70px; }
.section-amo_crm-benefit .icons_content .line.line2 {
margin-bottom: 140px; }
.section-amo_crm-benefit .icons_content .line.line2 .article:first-child,
.section-amo_crm-benefit .icons_content .line.line2 .article:last-child {
margin-top: -100px; }
.section-amo_crm-benefit .icons_content .line.line3 .article:nth-child(2),
.section-amo_crm-benefit .icons_content .line.line3 .article:nth-child(4) {
margin-top: -30px; }
.section-amo_crm-benefit .icons_content .line.line3 .article:first-child,
.section-amo_crm-benefit .icons_content .line.line3 .article:last-child {
margin-top: -115px; }
.form_steps_blue-light {
position: relative;
padding: 10px;
border-radius: 6px;
background: linear-gradient(180deg, #5743F8 0%, #25A3C0 100%);
box-shadow: 2px -2px 10px rgba(51, 157, 199, 0.2); }
.form_steps_blue-light.border-style2 {
background: linear-gradient(180deg, #21A9C3 0%, #0B3E69 100%); }
.form_steps_blue-light .box {
border: 0;
border-radius: 0 !important; }
.form_steps_blue-light .box .dots-form > span {
background: #fff;
border-color: #339DC7 !important; }
.form_steps_blue-light .box .dots-form > span.done, .form_steps_blue-light .box .dots-form > span.active {
background: #339DC7 !important; }
.form_steps_blue-light .box .dots-form > span.done i, .form_steps_blue-light .box .dots-form > span.active i {
opacity: 1; }
.form_steps_blue-light .box .dots-form > span i {
color: #ffffff; }
.form_steps_blue-light .box button {
background: #339DC7;
border-radius: 0;
border: 0; }
.form_steps_blue-light .box button:hover, .form_steps_blue-light .box button:focus, .form_steps_blue-light .box button:active {
box-shadow: none;
background-color: #339DC7 !important; }
.section-steps-amo_crm .title-section {
max-height: 55px; }
.section-steps-amo_crm .card {
height: 155px;
box-shadow: 0px 0px 20px rgba(51, 157, 199, 0.15);
margin-right: 0;
margin-left: 0; }
.section-steps-amo_crm .card .corner {
width: 60px;
height: 60px;
font-size: 24px;
padding-top: 7px;
padding-left: 10px;
background: #2855AF; }
.section-steps-amo_crm .card .card-body .card-title {
font-size: 12px;
margin-top: 55px;
padding-left: 5px; }
.section-steps-amo_crm .card .card-body .card-title:after {
content: none; }
.section-steps-amo_crm .card:hover {
background: #2855AF; }
.section-steps-amo_crm .card:hover .corner {
background: #ffffff;
color: #2855AF; }
.section-steps-amo_crm .card:hover h4 {
color: #ffffff; }
.section-steps-amo_crm .img-arrow {
top: 32%; }
.amo-crm-certificate img {
max-width: 100%; }
.amo-crm-certificate p {
font-size: 20px; }
.section-amo_crm-advantages .shape-bg_amo-crm {
position: absolute;
top: 0;
left: 0;
width: 40%;
height: 580px; }
.section-amo_crm-advantages .shape-bg_amo-crm:after {
content: "";
position: absolute;
width: 83%;
height: 86%;
left: 0;
top: 0;
z-index: 1;
background: #072A50;
border-radius: 0 5px 5px 0; }
.section-amo_crm-advantages .shape-bg_amo-crm:before {
content: "";
position: absolute;
width: 83%;
height: 86%;
right: 0;
bottom: 0;
z-index: 3;
background: linear-gradient(46.89deg, #072A50 3.86%, #1F83A8 100.06%);
opacity: 0.9;
border-radius: 5px; }
.section-amo_crm-advantages .shape-bg_amo-crm span {
position: absolute;
top: 10%;
right: 50%;
z-index: 2;
font-weight: 600;
font-size: 400px;
line-height: 1;
color: #71C7EA;
opacity: 0.4; }
.section-amo_crm-advantages .shape-bg_amo-crm img {
position: absolute;
z-index: 4; }
.section-amo_crm-advantages .container {
position: relative;
z-index: 5; }
.section-amo_crm-advantages .container .title-section {
max-width: 310px; }
.section-amo_crm-advantages .container .article {
position: relative; }
.section-amo_crm-advantages .container .article:before {
content: "";
position: absolute;
right: 20%;
top: 55px;
width: 20%;
height: 2px;
background: transparent; }
.section-amo_crm-advantages .container .article:nth-child(1), .section-amo_crm-advantages .container .article:nth-child(2) {
margin-bottom: 70px; }
.section-amo_crm-advantages .container .article:nth-child(1):before, .section-amo_crm-advantages .container .article:nth-child(3):before {
background: #7CCCDB; }
.section-amo_crm-advantages .container .article .number {
position: relative;
width: 110px;
height: 110px;
text-align: center;
margin-bottom: 25px; }
.section-amo_crm-advantages .container .article .number span {
position: relative;
z-index: 2;
line-height: 110px;
display: inline-block;
font-size: 40px;
font-weight: bold;
color: #2855AF; }
.section-amo_crm-advantages .container .article .number img {
position: absolute;
max-width: 110px;
max-height: 110px;
left: 0;
top: 0;
animation: rotate 5s linear infinite;
user-select: none; }
.section-amo_crm-advantages .container .article p {
max-width: 290px; }
.amo-crm_second_section header p {
max-width: 465px;
color: #505050;
font-size: 18px;
margin-bottom: 65px;
margin: 0 auto 65px auto; }
.amo-crm_second_section .col-md-3 .progress-circle {
border-radius: 50%;
display: block;
width: 126px;
height: 126px;
position: relative;
z-index: auto;
margin: 0 auto 20px auto; }
.amo-crm_second_section .col-md-3 .progress-circle .outer {
background: #93A9D6;
width: 126px;
height: 126px;
overflow: hidden;
z-index: 100; }
.amo-crm_second_section .col-md-3 .progress-circle .outer .mask {
background: #93A9D6;
border-radius: 87px 0 0 87px;
position: absolute;
width: 63px;
height: 126px;
top: 0;
left: 0;
z-index: 120; }
.amo-crm_second_section .col-md-3 .progress-circle .outer .half {
background: #2855AF;
position: absolute;
width: 63px;
height: 126px;
top: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.amo-crm_second_section .col-md-3 .progress-circle .outer .half.spinner {
border-radius: 0 63px 63px 0;
right: 0;
z-index: 10;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
-ms-transform-origin: left center;
transform-origin: left center;
z-index: 110; }
.amo-crm_second_section .col-md-3 .progress-circle .outer .half.filler {
border-radius: 63px 0 0 63px;
left: 0;
z-index: 5;
-webkit-transform-origin: right center;
-moz-transform-origin: right center;
-o-transform-origin: right center;
-ms-transform-origin: right center;
transform-origin: right center;
z-index: 130; }
.amo-crm_second_section .col-md-3 .progress-circle .inner {
background: #ffffff;
position: absolute;
left: 10px;
top: 10px;
width: 106px;
height: 106px;
z-index: 300; }
.amo-crm_second_section .col-md-3 .progress-circle .percentage {
color: #2855AF;
width: 100%;
text-align: center;
position: absolute;
font-size: 25px;
font-weight: bold;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-o-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
letter-spacing: -0.05em;
overflow: hidden;
line-height: 1em;
z-index: 400; }
.amo-crm_second_section .col-md-3 .progress-circle .percentage1 {
display: none; }
.amo-crm_second_section .col-md-3 .progress-circle .inner,
.amo-crm_second_section .col-md-3 .progress-circle .outer {
display: inline-block;
border-radius: 50%; }
.amo-crm_second_section .col-md-3 h4 {
color: #444F60;
font-size: 16px;
font-weight: bold;
max-width: 220px;
text-align: center;
display: block;
margin: 0 auto 15px auto; }
.amo-crm_second_section .col-md-3 p {
font-size: 14px;
max-width: 220px;
text-align: center;
display: block;
margin: 0 auto 50px auto; }
#popup_calculator .modal-dialog {
max-width: 920px;
width: calc(100% - 15px); }
#popup_calculator .modal-dialog h2 {
font-size: 25px; }
#popup_calculator .modal-dialog h5 {
font-size: 16px; }
#popup_calculator .modal-dialog .form-group-oval input {
background: #EEF9FE;
border-radius: 50px;
padding: 13px 40px;
color: #072A50;
font-size: 16px;
font-weight: 600;
border: none !important; }
#popup_calculator .modal-dialog .form-group-oval input::-webkit-input-placeholder {
/* Edge */
color: #072A50; }
#popup_calculator .modal-dialog .form-group-oval input:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: #072A50; }
#popup_calculator .modal-dialog .form-group-oval input::placeholder {
color: #072A50; }
#popup_calculator .modal-dialog .range-container .box-minmax {
margin-top: 10px;
width: 100%;
display: flex;
justify-content: space-between;
font-size: 16px;
font-weight: 600;
color: #8395A8; }
#popup_calculator .modal-dialog .range-container .box-minmax span:first-child {
margin-left: 10px; }
#popup_calculator .modal-dialog .range-container .box-minmax span:last-child {
margin-right: 10px; }
#popup_calculator .modal-dialog .range-container .rs-range {
margin-top: 29px;
width: 100%;
-webkit-appearance: none; }
#popup_calculator .modal-dialog .range-container .rs-range:focus {
outline: none; }
#popup_calculator .modal-dialog .range-container .rs-range::-webkit-slider-runnable-track {
width: 100%;
height: 8px;
cursor: pointer;
box-shadow: none;
background: #EEF9FE;
border-radius: 50px;
border: 0px solid #010101; }
#popup_calculator .modal-dialog .range-container .rs-range::-moz-range-track {
width: 100%;
height: 8px;
cursor: pointer;
box-shadow: none;
background: #EEF9FE;
border-radius: 50px;
border: 0px solid #010101; }
#popup_calculator .modal-dialog .range-container .rs-range::-webkit-slider-thumb {
box-shadow: none;
border: 0px solid #ffffff;
box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
height: 30px;
width: 30px;
border-radius: 50%;
background: linear-gradient(180deg, #339DC7 0%, #5FB6DA 100%);
cursor: pointer;
-webkit-appearance: none;
margin-top: -12px; }
#popup_calculator .modal-dialog .range-container .rs-range::-moz-range-thumb {
box-shadow: none;
border: 0px solid #ffffff;
box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
height: 30px;
width: 30px;
border-radius: 50%;
background: linear-gradient(180deg, #339DC7 0%, #5FB6DA 100%);
cursor: pointer;
-webkit-appearance: none;
margin-top: -12px; }
#popup_calculator .modal-dialog .range-container .rs-range::-moz-focus-outer {
border: 0; }
#popup_calculator .modal-dialog .range-container .rs-label {
position: relative;
transform-origin: center center;
display: block;
width: 90px;
background: transparent;
line-height: 1;
text-align: center;
font-weight: bold;
margin-left: -30px;
left: attr(value);
color: #072A50;
font-size: 18px; }
#popup_calculator .modal-dialog .checkbox-content label {
display: table;
margin-bottom: 20px; }
#popup_calculator .modal-dialog .checkbox-content label span {
font-size: 14px;
padding-left: 50px;
font-weight: 600;
color: #8395A8;
padding-left: 50px;
position: relative;
cursor: pointer;
user-select: none;
display: block; }
#popup_calculator .modal-dialog .checkbox-content label span:before {
content: "";
position: absolute;
left: 0;
top: -5px;
width: 30px;
height: 30px;
border: 2px solid #349DC7;
border-radius: 50%; }
#popup_calculator .modal-dialog .checkbox-content label input:checked + span:before {
border: none;
background: linear-gradient(180deg, #339DC7 0%, #5FB6DA 100%); }
@media (max-width: 767px) {
.bg-dark-blue-img {
background-size: cover; }
.amo-crm_second_section .col-md-3 .progress-circle {
margin-bottom: 20px; }
.amo-crm_second_section .col-md-3 p {
margin-bottom: 75px; }
.section-amo_crm-benefit header.section-heading {
margin-top: 0;
margin-bottom: 70px; }
.section-amo_crm-benefit .circle_lines {
display: none; }
.section-amo_crm-benefit .icons_content .line {
display: block;
margin-bottom: 0 !important; }
.section-amo_crm-benefit .icons_content .line .article {
position: relative;
display: block;
margin: 0 auto 30px auto !important; }
.section-amo_crm-benefit .icons_content .line .article:before {
content: "";
position: absolute;
left: 50%;
transform: translateX(-50%);
top: -105px;
width: 400px;
height: 150px;
background: url(../images/amo-crm/circle_line1.svg);
background-size: 100% 100%; }
.section-amo_crm-benefit .icons_content .line .article .img,
.section-amo_crm-benefit .icons_content .line .article p {
position: relative;
z-index: 2; }
.section-steps-amo_crm .img-arrow {
top: auto;
right: 50%;
margin-right: -10px;
bottom: 15px;
transform: rotate(90deg); }
.section-amo_crm-advantages .shape-bg_amo-crm {
width: 90%;
height: 180px; }
.section-amo_crm-advantages .shape-bg_amo-crm span {
font-size: 120px; }
.section-amo_crm-advantages .container .title-section {
margin-bottom: 80px; }
.section-amo_crm-advantages .container .article {
margin-bottom: 50px !important; }
.section-amo_crm-advantages .container .article:before {
background: #339DC7; } }
.my-warehouse_intro {
background-color: #00091f;
background-image: url(../images/my-warehouse/intro.png);
overflow: hidden; }
.my-warehouse_intro .navbar {
margin-bottom: 8rem; }
.my-warehouse_intro .col-md-6 {
position: relative; }
.my-warehouse_intro .col-md-6 .btn-primary {
background-color: #2855AF; }
.my-warehouse_intro .col-md-6 .btn-primary:after {
border-color: #2855AF; }
.my-warehouse_intro .col-md-6 .img_anime {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
.my-warehouse_intro .col-md-6 .img_anime img {
position: absolute; }
.my-warehouse_intro .col-md-6 .img_anime img.top_center {
top: -10%;
left: 25%;
animation: floating 15s linear infinite; }
.my-warehouse_intro .col-md-6 .img_anime img.top_right {
top: -10%;
right: -10%;
animation: floating 25s linear infinite; }
.my-warehouse_intro .col-md-6 .img_anime img.bottom_right {
bottom: -10%;
right: -10%;
animation: floating 35s linear infinite; }
.my-warehouse_intro .col-md-6 .img_anime img.bottom_left {
bottom: -10%;
left: -15%;
animation: floating 45s linear infinite; }
.my-warehouse_intro .col-md-6 .contentn_video_w100 {
background-color: #2855AF;
border-color: #2855AF;
overflow: hidden; }
.my-warehouse_intro .col-md-6 .contentn_video_w100:before {
content: none; }
.my-warehouse_intro .col-md-6 .contentn_video_w100:after {
opacity: 1;
background: #fff url(../images/my-warehouse/logo.svg) no-repeat center;
background-size: 60%; }
.my-warehouse_intro .col-md-6 .contentn_video_w100.active > a {
opacity: 0;
visibility: hidden; }
.my-warehouse_intro .col-md-6 .contentn_video_w100 .circle-ripple {
background: url(../images/my-warehouse/play.svg) no-repeat 24px center;
background-size: 2.2rem;
background-color: #2855AF;
width: 5rem;
height: 5rem;
border-radius: 50%;
animation: ripple 0.7s linear infinite;
display: block;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
cursor: pointer;
z-index: 1;
visibility: visible;
opacity: 1;
transition: all .3s; }
.my-warehouse_intro .col-md-6 .contentn_video_w100 .circle-ripple:focus, .my-warehouse_intro .col-md-6 .contentn_video_w100 .circle-ripple:hover {
outline: none;
text-decoration: none; }
.my-warehouse_intro .down-btn-wrap {
position: relative;
z-index: 2; }
.my-warehouse_content {
background: #fff;
overflow: hidden; }
.my-warehouse_content .bg_gradient_white_blue {
position: relative; }
.my-warehouse_content .bg_gradient_white_blue > section,
.my-warehouse_content .bg_gradient_white_blue > div {
position: relative;
z-index: 1; }
.my-warehouse_content .bg_gradient_white_blue:before, .my-warehouse_content .bg_gradient_white_blue:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0; }
.my-warehouse_content .bg_gradient_white_blue:before {
top: 300px;
background: linear-gradient(0deg, #E9EEF7 -0.65%, #FFFFFF 84.42%);
opacity: 0.5; }
.my-warehouse_content .bg_gradient_white_blue:after {
top: 250px;
background: linear-gradient(0deg, #E9EEF7 -0.65%, #FFFFFF 97.75%); }
.my-warehouse_content .title-section {
color: #2855AF; }
.my-warehouse_content .btn-primary {
background-color: #2855AF; }
.my-warehouse_content .btn-primary:after {
border-color: #2855AF; }
.my-warehouse_content .section-one .slider_nav {
display: block;
width: 100%;
margin-bottom: 4rem; }
.my-warehouse_content .section-one .slider_nav .links {
position: relative;
width: 100%;
padding-bottom: 2rem; }
.my-warehouse_content .section-one .slider_nav .links:after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
border-bottom: 3px solid rgba(100, 205, 255, 0.3); }
.my-warehouse_content .section-one .slider_nav .links div {
position: relative; }
.my-warehouse_content .section-one .slider_nav .links div:after {
content: "";
position: absolute;
left: 0;
bottom: -2rem;
width: 100%;
border-bottom: 3px solid transparent;
transition: all .2s; }
.my-warehouse_content .section-one .slider_nav .links div.active:after {
border-bottom-color: #64CDFF; }
.my-warehouse_content .section-one .slider_nav .links div.active span {
color: #2855AF;
font-weight: bold; }
.my-warehouse_content .section-one .slider_nav .links div span {
user-select: none;
display: block;
line-height: 1;
font-weight: 400;
font-size: 16px;
color: #072A50;
cursor: pointer;
padding: .5rem 0; }
.my-warehouse_content .section-one .slider img {
max-width: 100%; }
.my-warehouse_content .section-one .slider .slick-dots {
display: none !important; }
.my-warehouse_content .section-one .slider .slick-arrow {
width: 24px;
height: 24px; }
.my-warehouse_content .section-one .slider .slick-arrow.slick-prev {
left: -1rem;
background: url(../images/icons/downbtn.png) no-repeat center;
transform: rotate(90deg); }
.my-warehouse_content .section-one .slider .slick-arrow.slick-next {
right: -1rem;
background: url(../images/icons/downbtn.png) no-repeat center;
transform: rotate(-90deg); }
.my-warehouse_content .section-second .container > .row {
padding-bottom: 10rem; }
.my-warehouse_content .section-second .container > .row > div.img_block {
display: flex;
-webkit-display: flex;
align-items: center;
-webkit-align-items: center; }
.my-warehouse_content .section-second .container > .row > div.img_block > img {
margin: 0 auto;
display: block;
max-width: 100%;
position: relative;
z-index: 2; }
.my-warehouse_content .section-second .container > .row > div.img_block .animate_img {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
.my-warehouse_content .section-second .container > .row > div.img_block .animate_img img.liquid_circle {
position: absolute;
top: 15%;
height: 60%;
animation: floating 100s linear infinite; }
.my-warehouse_content .section-second .container > .row > div.img_block .animate_img img.min {
position: absolute;
left: 40%;
animation: floating 15s linear infinite; }
.my-warehouse_content .section-second .container > .row > div.img_block .animate_img img.max {
position: absolute;
left: 40%;
animation: floating 30s linear infinite; }
.my-warehouse_content .section-second .container > .row > div article {
position: relative;
z-index: 2;
margin-bottom: 0; }
.my-warehouse_content .section-second .container > .row > div article .title {
font-weight: bold;
font-size: 1.7rem;
line-height: 2.1rem;
color: #2855AF;
margin-bottom: 2.7rem;
padding-bottom: 0; }
.my-warehouse_content .section-second .container > .row > div article .title:after {
content: none; }
.my-warehouse_content .section-second .container > .row > div article p {
font-size: 1.1rem;
line-height: 140%;
color: #072A50; }
.my-warehouse_content .section-second .container > .row > div:first-child.img_block .animate_img img.liquid_circle {
left: 0; }
.my-warehouse_content .section-second .container > .row > div:first-child.img_block .animate_img img.min {
bottom: 0; }
.my-warehouse_content .section-second .container > .row > div:first-child.img_block .animate_img img.max {
top: 0; }
.my-warehouse_content .section-second .container > .row > div:last-child.img_block .animate_img img.liquid_circle {
right: 0; }
.my-warehouse_content .section-second .container > .row > div:last-child.img_block .animate_img img.min {
top: 0; }
.my-warehouse_content .section-second .container > .row > div:last-child.img_block .animate_img img.max {
bottom: 0; }
.my-warehouse_content .section-three .content {
background: #2855AF;
border-radius: 2rem;
padding: 4rem 0; }
.my-warehouse_content .section-three .content .bg_img {
overflow: hidden;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
.my-warehouse_content .section-three .content .bg_img img {
max-width: 100%; }
.my-warehouse_content .section-three .content .img_animate {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: transparent; }
.my-warehouse_content .section-three .content .img_animate img.min {
position: absolute;
z-index: 2;
top: 30%;
left: -12%;
animation: floating 15s linear infinite; }
.my-warehouse_content .section-three .content .img_animate img.max {
position: absolute;
z-index: 2;
bottom: -40%;
right: 10%;
animation: floating 30s linear infinite; }
.my-warehouse_content .section-three .content .row {
color: #fff;
position: relative;
z-index: 2; }
.my-warehouse_content .section-three .content .row h2 {
font-weight: 800;
font-size: 2.7rem;
line-height: 3.2rem;
margin-bottom: 2.7rem; }
.my-warehouse_content .section-three .content .row p {
font-size: 1.1rem;
margin-bottom: 2.7rem; }
.my-warehouse_content .section-three .content .row .links a {
display: inline-block;
margin: 0 0.8rem; }
.my-warehouse_content .section-four .content {
display: block;
padding-top: 13.5rem;
overflow: hidden;
text-align: center; }
.my-warehouse_content .section-four .content article {
display: block;
float: left;
width: 20%; }
.my-warehouse_content .section-four .content article.top {
position: relative;
top: -13.5rem; }
.my-warehouse_content .section-four .content article img,
.my-warehouse_content .section-four .content article p {
margin-bottom: 1rem;
color: #072A50; }
.my-warehouse_content .section-five .content .img_animate {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0; }
.my-warehouse_content .section-five .content .img_animate img {
position: absolute; }
.my-warehouse_content .section-five .content .img_animate img.min {
top: 0;
right: 0;
animation: floating 15s linear infinite; }
.my-warehouse_content .section-five .content .img_animate img.max {
left: -10%;
bottom: -20%;
animation: floating 30s linear infinite; }
.my-warehouse_content .section-five .content .box {
box-shadow: 10px 10px 70px rgba(40, 85, 175, 0.05);
border-radius: 2rem !important;
border: 0;
padding: 3.3rem; }
.my-warehouse_content .section-five .content .box h3 {
font-size: 1.8rem;
line-height: 2.15rem;
margin-bottom: 3.3rem;
max-width: 90%;
color: #2855AF; }
.my-warehouse_content .section-five .content .box .dots > span {
background: #3FA6D7;
border-color: #2855AF !important; }
.my-warehouse_content .section-five .content .box .dots > span.active {
border-color: #2855AF !important; }
.my-warehouse_content .section-six .content .text-center {
margin-bottom: 6.7rem; }
.my-warehouse_content .section-six .content .text-center img {
margin-bottom: 1.3rem; }
.my-warehouse_content .section-six .content .text-center h4 {
font-size: 1.3rem;
line-height: 1.5rem;
color: #2855AF;
margin-bottom: 1.3rem; }
.my-warehouse_content .section-six .content .text-center p {
color: #072A50;
font-size: 1.1rem;
margin-bottom: 1.3rem; }
.my-warehouse_content .section-seven .box {
border: none; }
.my-warehouse_content .section-seven .box img {
max-width: 100% !important; }
.my-warehouse_content .section-amo_crm-advantages .shape-bg_amo-crm {
top: 70px; }
.my-warehouse_content .section-amo_crm-advantages .shape-bg_amo-crm:before {
opacity: 1;
border-radius: 5px 5px 10rem 5px;
background: #2855AF;
box-shadow: 4px 4px 25px rgba(60, 101, 182, 0.2);
left: 25%; }
.my-warehouse_content .section-amo_crm-advantages .shape-bg_amo-crm:after {
border-radius: 10rem 5px 5px 5px;
background: #3FA6D7;
left: 9%; }
.my-warehouse_content .section-amo_crm-advantages .container .title-section {
color: #fff;
margin-left: auto; }
.my-warehouse_content .section-amo_crm-advantages .img_certificate img {
max-width: 100%;
max-height: 600px;
box-shadow: 10px 10px 70px rgba(40, 85, 175, 0.05); }
.my-warehouse_content .section-eight {
overflow: hidden;
padding-bottom: 10rem; }
.my-warehouse_content .section-eight .content {
padding: 6rem 0; }
.my-warehouse_content .section-eight .content:after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #2855AF;
border-radius: 2rem; }
.my-warehouse_content .section-eight .content .img_anime {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
.my-warehouse_content .section-eight .content .img_anime img {
position: absolute;
z-index: 4; }
.my-warehouse_content .section-eight .content .img_anime img.min {
top: -20%;
right: 3rem;
animation: floating 15s linear infinite; }
.my-warehouse_content .section-eight .content .img_anime img.max {
z-index: 0;
top: 65%;
left: 5rem;
animation: floating 30s linear infinite; }
.my-warehouse_content .section-eight .content > .row {
position: relative;
z-index: 5; }
.my-warehouse_content .section-eight .content > .row h2 {
display: table;
margin: 0 auto;
color: #fff;
font-weight: 800;
font-size: 2.7rem;
line-height: 3.2rem; }
.my-warehouse_content .section-eight .content > .row .btn {
background: #fff;
color: #2855AF;
border-radius: 3rem; }
.my-warehouse_content + .section-footer {
position: relative;
z-index: 5; }
@keyframes ripple {
0% {
box-shadow: 0 0 0 0 rgba(40, 85, 175, 0.3), 0 0 0 1em rgba(40, 85, 175, 0.3), 0 0 0 3em rgba(40, 85, 175, 0.3), 0 0 0 5em rgba(40, 85, 175, 0.3); }
100% {
box-shadow: 0 0 0 1em rgba(40, 85, 175, 0.3), 0 0 0 3em rgba(40, 85, 175, 0.3), 0 0 0 5em rgba(40, 85, 175, 0.3), 0 0 0 8em rgba(40, 85, 175, 0); } }
#online_store .module_1 .section-heading .title-section {
max-width: 600px;
display: table;
margin-right: auto;
margin-left: auto; }
#online_store .module_1 .section-heading .bg-num {
color: #2855AF;
opacity: .1; }
#online_store .module_1 .info .article {
position: relative;
color: #565D69;
padding-left: 85px;
margin-bottom: 3rem; }
#online_store .module_1 .info .article img {
position: absolute;
left: 0;
top: 50%;
width: 50px;
margin-top: -25px; }
#online_store .module_1 .info .article span {
font-size: 1rem; }
#online_store .module_1 .info .article p {
font-size: 1.3rem;
font-weight: bold; }
#online_store .module_1 .img .shape {
position: absolute;
left: 0;
top: 0;
max-width: 100%; }
#online_store .module_1 .img .photo {
position: relative;
z-index: 2;
max-width: 100%;
display: block; }
#online_store .module_2 .card {
position: relative;
background: #FFFFFF;
border: 1px solid #E7ECF6;
border-radius: 10px;
overflow: hidden;
padding: 100px .5rem 2.33rem 2.33rem;
margin-bottom: 2.33rem;
transition: all .3s; }
#online_store .module_2 .card:hover {
cursor: pointer;
border-color: #ffffff;
box-shadow: 0px 6px 40px rgba(59, 100, 183, 0.15); }
#online_store .module_2 .card:hover img {
transform: scale(1.2) translateY(-10px); }
#online_store .module_2 .card .number {
position: absolute;
right: 0;
top: 0;
background-color: #2855AF;
color: #fff;
font-weight: bold;
font-size: 1.6rem;
width: 90px;
height: 90px;
line-height: 80px;
text-align: center;
border-radius: 0 0 0 100px; }
#online_store .module_2 .card img {
max-height: 50px;
position: absolute;
top: 30px;
left: 40px;
transform: scale(1) translateY(0);
transition: all .3s; }
#online_store .module_2 .card p {
font-size: .93rem;
margin-bottom: .66rem; }
#online_store .module_2 .card h4 {
font-size: 1.3rem; }
#online_store .module_3 .article > div {
position: relative;
margin: 0 0 5.33rem 7rem; }
#online_store .module_3 .article > div:hover {
cursor: pointer; }
#online_store .module_3 .article > div:hover .img:before, #online_store .module_3 .article > div:hover .img:after {
width: calc( 100% + 16px );
height: calc( 100% + 16px ); }
#online_store .module_3 .article > div:hover .img:after {
border-left-color: #64CDFF;
border-bottom-color: #64CDFF; }
#online_store .module_3 .article > div:hover .img:before {
border-top-color: #64CDFF;
border-right-color: #64CDFF; }
#online_store .module_3 .article > div:hover .img img {
transform: scale(1.2); }
#online_store .module_3 .article > div .img {
position: relative;
width: 140px;
height: 125px;
padding: 27px 0;
border: 8px solid #2855AF;
margin-bottom: 1.33rem; }
#online_store .module_3 .article > div .img:before, #online_store .module_3 .article > div .img:after {
content: "";
overflow: hidden;
position: absolute;
border: 8px solid #2855AF;
width: 0;
height: 0;
transition: width .3s, height .3s; }
#online_store .module_3 .article > div .img:before {
top: -8px;
right: -8px; }
#online_store .module_3 .article > div .img:after {
left: -8px;
bottom: -8px; }
#online_store .module_3 .article > div .img img {
max-height: 55px;
display: block;
margin: 0 auto;
transition: all .3s;
transform: scale(1); }
#online_store .module_3 .article > div .number {
position: absolute;
left: -40px;
top: 0;
color: #2855AF;
opacity: .05;
font-size: 8rem;
font-weight: bold; }
#online_store .module_3 .article > div p {
font-size: 1.2rem;
color: #565D69; }
#online_store .module_5 .for_shape:after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 700%;
height: 100%;
background: #2855AF;
border-radius: 0px 20px 20px 0px; }
#online_store .module_5 .for_shape .section-heading {
position: relative;
z-index: 2;
min-height: 120px;
margin-top: auto;
margin-bottom: auto; }
#online_store .module_5 .for_shape .section-heading .bg-num {
color: rgba(255, 255, 255, 0.1);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin-top: auto; }
#online_store .module_5 .btn_bottom_arrow {
cursor: pointer; }
#online_store .module_5 .btn_bottom_arrow.active img {
transform: rotate(90deg); }
#online_store .module_5 .btn_bottom_arrow img {
display: block;
transform: rotate(-90deg);
transition: all .3s; }
#online_store .module_5 .content {
display: none; }
#online_store .module_5 .content .title-section {
margin-top: 4rem;
margin-bottom: 5.5rem; }
#online_store .module_5 .content div {
margin-bottom: 4rem; }
#online_store .module_5 .content div h4 {
font-size: 1.66rem;
color: #072A50;
margin-bottom: 1.33rem; }
#online_store .module_5 .content div p {
font-size: 1.2rem; }
#online_store .module_6 .article {
padding-top: 7rem;
padding-bottom: 7rem; }
#online_store .module_6 .article img {
max-width: 100%; }
#online_store .module_6 .article .info {
padding-left: 20%;
color: #FFFFFF; }
#online_store .module_6 .article .info h3 {
font-size: 2rem;
margin-top: 3rem;
margin-bottom: 1.9rem; }
#online_store .module_6 .article .info h5 {
font-size: 1.6rem;
margin-bottom: .9rem; }
#online_store .module_6 .article .info p {
font-size: 1.6rem;
margin-bottom: 1.33rem; }
#online_store .module_6 .article .info a {
background: #ffffff;
border-color: #ffffff;
border-radius: 50px; }
#online_store .module_6 .article .info a:hover {
background: #ffffff; }
#online_store .module_7 .container > p {
color: #072A50;
font-size: 1.33rem;
text-align: center;
display: table;
max-width: 560px;
margin: 0 auto 4rem auto; }
#online_store .module_8 {
color: #2855AF; }
#online_store .module_8 p {
font-weight: bold;
font-size: 1.34rem;
margin-bottom: 1.2rem; }
#online_store .module_8 h2 {
font-size: 2.67rem;
margin-bottom: 3rem; }
#online_store .module_8 span {
font-size: 1.34rem;
color: #072A50;
display: block;
margin-bottom: 2rem; }
#online_store .module_8 .img {
position: relative;
z-index: 2; }
#online_store .module_8 .img_animate {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
#online_store .module_8 .img_animate img {
position: absolute; }
#online_store .module_8 .img_animate img.one {
right: 0;
top: 0; }
#online_store .module_8 .img_animate img.second {
left: 0;
bottom: 0; }
#online_store .module_9 .retangle_shape .retangle_shape_content {
padding-right: 4rem; }
#online_store .module_9 .retangle_shape .retangle_shape_content .section-heading {
margin-bottom: 20px; }
#online_store .module_9 .retangle_shape .retangle_shape_content .section-heading .bg-num {
color: #fff;
opacity: .1; }
#online_store .module_9 img {
display: block;
margin: 0 auto 4rem auto;
max-width: 100%; }
.retangle_shape {
position: relative;
min-height: 500px; }
.retangle_shape:before {
content: "";
position: absolute;
width: 550px;
height: 500px;
right: 80px;
top: -80px;
background: #3FA6D7;
border-top-left-radius: 170px;
z-index: 0; }
.retangle_shape:after {
content: "";
position: absolute;
width: 550px;
height: 500px;
right: 0;
top: 0;
background: #2855AF;
border-bottom-right-radius: 170px;
z-index: 1; }
.retangle_shape .retangle_shape_content {
position: relative;
z-index: 2;
color: #ffffff; }
/* ================== COMPONENTS =================== */
/* Slider */
.slider-wrap {
position: relative; }
.slick-loading .slick-list {
background: #fff url("./ajax-loader.gif") center center no-repeat; }
/* Arrows */
.slick-prev,
.slick-next {
font-size: 0;
line-height: 0;
position: absolute;
top: 42%;
z-index: 99;
display: block;
width: 20px;
height: 20px;
padding: 0;
transform: translate(0, -50%);
cursor: pointer;
color: transparent;
border: none;
outline: none;
background: transparent; }
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
color: transparent;
outline: none;
background: transparent; }
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
opacity: 1; }
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
opacity: .25; }
.slick-prev:before,
.slick-next:before {
font-family: 'slick';
font-size: 20px;
line-height: 1;
opacity: .75;
color: rgba(0, 0, 0, 0.3);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.slick-prev {
left: -10%; }
[dir='rtl'] .slick-prev {
right: -10%;
left: auto; }
.slick-next {
right: -10%; }
[dir='rtl'] .slick-next {
right: auto;
left: -10%; }
.portfolio_arrow_boottom_left .slick-arrow {
bottom: -20px;
top: auto; }
.portfolio_arrow_boottom_left .slick-arrow.slick-prev {
left: 25%;
margin-left: -40px; }
.portfolio_arrow_boottom_left .slick-arrow.slick-next {
left: 25%;
margin-right: -20px; }
/* Dots */
.slick-dotted.slick-slider {
margin-bottom: 30px; }
.slick-dots {
position: absolute;
bottom: -45px;
display: block;
width: 100%;
padding: 0;
margin: 0;
list-style: none;
text-align: center; }
.slick-dots li {
position: relative;
display: inline-block;
width: 15px;
height: 15px;
margin: 0 5px;
padding: 0;
cursor: pointer; }
.slick-dots li button {
font-size: 0;
line-height: 0;
display: block;
width: 10px;
height: 10px;
padding: 5px;
border-radius: 10px;
cursor: pointer;
color: transparent;
border: 0;
outline: none;
background: #2855AF;
opacity: 0.4; }
.slick-dots li button:hover,
.slick-dots li button:focus {
outline: none; }
.slick-dots li.slick-active button {
opacity: 1; }
.btn-facebook {
background-color: #405D9D;
color: #fff; }
.btn-facebook:hover {
color: #fff; }
.btn-instagram {
background-color: #E52D27;
color: #fff; }
.btn-instagram:hover {
color: #fff; }
.btn-youtube {
background-color: #C8046C;
color: #fff; }
.btn-youtube:hover {
color: #fff; }
.btn-twitter {
background-color: #42AEEC;
color: #fff; }
.btn-twitter:hover {
color: #fff; }
.btn-primary {
background-color: #2855AF;
border-color: #2855AF;
border-radius: 36px; }
.btn-primary:active, .btn-primary:hover, .btn-primary:focus {
background-color: #2855AF !important;
border-color: #2855AF !important;
box-shadow: none; }
.btn-site-tab {
background-color: #2834DF;
color: #ffffff;
border-color: transparent;
opacity: 0.5;
animation: all 0.3s; }
.btn-site-tab:hover {
background-color: #aec8f8;
opacity: 1;
color: #ffffff; }
.btn-site-tab.active {
background-color: #2855AF;
color: #fff;
opacity: 1; }
.btn {
min-width: 180px; }
/* effect #5 */
.btn-primary {
/* overlay styles */
/* icon styles */
color: #fff;
transition-property: all;
transition-duration: 0.2s;
transition-timing-function: linear;
transition-delay: 0s;
position: relative;
-webkit-transform: translateZ(0);
transform: translateZ(0);
overflow: hidden; }
.btn-primary:hover:active::after {
opacity: 0; }
.btn-primary:before {
position: absolute;
top: 50%;
left: 50%;
transition-property: transform;
transition-duration: 0.2s;
transition-timing-function: linear;
transition-delay: 0s;
display: block;
width: 300px;
height: 300px;
content: '';
-webkit-transform: translate(-50%, -50%) scale(0);
transform: translate(-50%, -50%) scale(0);
-webkit-transform-origin: center center;
transform-origin: center center;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 50%;
z-index: 1; }
.btn-primary:after {
position: absolute;
top: 50%;
left: 50%;
transition: transform .2s linear .2s, opacity .2s linear .2s;
display: flex;
align-items: center;
justify-content: center;
width: 300px;
height: 300px;
content: '';
font-family: "Font Awesome 5 Free";
font-size: 30px;
font-weight: 900;
line-height: inherit;
color: transparent;
-webkit-transform: translate(-50%, -50%) scale(0);
transform: translate(-50%, -50%) scale(0);
-webkit-transform-origin: center center;
transform-origin: center center;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 50%;
opacity: 0;
z-index: 1; }
.btn-primary:hover {
color: transparent; }
.btn-primary:hover:before {
transition-duration: .25s;
-webkit-transform: translate(-50%, -50%) scale(1);
transform: translate(-50%, -50%) scale(1);
opacity: 1; }
.btn-primary:hover:after {
transition-duration: .32s;
-webkit-transform: translate(-50%, -50%) scale(1);
transform: translate(-50%, -50%) scale(1);
opacity: 1;
color: #fff;
background-image: url(../images/icons/right-arrow.png);
background-repeat: no-repeat;
background-size: 25px;
background-position: center; }
.btn-primary.btn-back:hover:after {
background-image: url(../images/icons/left-arrow.png) !important; }
.btn-primary-light {
color: #ffffff;
background-color: #3FA6D7;
border-color: #3FA6D7;
border-radius: 36px; }
.text-blue-light {
color: #7CCCDB; }
.text-blue {
color: #2855AF; }
.itembox .icon-wrap {
margin-bottom: 15px;
margin-top: 7px; }
.itembox img {
max-width: 100%; }
.itemside {
position: relative;
display: inline-flex;
width: 100%; }
.itemside .text-wrap {
padding-left: 15px;
padding-right: 7px; }
.itemside .img-wrap {
position: relative;
border-radius: 0.25rem 0 0 0.25rem; }
.itemside img {
object-fit: contain; }
.itemside p, .itemside .title {
margin-bottom: 0.5rem; }
.itemside .img-bg {
object-fit: contain;
position: absolute;
right: 0;
bottom: 0;
max-height: 100px;
bottom: 0;
z-index: 0; }
.itemside .card-body {
position: relative;
z-index: 3; }
.items-bordered-wrap .itemside:not(:last-child) {
border-bottom: 1px solid #dee2e6;
padding-bottom: 10px;
margin-bottom: 10px; }
.itemlist {
padding: 20px;
border-bottom: 1px solid #eee; }
.list-inline {
margin-bottom: 0; }
.list-inline-item {
vertical-align: middle; }
/* --------- description list --------*/
[class*="dlist-"] {
margin-bottom: 5px; }
[class*="dlist-"] dd {
margin-bottom: 0; }
.dlist-inline dt, .dlist-inline dd {
display: inline-block; }
.dlist-align dt {
width: 90px;
float: left;
word-wrap: break-word; }
.dlist-align dd {
margin-left: 120px;
vertical-align: baseline; }
/* -------------------- list.row--------------------- */
ul.row, ul.row-sm {
list-style: none;
padding: 0;
margin-bottom: 0; }
/* ================= lists ================= */
[class*="list-"] li:after {
visibility: hidden;
display: block;
content: "";
overflow: hidden;
height: 0;
clear: both; }
.list-lg li {
margin-bottom: 10px; }
.list-icon {
list-style: none;
padding: 0; }
.list-icon li {
margin-bottom: 10px; }
.list-icon img {
width: 30px;
vertical-align: middle;
margin-right: 15px; }
.list-icon .icon {
width: 22px;
margin-right: 15px;
vertical-align: middle;
font-size: 20px;
text-align: center; }
.list-icon span {
vertical-align: middle; }
.list-bullet {
list-style: none;
padding: 0; }
.list-bullet li {
margin-bottom: 7px;
position: relative;
padding-left: 15px; }
.list-bullet li::before {
content: " ";
position: absolute;
top: 45%;
left: 0;
width: 7px;
height: 7px;
margin: 0px 10px 0px 0px;
background: #6c757d;
border-radius: 7px; }
.list-check > li {
list-style: none;
position: relative; }
.list-check > li::before {
font-family: 'Font Awesome 5 Free';
font-weight: 900;
color: #6c757d;
position: absolute;
top: 0px;
left: 0;
content: "\f00c";
font-size: 16px;
-webkit-font-smoothing: antialiased;
display: inline-block; }
.list-icon {
list-style: none;
padding: 0; }
.list-icon li {
position: relative;
padding-left: 30px; }
.list-icon .icon {
position: absolute;
top: 3px;
left: 0;
font-size: 13px; }
.card-product {
margin-bottom: 1rem;
/* btn-overlay-bottom */ }
.card-product:after {
content: "";
display: table;
clear: both;
visibility: hidden; }
.card-product .img-wrap {
border-radius: 0.2rem 0.2rem 0 0;
overflow: hidden;
position: relative;
height: 220px;
text-align: center; }
.card-product .img-wrap img {
max-height: 100%;
max-width: 100%;
width: auto;
display: inline-block;
object-fit: cover; }
.card-product .info-wrap {
overflow: hidden;
padding: 15px;
border-top: 1px solid #eee; }
.card-product .action-wrap {
padding-top: 4px;
margin-top: 4px; }
.card-product .bottom-wrap {
padding: 15px;
border-top: 1px solid #eee; }
.card-product .title {
margin-top: 0; }
.card-product .btn-overlay {
transition: .5s;
opacity: 0;
left: 0;
bottom: 0;
color: #fff;
width: 100%;
padding: 5px 0;
font-size: 12px;
text-align: center;
position: absolute;
text-transform: uppercase;
background: rgba(0, 0, 0, 0.5); }
.card-product:hover .btn-overlay {
opacity: 1; }
.card-product:hover {
box-shadow: 0 4px 15px rgba(153, 153, 153, 0.3);
transition: .5s; }
.card-sm .img-wrap {
height: 180px; }
.card-banner {
display: flex;
position: relative;
overflow: hidden;
background-color: #fff;
background-size: cover;
border-radius: 0.25rem; }
.card-banner .card-body {
background-size: cover;
position: relative;
z-index: 10; }
.card-banner .img-bg {
position: absolute;
right: 0;
bottom: 0;
mix-blend-mode: multiply;
max-width: 100%; }
.card-banner .overlay {
background-color: rgba(0, 0, 0, 0.65);
z-index: 10;
padding: 1.25rem;
color: #fff; }
.card-banner .overlay.bottom {
bottom: 0;
left: 0;
position: absolute;
width: 100%; }
.card-banner .overlay.top {
top: 0;
left: 0;
position: absolute;
width: 100%; }
.card-banner .overlay-cover {
top: 0;
left: 0;
right: 0;
bottom: 0;
position: absolute;
width: 100%; }
.card-banner .overlay.left {
top: 0;
left: 0;
bottom: 0;
position: absolute; }
.card-banner .text-bottom {
position: absolute;
left: 0;
bottom: 0;
left: 0;
z-index: 10;
width: 100%;
padding: 7px 20px;
padding-top: 30px;
border-radius: 0 0 0.25rem 0.25rem;
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
color: #fff; }
.banner-size-lg {
height: 350px; }
.for_top_scroll {
color: #ffffff;
background: #2855AF;
width: 40px;
height: 40px;
border-radius: 50%;
position: fixed;
right: 30px;
bottom: 30px;
text-align: center;
display: table;
z-index: 999;
cursor: pointer;
animation: bounce_up 2s ease-in-out infinite;
transition: all 0.3s;
visibility: hidden;
opacity: 0; }
.for_top_scroll i {
display: table-cell;
vertical-align: middle; }
.for_top_scroll.active {
visibility: visible;
opacity: 1; }
.card .img-wrap {
overflow: hidden; }
.iconbox img {
margin-bottom: 15px; }
.iconbox p {
margin-right: 5%;
margin-left: 5%;
margin-bottom: 0; }
/* ====================== block ==================== */
.box {
border: 10px solid #452DF8;
border-radius: 7px;
padding: 30px;
background: #fff;
border-color: transparent;
box-shadow: 10px 10px 40px rgba(40, 85, 175, 0.1);
border-radius: 20px; }
.box .success-content {
transition: transform 0.3s, opacity 0.3s;
transform: scale(0.1);
visibility: hidden;
opacity: 0;
height: 1px;
text-align: center; }
.box.active .success-content {
height: auto;
opacity: 1;
visibility: visible;
transform: scale(1);
margin: 50px 0; }
.box.active > .form-group, .box.active > label, .box.active > p {
display: none; }
.file-drag {
display: block;
margin-bottom: 20px;
border: 3px dashed #ccc;
text-align: center;
padding: 20px;
cursor: pointer; }
/* ====================== popup ==================== */
#popup_order .modal-dialog .modal-content {
width: 90%;
margin-left: 5%;
background: transparent;
border: none; }
#popup_order .modal-dialog .modal-content .modal-body {
background: #fff;
box-shadow: 0px 4px 15px rgba(107, 179, 177, 0.3);
border-radius: 20px;
padding: 30px 90px;
position: relative;
z-index: 2; }
#popup_order .modal-dialog .modal-content .modal-body .close {
position: absolute;
right: 15px;
top: 15px;
background: #452DF8;
width: 22px;
height: 22px;
color: #fff;
font-size: 20px;
opacity: 1;
border-radius: 11px;
transition: all 0.5s;
z-index: 2; }
#popup_order .modal-dialog .modal-content .modal-body.success .close {
background: #fff;
color: #452DF8; }
#popup_order .modal-dialog .modal-content .modal-body .close:hover {
transform: rotate(90deg); }
#popup_order .modal-dialog .modal-content .modal-body .modal-title {
font-size: 28px;
margin-bottom: 20px;
font-weight: 600; }
#popup_order .modal-dialog .modal-content .modal-body p, #popup_order .modal-dialog .modal-content .modal-body .popup_number {
margin-bottom: 40px; }
#popup_order .modal-dialog .modal-content .modal-body .success-content {
position: absolute;
left: 0;
top: 0;
z-index: 3;
width: 100%;
height: 100%;
visibility: hidden;
opacity: 0;
transform: scale(0.1);
transition: all 0.3s;
background: #ffffff;
/*url(../images/bg/popup-succes-bg.png) no-repeat center*/
background-size: cover;
border-radius: 11px;
overflow: hidden; }
#popup_order .modal-dialog .modal-content .modal-body .success-content > div {
position: absolute;
width: 100%;
top: 50%;
left: 0;
transform: translateY(-50%);
text-align: center; }
#popup_order .modal-dialog .modal-content .modal-body .success-content > div h3 {
color: #2834DF;
font-size: 28px;
line-height: 34px;
margin-bottom: 30px;
font-family: Montserrat;
font-weight: 600; }
#popup_order .modal-dialog .modal-content .modal-body .success-content > div p {
color: #4F4F4F;
font-size: 16px;
line-height: 22px;
margin-bottom: 0;
font-family: Montserrat; }
#popup_order .modal-dialog .modal-content .modal-body .success-content > div > span {
position: relative;
top: 50px;
cursor: pointer; }
#popup_order .modal-dialog .modal-content .modal-body .success-content > div > span img {
transition: all 0.3s;
width: 55px; }
#popup_order .modal-dialog .modal-content .modal-body .success-content > div > span:hover > img {
transform: rotate(180deg); }
#popup_order .modal-dialog .modal-content .modal-body.success .success-content {
visibility: visible;
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1); }
#popup_order .modal-dialog .modal-content:before {
content: "";
width: calc(100% + 30px);
height: calc(100% - 36px);
background: #fff;
box-shadow: 0px 4px 15px rgba(107, 179, 177, 0.3);
border-radius: 20px;
position: absolute;
left: -15px;
top: 18px; }
/* ====================== new steep form==================== */
.new_steep_form .content .img_animate {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0; }
.new_steep_form .content .img_animate img {
position: absolute; }
.new_steep_form .content .img_animate img.min {
top: 0;
right: 0; }
.new_steep_form .content .img_animate img.max {
left: -10%;
bottom: -20%; }
.img-step-bot .bg-step {
right: 0; }
.section-portfolio-fotomoto {
overflow: hidden; }
.section-review-about {
overflow: hidden; }
.mw1280 .slick-prev {
left: 0; }
.mw1280 .slick-next {
right: 0; }
h2, h3, h4, h5, h6, p {
word-break: break-word; }
#popup_order .modal-dialog {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 300px;
margin: 0; }
.menu-category {
margin: 0;
padding: 0; }
.menu-category li {
position: relative;
display: block;
border-bottom: 1px solid #dee2e6; }
.menu-category > li > a {
display: block;
padding: 10px 15px; }
.menu-category .submenu {
display: none;
margin: 0;
padding: 0;
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
z-index: 20;
position: absolute;
left: 100%;
top: 0;
width: 250px;
background: #fff; }
.menu-category .submenu li {
list-style: none; }
.menu-category .submenu li a {
padding: 7px 15px;
display: block; }
.menu-category li:hover {
background: #f8f8f8;
transition: all 0.3s; }
.menu-category li:hover .submenu {
display: block;
margin-left: 0px; }
/*# sourceMappingURL=ui.css.map */ | public_html/images/open_engine/book_development/35_files/ui.css | @import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,800,900&subset=cyrillic");
@import url("../fonts/intro/font.css");
@font-face {
font-family: Monsterrat;
src: url(../fonts/montserrat/Montserrat-Light.otf);
font-weight: 300; }
@font-face {
font-family: Monsterrat;
src: url(../fonts/montserrat/Montserrat-Regular.otf);
font-weight: 400; }
@font-face {
font-family: Monsterrat;
src: url(../fonts/montserrat/Montserrat-Bold.otf);
font-weight: 500; }
@font-face {
font-family: Monsterrat;
src: url(../fonts/montserrat/Montserrat-SemiBold.otf);
font-weight: 600; }
@font-face {
font-family: Monsterrat;
src: url(../fonts/montserrat/Montserrat-Bold.ttf);
font-weight: 800; }
html {
font-size: 15px; }
body {
font-family: 'Monsterrat', sans-serif; }
/* ================== HELPERS =================== */
a:hover {
text-decoration: none; }
.img-wrap {
text-align: center;
display: block; }
.img-wrap img {
max-width: 100%; }
.zoom-in {
transition: transform ease .3s; }
.zoom-wrap:hover .zoom-in {
transform: scale(1.1);
transition: transform ease .3s; }
/* ================= DEFINED VARIABLES =================== */
.icon-xs, .icon-sm, .icon-md, .icon-lg {
display: inline-block;
text-align: center; }
.icon-xs {
width: 32px;
height: 32px;
line-height: 32px;
font-size: 16px; }
.icon-sm {
width: 42px;
height: 42px;
line-height: 42px;
font-size: 22px; }
.icon-md {
width: 60px;
height: 60px;
line-height: 60px;
font-size: 32px; }
.icon-lg {
width: 80px;
height: 80px;
line-height: 80px;
font-size: 42px; }
.img-xs, .img-sm, .img-md, .img-lg {
object-fit: cover; }
.img-xs {
width: 40px;
height: 40px; }
.img-sm {
width: 80px;
height: 80px; }
.img-md {
width: 160px;
height: 160px; }
.img-lg {
width: 400px;
height: 300px; }
.center-xy {
top: 50%;
left: 50%;
position: absolute;
transform: translate(-50%, -50%); }
.center-y {
top: 50%;
position: absolute;
transform: translateY(-50%); }
.center-x {
left: 50%;
position: absolute;
transform: translateX(-50%); }
.center {
margin-left: auto;
margin-right: auto; }
.overflow-h {
overflow: hidden; }
.flip-h {
transform: scaleX(-1); }
.card-body-lg {
padding: 2rem; }
.shadow-in {
box-shadow: inset 0 2px 4px rgba(51, 51, 51, 0.4); }
.vh-100 {
height: 100vh; }
.vh-90 {
height: 90vh; }
.vh-80 {
height: 80vh; }
.vh-70 {
height: 70vh; }
.vh-60 {
height: 60vh; }
.vh-50 {
height: 50vh; }
[class*="hover-"] {
transition: .5s; }
.hover-shadow:hover {
box-shadow: 0 4px 15px rgba(51, 51, 51, 0.5);
transition: .5s; }
.hover-bg:hover {
background: #2855AF;
/* For browsers that do not support gradients */
background: -webkit-linear-gradient(left top, #2855AF, #2855AF);
/* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(bottom right, #2855AF, #2855AF);
/* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(bottom right, #2855AF, #2855AF);
/* For Firefox 3.6 to 15 */
background: linear-gradient(to bottom right, #2855AF, #2855AF);
/* Standard syntax */
transition: .5s; }
.hover-zoom:hover {
transition: .5s;
transform: scaleX(1); }
/* ========== input with icon ========== */
.input-icon {
position: relative; }
.input-icon i + input, .input-icon i + select {
padding-left: 36px; }
.input-icon i {
position: absolute;
color: #ccc;
z-index: 9;
left: 7px;
top: 4px;
width: 24px;
text-align: center;
padding: 7px 0; }
.form-inline .form-control-sm[type="number"] {
max-width: 100px; }
/* ========== borders ========== */
.border {
border: 1px solid #dee2e6; }
.border-left-white {
border-left: 1px solid rgba(255, 255, 255, 0.3); }
.border-right-white {
border-right: 1px solid rgba(255, 255, 255, 0.3); }
.border-top-white {
border-top: 1px solid rgba(255, 255, 255, 0.3); }
.border-bottom-white {
border-bottom: 1px solid rgba(255, 255, 255, 0.3); }
.circle {
border-radius: 100%; }
.round {
border-radius: 200px; }
/* ============== spacing ============== */
.padding-y {
padding-top: 40px;
padding-bottom: 40px; }
.padding-top {
padding-top: 40px; }
.padding-bottom {
padding-bottom: 40px; }
.padding-y-lg {
padding-top: 70px;
padding-bottom: 70px; }
.padding-top-lg {
padding-top: 60px; }
.padding-bottom-lg {
padding-bottom: 60px; }
.padding-y-sm {
padding-top: 16px;
padding-bottom: 16px; }
.padding-top-sm {
padding-top: 16px; }
.padding-bottom-sm {
padding-bottom: 16px; }
.nopadding {
padding: 0px; }
.p0 {
padding: 0px; }
.p5 {
padding: 5px; }
.p7 {
padding: 7px; }
.p10 {
padding: 10px; }
.p15 {
padding: 15px; }
.p20 {
padding: 20px; }
.p30 {
padding: 30px; }
.p40 {
padding: 40px; }
.p50 {
padding: 50px; }
.p60 {
padding: 60px; }
.nomargin {
margin: 0px; }
.m0 {
margin: 0px; }
.m5 {
margin: 5px; }
.m7 {
margin: 7px; }
.m10 {
margin: 10px; }
.m15 {
margin: 15px; }
.m30 {
margin: 30px; }
.m40 {
margin: 40px; }
.m50 {
margin: 50px; }
.m60 {
margin: 60px; }
.relative {
position: relative;
z-index: 3; }
.absolute {
position: absolute; }
var {
font-style: normal; }
figure {
margin-bottom: 0; }
.form-noborder input, .form-noborder select, .form-noborder .btn {
border: none; }
.form-noborder select.form-control-lg:not([size]):not([multiple]) {
height: 2.875rem; }
/* all clearfix */
article:after,
.form-group:after {
display: block;
clear: both;
content: ""; }
.border-cols:not(:last-child) {
border-bottom: 1px solid #dee2e6; }
.border-cols > [class*="col-"] {
overflow: hidden;
border-color: #dee2e6;
border-width: 0 0 0 1px;
border-style: solid; }
/* -------------------- small grid gutter --------------------- */
.row-sm {
margin-right: -7px;
margin-left: -7px;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap; }
.row-sm > [class^="col"] {
padding-left: 7px;
padding-right: 7px; }
/* -------------------- colors and gradients --------------------- */
.opacity_01 {
opacity: 0.1 !important; }
.new_blue {
color: #2855AF !important; }
.bg-contact {
background: url(../images/bg/bg-contact.png) no-repeat;
background-position: bottom left;
background-size: 550px; }
.bg-mailbox {
background: url(../images/bg/mailbox.png) no-repeat;
background-position: bottom left;
background-size: 470px; }
.bg-anim-item {
animation: floating 15s linear infinite;
position: absolute;
max-width: 40px;
opacity: 0.6; }
.bg-pattern {
background-image: url(../images/bg/bg-pattern.svg);
background-position: center center; }
.bg-dots {
background-image: url(../images/bg/dots.svg);
background-position: center center; }
.bg-pattern2 {
background-image: url(../images/bg/bg-pattern2.svg);
background-position: center center; }
.bg-wave {
background: url(../images/bg/bg-wave.svg) no-repeat;
background-size: cover;
background-position: center 120px; }
.bg-wave2 {
background: url(../images/bg/bg-wave2.svg) no-repeat;
background-size: cover;
background-position: center 20px; }
.bg-wave3 {
background: url(../images/bg/bg-wave.svg) no-repeat;
background-size: cover;
background-position: center 500px; }
.bg-wave4 {
background: url(../images/bg/bg-wave2.svg) no-repeat;
background-size: cover;
background-position: center 120px; }
.bg-wave-dark-bottom {
background: url(../images/bg/bg-wave-dark.png) no-repeat;
background-position: top center;
background-size: 100% 100%;
min-height: 870px; }
.bg-wave-bottom {
background: url(../images/bg/bg-wave-bottom.svg);
background-size: cover;
background-position: center bottom; }
.bg-wave-dark2 {
background: #0F1F39 url(../images/bg/wave-dark2.png);
background-position: center;
background-repeat: no-repeat;
background-size: 100% 100%; }
.bg-lines-bottom {
background: url(../images/bg/lines-bottom.svg) repeat-x;
background-position: center bottom; }
.bg-lines-bottom-dark {
background: url(../images/bg/lines-bottom-dark.svg) repeat-x;
background-position: center bottom; }
.bg-wave-dark {
background: url(../images/bg/bg-dark.png) no-repeat;
background-size: 100% 100%;
background-position: center; }
.bg-pattern-bottom {
background: url(../images/bg/pattern-bottom.svg) repeat-x;
background-position: center bottom;
background-size: cover; }
.bg-white {
background-color: #fff !important; }
.bg-white-50 {
background-color: rgba(255, 255, 255, 0.5); }
.bg-dark-50 {
background-color: rgba(0, 0, 0, 0.5); }
.bg-grad-primary {
background: #386bd2;
/* For browsers that do not support gradients */
background: -webkit-linear-gradient(left top, #1f4185, #386bd2);
/* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(bottom right, #1f4185, #386bd2);
/* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(bottom right, #1f4185, #386bd2);
/* For Firefox 3.6 to 15 */
background: linear-gradient(to bottom right, #1f4185, #386bd2);
/* Standard syntax */ }
.bg {
background-color: #f8f8f8 !important; }
.bg2 {
background-color: #eceded !important; }
.bg-purple {
background-color: #6f42c1; }
.bg-orange {
background-color: #fd7e14; }
.bg-green {
background-color: #28a745; }
.bg-blue {
background-color: #2855AF !important; }
.bg-grey {
background: #2E406C !important; }
.bg-grey_e5 {
background: #E5E5E5 !important; }
.bg-grey_e5_after_top200 {
position: relative; }
.bg-grey_e5_after_top200:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 200px;
background: #E5E5E5 !important; }
.bg-gradient_top-bottom {
position: relative; }
.bg-gradient_top-bottom:after, .bg-gradient_top-bottom:before {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0; }
.bg-gradient_top-bottom:before {
top: 16rem;
background: linear-gradient(0deg, #E9EEF7 -1.36%, #FFFFFF 95.27%); }
.bg-gradient_top-bottom:after {
top: 20rem;
background: linear-gradient(0deg, #E9EEF7 -1.36%, #FFFFFF 90.44%);
opacity: 0.5; }
.bg-gradient_top-bottom > section, .bg-gradient_top-bottom > div {
position: relative;
z-index: 1; }
.bg-gradient_bottom-top_lg {
position: relative; }
.bg-gradient_bottom-top_lg:after, .bg-gradient_bottom-top_lg:before {
content: "";
width: 100%;
position: absolute;
left: 0; }
.bg-gradient_bottom-top_lg:before {
height: calc( 100% - 30rem );
top: 30rem;
background: linear-gradient(180deg, #E9EEF7 -1.36%, #FFFFFF 90.44%);
opacity: 0.5; }
.bg-gradient_bottom-top_lg:after {
height: calc( 100% - 34rem );
top: 34rem;
background: linear-gradient(180deg, #E9EEF7 -1.36%, #FFFFFF 95.27%); }
.bg-gradient_bottom-top_lg > section, .bg-gradient_bottom-top_lg > div {
position: relative;
z-index: 1; }
.bg-gradient_bottom-top {
position: relative; }
.bg-gradient_bottom-top:after, .bg-gradient_bottom-top:before {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0; }
.bg-gradient_bottom-top:before {
top: 6rem;
background: linear-gradient(180deg, #E9EEF7 -1.36%, #FFFFFF 90.44%);
opacity: 0.5; }
.bg-gradient_bottom-top:after {
top: 10rem;
background: linear-gradient(180deg, #E9EEF7 -1.36%, #FFFFFF 95.27%); }
.bg-gradient_bottom-top > section, .bg-gradient_bottom-top > div {
position: relative;
z-index: 1; }
/* --------------------- titles ---------------------- */
.title-section {
font-weight: bold;
position: relative;
z-index: 9;
font-size: 36px;
color: #2855AF; }
article ul {
margin-left: 0;
padding-left: 20px; }
.section-heading {
margin-bottom: 50px;
margin-top: 10px;
position: relative; }
.section-heading .bg-num {
font-family: Montserrat;
font-style: normal;
font-weight: 800;
font-size: 120px;
color: rgba(40, 85, 175, 0.1);
margin-top: -50%;
display: inline-block;
line-height: 1; }
.section-heading .bg-num.white {
color: rgba(255, 255, 255, 0.1); }
.section-heading .lead {
font-size: 26px;
font-weight: normal;
color: #6c757d;
line-height: 1.2; }
.section-heading2 {
margin-bottom: 50px;
margin-top: 10px;
position: relative; }
.section-heading2 .bg-num {
font-family: Montserrat;
font-style: normal;
font-weight: 800;
font-size: 120px;
color: #E8E8E8;
margin-top: -20px;
display: inline-block;
line-height: 1;
position: absolute;
left: 50%;
top: 0;
transform: translateX(-50%); }
.section-heading2 .lead {
font-size: 26px;
font-weight: normal;
color: #6c757d;
line-height: 1.2; }
.section-heading-aside {
margin-bottom: 30px;
margin-top: 10px;
display: block;
position: relative; }
.section-heading-aside .bg-num {
opacity: .6;
padding-right: 20px;
font-family: Montserrat;
font-style: normal;
font-weight: 800;
font-size: 160px;
color: rgba(224, 221, 248, 0.7);
display: inline-block;
line-height: 1;
position: absolute;
right: 100%;
top: -20px; }
.section-heading-aside .title-section {
font-size: 40px;
line-height: 1;
margin-bottom: 0; }
.section-heading-aside .subtitle {
font-size: 32px;
margin: 0; }
.white-opacity {
color: rgba(255, 255, 255, 0.15) !important; }
.title-text {
margin-top: 45px;
margin-bottom: 20px; }
.title-category {
margin: 0;
padding: 1rem 1rem; }
.title-bg {
padding: 7px 15px;
color: #fff; }
.font-title {
font-family: "Roboto", sans-serif; }
.text-lg {
font-size: 125%; }
/* ================== title element ================ */
.b {
font-weight: 600; }
.wight-700 {
font-weight: 700; }
strong {
font-weight: 800; }
.white {
color: #fff; }
.black, .dark {
color: #000; }
/* ================== title helpers ================ */
.rtl {
direction: rtl; }
.ltr {
direction: ltr; }
.lh-sm {
line-height: 1.2; }
.lh-lg {
line-height: 1.6; }
/*!
* grid for 24 of 1
* made by bootstrap-ecommerce.com
*/
.col-1-24 {
flex: 0 0 4.1666666667%;
max-width: 4.1666666667%; }
.col-2-24 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-3-24 {
flex: 0 0 12.5%;
max-width: 12.5%; }
.col-4-24 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-5-24 {
flex: 0 0 20.8333333333%;
max-width: 20.8333333333%; }
.col-6-24 {
flex: 0 0 25%;
max-width: 25%; }
.col-7-24 {
flex: 0 0 29.1666666667%;
max-width: 29.1666666667%; }
.col-8-24 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-9-24 {
flex: 0 0 37.5%;
max-width: 37.5%; }
.col-10-24 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-11-24 {
flex: 0 0 45.8333333333%;
max-width: 45.8333333333%; }
.col-12-24 {
flex: 0 0 50%;
max-width: 50%; }
.col-13-24 {
flex: 0 0 54.1666666667%;
max-width: 54.1666666667%; }
.col-14-24 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-15-24 {
flex: 0 0 62.5%;
max-width: 62.5%; }
.col-16-24 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-17-24 {
flex: 0 0 70.8333333333%;
max-width: 70.8333333333%; }
.col-18-24 {
flex: 0 0 75%;
max-width: 75%; }
.col-19-24 {
flex: 0 0 79.1666666667%;
max-width: 79.1666666667%; }
.col-20-24 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-21-24 {
flex: 0 0 87.5%;
max-width: 87.5%; }
.col-22-24 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-23-24 {
flex: 0 0 95.8333333333%;
max-width: 95.8333333333%; }
.col-24, .col-24-24 {
flex: 0 0 100%;
max-width: 100%; }
.offset-1-24 {
margin-left: 4.1666666667%; }
.offset-2-24 {
margin-left: 8.3333333333%; }
.offset-3-24 {
margin-left: 12.5%; }
.offset-4-24 {
margin-left: 16.6666666667%; }
.offset-5-24 {
margin-left: 20.8333333333%; }
.offset-6-24 {
margin-left: 25%; }
.offset-7-24 {
margin-left: 29.1666666667%; }
.offset-8-24 {
margin-left: 33.3333333333%; }
.offset-9-24 {
margin-left: 37.5%; }
.offset-10-24 {
margin-left: 41.6666666667%; }
.offset-11-24 {
margin-left: 45.8333333333%; }
.offset-12-24 {
margin-left: 50%; }
.offset-13-24 {
margin-left: 54.1666666667%; }
.offset-14-24 {
margin-left: 58.3333333333%; }
.offset-15-24 {
margin-left: 62.5%; }
.offset-16-24 {
margin-left: 66.6666666667%; }
.offset-17-24 {
margin-left: 70.8333333333%; }
.offset-18-24 {
margin-left: 75%; }
.offset-19-24 {
margin-left: 79.1666666667%; }
.offset-20-24 {
margin-left: 83.3333333333%; }
.offset-21-24 {
margin-left: 87.5%; }
.offset-22-24 {
margin-left: 91.6666666667%; }
.offset-23-24 {
margin-left: 95.8333333333%; }
@media (min-width: 576px) {
.col-sm-1-24 {
flex: 0 0 4.1666666667%;
max-width: 4.1666666667%; }
.col-sm-2-24 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-sm-3-24 {
flex: 0 0 12.5%;
max-width: 12.5%; }
.col-sm-4-24 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-sm-5-24 {
flex: 0 0 20.8333333333%;
max-width: 20.8333333333%; }
.col-sm-6-24 {
flex: 0 0 25%;
max-width: 25%; }
.col-sm-7-24 {
flex: 0 0 29.1666666667%;
max-width: 29.1666666667%; }
.col-sm-8-24 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-sm-9-24 {
flex: 0 0 37.5%;
max-width: 37.5%; }
.col-sm-10-24 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-sm-11-24 {
flex: 0 0 45.8333333333%;
max-width: 45.8333333333%; }
.col-sm-12-24 {
flex: 0 0 50%;
max-width: 50%; }
.col-sm-13-24 {
flex: 0 0 54.1666666667%;
max-width: 54.1666666667%; }
.col-sm-14-24 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-sm-15-24 {
flex: 0 0 62.5%;
max-width: 62.5%; }
.col-sm-16-24 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-sm-17-24 {
flex: 0 0 70.8333333333%;
max-width: 70.8333333333%; }
.col-sm-18-24 {
flex: 0 0 75%;
max-width: 75%; }
.col-sm-19-24 {
flex: 0 0 79.1666666667%;
max-width: 79.1666666667%; }
.col-sm-20-24 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-sm-21-24 {
flex: 0 0 87.5%;
max-width: 87.5%; }
.col-sm-22-24 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-sm-23-24 {
flex: 0 0 95.8333333333%;
max-width: 95.8333333333%; }
.col-sm-24, .col-sm-24-24 {
flex: 0 0 100%;
max-width: 100%; }
.offset-sm-1-24 {
margin-left: 4.1666666667%; }
.offset-sm-2-24 {
margin-left: 8.3333333333%; }
.offset-sm-3-24 {
margin-left: 12.5%; }
.offset-sm-4-24 {
margin-left: 16.6666666667%; }
.offset-sm-5-24 {
margin-left: 20.8333333333%; }
.offset-sm-6-24 {
margin-left: 25%; }
.offset-sm-7-24 {
margin-left: 29.1666666667%; }
.offset-sm-8-24 {
margin-left: 33.3333333333%; }
.offset-sm-9-24 {
margin-left: 37.5%; }
.offset-sm-10-24 {
margin-left: 41.6666666667%; }
.offset-sm-11-24 {
margin-left: 45.8333333333%; }
.offset-sm-12-24 {
margin-left: 50%; }
.offset-sm-13-24 {
margin-left: 54.1666666667%; }
.offset-sm-14-24 {
margin-left: 58.3333333333%; }
.offset-sm-15-24 {
margin-left: 62.5%; }
.offset-sm-16-24 {
margin-left: 66.6666666667%; }
.offset-sm-17-24 {
margin-left: 70.8333333333%; }
.offset-sm-18-24 {
margin-left: 75%; }
.offset-sm-19-24 {
margin-left: 79.1666666667%; }
.offset-sm-20-24 {
margin-left: 83.3333333333%; }
.offset-sm-21-24 {
margin-left: 87.5%; }
.offset-sm-22-24 {
margin-left: 91.6666666667%; }
.offset-sm-23-24 {
margin-left: 95.8333333333%; } }
@media (min-width: 768px) {
.col-md-1-24 {
flex: 0 0 4.1666666667%;
max-width: 4.1666666667%; }
.col-md-2-24 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-md-3-24 {
flex: 0 0 12.5%;
max-width: 12.5%; }
.col-md-4-24 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-md-5-24 {
flex: 0 0 20.8333333333%;
max-width: 20.8333333333%; }
.col-md-6-24 {
flex: 0 0 25%;
max-width: 25%; }
.col-md-7-24 {
flex: 0 0 29.1666666667%;
max-width: 29.1666666667%; }
.col-md-8-24 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-md-9-24 {
flex: 0 0 37.5%;
max-width: 37.5%; }
.col-md-10-24 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-md-11-24 {
flex: 0 0 45.8333333333%;
max-width: 45.8333333333%; }
.col-md-12-24 {
flex: 0 0 50%;
max-width: 50%; }
.col-md-13-24 {
flex: 0 0 54.1666666667%;
max-width: 54.1666666667%; }
.col-md-14-24 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-md-15-24 {
flex: 0 0 62.5%;
max-width: 62.5%; }
.col-md-16-24 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-md-17-24 {
flex: 0 0 70.8333333333%;
max-width: 70.8333333333%; }
.col-md-18-24 {
flex: 0 0 75%;
max-width: 75%; }
.col-md-19-24 {
flex: 0 0 79.1666666667%;
max-width: 79.1666666667%; }
.col-md-20-24 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-md-21-24 {
flex: 0 0 87.5%;
max-width: 87.5%; }
.col-md-22-24 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-md-23-24 {
flex: 0 0 95.8333333333%;
max-width: 95.8333333333%; }
.col-md-24, .col-md-24-24 {
flex: 0 0 100%;
max-width: 100%; }
.offset-md-1-24 {
margin-left: 4.1666666667%; }
.offset-md-2-24 {
margin-left: 8.3333333333%; }
.offset-md-3-24 {
margin-left: 12.5%; }
.offset-md-4-24 {
margin-left: 16.6666666667%; }
.offset-md-5-24 {
margin-left: 20.8333333333%; }
.offset-md-6-24 {
margin-left: 25%; }
.offset-md-7-24 {
margin-left: 29.1666666667%; }
.offset-md-8-24 {
margin-left: 33.3333333333%; }
.offset-md-9-24 {
margin-left: 37.5%; }
.offset-md-10-24 {
margin-left: 41.6666666667%; }
.offset-md-11-24 {
margin-left: 45.8333333333%; }
.offset-md-12-24 {
margin-left: 50%; }
.offset-md-13-24 {
margin-left: 54.1666666667%; }
.offset-md-14-24 {
margin-left: 58.3333333333%; }
.offset-md-15-24 {
margin-left: 62.5%; }
.offset-md-16-24 {
margin-left: 66.6666666667%; }
.offset-md-17-24 {
margin-left: 70.8333333333%; }
.offset-md-18-24 {
margin-left: 75%; }
.offset-md-19-24 {
margin-left: 79.1666666667%; }
.offset-md-20-24 {
margin-left: 83.3333333333%; }
.offset-md-21-24 {
margin-left: 87.5%; }
.offset-md-22-24 {
margin-left: 91.6666666667%; }
.offset-md-23-24 {
margin-left: 95.8333333333%; } }
@media (min-width: 992px) {
.col-lg-1-24 {
flex: 0 0 4.1666666667%;
max-width: 4.1666666667%; }
.col-lg-2-24 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-lg-3-24 {
flex: 0 0 12.5%;
max-width: 12.5%; }
.col-lg-4-24 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-lg-5-24 {
flex: 0 0 20.8333333333%;
max-width: 20.8333333333%; }
.col-lg-6-24 {
flex: 0 0 25%;
max-width: 25%; }
.col-lg-7-24 {
flex: 0 0 29.1666666667%;
max-width: 29.1666666667%; }
.col-lg-8-24 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-lg-9-24 {
flex: 0 0 37.5%;
max-width: 37.5%; }
.col-lg-10-24 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-lg-11-24 {
flex: 0 0 45.8333333333%;
max-width: 45.8333333333%; }
.col-lg-12-24 {
flex: 0 0 50%;
max-width: 50%; }
.col-lg-13-24 {
flex: 0 0 54.1666666667%;
max-width: 54.1666666667%; }
.col-lg-14-24 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-lg-15-24 {
flex: 0 0 62.5%;
max-width: 62.5%; }
.col-lg-16-24 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-lg-17-24 {
flex: 0 0 70.8333333333%;
max-width: 70.8333333333%; }
.col-lg-18-24 {
flex: 0 0 75%;
max-width: 75%; }
.col-lg-19-24 {
flex: 0 0 79.1666666667%;
max-width: 79.1666666667%; }
.col-lg-20-24 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-lg-21-24 {
flex: 0 0 87.5%;
max-width: 87.5%; }
.col-lg-22-24 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-lg-23-24 {
flex: 0 0 95.8333333333%;
max-width: 95.8333333333%; }
.col-lg-24, .col-lg-24-24 {
flex: 0 0 100%;
max-width: 100%; }
.offset-lg-1-24 {
margin-left: 4.1666666667%; }
.offset-lg-2-24 {
margin-left: 8.3333333333%; }
.offset-lg-3-24 {
margin-left: 12.5%; }
.offset-lg-4-24 {
margin-left: 16.6666666667%; }
.offset-lg-5-24 {
margin-left: 20.8333333333%; }
.offset-lg-6-24 {
margin-left: 25%; }
.offset-lg-7-24 {
margin-left: 29.1666666667%; }
.offset-lg-8-24 {
margin-left: 33.3333333333%; }
.offset-lg-9-24 {
margin-left: 37.5%; }
.offset-lg-10-24 {
margin-left: 41.6666666667%; }
.offset-lg-11-24 {
margin-left: 45.8333333333%; }
.offset-lg-12-24 {
margin-left: 50%; }
.offset-lg-13-24 {
margin-left: 54.1666666667%; }
.offset-lg-14-24 {
margin-left: 58.3333333333%; }
.offset-lg-15-24 {
margin-left: 62.5%; }
.offset-lg-16-24 {
margin-left: 66.6666666667%; }
.offset-lg-17-24 {
margin-left: 70.8333333333%; }
.offset-lg-18-24 {
margin-left: 75%; }
.offset-lg-19-24 {
margin-left: 79.1666666667%; }
.offset-lg-20-24 {
margin-left: 83.3333333333%; }
.offset-lg-21-24 {
margin-left: 87.5%; }
.offset-lg-22-24 {
margin-left: 91.6666666667%; }
.offset-lg-23-24 {
margin-left: 95.8333333333%; } }
@media (min-width: 1200px) {
.col-xl-1-24 {
flex: 0 0 4.1666666667%;
max-width: 4.1666666667%; }
.col-xl-2-24 {
flex: 0 0 8.3333333333%;
max-width: 8.3333333333%; }
.col-xl-3-24 {
flex: 0 0 12.5%;
max-width: 12.5%; }
.col-xl-4-24 {
flex: 0 0 16.6666666667%;
max-width: 16.6666666667%; }
.col-xl-5-24 {
flex: 0 0 20.8333333333%;
max-width: 20.8333333333%; }
.col-xl-6-24 {
flex: 0 0 25%;
max-width: 25%; }
.col-xl-7-24 {
flex: 0 0 29.1666666667%;
max-width: 29.1666666667%; }
.col-xl-8-24 {
flex: 0 0 33.3333333333%;
max-width: 33.3333333333%; }
.col-xl-9-24 {
flex: 0 0 37.5%;
max-width: 37.5%; }
.col-xl-10-24 {
flex: 0 0 41.6666666667%;
max-width: 41.6666666667%; }
.col-xl-11-24 {
flex: 0 0 45.8333333333%;
max-width: 45.8333333333%; }
.col-xl-12-24 {
flex: 0 0 50%;
max-width: 50%; }
.col-xl-13-24 {
flex: 0 0 54.1666666667%;
max-width: 54.1666666667%; }
.col-xl-14-24 {
flex: 0 0 58.3333333333%;
max-width: 58.3333333333%; }
.col-xl-15-24 {
flex: 0 0 62.5%;
max-width: 62.5%; }
.col-xl-16-24 {
flex: 0 0 66.6666666667%;
max-width: 66.6666666667%; }
.col-xl-17-24 {
flex: 0 0 70.8333333333%;
max-width: 70.8333333333%; }
.col-xl-18-24 {
flex: 0 0 75%;
max-width: 75%; }
.col-xl-19-24 {
flex: 0 0 79.1666666667%;
max-width: 79.1666666667%; }
.col-xl-20-24 {
flex: 0 0 83.3333333333%;
max-width: 83.3333333333%; }
.col-xl-21-24 {
flex: 0 0 87.5%;
max-width: 87.5%; }
.col-xl-22-24 {
flex: 0 0 91.6666666667%;
max-width: 91.6666666667%; }
.col-xl-23-24 {
flex: 0 0 95.8333333333%;
max-width: 95.8333333333%; }
.col-xl-24, .col-xl-24-24 {
flex: 0 0 100%;
max-width: 100%; }
.offset-xl-1-24 {
margin-left: 4.1666666667%; }
.offset-xl-2-24 {
margin-left: 8.3333333333%; }
.offset-xl-3-24 {
margin-left: 12.5%; }
.offset-xl-4-24 {
margin-left: 16.6666666667%; }
.offset-xl-5-24 {
margin-left: 20.8333333333%; }
.offset-xl-6-24 {
margin-left: 25%; }
.offset-xl-7-24 {
margin-left: 29.1666666667%; }
.offset-xl-8-24 {
margin-left: 33.3333333333%; }
.offset-xl-9-24 {
margin-left: 37.5%; }
.offset-xl-10-24 {
margin-left: 41.6666666667%; }
.offset-xl-11-24 {
margin-left: 45.8333333333%; }
.offset-xl-12-24 {
margin-left: 50%; }
.offset-xl-13-24 {
margin-left: 54.1666666667%; }
.offset-xl-14-24 {
margin-left: 58.3333333333%; }
.offset-xl-15-24 {
margin-left: 62.5%; }
.offset-xl-16-24 {
margin-left: 66.6666666667%; }
.offset-xl-17-24 {
margin-left: 70.8333333333%; }
.offset-xl-18-24 {
margin-left: 75%; }
.offset-xl-19-24 {
margin-left: 79.1666666667%; }
.offset-xl-20-24 {
margin-left: 83.3333333333%; }
.offset-xl-21-24 {
margin-left: 87.5%; }
.offset-xl-22-24 {
margin-left: 91.6666666667%; }
.offset-xl-23-24 {
margin-left: 95.8333333333%; } }
/* by default 24 grid cols full width */
[class^="col-"][class*="-24"] {
position: relative;
width: 100%;
min-height: 1px;
padding-right: 15px;
padding-left: 15px; }
/* nogutter for 24 grid cols */
.no-gutters > [class*="col-"] {
padding-right: 0 !important;
padding-left: 0 !important; }
/* ================== SECTIONS =================== */
.navbar {
position: relative;
z-index: 999; }
.navbar .nav-link {
font-size: 18px;
font-weight: bold; }
.navbar .nav-item {
margin-left: 20px; }
.navbar .dropdown-menu {
min-width: 5rem;
transform: translateX(-20%); }
.navbar .dropdown-menu a:active {
color: #fff; }
.navbar-brand .logo {
margin-right: 7px;
max-height: 60px;
display: inline-block; }
.section-intro {
position: relative;
padding-bottom: 15px;
background-image: url(../images/bg/bg-main.png);
background-repeat: no-repeat;
background-position: top center;
background-size: 100% 90%; }
.section-intro.section-intro-v2 {
overflow: hidden;
background: #00091F;
min-height: 100vh; }
.section-intro.section-intro-v2 .particles-js-canvas-el {
position: absolute;
left: 0;
top: 0; }
.section-intro.section-intro-v2 > .container {
min-height: calc( 100vh - 80px - 1rem ); }
.section-intro.section-intro-v2 > .container > .row {
position: relative;
z-index: 3;
width: 100%; }
.section-intro.section-intro-v2 > .container .bg-icons-v2 {
position: absolute;
top: 0;
width: 100%;
bottom: 0;
z-index: 1; }
.section-intro.section-intro-v2 > .container .bg-icons-v2 img {
position: absolute;
max-width: 100%;
max-height: 100%; }
.section-intro.section-intro-v2 > .container .bg-icons-v2 img:nth-child(1) {
top: 41%;
right: 30%;
animation: rotate-float 15s linear infinite; }
.section-intro.section-intro-v2 > .container .bg-icons-v2 img:nth-child(2) {
top: 20%;
right: 5%;
animation: rotate-float 30s linear infinite; }
.section-intro.section-intro-v2 > .container .bg-icons-v2 img:nth-child(3) {
top: 26%;
right: 5%;
animation: rotate-float 30s linear infinite reverse; }
.section-intro.section-intro-v2 > .container .bg-icons-v2 img:nth-child(4) {
top: 21%;
right: 30%;
animation: rotate 10s linear infinite; }
.section-intro .title-intro {
/*font-family: 'Intro Bold';*/
font-style: normal;
font-weight: 600;
line-height: normal;
font-size: 60px;
margin-bottom: 50px; }
.section-intro .container {
position: relative;
z-index: 3; }
.section-intro .bg-icons {
position: absolute;
top: 0;
width: 100%;
bottom: 0;
z-index: 1; }
.section-intro .bg-icons img {
position: absolute;
max-width: 40px;
max-height: 40px; }
.section-intro .bg-icons img:nth-child(1) {
top: 41%;
left: 4%;
animation: rotate-float 15s linear infinite; }
.section-intro .bg-icons img:nth-child(2) {
top: 20%;
left: 33%;
animation: rotate-float 30s linear infinite; }
.section-intro .bg-icons img:nth-child(3) {
top: 26%;
left: 90%;
animation: rotate-float 30s linear infinite reverse; }
.section-intro .bg-icons img:nth-child(4) {
top: 21%;
left: 61%;
opacity: .3;
animation: rotate 10s linear infinite; }
.section-intro .bg-icons img:nth-child(5) {
top: 68%;
left: -6%;
opacity: .3;
animation: floating 15s linear infinite; }
.section-intro .bg-icons img:nth-child(6) {
top: 55%;
left: 89%;
animation: rotate-float 20s linear infinite; }
.section-intro .bg-icons img:nth-child(7) {
top: 54%;
left: 34%;
animation: rotate 30s linear infinite; }
.img-intro {
max-width: 100%;
margin-top: 100px; }
.section-intro-page {
position: relative;
padding-bottom: 15px; }
.section-intro-page.section-intro-page_v2 {
overflow: hidden; }
.section-intro-page.section-intro-page_v2 > .container {
position: relative;
z-index: 2;
min-height: calc( 100vh - 80px - 1rem ); }
.section-intro-page.section-intro-page_v2 > .container .intro-wrap {
padding-top: 0; }
.section-intro-page.section-intro-page_v2 > .container .intro-wrap .intro-center {
margin-bottom: 42px; }
.section-intro-page.section-intro-page_v2 > .container .intro-wrap .intro-bottom {
cursor: pointer;
user-select: none;
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%); }
.section-intro-page canvas {
width: 100%;
top: 0;
height: 100%;
position: absolute; }
.section-intro-page .intro-wrap {
padding-top: 140px;
margin-bottom: 150px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column; }
.section-intro-page .title-intro {
position: relative;
z-index: 2;
font-family: 'Intro';
letter-spacing: 5px;
font-style: normal;
font-weight: 600;
line-height: normal;
font-size: 70px; }
.section-intro-page .intro-center {
position: relative; }
.section-intro-page .bg-icons-page {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%; }
.section-intro-page .bg-icons-page img {
position: absolute;
animation-name: rotate-float;
animation-iteration-count: infinite;
animation-timing-function: linear; }
.section-intro-page .bg-icons-page img:nth-child(1) {
top: 12%;
left: -7%;
animation-duration: 31s; }
.section-intro-page .bg-icons-page img:nth-child(2) {
top: 0%;
left: -58%;
animation-duration: 25s;
animation-direction: reverse; }
.section-intro-page .bg-icons-page img:nth-child(3) {
top: -12%;
left: 133%;
animation-duration: 28s; }
.section-intro-page .bg-icons-page img:nth-child(4) {
top: 50%;
left: 71%;
animation-duration: 38s;
animation-direction: reverse; }
.section-intro-page .bg-icons-page img:nth-child(5) {
top: -71%;
left: 79%;
animation-duration: 18s; }
.section-intro-page .bg-icons-page img:nth-child(6) {
top: -40%;
left: -15%;
animation-duration: 35s;
animation-direction: reverse; }
.section-intro-page .bg-icons-page img:nth-child(7) {
top: 0%;
left: 120%;
animation-duration: 30s; }
.animation_duration_10 {
animation-duration: 10s; }
.animation_duration_20 {
animation-duration: 20s; }
.animation_duration_30 {
animation-duration: 30s; }
.animation_duration_40 {
animation-duration: 40s; }
.animation_direction_reverse {
animation-direction: reverse; }
@keyframes rotate {
0% {
transform: rotate(0deg); }
100% {
transform: rotate(359deg); } }
.animate-rotate {
animation-name: rotate;
animation-duration: 30s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
@keyframes rotate-float {
0% {
transform: rotate(0deg) translate(-70px); }
100% {
transform: rotate(-359deg) translate(-70px); } }
.rotate-float {
animation-name: rotate-float;
animation-duration: 30s;
animation-fill-mode: both;
animation-iteration-count: infinite;
animation-timing-function: linear; }
@keyframes floating {
0% {
transform: rotate(0deg) translate(-40px); }
100% {
transform: rotate(-360deg) translate(-40px); } }
@keyframes floating2 {
0% {
transform: rotate(0deg) translate(-40px); }
50% {
transform: rotate(-180deg) translate(-40px); }
100% {
transform: rotate(-360deg) translate(-40px); } }
@keyframes pulse {
0% {
transform: scale(1); }
50% {
transform: scale(1.3); }
100% {
transform: scale(1); } }
.animate-pulse {
animation-name: pulse;
animation-duration: 2.5s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
@keyframes rubberBand {
0% {
transform: scale(1); }
30% {
transform: scaleX(1.25) scaleY(0.75); }
40% {
transform: scaleX(0.75) scaleY(1.25); }
60% {
transform: scaleX(1.15) scaleY(0.85); }
100% {
transform: scale(1); } }
.rubberBand {
animation-name: rubberBand;
animation-duration: 2.5s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
@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; } }
.animate-flip {
backface-visibility: visible;
animation-name: flip;
animation-duration: 2.5s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
@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%); } }
.animate-wobble {
animation-name: wobble;
animation-duration: 2.5s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
.intro-bottom {
color: #fff;
position: relative;
z-index: 5;
margin-top: 0; }
.intro-bottom a {
color: inherit;
display: block;
animation: bounce_down 2s ease-in-out infinite; }
.intro-bottom a:hover {
color: #2855AF; }
.intro-bottom i {
font-size: 36px; }
.intro-bottom .down-btn-wrap {
margin-top: 0;
margin-bottom: 3%; }
@keyframes bounce_down {
0%, 100%, 20%, 50%, 80% {
transform: translateY(0); }
40% {
transform: translateY(30px); }
60% {
transform: translateY(15px); } }
@keyframes bounce_up {
0%, 100%, 20%, 50%, 80% {
transform: translateY(0); }
40% {
transform: translateY(-30px); }
60% {
transform: translateY(-15px); } }
.bounce-1 {
animation-duration: 2s;
animation-iteration-count: infinite;
animation-name: bounce-1;
animation-timing-function: linear; }
@keyframes bounce-1 {
0% {
transform: translateY(0); }
50% {
transform: translateY(-50px); }
100% {
transform: translateY(0); } }
/* ================== header main ================== */
body.active-menu .section-intro-page, body.active-menu .section-intro {
padding-top: 84px; }
body.active-menu .navbar {
position: fixed;
top: 0;
left: 0;
right: 0; }
/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author <NAME> @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
*/
button:focus {
outline: 0 !important; }
.hamburger {
outline: 0;
padding: 10px 10px;
display: inline-block;
cursor: pointer;
transition-property: opacity, filter;
transition-duration: 0.15s;
transition-timing-function: linear;
font: inherit;
color: inherit;
text-transform: none;
background-color: transparent;
border: 0;
margin: 0;
overflow: visible; }
.hamburger:hover {
opacity: 0.7; }
.hamburger-box {
width: 40px;
height: 20px;
display: inline-block;
position: relative; }
.hamburger-inner {
display: block;
top: 50%;
margin-top: -2px; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
width: 36px;
height: 3px;
background-color: #fff;
border-radius: 4px;
position: absolute;
transition-property: transform;
transition-duration: 0.15s;
transition-timing-function: ease; }
.hamburger-inner::before, .hamburger-inner::after {
content: "";
display: block; }
.hamburger-inner::before {
top: -12px;
width: 60%; }
.hamburger-inner::after {
bottom: -12px; }
/*
* Slider
*/
.hamburger--slider .hamburger-inner {
top: 2px; }
.hamburger--slider .hamburger-inner::before {
top: 10px;
transition-property: transform, opacity;
transition-timing-function: ease;
transition-duration: 0.15s; }
.hamburger--slider .hamburger-inner::after {
top: 20px; }
.hamburger--slider.is-active .hamburger-inner {
transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--slider.is-active .hamburger-inner::before {
transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
opacity: 0; }
.hamburger--slider.is-active .hamburger-inner::after {
transform: translate3d(0, -20px, 0) rotate(-90deg); }
/*
* Arrow Turn
*/
.hamburger--arrowturn.is-active .hamburger-inner {
transform: rotate(-180deg); }
.hamburger--arrowturn.is-active .hamburger-inner::before {
transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
.hamburger--arrowturn.is-active .hamburger-inner::after {
transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
/*
* Arrow Turn Right
*/
.hamburger--arrowturn-r.is-active .hamburger-inner {
transform: rotate(-180deg); }
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }
.down-btn-wrap {
margin-top: 5%;
margin-bottom: 3%; }
/* desktop only */
/* desktop only .end */
/* ================ SECTION-FOOTER ================== */
.section-footer a {
color: inherit; }
.section-footer p {
margin-top: 10px;
margin-bottom: 10px; }
.footer-bottom {
padding: 15px 0; }
.logo-footer {
height: 50px; }
.social-wrap a {
font-size: 18px;
display: inline-block;
margin: 3px; }
.phone {
font-size: 16px;
color: #FF068A;
font-weight: bold; }
/* ====================== NEW FOOTER ==================== */
.overflow-visible {
overflow: visible !important; }
.new_footer {
position: relative;
overflow: hidden; }
.new_footer.overflow-visible:before, .new_footer.overflow-visible:after {
content: none; }
.new_footer:before, .new_footer:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0; }
.new_footer:before {
top: 50px;
background: linear-gradient(180deg, #E9EEF7 -0.65%, #FFFFFF 84.42%);
opacity: 0.5; }
.new_footer:after {
top: 100px;
background: linear-gradient(180deg, #E9EEF7 -0.65%, #FFFFFF 97.75%); }
.new_footer > section,
.new_footer > div,
.new_footer > p,
.new_footer > footer {
position: relative;
z-index: 1; }
.new_footer .seo-text-slider_arrows {
text-align: center; }
.new_footer .seo-text-slider_arrows span {
cursor: pointer;
display: inline-block; }
.new_footer .seo-text-slider_arrows span.prev {
margin-right: 15px; }
.new_footer .seo-text-slider_arrows span img {
display: block; }
.new_footer .section-shape .for_shape:after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 700%;
height: 100%;
background: #2855AF;
border-radius: 0px 20px 20px 0px; }
.new_footer .section-shape .for_shape .section-heading {
position: relative;
z-index: 2;
min-height: 120px; }
.new_footer .section-shape .for_shape .section-heading .bg-num {
color: rgba(255, 255, 255, 0.1);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin-top: auto; }
.new_footer .new_carusel_style .heading-types-mobile h2 {
color: #2855AF; }
.new_footer .new_carusel_style .text {
right: 0;
color: rgba(40, 85, 175, 0.05); }
.new_footer .new_carusel_style .shape-bg-aud {
background: #2855AF; }
.new_footer .new_carusel_style .item-type-mobile:after {
background-color: #3FA6D7; }
.new_footer .seo-text-site {
margin-top: 2rem;
margin-left: 20%;
margin-right: 20%;
text-align: justify;
line-height: 25px;
font-size: 15px; }
.new_footer .new-index-bottom .footer_bubbles {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
.new_footer .new-index-bottom .footer_bubbles img {
position: absolute;
animation-name: rotate-float;
animation-fill-mode: both;
animation-iteration-count: infinite;
animation-timing-function: linear; }
.new_footer .new-index-bottom .footer_bubbles img:nth-child(1) {
bottom: 0;
left: 0;
animation-duration: 20s; }
.new_footer .new-index-bottom .footer_bubbles img:nth-child(2) {
top: 0;
left: 0;
animation-duration: 25s;
animation-direction: reverse; }
.new_footer .new-index-bottom .footer_bubbles img:nth-child(3) {
bottom: 0;
right: 35%;
animation-duration: 25s; }
.new_footer .new-index-bottom .footer_bubbles img:nth-child(4) {
top: 0;
right: 35%;
animation-duration: 30s;
animation-direction: reverse; }
.new_footer .new-index-bottom .footer_bubbles img:nth-child(5) {
bottom: 0;
right: 0;
animation-duration: 30s; }
.new_footer .new-index-bottom .footer_bubbles img:nth-child(6) {
top: 50px;
right: 0;
animation-duration: 20s;
animation-direction: reverse; }
.new_footer .section-footer .phone {
color: #2855AF; }
/* ================== PAGES =================== */
.section-intro.no-bg {
background-image: none; }
.portfolio-temporary {
position: relative;
margin-top: -100px; }
.portfolio-temporary img {
max-width: 100%;
width: 100%;
display: block; }
.portfolio-temporary a.portfolio-temporary-link {
position: absolute;
z-index: 5;
padding: 5px 10px 10px 5px;
display: inline-block;
font-size: 16px; }
.portfolio-temporary a.portfolio-temporary-link:before {
position: absolute;
content: "";
bottom: 5px;
right: 0;
height: 2px;
width: 50%;
transition: all 0.3s; }
.portfolio-temporary a.portfolio-temporary-link:after {
position: absolute;
content: "";
bottom: 1px;
right: 0;
height: 10px;
width: 10px;
border-top: 2px solid;
border-right: 2px solid;
transform: rotate(45deg);
transition: all 0.3s; }
.portfolio-temporary a.portfolio-temporary-link:hover::before,
.portfolio-temporary a.portfolio-temporary-link:hover::after {
right: -5px; }
.portfolio-temporary a.link-white {
color: #ffffff;
left: 50%;
bottom: 30px;
transform: translateX(-50%); }
.portfolio-temporary a.link-white:before {
background: #ffffff; }
.portfolio-temporary a.link-white:after {
border-color: #ffffff; }
.portfolio-temporary a.link-black {
color: #000000;
right: 100px;
bottom: 30px; }
.portfolio-temporary a.link-black:before {
background: #000000; }
.portfolio-temporary a.link-black:after {
border-color: #000000; }
.portfolio-temporary-bottom-slide .slide .item:focus {
outline: none; }
.portfolio-temporary-bottom-slide .slide .item a {
position: relative;
display: block;
text-decoration: none;
color: #ffffff; }
.portfolio-temporary-bottom-slide .slide .item a > div {
display: table;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
opacity: 0;
background: rgba(0, 9, 31, 0.95);
transition: all .3s; }
.portfolio-temporary-bottom-slide .slide .item a > div > div {
display: table-cell;
vertical-align: middle;
text-align: center;
padding-right: 15px;
padding-left: 15px; }
.portfolio-temporary-bottom-slide .slide .item a > div > div h3 {
font-family: 'Intro', sans-serif;
font-weight: 600;
text-transform: uppercase;
font-size: 38px;
margin-bottom: 18px; }
.portfolio-temporary-bottom-slide .slide .item a > div > div p {
font-family: 'Intro', sans-serif;
font-size: 20px;
margin-bottom: 90px; }
.portfolio-temporary-bottom-slide .slide .item a > div > div span {
display: inline-block;
text-indent: -999px;
position: relative;
width: 76px;
height: 10px; }
.portfolio-temporary-bottom-slide .slide .item a > div > div span:before {
background: #ffffff;
position: absolute;
content: "";
bottom: 5px;
right: 0;
height: 2px;
width: 100%;
transition: all 0.3s; }
.portfolio-temporary-bottom-slide .slide .item a > div > div span:after {
position: absolute;
content: "";
bottom: 1px;
right: 0;
height: 10px;
width: 10px;
border-top: 2px solid;
border-right: 2px solid;
transform: rotate(45deg);
transition: all 0.3s; }
.portfolio-temporary-bottom-slide .slide .item a img {
width: 100%;
height: 100%;
max-height: 380px;
min-height: 380px;
object-fit: cover; }
.portfolio-temporary-bottom-slide .slide .item a:hover div {
opacity: 1; }
.nav {
/* display: none; */
position: fixed;
z-index: -1;
top: 0;
left: 100%;
width: 100%;
height: 100%;
padding: 30px;
transition: all .2s ease-in-out;
color: #fff;
background: #00091F;
overflow: hidden; }
.nav .container {
position: relative;
z-index: 2; }
.nav:before {
content: "";
position: absolute;
width: 460px;
height: 460px;
left: -254px;
top: -147px;
background: url(../images/bg-bubbles/bubble_blue_344.svg) no-repeat center;
background-size: contain;
z-index: 1;
animation: floating 10s linear infinite; }
.nav:after {
content: "";
position: absolute;
width: 460px;
height: 460px;
right: -254px;
bottom: -147px;
background: url(../images/bg-bubbles/bubble_blue_light_413.svg) no-repeat center;
background-size: contain;
z-index: 1;
animation: floating 15s linear infinite; }
.nav a {
color: #fff;
text-decoration: none; }
.nav a:hover {
color: #2855AF; }
.nav.active {
display: block;
z-index: 200;
left: 0; }
.nav .col-md-4 {
padding-top: 50px;
margin: 0;
margin-top: 50px; }
.nav .col-md-4 ul {
list-style: none;
padding-left: 0; }
.nav .col-md-4.nav-services h2 {
padding: 15px 0;
font-size: 2.225rem;
cursor: pointer; }
.nav .col-md-4.nav-services a {
word-break: break-word;
font-size: 15px;
padding: 5px 0;
margin-bottom: 10px;
font-family: 'Montserrat';
font-weight: 400; }
.nav .col-md-4.nav-contact h2 {
padding: 15px 0;
font-size: 2.225rem;
cursor: pointer; }
.nav .col-md-4.nav-contact p {
font-size: 15px;
padding: 5px 0;
margin-bottom: 25px;
font-family: 'Montserrat';
font-weight: 600; }
.nav .col-md-4.nav-contact a {
font-size: 15px;
padding: 5px 0;
font-family: 'Montserrat';
font-weight: 600;
color: #FF068A; }
.nav ul li a {
display: block;
padding: 15px 0;
font-weight: 600;
font-size: 36px; }
.nav-footer {
/*position:absolute; bottom:0; left:0; right:0;*/
padding: 10px;
text-align: center; }
.item-feature {
margin-bottom: 30px;
margin-top: 30px; }
.item-feature img {
height: 46px; }
.item-feature p {
margin-top: 20px;
font-family: Montserrat;
font-style: normal;
font-weight: bold;
line-height: normal;
font-size: 16px; }
.icon-download {
width: 16px;
height: 16px;
vertical-align: middle;
margin-left: 5px; }
.section-shape .section-heading {
margin-bottom: 10px; }
.nav-portfolio {
margin-bottom: 45px !important; }
.nav-portfolio li {
font-family: Montserrat;
font-style: normal;
font-weight: 600;
line-height: normal;
margin-bottom: 20px;
font-size: 28px;
margin-right: 15px; }
.nav-portfolio li a {
padding: 10px;
color: #071D31; }
.nav-portfolio li a:hover {
color: #2855AF; }
.nav-portfolio li.active a {
border-bottom: 3px solid #2855AF; }
.box-request .step {
display: none; }
.box-request .step.active {
display: block;
animation-name: move_block;
animation-duration: .2s; }
.box-request.box-request_v2 {
box-shadow: 10px 10px 70px rgba(40, 85, 175, 0.05);
border-radius: 2rem !important;
border: 0;
padding: 3.3rem; }
.box-request.box-request_v2 h3 {
font-size: 1.8rem;
line-height: 2.15rem;
margin-bottom: 3.3rem;
max-width: 90%;
color: #2855AF; }
.box-request.box-request_v2 .dots > span {
background-color: transparent;
border: 2px solid #2855AF; }
.box-request.box-request_v2 .dots > span.active, .box-request.box-request_v2 .dots > span.done {
border-color: #2855AF !important;
background-color: #2855AF !important; }
.box-request.box-request_v2 .dots > span.active i, .box-request.box-request_v2 .dots > span.done i {
color: #ffffff;
opacity: 1; }
.box-request.box-request_v2 .dots > span i {
opacity: 0; }
@keyframes move_block {
from {
transform: translateX(200px);
opacity: 0; }
to {
transform: translateX(0px);
opacity: 1; } }
.slider-wrap div:focus, .slider-wrap div:active {
outline: 0 !important; }
.slider-wrap .slick-track {
outline: 0; }
.slider-wrap .stat-wrap {
font-size: 20px; }
.box-request {
border-radius: 10px !important; }
.box-request form {
max-width: 500px;
display: block;
margin-top: 30px; }
.box-request .dots {
text-align: center;
margin-bottom: 30px;
margin-top: 30px; }
.box-request .dots > span {
display: inline-block;
width: 20px;
height: 20px;
border-radius: 20px;
border: 1px solid #2855AF; }
.box-request .dots > span.active {
background: #2855AF; }
.item-portfolio strong {
color: #2855AF; }
.item-portfolio img {
max-width: 520px;
max-height: 520px;
display: block;
margin: 0 auto; }
.form-group label {
color: #333;
font-size: 18px; }
.form-group .form-control {
border: 0;
border-bottom: 1px solid #ccc;
padding-left: 0; }
.form-group .form-control:focus {
border-bottom: 1px solid #2855AF; }
.item-portfolio .row {
align-items: center; }
.item-portfolio article {
transform: translateY(200px);
opacity: 0;
transition: all .6s ease-in; }
.item-portfolio.slick-center article {
transition: all .6s ease-in;
transform: translateY(0);
opacity: 1; }
.dots-form span {
line-height: 18px;
font-size: 12px;
background: #54A6D3;
border-color: #54A6D3;
position: relative;
margin-left: 26px; }
.dots-form span:after {
content: "";
width: 20px;
height: 1px;
display: block;
background: #858586;
position: absolute;
top: 45%;
left: 23px; }
.dots-form span:last-child:after {
display: none; }
.dots-form span i {
color: #54A6D3; }
.dots-form span.done i {
color: #fff; }
.dots-form span.done {
background: #2855AF; }
.dots-form span.active i {
opacity: 0; }
.dots-form span.active {
background: #fff !important;
border-color: #2855AF !important; }
.shape-bg-why {
display: block;
position: absolute;
width: 70%;
height: 212px;
left: 0px;
top: 0px;
background: #2855AF;
opacity: 0.9;
z-index: -1;
border-radius: 0px 20px 20px 0px; }
.shape-right {
left: auto;
right: 0;
border-radius: 20px 0px 0px 20px; }
.item-pricing {
border-radius: 20px;
overflow: hidden;
border: 0;
width: 90%;
transition: 0.2s;
box-shadow: 4px 4px 30px rgba(62, 102, 183, 0.2), 0 20px 0 -10px #fff, 4px 4px 30px rgba(62, 102, 183, 0.2); }
.item-pricing ul {
line-height: 1.8;
padding-left: 20px; }
.item-pricing ul {
min-height: 200px; }
.item-pricing:hover {
transform: scale(1.1);
transition: 0.2s; }
.item-pricing .card-header {
background: #2855AF;
opacity: 0.9;
padding-top: 17px;
padding-bottom: 17px; }
.item-pricing .card-header.bg-dark {
background: none; }
.partners-wrap img {
max-width: 100%;
box-shadow: 4px 4px 30px rgba(62, 102, 183, 0.2); }
.bottom-box-contact-wrap {
justify-content: center;
display: flex; }
.bottom-box-contact-wrap .box {
max-width: 360px;
width: 100%; }
.slide-shape-wrap {
position: relative;
user-select: none; }
.slide-shape-wrap a {
position: absolute;
top: 38%; }
.slide-shape-wrap .slick-prev-shape {
left: -40px; }
.slide-shape-wrap .slick-next-shape {
right: -40px; }
.slide-shape-wrap .item-slide {
padding-left: 10px;
user-select: none;
padding-right: 10px;
padding-bottom: 20px;
outline: none; }
.envelopes {
width: 600px;
height: 600px;
position: absolute;
left: 0;
bottom: 0;
display: block; }
.envelopes img {
position: absolute;
transform: rotate(6deg) scale(0.7, 0.5);
left: 155px;
top: 262px;
transition: all .5s; }
.envelopes.spread .envelope:nth-child(1) {
left: 181px;
top: 243px;
transform: rotate(-65deg) scale(0.8); }
.envelopes.spread .envelope:nth-child(2) {
left: 476px;
top: 294px;
transform: rotate(16deg) scale(0.6); }
.envelopes.spread .envelope:nth-child(3) {
left: 453px;
top: 187px;
transform: rotate(-76deg) scale(0.6); }
.envelopes.spread .envelope:nth-child(4) {
left: 512px;
top: 88px;
transform: rotateZ(67deg) scale(0.4); }
.envelopes.spread .envelope:nth-child(5) {
left: 427px;
top: 105px;
transform: rotate(-26deg) scale(0.5); }
.envelopes.spread .envelope:nth-child(6) {
left: 246px;
top: 355px;
transform: rotate(35deg) scale(0.7); }
.envelopes.spread .envelope:nth-child(7) {
left: 379px;
top: 337px;
transform: rotate(1deg) scale(0.7); }
.envelopes.spread .envelope:nth-child(8) {
left: 396px;
top: 242px;
transform: rotate(-55deg) scale(0.7); }
.envelopes.spread .envelope:nth-child(9) {
left: 361px;
top: 181px;
transform: rotate(-25deg); }
.envelopes.spread .envelope:nth-child(10) {
left: 318px;
top: 279px;
transform: rotate(-16deg); }
.envelopes.spread .envelope:nth-child(11) {
left: 274px;
top: 218px;
transform: rotate(-62deg) scale(0.8); }
.envelopes.spread .envelope:nth-child(12) {
left: 236px;
top: 128px;
transform: rotate(-66deg) scale(0.7); }
.pulse-play {
position: absolute;
left: -60px;
top: 40%;
display: block;
z-index: 99;
user-select: none; }
.pulse-play:hover {
transform: scale(1.2);
transition: .3s; }
.pulse-play:focus {
outline: 0 !important;
border: 0; }
.pulse-round {
position: absolute;
border: 5px solid #2855AF;
left: -15px;
top: -15px;
border-radius: 100%;
display: block;
animation: pulse 1.5s ease-out;
animation-iteration-count: infinite;
height: 150px;
width: 150px; }
.pulse-round:focus {
outline: 0 !important; }
@keyframes move-shake {
0%, 100%, 20%, 50%, 80% {
-webkit-transform: translateX(0) rotate(0);
transform: translateX(0) rotate(0); }
40% {
-webkit-transform: translateX(30px) rotate(3deg);
transform: translateX(30px) rotate(3deg); }
60% {
-webkit-transform: translateX(15px) rotate(-3deg);
transform: translateX(15px) rotate(-3deg); } }
@keyframes pulse {
0% {
transform: scale(0.7);
opacity: .9; }
50% {
transform: scale(1.2);
opacity: 0; }
51% {
transform: scale(0.7);
opacity: 0; }
52% {
transform: scale(0.7);
opacity: 1; }
100% {
transform: scale(1.2);
opacity: 0; } }
.section-steps-reklama .arrow-next img {
max-width: 20px;
margin-top: -30px; }
.shape-bg-why-red {
background: linear-gradient(90deg, #FF068A 0%, #E62753 100%);
display: block;
position: absolute;
width: 70%;
height: 212px;
left: 0px;
top: 0px;
opacity: 0.9;
z-index: -1;
border-radius: 0px 5px 5px 0px; }
.showcase-reklama .float-right {
max-width: 80%; }
.img-showcase-reklama {
position: relative;
margin-top: 70px;
background: #5377BF;
box-shadow: 4px 4px 25px rgba(40, 85, 175, 0.2);
border-radius: 20px;
width: 470px;
height: 260px; }
.img-showcase-reklama img {
position: absolute;
bottom: 60px;
left: 50%;
transform: translateX(-50%); }
.img-showcase-reklama .title {
color: #fff;
font-weight: bold;
position: absolute;
bottom: 20px;
left: 30px;
width: calc(100% - 60px); }
.img-showcase-reklama .num {
float: right;
color: #fff; }
.item-benefit-reklama {
border-radius: 10px;
background: #FFFFFF;
display: flex;
box-shadow: 4px 4px 30px rgba(49, 22, 248, 0.3);
margin-bottom: 30px;
height: 120px;
position: relative; }
.item-benefit-reklama img {
margin-left: 7px; }
.item-benefit-reklama p {
margin-bottom: 0;
font-weight: bold; }
.item-benefit-reklama .hover {
transition: .3s;
position: absolute;
top: 0;
height: 100%;
left: 0%;
opacity: 0;
transform: scale(0.1);
width: 100%;
bottom: 0;
padding: 20px;
border-radius: 10px;
color: #fff;
text-align: center;
background: #2855AF; }
.item-benefit-reklama:hover .hover {
opacity: 1;
transition: .3s;
transform: scale(1);
font-size: 18px; }
.items-tool-reklama-wrap p {
font-size: 20px;
margin-top: 20px;
font-weight: bold; }
.item-step-reklama {
margin-bottom: 50px;
min-height: 180px;
border: 0;
overflow: hidden;
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(40, 85, 175, 0.1);
border-radius: 10px;
margin-right: 15px;
margin-left: 15px; }
.item-step-reklama .card-title {
position: relative;
padding-left: 25px;
font-size: 13px;
text-transform: uppercase;
line-height: 2;
color: #444F60;
margin-top: 10px;
font-weight: bold; }
.item-step-reklama .card-title:after {
content: "";
height: 3px;
width: 50px;
display: block;
position: absolute;
bottom: -5px;
background: #2855AF; }
.item-step-reklama ul {
margin: 0;
padding-left: 20px;
font-size: 14px; }
.item-step-reklama .corner {
position: absolute;
width: 45px;
height: 45px;
font-size: 20px;
padding-top: 5px;
padding-left: 12px;
color: #fff;
font-weight: bold;
left: 0;
top: 0;
background: #2855AF;
border-radius: 5px 0px 100px; }
.img-arrow {
max-width: 16px;
position: absolute;
top: 35%;
right: -10px; }
.order-tarif {
display: flex;
background: #fff;
align-items: stretch;
margin-top: 70px; }
.order-tarif .icon {
padding: 20px;
display: flex;
align-items: center; }
.order-tarif .text {
padding: 30px;
display: flex;
align-items: center; }
.order-tarif .action {
padding: 30px;
display: flex;
align-items: center;
margin-left: auto; }
.item-why-reklama {
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(62, 102, 183, 0.2);
border-radius: 5px;
padding: 15px 10px;
display: flex;
height: 100%; }
.item-why-reklama .iconbox img {
height: 46px; }
.section-steps-seo .arrow-next img {
max-width: 15px;
margin-top: -30px; }
.arrow-wrap {
position: absolute;
width: 180px;
top: 0px;
color: #2855AF; }
.arrow-wrap img {
left: -20px;
top: 5px;
position: absolute; }
.btn-action-wrap-seo .btn {
min-width: 200px;
margin-left: 5px;
margin-right: 5px; }
.btn-action-wrap-seo .btn:hover {
transform: translateY(-4px);
transition: .2s;
box-shadow: 1px 8px 15px rgba(0, 0, 0, 0.3);
color: #fff; }
.btn-action-wrap-seo .btn-primary:after {
display: none; }
.btn-action-wrap-seo .btn-primary:before {
display: none; }
.item-serv-seo {
margin-bottom: 30px;
height: 120px;
position: relative;
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(40, 85, 175, 0.15);
border-radius: 10px;
display: flex; }
.item-serv-seo img {
margin-left: 7px;
width: 50px;
height: 50px; }
.item-serv-seo p {
margin-bottom: 0;
font-weight: bold; }
.item-serv-seo .hover {
transition: .3s;
text-align: center;
position: absolute;
top: -7%;
height: 114%;
left: -5%;
opacity: 0;
transform: scale(0.1);
width: 110%;
bottom: 0;
background: linear-gradient(90deg, #3FA6D7 0%, #2855AF 100%);
padding: 30px;
border-radius: 0.25rem;
color: #fff;
font-size: 12px;
display: flex;
justify-content: center;
flex-direction: column;
text-align: center; }
.item-serv-seo:hover .hover {
opacity: 1;
transition: .3s;
transform: scale(1); }
.text-slide-portfolio {
font-size: 19px; }
.text-slide-portfolio .btn {
margin-top: 20px; }
.item-step-seo {
margin-bottom: 30px;
border: 0;
overflow: hidden; }
.item-step-seo .card-body {
border-left: 15px solid;
overflow: hidden;
border-color: #2855AF; }
.item-step-seo .card-title {
position: relative;
padding-left: 15px;
line-height: 2;
color: #444F60;
z-index: 3;
font-weight: bold; }
.item-step-seo .card-title:before {
position: absolute;
z-index: -1;
content: attr(data-num);
color: #E8F0FF;
left: -7px;
top: -5px;
font-size: 60px;
font-weight: bold;
line-height: 1; }
.item-step-seo ul {
margin: 0;
padding-left: 20px;
font-size: 12px;
color: #858586; }
.tools-seo-wrap p {
font-size: 20px;
margin-top: 20px;
font-weight: bold; }
.item-tool-seo {
padding: 7px;
width: 100px;
height: 100px;
display: inline-block;
text-align: center;
align-items: center;
justify-content: center;
padding-top: 15px; }
.line-tool-seo {
height: 5px;
width: 70px;
background: #2855AF;
display: inline-block;
transform: translateY(-30px); }
.item-why-seo {
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(62, 102, 183, 0.2);
border-radius: 5px;
padding: 15px 10px;
display: flex;
height: 100%; }
.item-why-seo .iconbox {
width: 100%; }
.item-why-seo .iconbox img {
height: 46px; }
.page-seo_result .img_content .positio_absolute {
position: absolute;
left: 50%;
top: 0;
width: 320px;
height: 100%;
margin-left: -160px; }
.page-seo_result .img_content .positio_absolute img {
position: absolute;
top: 0;
left: 0; }
.page-seo_result .img_content .positio_absolute img.table_animate {
animation-iteration-count: infinite;
animation-name: bounce-1;
animation-timing-function: linear; }
.page-seo_result .img_content .positio_absolute img.table_animate:nth-child(2) {
animation-duration: 13s; }
.page-seo_result .img_content .positio_absolute img.table_animate:nth-child(3) {
animation-duration: 12s; }
.page-seo_result .img_content .positio_absolute img.table_animate:nth-child(4) {
animation-duration: 15s; }
.page-seo_result .img_content .positio_absolute img.table_animate:nth-child(5) {
animation-duration: 16s; }
.page-seo_result .img_content > img {
display: block;
margin: 0 auto;
position: relative;
z-index: 2; }
.item-feature-smm img {
height: 46px; }
.item-feature-smm p {
margin-top: 20px;
font-family: Montserrat;
font-style: normal;
font-weight: bold;
line-height: normal;
font-size: 16px; }
.img-intro-smm {
max-width: 580px;
margin-top: 80px; }
.item-why-smm {
margin-bottom: 30px; }
.item-why-smm .icon {
text-align: center; }
.item-why-smm img {
max-width: 150px;
margin-left: -40px; }
.item-why-smm p {
padding-left: 30px;
margin-left: 23%;
font-weight: bold;
font-size: 16px; }
.img-step-site + .animate-rotate {
left: 10%;
top: 0;
max-width: 80%; }
.step-smm {
position: relative;
margin-bottom: 60px;
margin-left: 45px; }
.step-smm .num {
font-size: 110px;
line-height: 1;
opacity: 0.1;
color: #2855AF;
font-weight: bold;
position: absolute;
left: 0;
top: 0;
transform: translate(-50%, -40%); }
.step-smm .title {
font-size: 32px;
font-weight: bold;
position: relative;
margin-bottom: 20px; }
.item-tool-smm .img-wrap {
padding: 7px;
width: 100px;
height: 100px;
display: inline-block;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
text-align: center;
align-items: center;
justify-content: center;
border-radius: 100%;
margin-bottom: 15px; }
.item-tool-smm p {
font-weight: bold;
font-size: 18px; }
.line-tool-smm {
height: 5px;
width: 70px;
background: #2855AF;
display: inline-block;
position: relative;
top: -25px; }
.item-whyus-smm {
margin-bottom: 45px;
margin-top: 45px; }
.item-whyus-smm .icon {
text-align: center; }
.item-whyus-smm img {
max-width: 130px;
margin-left: -40px; }
.item-whyus-smm p {
padding-left: 30px;
margin-left: 16%;
font-weight: normal;
font-size: 18px; }
.block-cert-smm {
border-radius: 7px;
color: #fff;
position: relative;
z-index: 10;
background: #0782bd;
padding: 60px 30px;
min-height: 410px;
background-image: linear-gradient(to right, #0782bd, #2b26ef); }
.block-cert-wrap-smm {
position: relative;
margin-left: 30px;
margin-right: 30px; }
.block-cert-wrap-smm .stack1 {
display: block;
position: absolute;
height: 90%;
width: 110%;
top: 5%;
left: -5%;
background: linear-gradient(90deg, rgba(12, 154, 184, 0.2) 0%, rgba(69, 45, 248, 0.2) 100%);
border-radius: 5px; }
.block-cert-wrap-smm .stack2 {
display: block;
position: absolute;
height: 95%;
width: 105%;
top: 2.5%;
left: -2.5%;
background: linear-gradient(90deg, rgba(12, 154, 184, 0.6) 0%, rgba(69, 45, 248, 0.6) 100%);
border-radius: 5px; }
.smm_bottom_content .retangle_shape .retangle_shape_content {
padding-right: 4rem; }
.smm_bottom_content .retangle_shape .retangle_shape_content .section-heading {
margin-bottom: 20px; }
.smm_bottom_content .retangle_shape .retangle_shape_content .section-heading .bg-num {
color: #fff;
opacity: .1; }
.smm_bottom_content img {
display: block;
margin: 0 auto 4rem auto;
max-width: 100%; }
.section-works-foto {
overflow: hidden; }
.section-works-foto .slick-next {
right: 45%; }
.section-works-foto .slick-prev {
left: 45%; }
.section-works-foto .slick-prev, .section-works-foto .slick-next {
top: 90%; }
.accordion {
max-width: 90%; }
.accordion-heading {
cursor: pointer;
margin-bottom: 30px;
display: block; }
.accordion-heading img:first-child {
margin-right: 20px; }
.accordion-heading .icon {
float: right;
width: 20px; }
.accordion-heading .title {
font-weight: bold;
font-size: 24px; }
.accordion-content {
display: none;
padding-left: 55px;
padding-bottom: 10px; }
.accordion-heading.active + .accordion-content {
display: block; }
.accordion-heading .icon {
transform: rotate(0deg);
transition: 0.3s; }
.accordion-heading.active .icon {
transform: rotate(180deg); }
.item-serv-foto {
text-align: center;
margin-bottom: 30px;
min-height: 200px;
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(49, 22, 248, 0.3);
border-radius: 5px; }
.item-serv-foto img {
height: 54px;
width: auto; }
.item-serv-foto .num {
padding-top: 7px;
color: #fff;
font-size: 20px;
font-weight: bold;
background: #2855AF;
width: 100px;
height: 50px;
text-align: center;
display: inline-block;
border-radius: 0 0 100px 100px;
margin-bottom: 15px;
transition: all .2s; }
.item-serv-foto p {
margin-top: 15px;
font-weight: bold; }
.item-serv-foto:hover {
background: #2855AF;
transition: all .2s;
color: #fff; }
.item-serv-foto:hover .num {
background: #fff;
color: #2855AF; }
.item-serv-foto:hover img {
filter: brightness(0) invert(1); }
.step-foto {
position: relative;
margin-top: 40px; }
.step-foto .num {
font-size: 110px;
color: #DBE7FC;
font-weight: bold;
position: absolute;
z-index: -1;
z-index: -1;
top: -40px;
line-height: 1;
left: -40px; }
.item-work-foto {
position: relative; }
.item-work-foto .pulse-play {
position: absolute;
left: -60px;
top: 40%;
display: block; }
.item-work-foto .pulse-play:hover {
transform: scale(1.2);
transition: .3s; }
.col-img-step-fotomoto {
position: relative; }
.col-img-step-fotomoto .img-fluid {
display: block;
margin: 0 auto;
position: relative;
z-index: 1; }
.col-img-step-fotomoto .animate-rotate {
position: absolute;
top: 40px;
left: 50%;
margin-left: -150px;
width: 300px; }
.bg-shape-foto {
position: absolute;
top: -70px;
right: -200px;
z-index: -1;
width: 600px;
height: 600px;
border-radius: 100%;
display: block;
background: #2855AF; }
.img-why-foto {
float: right; }
.why-wrap-fotomoto {
margin-top: -20px; }
.item-why-fotomoto {
background: #FFFFFF;
box-shadow: 4px 4px 7px rgba(60, 101, 182, 0.2);
border-radius: 5px;
padding: 15px 10px;
display: flex;
height: 180px; }
.item-why-fotomoto .iconbox {
width: 100%; }
.item-why-fotomoto .iconbox img {
height: 70px; }
.section-order-bot .box-request {
margin-top: 200px; }
.card-bot-about {
position: relative;
background: #2855AF;
border-radius: 5px;
padding: 30px;
color: #fff;
margin-left: 30px;
margin-right: 30px;
height: 85%;
margin-top: 3%; }
.card-bot-about .section-heading {
margin-top: 0;
margin-bottom: 0; }
.card-bot-about .section-heading .bg-num {
transform: translateY(-20px); }
.card-bot-about .stack1 {
display: block;
position: absolute;
height: 10px;
width: 95%;
top: -10px;
left: 2.5%;
background: rgba(40, 85, 175, 0.5);
border-radius: 5px 5px 0px 0px; }
.card-bot-about .stack2 {
display: block;
position: absolute;
height: 10px;
width: 90%;
top: -20px;
left: 5%;
background: rgba(40, 85, 175, 0.2);
border-radius: 5px 5px 0px 0px; }
.card-bot-what-wrap {
position: relative; }
.card-bot-what-wrap .backside {
text-align: center;
font-size: 14px;
padding: 15px;
overflow: hidden;
display: block;
position: absolute;
height: 100%;
width: 90%;
top: -10px;
left: 5%;
background: #FFFFFF;
border: 1px solid #E5E3FF;
box-sizing: border-box;
box-shadow: 4px 4px 20px rgba(49, 22, 248, 0.1);
border-radius: 10px;
z-index: 1; }
.card-bot-what-wrap:hover .card-bot-what {
transition: all .3s;
transform: translate(100%);
opacity: 0;
visibility: hidden; }
.card-bot-what {
position: relative;
z-index: 5;
transition: all .3s;
transform: translate(0);
opacity: 1;
margin-bottom: 45px;
padding: 10px;
text-align: center;
background: #FFFFFF;
border: 1px solid #E5E3FF;
box-sizing: border-box;
box-shadow: 4px 4px 20px rgba(49, 22, 248, 0.1);
border-radius: 10px; }
.card-bot-what img {
margin-top: 15px;
margin-bottom: 15px; }
.card-bot-what p {
font-weight: bold; }
.list-steps-bot li {
font-weight: bold;
margin-bottom: 10px;
font-size: 20px;
list-style: none; }
.list-steps-bot li i {
background: #7CCCDB;
display: inline-block;
width: 27px;
height: 27px;
opacity: 0.9;
font-style: normal;
line-height: 27px;
text-align: center;
border-radius: 30px;
color: #fff;
margin-right: 20px; }
.img-step-bot {
position: relative; }
.img-step-bot img {
position: relative;
z-index: 2;
display: block;
margin: 0 auto;
max-width: 100%; }
.img-step-bot img.animate-table {
position: absolute;
top: 80px;
left: 22%;
max-width: 51%;
animation-duration: 16s;
animation-iteration-count: infinite;
animation-name: bounce-1;
animation-timing-function: linear;
z-index: 1; }
.img-step-bot img.animate-rotate {
z-index: 0;
position: absolute;
top: 50px;
left: 50%;
margin-left: -160px;
width: 320px; }
.slider-controls-bottype {
position: absolute;
top: 23px;
right: 60px; }
.slider-controls-bottype a {
margin: 5px; }
.icon-bot-why {
margin-bottom: 20px; }
.icon-bot-why .icon {
margin-bottom: 10px; }
.icon-bot-why .title {
color: #2855AF; }
.icon-bot-why p {
color: #444F60;
max-width: 310px; }
.img-bot-why {
position: relative; }
.img-bot-why .animate-rotate {
position: absolute;
top: 0;
left: 50%;
margin-left: -96px;
width: 192px; }
.img-bot-why .img-robot {
position: absolute;
top: 80px;
left: 50%;
margin-left: -48px;
width: 96px;
animation-duration: 16s;
animation-iteration-count: infinite;
animation-name: bounce-1;
animation-timing-function: linear; }
.img-bot-why .img-fluid {
display: block;
margin: 0 auto;
position: relative;
z-index: 1; }
.img-bot-why .gear_contetnt {
position: absolute;
left: 15%;
top: 50px;
width: 80px;
height: 70px; }
.img-bot-why .gear_contetnt img {
position: absolute;
animation-name: rotate;
animation-duration: 30s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
.img-bot-why .gear_contetnt img:nth-child(1) {
top: 21px;
left: 0; }
.img-bot-why .gear_contetnt img:nth-child(2) {
top: 0;
left: 27px; }
.img-bot-why .gear_contetnt img:nth-child(3) {
bottom: 0;
right: 0; }
.bot_keys_slider.box {
box-shadow: 10px 10px 40px rgba(40, 85, 175, 0.1), 0 20px 0 -10px #fff, 10px 10px 40px rgba(40, 85, 175, 0.1); }
.order-tarif-bot {
box-shadow: 4px 4px 35px rgba(40, 85, 175, 0.1), 0 20px 0 -10px #fff, 4px 4px 35px rgba(40, 85, 175, 0.1);
display: flex;
background: #fff;
align-items: stretch;
margin-top: 50px; }
.order-tarif-bot .icon {
padding: 20px;
display: flex;
align-items: center; }
.order-tarif-bot .text {
padding: 45px;
padding-right: 0;
display: flex;
align-items: center; }
.order-tarif-bot h4 {
font-weight: bold;
font-size: 30px;
margin-bottom: 0; }
.order-tarif-bot .action {
padding: 30px;
display: flex;
align-items: center;
margin-left: auto; }
.items-type-bot-wrap {
margin-top: -20px; }
.item-type-bot {
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(49, 22, 248, 0.3);
border-radius: 5px;
padding: 15px 10px;
display: flex;
height: 100%; }
.item-type-bot .iconbox {
width: 100%; }
.item-type-bot .iconbox img {
height: 46px; }
.item-type-mobile {
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(49, 22, 248, 0.3);
border-radius: 5px;
padding: 15px 10px;
display: flex;
height: 140px; }
.item-type-mobile .iconbox {
width: 100%; }
.item-type-mobile .iconbox p {
word-break: break-word; }
.item-type-mobile .iconbox img {
height: 46px; }
.heading-types-mobile {
margin-top: -50px;
max-width: 60%; }
.heading-step-mobile {
margin-left: -90px; }
.mobile-portfolio .slick-prev {
left: 0; }
.mobile-portfolio .slick-next {
right: 0; }
.mobile-portfolio .item-portfolio article {
margin: 30px; }
.mobile-portfolio .item-portfolio img {
max-width: 750px;
max-height: 575px; }
.slider-controls-types-mobile a {
margin: 5px; }
.item-step-mobile {
margin-bottom: 50px; }
.item-step-mobile .icon-num {
color: #fff;
width: 40px;
height: 40px;
font-size: 18px;
font-weight: bold;
border-radius: 40px;
display: block;
background: #2855AF;
text-align: center;
line-height: 40px;
margin-bottom: 15px; }
.item-step-mobile .title {
font-size: 20px;
font-weight: bold;
margin-bottom: 15px; }
.section-steps-mobile {
background-repeat-y: no-repeat; }
.item-mobile-method {
margin-bottom: 70px;
position: relative; }
.item-mobile-method .num {
width: 80px;
height: 80px;
display: block;
border: 6px solid #2855AF;
text-align: center;
line-height: 70px;
margin-bottom: 10px;
color: #E1E0E9;
font-size: 36px;
font-weight: 800;
border-radius: 50%; }
.item-mobile-method .line {
width: 100px;
height: 2px;
background-color: #ddd;
display: inline-block;
position: absolute;
top: 35px;
left: 52%; }
.mobile-method-wrap {
transform: translateX(-50px); }
.mobile-method-wrap .backside {
background: #3FA6D7;
border-radius: 120px 5px 5px 5px;
display: block;
height: 100%;
width: 100%;
position: absolute;
z-index: 1;
left: -80px;
top: -80px;
padding-left: 30px;
padding-top: 30px; }
.block-method-about-mobile {
position: relative;
z-index: 3;
background: #2855AF;
border-radius: 5px 5px 120px 5px;
color: #fff;
padding: 60px; }
.block-method-about-mobile .title {
margin-bottom: 20px;
margin-top: 20px; }
.icon-mobile-why {
margin-top: 30px; }
.icon-mobile-why .title {
font-weight: bold; }
.icon-mobile-why .icon {
margin-bottom: 20px; }
.item-why-mobile {
text-align: center;
margin-bottom: 50px; }
.item-why-mobile .icon-shape {
border-radius: 100%;
margin-bottom: 20px;
line-height: 80px;
width: 80px;
height: 80px;
display: inline-block;
background: #2855AF;
box-shadow: 2px 4px 8px rgba(47, 87, 223, 0.4); }
.item-why-mobile .title {
font-weight: bold; }
.slider-controls-areas-mobile {
position: absolute;
top: 23px;
left: 60px; }
.slider-controls-areas-mobile a {
margin: 5px; }
.new_carusel_style {
padding-top: 130px; }
.new_carusel_style .text {
position: absolute;
right: 10%;
top: 0;
color: #F8F7FC;
font-size: 150px;
line-height: .5;
font-weight: 800; }
.new_carusel_style .shape-bg-aud {
top: 70px;
z-index: 0;
background: #00091F; }
.new_carusel_style .bg-icons {
position: absolute;
right: 0;
top: 70px;
height: 70px;
width: 71%; }
.new_carusel_style .bg-icons img {
position: absolute; }
.new_carusel_style .bg-icons img:nth-child(1) {
top: 10px;
left: 0;
animation: floating 20s linear infinite; }
.new_carusel_style .bg-icons img:nth-child(2) {
bottom: 0;
left: 25%;
animation: anime-top-bottom 20s linear infinite; }
.new_carusel_style .bg-icons img:nth-child(3) {
top: -10px;
left: 45%;
animation: rotate-float 20s linear infinite reverse; }
.new_carusel_style .bg-icons img:nth-child(4) {
bottom: 0;
left: 67%;
animation: anime-left-right 20s linear infinite; }
.new_carusel_style .bg-icons img:nth-child(5) {
top: 5px;
right: 10px;
animation: floating 20s linear infinite; }
.new_carusel_style .heading-types-mobile {
margin-top: -15px; }
.new_carusel_style .heading-types-mobile h2 {
color: #072A50; }
.new_carusel_style .item-type-mobile {
position: relative;
overflow: hidden;
transition: all .3s;
height: 150px;
box-shadow: 4px 4px 16px -3px rgba(49, 22, 248, 0.3); }
.new_carusel_style .item-type-mobile:after {
content: "";
width: 100%;
height: 0;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
background: #2834DF;
transition: height .3s; }
.new_carusel_style .item-type-mobile:hover:after {
height: 120%; }
.new_carusel_style .item-type-mobile:hover .iconbox span img.default {
opacity: 0; }
.new_carusel_style .item-type-mobile:hover .iconbox span img.hover {
opacity: 1; }
.new_carusel_style .item-type-mobile:hover .iconbox p {
color: #ffffff; }
.new_carusel_style .item-type-mobile a {
position: relative;
top: auto;
left: auto;
display: block;
width: 100%;
height: 100%; }
.new_carusel_style .item-type-mobile a:focus, .new_carusel_style .item-type-mobile a:active, .new_carusel_style .item-type-mobile a:hover {
outline: none;
text-decoration: none; }
.new_carusel_style .item-type-mobile .iconbox {
position: relative;
z-index: 2; }
.new_carusel_style .item-type-mobile .iconbox span {
position: relative;
width: 40px;
height: 40px;
display: block;
margin: 0 auto 15px auto; }
.new_carusel_style .item-type-mobile .iconbox span img {
position: absolute;
left: 0;
top: 0;
max-width: 100%;
max-height: 100%;
margin-bottom: 0;
transition: all .3s; }
.new_carusel_style .item-type-mobile .iconbox span img.default {
opacity: 1; }
.new_carusel_style .item-type-mobile .iconbox span img.hover {
opacity: 0; }
.new_carusel_style .item-type-mobile .iconbox p {
color: #1A2236;
transition: all .3s; }
.contentn_video_w100 {
overflow: hidden;
position: relative;
display: block;
width: 100%;
height: 100%;
background: #2855AF;
border: 10px solid #2855AF;
border-radius: 0 55px;
line-height: 0; }
.contentn_video_w100:after {
content: "";
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: white;
border-radius: 0 50px;
opacity: .4;
visibility: visible;
transition: all .3s; }
.contentn_video_w100 img {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 0 55px;
visibility: visible;
opacity: 1; }
.contentn_video_w100 svg {
cursor: pointer;
max-width: 50px;
max-height: 50px;
position: absolute;
right: 15px;
bottom: 15px;
transform: translateX(75px);
opacity: 0;
visibility: hidden;
transition: all .3s; }
.contentn_video_w100.active:after {
visibility: hidden;
opacity: 0; }
.contentn_video_w100.active > a {
opacity: 0 !important;
visibility: hidden !important; }
.contentn_video_w100.active img {
visibility: hidden;
opacity: 0; }
.contentn_video_w100.active svg {
z-index: 2;
transform: translateX(0);
visibility: visible;
opacity: 1; }
.contentn_video_w100 > a.pulse-play {
transition: all .3s;
visibility: visible;
opacity: 1;
z-index: 2;
top: 50%;
left: 50%;
height: 130px;
width: 130px;
margin-top: -65px;
margin-left: -65px; }
.contentn_video_w100 > a.circle-ripple {
background: url(../images/my-warehouse/play.svg) no-repeat 24px center;
background-size: 2.2rem;
background-color: #2855AF;
width: 5rem;
height: 5rem;
border-radius: 50%;
animation: ripple 0.7s linear infinite;
display: block;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
cursor: pointer;
z-index: 1;
visibility: visible;
opacity: 1;
transition: all .3s; }
.contentn_video_w100 > a.circle-ripple:focus, .contentn_video_w100 > a.circle-ripple:hover {
outline: none;
text-decoration: none; }
.contentn_video_w100 video {
width: 100%;
height: 100%;
border-radius: 0 50px; }
.card-brand-what {
position: relative;
text-align: center;
margin-bottom: 30px;
background: #FFFFFF;
border: 1px solid #E5E3FF;
box-sizing: border-box;
box-shadow: 4px 4px 30px rgba(40, 85, 175, 0.1);
border-radius: 10px;
padding: 20px; }
.card-brand-what:before {
position: absolute;
content: "";
width: 90%;
height: 10px;
border: 1px solid #E5E3FF;
border-bottom: 0;
top: -11px;
left: 5%;
border-radius: 10px 10px 0 0;
box-shadow: 4px 4px 30px rgba(40, 85, 175, 0.1);
background-color: rgba(255, 255, 255, 0.4); }
.card-brand-what .icon-wrap {
margin-bottom: 15px; }
.card-brand-what p {
margin-bottom: 0;
font-size: 12px; }
.box-request.brand {
border-color: #1aa8af; }
.slide-control-portfolio-brand {
width: 80px;
position: absolute;
right: 25%;
top: 100%; }
.slide-control-portfolio-brand + .slick-slider .item-portfolio .row {
align-items: inherit; }
.slide-control-portfolio-brand + .slick-slider .item-portfolio .row .content_img {
position: relative;
display: table; }
.slide-control-portfolio-brand + .slick-slider .item-portfolio .row .content_img img {
position: relative;
z-index: 2; }
.slide-control-portfolio-brand + .slick-slider .item-portfolio .row .content_img:after {
content: "";
position: absolute;
width: 70%;
height: calc( 100% - 15px );
right: -23px;
top: 28px;
background: #7CCCDB;
box-shadow: 4px 4px 25px rgba(124, 204, 219, 0.2);
border-radius: 20px; }
.img-stepline-brand {
margin-top: -120px;
max-width: 100%; }
.step-wrapper {
top: -100px; }
.step-wrapper .icon-finish {
position: absolute;
right: 3%;
bottom: 3%;
opacity: 0;
visibility: hidden; }
.linestep {
visibility: hidden;
opacity: 0;
text-align: center;
max-width: 250px;
position: absolute; }
.linestep .num {
color: #fff;
border-radius: 100px;
display: inline-block;
width: 40px;
height: 40px;
text-align: center;
line-height: 40px;
font-weight: bold;
background: #2855AF; }
.linestep p {
width: 250px;
position: absolute;
margin-top: 7px;
font-weight: 500;
line-height: normal;
font-size: 18px; }
.linestep p.top {
bottom: 50px;
left: -110px; }
.linestep p.bottom {
left: -110px; }
.linestep p.left {
width: 200px;
right: 34px;
top: -17px; }
.linestep p.right {
width: 200px;
left: 34px;
top: -17px; }
.path {
visibility: hidden; }
.move-line .path {
visibility: visible;
stroke-dasharray: 3700;
stroke-dashoffset: 3700;
animation: moveline 2.5s linear forwards; }
@keyframes moveline {
to {
stroke-dashoffset: 0; } }
.move-line .linestep,
.move-line .icon-finish {
visibility: hidden;
opacity: 0;
animation-name: showstepline;
animation-duration: .2s;
animation-fill-mode: forwards; }
.move-line .linestep1 {
animation-delay: .3s; }
.move-line .linestep2 {
animation-delay: .5s; }
.move-line .linestep3 {
animation-delay: .7s; }
.move-line .linestep4 {
animation-delay: .9s; }
.move-line .linestep5 {
animation-delay: 1.1s; }
.move-line .linestep6 {
animation-delay: 1.5s; }
.move-line .linestep7 {
animation-delay: 1.7s; }
.move-line .linestep8 {
animation-delay: 1.9s; }
.move-line .icon-finish {
animation-delay: 2.1s; }
@keyframes showstepline {
from {
transform: scale(0.2);
opacity: 0; }
to {
visibility: visible;
transform: scale(1);
opacity: 1; } }
.item-dev-brand {
text-align: center;
position: relative;
margin-bottom: 30px;
margin-right: 20px;
background: #FFFFFF;
border: 1px solid #E5E3FF;
box-shadow: 4px 4px 7px rgba(40, 85, 175, 0.1);
border-radius: 10px; }
.item-dev-brand .card-body {
padding: 15px 10px; }
.item-dev-brand .title {
font-size: 16px;
font-weight: bold;
margin-top: 15px; }
.item-dev-brand .circle {
line-height: 90px;
width: 90px;
height: 90px;
display: inline-block;
background: #ECEBFF; }
.item-dev-brand p {
font-size: 14px; }
.item-dev-brand .btn {
border-radius: 30px;
line-height: 50px;
min-width: auto;
width: 50px;
height: 50px;
padding: 0;
transition: all .2s;
background: #ECEBFF;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
margin-bottom: -50px;
position: relative;
z-index: 10; }
.item-dev-brand .btn span {
display: none; }
.item-dev-brand .btn:hover {
width: auto;
padding: 0 20px;
transition: all .2s;
background: #2855AF;
color: #fff; }
.item-dev-brand .btn:hover span {
display: block; }
.item-dev-brand .btn:hover i {
display: none; }
.item-dev-brand .layer {
position: absolute;
top: 100%;
width: 90%;
left: 5%;
height: 10px;
border-radius: 0 0 10px 10px;
background: rgba(255, 255, 255, 0.4);
border: 1px solid #E5E3FF;
box-shadow: 4px 4px 30px rgba(40, 85, 175, 0.1);
display: block;
z-index: 1; }
.heading-why-brand {
padding-top: 70%;
max-width: 300px;
position: relative;
z-index: 20; }
.icon-brand-why {
margin-bottom: 50px;
position: relative;
width: 250px; }
.icon-brand-why .num {
font-size: 80px;
color: #7CCCDB;
opacity: 0.1;
position: absolute;
top: 20px;
left: -60px;
z-index: 1;
font-weight: bold; }
.icon-brand-why .icon {
margin-bottom: 10px; }
.icon-brand-why .title {
font-size: 16px;
font-weight: 500;
position: relative;
z-index: 3; }
.icon-brand-why p {
position: relative;
z-index: 3; }
.bg-circle-brand {
position: absolute;
right: -100px;
top: -70px;
background-image: url("../images/brand/circle.png");
background-repeat: no-repeat;
width: 900px;
height: 900px; }
.control-slide-dev {
margin-top: 45%;
font-size: 36px; }
.section-intro.kunuz .title-intro {
font-size: 45px; }
.tooltip-text {
display: none; }
.mytip {
display: block;
text-align: center;
padding: 20px;
max-width: 400px;
z-index: 10;
position: absolute;
background: #FFFFFF;
border: 1px solid #E5E3FF;
box-shadow: 4px 4px 20px rgba(49, 22, 248, 0.2);
border-radius: 10px; }
.heading-serv-kunuz {
position: relative;
margin-top: -20px; }
.heading-serv-kunuz .title-section {
font-size: 24px;
color: #444F60;
font-weight: 300 !important; }
.heading-serv-kunuz .bg-num {
position: absolute;
top: 0;
margin-top: -10%;
left: 40%; }
.mobile-kunuz-wrap {
text-align: center; }
.mobile-kunuz-wrap .mobile {
margin-bottom: 15px;
margin-top: 15px; }
.mobile-kunuz-wrap .info {
border: 2px dashed #ccc;
padding: 10px;
max-width: 75%;
display: block;
margin-left: auto;
margin-right: auto; }
.mobile-kunuz-wrap .info big {
font-size: 26px;
color: #2855AF;
font-weight: 800; }
.item-social-wrap {
text-align: center; }
.item-social-wrap img {
margin-bottom: 15px; }
.item-social-wrap big {
font-size: 24px;
font-weight: bold;
color: #2855AF; }
.item-social-wrap p {
margin-bottom: 0; }
.item-social-wrap a {
font-size: 13px;
color: #2855AF;
padding-right: 32px;
background: url(../images/kunuz/arrow-right_blue.svg) no-repeat right center;
background-size: 26px; }
.item-social-wrap:nth-child(1),
.item-social-wrap:nth-child(5) {
margin-top: -150px; }
.item-social-wrap:nth-child(2),
.item-social-wrap:nth-child(4) {
margin-top: -60px; }
.item-social-wrap:nth-child(3) {
margin-top: -35px; }
.line-social-kunuz {
max-width: 85%;
margin-right: auto;
margin-left: auto; }
.line-social-kunuz img {
max-width: 100%; }
.block-info-social {
position: relative;
margin-right: auto;
margin-left: auto;
background: #FFFFFF;
width: 180px;
height: 120px;
border-radius: 10px;
box-shadow: 2px 2px 6px rgba(46, 64, 108, 0.3);
padding: 15px; }
.block-info-social:after {
bottom: 100%;
left: 50%;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: rgba(136, 183, 213, 0);
border-bottom-color: #fff;
border-width: 10px;
margin-left: -10px; }
.items-serv-wrap-kunuz {
margin-top: 70px; }
.shape-bg-aud {
display: block;
position: absolute;
width: 70%;
height: 175px;
right: 0px;
top: 0px;
background: #2855AF;
opacity: 0.9;
z-index: -1;
border-radius: 5px 0 0 5px; }
.heading-aud-kunuz {
margin-top: -70px;
max-width: 60%; }
.item-aud-kunuz {
margin-top: -20px; }
.item-aud-kunuz .card {
height: 100%;
border: 0;
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(49, 22, 248, 0.3);
border-radius: 5px; }
.item-aud-kunuz .num {
font-weight: bold;
line-height: normal;
font-size: 32px;
color: #fff; }
.item-aud-kunuz .iconbox img {
height: 46px; }
.heading-mobile-kunuz {
margin-top: 150px; }
.pricing-top-wrap-kunuz {
text-align: center;
margin-bottom: 50px; }
.pricing-top-wrap-kunuz .btn-group {
background: #FFFFFF;
box-shadow: 0px 2px 30px rgba(49, 22, 248, 0.3);
border-radius: 30px; }
.pricing-top-wrap-kunuz .btn-group b {
padding-top: 10px;
display: block; }
.pricing-top-wrap-kunuz .btn-group .btn {
border: 0;
min-width: 200px; }
.pricing-top-wrap-kunuz .btn-group .btn:first-child {
border-radius: 20px 0 0 20px; }
.pricing-top-wrap-kunuz .btn-group .btn:last-child {
border-radius: 0 20px 20px 0; }
.item-serv-kunuz {
margin-bottom: 30px; }
.item-serv-kunuz .icon-num {
width: 40px;
height: 40px;
font-size: 18px;
font-weight: bold;
border-radius: 40px;
display: block;
background: #2855AF;
text-align: center;
line-height: 40px;
margin-bottom: 15px; }
.item-serv-kunuz .title {
font-size: 18px;
font-weight: 600;
margin-bottom: 15px; }
.item-serv-kunuz p {
font-size: 16px; }
.list-award-kunuz {
list-style: none; }
.list-award-kunuz li {
margin-bottom: 20px; }
.list-award-kunuz .icon {
float: left;
margin-right: 20px; }
.list-award-kunuz p {
font-size: 20px;
font-weight: bold;
color: #2855AF; }
.clients-wrap-kunuz {
text-align: center; }
.clients-wrap-kunuz a {
opacity: 0.3;
transition: all 0.4s; }
.clients-wrap-kunuz a:hover {
opacity: 1; }
.clients-wrap-kunuz img {
margin: 30px;
max-height: 50px; }
.section-pricing-kunuz .item-pricing-kunuz {
width: 100%; }
.card-kunuz-stat {
position: relative;
padding: 20px;
text-align: center;
margin-bottom: 30px;
background: #FFFFFF;
border: 1px solid #E5E3FF;
box-sizing: border-box;
box-shadow: 4px 4px 20px rgba(49, 22, 248, 0.1);
border-radius: 10px; }
.card-kunuz-stat p {
margin: 0; }
.card-kunuz-stat .title {
font-size: 26px;
color: #2855AF; }
.card-kunuz-stat img {
width: 60px;
height: 60px;
margin-bottom: 20px; }
.card-kunuz-stat.last {
margin-top: 80px; }
.card-kunuz-stat:before {
position: absolute;
content: "";
width: 90%;
height: 12px;
border: 1px solid #E5E3FF;
border-bottom: 0;
top: -12px;
left: 5%;
border-radius: 10px 10px 0 0;
background-color: rgba(221, 221, 221, 0.1); }
.section-pricing-kunuz .btn:after {
display: none; }
.section-pricing-kunuz .item-pricing-kunuz {
border-radius: 10px;
overflow: hidden;
border: 0;
box-shadow: 5px 0px 40px 5px rgba(66, 52, 244, 0.2), 0 20px 0 -10px #fff, 0 25px 40px -10px rgba(66, 52, 244, 0.2); }
.section-pricing-kunuz .item-pricing-kunuz .card-header {
transition: all .3s;
padding: 1.5rem .5rem; }
.section-pricing-kunuz .item-pricing-kunuz .card-body {
transition: all .3s; }
.section-pricing-kunuz .item-pricing-kunuz .card-body .btn {
border-radius: 0; }
.section-pricing-kunuz .item-pricing-kunuz ul {
line-height: 1.8;
padding-left: 20px; }
.section-pricing-kunuz .item-pricing-kunuz ul {
min-height: 280px; }
.section-pricing-kunuz .item-pricing-kunuz:hover .card-body {
background: #2855AF;
color: #fff; }
.section-pricing-kunuz .item-pricing-kunuz:hover .btn {
background: #fff;
color: #2855AF; }
.section-pricing-kunuz .item-pricing-kunuz:hover .btn:hover {
color: #fff; }
.section-pricing-kunuz .item-pricing-kunuz:hover .card-header {
background: #fff !important;
color: #2855AF; }
.section-pricing-kunuz .item-pricing-kunuz .card-header.bg-dark {
background: none; }
.item-feature-site img {
height: 46px; }
.item-feature-site p {
margin-top: 20px;
font-family: Montserrat;
font-style: normal;
font-weight: bold;
line-height: normal;
font-size: 16px; }
.img-intro-site {
max-width: 580px;
margin-top: 100px; }
.step-site {
margin-bottom: 60px;
margin-left: 45px;
position: relative;
padding-top: 2.5rem; }
.step-site .num {
position: absolute;
left: -3rem;
top: 0;
font-weight: bold;
font-size: 7.33rem;
line-height: 5.5rem;
color: #2855AF;
opacity: 0.1; }
.step-site .title {
font-size: 32px;
font-weight: bold;
position: relative;
margin-bottom: 20px; }
.step-site .title:after {
position: absolute;
display: block;
height: 5px;
width: 100px;
bottom: 0;
left: 0;
background: #0c9ab8;
background: -moz-linear-gradient(left, #0c9ab8 0%, #452df8 100%);
background: -webkit-linear-gradient(left, #0c9ab8 0%, #452df8 100%);
background: linear-gradient(to right, #0c9ab8 0%, #452df8 100%); }
.item-serv-site {
text-align: center;
margin-bottom: 30px;
padding-bottom: 20px;
min-height: 280px;
background: #FFFFFF;
padding: 0 15px;
padding-bottom: 10px;
box-shadow: 4px 4px 30px rgba(59, 100, 183, 0.2);
border-radius: 10px; }
.item-serv-site img {
margin-top: 15px;
margin-bottom: 15px; }
.item-serv-site .num {
padding-top: 7px;
color: #fff;
font-size: 20px;
font-weight: bold;
background: #2855AF;
width: 100px;
height: 50px;
text-align: center;
display: inline-block;
border-radius: 0 0 100px 100px;
margin-bottom: 15px; }
.item-serv-site p {
margin-top: 15px;
font-weight: bold; }
.item-serv-site:hover {
background: #2855AF;
transition: all .2s;
color: #fff; }
.item-serv-site:hover .num {
background: #fff;
color: #2855AF; }
.item-serv-site:hover img {
filter: brightness(0) invert(1); }
.img-step-site {
max-width: 100%;
margin-bottom: 60px; }
.item-tool-site .img-wrap {
padding: 7px;
width: 100px;
height: 100px;
display: inline-block;
box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
text-align: center;
align-items: center;
justify-content: center;
border-radius: 100%;
margin-bottom: 15px; }
.item-tool-site p {
font-weight: bold;
font-size: 18px; }
.line-tool-site {
height: 5px;
width: 70px;
background: #2855AF;
display: inline-block;
position: relative;
top: -25px; }
.btn-tabs-tools-site {
margin-bottom: 45px; }
.block-why-site-wrap {
transform: translateX(-50px); }
.block-why-site-wrap .backside {
background: linear-gradient(90deg, rgba(12, 154, 184, 0.3) 0%, rgba(69, 45, 248, 0.3) 100%);
border-radius: 5px;
display: block;
height: 94%;
width: 100%;
position: absolute;
z-index: 1;
left: 10px;
top: 3%; }
.block-why-site {
position: relative;
z-index: 3;
min-height: 450px;
background: linear-gradient(90deg, #0c9ab8 0%, #452df8 100%);
border-radius: 5px;
color: #fff;
padding: 60px; }
.block-why-site .title {
margin-bottom: 20px;
margin-top: 20px; }
.block-why-site p {
font-size: 18px;
text-align: center; }
.items-why-site-wrap {
margin-top: 50px; }
.item-site-why {
margin-top: 30px;
margin-bottom: 30px; }
.item-site-why .icon-wrap {
margin-bottom: 20px; }
.item-site-why p {
padding-left: 50px;
font-size: 18px; }
.item-pricing-main-wrap {
margin-top: 70px;
width: 95%;
position: relative; }
.item-pricing-main-wrap .backside {
position: absolute;
display: block;
height: 10px;
width: 90%;
top: -10px;
border-radius: 15px 15px 0 0;
left: 5%;
background: #2855AF;
box-shadow: 4px 4px 22px rgba(62, 102, 183, 0.12); }
.item-pricing-main-wrap .icon-shape {
display: block;
border-radius: 100%;
background-color: white;
width: 100px;
height: 100px;
position: absolute;
top: -50px;
z-index: 100;
left: calc(50% - 50px);
line-height: 100px;
text-align: center;
border: 1px solid #ddd;
box-shadow: 0 0 20px #e0e0e0; }
.item-pricing-main {
border-radius: 4px;
overflow: hidden;
box-shadow: 0 7px 30px #b5cff5;
width: 100%;
padding-top: 50px;
border: 0;
box-shadow: 4px 4px 22px rgba(62, 102, 183, 0.12);
border-radius: 15px; }
.item-pricing-main .title,
.item-pricing-main .price {
text-align: center; }
.item-pricing-main .title {
font-weight: bold; }
.item-pricing-main .price {
font-size: 26px;
font-weight: 300; }
.item-pricing-main ul {
padding-left: 20px; }
.item-pricing-main ul {
min-height: 200px; }
/* SECTIOn REVIEW ABOUT */
.item-review-about {
padding-left: 60px;
position: relative; }
.item-review-about .icon-play {
position: absolute;
left: 0px;
top: 32%; }
.item-review-about .img-work {
border-radius: 50%; }
.bg-shape-portfolio-about {
position: absolute;
top: -50px;
right: -200px;
z-index: -1;
width: 600px;
height: 600px;
border-radius: 100%;
display: block;
background: #FF5722;
box-shadow: 4px 4px 15px rgba(35, 26, 100, 0.4); }
.info-review-about {
color: #fff; }
.info-review-about .name {
font-size: 34px;
font-weight: bold; }
.info-review-about .job {
font-size: 22px; }
.section-review-about .controllers {
z-index: 10;
position: absolute;
bottom: 0; }
.section-review-about .controllers img {
margin: 5px; }
.slide-team .item-slide {
padding: 7px; }
.slide-team .item-slide:focus {
outline: 0; }
.slide-team .item-slide .name {
font-size: 16px;
font-weight: bold;
color: #2855AF;
margin-bottom: 0; }
.slide-team .img-wrap {
text-align: left;
margin-bottom: 10px; }
.slide-team .item-slide:nth-child(odd) {
margin-top: 40px; }
.slide-team .item-team-add {
height: 280px;
padding: 30px;
text-align: center;
padding-top: 45%;
border-radius: 0;
font-size: 20px;
color: #2855AF; }
.partners-wrap-about {
text-align: center; }
.partners-wrap-about .item-partner-about {
margin-bottom: 40px;
opacity: .6;
display: inline-block;
max-height: 60px; }
.partners-wrap-about .item-partner-about:hover {
opacity: 1;
transition: 0.3s; }
.link-team.page-scroll {
position: absolute;
right: 0;
top: 10px;
z-index: 20;
padding-bottom: 10px;
padding-right: 15px; }
.link-team.page-scroll:before {
position: absolute;
content: "";
bottom: 5px;
right: 0;
height: 2px;
width: 40%;
transition: all 0.3s;
background: #2834DF; }
.link-team.page-scroll:after {
position: absolute;
content: "";
bottom: 1px;
right: 0;
height: 10px;
width: 10px;
border-top: 2px solid;
border-right: 2px solid #2834DF;
transform: rotate(45deg);
transition: all 0.3s; }
/* ==== CONTACT ==== */
.map-viewport {
position: relative;
width: 100%;
height: 500px; }
.map-viewport .map {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0; }
.map-viewport .btn {
cursor: pointer;
border: 0;
border-radius: 2px;
background-color: white;
box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, 0.1);
transition: all 300ms ease-in-out; }
.map-viewport .btn.zoom {
position: absolute;
left: 20px;
color: #1647ff;
font-size: 20px;
padding: 5px 8px; }
.map-viewport .btn.zoom.in {
top: 50%;
margin-top: -37px; }
.map-viewport .btn.zoom.out {
bottom: 50%;
margin-bottom: -37px; }
.map-viewport .btn.zoom.center {
top: 50%;
margin-top: -87px; }
.map-viewport .btn.zoom:hover,
.map-viewport .btn.zoom:active {
color: white;
background-color: #1647ff; }
.map-viewport .btn.zoom:active {
opacity: 0.75; }
.map img[src*='marker'] {
animation-name: pulse_marker;
animation-duration: 1s;
animation-fill-mode: both;
animation-iteration-count: infinite; }
@keyframes pulse_marker {
0% {
transform: scale(1); }
50% {
transform: scale(0.7); }
100% {
transform: scale(1); } }
.section-page-contact {
min-height: 600px; }
.block-contact {
padding: 45px; }
.block-contact .title {
font-weight: bold;
color: #2855AF;
font-size: 38px;
margin-bottom: 20px; }
.block-contact {
background: #FFFFFF;
border: 10px solid #2855AF;
box-shadow: 2px -2px 10px rgba(3, 28, 45, 0.2);
border-radius: 6px; }
.block-contact .form-group {
max-width: 300px;
margin-bottom: 20px;
margin-left: auto;
margin-right: auto; }
.block-contact .form-group label {
margin-bottom: 0; }
.block-contact .success-content {
transition: transform 0.3s, opacity 0.3s;
transform: scale(0.1);
visibility: hidden;
opacity: 0;
height: 1px;
text-align: center; }
.block-contact.active .success-content {
height: auto;
opacity: 1;
visibility: visible;
transform: scale(1);
margin: 50px 0; }
.block-contact.active > h4, .block-contact.active > form, .block-contact.active > div.form-group, .block-contact.active > div.text-center {
display: none; }
.contact-info {
padding: 45px;
padding-left: 60px; }
.contact-info .title {
color: #2855AF;
font-weight: bold;
margin-top: 20px; }
.contact-info p {
margin-bottom: 20px; }
#map_wrapper {
position: relative; }
#map_wrapper .container {
position: relative;
z-index: 5; }
#map_wrapper .container .contact-info {
position: absolute;
top: 55px;
right: 0;
z-index: 5;
background: #fff;
box-shadow: 10px 10px 70px rgba(40, 85, 175, 0.1);
border-radius: 20px; }
.slide-clients-home {
overflow: hidden; }
.intro-home {
height: 100vh; }
.intro-home .bg-icons-page img:nth-child(6) {
top: -5%;
left: 66%;
height: 10px; }
.intro-home .bg-icons-page img:nth-child(7) {
top: 90%;
left: 15%;
height: 7px; }
.intro-home .bg-icons-page img:nth-child(4) {
top: 74%;
left: 118%; }
.intro-home .bg-icons-page img:nth-child(1) {
top: 63%;
left: -22%;
-webkit-animation: rotate-float 30s linear infinite reverse;
animation: rotate-float 30s linear infinite reverse; }
.intro-home .bg-icons-page img:nth-child(2) {
top: 9%;
left: 86%; }
.intro-home .bg-icons-page img:nth-child(3) {
top: 56%;
left: 108%; }
.intro-home .bg-icons-page img:nth-child(5) {
top: 93%;
left: 88%; }
.intro-home .bg-icons-page img:nth-child(8) {
position: absolute;
top: -18px;
left: -25px;
height: 150px;
animation: move-shake 2s linear infinite; }
.intro-home .bg-icons-page img:nth-child(9) {
position: absolute;
top: -71px;
left: -131px;
height: 210px; }
.intro-home .bg-icons-page img:nth-child(10) {
position: absolute;
top: -71px;
left: -131px;
height: 210px; }
.intro-center-home {
position: relative; }
.intro-center-home .title-sm {
font-size: 50px;
font-family: 'Montserrat', sans-serif;
font-weight: 900;
position: relative;
z-index: 2;
line-height: 1; }
.intro-center-home .title-intro {
font-size: 100px;
font-family: 'Intro';
font-weight: 900;
position: relative;
z-index: 2;
line-height: 1;
letter-spacing: normal; }
.title-section-home {
font-size: 50px; }
.bg-home-portfolio {
background: #071D31;
height: 500px;
width: 100%;
top: 300px;
display: block;
position: absolute;
z-index: 0; }
.link-about-home i {
vertical-align: middle;
margin-left: 10px; }
.homepage-stat {
display: inline-flex;
vertical-align: middle;
align-items: center; }
.homepage-stat .num {
font-size: 50px;
color: #2855AF;
font-weight: bold;
padding: 10px; }
.homepage-stat .text {
font-size: 12px; }
.item-serv-home {
position: relative; }
.item-serv-home .hover {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
bottom: 0;
background: rgba(255, 255, 255, 0.8);
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); }
.item-serv-home:hover .hover {
z-index: 10;
display: block; }
.item-serv-home .btn {
min-width: auto;
margin-top: 30%; }
.main-item-work {
opacity: 1;
transition: opacity 0.5s, max-width 0.5s, padding 0.5s, height 1.5s; }
.main-item-work.width-zero {
height: 0;
opacity: 0;
max-width: 0;
padding: 0; }
.item-work-home {
border: 1px solid #E5E3FF;
border-radius: 10px;
height: 400px; }
.item-work-home .img-wrap {
border-radius: 10px;
overflow: hidden;
height: 100%; }
.item-work-home:before {
position: absolute;
content: "";
width: 90%;
height: 10px;
border: 1px solid #E5E3FF;
border-bottom: 0;
top: -11px;
left: 5%;
border-radius: 8px 8px 0 0;
background-color: #fefefe; }
.item-work-home img {
width: 100%;
height: 100%;
object-fit: cover; }
.item-work-home.item-sm {
height: calc( 50% - 15px);
margin-bottom: 30px; }
.item-work-home.item-sm:last-child {
margin-bottom: 0; }
.serv-home-wrap {
width: 100%;
margin-top: 30px;
margin-bottom: 30px; }
.item-serv-home {
width: 25%;
float: left;
padding: 20px 15px;
background-color: #2855AF;
color: #fff;
height: 150px;
outline: 1px solid rgba(255, 255, 255, 0.4);
text-align: center; }
.item-serv-home .icon {
width: 40px;
height: 40px; }
.item-serv-home p {
font-size: 12px;
margin-top: 15px; }
.title-clients-home {
margin-top: 120px; }
.section-review-home .section-heading {
position: absolute;
top: 100px; }
.section-review-home .controllers-home-review {
position: absolute;
bottom: 100px;
z-index: 20; }
.section-review-home .item-video-slide {
margin-top: 30px;
margin-bottom: 45px; }
.info-review-home {
color: #fff;
margin-top: 200px; }
.info-review-home .name {
font-size: 34px;
font-weight: bold; }
.info-review-home .job {
font-size: 22px; }
.item-review-home {
position: relative; }
.item-review-home .pulse-play {
left: 0;
top: 42%; }
.item-review-home .img-video {
max-width: 500px; }
.blog-wrap-home {
margin-top: 30px; }
.img-blog-aside {
width: 480px;
height: 420px;
margin-top: 50px;
margin-bottom: -100px;
box-shadow: 0 0 30px rgba(0, 0, 0, 0.1); }
.bg-video-home {
width: 40%;
position: absolute;
right: 0;
top: 0;
height: 500px;
background: #2855AF; }
.bg-blog-home {
width: 40%;
position: absolute;
left: 0;
bottom: -30px;
height: 470px;
background: #2855AF; }
.social-wrap-blog-home a {
padding: 7px;
margin-top: 30px;
color: #fff;
font-size: 120%; }
.clients-wrap-home {
text-align: center; }
.clients-wrap-home img {
max-height: 70px;
max-width: 100%;
margin: 30px 7px;
filter: grayscale(100%);
opacity: 0.7; }
.clients-wrap-home .slide-item:hover img {
filter: none;
opacity: 1; }
.clients-wrap-home .slide-item:focus {
outline: 0; }
body {
overflow-x: hidden; }
.section-intro-page > .container .intro-wrap {
min-height: calc( 100vh - 80px - 1rem );
padding-top: 0;
margin-bottom: 0; }
.section-intro-page > .container .intro-wrap .intro-center-home {
margin-bottom: 45px; }
.section-intro-page > .container .bg-home-intro-bubbles {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
.section-intro-page > .container .bg-home-intro-bubbles span {
position: absolute;
border-radius: 50%;
overflow: hidden; }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(1) {
animation: floating2 25s linear infinite;
left: -50px;
top: -50px;
width: 168px;
height: 168px;
background: radial-gradient(47.95% 47.95% at 33.29% 21.11%, #62A2E7 0%, #202CD7 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1); }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(2) {
animation: floating2 15s linear infinite;
top: -70px;
left: 33%;
width: 29px;
height: 29px;
background: radial-gradient(52.39% 53.26% at 63.74% 14.37%, #FFFFFF 0%, #C9D0D0 53.31%, #8F9998 100%); }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(3) {
animation: floating2 25s linear infinite reverse;
top: -90px;
left: 60%;
width: 73px;
height: 73px;
background: radial-gradient(43.47% 46.61% at 29.82% 22.46%, #CFF4FF 0%, #7CCCDB 48.62%, #53B1C2 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1); }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(4) {
animation: floating2 25s linear infinite;
top: 0;
left: 105%;
width: 37px;
height: 37px;
background: radial-gradient(46.63% 50% at 35.09% 27.12%, #59ABFF 2.77%, #2E7FD2 46.7%, #0959AC 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1); }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(5) {
animation: floating2 20s linear infinite reverse;
top: 105%;
left: 10%;
width: 29px;
height: 29px;
background: radial-gradient(52.44% 52.44% at 33.29% 21.11%, #00D8FF 0%, #357AD7 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1); }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(6) {
animation: floating2 20s linear infinite;
top: 85%;
left: 45%;
width: 60px;
height: 61px;
background: radial-gradient(52.44% 52.44% at 33.29% 21.11%, #8AAEF4 0%, #2855AF 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1); }
.section-intro-page > .container .bg-home-intro-bubbles span:nth-child(7) {
animation: floating2 30s linear infinite reverse;
top: 45%;
left: 90%;
width: 125px;
height: 125px;
background: radial-gradient(52.44% 52.44% at 33.29% 21.11%, #8AAEF4 0%, #2855AF 100%);
box-shadow: -10px 0px 20px rgba(9, 51, 136, 0.4); }
.intro-wrap .btn.btn-primary,
.navbar .btn.btn-primary {
background: #2855AF;
border-radius: 36px;
overflow: visible; }
.intro-wrap .btn.btn-primary:after,
.navbar .btn.btn-primary:after {
content: none; }
.intro-wrap .btn.btn-primary:before,
.navbar .btn.btn-primary:before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border-radius: 60px;
border: 2px solid #2855AF;
background-color: transparent;
animation-name: bt;
animation-duration: 1.5s;
/*animation-fill-mode: both;*/
animation-iteration-count: infinite;
z-index: 0; }
.intro-wrap .btn.btn-primary:hover,
.navbar .btn.btn-primary:hover {
color: #ffffff; }
.new-index-bg {
background: #00091F; }
.new-index-bg .title-intro img {
display: none; }
.new-index-bg .title-sm span {
display: none; }
.new-index-bg .bg-icons-mobile {
position: absolute;
left: 40px;
right: 40px;
top: 180px;
bottom: 100px;
display: none; }
@keyframes bt {
0% {
transform: scale(1);
opacity: 1; }
50% {
transform: scale(1.2, 1.5);
opacity: 0; }
100% {
transform: scale(1);
opacity: 0; } }
.index-about-section {
background: #00091F;
padding-bottom: 135px; }
.index-about-section .section-heading h2 {
font-size: 4.375rem;
margin-top: 40px;
margin-bottom: 40px;
color: #2855AF !important; }
.index-about-section .section-heading p {
color: #ffffff;
font-size: 1.125rem; }
.index-about-section .homepage-stat {
display: block;
text-align: center; }
.index-about-section .homepage-stat .num-text {
width: 110px;
height: 110px;
border-radius: 50%;
background: #2855AF;
box-shadow: 0px 0px 40px rgba(40, 52, 223, 0.5);
display: table;
margin: 0 auto 25px auto; }
.index-about-section .homepage-stat .num-text .num-text-main {
display: table-cell;
vertical-align: middle; }
.index-about-section .homepage-stat .num-text .text {
display: block;
color: #ffffff;
font-size: 1rem;
line-height: normal; }
.index-about-section .homepage-stat .num-text .num {
display: block;
color: #ffffff;
font-size: 3.125rem;
padding: 0;
line-height: normal; }
.index-about-section .homepage-stat > .text {
font-size: 1rem;
color: #ffffff;
text-transform: uppercase; }
.index-new-portfolio {
position: relative;
background: #00091F;
padding-top: 185px;
padding-bottom: 200px; }
.index-new-portfolio .bg {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
height: 100%;
width: 100%;
max-width: 1600px;
z-index: 1;
background-color: transparent !important; }
.index-new-portfolio .bg .bg-text {
text-transform: uppercase;
font-family: 'Intro';
font-size: 18.75rem;
color: rgba(255, 255, 255, 0.1);
line-height: 0.75;
cursor: default;
position: absolute;
display: inline-block;
z-index: 1;
font-weight: 900;
white-space: nowrap; }
.index-new-portfolio .bg .bg-text::selection {
background: transparent; }
.index-new-portfolio .bg .bg-text.top {
top: 20px;
right: 0; }
.index-new-portfolio .bg .bg-text.bottom {
bottom: 20px;
right: 0; }
.index-new-portfolio .bg .bg-text.right {
color: rgba(66, 52, 244, 0.2);
top: 50%;
left: 100%;
transform: rotate(90deg) translateY(-50%); }
.index-new-portfolio .bg .bg-circle-animation {
position: absolute;
background: radial-gradient(52.44% 52.44% at 33.29% 21.11%, #8AAEF4 0%, #2855AF 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
border-radius: 50%;
animation: floating 15s linear infinite; }
.index-new-portfolio .bg .bg-circle-animation.top {
background: radial-gradient(52.44% 52.44% at 33.29% 21.11%, #8AAEF4 0%, #2855AF 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
width: 616px;
height: 616px;
right: -250px;
top: -75px; }
.index-new-portfolio .bg .bg-circle-animation.left {
background: radial-gradient(47.95% 47.95% at 33.29% 21.11%, #62A2E7 0%, #202CD7 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
width: 408px;
height: 408px;
left: 81px;
top: 50%;
margin-top: -200px; }
.index-new-portfolio .bg .bg-circle-animation.bottom-one {
background: radial-gradient(77.52% 77.52% at 9.69% 9.69%, #64CDFF 24.12%, #0B6996 83.33%);
box-shadow: 0px 60px 70px rgba(40, 85, 175, 0.05);
width: 498px;
height: 498px;
left: 50%;
bottom: 15px;
margin-left: -200px;
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 4px 4px 15px rgba(35, 26, 100, 0.4); }
.index-new-portfolio .container {
background: #EBEBEB;
border-radius: 200px 0px 0px 200px;
position: relative;
z-index: 5;
padding-top: 100px;
padding-bottom: 200px; }
.index-new-portfolio .container .title-section-home {
margin-bottom: 150px;
text-align: center;
font-size: 4.375rem;
color: #2855AF !important; }
.index-new-portfolio .container .bg-text {
position: absolute;
left: 45%;
top: 45%;
transform: rotate(90deg);
text-transform: uppercase;
font-family: 'Intro';
font-size: 14rem;
color: rgba(66, 52, 244, 0.2);
line-height: 0.75;
cursor: default;
display: inline-block;
z-index: 2;
white-space: nowrap;
font-weight: 900; }
.index-new-portfolio .container .bg-text::selection {
background: transparent; }
.index-new-portfolio .container::after {
content: "";
position: absolute;
width: 500%;
height: 100%;
left: 99%;
top: 0;
background: #EBEBEB; }
.index-new-portfolio .container .article-row {
position: relative;
z-index: 2; }
.index-new-portfolio .container .article-row::after {
content: "";
display: table;
clear: both; }
.index-new-portfolio .container .article-row .article {
width: 50%;
position: relative; }
.index-new-portfolio .container .article-row .article img {
height: 100%;
position: relative;
display: block;
margin: 0 auto; }
.index-new-portfolio .container .article-row .article:nth-child(1) {
height: 444px; }
.index-new-portfolio .container .article-row .article:nth-child(2),
.index-new-portfolio .container .article-row .article:nth-child(3) {
height: 220px; }
.index-new-portfolio .container .article-row.one .article {
float: right; }
.index-new-portfolio .container .article-row.second .article {
float: left; }
.index-new-portfolio .container .index-new-portfolio-more-link {
display: table;
margin: 0 auto;
font-size: 1rem;
color: #ffffff;
min-width: 180px;
text-align: center;
background: #2855AF;
box-shadow: 0px 0px 10px rgba(40, 52, 223, 0.5);
border-radius: 41px;
padding: 10px;
font-weight: 600;
position: relative;
top: 100px; }
.index-services {
padding-top: 120px;
padding-bottom: 350px;
background: #00091F; }
.index-services .container {
position: relative; }
.index-services .container .bg-circle-animation {
position: absolute;
width: 94px;
height: 94px;
right: 0;
top: 0;
background: radial-gradient(46.63% 50% at 35.09% 27.12%, #4FA3FB 2.77%, #2E7FD2 46.7%, #0959AC 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
border-radius: 50%;
animation: floating 15s linear infinite; }
.index-services .section-heading {
margin-bottom: 95px; }
.index-services .section-heading .title-section-home {
font-size: 4.375rem;
color: #2855AF !important; }
.index-services .info-serv-home {
color: #ffffff; }
.index-services .info-serv-home .btn.btn-primary {
border-radius: 41px;
font-size: 1rem;
background: #2855AF !important;
box-shadow: 0px 0px 10px rgba(40, 52, 223, 0.5);
border-radius: 41px;
font-weight: 600;
overflow: visible; }
.index-services .info-serv-home .btn.btn-primary:after {
content: none; }
.index-services .info-serv-home .btn.btn-primary:before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
border-radius: 60px;
border: 2px solid #2855AF;
background-color: transparent;
animation-name: bt;
animation-duration: 1.5s;
/*animation-fill-mode: both;*/
animation-iteration-count: infinite;
z-index: 0; }
.index-services .info-serv-home .btn.btn-primary:hover {
color: #ffffff; }
.index-services .info-serv-home .btn.btn-light {
background-color: transparent;
border: none;
color: #ffffff;
font-size: 1rem;
position: relative;
min-width: auto;
margin-left: 15px; }
.index-services .info-serv-home .btn.btn-light::before {
position: absolute;
content: "";
bottom: 5px;
right: 0;
height: 2px;
width: 40%;
transition: all 0.3s;
background: #ffffff; }
.index-services .info-serv-home .btn.btn-light::after {
position: absolute;
content: "";
bottom: 1px;
right: 0;
height: 10px;
width: 10px;
border-top: 2px solid;
border-right: 2px solid #ffffff;
transform: rotate(45deg);
transition: all 0.3s; }
.index-services .info-serv-home .btn.btn-light:hover, .index-services .info-serv-home .btn.btn-light:focus {
border: none;
box-shadow: none; }
.index-services .info-serv-home .btn.btn-light:hover::before, .index-services .info-serv-home .btn.btn-light:hover::after, .index-services .info-serv-home .btn.btn-light:focus::before, .index-services .info-serv-home .btn.btn-light:focus::after {
right: -3px; }
.index-services .item-serv-home {
background-color: transparent;
outline: none; }
.index-services .item-serv-home.active {
background: #2855AF;
box-shadow: 0px 0px 20px rgba(40, 52, 223, 0.5);
border-radius: 5px; }
.index-services .item-serv-home:hover {
cursor: pointer; }
.index-services .item-serv-home img, .index-services .item-serv-home p {
cursor: pointer; }
.index-services .item-serv-home img::selection, .index-services .item-serv-home p::selection {
background: transparent; }
.index-review {
background: #00091F;
padding-top: 270px; }
.index-review:after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #EBEBEB;
border-radius: 0px 300px 0px 0px;
overflow: hidden;
z-index: 1; }
.index-review .bg {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
height: 100%;
width: 100%;
max-width: 1600px;
z-index: 2;
background-color: transparent !important; }
.index-review .bg .bg-circle-animation.top {
width: 540px;
height: 540px;
border-radius: 50%;
position: absolute;
left: -270px;
top: -270px;
background: radial-gradient(46.63% 50% at 35.09% 27.12%, #59ABFF 2.77%, #2E7FD2 46.7%, #0959AC 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
animation: floating 15s linear infinite; }
.index-review .bg .bg-circle-animation.middle {
width: 100px;
height: 100px;
border-radius: 50%;
position: absolute;
left: 10%;
top: 50%;
margin-top: -50px;
background: radial-gradient(46.63% 50% at 35.09% 27.12%, #4FA3FB 2.77%, #2E7FD2 46.7%, #0959AC 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
animation: floating 15s linear infinite reverse; }
.index-review .bg .bg-circle-animation.bottom-left {
width: 440px;
height: 440px;
border-radius: 50%;
position: absolute;
left: -220px;
bottom: -220px;
animation: floating 15s linear infinite; }
.index-review .bg .bg-circle-animation.bottom-right {
width: 320px;
height: 320px;
border-radius: 50%;
position: absolute;
right: -160px;
bottom: -160px;
padding: 50px;
background: radial-gradient(77.52% 77.52% at 9.69% 9.69%, #64CDFF 24.12%, #1D7DAB 83.33%);
box-shadow: 0px 60px 70px rgba(40, 85, 175, 0.05);
animation: floating 15s linear infinite; }
.index-review .container {
position: relative;
z-index: 3; }
.index-review .container .index-review-titile {
position: absolute;
top: 0;
left: 50%;
transform: translate(-50%, -80%);
font-size: 12.5rem;
line-height: 12.5rem;
color: #2855AF;
opacity: 0.1;
font-weight: 900;
white-space: nowrap; }
.index-review .container .bg-video-home {
height: 400px;
width: 350px;
border-radius: 0px 15px;
top: 20%;
right: 8.3%;
bottom: auto; }
.index-review .container .item-video-slide {
margin-top: 0;
margin-bottom: 0; }
.index-review .container .item-video-slide .video-content {
border: 10px solid #ffffff;
border-radius: 0px 15px;
position: relative;
overflow: hidden; }
.index-review .container .item-video-slide .video-content:after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 1;
background: rgba(255, 255, 255, 0.45); }
.index-review .container .item-video-slide .video-content .pulse-play {
z-index: 2;
left: 50%;
top: 50%;
margin-top: -55px;
margin-left: -65px; }
.index-review .container .item-video-slide .info-review-home {
margin-top: 45px;
margin-left: 15%; }
.index-review .container .item-video-slide .info-review-home .name {
font-size: 1.875rem;
color: #2855AF;
margin-bottom: 0.8125rem; }
.index-review .container .item-video-slide .info-review-home .job {
font-size: 1.125rem;
color: #071D31; }
.index-review .container .slick-dots {
position: absolute;
right: 10%;
top: 35%;
bottom: auto;
width: auto;
z-index: 9; }
.index-review .container .slick-dots li {
display: block;
width: auto;
height: auto;
margin-bottom: 35px; }
.index-review .container .slick-dots li button {
font-size: 1.125rem;
line-height: 1.125rem;
color: #ffffff;
width: auto;
height: auto;
background: transparent;
opacity: 1;
font-weight: 300; }
.index-review .container .slick-dots li.slick-active button {
font-weight: 600; }
.index-review .container .controllers-home-review {
right: 24%;
bottom: 75px; }
.index-review .container .controllers-home-review a:first-child {
margin-right: 30px; }
.index-bottom-slider {
background: #EBEBEB; }
.index-bottom-slider .title-section-home {
font-size: 4.375rem;
color: #2855AF !important;
text-align: center;
margin-bottom: 100px; }
.index-bottom-slider .clients-content img {
max-width: 100%;
padding: 5px 12px;
opacity: .7; }
.index-bottom-slider .clients-content img:hover {
cursor: pointer;
filter: grayscale(0);
opacity: 1; }
.index-bottom-slider img {
filter: grayscale(100%);
opacity: .7;
display: block;
margin: 0 auto;
transition: all 0.3s; }
.index-bottom-slider img:first-child {
margin-bottom: 100px; }
.index-bottom-slider .clients-wrap-home .slide-item:hover img {
opacity: 0.7;
filter: grayscale(100%); }
.index-bottom-slider .clients-wrap-home .slide-item:hover img:hover {
filter: grayscale(0%);
opacity: 1; }
.new-index-bottom {
background: #00091F;
height: 240px; }
.new-index-bottom .container,
.new-index-bottom .col-md-6 {
height: 100%; }
.new-index-bottom .button-container {
position: absolute;
height: 100%;
width: 100%;
z-index: 3;
left: 0;
top: 0; }
.new-index-bottom .button-container a {
display: table;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
font-size: 3.125rem;
color: #ffffff;
transition: all 0.5s;
font-family: Montserrat;
font-weight: 600;
white-space: nowrap; }
.new-index-bottom .button-container a:hover {
letter-spacing: 2px;
color: #ffffff; }
.new-index-bottom .bg-icons-page {
position: absolute;
left: 0;
top: 0;
z-index: 1;
height: 100%;
width: 100%; }
.new-index-bottom .bg-icons-page img {
position: absolute; }
.new-index-bottom .bg-icons-page img:nth-child(1) {
bottom: 30px;
left: 55%; }
.new-index-bottom .bg-icons-page img:nth-child(2) {
bottom: 20px;
right: 20px; }
.new-index-bottom .bg-icons-page img:nth-child(3) {
top: 50px;
left: 45%; }
.new-index-bottom .bg-icons-page img:nth-child(4) {
top: 55px;
right: 0; }
.new-index-bottom .bg-icons-page img:nth-child(5) {
bottom: 40px;
left: 0; }
.new-index-bottom .bg-icons-page img:nth-child(6) {
top: 31%;
left: 16%;
animation: move-shake 2s linear infinite; }
/* PAGE BLOG */
#blogs {
background: #E5E5E5;
padding: 100px 0 50px 0;
overflow: hidden; }
#blogs > .container {
position: relative; }
#blogs > .container > .row {
position: relative;
z-index: 3; }
#blogs > .container > .row .item {
margin-bottom: 100px; }
#blogs > .container > .row .item .row {
align-items: center; }
#blogs > .container > .row .item .row img {
border-radius: 5px;
max-width: 100%;
display: block;
margin: 0 auto; }
#blogs > .container > .row .item .row h2 {
font-size: 2.7rem;
color: #00091F;
margin-bottom: 30px; }
#blogs > .container > .row .item .row a {
color: #00091F;
position: relative;
margin-left: 15px; }
#blogs > .container > .row .item .row a:hover::after {
left: 20%; }
#blogs > .container > .row .item .row a:after {
content: "";
width: 100%;
height: 16px;
position: absolute;
left: 15%;
bottom: -16px;
background: url(../images/blog/arrow-right-black.svg) no-repeat right center;
background-size: contain;
transition: all 0.3s; }
#blogs > .container:before {
content: "";
position: absolute;
width: 530px;
height: 530px;
background: radial-gradient(43.47% 46.61% at 29.82% 22.46%, #CFF4FF 0%, #7CCCDB 48.62%, #53B1C2 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
border-radius: 50%;
top: 3%;
left: 80%;
animation: floating 15s linear infinite; }
#blogs > .container:after {
content: "";
position: absolute;
width: 266px;
height: 266px;
background: radial-gradient(43.47% 46.61% at 29.82% 22.46%, #CFF4FF 0%, #7CCCDB 48.62%, #53B1C2 100%);
box-shadow: 0px 10px 40px rgba(40, 85, 175, 0.1);
border-radius: 50%;
top: 41%;
right: 91%;
animation: floating 10s linear infinite; }
#blog_content {
overflow: hidden;
padding: 100px 0 50px 0;
background: #E5E5E5; }
#blog_content:before {
content: "";
position: absolute;
width: 100%;
height: 700px;
top: 0;
left: 0;
right: 0;
background: #00091F; }
#blog_content header {
position: relative;
margin-bottom: 85px; }
#blog_content header:after {
content: "";
position: absolute;
width: 363px;
height: 363px;
background: #2855AF;
box-shadow: 0px 0px 40px rgba(40, 52, 223, 0.5);
border-radius: 50%;
top: 8%;
right: -12%;
animation: floating 10s linear infinite;
max-width: 100%; }
#blog_content header h1 {
position: relative;
z-index: 2;
color: #ffffff;
margin-bottom: 70px;
font-size: 2.7rem;
text-align: center; }
#blog_content header img {
position: relative;
z-index: 2;
border: 10px solid #ffffff;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
border-radius: 10px;
margin: 0 auto;
display: block;
max-width: 100%; }
#blog_content main p {
font-family: Montserrat;
font-size: 22px;
line-height: 150%;
letter-spacing: 0.05em;
color: #071D31;
margin-bottom: 30px; }
#blog_content main img {
display: block;
margin: 70px auto 90px auto;
max-width: 100%; }
#blog_content footer > a {
font-size: 18px;
line-height: 22px;
color: #2855AF;
position: relative; }
#blog_content footer > a:after {
content: "";
width: 100%;
height: 16px;
position: absolute;
left: 15%;
bottom: -16px;
background: url(../images/blog/arrow-right-blue.svg) no-repeat right center;
background-size: contain;
transition: all 0.3s; }
#blog_content footer > a:hover::after {
left: 20%; }
#blog_content footer > p {
display: inline-block;
margin-left: 60px; }
#blog_content footer > p a {
font-size: 22px;
color: #2855AF;
margin: 0 10px; }
#blog_content .another-posts {
margin-top: 80px; }
#blog_content .another-posts h2 {
font-size: 2.7rem;
color: #00091F;
margin-bottom: 40px; }
#blog_content .another-posts .col-md-4 a {
display: table;
position: relative;
border-radius: 5px;
overflow: hidden;
height: 300px;
margin: 0 auto; }
#blog_content .another-posts .col-md-4 a img {
max-width: 100%;
height: 300px;
object-fit: cover;
transition: all 0.3s; }
#blog_content .another-posts .col-md-4 a:hover img {
transform: scale(1.1); }
#blog_content .another-posts .col-md-4 a p {
transition: all 0.3s;
padding: 5px;
font-weight: bold;
font-size: 18px;
line-height: 22px;
text-align: center;
color: #00091F;
background: rgba(255, 255, 255, 0.8);
position: absolute;
left: 0;
bottom: 0;
width: 100%;
height: 100px;
display: table;
margin-bottom: 0; }
#blog_content .another-posts .col-md-4 a p span {
display: table-cell;
vertical-align: middle; }
#blog_content .another-posts .col-md-4 a:hover p {
height: 100%; }
.bg_dark_blue2 {
background-color: #00174c;
overflow: hidden; }
.bg_dark_blue2_img_right_top {
background-image: url(../images/kompleks-marketing/bg-dark_right-top.svg);
background-repeat: no-repeat;
background-position: right top;
background-size: contain; }
.bg_dark_blue2_img_right_bottom {
background-image: url(../images/kompleks-marketing/bg-dark_right-bottom.svg);
background-repeat: no-repeat;
background-position: right bottom;
background-size: contain; }
.bg_dark_blue2_img_left_top {
background-image: url(../images/kompleks-marketing/bg-dark_left-top.svg);
background-repeat: no-repeat;
background-position: left top;
background-size: contain; }
.bg_dark_blue_light2 {
background-color: #26A1C1 !important; }
.color_blue_light2 {
color: #21B1C9 !important; }
.box-shadow_color_blue_light2 {
box-shadow: 0px 5px 50px rgba(33, 177, 201, 0.5); }
.integrated-marketing_intro {
background-color: #00174c;
background-image: url(../images/kompleks-marketing/bg-intro.png);
background-repeat: no-repeat;
background-position: top left;
background-size: 100% 100%;
overflow: hidden; }
.integrated-marketing_intro .section-intro {
background-image: url(../images/kompleks-marketing/intro_top_right.svg);
background-repeat: no-repeat;
background-position: top right;
background-size: contain; }
.integrated-marketing_intro .section-intro .img-fluid {
animation: anime-top-bottom 5s linear infinite; }
.integrated-marketing_intro .section-intro .intro-icons {
position: absolute;
right: 0;
top: 0;
width: 25%;
height: 100%;
max-width: 400px; }
.integrated-marketing_intro .section-intro .intro-icons img {
position: absolute;
max-width: 100%; }
.integrated-marketing_intro .section-intro .intro-icons img:nth-child(1) {
top: 5%;
right: 0; }
.integrated-marketing_intro .section-intro .intro-icons img:nth-child(2) {
top: 15%;
right: 5%;
animation: rotate-float 25s linear infinite reverse; }
.integrated-marketing_intro .section-intro .intro-icons img:nth-child(3) {
top: 25%;
left: 5%;
animation: anime-top-bottom 15s linear infinite; }
.integrated-marketing_intro .section-intro .intro-icons img:nth-child(4) {
top: 45%;
right: 25%;
animation: anime-left-right 20s linear infinite; }
.integrated-marketing_intro .section-intro .intro-icons img:nth-child(5) {
top: 45%;
left: 0;
animation: rotate-float 50s linear infinite; }
.integrated-marketing_intro .section-intro .intro-icons img:nth-child(6) {
top: 75%;
right: 55%;
animation: rotate-float 50s linear infinite reverse; }
.slider_hover_blue .item-slide .item-dev-brand {
border: none; }
.slider_hover_blue .item-slide .item-dev-brand .card-body {
transition: all .3s;
border-radius: 10px; }
.slider_hover_blue .item-slide .item-dev-brand .card-body .img-wrap {
position: relative;
border-radius: 50%;
width: 80px;
height: 80px;
background: rgba(33, 177, 201, 0.1);
margin: 15px auto 0 auto;
transition: all .3s; }
.slider_hover_blue .item-slide .item-dev-brand .card-body .img-wrap img {
max-width: 52px;
max-height: 52px;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
transition: all .3s; }
.slider_hover_blue .item-slide .item-dev-brand .card-body .img-wrap img.default {
opacity: 1; }
.slider_hover_blue .item-slide .item-dev-brand .card-body .img-wrap img.hover {
opacity: 0; }
.slider_hover_blue .item-slide .item-dev-brand .card-body p {
transition: all .3s; }
.slider_hover_blue .item-slide .item-dev-brand .card-body .btn {
transition: all .3s; }
.slider_hover_blue .item-slide .item-dev-brand .layer {
transition: all .3s; }
.slider_hover_blue .item-slide .item-dev-brand:hover .card-body {
background: #21B1C9;
border: none; }
.slider_hover_blue .item-slide .item-dev-brand:hover .card-body .img-wrap {
background-color: rgba(255, 255, 255, 0.1); }
.slider_hover_blue .item-slide .item-dev-brand:hover .card-body .img-wrap img.default {
opacity: 0; }
.slider_hover_blue .item-slide .item-dev-brand:hover .card-body .img-wrap img.hover {
opacity: 1; }
.slider_hover_blue .item-slide .item-dev-brand:hover .card-body p {
color: #ffffff; }
.slider_hover_blue .item-slide .item-dev-brand:hover .card-body .btn {
background: #DA0F60;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
color: #ffffff; }
.slider_hover_blue .item-slide .item-dev-brand:hover .layer {
background-color: #0D4770; }
.marketing_steps_section .row {
position: relative; }
.marketing_steps_section .row:before {
content: "";
position: absolute;
left: 50%;
top: 0;
margin-right: -3px;
width: 6px;
height: 100%;
background: url(../images/kompleks-marketing/steps_line.svg) no-repeat center;
background-size: 100% 100%; }
.marketing_steps_section .row > div {
position: relative; }
.marketing_steps_section .row > div span {
position: absolute;
left: -15px;
top: 50%;
width: 34px;
height: 34px;
margin-top: -17px;
background: #21B1C9;
box-shadow: 0px 5px 50px rgba(33, 177, 201, 0.5);
line-height: 34px;
color: #ffffff;
border-radius: 50%;
text-align: center; }
.marketing_steps_section .row > div h6 {
font-size: 18px; }
.marketing_steps_section .row > div.text-md-right span {
left: auto;
right: -20px; }
.komplecks_marketing-cases header {
position: relative; }
.komplecks_marketing-cases header .bg-num {
font-size: 530px;
position: absolute;
left: 0;
top: 0;
margin-top: 0;
transform: translate(-45%, -32%);
color: rgba(38, 161, 193, 0.1); }
.komplecks_marketing-cases .slide-control-portfolio-brand {
top: 105%;
right: auto;
left: 25%; }
.komplecks_marketing-cases .item-portfolio img {
max-width: 650px; }
.kompleks-marketing_section-six {
padding-bottom: 1000px; }
.kompleks-marketing_section-six .bg_image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%; }
.kompleks-marketing_section-six .anime-img-content {
max-width: 815px;
width: 51%;
height: 900px;
position: absolute;
left: 20px;
top: 20%;
z-index: 2; }
.kompleks-marketing_section-six .anime-img-content img {
position: absolute;
max-width: 100%;
/*animation: anime-top-bottom 5s linear infinite;*/ }
.kompleks-marketing_section-six .anime-img-content img:nth-child(1) {
left: 0;
top: 0;
animation: anime-top-bottom 15s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(2) {
left: 15%;
bottom: 0;
animation: anime-top-bottom 30s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(3) {
left: 12%;
top: 20%;
z-index: 1;
animation: anime-top-bottom 20s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(4) {
left: 48%;
top: 45%;
z-index: 1;
animation: anime-top-bottom 10s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(5) {
left: 45%;
top: 23%;
animation: anime-top-bottom 25s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(6) {
left: 27%;
top: 47%;
animation: anime-left-right 15s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(7) {
left: 5%;
top: 37%;
animation: anime-left-right 10s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(8) {
left: 40%;
top: 60%;
animation: anime-left-right 20s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(9) {
right: -50px;
top: 62%;
animation: anime-left-right 30s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(10) {
left: 10%;
top: 5%;
animation: anime-top-bottom 15s linear infinite; }
.kompleks-marketing_section-six .anime-img-content img:nth-child(11) {
right: 0;
top: 80%;
animation: anime-top-bottom 15s linear infinite;
animation-direction: reverse; }
.kompleks-marketing_section-six .container {
position: relative;
z-index: 3; }
.kompleks-marketing_section-six .container .icon-brand-why .num {
top: -35px;
line-height: 1;
color: #07315B; }
.modal-content-price {
margin-top: 85px; }
.modal-content-price:before {
content: "";
position: absolute;
left: 5%;
bottom: -20px;
height: 50%;
width: 90%;
background: #26A1C1;
opacity: 0.2;
border-radius: 15px;
z-index: 1; }
.modal-content-price div {
position: relative;
z-index: 3;
border-radius: 15px;
overflow: hidden;
background: #FFFFFF;
box-shadow: 4px 4px 30px rgba(38, 161, 193, 0.5); }
.modal-content-price div header {
background: linear-gradient(99.29deg, #21B1C9 0%, #176F93 100%);
padding: 22px 0; }
.modal-content-price div p {
color: #565D69;
font-size: 25px;
padding: 35px 0;
position: relative;
max-width: 410px;
display: block;
margin: 0 auto; }
.modal-content-price div p:after {
content: "";
position: absolute;
width: 84%;
left: 7%;
bottom: 0;
border: 1px solid #D8D5ED; }
.modal-content-price div a {
margin-top: 35px;
margin-bottom: 50px; }
.modal-content-price div a:hover, .modal-content-price div a:focus, .modal-content-price div a:active {
box-shadow: none; }
@keyframes anime-top-bottom {
0% {
transform: translate(0, 0); }
33% {
transform: translate(-15px, 30px); }
66% {
transform: translate(15px, -30px); }
100% {
transform: translate(0, 0); } }
@keyframes anime-left-right {
0% {
transform: translate(0, 0); }
33% {
transform: translate(-30px, 10px); }
66% {
transform: translate(30px, -10px); }
100% {
transform: translate(0, 0); } }
@media (max-width: 1599px) {
.kompleks-marketing_section-six {
padding-bottom: 500px !important; }
.kompleks-marketing_section-six .anime-img-content {
height: 800px; } }
@media (max-width: 1200px) {
.komplecks_marketing-cases .item-portfolio img {
max-width: 100%; } }
@media (max-width: 992px) {
.integrated-marketing_intro .section-intro .intro-icons {
width: 100%;
max-width: 100%; } }
@media (max-width: 768px) {
.marketing_steps_section .row > div span,
.marketing_steps_section .row > div.text-md-right span {
margin-top: 0;
top: 0;
right: auto;
left: 0; }
.komplecks_marketing-cases .slide-control-portfolio-brand {
top: 95%;
left: 100%; }
.kompleks-marketing_section-six {
padding-bottom: 300px !important; }
.kompleks-marketing_section-six .anime-img-content {
top: 0;
left: 0;
height: 500px;
max-width: 100%;
width: 100%;
overflow: hidden; }
.kompleks-marketing_section-six .anime-img-content img {
animation: none !important; }
.kompleks-marketing_section-six .icon-brand-why {
padding: 15px;
background: rgba(0, 0, 0, 0.6);
border-radius: 10px; } }
.color_darkturquoise {
color: #339DC7; }
.color_darkturquoise_light_03 {
color: rgba(51, 157, 199, 0.3) !important; }
.color_dark {
color: #072A50; }
.color_white {
color: #ffffff; }
.bg-dark-blue-img {
background: url(../images/amo-crm/bg-dark-blue.png) no-repeat center -50%;
background-size: 100% 1000px; }
.bg-dark-blue-color {
position: relative;
background: #002650; }
.bg-dark-blue-color:before {
content: "";
position: absolute;
left: 0;
top: -1px;
width: 100%;
height: 2px;
background: #002650; }
.bg-dark-blue-color_before-50 {
position: relative; }
.bg-dark-blue-color_before-50 .bg-anim-item {
z-index: 3; }
.bg-dark-blue-color_before-50 .container {
position: relative;
z-index: 2; }
.bg-dark-blue-color_before-50:before {
content: "";
position: absolute;
left: 0;
top: -1px;
width: 100%;
height: 50%;
background: #002650; }
.overflow-hidden {
overflow: hidden; }
.section-amo_crm-opportunities .col-md-5 {
position: relative; }
.section-amo_crm-opportunities .section-heading {
margin-bottom: 100px; }
.section-amo_crm-opportunities .bg-anim-item {
width: 326px;
max-width: 100%;
display: block !important; }
.section-amo_crm-opportunities .img-step-site {
position: relative;
z-index: 2; }
.section-amo_crm-opportunities .step-smm {
margin-bottom: 100px; }
.section-amo_crm-opportunities .step-smm h4 {
color: #2855AF;
margin-bottom: 30px; }
.section-amo_crm-opportunities .step-smm ul {
padding-left: 0;
list-style: none; }
.section-amo_crm-opportunities .step-smm ul li {
position: relative;
padding-left: 30px;
margin-bottom: 15px; }
.section-amo_crm-opportunities .step-smm ul li:before {
content: "";
position: absolute;
left: 0;
top: 5px;
width: 10px;
height: 10px;
border-radius: 50%;
background: #2855AF; }
.section-amo_crm-benefit {
overflow: hidden; }
.section-amo_crm-benefit header.section-heading {
margin-top: 60px;
margin-bottom: 200px; }
.section-amo_crm-benefit .circle_lines img {
position: absolute;
left: 50%;
transform: translateX(-50%); }
.section-amo_crm-benefit .circle_lines img:nth-child(1) {
top: 85px; }
.section-amo_crm-benefit .circle_lines img:nth-child(2) {
top: 100px; }
.section-amo_crm-benefit .circle_lines img:nth-child(3) {
top: 105px; }
.section-amo_crm-benefit .icons_content {
position: relative;
z-index: 3; }
.section-amo_crm-benefit .icons_content .line {
display: flex;
text-align: center;
justify-content: center; }
.section-amo_crm-benefit .icons_content .line .article {
cursor: pointer;
display: inline-block;
width: 180px;
margin-left: 35px;
margin-right: 35px; }
.section-amo_crm-benefit .icons_content .line .article .img {
width: 80px;
height: 80px;
display: block;
margin: 0 auto 10px auto;
background: #F1FBFF;
box-shadow: 0px 0px 20px rgba(55, 160, 202, 0.5);
border-radius: 50%;
position: relative;
transition: all .3s; }
.section-amo_crm-benefit .icons_content .line .article .img img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
max-width: 42px;
transition: all .3s; }
.section-amo_crm-benefit .icons_content .line .article .img img.default {
opacity: 1; }
.section-amo_crm-benefit .icons_content .line .article .img img.hover {
opacity: 0; }
.section-amo_crm-benefit .icons_content .line .article p {
color: #ffffff; }
.section-amo_crm-benefit .icons_content .line .article:hover .img {
background: #37A0CA;
box-shadow: 0px 0px 30px rgba(95, 198, 239, 0.5); }
.section-amo_crm-benefit .icons_content .line .article:hover .img img.default {
opacity: 0; }
.section-amo_crm-benefit .icons_content .line .article:hover .img img.hover {
opacity: 1; }
.section-amo_crm-benefit .icons_content .line.line1 {
margin-bottom: 140px; }
.section-amo_crm-benefit .icons_content .line.line1 .article:first-child,
.section-amo_crm-benefit .icons_content .line.line1 .article:last-child {
margin-top: -70px; }
.section-amo_crm-benefit .icons_content .line.line2 {
margin-bottom: 140px; }
.section-amo_crm-benefit .icons_content .line.line2 .article:first-child,
.section-amo_crm-benefit .icons_content .line.line2 .article:last-child {
margin-top: -100px; }
.section-amo_crm-benefit .icons_content .line.line3 .article:nth-child(2),
.section-amo_crm-benefit .icons_content .line.line3 .article:nth-child(4) {
margin-top: -30px; }
.section-amo_crm-benefit .icons_content .line.line3 .article:first-child,
.section-amo_crm-benefit .icons_content .line.line3 .article:last-child {
margin-top: -115px; }
.form_steps_blue-light {
position: relative;
padding: 10px;
border-radius: 6px;
background: linear-gradient(180deg, #5743F8 0%, #25A3C0 100%);
box-shadow: 2px -2px 10px rgba(51, 157, 199, 0.2); }
.form_steps_blue-light.border-style2 {
background: linear-gradient(180deg, #21A9C3 0%, #0B3E69 100%); }
.form_steps_blue-light .box {
border: 0;
border-radius: 0 !important; }
.form_steps_blue-light .box .dots-form > span {
background: #fff;
border-color: #339DC7 !important; }
.form_steps_blue-light .box .dots-form > span.done, .form_steps_blue-light .box .dots-form > span.active {
background: #339DC7 !important; }
.form_steps_blue-light .box .dots-form > span.done i, .form_steps_blue-light .box .dots-form > span.active i {
opacity: 1; }
.form_steps_blue-light .box .dots-form > span i {
color: #ffffff; }
.form_steps_blue-light .box button {
background: #339DC7;
border-radius: 0;
border: 0; }
.form_steps_blue-light .box button:hover, .form_steps_blue-light .box button:focus, .form_steps_blue-light .box button:active {
box-shadow: none;
background-color: #339DC7 !important; }
.section-steps-amo_crm .title-section {
max-height: 55px; }
.section-steps-amo_crm .card {
height: 155px;
box-shadow: 0px 0px 20px rgba(51, 157, 199, 0.15);
margin-right: 0;
margin-left: 0; }
.section-steps-amo_crm .card .corner {
width: 60px;
height: 60px;
font-size: 24px;
padding-top: 7px;
padding-left: 10px;
background: #2855AF; }
.section-steps-amo_crm .card .card-body .card-title {
font-size: 12px;
margin-top: 55px;
padding-left: 5px; }
.section-steps-amo_crm .card .card-body .card-title:after {
content: none; }
.section-steps-amo_crm .card:hover {
background: #2855AF; }
.section-steps-amo_crm .card:hover .corner {
background: #ffffff;
color: #2855AF; }
.section-steps-amo_crm .card:hover h4 {
color: #ffffff; }
.section-steps-amo_crm .img-arrow {
top: 32%; }
.amo-crm-certificate img {
max-width: 100%; }
.amo-crm-certificate p {
font-size: 20px; }
.section-amo_crm-advantages .shape-bg_amo-crm {
position: absolute;
top: 0;
left: 0;
width: 40%;
height: 580px; }
.section-amo_crm-advantages .shape-bg_amo-crm:after {
content: "";
position: absolute;
width: 83%;
height: 86%;
left: 0;
top: 0;
z-index: 1;
background: #072A50;
border-radius: 0 5px 5px 0; }
.section-amo_crm-advantages .shape-bg_amo-crm:before {
content: "";
position: absolute;
width: 83%;
height: 86%;
right: 0;
bottom: 0;
z-index: 3;
background: linear-gradient(46.89deg, #072A50 3.86%, #1F83A8 100.06%);
opacity: 0.9;
border-radius: 5px; }
.section-amo_crm-advantages .shape-bg_amo-crm span {
position: absolute;
top: 10%;
right: 50%;
z-index: 2;
font-weight: 600;
font-size: 400px;
line-height: 1;
color: #71C7EA;
opacity: 0.4; }
.section-amo_crm-advantages .shape-bg_amo-crm img {
position: absolute;
z-index: 4; }
.section-amo_crm-advantages .container {
position: relative;
z-index: 5; }
.section-amo_crm-advantages .container .title-section {
max-width: 310px; }
.section-amo_crm-advantages .container .article {
position: relative; }
.section-amo_crm-advantages .container .article:before {
content: "";
position: absolute;
right: 20%;
top: 55px;
width: 20%;
height: 2px;
background: transparent; }
.section-amo_crm-advantages .container .article:nth-child(1), .section-amo_crm-advantages .container .article:nth-child(2) {
margin-bottom: 70px; }
.section-amo_crm-advantages .container .article:nth-child(1):before, .section-amo_crm-advantages .container .article:nth-child(3):before {
background: #7CCCDB; }
.section-amo_crm-advantages .container .article .number {
position: relative;
width: 110px;
height: 110px;
text-align: center;
margin-bottom: 25px; }
.section-amo_crm-advantages .container .article .number span {
position: relative;
z-index: 2;
line-height: 110px;
display: inline-block;
font-size: 40px;
font-weight: bold;
color: #2855AF; }
.section-amo_crm-advantages .container .article .number img {
position: absolute;
max-width: 110px;
max-height: 110px;
left: 0;
top: 0;
animation: rotate 5s linear infinite;
user-select: none; }
.section-amo_crm-advantages .container .article p {
max-width: 290px; }
.amo-crm_second_section header p {
max-width: 465px;
color: #505050;
font-size: 18px;
margin-bottom: 65px;
margin: 0 auto 65px auto; }
.amo-crm_second_section .col-md-3 .progress-circle {
border-radius: 50%;
display: block;
width: 126px;
height: 126px;
position: relative;
z-index: auto;
margin: 0 auto 20px auto; }
.amo-crm_second_section .col-md-3 .progress-circle .outer {
background: #93A9D6;
width: 126px;
height: 126px;
overflow: hidden;
z-index: 100; }
.amo-crm_second_section .col-md-3 .progress-circle .outer .mask {
background: #93A9D6;
border-radius: 87px 0 0 87px;
position: absolute;
width: 63px;
height: 126px;
top: 0;
left: 0;
z-index: 120; }
.amo-crm_second_section .col-md-3 .progress-circle .outer .half {
background: #2855AF;
position: absolute;
width: 63px;
height: 126px;
top: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box; }
.amo-crm_second_section .col-md-3 .progress-circle .outer .half.spinner {
border-radius: 0 63px 63px 0;
right: 0;
z-index: 10;
-webkit-transform-origin: left center;
-moz-transform-origin: left center;
-o-transform-origin: left center;
-ms-transform-origin: left center;
transform-origin: left center;
z-index: 110; }
.amo-crm_second_section .col-md-3 .progress-circle .outer .half.filler {
border-radius: 63px 0 0 63px;
left: 0;
z-index: 5;
-webkit-transform-origin: right center;
-moz-transform-origin: right center;
-o-transform-origin: right center;
-ms-transform-origin: right center;
transform-origin: right center;
z-index: 130; }
.amo-crm_second_section .col-md-3 .progress-circle .inner {
background: #ffffff;
position: absolute;
left: 10px;
top: 10px;
width: 106px;
height: 106px;
z-index: 300; }
.amo-crm_second_section .col-md-3 .progress-circle .percentage {
color: #2855AF;
width: 100%;
text-align: center;
position: absolute;
font-size: 25px;
font-weight: bold;
top: 50%;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-o-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
letter-spacing: -0.05em;
overflow: hidden;
line-height: 1em;
z-index: 400; }
.amo-crm_second_section .col-md-3 .progress-circle .percentage1 {
display: none; }
.amo-crm_second_section .col-md-3 .progress-circle .inner,
.amo-crm_second_section .col-md-3 .progress-circle .outer {
display: inline-block;
border-radius: 50%; }
.amo-crm_second_section .col-md-3 h4 {
color: #444F60;
font-size: 16px;
font-weight: bold;
max-width: 220px;
text-align: center;
display: block;
margin: 0 auto 15px auto; }
.amo-crm_second_section .col-md-3 p {
font-size: 14px;
max-width: 220px;
text-align: center;
display: block;
margin: 0 auto 50px auto; }
#popup_calculator .modal-dialog {
max-width: 920px;
width: calc(100% - 15px); }
#popup_calculator .modal-dialog h2 {
font-size: 25px; }
#popup_calculator .modal-dialog h5 {
font-size: 16px; }
#popup_calculator .modal-dialog .form-group-oval input {
background: #EEF9FE;
border-radius: 50px;
padding: 13px 40px;
color: #072A50;
font-size: 16px;
font-weight: 600;
border: none !important; }
#popup_calculator .modal-dialog .form-group-oval input::-webkit-input-placeholder {
/* Edge */
color: #072A50; }
#popup_calculator .modal-dialog .form-group-oval input:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: #072A50; }
#popup_calculator .modal-dialog .form-group-oval input::placeholder {
color: #072A50; }
#popup_calculator .modal-dialog .range-container .box-minmax {
margin-top: 10px;
width: 100%;
display: flex;
justify-content: space-between;
font-size: 16px;
font-weight: 600;
color: #8395A8; }
#popup_calculator .modal-dialog .range-container .box-minmax span:first-child {
margin-left: 10px; }
#popup_calculator .modal-dialog .range-container .box-minmax span:last-child {
margin-right: 10px; }
#popup_calculator .modal-dialog .range-container .rs-range {
margin-top: 29px;
width: 100%;
-webkit-appearance: none; }
#popup_calculator .modal-dialog .range-container .rs-range:focus {
outline: none; }
#popup_calculator .modal-dialog .range-container .rs-range::-webkit-slider-runnable-track {
width: 100%;
height: 8px;
cursor: pointer;
box-shadow: none;
background: #EEF9FE;
border-radius: 50px;
border: 0px solid #010101; }
#popup_calculator .modal-dialog .range-container .rs-range::-moz-range-track {
width: 100%;
height: 8px;
cursor: pointer;
box-shadow: none;
background: #EEF9FE;
border-radius: 50px;
border: 0px solid #010101; }
#popup_calculator .modal-dialog .range-container .rs-range::-webkit-slider-thumb {
box-shadow: none;
border: 0px solid #ffffff;
box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
height: 30px;
width: 30px;
border-radius: 50%;
background: linear-gradient(180deg, #339DC7 0%, #5FB6DA 100%);
cursor: pointer;
-webkit-appearance: none;
margin-top: -12px; }
#popup_calculator .modal-dialog .range-container .rs-range::-moz-range-thumb {
box-shadow: none;
border: 0px solid #ffffff;
box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.25);
height: 30px;
width: 30px;
border-radius: 50%;
background: linear-gradient(180deg, #339DC7 0%, #5FB6DA 100%);
cursor: pointer;
-webkit-appearance: none;
margin-top: -12px; }
#popup_calculator .modal-dialog .range-container .rs-range::-moz-focus-outer {
border: 0; }
#popup_calculator .modal-dialog .range-container .rs-label {
position: relative;
transform-origin: center center;
display: block;
width: 90px;
background: transparent;
line-height: 1;
text-align: center;
font-weight: bold;
margin-left: -30px;
left: attr(value);
color: #072A50;
font-size: 18px; }
#popup_calculator .modal-dialog .checkbox-content label {
display: table;
margin-bottom: 20px; }
#popup_calculator .modal-dialog .checkbox-content label span {
font-size: 14px;
padding-left: 50px;
font-weight: 600;
color: #8395A8;
padding-left: 50px;
position: relative;
cursor: pointer;
user-select: none;
display: block; }
#popup_calculator .modal-dialog .checkbox-content label span:before {
content: "";
position: absolute;
left: 0;
top: -5px;
width: 30px;
height: 30px;
border: 2px solid #349DC7;
border-radius: 50%; }
#popup_calculator .modal-dialog .checkbox-content label input:checked + span:before {
border: none;
background: linear-gradient(180deg, #339DC7 0%, #5FB6DA 100%); }
@media (max-width: 767px) {
.bg-dark-blue-img {
background-size: cover; }
.amo-crm_second_section .col-md-3 .progress-circle {
margin-bottom: 20px; }
.amo-crm_second_section .col-md-3 p {
margin-bottom: 75px; }
.section-amo_crm-benefit header.section-heading {
margin-top: 0;
margin-bottom: 70px; }
.section-amo_crm-benefit .circle_lines {
display: none; }
.section-amo_crm-benefit .icons_content .line {
display: block;
margin-bottom: 0 !important; }
.section-amo_crm-benefit .icons_content .line .article {
position: relative;
display: block;
margin: 0 auto 30px auto !important; }
.section-amo_crm-benefit .icons_content .line .article:before {
content: "";
position: absolute;
left: 50%;
transform: translateX(-50%);
top: -105px;
width: 400px;
height: 150px;
background: url(../images/amo-crm/circle_line1.svg);
background-size: 100% 100%; }
.section-amo_crm-benefit .icons_content .line .article .img,
.section-amo_crm-benefit .icons_content .line .article p {
position: relative;
z-index: 2; }
.section-steps-amo_crm .img-arrow {
top: auto;
right: 50%;
margin-right: -10px;
bottom: 15px;
transform: rotate(90deg); }
.section-amo_crm-advantages .shape-bg_amo-crm {
width: 90%;
height: 180px; }
.section-amo_crm-advantages .shape-bg_amo-crm span {
font-size: 120px; }
.section-amo_crm-advantages .container .title-section {
margin-bottom: 80px; }
.section-amo_crm-advantages .container .article {
margin-bottom: 50px !important; }
.section-amo_crm-advantages .container .article:before {
background: #339DC7; } }
.my-warehouse_intro {
background-color: #00091f;
background-image: url(../images/my-warehouse/intro.png);
overflow: hidden; }
.my-warehouse_intro .navbar {
margin-bottom: 8rem; }
.my-warehouse_intro .col-md-6 {
position: relative; }
.my-warehouse_intro .col-md-6 .btn-primary {
background-color: #2855AF; }
.my-warehouse_intro .col-md-6 .btn-primary:after {
border-color: #2855AF; }
.my-warehouse_intro .col-md-6 .img_anime {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
.my-warehouse_intro .col-md-6 .img_anime img {
position: absolute; }
.my-warehouse_intro .col-md-6 .img_anime img.top_center {
top: -10%;
left: 25%;
animation: floating 15s linear infinite; }
.my-warehouse_intro .col-md-6 .img_anime img.top_right {
top: -10%;
right: -10%;
animation: floating 25s linear infinite; }
.my-warehouse_intro .col-md-6 .img_anime img.bottom_right {
bottom: -10%;
right: -10%;
animation: floating 35s linear infinite; }
.my-warehouse_intro .col-md-6 .img_anime img.bottom_left {
bottom: -10%;
left: -15%;
animation: floating 45s linear infinite; }
.my-warehouse_intro .col-md-6 .contentn_video_w100 {
background-color: #2855AF;
border-color: #2855AF;
overflow: hidden; }
.my-warehouse_intro .col-md-6 .contentn_video_w100:before {
content: none; }
.my-warehouse_intro .col-md-6 .contentn_video_w100:after {
opacity: 1;
background: #fff url(../images/my-warehouse/logo.svg) no-repeat center;
background-size: 60%; }
.my-warehouse_intro .col-md-6 .contentn_video_w100.active > a {
opacity: 0;
visibility: hidden; }
.my-warehouse_intro .col-md-6 .contentn_video_w100 .circle-ripple {
background: url(../images/my-warehouse/play.svg) no-repeat 24px center;
background-size: 2.2rem;
background-color: #2855AF;
width: 5rem;
height: 5rem;
border-radius: 50%;
animation: ripple 0.7s linear infinite;
display: block;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
cursor: pointer;
z-index: 1;
visibility: visible;
opacity: 1;
transition: all .3s; }
.my-warehouse_intro .col-md-6 .contentn_video_w100 .circle-ripple:focus, .my-warehouse_intro .col-md-6 .contentn_video_w100 .circle-ripple:hover {
outline: none;
text-decoration: none; }
.my-warehouse_intro .down-btn-wrap {
position: relative;
z-index: 2; }
.my-warehouse_content {
background: #fff;
overflow: hidden; }
.my-warehouse_content .bg_gradient_white_blue {
position: relative; }
.my-warehouse_content .bg_gradient_white_blue > section,
.my-warehouse_content .bg_gradient_white_blue > div {
position: relative;
z-index: 1; }
.my-warehouse_content .bg_gradient_white_blue:before, .my-warehouse_content .bg_gradient_white_blue:after {
content: "";
width: 100%;
height: 100%;
position: absolute;
left: 0; }
.my-warehouse_content .bg_gradient_white_blue:before {
top: 300px;
background: linear-gradient(0deg, #E9EEF7 -0.65%, #FFFFFF 84.42%);
opacity: 0.5; }
.my-warehouse_content .bg_gradient_white_blue:after {
top: 250px;
background: linear-gradient(0deg, #E9EEF7 -0.65%, #FFFFFF 97.75%); }
.my-warehouse_content .title-section {
color: #2855AF; }
.my-warehouse_content .btn-primary {
background-color: #2855AF; }
.my-warehouse_content .btn-primary:after {
border-color: #2855AF; }
.my-warehouse_content .section-one .slider_nav {
display: block;
width: 100%;
margin-bottom: 4rem; }
.my-warehouse_content .section-one .slider_nav .links {
position: relative;
width: 100%;
padding-bottom: 2rem; }
.my-warehouse_content .section-one .slider_nav .links:after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 100%;
border-bottom: 3px solid rgba(100, 205, 255, 0.3); }
.my-warehouse_content .section-one .slider_nav .links div {
position: relative; }
.my-warehouse_content .section-one .slider_nav .links div:after {
content: "";
position: absolute;
left: 0;
bottom: -2rem;
width: 100%;
border-bottom: 3px solid transparent;
transition: all .2s; }
.my-warehouse_content .section-one .slider_nav .links div.active:after {
border-bottom-color: #64CDFF; }
.my-warehouse_content .section-one .slider_nav .links div.active span {
color: #2855AF;
font-weight: bold; }
.my-warehouse_content .section-one .slider_nav .links div span {
user-select: none;
display: block;
line-height: 1;
font-weight: 400;
font-size: 16px;
color: #072A50;
cursor: pointer;
padding: .5rem 0; }
.my-warehouse_content .section-one .slider img {
max-width: 100%; }
.my-warehouse_content .section-one .slider .slick-dots {
display: none !important; }
.my-warehouse_content .section-one .slider .slick-arrow {
width: 24px;
height: 24px; }
.my-warehouse_content .section-one .slider .slick-arrow.slick-prev {
left: -1rem;
background: url(../images/icons/downbtn.png) no-repeat center;
transform: rotate(90deg); }
.my-warehouse_content .section-one .slider .slick-arrow.slick-next {
right: -1rem;
background: url(../images/icons/downbtn.png) no-repeat center;
transform: rotate(-90deg); }
.my-warehouse_content .section-second .container > .row {
padding-bottom: 10rem; }
.my-warehouse_content .section-second .container > .row > div.img_block {
display: flex;
-webkit-display: flex;
align-items: center;
-webkit-align-items: center; }
.my-warehouse_content .section-second .container > .row > div.img_block > img {
margin: 0 auto;
display: block;
max-width: 100%;
position: relative;
z-index: 2; }
.my-warehouse_content .section-second .container > .row > div.img_block .animate_img {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
.my-warehouse_content .section-second .container > .row > div.img_block .animate_img img.liquid_circle {
position: absolute;
top: 15%;
height: 60%;
animation: floating 100s linear infinite; }
.my-warehouse_content .section-second .container > .row > div.img_block .animate_img img.min {
position: absolute;
left: 40%;
animation: floating 15s linear infinite; }
.my-warehouse_content .section-second .container > .row > div.img_block .animate_img img.max {
position: absolute;
left: 40%;
animation: floating 30s linear infinite; }
.my-warehouse_content .section-second .container > .row > div article {
position: relative;
z-index: 2;
margin-bottom: 0; }
.my-warehouse_content .section-second .container > .row > div article .title {
font-weight: bold;
font-size: 1.7rem;
line-height: 2.1rem;
color: #2855AF;
margin-bottom: 2.7rem;
padding-bottom: 0; }
.my-warehouse_content .section-second .container > .row > div article .title:after {
content: none; }
.my-warehouse_content .section-second .container > .row > div article p {
font-size: 1.1rem;
line-height: 140%;
color: #072A50; }
.my-warehouse_content .section-second .container > .row > div:first-child.img_block .animate_img img.liquid_circle {
left: 0; }
.my-warehouse_content .section-second .container > .row > div:first-child.img_block .animate_img img.min {
bottom: 0; }
.my-warehouse_content .section-second .container > .row > div:first-child.img_block .animate_img img.max {
top: 0; }
.my-warehouse_content .section-second .container > .row > div:last-child.img_block .animate_img img.liquid_circle {
right: 0; }
.my-warehouse_content .section-second .container > .row > div:last-child.img_block .animate_img img.min {
top: 0; }
.my-warehouse_content .section-second .container > .row > div:last-child.img_block .animate_img img.max {
bottom: 0; }
.my-warehouse_content .section-three .content {
background: #2855AF;
border-radius: 2rem;
padding: 4rem 0; }
.my-warehouse_content .section-three .content .bg_img {
overflow: hidden;
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
.my-warehouse_content .section-three .content .bg_img img {
max-width: 100%; }
.my-warehouse_content .section-three .content .img_animate {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: transparent; }
.my-warehouse_content .section-three .content .img_animate img.min {
position: absolute;
z-index: 2;
top: 30%;
left: -12%;
animation: floating 15s linear infinite; }
.my-warehouse_content .section-three .content .img_animate img.max {
position: absolute;
z-index: 2;
bottom: -40%;
right: 10%;
animation: floating 30s linear infinite; }
.my-warehouse_content .section-three .content .row {
color: #fff;
position: relative;
z-index: 2; }
.my-warehouse_content .section-three .content .row h2 {
font-weight: 800;
font-size: 2.7rem;
line-height: 3.2rem;
margin-bottom: 2.7rem; }
.my-warehouse_content .section-three .content .row p {
font-size: 1.1rem;
margin-bottom: 2.7rem; }
.my-warehouse_content .section-three .content .row .links a {
display: inline-block;
margin: 0 0.8rem; }
.my-warehouse_content .section-four .content {
display: block;
padding-top: 13.5rem;
overflow: hidden;
text-align: center; }
.my-warehouse_content .section-four .content article {
display: block;
float: left;
width: 20%; }
.my-warehouse_content .section-four .content article.top {
position: relative;
top: -13.5rem; }
.my-warehouse_content .section-four .content article img,
.my-warehouse_content .section-four .content article p {
margin-bottom: 1rem;
color: #072A50; }
.my-warehouse_content .section-five .content .img_animate {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0; }
.my-warehouse_content .section-five .content .img_animate img {
position: absolute; }
.my-warehouse_content .section-five .content .img_animate img.min {
top: 0;
right: 0;
animation: floating 15s linear infinite; }
.my-warehouse_content .section-five .content .img_animate img.max {
left: -10%;
bottom: -20%;
animation: floating 30s linear infinite; }
.my-warehouse_content .section-five .content .box {
box-shadow: 10px 10px 70px rgba(40, 85, 175, 0.05);
border-radius: 2rem !important;
border: 0;
padding: 3.3rem; }
.my-warehouse_content .section-five .content .box h3 {
font-size: 1.8rem;
line-height: 2.15rem;
margin-bottom: 3.3rem;
max-width: 90%;
color: #2855AF; }
.my-warehouse_content .section-five .content .box .dots > span {
background: #3FA6D7;
border-color: #2855AF !important; }
.my-warehouse_content .section-five .content .box .dots > span.active {
border-color: #2855AF !important; }
.my-warehouse_content .section-six .content .text-center {
margin-bottom: 6.7rem; }
.my-warehouse_content .section-six .content .text-center img {
margin-bottom: 1.3rem; }
.my-warehouse_content .section-six .content .text-center h4 {
font-size: 1.3rem;
line-height: 1.5rem;
color: #2855AF;
margin-bottom: 1.3rem; }
.my-warehouse_content .section-six .content .text-center p {
color: #072A50;
font-size: 1.1rem;
margin-bottom: 1.3rem; }
.my-warehouse_content .section-seven .box {
border: none; }
.my-warehouse_content .section-seven .box img {
max-width: 100% !important; }
.my-warehouse_content .section-amo_crm-advantages .shape-bg_amo-crm {
top: 70px; }
.my-warehouse_content .section-amo_crm-advantages .shape-bg_amo-crm:before {
opacity: 1;
border-radius: 5px 5px 10rem 5px;
background: #2855AF;
box-shadow: 4px 4px 25px rgba(60, 101, 182, 0.2);
left: 25%; }
.my-warehouse_content .section-amo_crm-advantages .shape-bg_amo-crm:after {
border-radius: 10rem 5px 5px 5px;
background: #3FA6D7;
left: 9%; }
.my-warehouse_content .section-amo_crm-advantages .container .title-section {
color: #fff;
margin-left: auto; }
.my-warehouse_content .section-amo_crm-advantages .img_certificate img {
max-width: 100%;
max-height: 600px;
box-shadow: 10px 10px 70px rgba(40, 85, 175, 0.05); }
.my-warehouse_content .section-eight {
overflow: hidden;
padding-bottom: 10rem; }
.my-warehouse_content .section-eight .content {
padding: 6rem 0; }
.my-warehouse_content .section-eight .content:after {
content: "";
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #2855AF;
border-radius: 2rem; }
.my-warehouse_content .section-eight .content .img_anime {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
.my-warehouse_content .section-eight .content .img_anime img {
position: absolute;
z-index: 4; }
.my-warehouse_content .section-eight .content .img_anime img.min {
top: -20%;
right: 3rem;
animation: floating 15s linear infinite; }
.my-warehouse_content .section-eight .content .img_anime img.max {
z-index: 0;
top: 65%;
left: 5rem;
animation: floating 30s linear infinite; }
.my-warehouse_content .section-eight .content > .row {
position: relative;
z-index: 5; }
.my-warehouse_content .section-eight .content > .row h2 {
display: table;
margin: 0 auto;
color: #fff;
font-weight: 800;
font-size: 2.7rem;
line-height: 3.2rem; }
.my-warehouse_content .section-eight .content > .row .btn {
background: #fff;
color: #2855AF;
border-radius: 3rem; }
.my-warehouse_content + .section-footer {
position: relative;
z-index: 5; }
@keyframes ripple {
0% {
box-shadow: 0 0 0 0 rgba(40, 85, 175, 0.3), 0 0 0 1em rgba(40, 85, 175, 0.3), 0 0 0 3em rgba(40, 85, 175, 0.3), 0 0 0 5em rgba(40, 85, 175, 0.3); }
100% {
box-shadow: 0 0 0 1em rgba(40, 85, 175, 0.3), 0 0 0 3em rgba(40, 85, 175, 0.3), 0 0 0 5em rgba(40, 85, 175, 0.3), 0 0 0 8em rgba(40, 85, 175, 0); } }
#online_store .module_1 .section-heading .title-section {
max-width: 600px;
display: table;
margin-right: auto;
margin-left: auto; }
#online_store .module_1 .section-heading .bg-num {
color: #2855AF;
opacity: .1; }
#online_store .module_1 .info .article {
position: relative;
color: #565D69;
padding-left: 85px;
margin-bottom: 3rem; }
#online_store .module_1 .info .article img {
position: absolute;
left: 0;
top: 50%;
width: 50px;
margin-top: -25px; }
#online_store .module_1 .info .article span {
font-size: 1rem; }
#online_store .module_1 .info .article p {
font-size: 1.3rem;
font-weight: bold; }
#online_store .module_1 .img .shape {
position: absolute;
left: 0;
top: 0;
max-width: 100%; }
#online_store .module_1 .img .photo {
position: relative;
z-index: 2;
max-width: 100%;
display: block; }
#online_store .module_2 .card {
position: relative;
background: #FFFFFF;
border: 1px solid #E7ECF6;
border-radius: 10px;
overflow: hidden;
padding: 100px .5rem 2.33rem 2.33rem;
margin-bottom: 2.33rem;
transition: all .3s; }
#online_store .module_2 .card:hover {
cursor: pointer;
border-color: #ffffff;
box-shadow: 0px 6px 40px rgba(59, 100, 183, 0.15); }
#online_store .module_2 .card:hover img {
transform: scale(1.2) translateY(-10px); }
#online_store .module_2 .card .number {
position: absolute;
right: 0;
top: 0;
background-color: #2855AF;
color: #fff;
font-weight: bold;
font-size: 1.6rem;
width: 90px;
height: 90px;
line-height: 80px;
text-align: center;
border-radius: 0 0 0 100px; }
#online_store .module_2 .card img {
max-height: 50px;
position: absolute;
top: 30px;
left: 40px;
transform: scale(1) translateY(0);
transition: all .3s; }
#online_store .module_2 .card p {
font-size: .93rem;
margin-bottom: .66rem; }
#online_store .module_2 .card h4 {
font-size: 1.3rem; }
#online_store .module_3 .article > div {
position: relative;
margin: 0 0 5.33rem 7rem; }
#online_store .module_3 .article > div:hover {
cursor: pointer; }
#online_store .module_3 .article > div:hover .img:before, #online_store .module_3 .article > div:hover .img:after {
width: calc( 100% + 16px );
height: calc( 100% + 16px ); }
#online_store .module_3 .article > div:hover .img:after {
border-left-color: #64CDFF;
border-bottom-color: #64CDFF; }
#online_store .module_3 .article > div:hover .img:before {
border-top-color: #64CDFF;
border-right-color: #64CDFF; }
#online_store .module_3 .article > div:hover .img img {
transform: scale(1.2); }
#online_store .module_3 .article > div .img {
position: relative;
width: 140px;
height: 125px;
padding: 27px 0;
border: 8px solid #2855AF;
margin-bottom: 1.33rem; }
#online_store .module_3 .article > div .img:before, #online_store .module_3 .article > div .img:after {
content: "";
overflow: hidden;
position: absolute;
border: 8px solid #2855AF;
width: 0;
height: 0;
transition: width .3s, height .3s; }
#online_store .module_3 .article > div .img:before {
top: -8px;
right: -8px; }
#online_store .module_3 .article > div .img:after {
left: -8px;
bottom: -8px; }
#online_store .module_3 .article > div .img img {
max-height: 55px;
display: block;
margin: 0 auto;
transition: all .3s;
transform: scale(1); }
#online_store .module_3 .article > div .number {
position: absolute;
left: -40px;
top: 0;
color: #2855AF;
opacity: .05;
font-size: 8rem;
font-weight: bold; }
#online_store .module_3 .article > div p {
font-size: 1.2rem;
color: #565D69; }
#online_store .module_5 .for_shape:after {
content: "";
position: absolute;
top: 0;
right: 0;
width: 700%;
height: 100%;
background: #2855AF;
border-radius: 0px 20px 20px 0px; }
#online_store .module_5 .for_shape .section-heading {
position: relative;
z-index: 2;
min-height: 120px;
margin-top: auto;
margin-bottom: auto; }
#online_store .module_5 .for_shape .section-heading .bg-num {
color: rgba(255, 255, 255, 0.1);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
margin-top: auto; }
#online_store .module_5 .btn_bottom_arrow {
cursor: pointer; }
#online_store .module_5 .btn_bottom_arrow.active img {
transform: rotate(90deg); }
#online_store .module_5 .btn_bottom_arrow img {
display: block;
transform: rotate(-90deg);
transition: all .3s; }
#online_store .module_5 .content {
display: none; }
#online_store .module_5 .content .title-section {
margin-top: 4rem;
margin-bottom: 5.5rem; }
#online_store .module_5 .content div {
margin-bottom: 4rem; }
#online_store .module_5 .content div h4 {
font-size: 1.66rem;
color: #072A50;
margin-bottom: 1.33rem; }
#online_store .module_5 .content div p {
font-size: 1.2rem; }
#online_store .module_6 .article {
padding-top: 7rem;
padding-bottom: 7rem; }
#online_store .module_6 .article img {
max-width: 100%; }
#online_store .module_6 .article .info {
padding-left: 20%;
color: #FFFFFF; }
#online_store .module_6 .article .info h3 {
font-size: 2rem;
margin-top: 3rem;
margin-bottom: 1.9rem; }
#online_store .module_6 .article .info h5 {
font-size: 1.6rem;
margin-bottom: .9rem; }
#online_store .module_6 .article .info p {
font-size: 1.6rem;
margin-bottom: 1.33rem; }
#online_store .module_6 .article .info a {
background: #ffffff;
border-color: #ffffff;
border-radius: 50px; }
#online_store .module_6 .article .info a:hover {
background: #ffffff; }
#online_store .module_7 .container > p {
color: #072A50;
font-size: 1.33rem;
text-align: center;
display: table;
max-width: 560px;
margin: 0 auto 4rem auto; }
#online_store .module_8 {
color: #2855AF; }
#online_store .module_8 p {
font-weight: bold;
font-size: 1.34rem;
margin-bottom: 1.2rem; }
#online_store .module_8 h2 {
font-size: 2.67rem;
margin-bottom: 3rem; }
#online_store .module_8 span {
font-size: 1.34rem;
color: #072A50;
display: block;
margin-bottom: 2rem; }
#online_store .module_8 .img {
position: relative;
z-index: 2; }
#online_store .module_8 .img_animate {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%; }
#online_store .module_8 .img_animate img {
position: absolute; }
#online_store .module_8 .img_animate img.one {
right: 0;
top: 0; }
#online_store .module_8 .img_animate img.second {
left: 0;
bottom: 0; }
#online_store .module_9 .retangle_shape .retangle_shape_content {
padding-right: 4rem; }
#online_store .module_9 .retangle_shape .retangle_shape_content .section-heading {
margin-bottom: 20px; }
#online_store .module_9 .retangle_shape .retangle_shape_content .section-heading .bg-num {
color: #fff;
opacity: .1; }
#online_store .module_9 img {
display: block;
margin: 0 auto 4rem auto;
max-width: 100%; }
.retangle_shape {
position: relative;
min-height: 500px; }
.retangle_shape:before {
content: "";
position: absolute;
width: 550px;
height: 500px;
right: 80px;
top: -80px;
background: #3FA6D7;
border-top-left-radius: 170px;
z-index: 0; }
.retangle_shape:after {
content: "";
position: absolute;
width: 550px;
height: 500px;
right: 0;
top: 0;
background: #2855AF;
border-bottom-right-radius: 170px;
z-index: 1; }
.retangle_shape .retangle_shape_content {
position: relative;
z-index: 2;
color: #ffffff; }
/* ================== COMPONENTS =================== */
/* Slider */
.slider-wrap {
position: relative; }
.slick-loading .slick-list {
background: #fff url("./ajax-loader.gif") center center no-repeat; }
/* Arrows */
.slick-prev,
.slick-next {
font-size: 0;
line-height: 0;
position: absolute;
top: 42%;
z-index: 99;
display: block;
width: 20px;
height: 20px;
padding: 0;
transform: translate(0, -50%);
cursor: pointer;
color: transparent;
border: none;
outline: none;
background: transparent; }
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
color: transparent;
outline: none;
background: transparent; }
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
opacity: 1; }
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
opacity: .25; }
.slick-prev:before,
.slick-next:before {
font-family: 'slick';
font-size: 20px;
line-height: 1;
opacity: .75;
color: rgba(0, 0, 0, 0.3);
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.slick-prev {
left: -10%; }
[dir='rtl'] .slick-prev {
right: -10%;
left: auto; }
.slick-next {
right: -10%; }
[dir='rtl'] .slick-next {
right: auto;
left: -10%; }
.portfolio_arrow_boottom_left .slick-arrow {
bottom: -20px;
top: auto; }
.portfolio_arrow_boottom_left .slick-arrow.slick-prev {
left: 25%;
margin-left: -40px; }
.portfolio_arrow_boottom_left .slick-arrow.slick-next {
left: 25%;
margin-right: -20px; }
/* Dots */
.slick-dotted.slick-slider {
margin-bottom: 30px; }
.slick-dots {
position: absolute;
bottom: -45px;
display: block;
width: 100%;
padding: 0;
margin: 0;
list-style: none;
text-align: center; }
.slick-dots li {
position: relative;
display: inline-block;
width: 15px;
height: 15px;
margin: 0 5px;
padding: 0;
cursor: pointer; }
.slick-dots li button {
font-size: 0;
line-height: 0;
display: block;
width: 10px;
height: 10px;
padding: 5px;
border-radius: 10px;
cursor: pointer;
color: transparent;
border: 0;
outline: none;
background: #2855AF;
opacity: 0.4; }
.slick-dots li button:hover,
.slick-dots li button:focus {
outline: none; }
.slick-dots li.slick-active button {
opacity: 1; }
.btn-facebook {
background-color: #405D9D;
color: #fff; }
.btn-facebook:hover {
color: #fff; }
.btn-instagram {
background-color: #E52D27;
color: #fff; }
.btn-instagram:hover {
color: #fff; }
.btn-youtube {
background-color: #C8046C;
color: #fff; }
.btn-youtube:hover {
color: #fff; }
.btn-twitter {
background-color: #42AEEC;
color: #fff; }
.btn-twitter:hover {
color: #fff; }
.btn-primary {
background-color: #2855AF;
border-color: #2855AF;
border-radius: 36px; }
.btn-primary:active, .btn-primary:hover, .btn-primary:focus {
background-color: #2855AF !important;
border-color: #2855AF !important;
box-shadow: none; }
.btn-site-tab {
background-color: #2834DF;
color: #ffffff;
border-color: transparent;
opacity: 0.5;
animation: all 0.3s; }
.btn-site-tab:hover {
background-color: #aec8f8;
opacity: 1;
color: #ffffff; }
.btn-site-tab.active {
background-color: #2855AF;
color: #fff;
opacity: 1; }
.btn {
min-width: 180px; }
/* effect #5 */
.btn-primary {
/* overlay styles */
/* icon styles */
color: #fff;
transition-property: all;
transition-duration: 0.2s;
transition-timing-function: linear;
transition-delay: 0s;
position: relative;
-webkit-transform: translateZ(0);
transform: translateZ(0);
overflow: hidden; }
.btn-primary:hover:active::after {
opacity: 0; }
.btn-primary:before {
position: absolute;
top: 50%;
left: 50%;
transition-property: transform;
transition-duration: 0.2s;
transition-timing-function: linear;
transition-delay: 0s;
display: block;
width: 300px;
height: 300px;
content: '';
-webkit-transform: translate(-50%, -50%) scale(0);
transform: translate(-50%, -50%) scale(0);
-webkit-transform-origin: center center;
transform-origin: center center;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 50%;
z-index: 1; }
.btn-primary:after {
position: absolute;
top: 50%;
left: 50%;
transition: transform .2s linear .2s, opacity .2s linear .2s;
display: flex;
align-items: center;
justify-content: center;
width: 300px;
height: 300px;
content: '';
font-family: "Font Awesome 5 Free";
font-size: 30px;
font-weight: 900;
line-height: inherit;
color: transparent;
-webkit-transform: translate(-50%, -50%) scale(0);
transform: translate(-50%, -50%) scale(0);
-webkit-transform-origin: center center;
transform-origin: center center;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 50%;
opacity: 0;
z-index: 1; }
.btn-primary:hover {
color: transparent; }
.btn-primary:hover:before {
transition-duration: .25s;
-webkit-transform: translate(-50%, -50%) scale(1);
transform: translate(-50%, -50%) scale(1);
opacity: 1; }
.btn-primary:hover:after {
transition-duration: .32s;
-webkit-transform: translate(-50%, -50%) scale(1);
transform: translate(-50%, -50%) scale(1);
opacity: 1;
color: #fff;
background-image: url(../images/icons/right-arrow.png);
background-repeat: no-repeat;
background-size: 25px;
background-position: center; }
.btn-primary.btn-back:hover:after {
background-image: url(../images/icons/left-arrow.png) !important; }
.btn-primary-light {
color: #ffffff;
background-color: #3FA6D7;
border-color: #3FA6D7;
border-radius: 36px; }
.text-blue-light {
color: #7CCCDB; }
.text-blue {
color: #2855AF; }
.itembox .icon-wrap {
margin-bottom: 15px;
margin-top: 7px; }
.itembox img {
max-width: 100%; }
.itemside {
position: relative;
display: inline-flex;
width: 100%; }
.itemside .text-wrap {
padding-left: 15px;
padding-right: 7px; }
.itemside .img-wrap {
position: relative;
border-radius: 0.25rem 0 0 0.25rem; }
.itemside img {
object-fit: contain; }
.itemside p, .itemside .title {
margin-bottom: 0.5rem; }
.itemside .img-bg {
object-fit: contain;
position: absolute;
right: 0;
bottom: 0;
max-height: 100px;
bottom: 0;
z-index: 0; }
.itemside .card-body {
position: relative;
z-index: 3; }
.items-bordered-wrap .itemside:not(:last-child) {
border-bottom: 1px solid #dee2e6;
padding-bottom: 10px;
margin-bottom: 10px; }
.itemlist {
padding: 20px;
border-bottom: 1px solid #eee; }
.list-inline {
margin-bottom: 0; }
.list-inline-item {
vertical-align: middle; }
/* --------- description list --------*/
[class*="dlist-"] {
margin-bottom: 5px; }
[class*="dlist-"] dd {
margin-bottom: 0; }
.dlist-inline dt, .dlist-inline dd {
display: inline-block; }
.dlist-align dt {
width: 90px;
float: left;
word-wrap: break-word; }
.dlist-align dd {
margin-left: 120px;
vertical-align: baseline; }
/* -------------------- list.row--------------------- */
ul.row, ul.row-sm {
list-style: none;
padding: 0;
margin-bottom: 0; }
/* ================= lists ================= */
[class*="list-"] li:after {
visibility: hidden;
display: block;
content: "";
overflow: hidden;
height: 0;
clear: both; }
.list-lg li {
margin-bottom: 10px; }
.list-icon {
list-style: none;
padding: 0; }
.list-icon li {
margin-bottom: 10px; }
.list-icon img {
width: 30px;
vertical-align: middle;
margin-right: 15px; }
.list-icon .icon {
width: 22px;
margin-right: 15px;
vertical-align: middle;
font-size: 20px;
text-align: center; }
.list-icon span {
vertical-align: middle; }
.list-bullet {
list-style: none;
padding: 0; }
.list-bullet li {
margin-bottom: 7px;
position: relative;
padding-left: 15px; }
.list-bullet li::before {
content: " ";
position: absolute;
top: 45%;
left: 0;
width: 7px;
height: 7px;
margin: 0px 10px 0px 0px;
background: #6c757d;
border-radius: 7px; }
.list-check > li {
list-style: none;
position: relative; }
.list-check > li::before {
font-family: 'Font Awesome 5 Free';
font-weight: 900;
color: #6c757d;
position: absolute;
top: 0px;
left: 0;
content: "\f00c";
font-size: 16px;
-webkit-font-smoothing: antialiased;
display: inline-block; }
.list-icon {
list-style: none;
padding: 0; }
.list-icon li {
position: relative;
padding-left: 30px; }
.list-icon .icon {
position: absolute;
top: 3px;
left: 0;
font-size: 13px; }
.card-product {
margin-bottom: 1rem;
/* btn-overlay-bottom */ }
.card-product:after {
content: "";
display: table;
clear: both;
visibility: hidden; }
.card-product .img-wrap {
border-radius: 0.2rem 0.2rem 0 0;
overflow: hidden;
position: relative;
height: 220px;
text-align: center; }
.card-product .img-wrap img {
max-height: 100%;
max-width: 100%;
width: auto;
display: inline-block;
object-fit: cover; }
.card-product .info-wrap {
overflow: hidden;
padding: 15px;
border-top: 1px solid #eee; }
.card-product .action-wrap {
padding-top: 4px;
margin-top: 4px; }
.card-product .bottom-wrap {
padding: 15px;
border-top: 1px solid #eee; }
.card-product .title {
margin-top: 0; }
.card-product .btn-overlay {
transition: .5s;
opacity: 0;
left: 0;
bottom: 0;
color: #fff;
width: 100%;
padding: 5px 0;
font-size: 12px;
text-align: center;
position: absolute;
text-transform: uppercase;
background: rgba(0, 0, 0, 0.5); }
.card-product:hover .btn-overlay {
opacity: 1; }
.card-product:hover {
box-shadow: 0 4px 15px rgba(153, 153, 153, 0.3);
transition: .5s; }
.card-sm .img-wrap {
height: 180px; }
.card-banner {
display: flex;
position: relative;
overflow: hidden;
background-color: #fff;
background-size: cover;
border-radius: 0.25rem; }
.card-banner .card-body {
background-size: cover;
position: relative;
z-index: 10; }
.card-banner .img-bg {
position: absolute;
right: 0;
bottom: 0;
mix-blend-mode: multiply;
max-width: 100%; }
.card-banner .overlay {
background-color: rgba(0, 0, 0, 0.65);
z-index: 10;
padding: 1.25rem;
color: #fff; }
.card-banner .overlay.bottom {
bottom: 0;
left: 0;
position: absolute;
width: 100%; }
.card-banner .overlay.top {
top: 0;
left: 0;
position: absolute;
width: 100%; }
.card-banner .overlay-cover {
top: 0;
left: 0;
right: 0;
bottom: 0;
position: absolute;
width: 100%; }
.card-banner .overlay.left {
top: 0;
left: 0;
bottom: 0;
position: absolute; }
.card-banner .text-bottom {
position: absolute;
left: 0;
bottom: 0;
left: 0;
z-index: 10;
width: 100%;
padding: 7px 20px;
padding-top: 30px;
border-radius: 0 0 0.25rem 0.25rem;
background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
color: #fff; }
.banner-size-lg {
height: 350px; }
.for_top_scroll {
color: #ffffff;
background: #2855AF;
width: 40px;
height: 40px;
border-radius: 50%;
position: fixed;
right: 30px;
bottom: 30px;
text-align: center;
display: table;
z-index: 999;
cursor: pointer;
animation: bounce_up 2s ease-in-out infinite;
transition: all 0.3s;
visibility: hidden;
opacity: 0; }
.for_top_scroll i {
display: table-cell;
vertical-align: middle; }
.for_top_scroll.active {
visibility: visible;
opacity: 1; }
.card .img-wrap {
overflow: hidden; }
.iconbox img {
margin-bottom: 15px; }
.iconbox p {
margin-right: 5%;
margin-left: 5%;
margin-bottom: 0; }
/* ====================== block ==================== */
.box {
border: 10px solid #452DF8;
border-radius: 7px;
padding: 30px;
background: #fff;
border-color: transparent;
box-shadow: 10px 10px 40px rgba(40, 85, 175, 0.1);
border-radius: 20px; }
.box .success-content {
transition: transform 0.3s, opacity 0.3s;
transform: scale(0.1);
visibility: hidden;
opacity: 0;
height: 1px;
text-align: center; }
.box.active .success-content {
height: auto;
opacity: 1;
visibility: visible;
transform: scale(1);
margin: 50px 0; }
.box.active > .form-group, .box.active > label, .box.active > p {
display: none; }
.file-drag {
display: block;
margin-bottom: 20px;
border: 3px dashed #ccc;
text-align: center;
padding: 20px;
cursor: pointer; }
/* ====================== popup ==================== */
#popup_order .modal-dialog .modal-content {
width: 90%;
margin-left: 5%;
background: transparent;
border: none; }
#popup_order .modal-dialog .modal-content .modal-body {
background: #fff;
box-shadow: 0px 4px 15px rgba(107, 179, 177, 0.3);
border-radius: 20px;
padding: 30px 90px;
position: relative;
z-index: 2; }
#popup_order .modal-dialog .modal-content .modal-body .close {
position: absolute;
right: 15px;
top: 15px;
background: #452DF8;
width: 22px;
height: 22px;
color: #fff;
font-size: 20px;
opacity: 1;
border-radius: 11px;
transition: all 0.5s;
z-index: 2; }
#popup_order .modal-dialog .modal-content .modal-body.success .close {
background: #fff;
color: #452DF8; }
#popup_order .modal-dialog .modal-content .modal-body .close:hover {
transform: rotate(90deg); }
#popup_order .modal-dialog .modal-content .modal-body .modal-title {
font-size: 28px;
margin-bottom: 20px;
font-weight: 600; }
#popup_order .modal-dialog .modal-content .modal-body p, #popup_order .modal-dialog .modal-content .modal-body .popup_number {
margin-bottom: 40px; }
#popup_order .modal-dialog .modal-content .modal-body .success-content {
position: absolute;
left: 0;
top: 0;
z-index: 3;
width: 100%;
height: 100%;
visibility: hidden;
opacity: 0;
transform: scale(0.1);
transition: all 0.3s;
background: #ffffff;
/*url(../images/bg/popup-succes-bg.png) no-repeat center*/
background-size: cover;
border-radius: 11px;
overflow: hidden; }
#popup_order .modal-dialog .modal-content .modal-body .success-content > div {
position: absolute;
width: 100%;
top: 50%;
left: 0;
transform: translateY(-50%);
text-align: center; }
#popup_order .modal-dialog .modal-content .modal-body .success-content > div h3 {
color: #2834DF;
font-size: 28px;
line-height: 34px;
margin-bottom: 30px;
font-family: Montserrat;
font-weight: 600; }
#popup_order .modal-dialog .modal-content .modal-body .success-content > div p {
color: #4F4F4F;
font-size: 16px;
line-height: 22px;
margin-bottom: 0;
font-family: Montserrat; }
#popup_order .modal-dialog .modal-content .modal-body .success-content > div > span {
position: relative;
top: 50px;
cursor: pointer; }
#popup_order .modal-dialog .modal-content .modal-body .success-content > div > span img {
transition: all 0.3s;
width: 55px; }
#popup_order .modal-dialog .modal-content .modal-body .success-content > div > span:hover > img {
transform: rotate(180deg); }
#popup_order .modal-dialog .modal-content .modal-body.success .success-content {
visibility: visible;
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
transform: scale(1); }
#popup_order .modal-dialog .modal-content:before {
content: "";
width: calc(100% + 30px);
height: calc(100% - 36px);
background: #fff;
box-shadow: 0px 4px 15px rgba(107, 179, 177, 0.3);
border-radius: 20px;
position: absolute;
left: -15px;
top: 18px; }
/* ====================== new steep form==================== */
.new_steep_form .content .img_animate {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0; }
.new_steep_form .content .img_animate img {
position: absolute; }
.new_steep_form .content .img_animate img.min {
top: 0;
right: 0; }
.new_steep_form .content .img_animate img.max {
left: -10%;
bottom: -20%; }
.img-step-bot .bg-step {
right: 0; }
.section-portfolio-fotomoto {
overflow: hidden; }
.section-review-about {
overflow: hidden; }
.mw1280 .slick-prev {
left: 0; }
.mw1280 .slick-next {
right: 0; }
h2, h3, h4, h5, h6, p {
word-break: break-word; }
#popup_order .modal-dialog {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
min-width: 300px;
margin: 0; }
.menu-category {
margin: 0;
padding: 0; }
.menu-category li {
position: relative;
display: block;
border-bottom: 1px solid #dee2e6; }
.menu-category > li > a {
display: block;
padding: 10px 15px; }
.menu-category .submenu {
display: none;
margin: 0;
padding: 0;
box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
z-index: 20;
position: absolute;
left: 100%;
top: 0;
width: 250px;
background: #fff; }
.menu-category .submenu li {
list-style: none; }
.menu-category .submenu li a {
padding: 7px 15px;
display: block; }
.menu-category li:hover {
background: #f8f8f8;
transition: all 0.3s; }
.menu-category li:hover .submenu {
display: block;
margin-left: 0px; }
/*# sourceMappingURL=ui.css.map */ | 0.31363 | 0.053527 |
body{
text-align: center;
/* color: darkcyan; */
font-family: sans-serif;
margin: 0;
}
h1, h2, h3{
color: darkcyan;
font-weight: 300;
}
h1{
font-size: 4rem;
}
h2{
font-size: 2.5rem;
margin: 20px auto;
font-weight: 500;
}
p{
line-height: 1.5;
letter-spacing: 1px;
color: black;
margin: 20px 0;
}
.profile-pic{
/* border-radius: 50%; */
object-fit: cover;
margin: 40px;
height: 400px;
width: 400px;
}
.bg-img{
width: 100vw;
position: relative;
height: 100vh;
object-fit: cover;
z-index: -999;
}
ul, ol{
list-style: none;
}
hr{
border: dotted #d1d0d0 6px;
border-bottom: none;
width: 4%;
margin: 80px auto;
}
.center {
margin-left: auto;
margin-right: auto;
}
.skill-row{
width: 60%;
margin: 80px auto;
text-align: left;
}
.code-img {
float: left;
margin-right: 60px;
height: 180px;
width: 180px;
border-radius: 50%;
object-fit: cover;
}
.chilli-img {
float: right;
margin-left: 60px;
height: 180px;
width: 180px;
border-radius: 50%;
object-fit: cover;
}
.fas{
font-size: 15px;
padding: 10px;
}
.golden{
color: #ff4449;
}
.footer-link{
color: #095457;
font-family: 'Montserrat', sans-serif;
margin: 10px 20px;
text-decoration: none;
color: white;
}
input, textarea{
width: 80%;
padding: 10px;
border: none;
outline: none;
color: grey;
border-radius: 5px;
margin: 10px 0;
}
.down-arrow{
font-size: 25px;
color: #ff4449;
}
.footer-link:hover{
color: white;
text-decoration: none;
cursor: pointer;
}
.contact-desc:hover{
color: white;
text-decoration: none;
}
.inline-photo {
opacity: 0;
transform: translateY(50px);
transition: transform 2s .25s cubic-bezier(0,1,.3,1),
opacity .3s .25s ease-out;
will-change: transform, opacity;
}
.inline-photo.is-visible {
opacity: 1;
transform: rotateY(0);
}
.inner-div{
animation: mymove 1s 1;
}
.inner-div2{
animation: mymove 1.3s 1;
}
.inner-div3{
animation: mymove 1.6s 1;
}
.inner-div4{
animation: mymove 1.9s 1;
}
.inner-div5{
animation: mymove 2.2s 1;
}
@keyframes mymove {
from {transform: translateY(-60px); opacity: -1}
to {transform: translateX(0); opacity: 1}
} | flaskblog/static/css/about.css | body{
text-align: center;
/* color: darkcyan; */
font-family: sans-serif;
margin: 0;
}
h1, h2, h3{
color: darkcyan;
font-weight: 300;
}
h1{
font-size: 4rem;
}
h2{
font-size: 2.5rem;
margin: 20px auto;
font-weight: 500;
}
p{
line-height: 1.5;
letter-spacing: 1px;
color: black;
margin: 20px 0;
}
.profile-pic{
/* border-radius: 50%; */
object-fit: cover;
margin: 40px;
height: 400px;
width: 400px;
}
.bg-img{
width: 100vw;
position: relative;
height: 100vh;
object-fit: cover;
z-index: -999;
}
ul, ol{
list-style: none;
}
hr{
border: dotted #d1d0d0 6px;
border-bottom: none;
width: 4%;
margin: 80px auto;
}
.center {
margin-left: auto;
margin-right: auto;
}
.skill-row{
width: 60%;
margin: 80px auto;
text-align: left;
}
.code-img {
float: left;
margin-right: 60px;
height: 180px;
width: 180px;
border-radius: 50%;
object-fit: cover;
}
.chilli-img {
float: right;
margin-left: 60px;
height: 180px;
width: 180px;
border-radius: 50%;
object-fit: cover;
}
.fas{
font-size: 15px;
padding: 10px;
}
.golden{
color: #ff4449;
}
.footer-link{
color: #095457;
font-family: 'Montserrat', sans-serif;
margin: 10px 20px;
text-decoration: none;
color: white;
}
input, textarea{
width: 80%;
padding: 10px;
border: none;
outline: none;
color: grey;
border-radius: 5px;
margin: 10px 0;
}
.down-arrow{
font-size: 25px;
color: #ff4449;
}
.footer-link:hover{
color: white;
text-decoration: none;
cursor: pointer;
}
.contact-desc:hover{
color: white;
text-decoration: none;
}
.inline-photo {
opacity: 0;
transform: translateY(50px);
transition: transform 2s .25s cubic-bezier(0,1,.3,1),
opacity .3s .25s ease-out;
will-change: transform, opacity;
}
.inline-photo.is-visible {
opacity: 1;
transform: rotateY(0);
}
.inner-div{
animation: mymove 1s 1;
}
.inner-div2{
animation: mymove 1.3s 1;
}
.inner-div3{
animation: mymove 1.6s 1;
}
.inner-div4{
animation: mymove 1.9s 1;
}
.inner-div5{
animation: mymove 2.2s 1;
}
@keyframes mymove {
from {transform: translateY(-60px); opacity: -1}
to {transform: translateX(0); opacity: 1}
} | 0.534612 | 0.08698 |
@font-face {
font-family: 'MYRIADPRO-REGULAR';
src: url(../../fonts/myriad/MYRIADPRO-REGULAR.woff);
}
@font-face {
font-family: 'MYRIADPRO-BOLD';
src: url(../../fonts/myriad/MYRIADPRO-BOLD.woff);
}
.header-bloc{
min-height: 674px;
overflow: hidden;
/* border: 1px solid #000 */
}
/*
**
nav
**
*/
.navprincipal{
max-width: 1265px !important;
}
.navbar .navbar-brand{
width: 147px;
}
@media (min-width: 992px) and (max-width: 999px) {
.navbar .navbar-brand img{
}
}
@media screen and (min-width: 302px){
.navbar .navbar-brand img{
margin-left: 0 !important;
}
}
@media screen and (max-width: 1024px){
.navbar .navbar-brand img{
height:75px !important;
}
}
.navbar .navbar-brand img{
height: 100px;
margin-top: -10px;
margin-left: 2px;
}
.navbar .collapse .navbar-nav{
width: auto;
display: flex;
margin: 0px auto;
}
.Menu-responsive {
display: none;
}
@media only screen and (min-width: 768px){
.Menu-responsive{
border: 1px solid #0000;
}
}
@media screen and (max-width: 375px){
.navbar .navbar-brand{
width: 180px !important;
}
}
@media only screen and (width: 320px){
.navbar .navbar-brand{
width: 140px !important;
}
.navbar .navbar-brand img{
width:150px;
}
}
@media screen and (min-width: 992px) {
.Menu-responsive {
width: 95%;
height: 300px;
position: absolute;
border-radius: 10px;
z-index: 150px;
top:90%;
left:900px;
display: none !important;
background-color: #660265;
transition: 0.4s ease-in;
/* left:450px; */
}
}
@media screen and (max-width: 991px) {
.navbar .navbar-brand{
width: 200px;
}
.navbar {
position: relative;
z-index: 5;
}
.Menu-responsive {
width: 95%;
height: 300px;
position: absolute;
border-radius: 10px;
z-index: 150px;
top:90%;
left:900px;
display: none;
background-color: #660265;
transition: 0.4s ease-in;
/* left:450px; */
}
.Menu-responsive.active{
left: 0% !important;
transition: 0.s ease-in;
}
.Menu-responsive .navbar-nav{
width: 100%;
height: 230px;
display: flex;
justify-content: space-around ;
align-items: center;
}
.Menu-responsive .navbar-nav .nav-link{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.2em;
color: #949494;
}
.Menu-responsive .d-flex{
position: absolute;
width: 100%;
top: 80%;
margin-left: 0px auto;
display: flex;
justify-content: center !important;
}
}
@media screen and (max-width: 370px){
.Menu-responsive .d-flex .btn{
width: 115px;
height: 35px;
font-size: 0.8em;
}
}
@media screen and (min-width: 992px){
.Menu-responsive.active{
display: none !important;
}
}
@media screen and (max-width: 1024px){
.navbar .collapse .navbar-nav .nav-link{
font-size: 16px !important;
}
.slide .slide_bloc .bloc{
width: 141px !important;
height: 157px !important;
}
.slide .slide_bloc .bloc h3{
font-size: 2em !important;
}
.plusdeclass {
/* left: 93% !important; */
}
.navbar .btn{
font-size: 14px !important;
}
.navbar .btn2{
margin-left: 5px !important;
}
.navbar-expand-lg .navbar-nav .nav-link{
padding-right: 0.2rem !important;
padding-left: 0.2rem !important;
}
}
.navbar .collapse .navbar-nav .nav-link{
color: #949494 !important;
padding-right: 13px;
font-size: 1em;
}
.navbar .collapse span{
font-size: 0.9em;
}
.navbar .btn{
background-color: #660265;
color: #fff;
border: 1px solid #fff !important;
border-radius: 8px !important;
transition: 0.3s ease-in;
display: block;
font-size: 1.1em;
font-family: 'MYRIADPRO-REGULAR';
}
/* .navbar .btn {
display: block;
font-size: 1.1em;
font-family: 'MYRIADPRO-REGULAR';
} */
.navbar .btn span a{
text-decoration: none;
color:#fff;
}
.navbar .btn:hover{
background-color: #fff;
color: #fff;
background-color: #e7b834;
border-radius: 8px !important;
}
.navbar .btn2{
background-color: #fff !important;
width: 122px;
color: #660265 !important;
border: 1px solid #660265 !important;
border-radius: 8px !important;
margin-left: 10px;
}
.navbar .btn2 a{
text-decoration: none;
color: #660265 !important;
}
.navbar .btn2:hover{
background-color: #fff;
color: #fff !important;
background-color: #660265 !important;
transition: 0.3s ease-in;
}
.navbar .btn2:hover a{
color: #fff !important;
}
/*
**
slide
**
*/
.slide{
width: 100%;
height: 450px;
position: relative !important;
margin-bottom: 150px;
border:none !important;
}
.owl-carousel{
z-index: 0 !important;
}
.slide .owl-carousel .owl-stage:after{
visibility: visible !important;
font-size: 4.5em !important;
}
.slide .owl-carousel .owl-stage{
width: 100%;
height: 100%;
visibility: visible !important;
font-size: 4.5em !important;
}
.slide .owl-dots{
width: 5%;
height: 150px;
/* border: 1px solid #fff; */
position: absolute;
display: flex;
justify-content: space-around;
top: 37%;
left:95%;
flex-direction: column;
}
.slide .owl-dots .owl-dot{
width: 15px;
height: 15px;
border-radius: 7px;
background-color: #fff !important;
outline: none;
}
.slide .owl-dots .owl-dot.active{
width: 15px;
height: 45px;
border-radius: 10px;
background-color: #e7b834 !important;
}
.slide .slide_content{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
overflow: hidden;
/* border: 1px solid #ccc; */
}
.slide img{
width: 100%;
height: 100%;
object-fit: cover;
}
@media only screen and (max-width: 768px) {
.slide{
width: 100%;
height: 179px;
position: relative !important;
}
.owl-carousel
.owl-item .slide-1{
width: 100% !important;
height: 233px !important;
object-fit: cover !important;
}
.slide .owl-carousel .owl-stage:after{
visibility: visible !important;
font-size: 4.5em !important;
}
.slide .owl-dots{
width: 5%;
height: 150px;
/* border: 1px solid #fff; */
position: absolute;
display: flex;
justify-content: space-around;
top: 12%;
left:95%;
display: flex !important;
}
.slide .owl-dots .owl-dot{
width: 12px;
height: 12px;
border-radius: 6px;
background-color: #fff !important;
}
.slide .owl-dots .owl-dot.active{
width: 12px;
height: 40px;
border-radius: 10px;
background-color: #e7b834 !important;
}
.slide .slide_content{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
overflow: hidden;
border: 1px solid #ccc;
}
.slide img{
width: 100%;
height: 100%;
object-fit: cover;
}
.slide .slide_bloc {
width: 100% !important;
height: 364px !important;
padding: 22px;
/* border: 1px solid #000; */
top: 100% !important;
left: 0% !important;
justify-content: space-around !important;
flex-wrap: wrap;
}
.slide .slide_bloc .bloc{
width:210px !important;
height: 210px !important;
border-radius: 10px;
width: 139px !important;
height: 139px !important;
}
}
@media only screen and (max-width: 425px){
.thema .title{
margin-top: 568px !important;
text-align: center;
}
}
@media only screen and (max-width: 320px){
.slide .slide_bloc .bloc{
width: 120px !important;
height: 120px !important;
border-radius: 10px;
overflow: hidden;
position: relative;
cursor: pointer;
transition: 0.3s ease-in;
}
.slide .slide_bloc {
display: flex;
top:100%;
}
.slide .slide_bloc .bloc h3 {
font-size: 1.5em !important;
color: #fff;
font-family: 'MYRIADPRO-REGULAR';
margin-top: -13px;
text-align: center;
}
}
.slide .slide_bloc{
width: 60%;
height: auto;
/* border: 1px solid red; */
position: absolute !important;
top: 75%;
left: 20%;
display: flex;
justify-content: space-around;
}
.slide .slide_bloc .bloc{
width:180px;
height: 180px;
border-radius: 10px;
overflow: hidden;
position: relative;
cursor: pointer;
transition: 0.3s ease-in;
}
.slide .slide_bloc .bloc img{
width:25px;
height: 30px;
color: #fff;
position: absolute;
top: 10px;
left: 11px;
}
.slide .slide_bloc .bloc h3{
font-size: 2.5em;
color: #fff;
font-family: 'MYRIADPRO-REGULAR';
margin-top: -30px;
text-align: center;
}
@media screen and (max-width: 768px){
.slide .slide_bloc .bloc h3{
font-size: 1.8em;
color: #fff;
font-family: 'MYRIADPRO-REGULAR';
margin-top: -13px;
text-align: center;
}
}
.slide .slide_bloc .bloc h3::first-letter{
font-size: 2.5em;
color: #fff;
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
margin-right: -7px;
}
.slide .slide_bloc .bloc .img{
width: 140px;
height: 110px;
margin-left: -69px;
margin-top: -52px;
padding-top: 8px;
padding-left: 8px;
transform: rotate(-51deg);
background-color: #000;
opacity: 0.2 !important;
}
.slide .slide_bloc .bloc .img svg{
font-size: 1.5em;
color: #fff !important;
}
.slide .slide_bloc .bloc:hover{
transform: translateY(-10px);
}
@media screen and (max-width: 768px){
.plusdeclass a{
margin-top: -40px !important;
padding: 10px;
}
}
.plusdeclass{
width: 100%;
position: absolute;
height: auto;
top: 100%;
}
.plusdeclass a{
display: block;
text-align: center;
margin-top: 15px;
opacity: 0.6;
color: #660265;
font-family: 'MYRIADPRO-REGULAR';
font-size: 1em;
}
@media screen and (max-width: 460px){
.slide .slide_bloc{
/* width: 100px !important;
height: 100px !important; */
}
}
/*
**
classes
**
*/
.class{
width: 100%;
height: auto;
margin-bottom: 150px;
}
.class .bloc{
width: auto;
height: 270px;
background-color: #a2266430;
position: relative;
overflow: hidden;
border-radius: 10px;
}
.class .bloc .img{
width: 203px;
height: 111px;
margin-left: -69px;
margin-top: -52px;
padding-top: 8px;
padding-left: 8px;
transform: rotate(
-45deg
);
background-color: #000;
opacity: 0.2 !important;
}
.class .bloc h3{
font-size: 4em;
color: #000;
font-family: 'MYRIADPRO-BOLD';
margin-top: 30px;
text-align: center;
}
.class .bloc img{
width: 25px;
height: 30px;
color: #fff;
position: absolute;
top: 10px;
left: 11px;
}
/* .class .slide_bloc{
width: 100%;
height: auto;
}
.class .col-md-4{
margin-bottom: 24px !important;
} */
/* .class .slide_bloc .bloc{
width: 217px;
height: 217px;
border-radius: 10px;
overflow: hidden;
position: relative;
cursor: pointer;
transition: 0.3s ease-in;
background-color: #a2266430;
transition: 0.3s ease-in;
}
.class .slide_bloc .bloc:hover{
transform: translateY(-15px);
}
.class .slide_bloc .bloc .img{
width: 170px;
height: 110px;
margin-left: -69px;
margin-top: -52px;
padding-top: 8px;
padding-left: 8px;
transform: rotate(-40deg);
background-color: #000;
opacity: 0.2 !important;
}
.class .slide_bloc .bloc img{
width: 35px;
height: 35px;
object-fit: cover;
color: #fff;
position: absolute;
top: 10px;
left: 11px;
}
.class .slide_bloc .bloc h3{
font-size: 3em;
color: #000;
font-family: 'MYRIADPRO-BOLD';
margin-top: 20px;
text-align: center;
} */
/*
**
presente
**
*/
.presente{
width: 100%;
height: auto;
/* border:1px solid #000; */
margin-top: 125px;
margin-bottom: 55px;
padding: 23px 0px 23px 0px;
border-left: none;
border-right: none;
}
@media screen and (max-width: 768px){
.presente{
margin-top: 400px !important;
}
.presente iframe{
width: 100% !important;
height: 300px;
float: left !important;
}
.presente .text{
width: 100% !important;
justify-content: flex-start !important;
}
}
.presente iframe{
width: 81%;
height: 250px;
margin-top: 25px;
float: right;
}
.presente .text{
width: 81%;
height: 300px;
display: flex;
flex-direction: column;
justify-content: center;
}
.presente .text h3{
font-family: 'MYRIADPRO-BOLD';
font-size: 2em;
margin-top: 25px;
}
.presente .text p{
font-family: 'MYRIADPRO-REGULAR';
}
/*
**
thematique
**
*/
.thema{
width: 100%;
height: auto;
margin-top: 47px;
position: relative;
}
a{
text-decoration: none !important;
}
#myBtn{
width: 50px;
height: 50px;
border-radius: 50%;
display: none;
justify-content: center;
align-items: center;
float: right;
position: fixed;
top: 85%;
left: 95%;
z-index: 200;
background-color: #e7b834;
color: #fff;
border: none;
transition: 0.3s all ease-in;
outline: none;
}
#myBtn:hover{
color: #660265;
background-color: #fff;
border: none;
box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}
@media only screen and (max-width: 590px){
.thema-box{
margin-top: 200px !important;
}
}
@media only screen and (max-width: 768px){
.thema-box{
margin-top: -500px !important;
}
.thema{
width: 100%;
height: auto;
margin-top: -10px !important;
}
.thema_bg .right
.content .bloc {
width: 100% !important;
height: 71px;
border-radius: 7px;
margin-left: 0px !important;
background-color: #660265;
display: flex;
justify-content: space-around;
align-items: center;
cursor: pointer;
}
.thema .title{
margin-top: 420px;
text-align: center;
}
#myBtn{
width: 40px;
height: 40px;
border-radius: 50%;
display: none;
justify-content: center;
align-items: center;
float: right;
position: fixed;
top: 80%;
left: 85%;
z-index: 200;
background-color: #e7b834;
color: #fff;
border: none;
transition: 0.3s all ease-in;
outline: none;
}
}
.thema .title{
text-align: center;
}
.thema .title h3{
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
font-size: 2.2em;
color: #e7b834;
}
.thema .title p{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.3em;
}
.thema_bg{
/* background-color: #ededed; */
padding: 35px;
}
.thema_bg .left{
width: 76%;
height: auto;
float: right;
/* border: 1px solid #000; */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.thema_bg .left h3{
font-family: 'MYRIADPRO-BOLD';
font-size: 2em;
margin-top: 25px;
}
.thema_bg .left p{
font-family: 'MYRIADPRO-REGULAR';
}
.thema_bg .right{
width: 75%;
height: auto;
/* border: 1px solid #000; */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* .thema .content_bloc .right .bloc{
width: 80%;
height: 50px;
border:1px solid #000;
} */
.thema_bg .right .content {
width: 100%;
height: 250px;
/* border:1px solid #000; */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
}
.thema_bg .right .content .icon-thema {
position: absolute;
/* left: 50%; */
cursor: pointer;
z-index: 200;
}
.thema_bg .right .content .icon-thema:hover {
opacity: 0.4;
}
.thema_bg .right .content #myVideo {
position: absolute;
cursor: pointer;
width: 100%;
height: auto;
}
.thema_bg .right .content .img-thema {
position: absolute;
height: auto;
width: 100%;
object-fit: cover;
z-index: 100;
}
.thema_bg .matiere
.matiere-content {
width: 100%;
height: 60px;
border-radius: 7px;
/* margin-left: 26px; */
padding-left: 40px;
background-color: #660265;
display: flex;
/* justify-content: space-around; */
align-items: center;
cursor: pointer;
transition: 0.3s ease-in;
}
.thema_bg .matiere
.matiere-content:hover {
background-color: #e7b834;
transform: scale(2deg);
}
.thema_bg .matiere
.matiere-content .img {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0.3);
display: flex;
justify-content: center;
align-items: center;
}
.thema_bg .matiere
.matiere-content .img img {
height: 30px ;
}
.thema_bg .matiere
.matiere-content h4 {
font-family: 'MYRIADPRO-REGULAR';
color: #fff;
text-transform: uppercase;
font-size: 1em;
margin-left: 15px;
margin-bottom: 0px;
}
@media only screen and (max-width: 768px){
.thema_bg .left{
width: 100%;
height: auto;
float: left;
}
.thema_bg .right{
width: 100%;
height: auto;
}
.thema_bg .right
.content .bloc h4 {
width: 50% !important;
text-align: center;
margin-left: -80px !important;
}
}
/*
**
cours
**
*/
.cour .title{
text-align: center;
}
.cour .title h3{
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
font-size: 2.2em;
color: #660265;
margin-top: 48px;
}
.cour .title p{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.3em;
}
.cour .bloc{
width: 100%;
height: 345px;
/* border: 1px solid #000; */
}
@media screen and (max-width: 1024px){
.cour .col-md-3{
width: 33% !important;
}
}
@media only screen and (width: 768px){
.cour .col-md-3{
width: 50% !important;
}
}
@media screen and (max-width: 767px){
.cour .col-md-3{
width: 100% !important;
}
}
.cour .bloc .top{
width: 100%;
height: 45%;
position: relative;
cursor: pointer;
/* opacity:0.8; */
display: flex;
flex-direction: column;
background-color: rgba(188,7,98);
}
/* .cour .bloc .top:hover{
opacity: 0.5;
transition: 0.3s ease-in;
background-color: rgba(188,7,98, 0.5);
} */
.cour .bloc .top img{
width: 100%;
height: 100%;
object-fit: cover;
/* overflow: hidden; */
/* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}
.cour .bloc .top .img_top{
transition: 0.3s ease-in;
}
.cour .bloc .top .img_top:hover{
opacity: 0.7;
/* transform: scale(1.1); */
}
.cour .bloc .top .d_icon{
width: 65px;
height: 65px;
background-color: #e7b834;
position: absolute;
top:70%;
left:2%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.cour .bloc .top .d_icon img{
width: 30px !important;
height: auto;
}
.cour .bloc .top .d_name{
min-width: 120px;
height: auto;
background-color: #660265;
position: absolute;
top:90%;
right:0%;
display: flex;
align-items: center;
}
.cour .bloc .top .d_name span{
display: block;
color: #fff;
font-family: 'MYRIADPRO-REGULAR';
padding: 2px 7px;
}
.cour .bloc .bottom{
width: 100%;
min-height: 55%;
background-color: #f6f6f6;
object-fit: cover;
padding: 10px;
}
.cour .bloc .bottom h5{
padding-top: 20px;
font-size: 0.9em;
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
}
.cour .bloc .bottom .point{
width: 60%;
height: 20px;
margin-top: 12px;
margin-bottom: 12px;
display: flex;
align-items: center;
justify-content: space-around;
}
.cour .bloc .bottom .point .rond{
width: 12px;
height: 12px;
border-radius: 6px;
/* border: 1px solid #000; */
background-color: #ccc;
}
.cour .bloc .bottom .info{
min-height: 95px;
}
.cour .bloc .bottom .info span{
font-size: 0.9em;
display: inline-block;
margin-top: 10px;
margin-left: 5px;
font-family: 'MYRIADPRO-REGULAR';
vertical-align: middle;
}
.cour .bloc .bottom .info span img{
width: 17px;
vertical-align: middle;
}
/*
**
commity
**
*/
.commity{
width: 100%;
min-height: 260px;
margin-top: 104px;
margin-bottom: 100px;
position: relative;
}
.expert{
width: 100%;
height: 260px;
margin-top: 104px;
margin-bottom: 100px;
position: relative;
overflow: hidden;
background-image: url(../../img/s2.jpg);
background-size: 100%;
background-position: -10% -68%;
object-fit: contain;
}
.expert .overlay{
width: 100%;
height: 100%;
position: absolute;
top:0;
left:0;
background-color: #660265;
opacity: 0.7;
}
.dasbord_commity{
width: 100%;
min-height: 10px !important;
}
@media screen and (max-width: 768px){
.commity{
margin-bottom: 25px !important;
margin-top: 10px;
height: 280px !important;
}
.commity .content p{
color: #fff;
margin-top: -46px;
text-align: center;
font-size: 1.1em !important;
font-family: 'MYRIADPRO-REGULAR';
}
}
.commity img{
width: 100%;
min-height: 260px;
object-fit: cover;
}
.commity .content{
width: 80%;
height: auto;
position: absolute;
top: 30%;
left: 10%;
/* display: flex;
flex-direction: column;
align-items: center;
justify-content: center; */
}
.commity .content p{
color: #fff;
font-size: 1.3em;
text-align: center;
font-family: 'MYRIADPRO-REGULAR';
}
.commity .content a{
width:274px;
margin: 0px auto;
text-align: center;
padding: 7px 15px;
background-color: #e7b834;
text-decoration: none;
color: #000;
text-transform: uppercase;
font-family: 'MYRIADPRO-BOLD';
/* border: 2px solid #e7b834; */
display: block;
}
.commity .content a:hover{
color: #fff;
background-color:#660265;
transition: 0.3s ease-in;
}
/*
**
partner
**
*/ @media screen and (max-width:768px){
.partner{
margin-bottom: 85px !important;
}
}
.partner{
margin-bottom: 25px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.partner h3{
text-align: center;
text-transform: uppercase;
color: #660265;
font-family: 'MYRIADPRO-BOLD';
/* margin-bottom: 85px; */
font-size: 2.2em;
}
@media screen and (max-width:768px) {
.partner h3{
font-size: 1.6em !important;
}
.partner .partner_icon{
height: auto !important;
margin-top: 10px !important;
}
}
.partner .partner_icon{
width: 100%;
height: 504px;
margin-top: -10px;
display: flex;
justify-content: space-around;
align-items: center;
}
.partner .partner_icon img{
width: 100px;
border-radius:10px
}
.partner .owl-carousel .owl-stage:after{
visibility: visible !important;
font-size: 4.5em !important;
}
.partner .owl-dots{
height: 50px;
/* display: flex;
justify-content: space-around;*/
margin-top: 9px !important;
margin: 0px auto;
text-align: center;
}
.partner .owl-dots .owl-dot{
width: 10px;
height: 18px;
border-radius: 9px;
background-color: #660265 !important;
margin-left: 5px;
outline: none !important;
}
.partner .owl-dots .owl-dot.active{
width: 10px;
height: 18px;
border-radius: 9px;
background-color: #e7b834 !important;
outline: none !important;
}
/**
**
footer
**
*/
.bg-black{
background-color: #000;
}
.footer{
background-color: #000;
width: 100%;
min-height: 120px;
margin-top: -100px;
position: relative;
z-index: 100;
display: flex;
justify-content: space-around;
align-items: center;
}
.footer h6{
color: #fff;
font-family: 'MYRIADPRO-BOLD';
float:right;
line-height: 85px;
}
.footer img{
width: 100px;
}
@media screen and (max-width: 768px){
.footer{
padding-top: 30px;
margin-top: -59px !important;
}
.footer img{
margin-left: 20%;
}
.footer h6{
float: left !important;
margin-left: 50px;
}
}
/*
cours
*/
/*
**
cours_header
**
*/
@media only screen and (max-width: 768px){
.cour{
margin-top: 45px !important;
}
}
.cours_header {
width: 100%;
height: 260px;
overflow: hidden;
background-color: #660265;
}
.cours_header img{
opacity: 0.5;
}
.cours_header .content h3{
font-size: 5.5em !important;
text-align: center;
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
color: #fff;
}
@media screen and (max-width: 768px){
.cours_header .content h3{
font-size: 2.5em !important;
text-align: center;
line-height: 97px !important;
}
}
.cours_header{
margin-top: 20px;
}
.cour .fliltre form{
width: 70%;
height: auto;
margin-top: 50px;
margin-bottom: 40px;
display: flex;
align-items: center;
}
.cour .fliltre form select{
width: 220px;
height: 35px;
font-size: 1.1em;
font-family: 'MYRIADPRO-REGULAR';
background-color: #fdfdfd;
padding: 3px;
border: 1px solid #e4e1e1;
outline: none;
}
.cour .fliltre form .label{
margin-left: 45px;
}
.cour .top a{
display: block;
height: 100%;
}
/*
**
begin-cour
**
*/
.begin {
overflow: hidden;
}
.begin h5{
margin-bottom: 15px;
width: 100%;
height: 60px;
padding-top: 15px;
padding-left: 10px;
border: 1px solid #ccc;
z-index: 150;
background-color: #fff;
margin-bottom: 0px;
}
.begin-tabs .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
background-color: #fff !important;
border: 0px !important;
border-radius: 0px !important;
color: #000 !important;
border-bottom: 4px solid #7e1655 !important;
}
.begin h5{
margin-bottom: 15px;
width: 100%;
height: 60px;
padding-top: 15px;
padding-left: 10px;
border: 1px solid #ccc;
z-index: 150;
background-color: #fff;
margin-bottom: 0px;
display: flex;
justify-content: space-around;
}
.begin h5 img{
height: 13px;
margin-top: 8px;
cursor: pointer;
}
.hide{
margin-right: -800px !important;
transition: 0.3s ease-in;
}
.showContentCours{
margin-right: 0px;
transition: 0.3s ease-in;
}
.begin .bloc-right{
height: 950px;
position: relative;
overflow: hidden;
/* border:1px solid red; */
margin-bottom: 210px;
}
.begin .sty{
width:100%;
height: auto;
/* border: 1px solid #7e1655; */
/* position: sticky !important;
top:0px; */
border-radius: 10px;
}
.begin .right{
width:100%;
height: 460px;
border: 1px solid #fff;
overflow-y: scroll;
overflow-x: hidden;
align-items: center;
justify-content: center;
flex-direction: column;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.begin video{
/* border:1px solid #ccc; */
position: relative !important;
background-color: #7a345d;
}
.videiofulscreen{
width: 100% !important;
}
.begin .content-show{
width: auto;
position: absolute;
top: 30%;
left: 85%;
z-index: 100;
display: none;
transition: 0.3s ease-in;
border: 1px solid #ccc;
cursor: pointer;
padding: 2px 20px 2px 20px;
color: #fff;
border-radius: 10px;
}
.begin .content-show:hover{
transform: scale(1.05);
}
/*
**
scrollbar
**
*/
.begin ::-webkit-scrollbar {
width: 13px;
}
/* Track */
.begin ::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
.begin ::-webkit-scrollbar-thumb {
height: 13px;
background: #888;
}
/* Handle on hover */
.begin ::-webkit-scrollbar-thumb:hover {
background: #555;
}
.begin .right .accordion-body .bloc{
display: flex;
}
.accordion-body {
padding: 1rem 1.25rem;
height: auto;
}
.begin .right .accordion-body .bloc .left input{
width: 20px;
height: 20px;
}
.begin .right .accordion-body .bloc .midlle{
margin-left: 15px;
}
.begin .right .accordion-body .bloc .midlle a img{
margin-left: -7px;
vertical-align: middle;
margin-right: 10px;
}
.begin .right .accordion-body .bloc
.midlle span img{
height: 15px;
}
.begin .accordion-button{
height: 80px !important;
border-radius: 0px !important;
/* display: flex; */
/* flex-direction: column;
align-items: start; */
}
.begin .accordion-button .title{
display: flex;
flex-direction: column;
align-items: start;
}
.begin .accordion-button span:nth-child(1){
margin-top: 10px;
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.2em;
}
.begin .accordion-button span:nth-child(2){
margin-top: 10px;
font-size: 0.9em;
}
accordion-button:focus {
box-shadow: none !important;
}
.begin a{
border: 1px solid #7e1655;
color: #000;
padding: 2px 14px;
float: right;
margin-left: 75px;
margin-top: 5px;
}
.begin a:hover{
color: #000;
}
.begin a img{
height: 13px;
margin-left: 15px;
}
.begin .accordion-button:not(.collapsed) {
background-color: #e9dee5;
color: #000 !important;
}
.begin .accordion-button:focus {
box-shadow:none !important
}
.begin-tabs ul{
width: 95%;
margin: 0px auto;
border-bottom: 1px solid #ccc;
display: flex !important;
justify-content: flex-start;
}
.begin-tabs ul .nav-link{
border: 0px !important;
background-color: #fff !important;
font-size: 1.1em !important;
width: 125px;
}
.begin-tabs ul .nav-link img{
width: 20px;
height: 20px;
}
.begin-tabs #pills-tabContent .search-container{
/* border: 1px solid #000; */
height: 300px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.begin-tabs #pills-tabContent .search-container .searchbar{
display:flex;
align-items: center ;
justify-content:center;
height: 54px;
overflow: hidden;
}
.begin-tabs #pills-tabContent
.search-container input{
width: 600px;
height: 55px;
margin-top: 3px;
background-color: #f2f3f5;
border: 1px solid #f2f3f5;
outline: none;
}
.begin-tabs #pills-tabContent
.search-container input::placeholder{
padding-left: 15px;
}
.begin-tabs #pills-tabContent
.search-container button{
width: 45px;
height: 56px;
margin-left: -6px;
border: 1px solid #ccc;
background-color:#7e1655;
}
.begin-tabs #pills-tabContent
.search-container button img{
width: 20px;
}
.begin-tabs #pills-tabContent form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.begin-tabs #pills-tabContent
.search-container p{
text-align: center;
margin-top: 60px;
font-size: 1.2em;
font-family: 'MYRIADPRO-REGULAR';
}
.begin-tabs #pills-tabContent
.search-container p span:nth-child(1){
font-weight: bold;
font-family: 'MYRIADPRO-BOLD';
font-size: 1.2em;
}
.begin-tabs #pills-tabContent .obj-icon{
height: 16px;
}
.begin-tabs #pills-tabContent .question-reponse{
/* border: 1px solid #000; */
width: 765px;
margin: 0px auto;
height: 790px;
display: flex;
flex-direction: column !important;
justify-content: center;
align-items: center;
}
.begin-tabs #pills-tabContent
.question-reponse input{
width: 558px;
}
.begin-tabs #pills-tabContent
.question-reponse select{
width: 185px;
height: 40px;
padding: 0px 5px 0px 5px;
border: 1px solid #ccc;
color: rgb(122, 117, 117);
text-align: center;
}
.begin-tabs #pills-tabContent
.question-reponse .question{
width: 560px;
height: auto;
}
.begin-tabs #pills-tabContent
.question-reponse .question .title h3{
font-size: 1.3em !important;
border-bottom: 1px solid #ccc;
padding: 12px;
margin-bottom: 25px;
}
.begin-tabs #pills-tabContent
.question-reponse .question .content-msg{
display: flex;
justify-content: center;
border-bottom: 1px solid #ccc;
padding-bottom: 15px;
}
.begin-tabs #pills-tabContent
.question-reponse .question .content-msg .left img{
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 15px;
}
.begin-tabs #pills-tabContent
.question-reponse .question .content-msg p{
margin: 0px !important;
font-size: 1.1em;
text-align: justify;
}
.begin-tabs #pills-tabContent
.question-reponse .question .content-msg p:nth-child(1){
cursor: pointer;
}
.begin-tabs #pills-tabContent
.question-reponse .question .content-msg .midlle p:nth-child(2){
margin: 0px !important;
font-size: 1em;
text-align: justify;
color: #ccc;
}
.begin-tabs #pills-tabContent
.question-reponse .question .content-msg .midlle span{
display: block;
font-size: 0.8em;
margin-top: 18px;
}
/*
**
page abonnement
**
*/
.abonnement {
width: 100%;
height: auto;
}
.abonnement .title{
width: 70%;
margin:0px auto;
}
.abonnement h3{
width: 100%;
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
text-align: center;
color: #e7b834;
}
.abonnement p{
width: 100%;
font-family: 'MYRIADPRO-REGULAR';
text-align: center;
}
.abonnement .abn_content{
width: 100%;
height: auto;
margin-bottom: 150px;
margin-top: 45px;
margin-left: 14px;
}
@media screen and (width: 1024px){
.abonnement .bottom .bloc ul li{
font-size: 1em !important;
}
.abonnement .blox{
margin-top: 24px !important;
}
}
@media screen and (max-width: 768px){
.abonnement .bottom .bloc ul li{
font-size: 1.1em !important;
}
}
.abonnement .blox{
width: 250px;
height: 454px;
padding-bottom: 25px;
border-radius: 10px;
border:1px solid #ccc;
}
.abonnement .blox a{
display: block;
text-align: center;
margin-top: 25px;
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.2em;
}
.abonnement .blox .btn-outline-success{
border-color: #e7b834 !important;
color: #e7b834 !important;
}
.abonnement .blox .btn-outline-success{
border-color: #e7b834 !important;
color: #e7b834 !important;
width: 100%;
}
.abonnement .blox .btn-outline-success:hover{
background-color: #e7b834 !important;
color: #fff !important;
}
.abonnement .blox .left{
border-color: #e7b834 !important;
color: #e7b834 !important;
}
.abonnement .blox .left:hover{
background-color: #e7b834 !important;
color: #fff !important;
}
.abonnement .blox .perfobasic{
border-color: #747ae8 !important;
color: #747ae8 !important;
}
.abonnement .blox .perfobasic:hover{
background-color: #747ae8 !important;
color: #fff !important;
}
.abonnement .blox .perfoexel{
border-color: #660265 !important;
color: #660265 !important;
}
.abonnement .blox .perfoexel:hover{
background-color: #660265 !important;
color: #fff !important;
}
@media screen and (max-width: 768px){
.abonnement .abn_content{
width: 100%;
height: auto !important;
margin-bottom: 100px !important;
/* margin-top: 45px; */
}
.abonnement .blox{
float: left !important;
/* margin-left: 45px !important; */
margin-top: 35px;
}
}
.abonnement .blox{
width: 88%;
float: left !important;
margin-top: 35px;
}
/* .abonnement .blox:hover{
transform: scale(1.05);
transition: 0.3s ease-in;
} */
.abonnement .blox .top{
width: 100%;
height: 70px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
background-color:#747ae8;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.abonnement .blox .top span:nth-child(1){
font-size: 1.7em;
text-transform: uppercase;
}
.abonnement .blox .top span:nth-child(2){
font-size: 1em;
font-family: 'MYRIADPRO-REGULAR';
}
.abonnement .blox .top span{
display: block;
color: #fff;
font-family: 'MYRIADPRO-BOLD';
}
.abonnement .blox .top span h3{
color: #fff;
}
.abonnement .bottom {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.abonnement .bottom .ab_trait{
width: 60px;
border: 1px solid #ccc
}
.abonnement .bottom .abonnementfirst-box{
margin-top: 79px !important;
}
.abonnement .bottom .bloc{
width: 100%;
/* display: flex;
justify-content: space-around;
align-items: center; */
padding-left: 15px;
padding-top: 5px;
margin-top: 15px;
}
.abonnement .bottom .bloc ul{
width: 290px;
display: flex;
align-items: center;
justify-content: space-around;
padding: 0;
}
.abonnement .bottom .bloc ul svg{
color: green !important;
}
.abonnement .bottom .bloc ul .delte{
color: red !important;
}
@media screen and (max-width: 320px){
.abonnement .bottom .bloc ul li{
font-size: 1.1em ;
}
}
.abonnement .bottom .bloc ul li{
width: 300px;
list-style: none;
font-size: 1.1em;
font-family: 'MYRIADPRO-REGULAR';
}
.abonnement .bottom .bloc ul li .pop-up1{
width: 28px;
height: 28px;
border-radius: 50%;
border: 1px solid #ccc;
display:inline-block;
text-align: center;
line-height: 28px;
background-color: #660265;
color: #fff;
vertical-align: middle;
margin-left: 10px;
transition: 0.3s ease-in;
cursor: pointer;
}
.abonnement .bottom .bloc ul li .pop-up1:hover{
background-color: #fff;
border-color: #660265;
color: #660265;
}
.abonnement .bottom .bloc ul li .pop-up2:hover{
background-color: #fff;
border-color: #660265;
color: #660265;
}
.abonnement .bottom .bloc ul li .pop-up2{
width: 28px;
height: 28px;
border-radius: 50%;
border: 1px solid #ccc;
display:inline-block;
text-align: center;
line-height: 28px;
background-color: #660265;
color: #fff;
vertical-align: middle;
margin-left: 10px;
transition: 0.3s ease-in;
cursor: pointer;
}
.abonnement .bottom .bloc .pop-upcontent1{
width: 300px;
height: 150px;
background-color: #fff;
border: 1px solid #ccc;
position: absolute;
margin-top: -195px;
margin-left: 250px;
z-index: 100;
padding: 20px;
display: none;
transition: cubic-bezier(0.86,-0.13, 0.58, 1);
}
.abonnement .bottom .bloc .pop-upcontent2{
width: 300px;
height: auto;
background-color: #fff;
border: 1px solid #ccc;
position: absolute;
margin-top: -290px;
margin-left: -32;
z-index: 100;
padding: 20px;
display: none;
transition: cubic-bezier(0.86,-0.13, 0.58, 1);
}
.abonnement .bottom .bloc .pop-upcontent p{
text-align: justify;
}
.abonnement .bottom .bloc ul li:nth-child(1){
width: 50px;
list-style: none;
}
.abonnement .bottom .pricing{
width: 70%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.abonnement .bottom .pricing h4{
font-family: 'MYRIADPRO-BOLD';
}
/*
**
conseil expert
**
*/
.advice{
height: auto;
margin-bottom: 150px;
}
.advice .blog{
border:1px solid rgb(223, 223, 223);
color: #000;
border-radius: 10px;
/* background-color: rgb(197, 197, 197); */
}
.advice .blog img{
height:325px;
}
.advice .blog .b_right {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 15px;
}
.advice .blog .b_right a{
color: #fff;
font-family: 'MYRIADPRO-BOLD';
}
.advice .blog .b_right P{
font-size: 1.1em;
font-family: 'MYRIADPRO-REGULAR';
}
.advice .blog .b_right .item{
width: 140px;
padding: 7px 14px;
background-color: #e7b834;
transition: 0.3s ease-in;
}
.advice .blog .b_right .item1{
color: #000;
font-family: 'MYRIADPRO-BOLD';
}
.advice .blog .b_right .item:hover{
opacity: 0.8;
}
/*
.advice .blog2 .b_right{
padding-left: 25px;
} */
.advice svg{
margin-left: 15px;
}
@media screen and (max-width: 425px){
.advice .blog{
height: auto !important;
padding-bottom: 25px !important;
}
}
@media screen and (max-width: 768px){
.advice .blog{
height: 590px;
}
.advice .blog img {
/* height: 250px; */
width: 100%;
object-fit: cover;
}
.advice .blog .b_right .item{
margin-top:-10px !important;
}
}
/*
**
rejoingnez nos expert
**
*/
.expertform{
width: 100%;
height: 600px;
border: 1px solid #000;
margin-bottom: 150px;
}
.form-control:focus{
color: #7a345d !important;
background-color: #fff;
border-color: #7a345d !important;;
outline: 0;
box-shadow: none !important;
}
/*
**
article
**
*/
/*
**
sermon_detail
**
*/
.article{
height: 220px;
margin-bottom: 350px;
}
@media only screen and (max-width: 768px){
.article{
height: 400px;
}
.article .titlle h3{
font-family: helvetica;
font-size: 1.2em !important;
margin-top: 25px;
}
.article .legend{
width: 100%;
height: auto;
}
}
.article .titlle{
width: 100%;
height: 100px;
}
.article img{
width: 100%;
height: 350px;
object-fit: cover;
}
.article .titlle h3{
font-family: 'MYRIADPRO-BOLD';
font-size: 1.6em;
margin-top: 15px;
text-transform: uppercase;
}
.article .titlle a{
font-family: helvetica;
text-decoration: none;
color: #8ec92f;
margin-right: 7px;
}
.article .titlle span{
font-family: 'MYRIADPRO-REGULAR';
color: #ccc;
}
.article .legend{
width: 100%;
height: auto;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
margin-left: 1px;
display: flex;
justify-content: center;
align-items: center;
padding: 5px 0px;
}
.article .legend .bloc h5{
font-family: 'MYRIADPRO-REGULAR';
color: #ccc;
}
.article .legend .bloc h6{
font-family: 'MYRIADPRO-REGULAR';
}
.article .legend .s_midlle{
display: flex;
justify-content: space-between;
}
.article .legend .s_midlle .bloc h6{
font-family: 'MYRIADPRO-REGULAR';
color: #e7b834;
}
/* .sermon_detail .legend .s_right{
} */
.article .legend .s_right .bloc h6{
font-family: 'MYRIADPRO-REGULAR';
color: #e7b834;
}
.article-content p{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.1em;
}
.commentaire{
width: 100%;
height: auto;
margin-top: 3rem!important;
margin-bottom: 8rem;
}
@media only screen and (max-width: 768px){
.commentaire{
width: 100%;
height: auto;
margin-bottom: 5rem;
}
.commentaire .cmt-box img{
height: 50px !important;
width: 50px !important;
border-radius: 50% !important;
}
.commentaire .cmt-box .cmt-content{
width: 90%;
height: auto !important;
background-color: #f3f3f3;
margin-left: 15px;
padding: 12px !important;
}
.commentaire .cmt-box .cmt-content .top h5{
font-size: 0.8em !important;
}
.commentaire .cmt-box .cmt-content .top p{
font-size: 0.7em !important;
margin-right: 0px !important;
}
.commentaire .cmt-text{
font-size:0.9em !important;
}
.commentaire .cmt-box .cmt-content a{
text-decoration: none;
color: #fff;
padding: 4px 8px !important;
font-size: 0.8em !important;
background-color: #000;
}
.commentaire textarea{
width: 100%;
height: 160px !important;
margin-bottom: 20px;
outline: none;
border: 1px solid #ccc;
}
.commentaire input[ type='text'], input[ type='email']{
width:100% !important;
height: 40px !important;
outline: none;
margin-right: 15px;
border: 1px solid #3333 !important;
}
.commentaire input[ type='email']{
width:100% !important;
height: 40px !important;
outline: none;
margin-right: 15px;
margin-top: 10px;
}
.commentaire button{
width: 100px !important;
margin-left: 0px !important;
height: 35px !important;
margin-top: 15px;
border:none;
color: #fff;
opacity: 0.8;
}
.commentaire button:hover{
width: 29% !important;
transition: 0.3s ease-in;
opacity: 1;
}
.commentaire ::placeholder {
padding-top: 25px !important;
padding-left: 10px !important;
font-size: 0.8em !important;
font-family: 'MYRIADPRO-REGULAR';
}
.commentaire h3{
width: 100%;
height: 36px !important;
font-family: 'MYRIADPRO-REGULAR';
border-bottom: 1px solid #ccc;
}
}
.commentaire h3{
width: 100%;
height: 40px;
font-size: 1.7em;
border-bottom: 1px solid #ccc;
margin-bottom: 30px;
}
.commentaire h3::after{
content:' ';
width: 15%;
height: 8px;
border-bottom: 5px solid #e7b834;
display: block;
top:-25px;
}
.commentaire .cmt-box{
width: 100%;
height: auto;
font-family: 'MYRIADPRO-REGULAR';
display: flex;
box-sizing: border-box;
}
.commentaire .cmt-box img{
width: 60px;
height: 60px;
border-radius: 50%;
}
.commentaire .cmt-box .cmt-content{
width: 90%;
height: 150px;
background-color: #f3f3f3;
margin-left: 15px;
padding: 25px;
}
.commentaire .cmt-box .cmt-content .top{
display: flex;
justify-content: space-between;
}
.commentaire .cmt-box .cmt-content .top h5{
font-weight: bold;
font-family: bold;
}
.commentaire .cmt-box .cmt-content .top p{
font-family: 'MYRIADPRO-REGULAR';
color: #ccc;
margin-right: 28px;
}
.commentaire .cmt-box .cmt-content a{
text-decoration: none;
color: #fff;
padding: 5px 11px;
font-size: 0.9em;
background-color: #000;
}
.commentaire textarea{
width: 100%;
height: 220px;
margin-bottom: 20px;
border-color: #ccc;
outline: none;
}
.commentaire input{
width:40%;
height: 50px;
outline: none;
margin-right: 15px;
border:1px solid #ccc;
outline: none;
}
.commentaire button{
width:12%;
margin-left: 46px;
height: 40px;
background-color:#e7b834;
border:none;
font-size: 1.2em;
color: #fff;
transition: 0.3s ease-in;
}
.commentaire button:hover{
background-color: #660265;
}
.commentaire ::placeholder {
padding-top: 25px;
padding-left: 25px;
font-size: 1em;
font-family: 'MYRIADPRO-REGULAR';
}
/*
**
A propos
**
*/
.apropos{
height: auto;
margin-bottom: 150px;
}
.apropos .title {
display: flex;
align-items: center;
justify-content: space-around;
margin-bottom: 12px;
margin-top: 30px;
}
@media only screen and (max-width: 768px){
.apropos .title .cover{
width: 100% !important;
height: 50px;
/* border: 1px solid #000; */
position: relative;
}
.apropos .title .cover span{
width: 300px !important;
}
.apropos .title h4{
width: 270px !important;
left: 5% !important;
}
}
/* .apropos .title .cover{
width: 30%;
height: 50px;
border: 1px solid #000;
position: relative;
} */
/* .apropos .title .cover span{
width: 330px;
height: 81px;
border-top-left-radius: 10px;
border-top-right-radius: 60px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 60px;
display: block;
position: absolute;
background-color: #660265;
} */
.apropos .title h4{
color: #000;
font-family: 'MYRIADPRO-BOLD';
}
.apropos p{
text-align: justify;
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.2em;
}
/*
**
Contact
**
*/
.contact{
height: auto;
margin-bottom: 250px;
}
.contact_title h4{
font-size: 4.2em !important;
text-align: center;
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
color: #fff;
}
.contact h3{
font-family: 'MYRIADPRO-BOLD';
font-size: 2em;
}
.contact p{
font-family: 'MYRIADPRO-REGULAR';
}
.contact .soulign{
width: 12%;
display: block;
border: 1px solid #000;
margin-top: 20px;
}
.contact hr{
width: 50%;
border: 2px solid #000;
}
.contact p{
border-bottom: 1px solid #ccc;
padding: 30px 30px 30px 0px;
}
.contact .bloc{
display: flex;
align-items: center;
border-bottom: 1px solid #ccc;
padding: 20px 30px 30px 0px;
}
.contact .bloc h6{
font-family: 'MYRIADPRO-BOLD';
font-size: 1.2em;
}
.contact .bloc span{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.1em;
}
.contact .bloc img{
height: 25px;
vertical-align: middle;
}
.contact .bloc .content{
margin-left: 15px;
}
.contact input{
width: 100%;
height: 50px;
margin-bottom: 30px;
border: 1px solid #ccc;
}
.contact textarea{
width: 100%;
height: 250px;
margin-bottom: 15px;
border: 1px solid #ccc;
padding-left: 15px;
font-family: 'MYRIADPRO-REGULAR';
color: rgb(44, 43, 43);;
}
.contact button{
width: 150px;
height: 45px;
background-color: #660265;
border:none !important;
color: #fff;
font-size: 1.2em;
padding-left: 15px !important;
transition: 0.3s ease-in;
}
.contact button:hover{
opacity: 0.7;
}
.contact ::placeholder{
padding-left: 15px;
font-family: 'MYRIADPRO-REGULAR';
color: rgb(44, 43, 43);
}
/*
**
formilaire inscription
**
*/
@media screen and (max-width:768px) {
.inscription{
width: 100%;
min-height: 600px;
margin-top: 25px !important;
margin-bottom: -75px;
}
.inscription .title{
padding-left: 0px !important;
padding-top: -0px !important;
padding-bottom: 25px;
}
.inscription form {
width: 91%;
min-height: 400px !important;
margin-left: 0px !important;
padding: 0px !important;
}
.inscription form input{
width: 100% !important;
height: 48px;
margin-top: 20px;
border: 1px solid #ccc;
/* border-bottom: 2px solid rgb(92, 87, 87); */
background-color: #fefeff !important;
}
.inscription .left img{
height: 850px !important;
margin-top: -150px !important;
}
.inscription form a{
float: right !important;
display: block !important;
margin-bottom: 15px;
}
.inscription form .form-check input{
width: 20px !important;
height: 20px !important;
margin-top: 20px;
vertical-align: middle;
}
.inscription .left{
height: 775px !important;
}
}
.inscription{
width: 100%;
min-height: 600px;
margin-top: 65px;
margin-bottom: -75px;
/* box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px; */
}
.inscription .title{
padding-left: 95px;
padding-top: 35px;
padding-bottom: 25px;
}
.inscription .title h3{
font-family: 'MYRIADPRO-BOLD';
font-size: 2.5em;
}
.inscription .title P{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.3em;
}
.inscription .left{
height: 675px;
}
.inscription form {
width: 91%;
height: auto;
/* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
margin-left: 50px;
padding-bottom: 162px !important;
}
.inscription form input{
width: 484px;
height: 48px;
margin-top: 20px;
border: 1px solid #ccc;
/* border-bottom: 2px solid rgb(92, 87, 87); */
background-color: #fefeff !important;
padding-left: 15px !important;
}
.inscription ::placeholder {
padding-left: 15px;
font-size: 1em;
font-family: 'MYRIADPRO-REGULAR';
}
.inscription form .form-check {
display: flex;
align-items: center;
padding: 0px !important;
}
.inscription form .form-check input{
width: 20px;
height: 20px;
margin-top: 20px;
vertical-align: middle;
border: 1px solid #ccc;
}
.inscription form .form-check .ins-condition {
height: 20px;
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}
.inscription form .form-check label{
margin-top: 15px;
margin-left: 10px;
font-family: 'MYRIADPRO-REGULAR';
}
.inscription form .form-check .ins-condition a{
margin-top:0px;
margin-left:3px;
text-decoration: none;
color: #000;
font-family: 'MYRIADPRO-BOLD';
}
.inscription form .form-check label a{
float: right !important;
display: block;
margin-left: 215px;
}
.inscription form button{
text-transform: uppercase;
background-color: #e7b834;
padding: 5px 14px;
border-radius: 5px;
border: none;
margin-bottom: 15px;
margin-top: 15px;
font-family: 'MYRIADPRO-BOLD';
color: #fff;
transition: 0.3s ease-in;
}
.inscription form button:hover{
background-color: #e7b834;
}
.inscription .left img{
width: 100%;
height:760px;
object-fit: cover;
margin-top: -58px;
position: relative;
z-index: 2;
}
/*
**
conexion
**
*/
.cnx .cnx-btn{
background-color:#660265;
}
.cnx .left img{
height: 640px !important;
}
@media screen and (max-width:768px){
.cnx .left img{
height: 850px !important;
margin-top: -140px !important;
}
.inscription form .form-check label a{
float: right !important;
display: block;
margin-left: 215px;
margin-bottom: 0px;
}
@media screen and (max-width:320px){
.inscription form .form-check label a{
float: right !important;
display: block;
margin-left: 126px;
}
}
@media screen and (max-width:379px){
.inscription form .form-check label a{
float: right !important;
display: block;
margin-left: 202px;
}
}
@media screen and (max-width:768px){
.inscription form .form-check label a{
float: right !important;
display: block;
margin-left: 72px;
padding-left: 30px;
}
}
@media screen and (max-width: 538px){
.inscription form .form-check {
margin-left: 0px !important;
display: flex;
flex-wrap: wrap;
}
.inscription form .form-check a {
margin-left: 0px !important;
}
}
}
/*
**
connexion2
**
*/
/* section .expertformumlaire{
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
} */
section{
margin-bottom:160px !important;
}
section .box{
width: 570px;
height: 626px;
}
section .input{
background: #fff;
border: .3px solid #e7e7e7;
padding: .5rem 1.1rem;
height: auto;
display: block;
font-size: 1rem;
width: 100%;
}
.form-control:focus{
border-color: none !important;
}
.form-control{
border-radius: 0px !important;
}
section .label{
font-weight: 700;
margin: 1rem 0 .3rem;
text-transform: uppercase;
letter-spacing: .01rem;
font-size: .9rem;
color: #70767c;
font-family: 'MYRIADPRO-REGULAR';
}
::placeholder{
font-size: .9rem;
}
section .purple-btn{
padding: 5px 14px;
border-radius: 5px;
border:none !important;
background-color: #660265;
color: #fff;
font-family: 'MYRIADPRO-BOLD';
float: left !important;
font-size: 1.1em;
}
section .purple-btn:hover{
opacity: 0.8;
}
section .purple-outline-btn-lg{
width: 100%;
display: block;
padding: 15px 14px;
border: 1px solid #660265;
color: #660265 !important;
font-family: 'MYRIADPRO-BOLD';
font-size: 1.2em;
transition: 0.3s ease-in;
}
section .purple-outline-btn-lg:hover{
color: #fff !important;
background-color: #660265;
}
section img{
width: 100%;
height: 100%;
object-fit: cover;
}
/*
**
dashbord
**
*/
/* .dashbord{
position: absolute;
} */
.dashbord_content{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.dashbord_content h3{
margin-top: -20px;
}
.dashbord_content span{
margin-left: 15px;
margin-top: -30px;
display: block;
text-align: center;
color: #fff;
font-family: 'MYRIADPRO-BOLD';
font-size: 1.5em;
}
.dashbord li{
color: #660265;
text-transform: uppercase;
font-weight: bold;
font-family: 'MYRIADPRO-REGULAR';
list-style: none;
font-size: 1.4em;
padding: 0px !important;
}
.dashbord .reprendre-slide .bloc{
width: 300px !important;
}
@media screen and (max-width:1366px) {
.dashbord .reprendre-slide .bloc{
width: 260px !important;
}
}
.dashbord .reprendre-slide .owl-dots{
width: 20%;
height: 50px;
position: absolute;
top: 100%;
left: 47%;
display: flex !important;
}
@media screen and (max-width:768px){
.dashbord .reprendre-slide .owl-dots{
width: 55%;
left: 27%;
margin-bottom: 275px;
}
.dashbord .reprendre-slide{
margin-bottom: 75px;
}
}
.dashbord .reprendre-slide .owl-dots .owl-dot{
display: block;
width: 14px !important;
height: 14px !important;
border-radius: 7px !important;
background-color: #e7b834 !important;
margin-left: 5px;
}
.dashbord .reprendre-slide .owl-dots .owl-dot.active{
width: 14px;
height: 14px;
border-radius: 7px;
background-color: #660265 !important;
}
@media screen and (max-width:768px) {
.dashbord .reprendre-slide .bloc{
width: 100% !important;
/* margin-left: 25px; */
}
}
.nav{
width: 55%;
display: flex;
justify-content: space-around;
}
@media screen and (max-width: 768px){
.nav{
width: 100% !important;
display: flex;
justify-content: space-around;
margin-bottom: -105px;
}
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link{
background-color: #660265 !important;
border: 0px !important;
border-radius: 0px !important;
color: #fff !important;
}
.nav-pills .nav-link{
width: 150px;
padding: 7px 15px !important;
border:1px solid #ccc !important;
border-radius: 5px !important;
background-color: #f8f9fa !important;
border: solid 1px #dddddd !important;
font-size: 0.9em !important;
font-family: 'MYRIADPRO-REGULAR';
color: #000 !important;
margin-top: 25px;
padding-bottom: 5px;
}
.nav-pills .nav-link{
border-radius: 0px !important;
}
/*
**
welcome
**
*/
@media screen and (max-width:768px) {
.welcome .bloc{
margin-top: 00px !important;
height: auto !important;
margin-bottom: 35px;
}
.welcome .bloc{
width: 100%;
height: 187px;
margin-top: 70px;
display: flex;
flex-direction: column;
/* align-items: center;
justify-content: center; */
/* border: 1px solid #000; */
}
.welcome .bloc img{
width: 50%;
margin-left: 40px;
display: block !important;
}
.welcome h4{
margin-left: 100px;
}
}
.welcome .bloc{
width: 100%;
height: 187px;
margin-top: 70px;
display: flex;
flex-direction: column;
/* border: 1px solid #000; */
}
.welcome .bloc a{
text-decoration: none;
color: #000;
transition: 0.3s ease-in;
}
.welcome .bloc a:hover{
opacity:0.6;
}
.welcome .bloc .top{
width: 100%;
height: 87%;
display: flex;
justify-content: center;
align-items: center;
}
.welcome .bloc .top h1{
font-family: 'MYRIADPRO-BOLD';
text-align: center;
line-height: 200px;
color: #ffff;
font-size: 3.5em;
/* opacity: 0.5; */
}
.welcome .bloc img{
width: 70% !important;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.welcome h4{
width: 115px;
font-size: 1.3em;
text-align: center;
margin-top: 15px;
font-family: 'MYRIADPRO-REGULAR';
}
/*
**
presentation
**
*/
.presentation{
margin-bottom: 50px !important;
}
.presentation h4{
font-size: 2.5em;
color: #fff;
text-transform: uppercase;
margin-top: 25px;
text-align: center;
font-family: 'MYRIADPRO-BOLD';
}
.presentation-content .bloc1{
width: 100%;
}
.presentation-content .col-md-3{
min-height: 474px !important;
}
.presentation-content .bloc1 iframe{
width: 95%;
height: 350px;
}
.presentation-content{
height: auto;
}
.presentation-content .bloc2{
width: 100%;
height: 469px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
padding: 7px;
top: 10px;
position: sticky;
}
.masquer{
display: none;
transition: 0.8s ease-in !important;
}
.bloc_show {
display: block !important;
transition: 0.8s ease-in !important;
}
@media screen and (max-width:768px) {
.bloc_show {
display: none !important;
transition: 0.8s ease-in;
}
.masquer{
display: block;
transition: 0.8s ease-in;
}
}
.presentation-content .bloc3{
width: 20.05% !important;
height: 469px !important;
position:fixed !important;
background-color: #fff;
top:0%;
z-index: 200;
}
.presentation-content .bloc2 .img{
width: 100%;
min-height: 32%;
/* background-color:#660265; */
}
.presentation-content .bloc2 .img img{
height: 195px;
object-fit: cover;
}
.presentation-content .bloc2 ul{
height: 189px;
/* border: 1px solid #000; */
display: flex;
flex-direction: column;
justify-content: space-evenly;
padding-right: 32px;
}
.presentation-content .bloc2 img{
height: 15px;
margin-right: 10px;
}
.presentation-content .bloc2 ul li{
list-style: none;
font-size: 0.8em;
font-family: 'MYRIADPRO-REGULAR';
}
.presentation-content .bloc2 ul button{
width: 100%;
border-color:#660265;
color: #660265;
font-family: 'MYRIADPRO-BOLD';
font-size: 1.1em;
margin-top: 20px;
}
.presentation-content .bloc2 a{
background-color:#660265;
border-color:#660265;
color: #fff;
font-family: 'MYRIADPRO-BOLD';
font-size: 1em;
text-transform: uppercase;
margin-top: 20px;
display: block;
}
.presentation-content .bloc2 a:hover{
background-color: #e7b834;
border-color: #e7b834;
transition: 0.3s ease-in;
}
.presentation-content .bloc2 ul button:hover{
background-color:#660265;
color: #fff;
}
.presentation-content .obj-icon{
width: 13px;
margin-right: 10px;
}
.presentation-content h3{
font-family: 'MYRIADPRO-BOLD';
margin-bottom: 25px;
color:#660265;
text-transform: uppercase;
}
.presentation-content span{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.1em;
}
.presentation-content .accordion-item img{
width: 20px;
vertical-align: middle;
margin-right: 15px;
}
.presentation-content .accordion-body a{
color: #000 !important;
text-decoration: none;
}
.presentation-content .accordion-body a:hover{
color: #660265 !important;
}
.presentation-content .accordion-item button{
font-family: 'MYRIADPRO-REGULAR'!important;
font-size: 0.6em;
}
.accordion-button::after{
color: #000 !important;
}
.presentation-content .accordion-button:not(.collapsed){
background-color: #e9dee5;
color:#000 !important;
}
.accordion-button:not(.collapsed)::after {
background-image: url(../../img/down-chevron.png) !important;
transform: rotate(180deg);
} | public/front/style.css | @font-face {
font-family: 'MYRIADPRO-REGULAR';
src: url(../../fonts/myriad/MYRIADPRO-REGULAR.woff);
}
@font-face {
font-family: 'MYRIADPRO-BOLD';
src: url(../../fonts/myriad/MYRIADPRO-BOLD.woff);
}
.header-bloc{
min-height: 674px;
overflow: hidden;
/* border: 1px solid #000 */
}
/*
**
nav
**
*/
.navprincipal{
max-width: 1265px !important;
}
.navbar .navbar-brand{
width: 147px;
}
@media (min-width: 992px) and (max-width: 999px) {
.navbar .navbar-brand img{
}
}
@media screen and (min-width: 302px){
.navbar .navbar-brand img{
margin-left: 0 !important;
}
}
@media screen and (max-width: 1024px){
.navbar .navbar-brand img{
height:75px !important;
}
}
.navbar .navbar-brand img{
height: 100px;
margin-top: -10px;
margin-left: 2px;
}
.navbar .collapse .navbar-nav{
width: auto;
display: flex;
margin: 0px auto;
}
.Menu-responsive {
display: none;
}
@media only screen and (min-width: 768px){
.Menu-responsive{
border: 1px solid #0000;
}
}
@media screen and (max-width: 375px){
.navbar .navbar-brand{
width: 180px !important;
}
}
@media only screen and (width: 320px){
.navbar .navbar-brand{
width: 140px !important;
}
.navbar .navbar-brand img{
width:150px;
}
}
@media screen and (min-width: 992px) {
.Menu-responsive {
width: 95%;
height: 300px;
position: absolute;
border-radius: 10px;
z-index: 150px;
top:90%;
left:900px;
display: none !important;
background-color: #660265;
transition: 0.4s ease-in;
/* left:450px; */
}
}
@media screen and (max-width: 991px) {
.navbar .navbar-brand{
width: 200px;
}
.navbar {
position: relative;
z-index: 5;
}
.Menu-responsive {
width: 95%;
height: 300px;
position: absolute;
border-radius: 10px;
z-index: 150px;
top:90%;
left:900px;
display: none;
background-color: #660265;
transition: 0.4s ease-in;
/* left:450px; */
}
.Menu-responsive.active{
left: 0% !important;
transition: 0.s ease-in;
}
.Menu-responsive .navbar-nav{
width: 100%;
height: 230px;
display: flex;
justify-content: space-around ;
align-items: center;
}
.Menu-responsive .navbar-nav .nav-link{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.2em;
color: #949494;
}
.Menu-responsive .d-flex{
position: absolute;
width: 100%;
top: 80%;
margin-left: 0px auto;
display: flex;
justify-content: center !important;
}
}
@media screen and (max-width: 370px){
.Menu-responsive .d-flex .btn{
width: 115px;
height: 35px;
font-size: 0.8em;
}
}
@media screen and (min-width: 992px){
.Menu-responsive.active{
display: none !important;
}
}
@media screen and (max-width: 1024px){
.navbar .collapse .navbar-nav .nav-link{
font-size: 16px !important;
}
.slide .slide_bloc .bloc{
width: 141px !important;
height: 157px !important;
}
.slide .slide_bloc .bloc h3{
font-size: 2em !important;
}
.plusdeclass {
/* left: 93% !important; */
}
.navbar .btn{
font-size: 14px !important;
}
.navbar .btn2{
margin-left: 5px !important;
}
.navbar-expand-lg .navbar-nav .nav-link{
padding-right: 0.2rem !important;
padding-left: 0.2rem !important;
}
}
.navbar .collapse .navbar-nav .nav-link{
color: #949494 !important;
padding-right: 13px;
font-size: 1em;
}
.navbar .collapse span{
font-size: 0.9em;
}
.navbar .btn{
background-color: #660265;
color: #fff;
border: 1px solid #fff !important;
border-radius: 8px !important;
transition: 0.3s ease-in;
display: block;
font-size: 1.1em;
font-family: 'MYRIADPRO-REGULAR';
}
/* .navbar .btn {
display: block;
font-size: 1.1em;
font-family: 'MYRIADPRO-REGULAR';
} */
.navbar .btn span a{
text-decoration: none;
color:#fff;
}
.navbar .btn:hover{
background-color: #fff;
color: #fff;
background-color: #e7b834;
border-radius: 8px !important;
}
.navbar .btn2{
background-color: #fff !important;
width: 122px;
color: #660265 !important;
border: 1px solid #660265 !important;
border-radius: 8px !important;
margin-left: 10px;
}
.navbar .btn2 a{
text-decoration: none;
color: #660265 !important;
}
.navbar .btn2:hover{
background-color: #fff;
color: #fff !important;
background-color: #660265 !important;
transition: 0.3s ease-in;
}
.navbar .btn2:hover a{
color: #fff !important;
}
/*
**
slide
**
*/
.slide{
width: 100%;
height: 450px;
position: relative !important;
margin-bottom: 150px;
border:none !important;
}
.owl-carousel{
z-index: 0 !important;
}
.slide .owl-carousel .owl-stage:after{
visibility: visible !important;
font-size: 4.5em !important;
}
.slide .owl-carousel .owl-stage{
width: 100%;
height: 100%;
visibility: visible !important;
font-size: 4.5em !important;
}
.slide .owl-dots{
width: 5%;
height: 150px;
/* border: 1px solid #fff; */
position: absolute;
display: flex;
justify-content: space-around;
top: 37%;
left:95%;
flex-direction: column;
}
.slide .owl-dots .owl-dot{
width: 15px;
height: 15px;
border-radius: 7px;
background-color: #fff !important;
outline: none;
}
.slide .owl-dots .owl-dot.active{
width: 15px;
height: 45px;
border-radius: 10px;
background-color: #e7b834 !important;
}
.slide .slide_content{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
overflow: hidden;
/* border: 1px solid #ccc; */
}
.slide img{
width: 100%;
height: 100%;
object-fit: cover;
}
@media only screen and (max-width: 768px) {
.slide{
width: 100%;
height: 179px;
position: relative !important;
}
.owl-carousel
.owl-item .slide-1{
width: 100% !important;
height: 233px !important;
object-fit: cover !important;
}
.slide .owl-carousel .owl-stage:after{
visibility: visible !important;
font-size: 4.5em !important;
}
.slide .owl-dots{
width: 5%;
height: 150px;
/* border: 1px solid #fff; */
position: absolute;
display: flex;
justify-content: space-around;
top: 12%;
left:95%;
display: flex !important;
}
.slide .owl-dots .owl-dot{
width: 12px;
height: 12px;
border-radius: 6px;
background-color: #fff !important;
}
.slide .owl-dots .owl-dot.active{
width: 12px;
height: 40px;
border-radius: 10px;
background-color: #e7b834 !important;
}
.slide .slide_content{
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
overflow: hidden;
border: 1px solid #ccc;
}
.slide img{
width: 100%;
height: 100%;
object-fit: cover;
}
.slide .slide_bloc {
width: 100% !important;
height: 364px !important;
padding: 22px;
/* border: 1px solid #000; */
top: 100% !important;
left: 0% !important;
justify-content: space-around !important;
flex-wrap: wrap;
}
.slide .slide_bloc .bloc{
width:210px !important;
height: 210px !important;
border-radius: 10px;
width: 139px !important;
height: 139px !important;
}
}
@media only screen and (max-width: 425px){
.thema .title{
margin-top: 568px !important;
text-align: center;
}
}
@media only screen and (max-width: 320px){
.slide .slide_bloc .bloc{
width: 120px !important;
height: 120px !important;
border-radius: 10px;
overflow: hidden;
position: relative;
cursor: pointer;
transition: 0.3s ease-in;
}
.slide .slide_bloc {
display: flex;
top:100%;
}
.slide .slide_bloc .bloc h3 {
font-size: 1.5em !important;
color: #fff;
font-family: 'MYRIADPRO-REGULAR';
margin-top: -13px;
text-align: center;
}
}
.slide .slide_bloc{
width: 60%;
height: auto;
/* border: 1px solid red; */
position: absolute !important;
top: 75%;
left: 20%;
display: flex;
justify-content: space-around;
}
.slide .slide_bloc .bloc{
width:180px;
height: 180px;
border-radius: 10px;
overflow: hidden;
position: relative;
cursor: pointer;
transition: 0.3s ease-in;
}
.slide .slide_bloc .bloc img{
width:25px;
height: 30px;
color: #fff;
position: absolute;
top: 10px;
left: 11px;
}
.slide .slide_bloc .bloc h3{
font-size: 2.5em;
color: #fff;
font-family: 'MYRIADPRO-REGULAR';
margin-top: -30px;
text-align: center;
}
@media screen and (max-width: 768px){
.slide .slide_bloc .bloc h3{
font-size: 1.8em;
color: #fff;
font-family: 'MYRIADPRO-REGULAR';
margin-top: -13px;
text-align: center;
}
}
.slide .slide_bloc .bloc h3::first-letter{
font-size: 2.5em;
color: #fff;
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
margin-right: -7px;
}
.slide .slide_bloc .bloc .img{
width: 140px;
height: 110px;
margin-left: -69px;
margin-top: -52px;
padding-top: 8px;
padding-left: 8px;
transform: rotate(-51deg);
background-color: #000;
opacity: 0.2 !important;
}
.slide .slide_bloc .bloc .img svg{
font-size: 1.5em;
color: #fff !important;
}
.slide .slide_bloc .bloc:hover{
transform: translateY(-10px);
}
@media screen and (max-width: 768px){
.plusdeclass a{
margin-top: -40px !important;
padding: 10px;
}
}
.plusdeclass{
width: 100%;
position: absolute;
height: auto;
top: 100%;
}
.plusdeclass a{
display: block;
text-align: center;
margin-top: 15px;
opacity: 0.6;
color: #660265;
font-family: 'MYRIADPRO-REGULAR';
font-size: 1em;
}
@media screen and (max-width: 460px){
.slide .slide_bloc{
/* width: 100px !important;
height: 100px !important; */
}
}
/*
**
classes
**
*/
.class{
width: 100%;
height: auto;
margin-bottom: 150px;
}
.class .bloc{
width: auto;
height: 270px;
background-color: #a2266430;
position: relative;
overflow: hidden;
border-radius: 10px;
}
.class .bloc .img{
width: 203px;
height: 111px;
margin-left: -69px;
margin-top: -52px;
padding-top: 8px;
padding-left: 8px;
transform: rotate(
-45deg
);
background-color: #000;
opacity: 0.2 !important;
}
.class .bloc h3{
font-size: 4em;
color: #000;
font-family: 'MYRIADPRO-BOLD';
margin-top: 30px;
text-align: center;
}
.class .bloc img{
width: 25px;
height: 30px;
color: #fff;
position: absolute;
top: 10px;
left: 11px;
}
/* .class .slide_bloc{
width: 100%;
height: auto;
}
.class .col-md-4{
margin-bottom: 24px !important;
} */
/* .class .slide_bloc .bloc{
width: 217px;
height: 217px;
border-radius: 10px;
overflow: hidden;
position: relative;
cursor: pointer;
transition: 0.3s ease-in;
background-color: #a2266430;
transition: 0.3s ease-in;
}
.class .slide_bloc .bloc:hover{
transform: translateY(-15px);
}
.class .slide_bloc .bloc .img{
width: 170px;
height: 110px;
margin-left: -69px;
margin-top: -52px;
padding-top: 8px;
padding-left: 8px;
transform: rotate(-40deg);
background-color: #000;
opacity: 0.2 !important;
}
.class .slide_bloc .bloc img{
width: 35px;
height: 35px;
object-fit: cover;
color: #fff;
position: absolute;
top: 10px;
left: 11px;
}
.class .slide_bloc .bloc h3{
font-size: 3em;
color: #000;
font-family: 'MYRIADPRO-BOLD';
margin-top: 20px;
text-align: center;
} */
/*
**
presente
**
*/
.presente{
width: 100%;
height: auto;
/* border:1px solid #000; */
margin-top: 125px;
margin-bottom: 55px;
padding: 23px 0px 23px 0px;
border-left: none;
border-right: none;
}
@media screen and (max-width: 768px){
.presente{
margin-top: 400px !important;
}
.presente iframe{
width: 100% !important;
height: 300px;
float: left !important;
}
.presente .text{
width: 100% !important;
justify-content: flex-start !important;
}
}
.presente iframe{
width: 81%;
height: 250px;
margin-top: 25px;
float: right;
}
.presente .text{
width: 81%;
height: 300px;
display: flex;
flex-direction: column;
justify-content: center;
}
.presente .text h3{
font-family: 'MYRIADPRO-BOLD';
font-size: 2em;
margin-top: 25px;
}
.presente .text p{
font-family: 'MYRIADPRO-REGULAR';
}
/*
**
thematique
**
*/
.thema{
width: 100%;
height: auto;
margin-top: 47px;
position: relative;
}
a{
text-decoration: none !important;
}
#myBtn{
width: 50px;
height: 50px;
border-radius: 50%;
display: none;
justify-content: center;
align-items: center;
float: right;
position: fixed;
top: 85%;
left: 95%;
z-index: 200;
background-color: #e7b834;
color: #fff;
border: none;
transition: 0.3s all ease-in;
outline: none;
}
#myBtn:hover{
color: #660265;
background-color: #fff;
border: none;
box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}
@media only screen and (max-width: 590px){
.thema-box{
margin-top: 200px !important;
}
}
@media only screen and (max-width: 768px){
.thema-box{
margin-top: -500px !important;
}
.thema{
width: 100%;
height: auto;
margin-top: -10px !important;
}
.thema_bg .right
.content .bloc {
width: 100% !important;
height: 71px;
border-radius: 7px;
margin-left: 0px !important;
background-color: #660265;
display: flex;
justify-content: space-around;
align-items: center;
cursor: pointer;
}
.thema .title{
margin-top: 420px;
text-align: center;
}
#myBtn{
width: 40px;
height: 40px;
border-radius: 50%;
display: none;
justify-content: center;
align-items: center;
float: right;
position: fixed;
top: 80%;
left: 85%;
z-index: 200;
background-color: #e7b834;
color: #fff;
border: none;
transition: 0.3s all ease-in;
outline: none;
}
}
.thema .title{
text-align: center;
}
.thema .title h3{
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
font-size: 2.2em;
color: #e7b834;
}
.thema .title p{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.3em;
}
.thema_bg{
/* background-color: #ededed; */
padding: 35px;
}
.thema_bg .left{
width: 76%;
height: auto;
float: right;
/* border: 1px solid #000; */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.thema_bg .left h3{
font-family: 'MYRIADPRO-BOLD';
font-size: 2em;
margin-top: 25px;
}
.thema_bg .left p{
font-family: 'MYRIADPRO-REGULAR';
}
.thema_bg .right{
width: 75%;
height: auto;
/* border: 1px solid #000; */
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
/* .thema .content_bloc .right .bloc{
width: 80%;
height: 50px;
border:1px solid #000;
} */
.thema_bg .right .content {
width: 100%;
height: 250px;
/* border:1px solid #000; */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
}
.thema_bg .right .content .icon-thema {
position: absolute;
/* left: 50%; */
cursor: pointer;
z-index: 200;
}
.thema_bg .right .content .icon-thema:hover {
opacity: 0.4;
}
.thema_bg .right .content #myVideo {
position: absolute;
cursor: pointer;
width: 100%;
height: auto;
}
.thema_bg .right .content .img-thema {
position: absolute;
height: auto;
width: 100%;
object-fit: cover;
z-index: 100;
}
.thema_bg .matiere
.matiere-content {
width: 100%;
height: 60px;
border-radius: 7px;
/* margin-left: 26px; */
padding-left: 40px;
background-color: #660265;
display: flex;
/* justify-content: space-around; */
align-items: center;
cursor: pointer;
transition: 0.3s ease-in;
}
.thema_bg .matiere
.matiere-content:hover {
background-color: #e7b834;
transform: scale(2deg);
}
.thema_bg .matiere
.matiere-content .img {
width: 50px;
height: 50px;
border-radius: 50%;
background-color: rgba(0, 0, 0, 0.3);
display: flex;
justify-content: center;
align-items: center;
}
.thema_bg .matiere
.matiere-content .img img {
height: 30px ;
}
.thema_bg .matiere
.matiere-content h4 {
font-family: 'MYRIADPRO-REGULAR';
color: #fff;
text-transform: uppercase;
font-size: 1em;
margin-left: 15px;
margin-bottom: 0px;
}
@media only screen and (max-width: 768px){
.thema_bg .left{
width: 100%;
height: auto;
float: left;
}
.thema_bg .right{
width: 100%;
height: auto;
}
.thema_bg .right
.content .bloc h4 {
width: 50% !important;
text-align: center;
margin-left: -80px !important;
}
}
/*
**
cours
**
*/
.cour .title{
text-align: center;
}
.cour .title h3{
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
font-size: 2.2em;
color: #660265;
margin-top: 48px;
}
.cour .title p{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.3em;
}
.cour .bloc{
width: 100%;
height: 345px;
/* border: 1px solid #000; */
}
@media screen and (max-width: 1024px){
.cour .col-md-3{
width: 33% !important;
}
}
@media only screen and (width: 768px){
.cour .col-md-3{
width: 50% !important;
}
}
@media screen and (max-width: 767px){
.cour .col-md-3{
width: 100% !important;
}
}
.cour .bloc .top{
width: 100%;
height: 45%;
position: relative;
cursor: pointer;
/* opacity:0.8; */
display: flex;
flex-direction: column;
background-color: rgba(188,7,98);
}
/* .cour .bloc .top:hover{
opacity: 0.5;
transition: 0.3s ease-in;
background-color: rgba(188,7,98, 0.5);
} */
.cour .bloc .top img{
width: 100%;
height: 100%;
object-fit: cover;
/* overflow: hidden; */
/* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}
.cour .bloc .top .img_top{
transition: 0.3s ease-in;
}
.cour .bloc .top .img_top:hover{
opacity: 0.7;
/* transform: scale(1.1); */
}
.cour .bloc .top .d_icon{
width: 65px;
height: 65px;
background-color: #e7b834;
position: absolute;
top:70%;
left:2%;
display: flex;
justify-content: center;
align-items: center;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.cour .bloc .top .d_icon img{
width: 30px !important;
height: auto;
}
.cour .bloc .top .d_name{
min-width: 120px;
height: auto;
background-color: #660265;
position: absolute;
top:90%;
right:0%;
display: flex;
align-items: center;
}
.cour .bloc .top .d_name span{
display: block;
color: #fff;
font-family: 'MYRIADPRO-REGULAR';
padding: 2px 7px;
}
.cour .bloc .bottom{
width: 100%;
min-height: 55%;
background-color: #f6f6f6;
object-fit: cover;
padding: 10px;
}
.cour .bloc .bottom h5{
padding-top: 20px;
font-size: 0.9em;
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
}
.cour .bloc .bottom .point{
width: 60%;
height: 20px;
margin-top: 12px;
margin-bottom: 12px;
display: flex;
align-items: center;
justify-content: space-around;
}
.cour .bloc .bottom .point .rond{
width: 12px;
height: 12px;
border-radius: 6px;
/* border: 1px solid #000; */
background-color: #ccc;
}
.cour .bloc .bottom .info{
min-height: 95px;
}
.cour .bloc .bottom .info span{
font-size: 0.9em;
display: inline-block;
margin-top: 10px;
margin-left: 5px;
font-family: 'MYRIADPRO-REGULAR';
vertical-align: middle;
}
.cour .bloc .bottom .info span img{
width: 17px;
vertical-align: middle;
}
/*
**
commity
**
*/
.commity{
width: 100%;
min-height: 260px;
margin-top: 104px;
margin-bottom: 100px;
position: relative;
}
.expert{
width: 100%;
height: 260px;
margin-top: 104px;
margin-bottom: 100px;
position: relative;
overflow: hidden;
background-image: url(../../img/s2.jpg);
background-size: 100%;
background-position: -10% -68%;
object-fit: contain;
}
.expert .overlay{
width: 100%;
height: 100%;
position: absolute;
top:0;
left:0;
background-color: #660265;
opacity: 0.7;
}
.dasbord_commity{
width: 100%;
min-height: 10px !important;
}
@media screen and (max-width: 768px){
.commity{
margin-bottom: 25px !important;
margin-top: 10px;
height: 280px !important;
}
.commity .content p{
color: #fff;
margin-top: -46px;
text-align: center;
font-size: 1.1em !important;
font-family: 'MYRIADPRO-REGULAR';
}
}
.commity img{
width: 100%;
min-height: 260px;
object-fit: cover;
}
.commity .content{
width: 80%;
height: auto;
position: absolute;
top: 30%;
left: 10%;
/* display: flex;
flex-direction: column;
align-items: center;
justify-content: center; */
}
.commity .content p{
color: #fff;
font-size: 1.3em;
text-align: center;
font-family: 'MYRIADPRO-REGULAR';
}
.commity .content a{
width:274px;
margin: 0px auto;
text-align: center;
padding: 7px 15px;
background-color: #e7b834;
text-decoration: none;
color: #000;
text-transform: uppercase;
font-family: 'MYRIADPRO-BOLD';
/* border: 2px solid #e7b834; */
display: block;
}
.commity .content a:hover{
color: #fff;
background-color:#660265;
transition: 0.3s ease-in;
}
/*
**
partner
**
*/ @media screen and (max-width:768px){
.partner{
margin-bottom: 85px !important;
}
}
.partner{
margin-bottom: 25px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.partner h3{
text-align: center;
text-transform: uppercase;
color: #660265;
font-family: 'MYRIADPRO-BOLD';
/* margin-bottom: 85px; */
font-size: 2.2em;
}
@media screen and (max-width:768px) {
.partner h3{
font-size: 1.6em !important;
}
.partner .partner_icon{
height: auto !important;
margin-top: 10px !important;
}
}
.partner .partner_icon{
width: 100%;
height: 504px;
margin-top: -10px;
display: flex;
justify-content: space-around;
align-items: center;
}
.partner .partner_icon img{
width: 100px;
border-radius:10px
}
.partner .owl-carousel .owl-stage:after{
visibility: visible !important;
font-size: 4.5em !important;
}
.partner .owl-dots{
height: 50px;
/* display: flex;
justify-content: space-around;*/
margin-top: 9px !important;
margin: 0px auto;
text-align: center;
}
.partner .owl-dots .owl-dot{
width: 10px;
height: 18px;
border-radius: 9px;
background-color: #660265 !important;
margin-left: 5px;
outline: none !important;
}
.partner .owl-dots .owl-dot.active{
width: 10px;
height: 18px;
border-radius: 9px;
background-color: #e7b834 !important;
outline: none !important;
}
/**
**
footer
**
*/
.bg-black{
background-color: #000;
}
.footer{
background-color: #000;
width: 100%;
min-height: 120px;
margin-top: -100px;
position: relative;
z-index: 100;
display: flex;
justify-content: space-around;
align-items: center;
}
.footer h6{
color: #fff;
font-family: 'MYRIADPRO-BOLD';
float:right;
line-height: 85px;
}
.footer img{
width: 100px;
}
@media screen and (max-width: 768px){
.footer{
padding-top: 30px;
margin-top: -59px !important;
}
.footer img{
margin-left: 20%;
}
.footer h6{
float: left !important;
margin-left: 50px;
}
}
/*
cours
*/
/*
**
cours_header
**
*/
@media only screen and (max-width: 768px){
.cour{
margin-top: 45px !important;
}
}
.cours_header {
width: 100%;
height: 260px;
overflow: hidden;
background-color: #660265;
}
.cours_header img{
opacity: 0.5;
}
.cours_header .content h3{
font-size: 5.5em !important;
text-align: center;
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
color: #fff;
}
@media screen and (max-width: 768px){
.cours_header .content h3{
font-size: 2.5em !important;
text-align: center;
line-height: 97px !important;
}
}
.cours_header{
margin-top: 20px;
}
.cour .fliltre form{
width: 70%;
height: auto;
margin-top: 50px;
margin-bottom: 40px;
display: flex;
align-items: center;
}
.cour .fliltre form select{
width: 220px;
height: 35px;
font-size: 1.1em;
font-family: 'MYRIADPRO-REGULAR';
background-color: #fdfdfd;
padding: 3px;
border: 1px solid #e4e1e1;
outline: none;
}
.cour .fliltre form .label{
margin-left: 45px;
}
.cour .top a{
display: block;
height: 100%;
}
/*
**
begin-cour
**
*/
.begin {
overflow: hidden;
}
.begin h5{
margin-bottom: 15px;
width: 100%;
height: 60px;
padding-top: 15px;
padding-left: 10px;
border: 1px solid #ccc;
z-index: 150;
background-color: #fff;
margin-bottom: 0px;
}
.begin-tabs .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
background-color: #fff !important;
border: 0px !important;
border-radius: 0px !important;
color: #000 !important;
border-bottom: 4px solid #7e1655 !important;
}
.begin h5{
margin-bottom: 15px;
width: 100%;
height: 60px;
padding-top: 15px;
padding-left: 10px;
border: 1px solid #ccc;
z-index: 150;
background-color: #fff;
margin-bottom: 0px;
display: flex;
justify-content: space-around;
}
.begin h5 img{
height: 13px;
margin-top: 8px;
cursor: pointer;
}
.hide{
margin-right: -800px !important;
transition: 0.3s ease-in;
}
.showContentCours{
margin-right: 0px;
transition: 0.3s ease-in;
}
.begin .bloc-right{
height: 950px;
position: relative;
overflow: hidden;
/* border:1px solid red; */
margin-bottom: 210px;
}
.begin .sty{
width:100%;
height: auto;
/* border: 1px solid #7e1655; */
/* position: sticky !important;
top:0px; */
border-radius: 10px;
}
.begin .right{
width:100%;
height: 460px;
border: 1px solid #fff;
overflow-y: scroll;
overflow-x: hidden;
align-items: center;
justify-content: center;
flex-direction: column;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.begin video{
/* border:1px solid #ccc; */
position: relative !important;
background-color: #7a345d;
}
.videiofulscreen{
width: 100% !important;
}
.begin .content-show{
width: auto;
position: absolute;
top: 30%;
left: 85%;
z-index: 100;
display: none;
transition: 0.3s ease-in;
border: 1px solid #ccc;
cursor: pointer;
padding: 2px 20px 2px 20px;
color: #fff;
border-radius: 10px;
}
.begin .content-show:hover{
transform: scale(1.05);
}
/*
**
scrollbar
**
*/
.begin ::-webkit-scrollbar {
width: 13px;
}
/* Track */
.begin ::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Handle */
.begin ::-webkit-scrollbar-thumb {
height: 13px;
background: #888;
}
/* Handle on hover */
.begin ::-webkit-scrollbar-thumb:hover {
background: #555;
}
.begin .right .accordion-body .bloc{
display: flex;
}
.accordion-body {
padding: 1rem 1.25rem;
height: auto;
}
.begin .right .accordion-body .bloc .left input{
width: 20px;
height: 20px;
}
.begin .right .accordion-body .bloc .midlle{
margin-left: 15px;
}
.begin .right .accordion-body .bloc .midlle a img{
margin-left: -7px;
vertical-align: middle;
margin-right: 10px;
}
.begin .right .accordion-body .bloc
.midlle span img{
height: 15px;
}
.begin .accordion-button{
height: 80px !important;
border-radius: 0px !important;
/* display: flex; */
/* flex-direction: column;
align-items: start; */
}
.begin .accordion-button .title{
display: flex;
flex-direction: column;
align-items: start;
}
.begin .accordion-button span:nth-child(1){
margin-top: 10px;
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.2em;
}
.begin .accordion-button span:nth-child(2){
margin-top: 10px;
font-size: 0.9em;
}
accordion-button:focus {
box-shadow: none !important;
}
.begin a{
border: 1px solid #7e1655;
color: #000;
padding: 2px 14px;
float: right;
margin-left: 75px;
margin-top: 5px;
}
.begin a:hover{
color: #000;
}
.begin a img{
height: 13px;
margin-left: 15px;
}
.begin .accordion-button:not(.collapsed) {
background-color: #e9dee5;
color: #000 !important;
}
.begin .accordion-button:focus {
box-shadow:none !important
}
.begin-tabs ul{
width: 95%;
margin: 0px auto;
border-bottom: 1px solid #ccc;
display: flex !important;
justify-content: flex-start;
}
.begin-tabs ul .nav-link{
border: 0px !important;
background-color: #fff !important;
font-size: 1.1em !important;
width: 125px;
}
.begin-tabs ul .nav-link img{
width: 20px;
height: 20px;
}
.begin-tabs #pills-tabContent .search-container{
/* border: 1px solid #000; */
height: 300px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.begin-tabs #pills-tabContent .search-container .searchbar{
display:flex;
align-items: center ;
justify-content:center;
height: 54px;
overflow: hidden;
}
.begin-tabs #pills-tabContent
.search-container input{
width: 600px;
height: 55px;
margin-top: 3px;
background-color: #f2f3f5;
border: 1px solid #f2f3f5;
outline: none;
}
.begin-tabs #pills-tabContent
.search-container input::placeholder{
padding-left: 15px;
}
.begin-tabs #pills-tabContent
.search-container button{
width: 45px;
height: 56px;
margin-left: -6px;
border: 1px solid #ccc;
background-color:#7e1655;
}
.begin-tabs #pills-tabContent
.search-container button img{
width: 20px;
}
.begin-tabs #pills-tabContent form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.begin-tabs #pills-tabContent
.search-container p{
text-align: center;
margin-top: 60px;
font-size: 1.2em;
font-family: 'MYRIADPRO-REGULAR';
}
.begin-tabs #pills-tabContent
.search-container p span:nth-child(1){
font-weight: bold;
font-family: 'MYRIADPRO-BOLD';
font-size: 1.2em;
}
.begin-tabs #pills-tabContent .obj-icon{
height: 16px;
}
.begin-tabs #pills-tabContent .question-reponse{
/* border: 1px solid #000; */
width: 765px;
margin: 0px auto;
height: 790px;
display: flex;
flex-direction: column !important;
justify-content: center;
align-items: center;
}
.begin-tabs #pills-tabContent
.question-reponse input{
width: 558px;
}
.begin-tabs #pills-tabContent
.question-reponse select{
width: 185px;
height: 40px;
padding: 0px 5px 0px 5px;
border: 1px solid #ccc;
color: rgb(122, 117, 117);
text-align: center;
}
.begin-tabs #pills-tabContent
.question-reponse .question{
width: 560px;
height: auto;
}
.begin-tabs #pills-tabContent
.question-reponse .question .title h3{
font-size: 1.3em !important;
border-bottom: 1px solid #ccc;
padding: 12px;
margin-bottom: 25px;
}
.begin-tabs #pills-tabContent
.question-reponse .question .content-msg{
display: flex;
justify-content: center;
border-bottom: 1px solid #ccc;
padding-bottom: 15px;
}
.begin-tabs #pills-tabContent
.question-reponse .question .content-msg .left img{
width: 40px;
height: 40px;
border-radius: 50%;
margin-right: 15px;
}
.begin-tabs #pills-tabContent
.question-reponse .question .content-msg p{
margin: 0px !important;
font-size: 1.1em;
text-align: justify;
}
.begin-tabs #pills-tabContent
.question-reponse .question .content-msg p:nth-child(1){
cursor: pointer;
}
.begin-tabs #pills-tabContent
.question-reponse .question .content-msg .midlle p:nth-child(2){
margin: 0px !important;
font-size: 1em;
text-align: justify;
color: #ccc;
}
.begin-tabs #pills-tabContent
.question-reponse .question .content-msg .midlle span{
display: block;
font-size: 0.8em;
margin-top: 18px;
}
/*
**
page abonnement
**
*/
.abonnement {
width: 100%;
height: auto;
}
.abonnement .title{
width: 70%;
margin:0px auto;
}
.abonnement h3{
width: 100%;
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
text-align: center;
color: #e7b834;
}
.abonnement p{
width: 100%;
font-family: 'MYRIADPRO-REGULAR';
text-align: center;
}
.abonnement .abn_content{
width: 100%;
height: auto;
margin-bottom: 150px;
margin-top: 45px;
margin-left: 14px;
}
@media screen and (width: 1024px){
.abonnement .bottom .bloc ul li{
font-size: 1em !important;
}
.abonnement .blox{
margin-top: 24px !important;
}
}
@media screen and (max-width: 768px){
.abonnement .bottom .bloc ul li{
font-size: 1.1em !important;
}
}
.abonnement .blox{
width: 250px;
height: 454px;
padding-bottom: 25px;
border-radius: 10px;
border:1px solid #ccc;
}
.abonnement .blox a{
display: block;
text-align: center;
margin-top: 25px;
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.2em;
}
.abonnement .blox .btn-outline-success{
border-color: #e7b834 !important;
color: #e7b834 !important;
}
.abonnement .blox .btn-outline-success{
border-color: #e7b834 !important;
color: #e7b834 !important;
width: 100%;
}
.abonnement .blox .btn-outline-success:hover{
background-color: #e7b834 !important;
color: #fff !important;
}
.abonnement .blox .left{
border-color: #e7b834 !important;
color: #e7b834 !important;
}
.abonnement .blox .left:hover{
background-color: #e7b834 !important;
color: #fff !important;
}
.abonnement .blox .perfobasic{
border-color: #747ae8 !important;
color: #747ae8 !important;
}
.abonnement .blox .perfobasic:hover{
background-color: #747ae8 !important;
color: #fff !important;
}
.abonnement .blox .perfoexel{
border-color: #660265 !important;
color: #660265 !important;
}
.abonnement .blox .perfoexel:hover{
background-color: #660265 !important;
color: #fff !important;
}
@media screen and (max-width: 768px){
.abonnement .abn_content{
width: 100%;
height: auto !important;
margin-bottom: 100px !important;
/* margin-top: 45px; */
}
.abonnement .blox{
float: left !important;
/* margin-left: 45px !important; */
margin-top: 35px;
}
}
.abonnement .blox{
width: 88%;
float: left !important;
margin-top: 35px;
}
/* .abonnement .blox:hover{
transform: scale(1.05);
transition: 0.3s ease-in;
} */
.abonnement .blox .top{
width: 100%;
height: 70px;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
background-color:#747ae8;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.abonnement .blox .top span:nth-child(1){
font-size: 1.7em;
text-transform: uppercase;
}
.abonnement .blox .top span:nth-child(2){
font-size: 1em;
font-family: 'MYRIADPRO-REGULAR';
}
.abonnement .blox .top span{
display: block;
color: #fff;
font-family: 'MYRIADPRO-BOLD';
}
.abonnement .blox .top span h3{
color: #fff;
}
.abonnement .bottom {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.abonnement .bottom .ab_trait{
width: 60px;
border: 1px solid #ccc
}
.abonnement .bottom .abonnementfirst-box{
margin-top: 79px !important;
}
.abonnement .bottom .bloc{
width: 100%;
/* display: flex;
justify-content: space-around;
align-items: center; */
padding-left: 15px;
padding-top: 5px;
margin-top: 15px;
}
.abonnement .bottom .bloc ul{
width: 290px;
display: flex;
align-items: center;
justify-content: space-around;
padding: 0;
}
.abonnement .bottom .bloc ul svg{
color: green !important;
}
.abonnement .bottom .bloc ul .delte{
color: red !important;
}
@media screen and (max-width: 320px){
.abonnement .bottom .bloc ul li{
font-size: 1.1em ;
}
}
.abonnement .bottom .bloc ul li{
width: 300px;
list-style: none;
font-size: 1.1em;
font-family: 'MYRIADPRO-REGULAR';
}
.abonnement .bottom .bloc ul li .pop-up1{
width: 28px;
height: 28px;
border-radius: 50%;
border: 1px solid #ccc;
display:inline-block;
text-align: center;
line-height: 28px;
background-color: #660265;
color: #fff;
vertical-align: middle;
margin-left: 10px;
transition: 0.3s ease-in;
cursor: pointer;
}
.abonnement .bottom .bloc ul li .pop-up1:hover{
background-color: #fff;
border-color: #660265;
color: #660265;
}
.abonnement .bottom .bloc ul li .pop-up2:hover{
background-color: #fff;
border-color: #660265;
color: #660265;
}
.abonnement .bottom .bloc ul li .pop-up2{
width: 28px;
height: 28px;
border-radius: 50%;
border: 1px solid #ccc;
display:inline-block;
text-align: center;
line-height: 28px;
background-color: #660265;
color: #fff;
vertical-align: middle;
margin-left: 10px;
transition: 0.3s ease-in;
cursor: pointer;
}
.abonnement .bottom .bloc .pop-upcontent1{
width: 300px;
height: 150px;
background-color: #fff;
border: 1px solid #ccc;
position: absolute;
margin-top: -195px;
margin-left: 250px;
z-index: 100;
padding: 20px;
display: none;
transition: cubic-bezier(0.86,-0.13, 0.58, 1);
}
.abonnement .bottom .bloc .pop-upcontent2{
width: 300px;
height: auto;
background-color: #fff;
border: 1px solid #ccc;
position: absolute;
margin-top: -290px;
margin-left: -32;
z-index: 100;
padding: 20px;
display: none;
transition: cubic-bezier(0.86,-0.13, 0.58, 1);
}
.abonnement .bottom .bloc .pop-upcontent p{
text-align: justify;
}
.abonnement .bottom .bloc ul li:nth-child(1){
width: 50px;
list-style: none;
}
.abonnement .bottom .pricing{
width: 70%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.abonnement .bottom .pricing h4{
font-family: 'MYRIADPRO-BOLD';
}
/*
**
conseil expert
**
*/
.advice{
height: auto;
margin-bottom: 150px;
}
.advice .blog{
border:1px solid rgb(223, 223, 223);
color: #000;
border-radius: 10px;
/* background-color: rgb(197, 197, 197); */
}
.advice .blog img{
height:325px;
}
.advice .blog .b_right {
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
padding-left: 15px;
}
.advice .blog .b_right a{
color: #fff;
font-family: 'MYRIADPRO-BOLD';
}
.advice .blog .b_right P{
font-size: 1.1em;
font-family: 'MYRIADPRO-REGULAR';
}
.advice .blog .b_right .item{
width: 140px;
padding: 7px 14px;
background-color: #e7b834;
transition: 0.3s ease-in;
}
.advice .blog .b_right .item1{
color: #000;
font-family: 'MYRIADPRO-BOLD';
}
.advice .blog .b_right .item:hover{
opacity: 0.8;
}
/*
.advice .blog2 .b_right{
padding-left: 25px;
} */
.advice svg{
margin-left: 15px;
}
@media screen and (max-width: 425px){
.advice .blog{
height: auto !important;
padding-bottom: 25px !important;
}
}
@media screen and (max-width: 768px){
.advice .blog{
height: 590px;
}
.advice .blog img {
/* height: 250px; */
width: 100%;
object-fit: cover;
}
.advice .blog .b_right .item{
margin-top:-10px !important;
}
}
/*
**
rejoingnez nos expert
**
*/
.expertform{
width: 100%;
height: 600px;
border: 1px solid #000;
margin-bottom: 150px;
}
.form-control:focus{
color: #7a345d !important;
background-color: #fff;
border-color: #7a345d !important;;
outline: 0;
box-shadow: none !important;
}
/*
**
article
**
*/
/*
**
sermon_detail
**
*/
.article{
height: 220px;
margin-bottom: 350px;
}
@media only screen and (max-width: 768px){
.article{
height: 400px;
}
.article .titlle h3{
font-family: helvetica;
font-size: 1.2em !important;
margin-top: 25px;
}
.article .legend{
width: 100%;
height: auto;
}
}
.article .titlle{
width: 100%;
height: 100px;
}
.article img{
width: 100%;
height: 350px;
object-fit: cover;
}
.article .titlle h3{
font-family: 'MYRIADPRO-BOLD';
font-size: 1.6em;
margin-top: 15px;
text-transform: uppercase;
}
.article .titlle a{
font-family: helvetica;
text-decoration: none;
color: #8ec92f;
margin-right: 7px;
}
.article .titlle span{
font-family: 'MYRIADPRO-REGULAR';
color: #ccc;
}
.article .legend{
width: 100%;
height: auto;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
margin-left: 1px;
display: flex;
justify-content: center;
align-items: center;
padding: 5px 0px;
}
.article .legend .bloc h5{
font-family: 'MYRIADPRO-REGULAR';
color: #ccc;
}
.article .legend .bloc h6{
font-family: 'MYRIADPRO-REGULAR';
}
.article .legend .s_midlle{
display: flex;
justify-content: space-between;
}
.article .legend .s_midlle .bloc h6{
font-family: 'MYRIADPRO-REGULAR';
color: #e7b834;
}
/* .sermon_detail .legend .s_right{
} */
.article .legend .s_right .bloc h6{
font-family: 'MYRIADPRO-REGULAR';
color: #e7b834;
}
.article-content p{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.1em;
}
.commentaire{
width: 100%;
height: auto;
margin-top: 3rem!important;
margin-bottom: 8rem;
}
@media only screen and (max-width: 768px){
.commentaire{
width: 100%;
height: auto;
margin-bottom: 5rem;
}
.commentaire .cmt-box img{
height: 50px !important;
width: 50px !important;
border-radius: 50% !important;
}
.commentaire .cmt-box .cmt-content{
width: 90%;
height: auto !important;
background-color: #f3f3f3;
margin-left: 15px;
padding: 12px !important;
}
.commentaire .cmt-box .cmt-content .top h5{
font-size: 0.8em !important;
}
.commentaire .cmt-box .cmt-content .top p{
font-size: 0.7em !important;
margin-right: 0px !important;
}
.commentaire .cmt-text{
font-size:0.9em !important;
}
.commentaire .cmt-box .cmt-content a{
text-decoration: none;
color: #fff;
padding: 4px 8px !important;
font-size: 0.8em !important;
background-color: #000;
}
.commentaire textarea{
width: 100%;
height: 160px !important;
margin-bottom: 20px;
outline: none;
border: 1px solid #ccc;
}
.commentaire input[ type='text'], input[ type='email']{
width:100% !important;
height: 40px !important;
outline: none;
margin-right: 15px;
border: 1px solid #3333 !important;
}
.commentaire input[ type='email']{
width:100% !important;
height: 40px !important;
outline: none;
margin-right: 15px;
margin-top: 10px;
}
.commentaire button{
width: 100px !important;
margin-left: 0px !important;
height: 35px !important;
margin-top: 15px;
border:none;
color: #fff;
opacity: 0.8;
}
.commentaire button:hover{
width: 29% !important;
transition: 0.3s ease-in;
opacity: 1;
}
.commentaire ::placeholder {
padding-top: 25px !important;
padding-left: 10px !important;
font-size: 0.8em !important;
font-family: 'MYRIADPRO-REGULAR';
}
.commentaire h3{
width: 100%;
height: 36px !important;
font-family: 'MYRIADPRO-REGULAR';
border-bottom: 1px solid #ccc;
}
}
.commentaire h3{
width: 100%;
height: 40px;
font-size: 1.7em;
border-bottom: 1px solid #ccc;
margin-bottom: 30px;
}
.commentaire h3::after{
content:' ';
width: 15%;
height: 8px;
border-bottom: 5px solid #e7b834;
display: block;
top:-25px;
}
.commentaire .cmt-box{
width: 100%;
height: auto;
font-family: 'MYRIADPRO-REGULAR';
display: flex;
box-sizing: border-box;
}
.commentaire .cmt-box img{
width: 60px;
height: 60px;
border-radius: 50%;
}
.commentaire .cmt-box .cmt-content{
width: 90%;
height: 150px;
background-color: #f3f3f3;
margin-left: 15px;
padding: 25px;
}
.commentaire .cmt-box .cmt-content .top{
display: flex;
justify-content: space-between;
}
.commentaire .cmt-box .cmt-content .top h5{
font-weight: bold;
font-family: bold;
}
.commentaire .cmt-box .cmt-content .top p{
font-family: 'MYRIADPRO-REGULAR';
color: #ccc;
margin-right: 28px;
}
.commentaire .cmt-box .cmt-content a{
text-decoration: none;
color: #fff;
padding: 5px 11px;
font-size: 0.9em;
background-color: #000;
}
.commentaire textarea{
width: 100%;
height: 220px;
margin-bottom: 20px;
border-color: #ccc;
outline: none;
}
.commentaire input{
width:40%;
height: 50px;
outline: none;
margin-right: 15px;
border:1px solid #ccc;
outline: none;
}
.commentaire button{
width:12%;
margin-left: 46px;
height: 40px;
background-color:#e7b834;
border:none;
font-size: 1.2em;
color: #fff;
transition: 0.3s ease-in;
}
.commentaire button:hover{
background-color: #660265;
}
.commentaire ::placeholder {
padding-top: 25px;
padding-left: 25px;
font-size: 1em;
font-family: 'MYRIADPRO-REGULAR';
}
/*
**
A propos
**
*/
.apropos{
height: auto;
margin-bottom: 150px;
}
.apropos .title {
display: flex;
align-items: center;
justify-content: space-around;
margin-bottom: 12px;
margin-top: 30px;
}
@media only screen and (max-width: 768px){
.apropos .title .cover{
width: 100% !important;
height: 50px;
/* border: 1px solid #000; */
position: relative;
}
.apropos .title .cover span{
width: 300px !important;
}
.apropos .title h4{
width: 270px !important;
left: 5% !important;
}
}
/* .apropos .title .cover{
width: 30%;
height: 50px;
border: 1px solid #000;
position: relative;
} */
/* .apropos .title .cover span{
width: 330px;
height: 81px;
border-top-left-radius: 10px;
border-top-right-radius: 60px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 60px;
display: block;
position: absolute;
background-color: #660265;
} */
.apropos .title h4{
color: #000;
font-family: 'MYRIADPRO-BOLD';
}
.apropos p{
text-align: justify;
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.2em;
}
/*
**
Contact
**
*/
.contact{
height: auto;
margin-bottom: 250px;
}
.contact_title h4{
font-size: 4.2em !important;
text-align: center;
font-family: 'MYRIADPRO-BOLD';
text-transform: uppercase;
color: #fff;
}
.contact h3{
font-family: 'MYRIADPRO-BOLD';
font-size: 2em;
}
.contact p{
font-family: 'MYRIADPRO-REGULAR';
}
.contact .soulign{
width: 12%;
display: block;
border: 1px solid #000;
margin-top: 20px;
}
.contact hr{
width: 50%;
border: 2px solid #000;
}
.contact p{
border-bottom: 1px solid #ccc;
padding: 30px 30px 30px 0px;
}
.contact .bloc{
display: flex;
align-items: center;
border-bottom: 1px solid #ccc;
padding: 20px 30px 30px 0px;
}
.contact .bloc h6{
font-family: 'MYRIADPRO-BOLD';
font-size: 1.2em;
}
.contact .bloc span{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.1em;
}
.contact .bloc img{
height: 25px;
vertical-align: middle;
}
.contact .bloc .content{
margin-left: 15px;
}
.contact input{
width: 100%;
height: 50px;
margin-bottom: 30px;
border: 1px solid #ccc;
}
.contact textarea{
width: 100%;
height: 250px;
margin-bottom: 15px;
border: 1px solid #ccc;
padding-left: 15px;
font-family: 'MYRIADPRO-REGULAR';
color: rgb(44, 43, 43);;
}
.contact button{
width: 150px;
height: 45px;
background-color: #660265;
border:none !important;
color: #fff;
font-size: 1.2em;
padding-left: 15px !important;
transition: 0.3s ease-in;
}
.contact button:hover{
opacity: 0.7;
}
.contact ::placeholder{
padding-left: 15px;
font-family: 'MYRIADPRO-REGULAR';
color: rgb(44, 43, 43);
}
/*
**
formilaire inscription
**
*/
@media screen and (max-width:768px) {
.inscription{
width: 100%;
min-height: 600px;
margin-top: 25px !important;
margin-bottom: -75px;
}
.inscription .title{
padding-left: 0px !important;
padding-top: -0px !important;
padding-bottom: 25px;
}
.inscription form {
width: 91%;
min-height: 400px !important;
margin-left: 0px !important;
padding: 0px !important;
}
.inscription form input{
width: 100% !important;
height: 48px;
margin-top: 20px;
border: 1px solid #ccc;
/* border-bottom: 2px solid rgb(92, 87, 87); */
background-color: #fefeff !important;
}
.inscription .left img{
height: 850px !important;
margin-top: -150px !important;
}
.inscription form a{
float: right !important;
display: block !important;
margin-bottom: 15px;
}
.inscription form .form-check input{
width: 20px !important;
height: 20px !important;
margin-top: 20px;
vertical-align: middle;
}
.inscription .left{
height: 775px !important;
}
}
.inscription{
width: 100%;
min-height: 600px;
margin-top: 65px;
margin-bottom: -75px;
/* box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px; */
}
.inscription .title{
padding-left: 95px;
padding-top: 35px;
padding-bottom: 25px;
}
.inscription .title h3{
font-family: 'MYRIADPRO-BOLD';
font-size: 2.5em;
}
.inscription .title P{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.3em;
}
.inscription .left{
height: 675px;
}
.inscription form {
width: 91%;
height: auto;
/* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
margin-left: 50px;
padding-bottom: 162px !important;
}
.inscription form input{
width: 484px;
height: 48px;
margin-top: 20px;
border: 1px solid #ccc;
/* border-bottom: 2px solid rgb(92, 87, 87); */
background-color: #fefeff !important;
padding-left: 15px !important;
}
.inscription ::placeholder {
padding-left: 15px;
font-size: 1em;
font-family: 'MYRIADPRO-REGULAR';
}
.inscription form .form-check {
display: flex;
align-items: center;
padding: 0px !important;
}
.inscription form .form-check input{
width: 20px;
height: 20px;
margin-top: 20px;
vertical-align: middle;
border: 1px solid #ccc;
}
.inscription form .form-check .ins-condition {
height: 20px;
display: flex;
justify-content: center;
align-items: center;
margin-top: 20px;
}
.inscription form .form-check label{
margin-top: 15px;
margin-left: 10px;
font-family: 'MYRIADPRO-REGULAR';
}
.inscription form .form-check .ins-condition a{
margin-top:0px;
margin-left:3px;
text-decoration: none;
color: #000;
font-family: 'MYRIADPRO-BOLD';
}
.inscription form .form-check label a{
float: right !important;
display: block;
margin-left: 215px;
}
.inscription form button{
text-transform: uppercase;
background-color: #e7b834;
padding: 5px 14px;
border-radius: 5px;
border: none;
margin-bottom: 15px;
margin-top: 15px;
font-family: 'MYRIADPRO-BOLD';
color: #fff;
transition: 0.3s ease-in;
}
.inscription form button:hover{
background-color: #e7b834;
}
.inscription .left img{
width: 100%;
height:760px;
object-fit: cover;
margin-top: -58px;
position: relative;
z-index: 2;
}
/*
**
conexion
**
*/
.cnx .cnx-btn{
background-color:#660265;
}
.cnx .left img{
height: 640px !important;
}
@media screen and (max-width:768px){
.cnx .left img{
height: 850px !important;
margin-top: -140px !important;
}
.inscription form .form-check label a{
float: right !important;
display: block;
margin-left: 215px;
margin-bottom: 0px;
}
@media screen and (max-width:320px){
.inscription form .form-check label a{
float: right !important;
display: block;
margin-left: 126px;
}
}
@media screen and (max-width:379px){
.inscription form .form-check label a{
float: right !important;
display: block;
margin-left: 202px;
}
}
@media screen and (max-width:768px){
.inscription form .form-check label a{
float: right !important;
display: block;
margin-left: 72px;
padding-left: 30px;
}
}
@media screen and (max-width: 538px){
.inscription form .form-check {
margin-left: 0px !important;
display: flex;
flex-wrap: wrap;
}
.inscription form .form-check a {
margin-left: 0px !important;
}
}
}
/*
**
connexion2
**
*/
/* section .expertformumlaire{
box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
} */
section{
margin-bottom:160px !important;
}
section .box{
width: 570px;
height: 626px;
}
section .input{
background: #fff;
border: .3px solid #e7e7e7;
padding: .5rem 1.1rem;
height: auto;
display: block;
font-size: 1rem;
width: 100%;
}
.form-control:focus{
border-color: none !important;
}
.form-control{
border-radius: 0px !important;
}
section .label{
font-weight: 700;
margin: 1rem 0 .3rem;
text-transform: uppercase;
letter-spacing: .01rem;
font-size: .9rem;
color: #70767c;
font-family: 'MYRIADPRO-REGULAR';
}
::placeholder{
font-size: .9rem;
}
section .purple-btn{
padding: 5px 14px;
border-radius: 5px;
border:none !important;
background-color: #660265;
color: #fff;
font-family: 'MYRIADPRO-BOLD';
float: left !important;
font-size: 1.1em;
}
section .purple-btn:hover{
opacity: 0.8;
}
section .purple-outline-btn-lg{
width: 100%;
display: block;
padding: 15px 14px;
border: 1px solid #660265;
color: #660265 !important;
font-family: 'MYRIADPRO-BOLD';
font-size: 1.2em;
transition: 0.3s ease-in;
}
section .purple-outline-btn-lg:hover{
color: #fff !important;
background-color: #660265;
}
section img{
width: 100%;
height: 100%;
object-fit: cover;
}
/*
**
dashbord
**
*/
/* .dashbord{
position: absolute;
} */
.dashbord_content{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
}
.dashbord_content h3{
margin-top: -20px;
}
.dashbord_content span{
margin-left: 15px;
margin-top: -30px;
display: block;
text-align: center;
color: #fff;
font-family: 'MYRIADPRO-BOLD';
font-size: 1.5em;
}
.dashbord li{
color: #660265;
text-transform: uppercase;
font-weight: bold;
font-family: 'MYRIADPRO-REGULAR';
list-style: none;
font-size: 1.4em;
padding: 0px !important;
}
.dashbord .reprendre-slide .bloc{
width: 300px !important;
}
@media screen and (max-width:1366px) {
.dashbord .reprendre-slide .bloc{
width: 260px !important;
}
}
.dashbord .reprendre-slide .owl-dots{
width: 20%;
height: 50px;
position: absolute;
top: 100%;
left: 47%;
display: flex !important;
}
@media screen and (max-width:768px){
.dashbord .reprendre-slide .owl-dots{
width: 55%;
left: 27%;
margin-bottom: 275px;
}
.dashbord .reprendre-slide{
margin-bottom: 75px;
}
}
.dashbord .reprendre-slide .owl-dots .owl-dot{
display: block;
width: 14px !important;
height: 14px !important;
border-radius: 7px !important;
background-color: #e7b834 !important;
margin-left: 5px;
}
.dashbord .reprendre-slide .owl-dots .owl-dot.active{
width: 14px;
height: 14px;
border-radius: 7px;
background-color: #660265 !important;
}
@media screen and (max-width:768px) {
.dashbord .reprendre-slide .bloc{
width: 100% !important;
/* margin-left: 25px; */
}
}
.nav{
width: 55%;
display: flex;
justify-content: space-around;
}
@media screen and (max-width: 768px){
.nav{
width: 100% !important;
display: flex;
justify-content: space-around;
margin-bottom: -105px;
}
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link{
background-color: #660265 !important;
border: 0px !important;
border-radius: 0px !important;
color: #fff !important;
}
.nav-pills .nav-link{
width: 150px;
padding: 7px 15px !important;
border:1px solid #ccc !important;
border-radius: 5px !important;
background-color: #f8f9fa !important;
border: solid 1px #dddddd !important;
font-size: 0.9em !important;
font-family: 'MYRIADPRO-REGULAR';
color: #000 !important;
margin-top: 25px;
padding-bottom: 5px;
}
.nav-pills .nav-link{
border-radius: 0px !important;
}
/*
**
welcome
**
*/
@media screen and (max-width:768px) {
.welcome .bloc{
margin-top: 00px !important;
height: auto !important;
margin-bottom: 35px;
}
.welcome .bloc{
width: 100%;
height: 187px;
margin-top: 70px;
display: flex;
flex-direction: column;
/* align-items: center;
justify-content: center; */
/* border: 1px solid #000; */
}
.welcome .bloc img{
width: 50%;
margin-left: 40px;
display: block !important;
}
.welcome h4{
margin-left: 100px;
}
}
.welcome .bloc{
width: 100%;
height: 187px;
margin-top: 70px;
display: flex;
flex-direction: column;
/* border: 1px solid #000; */
}
.welcome .bloc a{
text-decoration: none;
color: #000;
transition: 0.3s ease-in;
}
.welcome .bloc a:hover{
opacity:0.6;
}
.welcome .bloc .top{
width: 100%;
height: 87%;
display: flex;
justify-content: center;
align-items: center;
}
.welcome .bloc .top h1{
font-family: 'MYRIADPRO-BOLD';
text-align: center;
line-height: 200px;
color: #ffff;
font-size: 3.5em;
/* opacity: 0.5; */
}
.welcome .bloc img{
width: 70% !important;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.welcome h4{
width: 115px;
font-size: 1.3em;
text-align: center;
margin-top: 15px;
font-family: 'MYRIADPRO-REGULAR';
}
/*
**
presentation
**
*/
.presentation{
margin-bottom: 50px !important;
}
.presentation h4{
font-size: 2.5em;
color: #fff;
text-transform: uppercase;
margin-top: 25px;
text-align: center;
font-family: 'MYRIADPRO-BOLD';
}
.presentation-content .bloc1{
width: 100%;
}
.presentation-content .col-md-3{
min-height: 474px !important;
}
.presentation-content .bloc1 iframe{
width: 95%;
height: 350px;
}
.presentation-content{
height: auto;
}
.presentation-content .bloc2{
width: 100%;
height: 469px;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
padding: 7px;
top: 10px;
position: sticky;
}
.masquer{
display: none;
transition: 0.8s ease-in !important;
}
.bloc_show {
display: block !important;
transition: 0.8s ease-in !important;
}
@media screen and (max-width:768px) {
.bloc_show {
display: none !important;
transition: 0.8s ease-in;
}
.masquer{
display: block;
transition: 0.8s ease-in;
}
}
.presentation-content .bloc3{
width: 20.05% !important;
height: 469px !important;
position:fixed !important;
background-color: #fff;
top:0%;
z-index: 200;
}
.presentation-content .bloc2 .img{
width: 100%;
min-height: 32%;
/* background-color:#660265; */
}
.presentation-content .bloc2 .img img{
height: 195px;
object-fit: cover;
}
.presentation-content .bloc2 ul{
height: 189px;
/* border: 1px solid #000; */
display: flex;
flex-direction: column;
justify-content: space-evenly;
padding-right: 32px;
}
.presentation-content .bloc2 img{
height: 15px;
margin-right: 10px;
}
.presentation-content .bloc2 ul li{
list-style: none;
font-size: 0.8em;
font-family: 'MYRIADPRO-REGULAR';
}
.presentation-content .bloc2 ul button{
width: 100%;
border-color:#660265;
color: #660265;
font-family: 'MYRIADPRO-BOLD';
font-size: 1.1em;
margin-top: 20px;
}
.presentation-content .bloc2 a{
background-color:#660265;
border-color:#660265;
color: #fff;
font-family: 'MYRIADPRO-BOLD';
font-size: 1em;
text-transform: uppercase;
margin-top: 20px;
display: block;
}
.presentation-content .bloc2 a:hover{
background-color: #e7b834;
border-color: #e7b834;
transition: 0.3s ease-in;
}
.presentation-content .bloc2 ul button:hover{
background-color:#660265;
color: #fff;
}
.presentation-content .obj-icon{
width: 13px;
margin-right: 10px;
}
.presentation-content h3{
font-family: 'MYRIADPRO-BOLD';
margin-bottom: 25px;
color:#660265;
text-transform: uppercase;
}
.presentation-content span{
font-family: 'MYRIADPRO-REGULAR';
font-size: 1.1em;
}
.presentation-content .accordion-item img{
width: 20px;
vertical-align: middle;
margin-right: 15px;
}
.presentation-content .accordion-body a{
color: #000 !important;
text-decoration: none;
}
.presentation-content .accordion-body a:hover{
color: #660265 !important;
}
.presentation-content .accordion-item button{
font-family: 'MYRIADPRO-REGULAR'!important;
font-size: 0.6em;
}
.accordion-button::after{
color: #000 !important;
}
.presentation-content .accordion-button:not(.collapsed){
background-color: #e9dee5;
color:#000 !important;
}
.accordion-button:not(.collapsed)::after {
background-image: url(../../img/down-chevron.png) !important;
transform: rotate(180deg);
} | 0.238373 | 0.041696 |
:root {
--white: #fefefe;
--main-color: #f7f7f7;
--main-back-color: #333;
--ccc-color: #ccc;
--unique-color: rgb(99, 45, 80);
--main-bord-color: #d9d9d9;
--smoke-color: whitesmoke;
--comments-left-border-color: #d4d4d4;
--main-hover-color: blue;
--buttom-hover: rgba(99, 45, 80, 0.75);
--buttom-active:rgba(99, 45, 80, 0.5);
}
#logo {
display: block;
background: url(/img/logo.PNG) no-repeat;
background-size: contain;
height: 34px;
width: 146px;
margin-left: 19px;
}
header {
height: 70px;
background: var(--white);
border-bottom: 1px solid var(--main-back-color);
display: flex;
align-items: center;
}
.container {
/* align-content: stretch;
align-items: stretch; */
display: flex;
justify-content: center;
margin: 0;
min-height: 380px;
padding: 0 0 54px;
}
body {
background: #f7f7f7;
margin: 0;
}
.drag {
background: rgba(249, 244, 245, 0.79);
}
.restriction {
color: #858585;
font-size: 13px;
line-height: 22px;
margin: 16px 0 0;
}
html {
font-family: -apple-system,BlinkMacSystemFont,Arial,sans-serif;
}
.container-inner {
max-width: 1100px;
width: 100%;
padding: 40px 70px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.dropzone {
align-items: center;
align-self: center;
display: flex;
flex-direction: column;
max-width: 960px;
width: 100%;
margin-top: 20%;
}
.dropzone-inner {
border: 2px solid #b697c0b3;;
background: #fefefe;
align-items: center;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: center;
width: 100%
}
.dropzone-pane {
height: 256px;
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
width: 80%;
}
.dropzone-text {
color: var(--unique-color);
font-size: 20px;
font-weight: 700;
line-height: 30px;
margin: 0 18px 36px;
max-width: 450px;
position: relative;
text-align: center;
z-index: 1;
}
.button {
display: inline-block;
font-family: arial, sans-serif;
font-size: 14px;
font-weight: bold;
user-select: none;
outline: none;
border-radius: 3px;
transition: all 0.218s ease 0s;
background-color: var(--main-back-color);
color: var(--smoke-color)
}
.button:hover {
background-color: var(--unique-color);
color: var(--smoke-color);
}
.button_text {
margin: 0.3em 1.2em;
display: block;
}
.preview {
display: flex;
max-width: 960px;
margin-top: 30px;
border: 2px solid var(--unique-color);
}
.preview_image {
padding: 20px;
margin-right: 50px;
}
.preview_image img {
max-width: 250px;
}
.preview_fields {
margin-right: 10px;
} | public/css/home.css | :root {
--white: #fefefe;
--main-color: #f7f7f7;
--main-back-color: #333;
--ccc-color: #ccc;
--unique-color: rgb(99, 45, 80);
--main-bord-color: #d9d9d9;
--smoke-color: whitesmoke;
--comments-left-border-color: #d4d4d4;
--main-hover-color: blue;
--buttom-hover: rgba(99, 45, 80, 0.75);
--buttom-active:rgba(99, 45, 80, 0.5);
}
#logo {
display: block;
background: url(/img/logo.PNG) no-repeat;
background-size: contain;
height: 34px;
width: 146px;
margin-left: 19px;
}
header {
height: 70px;
background: var(--white);
border-bottom: 1px solid var(--main-back-color);
display: flex;
align-items: center;
}
.container {
/* align-content: stretch;
align-items: stretch; */
display: flex;
justify-content: center;
margin: 0;
min-height: 380px;
padding: 0 0 54px;
}
body {
background: #f7f7f7;
margin: 0;
}
.drag {
background: rgba(249, 244, 245, 0.79);
}
.restriction {
color: #858585;
font-size: 13px;
line-height: 22px;
margin: 16px 0 0;
}
html {
font-family: -apple-system,BlinkMacSystemFont,Arial,sans-serif;
}
.container-inner {
max-width: 1100px;
width: 100%;
padding: 40px 70px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.dropzone {
align-items: center;
align-self: center;
display: flex;
flex-direction: column;
max-width: 960px;
width: 100%;
margin-top: 20%;
}
.dropzone-inner {
border: 2px solid #b697c0b3;;
background: #fefefe;
align-items: center;
cursor: pointer;
display: flex;
flex-direction: column;
justify-content: center;
width: 100%
}
.dropzone-pane {
height: 256px;
align-items: center;
display: flex;
flex-direction: column;
justify-content: center;
width: 80%;
}
.dropzone-text {
color: var(--unique-color);
font-size: 20px;
font-weight: 700;
line-height: 30px;
margin: 0 18px 36px;
max-width: 450px;
position: relative;
text-align: center;
z-index: 1;
}
.button {
display: inline-block;
font-family: arial, sans-serif;
font-size: 14px;
font-weight: bold;
user-select: none;
outline: none;
border-radius: 3px;
transition: all 0.218s ease 0s;
background-color: var(--main-back-color);
color: var(--smoke-color)
}
.button:hover {
background-color: var(--unique-color);
color: var(--smoke-color);
}
.button_text {
margin: 0.3em 1.2em;
display: block;
}
.preview {
display: flex;
max-width: 960px;
margin-top: 30px;
border: 2px solid var(--unique-color);
}
.preview_image {
padding: 20px;
margin-right: 50px;
}
.preview_image img {
max-width: 250px;
}
.preview_fields {
margin-right: 10px;
} | 0.566378 | 0.146484 |
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body,
.tooltip,
select.menuBtn {
font-family: "Times New Roman", Times, serif;
font-size: 16px;
font-weight: normal;
line-height: normal;
letter-spacing: normal;
}
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
}
::selection {
background-color: transparent;
}
::-moz-selection {
background-color: transparent;
}
#description textarea::selection {
background-color: gray;
}
#description textarea::-moz-selection {
background-color: gray;
}
/* Framework stuff */
div.clear {
clear: both;
}
div#wrapper {
margin: auto;
padding: 6px;
position: relative;
}
div#saveNotify {
position: absolute;
top: 20px;
right: 0px;
background: white;
opacity: 0;
}
div#content {
position: relative;
overflow: hidden;
height: 700px;
}
div#header {
padding-bottom: 20px;
height: 20px;
}
.customSelect {
height: 20px;
}
span.customSelectOptions {
margin: 0;
width: 80px;
}
.customSelectOptions > ul {
max-height: 20px;
width: 80px;
overflow: hidden;
-webkit-transition: max-height 1s;
transition: max-height 1s;
padding: 0;
margin: 0;
bottom: 0;
position: absolute;
right: 0;
}
.customSelectOptions > ul:hover {
max-height: 400px;
}
.customSelectOptions > ul > li {
padding: 0 0 3px 0;
list-style-type: none;
height: 20px;
}
.customSelectOptions > ul > li:last-child {
padding: 0;
}
.customSelectOptions > ul > li:hover {
text-decoration: underline;
}
.customSelectOptions > ul > li:first-child:hover {
cursor: default;
text-decoration: none;
}
div.headerButton {
font-size: 18px;
cursor: pointer;
float: left;
border-left: 1px solid black;
margin-left: 10px;
padding-left: 10px;
}
div.headerButton:hover {
text-decoration: underline;
}
div.headerButton:first-child {
border-left: none;
margin-left: 0px;
padding-left: 0px;
}
div.headerButton.selected,
div.headerButton.selected:hover {
cursor: default;
text-decoration: underline;
}
div#outerSlider {
position: absolute;
}
div#outerSlider > div {
position: relative;
float: left;
width: 700px;
height: 700px;
overflow: hidden;
}
div#locationSlider {
position: absolute;
}
div.location {
position: relative;
float: left;
width: 700px;
}
div.row_key {
clear: both;
float: left;
}
div.row_val {
float: right;
}
/* Notifications */
div#notifications {
position: absolute;
top: 20px;
left: 0px;
height: 700px;
width: 200px;
overflow: hidden;
}
div#notifications div.notification {
margin-bottom: 10px;
}
div#notifyGradient {
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
background-color: white;
background: -webkit-linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
background: linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
filter: alpha(
Opacity=0,
FinishOpacity=100,
Style=1,
StartX=0,
StartY=0,
FinishX=0,
FinishY=500
);
}
/* Button */
div.button {
position: relative;
text-align: center;
border: 1px solid black;
width: 100px;
margin-bottom: 5px;
padding: 5px 10px;
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
div.button:hover {
text-decoration: underline;
}
div.button.disabled,
div.button.disabled:hover {
cursor: default;
border-color: #b2b2b2;
color: #b2b2b2;
text-decoration: none;
}
div.button div.cooldown {
position: absolute;
top: 0px;
left: 0px;
z-index: -1;
height: 100%;
background-color: #dddddd;
}
/* Up/Down buttons. They're complicated! */
.upBtn,
.dnBtn,
.upManyBtn,
.dnManyBtn {
position: absolute;
width: 14px;
height: 15px;
cursor: pointer;
}
.upBtn,
.dnBtn {
right: 0px;
}
.upManyBtn,
.dnManyBtn {
right: -11px;
}
.upBtn.disabled,
.dnBtn.disabled,
.upManyBtn.disabled,
.dnManyBtn.disabled {
cursor: default;
}
.upBtn {
top: -2px;
}
.upManyBtn {
top: -2px;
}
.upBtn:after,
.upBtn:before,
.upManyBtn:after,
.upManyBtn:before {
position: absolute;
border: medium solid transparent;
content: " ";
height: 0;
width: 0;
bottom: 4px;
}
.upBtn:after,
.upManyBtn:after {
border-color: transparent transparent white;
}
.upBtn:before,
.upManyBtn:before {
border-color: transparent transparent black;
}
.upBtn.disabled:before,
.upManyBtn.disabled:before {
border-color: transparent transparent #999;
}
.dnBtn {
bottom: -3px;
}
.dnManyBtn {
bottom: -3px;
}
.dnBtn:after,
.dnBtn:before,
.dnManyBtn:after,
.dnManyBtn:before {
position: absolute;
border: medium solid transparent;
content: " ";
height: 0;
width: 0;
top: 4px;
}
.upBtn:after,
.dnBtn:after {
border-width: 3px;
left: 50%;
margin-left: -3px;
}
.upBtn:before,
.dnBtn:before,
.upManyBtn:before,
.dnManyBtn:before {
border-width: 5px;
left: 50%;
margin-left: -5px;
}
.upManyBtn:after,
.dnManyBtn:after {
border-width: 2px;
left: 50%;
margin-left: -2px;
}
.dnBtn:after,
.dnManyBtn:after {
border-color: white transparent transparent;
}
.dnBtn:before,
.dnManyBtn:before {
border-color: black transparent transparent;
}
.dnBtn.disabled:before,
.dnManyBtn.disabled:before {
border-color: #999 transparent transparent;
}
div.button div.tooltip {
width: 100px;
}
/* Tooltip */
div.tooltip {
display: none;
padding: 2px 5px;
border: 1px solid black;
position: absolute;
box-shadow: -1px 3px 2px #666;
background: white;
z-index: 999;
}
.tooltip.bottom {
top: 30px;
}
.tooltip.right {
left: 2px;
}
.tooltip.left {
right: 0px;
}
.tooltip.top {
bottom: 20px;
}
*:hover > div.tooltip {
display: block;
}
div.tooltip:hover {
display: none !important;
}
.disabled:hover > div.tooltip,
.button.free:hover > div.tooltip {
display: none;
}
#event .button.disabled:hover > div.tooltip {
display: block;
}
/* Events */
.eventPanel {
background: none repeat scroll 0 0 white;
border: 2px solid transparent;
left: 250px;
padding: 20px;
position: absolute;
top: 90px;
width: 335px;
z-index: 20;
}
body.noMask .eventPanel {
background-color: black;
}
.eventPanel:before {
background-color: white;
opacity: 0.6;
content: " ";
height: 700px;
left: -252px;
position: absolute;
top: -75px;
width: 920px;
z-index: -2;
}
body.noMask .eventPanel:before {
opacity: 0;
}
.eventPanel:after {
position: absolute;
top: -2px;
left: -2px;
width: 100%;
height: 100%;
content: " ";
border: 2px solid black;
box-shadow: 5px 5px 5px #666666;
z-index: -2;
}
body.noMask .eventPanel:after {
border-color: white;
}
.eventPanel .button {
float: left;
margin-right: 20px;
}
body.noMask .eventPanel .button {
border-color: white;
color: white;
}
.eventTitle {
display: inline-block;
font-weight: bold;
position: absolute;
top: -12px;
}
body.noMask .eventTitle {
color: white;
}
.eventTitle:after {
background-color: white;
bottom: 32%;
content: " ";
height: 5px;
left: 0;
position: absolute;
width: 100%;
z-index: -1;
}
body.noMask .eventTitle:after {
background-color: black;
}
#description {
position: relative;
min-height: 100px;
}
#description textarea {
width: 100%;
height: 225px;
}
body.noMask #description {
color: white;
}
#description > div {
padding-bottom: 20px;
}
#buttons > .button {
margin: 0 5px 5px;
margin-right: 15px;
}
/* Combat! */
#description div.fighter {
padding: 0px;
position: absolute;
bottom: 15px;
}
#wanderer {
left: 25%;
}
#enemy {
right: 25%;
}
.hp {
position: absolute;
top: -15px;
margin-left: -50%;
}
#description .bullet {
padding: 0px 20px 0px 20px;
bottom: 25px;
position: absolute;
height: 1px;
line-height: 1px;
}
.damageText {
position: absolute;
bottom: 15px;
left: 50%;
margin-left: -50%;
}
#lootButtons {
padding-bottom: 0px !important;
margin: 20px 0 0 5px;
position: relative;
}
#lootButtons:before {
content: "take:";
position: absolute;
top: -25px;
left: 0px;
}
#dropMenu {
background: none repeat scroll 0 0 white;
border: 1px solid black;
position: absolute;
z-index: 100;
padding-top: 5px;
text-align: left;
box-shadow: -1px 3px 2px #666;
cursor: default;
}
#dropMenu:before {
content: "drop:";
border-bottom: 1px solid black;
display: block;
margin-bottom: 5px;
padding: 0px 0px 5px 5px;
}
#dropMenu > div {
padding: 0px 5px 5px 5px;
cursor: pointer;
}
#dropMenu > div:hover {
text-decoration: underline;
}
#menu {
display: none;
z-index: 1;
background: rgba(00, 00, 00, 0.5);
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
#menucontainer {
position: fixed;
bottom: 30px;
left: 0px;
width: 98%;
background: white;
margin: 3px;
}
#menucontainer li {
position: relative;
background-color: white;
width: 100%;
outline: none;
height: 30px;
padding-left: 5px;
line-height: 30px;
}
#menucontainer li:focus {
background-color: #d26585;
color: white;
}
#softkeys {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 30px;
background: #dadada;
padding: 3px 5px;
z-index: 1;
}
#softkeys > * {
display: inline-block;
width: 72px;
padding: 0 5px;
}
#softkey-left,
#softkey-right {
font-weight: 400;
font-size: 14px;
color: #323232;
}
#softkey-right {
text-align: right;
}
#softkey-center {
font-weight: 600;
font-size: 16px;
width: 76px;
color: #323232;
text-align: center;
} | application/css/main.css | * {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body,
.tooltip,
select.menuBtn {
font-family: "Times New Roman", Times, serif;
font-size: 16px;
font-weight: normal;
line-height: normal;
letter-spacing: normal;
}
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
}
::selection {
background-color: transparent;
}
::-moz-selection {
background-color: transparent;
}
#description textarea::selection {
background-color: gray;
}
#description textarea::-moz-selection {
background-color: gray;
}
/* Framework stuff */
div.clear {
clear: both;
}
div#wrapper {
margin: auto;
padding: 6px;
position: relative;
}
div#saveNotify {
position: absolute;
top: 20px;
right: 0px;
background: white;
opacity: 0;
}
div#content {
position: relative;
overflow: hidden;
height: 700px;
}
div#header {
padding-bottom: 20px;
height: 20px;
}
.customSelect {
height: 20px;
}
span.customSelectOptions {
margin: 0;
width: 80px;
}
.customSelectOptions > ul {
max-height: 20px;
width: 80px;
overflow: hidden;
-webkit-transition: max-height 1s;
transition: max-height 1s;
padding: 0;
margin: 0;
bottom: 0;
position: absolute;
right: 0;
}
.customSelectOptions > ul:hover {
max-height: 400px;
}
.customSelectOptions > ul > li {
padding: 0 0 3px 0;
list-style-type: none;
height: 20px;
}
.customSelectOptions > ul > li:last-child {
padding: 0;
}
.customSelectOptions > ul > li:hover {
text-decoration: underline;
}
.customSelectOptions > ul > li:first-child:hover {
cursor: default;
text-decoration: none;
}
div.headerButton {
font-size: 18px;
cursor: pointer;
float: left;
border-left: 1px solid black;
margin-left: 10px;
padding-left: 10px;
}
div.headerButton:hover {
text-decoration: underline;
}
div.headerButton:first-child {
border-left: none;
margin-left: 0px;
padding-left: 0px;
}
div.headerButton.selected,
div.headerButton.selected:hover {
cursor: default;
text-decoration: underline;
}
div#outerSlider {
position: absolute;
}
div#outerSlider > div {
position: relative;
float: left;
width: 700px;
height: 700px;
overflow: hidden;
}
div#locationSlider {
position: absolute;
}
div.location {
position: relative;
float: left;
width: 700px;
}
div.row_key {
clear: both;
float: left;
}
div.row_val {
float: right;
}
/* Notifications */
div#notifications {
position: absolute;
top: 20px;
left: 0px;
height: 700px;
width: 200px;
overflow: hidden;
}
div#notifications div.notification {
margin-bottom: 10px;
}
div#notifyGradient {
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
background-color: white;
background: -webkit-linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
background: linear-gradient(
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 100%
);
filter: alpha(
Opacity=0,
FinishOpacity=100,
Style=1,
StartX=0,
StartY=0,
FinishX=0,
FinishY=500
);
}
/* Button */
div.button {
position: relative;
text-align: center;
border: 1px solid black;
width: 100px;
margin-bottom: 5px;
padding: 5px 10px;
cursor: pointer;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
div.button:hover {
text-decoration: underline;
}
div.button.disabled,
div.button.disabled:hover {
cursor: default;
border-color: #b2b2b2;
color: #b2b2b2;
text-decoration: none;
}
div.button div.cooldown {
position: absolute;
top: 0px;
left: 0px;
z-index: -1;
height: 100%;
background-color: #dddddd;
}
/* Up/Down buttons. They're complicated! */
.upBtn,
.dnBtn,
.upManyBtn,
.dnManyBtn {
position: absolute;
width: 14px;
height: 15px;
cursor: pointer;
}
.upBtn,
.dnBtn {
right: 0px;
}
.upManyBtn,
.dnManyBtn {
right: -11px;
}
.upBtn.disabled,
.dnBtn.disabled,
.upManyBtn.disabled,
.dnManyBtn.disabled {
cursor: default;
}
.upBtn {
top: -2px;
}
.upManyBtn {
top: -2px;
}
.upBtn:after,
.upBtn:before,
.upManyBtn:after,
.upManyBtn:before {
position: absolute;
border: medium solid transparent;
content: " ";
height: 0;
width: 0;
bottom: 4px;
}
.upBtn:after,
.upManyBtn:after {
border-color: transparent transparent white;
}
.upBtn:before,
.upManyBtn:before {
border-color: transparent transparent black;
}
.upBtn.disabled:before,
.upManyBtn.disabled:before {
border-color: transparent transparent #999;
}
.dnBtn {
bottom: -3px;
}
.dnManyBtn {
bottom: -3px;
}
.dnBtn:after,
.dnBtn:before,
.dnManyBtn:after,
.dnManyBtn:before {
position: absolute;
border: medium solid transparent;
content: " ";
height: 0;
width: 0;
top: 4px;
}
.upBtn:after,
.dnBtn:after {
border-width: 3px;
left: 50%;
margin-left: -3px;
}
.upBtn:before,
.dnBtn:before,
.upManyBtn:before,
.dnManyBtn:before {
border-width: 5px;
left: 50%;
margin-left: -5px;
}
.upManyBtn:after,
.dnManyBtn:after {
border-width: 2px;
left: 50%;
margin-left: -2px;
}
.dnBtn:after,
.dnManyBtn:after {
border-color: white transparent transparent;
}
.dnBtn:before,
.dnManyBtn:before {
border-color: black transparent transparent;
}
.dnBtn.disabled:before,
.dnManyBtn.disabled:before {
border-color: #999 transparent transparent;
}
div.button div.tooltip {
width: 100px;
}
/* Tooltip */
div.tooltip {
display: none;
padding: 2px 5px;
border: 1px solid black;
position: absolute;
box-shadow: -1px 3px 2px #666;
background: white;
z-index: 999;
}
.tooltip.bottom {
top: 30px;
}
.tooltip.right {
left: 2px;
}
.tooltip.left {
right: 0px;
}
.tooltip.top {
bottom: 20px;
}
*:hover > div.tooltip {
display: block;
}
div.tooltip:hover {
display: none !important;
}
.disabled:hover > div.tooltip,
.button.free:hover > div.tooltip {
display: none;
}
#event .button.disabled:hover > div.tooltip {
display: block;
}
/* Events */
.eventPanel {
background: none repeat scroll 0 0 white;
border: 2px solid transparent;
left: 250px;
padding: 20px;
position: absolute;
top: 90px;
width: 335px;
z-index: 20;
}
body.noMask .eventPanel {
background-color: black;
}
.eventPanel:before {
background-color: white;
opacity: 0.6;
content: " ";
height: 700px;
left: -252px;
position: absolute;
top: -75px;
width: 920px;
z-index: -2;
}
body.noMask .eventPanel:before {
opacity: 0;
}
.eventPanel:after {
position: absolute;
top: -2px;
left: -2px;
width: 100%;
height: 100%;
content: " ";
border: 2px solid black;
box-shadow: 5px 5px 5px #666666;
z-index: -2;
}
body.noMask .eventPanel:after {
border-color: white;
}
.eventPanel .button {
float: left;
margin-right: 20px;
}
body.noMask .eventPanel .button {
border-color: white;
color: white;
}
.eventTitle {
display: inline-block;
font-weight: bold;
position: absolute;
top: -12px;
}
body.noMask .eventTitle {
color: white;
}
.eventTitle:after {
background-color: white;
bottom: 32%;
content: " ";
height: 5px;
left: 0;
position: absolute;
width: 100%;
z-index: -1;
}
body.noMask .eventTitle:after {
background-color: black;
}
#description {
position: relative;
min-height: 100px;
}
#description textarea {
width: 100%;
height: 225px;
}
body.noMask #description {
color: white;
}
#description > div {
padding-bottom: 20px;
}
#buttons > .button {
margin: 0 5px 5px;
margin-right: 15px;
}
/* Combat! */
#description div.fighter {
padding: 0px;
position: absolute;
bottom: 15px;
}
#wanderer {
left: 25%;
}
#enemy {
right: 25%;
}
.hp {
position: absolute;
top: -15px;
margin-left: -50%;
}
#description .bullet {
padding: 0px 20px 0px 20px;
bottom: 25px;
position: absolute;
height: 1px;
line-height: 1px;
}
.damageText {
position: absolute;
bottom: 15px;
left: 50%;
margin-left: -50%;
}
#lootButtons {
padding-bottom: 0px !important;
margin: 20px 0 0 5px;
position: relative;
}
#lootButtons:before {
content: "take:";
position: absolute;
top: -25px;
left: 0px;
}
#dropMenu {
background: none repeat scroll 0 0 white;
border: 1px solid black;
position: absolute;
z-index: 100;
padding-top: 5px;
text-align: left;
box-shadow: -1px 3px 2px #666;
cursor: default;
}
#dropMenu:before {
content: "drop:";
border-bottom: 1px solid black;
display: block;
margin-bottom: 5px;
padding: 0px 0px 5px 5px;
}
#dropMenu > div {
padding: 0px 5px 5px 5px;
cursor: pointer;
}
#dropMenu > div:hover {
text-decoration: underline;
}
#menu {
display: none;
z-index: 1;
background: rgba(00, 00, 00, 0.5);
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
#menucontainer {
position: fixed;
bottom: 30px;
left: 0px;
width: 98%;
background: white;
margin: 3px;
}
#menucontainer li {
position: relative;
background-color: white;
width: 100%;
outline: none;
height: 30px;
padding-left: 5px;
line-height: 30px;
}
#menucontainer li:focus {
background-color: #d26585;
color: white;
}
#softkeys {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
height: 30px;
background: #dadada;
padding: 3px 5px;
z-index: 1;
}
#softkeys > * {
display: inline-block;
width: 72px;
padding: 0 5px;
}
#softkey-left,
#softkey-right {
font-weight: 400;
font-size: 14px;
color: #323232;
}
#softkey-right {
text-align: right;
}
#softkey-center {
font-weight: 600;
font-size: 16px;
width: 76px;
color: #323232;
text-align: center;
} | 0.447702 | 0.082994 |
@tailwind base;
@tailwind components;
@tailwind utilities;
header {
background-image: linear-gradient(#de2772, #f8493f);
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
/* Preserve aspet ratio */
width: 100%;
height: 100%;
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.tada:hover {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
nav a:hover {
background: rgba(255, 255, 255, 0.1);
box-sizing: border-box;
position: relative;
color: #f4f4f4;
box-sizing: border-box;
position: relative;
cursor: pointer;
outline: 0;
border: none;
}
.vue-typer .custom.char.typed {
@apply text-white;
@apply text-5xl;
}
.rt {
transform: rotate(90deg);
}
.btnn {
background-image: linear-gradient(to right, #21D3F7, #25C79B);
}
.overlay {
@apply w-48;
@apply h-64;
position: fixed;
background: linear-gradient(to right, rgb(60, 13, 20) 3px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.25) 7px, rgba(255, 255, 255, 0.25) 10px, transparent 12px, transparent 16px, rgba(255, 255, 255, 0.25) 17px, transparent 22px);
}
.overlay:hover {
@apply w-56;
@apply h-72;
}
.overlaysingle {
@apply w-56;
@apply h-72;
position: fixed;
background: linear-gradient(to right, rgb(60, 13, 20) 3px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.25) 7px, rgba(255, 255, 255, 0.25) 10px, transparent 12px, transparent 16px, rgba(255, 255, 255, 0.25) 17px, transparent 22px);
}
.rtt {
transform: rotate(-5deg);
}
.pagination li a:hover {
@apply border-t border-b border-l border-blue-100 px-3 py-2 bg-blue-100 no-underline text-blue-500 text-sm;
} | bookitoFronted/assets/css/tailwind.css | @tailwind base;
@tailwind components;
@tailwind utilities;
header {
background-image: linear-gradient(#de2772, #f8493f);
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
/* Preserve aspet ratio */
width: 100%;
height: 100%;
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.tada:hover {
-webkit-animation-name: tada;
animation-name: tada;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
nav a:hover {
background: rgba(255, 255, 255, 0.1);
box-sizing: border-box;
position: relative;
color: #f4f4f4;
box-sizing: border-box;
position: relative;
cursor: pointer;
outline: 0;
border: none;
}
.vue-typer .custom.char.typed {
@apply text-white;
@apply text-5xl;
}
.rt {
transform: rotate(90deg);
}
.btnn {
background-image: linear-gradient(to right, #21D3F7, #25C79B);
}
.overlay {
@apply w-48;
@apply h-64;
position: fixed;
background: linear-gradient(to right, rgb(60, 13, 20) 3px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.25) 7px, rgba(255, 255, 255, 0.25) 10px, transparent 12px, transparent 16px, rgba(255, 255, 255, 0.25) 17px, transparent 22px);
}
.overlay:hover {
@apply w-56;
@apply h-72;
}
.overlaysingle {
@apply w-56;
@apply h-72;
position: fixed;
background: linear-gradient(to right, rgb(60, 13, 20) 3px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.25) 7px, rgba(255, 255, 255, 0.25) 10px, transparent 12px, transparent 16px, rgba(255, 255, 255, 0.25) 17px, transparent 22px);
}
.rtt {
transform: rotate(-5deg);
}
.pagination li a:hover {
@apply border-t border-b border-l border-blue-100 px-3 py-2 bg-blue-100 no-underline text-blue-500 text-sm;
} | 0.532668 | 0.131982 |
html {
height: 100%;
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
position: relative;
margin: 0;
padding-bottom: 6rem;
min-height: 100%;
font-family: "Helvetica Neue", Arial, sans-serif;
}
footer{
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
}
.masthead {
background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.25) ), url("../images/background3.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
background-size: cover;
}
.navbar {
background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.25) ), url("../images/background3.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
background-size: cover;
}
.cart{
width: 50px;
}
.mycart{
margin-bottom: 0;
padding-bottom: 0;
}
.quant{
width: 50px;
}
header.masthead {
padding-top: 10.5rem;
padding-bottom: 6rem;
text-align: center;
color: #fff;
}
header.masthead .masthead-subheading {
font-size: 1.5rem;
text-align: center;
font-style: italic;
font-weight: bold;
line-height: 1.5rem;
margin-bottom: 25px;
font-family: "Droid Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
header.masthead .masthead-heading {
text-align: center;
font-size: 3.25rem;
font-weight: 700;
line-height: 3.25rem;
margin-bottom: 2rem;
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";
}
@media (min-width: 768px) {
header.masthead {
padding-top: 9rem;
padding-bottom: 12.5rem;
}
header.masthead .masthead-subheading {
font-size: 2.25rem;
font-style: italic;
line-height: 2.25rem;
margin-bottom: 2rem;
}
header.masthead .masthead-heading {
font-size: 4.5rem;
font-weight: 700;
line-height: 4.5rem;
margin-bottom: 4rem;
}
}
#portfolio .portfolio-item {
max-width: 25rem;
margin-left: auto;
margin-right: auto;
}
#portfolio .portfolio-item .portfolio-link {
position: relative;
display: block;
margin: 0 auto;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover {
display: flex;
position: absolute;
width: 100%;
height: 100%;
background: rgba(254, 209, 54, 0.9);
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity ease-in-out 0.25s;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
font-size: 1.25rem;
color: white;
}
#portfolio .portfolio-item .portfolio-link:hover .portfolio-hover {
opacity: 1;
}
#portfolio .portfolio-item .portfolio-caption {
padding: 1.5rem;
text-align: center;
background-color: #fff;
}
#portfolio .portfolio-item .portfolio-caption .portfolio-caption-heading {
font-size: 1.5rem;
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;
margin-bottom: 0;
}
#portfolio .portfolio-item .portfolio-caption .portfolio-caption-subheading {
font-style: italic;
font-family: "Droid Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.portfolio-modal .modal-dialog {
margin: 1rem;
max-width: 100vw;
}
.portfolio-modal .modal-content {
padding-top: 6rem;
padding-bottom: 6rem;
text-align: center;
}
.portfolio-modal .modal-content h2 {
font-size: 3rem;
line-height: 3rem;
}
.portfolio-modal .modal-content p.item-intro {
font-style: italic;
margin-bottom: 2rem;
font-family: "Droid Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.portfolio-modal .modal-content p {
margin-bottom: 2rem;
}
.portfolio-modal .modal-content ul.list-inline {
margin-bottom: 2rem;
}
.portfolio-modal .modal-content img {
margin-bottom: 2rem;
}
.portfolio-modal .close-modal {
position: absolute;
top: 1.5rem;
right: 1.5rem;
width: 3rem;
height: 3rem;
cursor: pointer;
background-color: transparent;
}
.portfolio-modal .close-modal:hover {
opacity: 0.3;
}
.image-products {
width: 55px;
margin: 0px;
padding: 0px;
} | public/assets/css/style.css | html {
height: 100%;
box-sizing: border-box;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
position: relative;
margin: 0;
padding-bottom: 6rem;
min-height: 100%;
font-family: "Helvetica Neue", Arial, sans-serif;
}
footer{
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
}
.masthead {
background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.25) ), url("../images/background3.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
background-size: cover;
}
.navbar {
background: linear-gradient( rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.25) ), url("../images/background3.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
background-size: cover;
}
.cart{
width: 50px;
}
.mycart{
margin-bottom: 0;
padding-bottom: 0;
}
.quant{
width: 50px;
}
header.masthead {
padding-top: 10.5rem;
padding-bottom: 6rem;
text-align: center;
color: #fff;
}
header.masthead .masthead-subheading {
font-size: 1.5rem;
text-align: center;
font-style: italic;
font-weight: bold;
line-height: 1.5rem;
margin-bottom: 25px;
font-family: "Droid Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
header.masthead .masthead-heading {
text-align: center;
font-size: 3.25rem;
font-weight: 700;
line-height: 3.25rem;
margin-bottom: 2rem;
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";
}
@media (min-width: 768px) {
header.masthead {
padding-top: 9rem;
padding-bottom: 12.5rem;
}
header.masthead .masthead-subheading {
font-size: 2.25rem;
font-style: italic;
line-height: 2.25rem;
margin-bottom: 2rem;
}
header.masthead .masthead-heading {
font-size: 4.5rem;
font-weight: 700;
line-height: 4.5rem;
margin-bottom: 4rem;
}
}
#portfolio .portfolio-item {
max-width: 25rem;
margin-left: auto;
margin-right: auto;
}
#portfolio .portfolio-item .portfolio-link {
position: relative;
display: block;
margin: 0 auto;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover {
display: flex;
position: absolute;
width: 100%;
height: 100%;
background: rgba(254, 209, 54, 0.9);
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity ease-in-out 0.25s;
}
#portfolio .portfolio-item .portfolio-link .portfolio-hover .portfolio-hover-content {
font-size: 1.25rem;
color: white;
}
#portfolio .portfolio-item .portfolio-link:hover .portfolio-hover {
opacity: 1;
}
#portfolio .portfolio-item .portfolio-caption {
padding: 1.5rem;
text-align: center;
background-color: #fff;
}
#portfolio .portfolio-item .portfolio-caption .portfolio-caption-heading {
font-size: 1.5rem;
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;
margin-bottom: 0;
}
#portfolio .portfolio-item .portfolio-caption .portfolio-caption-subheading {
font-style: italic;
font-family: "Droid Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.portfolio-modal .modal-dialog {
margin: 1rem;
max-width: 100vw;
}
.portfolio-modal .modal-content {
padding-top: 6rem;
padding-bottom: 6rem;
text-align: center;
}
.portfolio-modal .modal-content h2 {
font-size: 3rem;
line-height: 3rem;
}
.portfolio-modal .modal-content p.item-intro {
font-style: italic;
margin-bottom: 2rem;
font-family: "Droid Serif", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.portfolio-modal .modal-content p {
margin-bottom: 2rem;
}
.portfolio-modal .modal-content ul.list-inline {
margin-bottom: 2rem;
}
.portfolio-modal .modal-content img {
margin-bottom: 2rem;
}
.portfolio-modal .close-modal {
position: absolute;
top: 1.5rem;
right: 1.5rem;
width: 3rem;
height: 3rem;
cursor: pointer;
background-color: transparent;
}
.portfolio-modal .close-modal:hover {
opacity: 0.3;
}
.image-products {
width: 55px;
margin: 0px;
padding: 0px;
} | 0.595257 | 0.090776 |
@-webkit-keyframes spin {
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg)
}
}
@keyframes spin {
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg)
}
}
.nav-bar-container:after,.nav-bar-container:before {
content: " ";
display: table
}
.nav-bar-container:after {
clear: both
}
.nav-bar-container:after,.nav-bar-container:before {
content: " ";
display: table
}
.nav-bar-container:after {
clear: both
}
.nav-menu {
position: fixed;
left: 0;
top: 0;
z-index: 4;
padding: 0;
width: 80px;
cursor: pointer
}
/*
@media (max-width: 767px) {
.nav-menu {
width: 60px;
}
}
*/
.nav-menu.active {
z-index: 11
}
.nav-menu li {
z-index: 4;
width: 80px;
cursor: pointer
}
/*
@media (max-width: 767px) {
.nav-menu li {
width: 60px;
}
}
*/
.nav-menu li a {
width: 80px;
height: 80px;
padding: 20px;
line-height: 40px;
vertical-align: middle;
text-align: center;
cursor: pointer;
}
/*
@media (max-width: 767px) {
.nav-menu li a {
width: 60px;
height: 60px;
padding: 10px;
line-height: 40px;
}
}
*/
.nav-menu li a i {
-webkit-transform: scale(1.5);
-ms-transform: scale(1.5);
transform: scale(1.5)
}
/*
.nav-menu li.logo a {
font-weight: normal;
font-size: 24px;
background: #366e6f;
color: white;
}
*/
.nav-menu li a:hover,
.nav-menu li.active a {
background: white;
color: #de7b2a;
}
.nav-menu li.logo a:hover {
background: #de7b2a;
color: white;
}
.nav-menu li.active {
z-index: 11
}
.nav-menu li.active a:before {
border-radius: 0;
height: 3px;
width: 26px;
background: #fff;
left: 0;
right: 0;
border: none;
-webkit-transform: rotate(135deg) translate3d(7px,-8px,0);
transform: rotate(135deg) translate3d(7px,-8px,0)
}
.nav-menu li.active.rotating a {
-webkit-animation: spin 800ms;
animation: spin 800ms;
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%
}
.nav-bar-border {
position: fixed;
left: 0;
top: 0;
width: 81px;
height: 100%;
background: #fff;
border-right: 1px solid #f0f0f0
}
@media (min-width: 768px)and (max-width:990px) {
.page-title .breadcrumb {
text-align: left;
margin-top: 10px
}
}
@media (max-width: 767px) {
body {
font-size:16px;
margin: 61px 0 0 0
}
.page-header {
min-height: auto;
}
.page-header h1 {
font-size: 22px
}
.page-header .breadcrumb {
margin-top: 10px;
text-align: initial
}
/*TODO what is header tabs */
.header-tabs {
height: 57px
}
.header-tabs.fixed {
width: 100%;
left: 0;
top: 61px
}
.full-content {
margin-left: -20px;
margin-right: -20px
}
.full-content .row {
margin-left: 10px;
margin-right: 10px
}
.content {
padding: 0 20px
}
.nav-bar-container {
position: fixed;
top: 0;
height: 60px;
z-index: 4;
width: 100%
}
.nav-bar-container .nav-menu {
position: relative;
float: left;
width: 100%;
padding: 0;
white-space: nowrap;
}
.nav-bar-container .nav-menu > li {
display: inline-block;
width: 60px;
}
.nav-bar-container .nav-menu li a {
width: 60px;
height: 60px;
padding: 11px;
}
.nav-bar-container .nav-bar-border {
width: 100%;
height: 61px;
border-right: 0;
border-bottom: 1px solid #f0f0f0
}
} | public/static/default/css/cp-navbar.css | @-webkit-keyframes spin {
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg)
}
}
@keyframes spin {
100% {
-webkit-transform: rotate(-360deg);
transform: rotate(-360deg)
}
}
.nav-bar-container:after,.nav-bar-container:before {
content: " ";
display: table
}
.nav-bar-container:after {
clear: both
}
.nav-bar-container:after,.nav-bar-container:before {
content: " ";
display: table
}
.nav-bar-container:after {
clear: both
}
.nav-menu {
position: fixed;
left: 0;
top: 0;
z-index: 4;
padding: 0;
width: 80px;
cursor: pointer
}
/*
@media (max-width: 767px) {
.nav-menu {
width: 60px;
}
}
*/
.nav-menu.active {
z-index: 11
}
.nav-menu li {
z-index: 4;
width: 80px;
cursor: pointer
}
/*
@media (max-width: 767px) {
.nav-menu li {
width: 60px;
}
}
*/
.nav-menu li a {
width: 80px;
height: 80px;
padding: 20px;
line-height: 40px;
vertical-align: middle;
text-align: center;
cursor: pointer;
}
/*
@media (max-width: 767px) {
.nav-menu li a {
width: 60px;
height: 60px;
padding: 10px;
line-height: 40px;
}
}
*/
.nav-menu li a i {
-webkit-transform: scale(1.5);
-ms-transform: scale(1.5);
transform: scale(1.5)
}
/*
.nav-menu li.logo a {
font-weight: normal;
font-size: 24px;
background: #366e6f;
color: white;
}
*/
.nav-menu li a:hover,
.nav-menu li.active a {
background: white;
color: #de7b2a;
}
.nav-menu li.logo a:hover {
background: #de7b2a;
color: white;
}
.nav-menu li.active {
z-index: 11
}
.nav-menu li.active a:before {
border-radius: 0;
height: 3px;
width: 26px;
background: #fff;
left: 0;
right: 0;
border: none;
-webkit-transform: rotate(135deg) translate3d(7px,-8px,0);
transform: rotate(135deg) translate3d(7px,-8px,0)
}
.nav-menu li.active.rotating a {
-webkit-animation: spin 800ms;
animation: spin 800ms;
-webkit-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%
}
.nav-bar-border {
position: fixed;
left: 0;
top: 0;
width: 81px;
height: 100%;
background: #fff;
border-right: 1px solid #f0f0f0
}
@media (min-width: 768px)and (max-width:990px) {
.page-title .breadcrumb {
text-align: left;
margin-top: 10px
}
}
@media (max-width: 767px) {
body {
font-size:16px;
margin: 61px 0 0 0
}
.page-header {
min-height: auto;
}
.page-header h1 {
font-size: 22px
}
.page-header .breadcrumb {
margin-top: 10px;
text-align: initial
}
/*TODO what is header tabs */
.header-tabs {
height: 57px
}
.header-tabs.fixed {
width: 100%;
left: 0;
top: 61px
}
.full-content {
margin-left: -20px;
margin-right: -20px
}
.full-content .row {
margin-left: 10px;
margin-right: 10px
}
.content {
padding: 0 20px
}
.nav-bar-container {
position: fixed;
top: 0;
height: 60px;
z-index: 4;
width: 100%
}
.nav-bar-container .nav-menu {
position: relative;
float: left;
width: 100%;
padding: 0;
white-space: nowrap;
}
.nav-bar-container .nav-menu > li {
display: inline-block;
width: 60px;
}
.nav-bar-container .nav-menu li a {
width: 60px;
height: 60px;
padding: 11px;
}
.nav-bar-container .nav-bar-border {
width: 100%;
height: 61px;
border-right: 0;
border-bottom: 1px solid #f0f0f0
}
} | 0.276495 | 0.120491 |
h1 {
margin: 0;
}
html,
body {
height: 100%;
}
body {
padding: 3vw;
background: rgb(0, 0, 0);
color: #ffffff;
}
input {
padding: 1em;
margin: 1em;
}
:required {
background: #ffffff;
}
button {
padding:1em;
border-radius: 1.5em;
color: white;
background-color: rgb(0, 136, 41);
font-size: 1em;
cursor: pointer;
}
.cards {
position: relative;
list-style-type: none;
padding: 0;
max-width: 34em;
margin: 20% auto 0;
}
.card {
position: absolute;
top: -5em;
left: 30em;
z-index: 2;
background: #ccc;
color: #000000;
border-radius: 30px;
padding: 40px;
box-shadow: 0.75em 0.5em 0.75em 1em rgb(166, 11, 228);
;
-webkit-transform: translateY(0) rotate(4deg) translateX(25px) scale(1);
transform: translateY(0) rotate(4deg) translateX(25px) scale(1);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
transition: background 0.4s linear, -webkit-transform 0.6s cubic-bezier(0.8, 0.2, 0.1, 0.8) 0.1s;
transition: transform 0.6s cubic-bezier(0.8, 0.2, 0.1, 0.8) 0.1s, background 0.4s linear;
transition: transform 0.6s cubic-bezier(0.8, 0.2, 0.1, 0.8) 0.1s, background 0.4s linear, -webkit-transform 0.6s cubic-bezier(0.8, 0.2, 0.1, 0.8) 0.1s;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.card :last-child {
margin-bottom: 0;
}
.card--next {
z-index: 5;
-webkit-transform: translateY(-25px) rotate(4deg) translateX(25px) scale(1);
transform: translateY(-25px) rotate(4deg) translateX(25px) scale(1);
}
.card--out {
-webkit-animation: card-out 0.6s cubic-bezier(0.8, 0.2, 0.1, 0.8);
animation: card-out 0.6s cubic-bezier(0.8, 0.2, 0.1, 0.8);
-webkit-transform: translateY(-50px) rotate(8deg) translateX(55px) scale(0.95);
transform: translateY(-50px) rotate(8deg) translateX(55px) scale(0.95);
z-index: 1;
background: #bbb;
}
@-webkit-keyframes card-out {
0% {
z-index: 20;
-webkit-transform: translateY(0px) rotate(-4deg);
transform: translateY(0px) rotate(-4deg);
}
50% {
-webkit-transform: translateY(-120%) rotate(-5deg) translateX(-40px);
transform: translateY(-120%) rotate(-5deg) translateX(-40px);
}
80% {
z-index: 1;
}
100% {
-webkit-transform: translateY(-50px) rotate(8deg) translateX(55px) scale(0.95);
transform: translateY(-50px) rotate(8deg) translateX(55px) scale(0.95);
}
}
@keyframes card-out {
0% {
z-index: 20;
-webkit-transform: translateY(0px) rotate(-4deg);
transform: translateY(0px) rotate(-4deg);
}
50% {
-webkit-transform: translateY(-120%) rotate(-5deg) translateX(-40px);
transform: translateY(-120%) rotate(-5deg) translateX(-40px);
}
80% {
z-index: 1;
}
100% {
-webkit-transform: translateY(-50px) rotate(8deg) translateX(55px) scale(0.95);
transform: translateY(-50px) rotate(8deg) translateX(55px) scale(0.95);
}
}
.card--current {
cursor: auto;
-webkit-user-select: auto;
-moz-user-select: auto;
-ms-user-select: auto;
user-select: auto;
position: relative;
z-index: 10;
opacity: 1;
background: #EEE;
-webkit-transform: rotate(-1deg) translateX(0%) scale(1);
transform: rotate(-1deg) translateX(0%) scale(1);
} | src/assets/style.css | h1 {
margin: 0;
}
html,
body {
height: 100%;
}
body {
padding: 3vw;
background: rgb(0, 0, 0);
color: #ffffff;
}
input {
padding: 1em;
margin: 1em;
}
:required {
background: #ffffff;
}
button {
padding:1em;
border-radius: 1.5em;
color: white;
background-color: rgb(0, 136, 41);
font-size: 1em;
cursor: pointer;
}
.cards {
position: relative;
list-style-type: none;
padding: 0;
max-width: 34em;
margin: 20% auto 0;
}
.card {
position: absolute;
top: -5em;
left: 30em;
z-index: 2;
background: #ccc;
color: #000000;
border-radius: 30px;
padding: 40px;
box-shadow: 0.75em 0.5em 0.75em 1em rgb(166, 11, 228);
;
-webkit-transform: translateY(0) rotate(4deg) translateX(25px) scale(1);
transform: translateY(0) rotate(4deg) translateX(25px) scale(1);
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
transition: background 0.4s linear, -webkit-transform 0.6s cubic-bezier(0.8, 0.2, 0.1, 0.8) 0.1s;
transition: transform 0.6s cubic-bezier(0.8, 0.2, 0.1, 0.8) 0.1s, background 0.4s linear;
transition: transform 0.6s cubic-bezier(0.8, 0.2, 0.1, 0.8) 0.1s, background 0.4s linear, -webkit-transform 0.6s cubic-bezier(0.8, 0.2, 0.1, 0.8) 0.1s;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.card :last-child {
margin-bottom: 0;
}
.card--next {
z-index: 5;
-webkit-transform: translateY(-25px) rotate(4deg) translateX(25px) scale(1);
transform: translateY(-25px) rotate(4deg) translateX(25px) scale(1);
}
.card--out {
-webkit-animation: card-out 0.6s cubic-bezier(0.8, 0.2, 0.1, 0.8);
animation: card-out 0.6s cubic-bezier(0.8, 0.2, 0.1, 0.8);
-webkit-transform: translateY(-50px) rotate(8deg) translateX(55px) scale(0.95);
transform: translateY(-50px) rotate(8deg) translateX(55px) scale(0.95);
z-index: 1;
background: #bbb;
}
@-webkit-keyframes card-out {
0% {
z-index: 20;
-webkit-transform: translateY(0px) rotate(-4deg);
transform: translateY(0px) rotate(-4deg);
}
50% {
-webkit-transform: translateY(-120%) rotate(-5deg) translateX(-40px);
transform: translateY(-120%) rotate(-5deg) translateX(-40px);
}
80% {
z-index: 1;
}
100% {
-webkit-transform: translateY(-50px) rotate(8deg) translateX(55px) scale(0.95);
transform: translateY(-50px) rotate(8deg) translateX(55px) scale(0.95);
}
}
@keyframes card-out {
0% {
z-index: 20;
-webkit-transform: translateY(0px) rotate(-4deg);
transform: translateY(0px) rotate(-4deg);
}
50% {
-webkit-transform: translateY(-120%) rotate(-5deg) translateX(-40px);
transform: translateY(-120%) rotate(-5deg) translateX(-40px);
}
80% {
z-index: 1;
}
100% {
-webkit-transform: translateY(-50px) rotate(8deg) translateX(55px) scale(0.95);
transform: translateY(-50px) rotate(8deg) translateX(55px) scale(0.95);
}
}
.card--current {
cursor: auto;
-webkit-user-select: auto;
-moz-user-select: auto;
-ms-user-select: auto;
user-select: auto;
position: relative;
z-index: 10;
opacity: 1;
background: #EEE;
-webkit-transform: rotate(-1deg) translateX(0%) scale(1);
transform: rotate(-1deg) translateX(0%) scale(1);
} | 0.537527 | 0.151812 |
@charset "utf-8";
body {
margin: 0;
background-color: #D0D0D0;
font-family: "Helvetica,Arial,FreeSans";
color: #000000;
}
img { border:0; }
#container {
margin: 0 auto;
width: 700px;
padding: 20px;
background-color: #FFFFFF;
border-left: 1px solid #999999;
border-right: 1px solid #999999;
}
h1 {
font-size: 3.8em;
color: #2c879b;
margin-bottom: 3px;
}
h1 > .small {
font-size: 0.4em;
}
h1 a {
text-decoration: none
}
h2 {
font-size: 1.5em;
color: #2c879b;
border-bottom: 1px dotted #2c879b;
}
h3 {
text-align: center;
color: #2c879b;
}
a {
color: #2c879b;
}
.description {
font-size: 1.2em;
margin-bottom: 30px;
margin-top: 30px;
font-style: italic;
}
/*
pre {
background: #000;
color: #fff;
padding: 15px;
}
*/
hr {
border: 0;
width: 80%;
border-bottom: 1px solid #aaa;
}
ul.plain-list {
list-style-type:none;
margin:0;
padding:0;
}
ul.plain-list > li {
list-style-type:none;
margin:0;
padding:0;
}
#download {
float: right;
}
#github-forkme {
position: absolute;
top: 0;
right: 0;
}
#github-watch {
position: fixed;
bottom: 10px;
right: 10px;
}
#container .footer { text-align:center; padding-top:30px; font-style: italic; }
.menu { font-size: 0; }
.menu > li {
list-style-type: none;
display: inline-block;
font-size: 15px;
}
.menu > li + li {
margin-left: 5px;
}
.menu > li > a {
color: white;
font-weight: bold;
background-color: #666;
text-decoration: none;
display: block;
padding: 2px 4px 2px 4px;
}
.menu > li.active > a {
background-color: #2C879B;
}
.menu > li > a:hover {
background-color: #111;
}
#demo-list > li.current {
font-style: italic;
}
#demo-list > li.current:after {
content: "« currently viewing";
color: #AAA;
display: inline-block;
margin-left: 20px;
}
/* hide whitespace between inline-block elements */
.inline-spaces { font-size: 0; }
.inline-spaces > * { font-size: 11px; }
/* demo trigger boxes */
.box {
color: #EEE;
background: #666;
font-weight: bold;
padding: 20px;
text-align: center;
font-size: 20px;
margin: 5px 0;
}
.box:hover {
background: #777;
}
.box > * {
display:block;
}
.menu-injected { background-color: #C87958; }
.box.context-menu-disabled { background-color: red; }
.ascii-art .line {
color: #999;
}
.ascii-art .label {
color: #2C879B;
font-weight: bold;
}
.note {
background-color: #EEE;
padding: 10px;
margin: -10px;
}
.note::before {
content: "NOTE: ";
font-weight: bold;
}
pre + .note,
.note + .note {
margin-top: 10px;
} | docs/assets/scripts/urijs/screen.css | @charset "utf-8";
body {
margin: 0;
background-color: #D0D0D0;
font-family: "Helvetica,Arial,FreeSans";
color: #000000;
}
img { border:0; }
#container {
margin: 0 auto;
width: 700px;
padding: 20px;
background-color: #FFFFFF;
border-left: 1px solid #999999;
border-right: 1px solid #999999;
}
h1 {
font-size: 3.8em;
color: #2c879b;
margin-bottom: 3px;
}
h1 > .small {
font-size: 0.4em;
}
h1 a {
text-decoration: none
}
h2 {
font-size: 1.5em;
color: #2c879b;
border-bottom: 1px dotted #2c879b;
}
h3 {
text-align: center;
color: #2c879b;
}
a {
color: #2c879b;
}
.description {
font-size: 1.2em;
margin-bottom: 30px;
margin-top: 30px;
font-style: italic;
}
/*
pre {
background: #000;
color: #fff;
padding: 15px;
}
*/
hr {
border: 0;
width: 80%;
border-bottom: 1px solid #aaa;
}
ul.plain-list {
list-style-type:none;
margin:0;
padding:0;
}
ul.plain-list > li {
list-style-type:none;
margin:0;
padding:0;
}
#download {
float: right;
}
#github-forkme {
position: absolute;
top: 0;
right: 0;
}
#github-watch {
position: fixed;
bottom: 10px;
right: 10px;
}
#container .footer { text-align:center; padding-top:30px; font-style: italic; }
.menu { font-size: 0; }
.menu > li {
list-style-type: none;
display: inline-block;
font-size: 15px;
}
.menu > li + li {
margin-left: 5px;
}
.menu > li > a {
color: white;
font-weight: bold;
background-color: #666;
text-decoration: none;
display: block;
padding: 2px 4px 2px 4px;
}
.menu > li.active > a {
background-color: #2C879B;
}
.menu > li > a:hover {
background-color: #111;
}
#demo-list > li.current {
font-style: italic;
}
#demo-list > li.current:after {
content: "« currently viewing";
color: #AAA;
display: inline-block;
margin-left: 20px;
}
/* hide whitespace between inline-block elements */
.inline-spaces { font-size: 0; }
.inline-spaces > * { font-size: 11px; }
/* demo trigger boxes */
.box {
color: #EEE;
background: #666;
font-weight: bold;
padding: 20px;
text-align: center;
font-size: 20px;
margin: 5px 0;
}
.box:hover {
background: #777;
}
.box > * {
display:block;
}
.menu-injected { background-color: #C87958; }
.box.context-menu-disabled { background-color: red; }
.ascii-art .line {
color: #999;
}
.ascii-art .label {
color: #2C879B;
font-weight: bold;
}
.note {
background-color: #EEE;
padding: 10px;
margin: -10px;
}
.note::before {
content: "NOTE: ";
font-weight: bold;
}
pre + .note,
.note + .note {
margin-top: 10px;
} | 0.29972 | 0.103749 |
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700');
a{
text-decoration: none;
}
a.btn{
border: 1px #3e84da solid;
padding: 0.6vw 1vw;
border-radius: 1.5vw;
color: #25282d;
font-size: 1.2vw;
}
body{
font-family: 'Open Sans', sans-serif;
}
header{
/*display: flex;*/
/*align-items: center;*/
/*justify-content: space-between;*/
/*margin: 3vw 6vw;*/
margin: 20px;
}
header img{
/*width: 12vw;*/
}
header ul{
display: flex;
}
header ul li{
margin: 0 0 0 20px;
padding: 5px;
font-size: 1.2vw;
}
/*header ul li.atual{
border-bottom: 1px #3e84da solid;
}*/
.atual{
color: #3e84da;
}
header ul li a.btn{
border: 1px #3e84da solid;
padding: 0.6vw 1vw;
border-radius: 1.5vw;
}
header ul li a{
color:#25282d;
}
section.banner{
font-weight:300;
font-size: 4.1vw;
line-height:6vw;
color: #25282d;
/*width: 75vw;*/
margin: 7vw auto;
letter-spacing: 0.1em;
}
section.banner h1{
margin: 0 0 10px 0;
}
/*section.banner p span*/
section.banner p span{
background: #3e84da;
color: white;
padding: 0 3px;
/**/
line-height: 60px;
}
section.cliente{
text-align: center;
background: #3e84da;
padding: 5vw 0;
color: white;
}
section.cliente h2{
/*font-size: 2.5vw;*/
}
section.cliente p.descricao{
/*width: 42vw;*/
font-size: 1.5vw;
margin: 2vw auto 4vw;
}
section.cliente h3{
font-size: 1.9vw;
padding-bottom: 2vw;
}
section.cliente ul{
overflow: auto;
/*width: 60vw;*/
margin: 0 auto 4vw;
/*border:1px solid #3673bd;*/
}
section.cliente ul li{
/*width:15vw;*/
/*height: 15vw;*/
line-height: 15vw;
/*float: left;*/
/*text-align: center;*/
box-sizing: border-box;
border:1px solid #3673bd;
}
section.cliente ul li img{
/*width:80%;*/
vertical-align: middle;
}
section.cliente a{
border: 1px white solid;
color: white;
margin-top: 2vw;
}
section.digital{
background: #ebe7d8;
padding: 5vw 0;
text-align: center;
}
section.digital h2{
/*font-size: 2.5vw;*/
color: #3f3f40;
}
section.digital p.descricao{
font-size: 1.5vw;
color: #696861;
/*width: 42vw; */
margin: 2vw auto 4vw;
}
section.digital h3{
font-size: 1.9vw;
padding-bottom: 3vw;
color: #25282d;
}
section.digital a{
border: 1px #696861 solid;
color: #696861;
margin-top: 2vw;
}
footer{
/*display: flex;*/
/*align-items: flex-end;*/
/*justify-content: center;*/
padding: 3vw 0;
}
footer img{
/*width: 8vw;*/
}
footer ul{
/*display: flex;*/
/*margin-left: 2vw;*/
}
footer li{
/*margin:0 1vw;*/
font-size: 1.1vw;
}
footer li a {
color: #696969;
} | daikatana/css/style.css | @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,700');
a{
text-decoration: none;
}
a.btn{
border: 1px #3e84da solid;
padding: 0.6vw 1vw;
border-radius: 1.5vw;
color: #25282d;
font-size: 1.2vw;
}
body{
font-family: 'Open Sans', sans-serif;
}
header{
/*display: flex;*/
/*align-items: center;*/
/*justify-content: space-between;*/
/*margin: 3vw 6vw;*/
margin: 20px;
}
header img{
/*width: 12vw;*/
}
header ul{
display: flex;
}
header ul li{
margin: 0 0 0 20px;
padding: 5px;
font-size: 1.2vw;
}
/*header ul li.atual{
border-bottom: 1px #3e84da solid;
}*/
.atual{
color: #3e84da;
}
header ul li a.btn{
border: 1px #3e84da solid;
padding: 0.6vw 1vw;
border-radius: 1.5vw;
}
header ul li a{
color:#25282d;
}
section.banner{
font-weight:300;
font-size: 4.1vw;
line-height:6vw;
color: #25282d;
/*width: 75vw;*/
margin: 7vw auto;
letter-spacing: 0.1em;
}
section.banner h1{
margin: 0 0 10px 0;
}
/*section.banner p span*/
section.banner p span{
background: #3e84da;
color: white;
padding: 0 3px;
/**/
line-height: 60px;
}
section.cliente{
text-align: center;
background: #3e84da;
padding: 5vw 0;
color: white;
}
section.cliente h2{
/*font-size: 2.5vw;*/
}
section.cliente p.descricao{
/*width: 42vw;*/
font-size: 1.5vw;
margin: 2vw auto 4vw;
}
section.cliente h3{
font-size: 1.9vw;
padding-bottom: 2vw;
}
section.cliente ul{
overflow: auto;
/*width: 60vw;*/
margin: 0 auto 4vw;
/*border:1px solid #3673bd;*/
}
section.cliente ul li{
/*width:15vw;*/
/*height: 15vw;*/
line-height: 15vw;
/*float: left;*/
/*text-align: center;*/
box-sizing: border-box;
border:1px solid #3673bd;
}
section.cliente ul li img{
/*width:80%;*/
vertical-align: middle;
}
section.cliente a{
border: 1px white solid;
color: white;
margin-top: 2vw;
}
section.digital{
background: #ebe7d8;
padding: 5vw 0;
text-align: center;
}
section.digital h2{
/*font-size: 2.5vw;*/
color: #3f3f40;
}
section.digital p.descricao{
font-size: 1.5vw;
color: #696861;
/*width: 42vw; */
margin: 2vw auto 4vw;
}
section.digital h3{
font-size: 1.9vw;
padding-bottom: 3vw;
color: #25282d;
}
section.digital a{
border: 1px #696861 solid;
color: #696861;
margin-top: 2vw;
}
footer{
/*display: flex;*/
/*align-items: flex-end;*/
/*justify-content: center;*/
padding: 3vw 0;
}
footer img{
/*width: 8vw;*/
}
footer ul{
/*display: flex;*/
/*margin-left: 2vw;*/
}
footer li{
/*margin:0 1vw;*/
font-size: 1.1vw;
}
footer li a {
color: #696969;
} | 0.126785 | 0.052352 |
FOOTER.EJS STYLES (all-sizes)
==================================================================== */
.footer-section {
width: 100%;
background-color: var(--p7-lighter-pink);
padding: 8px 32px;
color: var(--black);
transition: all 0.3s ease-in-out;
border-top: 1px solid var(--p7-violet-gray);
text-align: center;
padding-top: 20px;
padding-bottom: 10px;
bottom: 0;
margin-bottom: 0;
/* margin-top: 0; */
transition: all 0.3s ease-in-out;
}
.footer-link {
font-size: 18px !important;
font-weight: bold;
margin-right: 15px;
margin-left: 15px;
color: var(---black);
text-decoration: none;
}
.footer-link:hover {
color: var(--p7-darkest-pink);
text-decoration: none;
}
.footer-icon {
margin-right: 15px;
margin-left: 15px;
}
.fa-message {
font-size: 30px;
color: var(--black);
}
.fa-message:hover {
color: var(--p7-darkest-pink);
}
.fa-map-location-dot {
font-size: 30px;
color: var(--black);
}
.fa-map-location-dot:hover {
color: var(--p7-darkest-pink);
}
.fa-airbnb {
font-size: 30px;
color: var(--black);
}
.fa-airbnb:hover {
color: var(--p7-darkest-pink);
}
/* ====================================================================
FOOTER.EJS STYLES (mobile)
==================================================================== */
/* Mobile View */
@media (max-width: 750px) {
.footer-row {
max-width: 350px;
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.footer-content {
margin-bottom: 10px;
font-size: 16px;
}
.footer-links-list {
text-align: center;
text-decoration: none;
list-style: none;
list-style-type: none;
display: flex;
flex-direction: row;
padding: 0px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 10px;
}
.footer-icons {
text-decoration: none;
list-style: none;
list-style-type: none;
display: flex;
flex-direction: row;
padding: 0px;
margin-bottom: 10px;
}
}
/* ====================================================================
FOOTER.EJS STYLES (larger)
==================================================================== */
/* Larger View (like iPad) */
@media (min-width: 750px) {
.footer-row {
max-width: 675px;
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.footer-content {
margin-bottom: 10px;
font-size: 16px;
flex: 40%;
}
.footer-links-list {
text-align: center;
text-decoration: none;
list-style: none;
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: center;
padding: 0px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 20px;
flex: 40%;
}
.footer-icons {
text-decoration: none;
list-style: none;
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: center;
padding: 0px;
margin-bottom: 20px;
flex: 40%;
}
}
/* ====================================================================
FOOTER.EJS STYLES (desktop)
==================================================================== */
/* Desktop View */
@media (min-width: 1000px) {
.footer-row {
max-width: 1000px;
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.footer-content {
margin-bottom: 10px;
font-size: 16px;
flex: 30%;
}
.footer-links-list {
text-align: center;
text-decoration: none;
list-style: none;
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: center;
padding: 0px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 10px;
flex: 30%;
}
.footer-icons {
text-decoration: none;
list-style: none;
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: center;
padding: 0px;
margin-bottom: 10px;
flex: 30%;
}
} | public/css/footer.css | FOOTER.EJS STYLES (all-sizes)
==================================================================== */
.footer-section {
width: 100%;
background-color: var(--p7-lighter-pink);
padding: 8px 32px;
color: var(--black);
transition: all 0.3s ease-in-out;
border-top: 1px solid var(--p7-violet-gray);
text-align: center;
padding-top: 20px;
padding-bottom: 10px;
bottom: 0;
margin-bottom: 0;
/* margin-top: 0; */
transition: all 0.3s ease-in-out;
}
.footer-link {
font-size: 18px !important;
font-weight: bold;
margin-right: 15px;
margin-left: 15px;
color: var(---black);
text-decoration: none;
}
.footer-link:hover {
color: var(--p7-darkest-pink);
text-decoration: none;
}
.footer-icon {
margin-right: 15px;
margin-left: 15px;
}
.fa-message {
font-size: 30px;
color: var(--black);
}
.fa-message:hover {
color: var(--p7-darkest-pink);
}
.fa-map-location-dot {
font-size: 30px;
color: var(--black);
}
.fa-map-location-dot:hover {
color: var(--p7-darkest-pink);
}
.fa-airbnb {
font-size: 30px;
color: var(--black);
}
.fa-airbnb:hover {
color: var(--p7-darkest-pink);
}
/* ====================================================================
FOOTER.EJS STYLES (mobile)
==================================================================== */
/* Mobile View */
@media (max-width: 750px) {
.footer-row {
max-width: 350px;
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.footer-content {
margin-bottom: 10px;
font-size: 16px;
}
.footer-links-list {
text-align: center;
text-decoration: none;
list-style: none;
list-style-type: none;
display: flex;
flex-direction: row;
padding: 0px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 10px;
}
.footer-icons {
text-decoration: none;
list-style: none;
list-style-type: none;
display: flex;
flex-direction: row;
padding: 0px;
margin-bottom: 10px;
}
}
/* ====================================================================
FOOTER.EJS STYLES (larger)
==================================================================== */
/* Larger View (like iPad) */
@media (min-width: 750px) {
.footer-row {
max-width: 675px;
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.footer-content {
margin-bottom: 10px;
font-size: 16px;
flex: 40%;
}
.footer-links-list {
text-align: center;
text-decoration: none;
list-style: none;
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: center;
padding: 0px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 20px;
flex: 40%;
}
.footer-icons {
text-decoration: none;
list-style: none;
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: center;
padding: 0px;
margin-bottom: 20px;
flex: 40%;
}
}
/* ====================================================================
FOOTER.EJS STYLES (desktop)
==================================================================== */
/* Desktop View */
@media (min-width: 1000px) {
.footer-row {
max-width: 1000px;
margin-left: auto;
margin-right: auto;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.footer-content {
margin-bottom: 10px;
font-size: 16px;
flex: 30%;
}
.footer-links-list {
text-align: center;
text-decoration: none;
list-style: none;
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: center;
padding: 0px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 10px;
flex: 30%;
}
.footer-icons {
text-decoration: none;
list-style: none;
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: center;
padding: 0px;
margin-bottom: 10px;
flex: 30%;
}
} | 0.349422 | 0.065098 |
position: absolute;
top: 0;
left: 0;
width: 100%;
height:100%;
visibility: hidden;
display: flex;
flex-direction: row;
}
#roomlist{
/*
position:absolute;
left: 0;
right: 0;
margin: auto;
top: -60px;
bottom: 0;
width:70%;
min-width:750px;
max-width: 1220px;
height: 70%;
visibility: hidden;
background-color: #e2e2e2;
-webkit-box-shadow: 1px 1px 5px -2px rgba(0,0,0,0.63);
-moz-box-shadow: 1px 1px 5px -2px rgba(0,0,0,0.63);
box-shadow: 1px 1px 5px -2px rgba(0,0,0,0.63);
*/
/*position: absolute; */
top: calc(13% - 10px);
height: 68%;
flex-basis: 730px;
flex-grow: 1;
position: relative;
visibility: hidden;
background-color: #e2e2e2;
-webkit-box-shadow: 1px 1px 5px -2px rgba(0,0,0,0.63);
-moz-box-shadow: 1px 1px 5px -2px rgba(0,0,0,0.63);
box-shadow: 1px 1px 5px -2px rgba(0,0,0,0.63);
}
#roomlistflexpadding{
height: 100%;
flex-basis: 10px;
flex-grow: 1;
}
#roomlisttopbar{
background-color: #15756b;
width:100%;
height:40px;
position: absolute;
top:0;
left:0;
background-color: #344150;
box-shadow: inset 0 7px 16px -7px rgb(96 195 239 / 0.11);
}
#roomlisttableheadercontainer{
width:100%;
height:18px;
line-height: 18px;
position: absolute;
left:0px;
top:40px;
background-color: #bababa;
color: #3c3c3c;
font-family: futurept_medium;
font-size: 12px;
white-space: nowrap;
}
#roomlisttableheader_roomname{
display:inline-block;
width:30%;
padding-left: 5px;
box-sizing: border-box;
}
#roomlisttableheader_players{
display:inline-block;
width:13%;
text-align: center;
}
#roomlisttableheader_mode{
display:inline-block;
width:19%;
text-align: center;
}
#roomlisttableheader_levelrequired{
display:inline-block;
width:14%;
text-align: center;
}
#roomlisttableheader_password{
display:inline-block;
width:10%;
text-align: center;
}
#roomlisttableheader_distance{
display:inline-block;
width:12%;
text-align: center;
}
#roomlisthidepasswordedcheckbox{
margin-top:2px;
position: absolute;
}
#roomlisthidepasswordedcheckboxlabel{
color: #e8e8e8;
font-family: futurept_b1;
font-size: 17px;
position: absolute;
left: 24px;
top: -1px;
}
#roomlistsearchinput{
position: absolute;
right: 13px;
top: 7px;
width: 200px;
font-size:17px;
font-family: futurept_b1;
background: #fdfdfd;
border: 1px solid #bdbdbd;
color: #212121;
text-align: center;
}
#roomlistsearchinput:focus{
outline-color: #607d8b;
}
#roomliststatustext{
text-align: center;
font-family: futurept_book;
color: #404040;
font-size: 16px;
position: absolute;
top: 0;
bottom: 0;
margin: auto;
width: 100%;
height: 20px;
}
#roomlistscrollbox{
overflow-y: scroll;
overflow-x: hidden;
height: calc(100% - 58px);
width:100%;
position: absolute;
top: 58px;
box-sizing: border-box;
}
#roomlistscrollbox.ROOMLIST::-webkit-scrollbar-track {
background-color: #dddddd;
}
#roomlistscrollbox.ROOMLIST::-webkit-scrollbar {
width: 12px;
}
#roomlistscrollbox.ROOMLIST::-webkit-scrollbar-thumb {
background-color: #aaaaaa;
}
#roomlisttable{
width:100%;
text-align: center;
color: #000000;
font-family: "futurept_b1";
border-collapse: collapse;
font-size:17px;
table-layout: fixed;
white-space: nowrap;
}
#roomlisttable th{
color: #3c3c3c;
font-family: futurept_medium;
font-size: 12px;
background-color: rgba(58, 58, 58, 0.13);
}
#roomlisttable td{
height: 30px;
cursor: pointer;
}
#roomlisttable tr:nth-child(odd) {
background-color: rgba(58, 58, 58, 0.13);
}
#roomlisttable tr.SELECTED td {
background-color: #9cc8d6;
cursor: pointer;
}
#roomlisttable tr.HOVERUNSELECTED:hover td {
background-color: #aac5d7;
cursor: pointer;
}
#roomlisttable tr.HOVERSELECTED:hover td {
/* same as just selected */
background-color: #9cc8d6;
cursor: pointer;
}
tr.FRIENDSPRESENT{
color: #032a71 !important;
}
#roomlisttableheader1{
text-align: left;
padding-left:6px;
width:56%;
}
#roomlisttableheader2{
width:10%;
}
#roomlisttableheader3{
width:10%;
}
#roomlisttableheader4{
width:10%;
}
#roomlisttableheader5{
width:12%;
}
.roomlistflagcontainer{
position: absolute;
right:0;
margin-top:-9px;
}
.roomlisttablejoined{
color: #989696;
float: right;
font-size: 10px;
padding-top: 4px;
}
.roomlistbottombutton{
position: absolute;
margin: auto;
bottom:-40px;
width: 90px;
height: 30px;
background-color: #795548;
color:#ffffff;
text-align: center;
vertical-align: middle;
line-height: 30px;
/*same as div height*/
font-family: "futurept_b1";
font-size: 15px;
user-select: none;
cursor: pointer;
-webkit-font-smoothing: antialiased;
letter-spacing: 0.3px;
}
.roomlistbottombutton:focus {
outline-color: #35414a;
}
.roomlistbottombutton:hover {
background-color: #806257;
}
#roomlistjoinbutton{
right:0;
}
#roomlistrefreshbutton{
right:100px;
}
#roomlistcreatebutton{
left:0;
}
#roomlistfilterbutton{
right:200px;
}
.roomlistbottombutton_dynamic{
width: auto;
padding-left: 10px;
padding-right: 10px;
}
#roomlistfilterwindow{
background-color: #1e2833;
width: 147px;
height: 184px;
position: absolute;
bottom: 2px;
right: 182px;
color: white;
font-family: 'futurept_b1';
padding: 10px;
box-sizing: border-box;
border-radius: 3px;
display:none;
}
.roomlistfilterwindow_a{
padding-left:5px;
background-color: #222e3a;
padding-top: 3px;
padding-bottom: 3px;
}
.roomlistfilterwindow_b{
padding-left:5px;
background-color: #303943;
padding-top: 3px;
padding-bottom: 3px;
}
#roomlistfilterwindow_title{
margin-bottom: 7px;
}
.roomlistfilterwindowlabel{
padding-left:3px;
cursor: pointer;
}
.roomlistfilterwindowcheckbox{
cursor: pointer;
}
/*
CREATE WINDOW CREATE WINDOW CREATE WINDOW CREATE WINDOW CREATE WINDOW CREATE WINDOW CREATE WINDOW CREATE WINDOW
*/
#roomlistcreatewindowcontainer{
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 280px;
height: 363px;
visibility: hidden;
}
#roomlistcreatewindow {
/*position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;*/
position: relative;
width: 100%;
height: 100%;
background-color: var(--greyWindowBGColor);
color: #5d858d;
pointer-events : auto !important;
border-radius: 7px;
}
#roomlistcreatewindowtoptext{
font-family: "futurept_b1";
color: #ffffff;
text-align: center;
font-size: 20px;
line-height: 32px;
padding: 0px;
margin: 0px;
}
.roomlistcreatewindowlabel {
font-family: "futurept_b1";
color: #000000;
font-size: 16px;
user-select: none;
}
#roomlistcreatewindowlabel1{
position:absolute;
top:47px;
left: 35px;
}
#roomlistcreatewindowlabel2{
position:absolute;
top:104px;
left: 35px;
}
#roomlistcreatewindowlabel3{
position:absolute;
top:161px;
left: 35px;
}
#roomlistcreatewindowlabel4{
position:absolute;
top:220px;
left: 66px;
text-align: center;
}
#roomlistcreatewindowlabel5{
position:absolute;
top:220px;
right: 64px;
text-align: center;
}
#roomlistcreatewindowlabel6{
position:absolute;
text-align: center;
}
.roomlistcreatewindowinput {
position:absolute;
right: 0;
margin: auto;
width: 203px;
padding: 4px;
font-size: 13px;
background: #fdfdfd;
border: 1px solid #bdbdbd;
color: #4e4e4e;
text-align: center;
}
.roomlistcreatewindowinput:focus{
outline-color: #999999;
}
.roomlistcreatewindowinput::selection {
background-color: #5e6a78;
color:#ffffff;
}
#roomlistcreatewindowgamename{
top: 69px;
left: 0;
}
#roomlistcreatewindowpassword{
top:126px;
left: 0;
}
#roomlistcreatewindowmaxplayers{
top: 183px;
left: 0;
}
#roomlistcreatewindowminlevel{
top:242px;
left: -90px;
width: 50px !important;
text-align: center;
}
#roomlistcreatewindowmaxlevel{
top: 242px;
left: 90px;
width: 50px !important;
text-align: center;
}
#roomlistcreatewindowunlisted{
position:absolute;
top:271px;
left:81px;
}
#roomlistcreatewindowunlistedlabel{ /* div for the label */
position:absolute;
height:35px;
text-align: left;
vertical-align: middle;
/* the same as your div height */
font-size: 14px;
user-select: none;
top:1px;
left:25px;
width: 100px;
}
#roomlistcreatewindowunlistedcheckbox{
}
.roomlistcreatewindowinputcheckbox{
}
.roomlistcreatebottombutton{
position: absolute;
bottom: 15px;
text-align: center;
vertical-align: middle;
height:30px;
width:90px;
line-height: 30px;
/*same as div height*/
font-size: 15px;
user-select: none;
cursor: pointer;
-webkit-font-smoothing: antialiased;
letter-spacing: 0.3px;
}
.roomlistcreatebottombutton:hover {
background-color: #35414a;
}
#roomlistcreatecreatebutton{
right:30px;
}
#roomlistcreatecancelbutton{
left: 30px;
}
/* PASSWORD WINDOW/* PASSWORD WINDOW */ /* PASSWORD WINDOW */
#roomlistjoinpasswordwindowcontainer{
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 300px;
height: 170px;
visibility: hidden;
}
#roomlistjoinpasswordwindow {
position: relative;
width:100%;
height:100%;
background-color: #e2e2e2;
pointer-events : auto !important;
border-radius: 7px;
}
#roomlistjoinpasswordtop{
font-family: "futurept_b1";
color: #ffffff;
text-align: center;
line-height: 32px;
font-size: 19px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
#roomlistjoinpasswordwindowlabel{
position: absolute;
height: 35px;
left: 34px;
top: 40px;
text-align: left;
vertical-align: middle;
line-height: 35px;
font-size: 16px;
user-select: none;
font-family: "futurept_b1";
}
.roomlistpassbottombutton{
position: absolute;
bottom: 15px;
text-align: center;
vertical-align: middle;
height:30px;
width:90px;
line-height: 30px;
/*same as div height*/
font-size: 16px;
user-select: none;
cursor: pointer;
}
#roomlistpassjoinbutton{
right:35px;
}
#roomlistpasscancelbutton{
left: 35px;
}
#roomlistjoinpasswordtext {
position: absolute;
top: 70px;
left: 0;
right: 0;
margin: auto;
width: 222px;
padding: 3px;
font-size: 17px;
text-align: center;
font-family: futurept_b1;
border: 1px solid #bdbdbd;
}
#roomlistjoinpasswordtext:focus {
outline-color: #999999;
}
#roomlistjoinpasswordtext::selection {
background-color: #5e6a78;
color:#ffffff;
}
/* CONNECTING WINDOW CONNECTING WINDOW CONNECTING WINDOW CONNECTING WINDOW */
#roomlistconnectingwindow{
position: absolute;
top:-50px;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 300px;
height: 230px;
z-index: 10;
overflow: hidden;
background-color: var(--greyWindowBGColor);
visibility: hidden;
pointer-events : auto !important;
}
#roomlistconnectingwindowlabeltop{
position:absolute;
height:35px;
left:35px;
top:30px;
text-align: left;
vertical-align: middle;
line-height: 35px;
/* the same as your div height */
font-size: 16px;
user-select: none;
}
#roomlistconnectingwindowinner{
position: absolute;
bottom:0;
left: 0;
right: 0;
top:10px;
margin: auto;
width: 228px;
height: 100px;
background: #c3c3c3;
border: 1px solid #a7a7a7;
color: #292929;
font-family: futurept_book;
}
#roomlistconnectingwindowinnerspan{
font-size:12px;
padding:5px;
padding-top:2px;
display: inline-block;
height:100%;
}
#roomlistconnectingwindowcancelbutton{
position: absolute;
bottom:15px;
left: 0;
right: 0;
margin: auto;
width: 230px;
height: 30px;
text-align: center;
vertical-align: middle;
line-height: 30px;
/*same as div height*/
font-size: 16px;
user-select: none;
cursor: pointer;
}
#friendsToolTip{
width: 130px;
color: #ffffff;
font-family: futurept_b1;
font-size: 15px;
visibility: hidden;
position: absolute;
/* right: 38%;
bottom: 38%; */
pointer-events: none;
padding-left: 6px;
padding-right: 6px;
padding-top: 3px;
padding-bottom: 3px;
text-align: left;
border-radius: 3px;
background-color: #1e2833;
}
#friendsToolTip_title{
display: block;
font-size: 16px;
padding-bottom: 4px;
}
#friendsToolTip_list{
display: block;
white-space: pre;
} | css/roomlist.css | position: absolute;
top: 0;
left: 0;
width: 100%;
height:100%;
visibility: hidden;
display: flex;
flex-direction: row;
}
#roomlist{
/*
position:absolute;
left: 0;
right: 0;
margin: auto;
top: -60px;
bottom: 0;
width:70%;
min-width:750px;
max-width: 1220px;
height: 70%;
visibility: hidden;
background-color: #e2e2e2;
-webkit-box-shadow: 1px 1px 5px -2px rgba(0,0,0,0.63);
-moz-box-shadow: 1px 1px 5px -2px rgba(0,0,0,0.63);
box-shadow: 1px 1px 5px -2px rgba(0,0,0,0.63);
*/
/*position: absolute; */
top: calc(13% - 10px);
height: 68%;
flex-basis: 730px;
flex-grow: 1;
position: relative;
visibility: hidden;
background-color: #e2e2e2;
-webkit-box-shadow: 1px 1px 5px -2px rgba(0,0,0,0.63);
-moz-box-shadow: 1px 1px 5px -2px rgba(0,0,0,0.63);
box-shadow: 1px 1px 5px -2px rgba(0,0,0,0.63);
}
#roomlistflexpadding{
height: 100%;
flex-basis: 10px;
flex-grow: 1;
}
#roomlisttopbar{
background-color: #15756b;
width:100%;
height:40px;
position: absolute;
top:0;
left:0;
background-color: #344150;
box-shadow: inset 0 7px 16px -7px rgb(96 195 239 / 0.11);
}
#roomlisttableheadercontainer{
width:100%;
height:18px;
line-height: 18px;
position: absolute;
left:0px;
top:40px;
background-color: #bababa;
color: #3c3c3c;
font-family: futurept_medium;
font-size: 12px;
white-space: nowrap;
}
#roomlisttableheader_roomname{
display:inline-block;
width:30%;
padding-left: 5px;
box-sizing: border-box;
}
#roomlisttableheader_players{
display:inline-block;
width:13%;
text-align: center;
}
#roomlisttableheader_mode{
display:inline-block;
width:19%;
text-align: center;
}
#roomlisttableheader_levelrequired{
display:inline-block;
width:14%;
text-align: center;
}
#roomlisttableheader_password{
display:inline-block;
width:10%;
text-align: center;
}
#roomlisttableheader_distance{
display:inline-block;
width:12%;
text-align: center;
}
#roomlisthidepasswordedcheckbox{
margin-top:2px;
position: absolute;
}
#roomlisthidepasswordedcheckboxlabel{
color: #e8e8e8;
font-family: futurept_b1;
font-size: 17px;
position: absolute;
left: 24px;
top: -1px;
}
#roomlistsearchinput{
position: absolute;
right: 13px;
top: 7px;
width: 200px;
font-size:17px;
font-family: futurept_b1;
background: #fdfdfd;
border: 1px solid #bdbdbd;
color: #212121;
text-align: center;
}
#roomlistsearchinput:focus{
outline-color: #607d8b;
}
#roomliststatustext{
text-align: center;
font-family: futurept_book;
color: #404040;
font-size: 16px;
position: absolute;
top: 0;
bottom: 0;
margin: auto;
width: 100%;
height: 20px;
}
#roomlistscrollbox{
overflow-y: scroll;
overflow-x: hidden;
height: calc(100% - 58px);
width:100%;
position: absolute;
top: 58px;
box-sizing: border-box;
}
#roomlistscrollbox.ROOMLIST::-webkit-scrollbar-track {
background-color: #dddddd;
}
#roomlistscrollbox.ROOMLIST::-webkit-scrollbar {
width: 12px;
}
#roomlistscrollbox.ROOMLIST::-webkit-scrollbar-thumb {
background-color: #aaaaaa;
}
#roomlisttable{
width:100%;
text-align: center;
color: #000000;
font-family: "futurept_b1";
border-collapse: collapse;
font-size:17px;
table-layout: fixed;
white-space: nowrap;
}
#roomlisttable th{
color: #3c3c3c;
font-family: futurept_medium;
font-size: 12px;
background-color: rgba(58, 58, 58, 0.13);
}
#roomlisttable td{
height: 30px;
cursor: pointer;
}
#roomlisttable tr:nth-child(odd) {
background-color: rgba(58, 58, 58, 0.13);
}
#roomlisttable tr.SELECTED td {
background-color: #9cc8d6;
cursor: pointer;
}
#roomlisttable tr.HOVERUNSELECTED:hover td {
background-color: #aac5d7;
cursor: pointer;
}
#roomlisttable tr.HOVERSELECTED:hover td {
/* same as just selected */
background-color: #9cc8d6;
cursor: pointer;
}
tr.FRIENDSPRESENT{
color: #032a71 !important;
}
#roomlisttableheader1{
text-align: left;
padding-left:6px;
width:56%;
}
#roomlisttableheader2{
width:10%;
}
#roomlisttableheader3{
width:10%;
}
#roomlisttableheader4{
width:10%;
}
#roomlisttableheader5{
width:12%;
}
.roomlistflagcontainer{
position: absolute;
right:0;
margin-top:-9px;
}
.roomlisttablejoined{
color: #989696;
float: right;
font-size: 10px;
padding-top: 4px;
}
.roomlistbottombutton{
position: absolute;
margin: auto;
bottom:-40px;
width: 90px;
height: 30px;
background-color: #795548;
color:#ffffff;
text-align: center;
vertical-align: middle;
line-height: 30px;
/*same as div height*/
font-family: "futurept_b1";
font-size: 15px;
user-select: none;
cursor: pointer;
-webkit-font-smoothing: antialiased;
letter-spacing: 0.3px;
}
.roomlistbottombutton:focus {
outline-color: #35414a;
}
.roomlistbottombutton:hover {
background-color: #806257;
}
#roomlistjoinbutton{
right:0;
}
#roomlistrefreshbutton{
right:100px;
}
#roomlistcreatebutton{
left:0;
}
#roomlistfilterbutton{
right:200px;
}
.roomlistbottombutton_dynamic{
width: auto;
padding-left: 10px;
padding-right: 10px;
}
#roomlistfilterwindow{
background-color: #1e2833;
width: 147px;
height: 184px;
position: absolute;
bottom: 2px;
right: 182px;
color: white;
font-family: 'futurept_b1';
padding: 10px;
box-sizing: border-box;
border-radius: 3px;
display:none;
}
.roomlistfilterwindow_a{
padding-left:5px;
background-color: #222e3a;
padding-top: 3px;
padding-bottom: 3px;
}
.roomlistfilterwindow_b{
padding-left:5px;
background-color: #303943;
padding-top: 3px;
padding-bottom: 3px;
}
#roomlistfilterwindow_title{
margin-bottom: 7px;
}
.roomlistfilterwindowlabel{
padding-left:3px;
cursor: pointer;
}
.roomlistfilterwindowcheckbox{
cursor: pointer;
}
/*
CREATE WINDOW CREATE WINDOW CREATE WINDOW CREATE WINDOW CREATE WINDOW CREATE WINDOW CREATE WINDOW CREATE WINDOW
*/
#roomlistcreatewindowcontainer{
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 280px;
height: 363px;
visibility: hidden;
}
#roomlistcreatewindow {
/*position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;*/
position: relative;
width: 100%;
height: 100%;
background-color: var(--greyWindowBGColor);
color: #5d858d;
pointer-events : auto !important;
border-radius: 7px;
}
#roomlistcreatewindowtoptext{
font-family: "futurept_b1";
color: #ffffff;
text-align: center;
font-size: 20px;
line-height: 32px;
padding: 0px;
margin: 0px;
}
.roomlistcreatewindowlabel {
font-family: "futurept_b1";
color: #000000;
font-size: 16px;
user-select: none;
}
#roomlistcreatewindowlabel1{
position:absolute;
top:47px;
left: 35px;
}
#roomlistcreatewindowlabel2{
position:absolute;
top:104px;
left: 35px;
}
#roomlistcreatewindowlabel3{
position:absolute;
top:161px;
left: 35px;
}
#roomlistcreatewindowlabel4{
position:absolute;
top:220px;
left: 66px;
text-align: center;
}
#roomlistcreatewindowlabel5{
position:absolute;
top:220px;
right: 64px;
text-align: center;
}
#roomlistcreatewindowlabel6{
position:absolute;
text-align: center;
}
.roomlistcreatewindowinput {
position:absolute;
right: 0;
margin: auto;
width: 203px;
padding: 4px;
font-size: 13px;
background: #fdfdfd;
border: 1px solid #bdbdbd;
color: #4e4e4e;
text-align: center;
}
.roomlistcreatewindowinput:focus{
outline-color: #999999;
}
.roomlistcreatewindowinput::selection {
background-color: #5e6a78;
color:#ffffff;
}
#roomlistcreatewindowgamename{
top: 69px;
left: 0;
}
#roomlistcreatewindowpassword{
top:126px;
left: 0;
}
#roomlistcreatewindowmaxplayers{
top: 183px;
left: 0;
}
#roomlistcreatewindowminlevel{
top:242px;
left: -90px;
width: 50px !important;
text-align: center;
}
#roomlistcreatewindowmaxlevel{
top: 242px;
left: 90px;
width: 50px !important;
text-align: center;
}
#roomlistcreatewindowunlisted{
position:absolute;
top:271px;
left:81px;
}
#roomlistcreatewindowunlistedlabel{ /* div for the label */
position:absolute;
height:35px;
text-align: left;
vertical-align: middle;
/* the same as your div height */
font-size: 14px;
user-select: none;
top:1px;
left:25px;
width: 100px;
}
#roomlistcreatewindowunlistedcheckbox{
}
.roomlistcreatewindowinputcheckbox{
}
.roomlistcreatebottombutton{
position: absolute;
bottom: 15px;
text-align: center;
vertical-align: middle;
height:30px;
width:90px;
line-height: 30px;
/*same as div height*/
font-size: 15px;
user-select: none;
cursor: pointer;
-webkit-font-smoothing: antialiased;
letter-spacing: 0.3px;
}
.roomlistcreatebottombutton:hover {
background-color: #35414a;
}
#roomlistcreatecreatebutton{
right:30px;
}
#roomlistcreatecancelbutton{
left: 30px;
}
/* PASSWORD WINDOW/* PASSWORD WINDOW */ /* PASSWORD WINDOW */
#roomlistjoinpasswordwindowcontainer{
position: absolute;
top:0;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 300px;
height: 170px;
visibility: hidden;
}
#roomlistjoinpasswordwindow {
position: relative;
width:100%;
height:100%;
background-color: #e2e2e2;
pointer-events : auto !important;
border-radius: 7px;
}
#roomlistjoinpasswordtop{
font-family: "futurept_b1";
color: #ffffff;
text-align: center;
line-height: 32px;
font-size: 19px;
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
#roomlistjoinpasswordwindowlabel{
position: absolute;
height: 35px;
left: 34px;
top: 40px;
text-align: left;
vertical-align: middle;
line-height: 35px;
font-size: 16px;
user-select: none;
font-family: "futurept_b1";
}
.roomlistpassbottombutton{
position: absolute;
bottom: 15px;
text-align: center;
vertical-align: middle;
height:30px;
width:90px;
line-height: 30px;
/*same as div height*/
font-size: 16px;
user-select: none;
cursor: pointer;
}
#roomlistpassjoinbutton{
right:35px;
}
#roomlistpasscancelbutton{
left: 35px;
}
#roomlistjoinpasswordtext {
position: absolute;
top: 70px;
left: 0;
right: 0;
margin: auto;
width: 222px;
padding: 3px;
font-size: 17px;
text-align: center;
font-family: futurept_b1;
border: 1px solid #bdbdbd;
}
#roomlistjoinpasswordtext:focus {
outline-color: #999999;
}
#roomlistjoinpasswordtext::selection {
background-color: #5e6a78;
color:#ffffff;
}
/* CONNECTING WINDOW CONNECTING WINDOW CONNECTING WINDOW CONNECTING WINDOW */
#roomlistconnectingwindow{
position: absolute;
top:-50px;
bottom: 0;
left: 0;
right: 0;
margin: auto;
width: 300px;
height: 230px;
z-index: 10;
overflow: hidden;
background-color: var(--greyWindowBGColor);
visibility: hidden;
pointer-events : auto !important;
}
#roomlistconnectingwindowlabeltop{
position:absolute;
height:35px;
left:35px;
top:30px;
text-align: left;
vertical-align: middle;
line-height: 35px;
/* the same as your div height */
font-size: 16px;
user-select: none;
}
#roomlistconnectingwindowinner{
position: absolute;
bottom:0;
left: 0;
right: 0;
top:10px;
margin: auto;
width: 228px;
height: 100px;
background: #c3c3c3;
border: 1px solid #a7a7a7;
color: #292929;
font-family: futurept_book;
}
#roomlistconnectingwindowinnerspan{
font-size:12px;
padding:5px;
padding-top:2px;
display: inline-block;
height:100%;
}
#roomlistconnectingwindowcancelbutton{
position: absolute;
bottom:15px;
left: 0;
right: 0;
margin: auto;
width: 230px;
height: 30px;
text-align: center;
vertical-align: middle;
line-height: 30px;
/*same as div height*/
font-size: 16px;
user-select: none;
cursor: pointer;
}
#friendsToolTip{
width: 130px;
color: #ffffff;
font-family: futurept_b1;
font-size: 15px;
visibility: hidden;
position: absolute;
/* right: 38%;
bottom: 38%; */
pointer-events: none;
padding-left: 6px;
padding-right: 6px;
padding-top: 3px;
padding-bottom: 3px;
text-align: left;
border-radius: 3px;
background-color: #1e2833;
}
#friendsToolTip_title{
display: block;
font-size: 16px;
padding-bottom: 4px;
}
#friendsToolTip_list{
display: block;
white-space: pre;
} | 0.257112 | 0.076615 |
body {
color: #000;
background-color: #fff;
font-size: 13px;
}
p {
margin-left: 4px;
margin-top: 8px;
margin-bottom: 4px;
}
ul, ol {
margin-top: 4px;
margin-bottom: 4px;
}
/* color alternatives... (color/background-color)
* Jakarta: #fff / #036
* dark: #fff / #669
* light: #000 / #ccf
*/
h2 {
color: #000;
border: none;
margin-top: 8px;
margin-bottom: 4px;
padding: 4px 4px 4px 6px;
background-color: #ccf;
font-weight: 900;
font-size: 13px;
background-image: url(../images/nw_maj_rond.gif);
background-repeat: no-repeat;
}
/* color alternatives... (color/background-color)
* Jakarta: #fff / #888
* dark: #fff / #aaa
* light: #333 / #ccc
*/
h3 {
color: #333;
background-color: #ccc;
margin-top: 12px;
margin-bottom: 4px;
padding: 4px 4px 4px 6px;
border: none;
font-weight: 900;
font-size: 13px;
background-image: url(../images/nw_maj_rond.gif);
background-repeat: no-repeat;
}
h4 {
color: #333;
margin-top: 4px;
margin-bottom: 4px;
border: none;
font-weight: 900;
font-size: 13px;
}
tr {
color: #000;
background-color: #fff;
font-size: 13px;
}
pre {
background-color: #eee;
padding: 10px 10px 10px 10px;
}
div#bodyColumn {
margin-top: 0px;
margin-left: 158px;
}
div#bodyColumn a {
text-decoration: underline;
}
div#bodyColumn a:link {
color: #00f;
}
div#bodyColumn a:visited {
color: #00f;
}
a:active, a:hover {
color: #f30 !important;
}
div.source {
background-color: #eee;
color: #000;
margin-right: 0px;
margin-left: 4px;
margin-top: 1em;
}
div#leftColumn {
color: #000;
background-color: #eee;
margin-left: 0px;
margin-top: 0px;
border-right: 1px solid #aaa;
border-bottom: 1px solid #aaa;
border-top: none;
border-left: none;
width: 150px;
}
div#navcolumn {
color: #000;
border: none;
padding: 6px 4px 0 8px;
}
#navcolumn li {
padding-left: 8px;
}
#navcolumn h5 {
padding-top: 3px;
}
#banner, #banner td {
background-color: #fff;
color: #000;
}
#banner td {
height: 100%;
vertical-align: middle;
}
#menuCommons a.externalLink,
#menuCommons a.externalLink:link,
#menuCommons a.externalLink:visited,
#menuCommons a.externalLink:active,
#menuCommons a.externalLink:hover {
background-image: none;
padding-right: 0px;
} | src/site/resources/css/hc-maven.css | body {
color: #000;
background-color: #fff;
font-size: 13px;
}
p {
margin-left: 4px;
margin-top: 8px;
margin-bottom: 4px;
}
ul, ol {
margin-top: 4px;
margin-bottom: 4px;
}
/* color alternatives... (color/background-color)
* Jakarta: #fff / #036
* dark: #fff / #669
* light: #000 / #ccf
*/
h2 {
color: #000;
border: none;
margin-top: 8px;
margin-bottom: 4px;
padding: 4px 4px 4px 6px;
background-color: #ccf;
font-weight: 900;
font-size: 13px;
background-image: url(../images/nw_maj_rond.gif);
background-repeat: no-repeat;
}
/* color alternatives... (color/background-color)
* Jakarta: #fff / #888
* dark: #fff / #aaa
* light: #333 / #ccc
*/
h3 {
color: #333;
background-color: #ccc;
margin-top: 12px;
margin-bottom: 4px;
padding: 4px 4px 4px 6px;
border: none;
font-weight: 900;
font-size: 13px;
background-image: url(../images/nw_maj_rond.gif);
background-repeat: no-repeat;
}
h4 {
color: #333;
margin-top: 4px;
margin-bottom: 4px;
border: none;
font-weight: 900;
font-size: 13px;
}
tr {
color: #000;
background-color: #fff;
font-size: 13px;
}
pre {
background-color: #eee;
padding: 10px 10px 10px 10px;
}
div#bodyColumn {
margin-top: 0px;
margin-left: 158px;
}
div#bodyColumn a {
text-decoration: underline;
}
div#bodyColumn a:link {
color: #00f;
}
div#bodyColumn a:visited {
color: #00f;
}
a:active, a:hover {
color: #f30 !important;
}
div.source {
background-color: #eee;
color: #000;
margin-right: 0px;
margin-left: 4px;
margin-top: 1em;
}
div#leftColumn {
color: #000;
background-color: #eee;
margin-left: 0px;
margin-top: 0px;
border-right: 1px solid #aaa;
border-bottom: 1px solid #aaa;
border-top: none;
border-left: none;
width: 150px;
}
div#navcolumn {
color: #000;
border: none;
padding: 6px 4px 0 8px;
}
#navcolumn li {
padding-left: 8px;
}
#navcolumn h5 {
padding-top: 3px;
}
#banner, #banner td {
background-color: #fff;
color: #000;
}
#banner td {
height: 100%;
vertical-align: middle;
}
#menuCommons a.externalLink,
#menuCommons a.externalLink:link,
#menuCommons a.externalLink:visited,
#menuCommons a.externalLink:active,
#menuCommons a.externalLink:hover {
background-image: none;
padding-right: 0px;
} | 0.451568 | 0.134605 |
.mini-calendar,
.medium-calendar {
padding-top: 1em;
position: relative;
z-index: 89;
text-align: center;
}
.mini-calendar {
float: left;
}
.next-to-mini-calendar {
margin-right: 14em;
}
.mini-calendar.float-right {
float: left;
}
.mini-calendar.float-right + .next-to-mini-calendar {
margin-right: 0;
margin-left: 14em;
}
.calendar-controls {
position: absolute;
z-index: 89;
top: 0;
right: 50%;
width: 9em;
margin-right: -5.083em;
text-align: center;
line-height: 1.333em;
padding: 0.25em 0.5em;
border: 1px solid white;
-moz-border-radius: 0.417em;
-webkit-border-radius: 0.417em;
-webkit-background-clip: padding-box;
border-radius: 0.417em;
-moz-box-shadow: 0 rgba(0, 0, 0, 0.5) 3px 0;
-webkit-box-shadow: 0 rgba(0, 0, 0, 0.5) 3px 0;
box-shadow: 0 rgba(0, 0, 0, 0.5) 3px 0;
color: #3399cc;
background: #dfdfdf url(../images/button-bg.png) repeat-x top;
-webkit-background-size: 100% 100%;
-moz-background-size: 100% 100%;
-o-background-size: 100% 100%;
background-size: 100% 100%;
background: -moz-linear-gradient(
top,
#f6f6f6,
#dfdfdf
);
background: -webkit-gradient(
linear,
left top, left bottom,
from(#f6f6f6),
to(#dfdfdf)
);
}
/* IE class */
.ie .calendar-controls {
border-color: #cccccc;
}
.calendar-controls .calendar-prev,
.calendar-controls .calendar-next {
display: block;
height: 1.333em;
line-height: 1.333em;
width: 1.333em;
padding: 0.25em;
text-align: center;
background-size: 2px 100%;
-moz-background-size: 2px 100%;
-webkit-background-size: 2px 100%;
margin: -0.25em 0 -0.333em;
}
.calendar-controls .calendar-prev {
float: right;
background: url(../images/menu-border.png) no-repeat left center;
margin-right: -0.5em;
}
.calendar-controls .calendar-next {
float: left;
background: url(../images/menu-border.png) no-repeat right center;
margin-left: -0.5em;
}
.calendar-controls .calendar-prev img,
.calendar-controls .calendar-next img {
vertical-align: -15%;
}
.calendar-controls .calendar-prev img {
margin-right: -2px;
}
.calendar-controls .calendar-next img {
margin-left: -2px;
}
.mini-calendar table,
.medium-calendar table {
border: 1px solid #cccccc;
border-collapse: separate;
}
.mini-calendar thead th,
.mini-calendar thead td,
.medium-calendar thead th,
.medium-calendar thead td {
height: 3em;
padding-bottom: 0.25em;
text-align: center;
vertical-align: bottom;
font-weight: normal;
color: #808080;
background: #cccccc url(../images/mini-calendar-head-bg.png) repeat-x top;
-webkit-background-size: 100% 100%;
-moz-background-size: 100% 100%;
-o-background-size: 100% 100%;
background-size: 100% 100%;
background: -moz-linear-gradient(
top,
white,
#e7e7e7 80%,
#cccccc
);
background: -webkit-gradient(
linear,
left top, left bottom,
from(white),
to(#cccccc),
color-stop(0.8, #e7e7e7)
);
-moz-text-shadow: 1px 1px 0 white;
-webkit-text-shadow: 1px 1px 0 white;
text-shadow: 1px 1px 0 white;
border-bottom: 1px solid #cccccc;
}
.mini-calendar thead th:last-child,
.mini-calendar thead td:last-child,
.medium-calendar thead th:last-child,
.medium-calendar thead td:last-child {
border-left: 0;
}
/* IE class */
.mini-calendar thead th.last-child,
.mini-calendar thead td.last-child,
.medium-calendar thead th.last-child,
.medium-calendar thead td.last-child {
border-left: 0;
}
.mini-calendar tbody th,
.mini-calendar tbody td,
.medium-calendar tbody th,
.medium-calendar tbody td {
background: white;
text-align: center;
vertical-align: middle;
color: #333333;
}
.mini-calendar tbody th,
.mini-calendar tbody td {
font-size: 0.833em;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Sans", Arial, Helvetica, sans-serif;
width: 2.1em;
height: 2.2em;
}
.mini-calendar tbody th:last-child,
.mini-calendar tbody td:last-child,
.medium-calendar tbody th:last-child,
.medium-calendar tbody td:last-child {
border-left: 0;
}
/* IE class */
.mini-calendar tbody th.last-child,
.mini-calendar tbody td.last-child,
.medium-calendar tbody th.last-child,
.medium-calendar tbody td.last-child {
border-left: 0;
}
.mini-calendar tbody tr:last-child th,
.mini-calendar tbody tr:last-child td,
.medium-calendar tbody tr:last-child th,
.medium-calendar tbody tr:last-child td {
border-bottom: 0;
}
/* IE class */
.mini-calendar tbody tr.last-child th,
.mini-calendar tbody tr.last-child td,
.medium-calendar tbody tr.last-child th,
.medium-calendar tbody tr.last-child td {
border-bottom: 0;
}
.mini-calendar tbody a,
.mini-calendar tbody div,
.medium-calendar tbody a,
.medium-calendar tbody div {
display: block;
position: relative;
z-index: 89;
height: 100%;
}
.mini-calendar tbody a,
.medium-calendar tbody a {
color: #333333;
}
.mini-calendar tbody a,
.mini-calendar tbody div {
line-height: 2.22em;
}
.mini-calendar tbody .week-end,
.mini-calendar tbody .week-end a,
.medium-calendar tbody .week-end,
.medium-calendar tbody .week-end a {
color: #808080;
}
.mini-calendar tbody .other-month,
.mini-calendar tbody .other-month a,
.medium-calendar tbody .other-month,
.medium-calendar tbody .other-month a {
color: #CCCCCC;
font-weight: normal;
}
.mini-calendar tbody .today,
.mini-calendar tbody .today a,
.medium-calendar tbody .today,
.medium-calendar tbody .today a {
color: #3399cc;
font-weight: bold;
}
.mini-calendar tbody span.today,
.medium-calendar tbody span.today {
background: #3399cc;
color: white;
padding: 0.25em 0.5em;
-moz-border-radius: 0.417em;
-webkit-border-radius: 0.417em;
-webkit-background-clip: padding-box;
border-radius: 0.417em;
}
.mini-calendar tbody a:hover span.today,
.medium-calendar tbody a:hover span.today {
background: white;
color: #3399cc;
-moz-text-shadow: none;
-webkit-text-shadow: none;
text-shadow: none;
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
/* Date picker integration - Thanks to sbkyle! */
.mini-calendar tbody a:hover, .mini-calendar tbody a.selected {
background: #72c6e4 url(../images/mini-cal-bg.png) repeat-x top;
background: -moz-linear-gradient(
top,
#0c5fa5,
#72c6e4
);
background: -webkit-gradient(
linear,
left top, left bottom,
from(#0c5fa5),
to(#72c6e4)
);
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}
.mini-calendar tbody a.selected {
color:#FFF;
font-weight:bold;
}
.datepick-month-year { font-size:.8em !important; padding:0 !important; }
.datepick {direction:rtl; width:auto !important }
.datepick-popup { z-index:100; }
.mini-calendar tbody th.unavailable,
.mini-calendar tbody td.unavailable,
.medium-calendar tbody th.unavailable,
.medium-calendar tbody td.unavailable {
background: white url(../images/lite-grey-stripes.png);
color: #b0b0b0;
-moz-text-shadow: 1px 1px 0 white;
-webkit-text-shadow: 1px 1px 0 white;
text-shadow: 1px 1px 0 white;
} | assets/css/calendars-rtl.css | .mini-calendar,
.medium-calendar {
padding-top: 1em;
position: relative;
z-index: 89;
text-align: center;
}
.mini-calendar {
float: left;
}
.next-to-mini-calendar {
margin-right: 14em;
}
.mini-calendar.float-right {
float: left;
}
.mini-calendar.float-right + .next-to-mini-calendar {
margin-right: 0;
margin-left: 14em;
}
.calendar-controls {
position: absolute;
z-index: 89;
top: 0;
right: 50%;
width: 9em;
margin-right: -5.083em;
text-align: center;
line-height: 1.333em;
padding: 0.25em 0.5em;
border: 1px solid white;
-moz-border-radius: 0.417em;
-webkit-border-radius: 0.417em;
-webkit-background-clip: padding-box;
border-radius: 0.417em;
-moz-box-shadow: 0 rgba(0, 0, 0, 0.5) 3px 0;
-webkit-box-shadow: 0 rgba(0, 0, 0, 0.5) 3px 0;
box-shadow: 0 rgba(0, 0, 0, 0.5) 3px 0;
color: #3399cc;
background: #dfdfdf url(../images/button-bg.png) repeat-x top;
-webkit-background-size: 100% 100%;
-moz-background-size: 100% 100%;
-o-background-size: 100% 100%;
background-size: 100% 100%;
background: -moz-linear-gradient(
top,
#f6f6f6,
#dfdfdf
);
background: -webkit-gradient(
linear,
left top, left bottom,
from(#f6f6f6),
to(#dfdfdf)
);
}
/* IE class */
.ie .calendar-controls {
border-color: #cccccc;
}
.calendar-controls .calendar-prev,
.calendar-controls .calendar-next {
display: block;
height: 1.333em;
line-height: 1.333em;
width: 1.333em;
padding: 0.25em;
text-align: center;
background-size: 2px 100%;
-moz-background-size: 2px 100%;
-webkit-background-size: 2px 100%;
margin: -0.25em 0 -0.333em;
}
.calendar-controls .calendar-prev {
float: right;
background: url(../images/menu-border.png) no-repeat left center;
margin-right: -0.5em;
}
.calendar-controls .calendar-next {
float: left;
background: url(../images/menu-border.png) no-repeat right center;
margin-left: -0.5em;
}
.calendar-controls .calendar-prev img,
.calendar-controls .calendar-next img {
vertical-align: -15%;
}
.calendar-controls .calendar-prev img {
margin-right: -2px;
}
.calendar-controls .calendar-next img {
margin-left: -2px;
}
.mini-calendar table,
.medium-calendar table {
border: 1px solid #cccccc;
border-collapse: separate;
}
.mini-calendar thead th,
.mini-calendar thead td,
.medium-calendar thead th,
.medium-calendar thead td {
height: 3em;
padding-bottom: 0.25em;
text-align: center;
vertical-align: bottom;
font-weight: normal;
color: #808080;
background: #cccccc url(../images/mini-calendar-head-bg.png) repeat-x top;
-webkit-background-size: 100% 100%;
-moz-background-size: 100% 100%;
-o-background-size: 100% 100%;
background-size: 100% 100%;
background: -moz-linear-gradient(
top,
white,
#e7e7e7 80%,
#cccccc
);
background: -webkit-gradient(
linear,
left top, left bottom,
from(white),
to(#cccccc),
color-stop(0.8, #e7e7e7)
);
-moz-text-shadow: 1px 1px 0 white;
-webkit-text-shadow: 1px 1px 0 white;
text-shadow: 1px 1px 0 white;
border-bottom: 1px solid #cccccc;
}
.mini-calendar thead th:last-child,
.mini-calendar thead td:last-child,
.medium-calendar thead th:last-child,
.medium-calendar thead td:last-child {
border-left: 0;
}
/* IE class */
.mini-calendar thead th.last-child,
.mini-calendar thead td.last-child,
.medium-calendar thead th.last-child,
.medium-calendar thead td.last-child {
border-left: 0;
}
.mini-calendar tbody th,
.mini-calendar tbody td,
.medium-calendar tbody th,
.medium-calendar tbody td {
background: white;
text-align: center;
vertical-align: middle;
color: #333333;
}
.mini-calendar tbody th,
.mini-calendar tbody td {
font-size: 0.833em;
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Sans", Arial, Helvetica, sans-serif;
width: 2.1em;
height: 2.2em;
}
.mini-calendar tbody th:last-child,
.mini-calendar tbody td:last-child,
.medium-calendar tbody th:last-child,
.medium-calendar tbody td:last-child {
border-left: 0;
}
/* IE class */
.mini-calendar tbody th.last-child,
.mini-calendar tbody td.last-child,
.medium-calendar tbody th.last-child,
.medium-calendar tbody td.last-child {
border-left: 0;
}
.mini-calendar tbody tr:last-child th,
.mini-calendar tbody tr:last-child td,
.medium-calendar tbody tr:last-child th,
.medium-calendar tbody tr:last-child td {
border-bottom: 0;
}
/* IE class */
.mini-calendar tbody tr.last-child th,
.mini-calendar tbody tr.last-child td,
.medium-calendar tbody tr.last-child th,
.medium-calendar tbody tr.last-child td {
border-bottom: 0;
}
.mini-calendar tbody a,
.mini-calendar tbody div,
.medium-calendar tbody a,
.medium-calendar tbody div {
display: block;
position: relative;
z-index: 89;
height: 100%;
}
.mini-calendar tbody a,
.medium-calendar tbody a {
color: #333333;
}
.mini-calendar tbody a,
.mini-calendar tbody div {
line-height: 2.22em;
}
.mini-calendar tbody .week-end,
.mini-calendar tbody .week-end a,
.medium-calendar tbody .week-end,
.medium-calendar tbody .week-end a {
color: #808080;
}
.mini-calendar tbody .other-month,
.mini-calendar tbody .other-month a,
.medium-calendar tbody .other-month,
.medium-calendar tbody .other-month a {
color: #CCCCCC;
font-weight: normal;
}
.mini-calendar tbody .today,
.mini-calendar tbody .today a,
.medium-calendar tbody .today,
.medium-calendar tbody .today a {
color: #3399cc;
font-weight: bold;
}
.mini-calendar tbody span.today,
.medium-calendar tbody span.today {
background: #3399cc;
color: white;
padding: 0.25em 0.5em;
-moz-border-radius: 0.417em;
-webkit-border-radius: 0.417em;
-webkit-background-clip: padding-box;
border-radius: 0.417em;
}
.mini-calendar tbody a:hover span.today,
.medium-calendar tbody a:hover span.today {
background: white;
color: #3399cc;
-moz-text-shadow: none;
-webkit-text-shadow: none;
text-shadow: none;
-moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
/* Date picker integration - Thanks to sbkyle! */
.mini-calendar tbody a:hover, .mini-calendar tbody a.selected {
background: #72c6e4 url(../images/mini-cal-bg.png) repeat-x top;
background: -moz-linear-gradient(
top,
#0c5fa5,
#72c6e4
);
background: -webkit-gradient(
linear,
left top, left bottom,
from(#0c5fa5),
to(#72c6e4)
);
-moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
-webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}
.mini-calendar tbody a.selected {
color:#FFF;
font-weight:bold;
}
.datepick-month-year { font-size:.8em !important; padding:0 !important; }
.datepick {direction:rtl; width:auto !important }
.datepick-popup { z-index:100; }
.mini-calendar tbody th.unavailable,
.mini-calendar tbody td.unavailable,
.medium-calendar tbody th.unavailable,
.medium-calendar tbody td.unavailable {
background: white url(../images/lite-grey-stripes.png);
color: #b0b0b0;
-moz-text-shadow: 1px 1px 0 white;
-webkit-text-shadow: 1px 1px 0 white;
text-shadow: 1px 1px 0 white;
} | 0.288168 | 0.140336 |
@keyframes neutralcolors {
0% {
background-position: 5% 0%
}
50% {
background-position: 96% 100%
}
100% {
background-position: 5% 0%
}
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes title {
0% {
filter: drop-shadow(0px 0px 0px rgb(255, 74, 74)) drop-shadow(-10px 10px 0px rgb(69, 128, 255));
}
20% {
filter: drop-shadow(-10px 10px 0px rgb(255, 74, 74)) drop-shadow(0px 0px 0px rgb(69, 128, 255));
}
20.0001% {
filter: drop-shadow(0px 0px 0px rgb(236, 213, 85)) drop-shadow(-10px 10px 0px rgb(255, 74, 74));
}
40% {
filter: drop-shadow(-10px 10px 0px rgb(236, 213, 85)) drop-shadow(0px 0px 0px rgb(255, 74, 74));
}
40.0001% {
filter: drop-shadow(0px 0px 0px rgb(206, 131, 255)) drop-shadow(-10px 10px 0px rgb(236, 213, 85));
}
60% {
filter: drop-shadow(-10px 10px 0px rgb(206, 131, 255)) drop-shadow(0px 0px 0px rgb(236, 213, 85));
}
60.0001% {
filter: drop-shadow(0px 0px 0px rgb(119, 201, 116)) drop-shadow(-10px 10px 0px rgb(206, 131, 255));
}
80% {
filter: drop-shadow(-10px 10px 0px rgb(119, 201, 116)) drop-shadow(0px 0px 0px rgb(206, 131, 255));
}
80.0001% {
filter: drop-shadow(0px 0px 0px rgb(69, 128, 255)) drop-shadow(-10px 10px 0px rgb(119, 201, 116));
}
100% {
filter: drop-shadow(-10px 10px 0px rgb(69, 128, 255)) drop-shadow(0px 0px 0px rgb(119, 201, 116));
}
}
@keyframes fadeInUp {
from {
transform: translate3d(0, 40px, 0)
}
to {
transform: translate3d(0, 0, 0);
opacity: 1
}
}
@keyframes fadeinoutin {
0% {
transform: translate3d(0, 0px, 0);
opacity: 1
}
45% {
transform: translate3d(0, 40px, 0);
opacity: 0
}
55% {
transform: translate3d(0, 40px, 0);
opacity: 0
}
100% {
transform: translate3d(0, 0px, 0);
opacity: 1
}
}
@keyframes playcheckyes {
to {
opacity: 1
}
}
@keyframes playcheckno {
to {
opacity: 0
}
}
@keyframes lightbuttonanim {
0% {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 225%;
height: 49px;
width: 67.5px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 20px 50px;
}
/*45% {
top: 50%;
left: 50%;
transform: translate(-50%, 700%);
color: rgba(0, 0, 0, 0);
font-size: 0%;
height: 20px;
width: 67.5px;
text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
padding: 10px 10px;
}*/
50% {
top: 50%;
left: 50%;
transform: translate(-275%, 200%);
color: rgba(0, 0, 0, 0);
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
padding: 10px 10px;
}
100% {
top: 50%;
left: 50%;
transform: translate(-105%, -10%);
color: black;
font-size: 150%;
height: 250px;
width: 210px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
}
@keyframes darkbuttonanim {
0% {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 225%;
height: 49px;
width: 67.5px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 20px 50px;
}
/*45% {
top: 50%;
left: 50%;
transform: translate(-50%, 700%);
color: rgba(0, 0, 0, 0);
font-size: 0%;
height: 20px;
width: 67.5px;
text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
padding: 10px 10px;
}*/
50% {
top: 50%;
left: 50%;
transform: translate(175%, 200%);
color: rgba(0, 0, 0, 0);
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
padding: 10px 10px;
}
100% {
top: 50%;
left: 50%;
transform: translate(5%, -10%);
color: white;
font-size: 150%;
height: 250px;
width: 210px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
background-color: rgb(53, 53, 53);
}
}
@keyframes playbuttonanim {
0% {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 225%;
height: 49px;
width: 67.5px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 20px 50px;
}
/*45% {
top: 50%;
left: 50%;
transform: translate(-50%, 700%);
color: rgba(0, 0, 0, 0);
font-size: 0%;
height: 20px;
width: 67.5px;
text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
padding: 10px 10px;
}*/
50% {
top: 50%;
left: 50%;
transform: translate(-50%, 570%);
color: rgba(0, 0, 0, 0);
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
padding: 10px 10px;
}
100% {
top: 50%;
left: 50%;
transform: translate(-600%, 635%);
color: black;
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
}
.fadeOut {
animation-delay: 0s;
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: fadeoutstuff;
}
@keyframes fadeoutstuff {
0% {
opacity: 100%;
font-size: 225%;
}
100% {
opacity: 0%;
font-size: 0%;
}
}
.darkbuttonfadeOut {
animation-delay: 0s;
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: darkfadeoutstuff;
position: absolute
}
@keyframes darkfadeoutstuff {
0% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(5%, -10%);
color: white;
font-size: 150%;
height: 250px;
width: 210px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
background-color: rgb(53, 53, 53);
}
100% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: rgb(0, 0, 0);
font-size: 150%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
background-color: rgb(53, 53, 53);
}
}
.lightbuttonfadeOut {
animation-delay: 0s;
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: lightfadeoutstuff;
position: absolute;
}
@keyframes lightfadeoutstuff {
0% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-105%, -10%);
color: black;
font-size: 150%;
height: 250px;
width: 210px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
100% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 150%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
}
.playbuttonfadeOut {
animation-delay: 0s;
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: playfadeoutstuff;
position: absolute;
}
@keyframes playfadeoutstuff {
0% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-600%, 635%);
color: black;
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
100% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
}
.introtextfadeOut {
animation-delay: 1s;
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: introtextfadeoutstuff;
justify-content: center;
align-items: center;
text-align: center;
vertical-align: middle;
}
@keyframes introtextfadeoutstuff {
0% {
opacity: 100%;
text-shadow: 2px 2px 4px #000000;
color: white;
font-size: 175%;
font-family: 'Playfair Display', serif;
font-weight: normal;
font-style: normal;
text-align: center;
}
100% {
opacity: 0%;
text-shadow: 2px 2px 4px #000000;
color: white;
font-size: 0%;
font-family: 'Playfair Display', serif;
font-weight: normal;
font-style: normal;
text-align: center;
}
}
.expandToMainMenu {
animation-delay: 0s;
animation-duration: 2s;
animation-fill-mode: both;
animation-name: expandmenuanim;
position: absolute;
background-color: #f0f0f0;
border-radius: 20px;
color: rgb(0, 0, 0);
padding: 20px 20px;
text-align: center;
text-decoration: none;
font-size: 225%;
margin: 4px 2px;
transition-duration: .5s;
font-family: 'Playfair Display', serif;
font-weight: normal;
font-style: normal;
border: none;
height: 20px;
width: 20px;
box-shadow: 10px 10px 10px #18181870, 10px 10px 10px #1a1a1a67, 0 0 0 #cccccc inset, 0 0 0 #ffffff inset;
}
@keyframes expandmenuanim {
0% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
100% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -10%);
color: black;
font-size: 0%;
height: 650px;
width: 900px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
background-color: rgba(240, 240, 240, 0.459);
}
}
.DarkexpandToMainMenu {
animation-delay: 0s;
animation-duration: 2s;
animation-fill-mode: both;
animation-name: darkexpandmenuanim;
position: absolute;
background-color: #f0f0f0;
border-radius: 20px;
color: rgb(0, 0, 0);
padding: 20px 20px;
text-align: center;
text-decoration: none;
font-size: 225%;
margin: 4px 2px;
transition-duration: .5s;
font-family: 'Playfair Display', serif;
font-weight: normal;
font-style: normal;
border: none;
height: 20px;
width: 20px;
box-shadow: 10px 10px 10px #18181870, 10px 10px 10px #1a1a1a67, 0 0 0 #cccccc inset, 0 0 0 #ffffff inset;
}
@keyframes darkexpandmenuanim {
0% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
100% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -10%);
color: black;
font-size: 0%;
height: 650px;
width: 900px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
background-color: rgba(7, 7, 7, 0.315);
}
}
.mainMenuLogoShrink {
animation-delay: 0s;
animation-duration: 2s;
animation-fill-mode: both;
animation-name: makelogosmaller;
max-width: 60%;
}
@keyframes makelogosmaller {
0% {
filter: drop-shadow(0px 0px 0px rgb(255, 74, 74)) drop-shadow(-10px 10px 0px rgb(69, 128, 255));
max-width: 60%;
}
20% {
filter: drop-shadow(-10px 10px 0px rgb(255, 74, 74)) drop-shadow(0px 0px 0px rgb(69, 128, 255));
}
20.0001% {
filter: drop-shadow(0px 0px 0px rgb(236, 213, 85)) drop-shadow(-10px 10px 0px rgb(255, 74, 74));
}
40% {
filter: drop-shadow(-10px 10px 0px rgb(236, 213, 85)) drop-shadow(0px 0px 0px rgb(255, 74, 74));
}
40.0001% {
filter: drop-shadow(0px 0px 0px rgb(206, 131, 255)) drop-shadow(-10px 10px 0px rgb(236, 213, 85));
}
60% {
filter: drop-shadow(-10px 10px 0px rgb(206, 131, 255)) drop-shadow(0px 0px 0px rgb(236, 213, 85));
}
60.0001% {
filter: drop-shadow(0px 0px 0px rgb(119, 201, 116)) drop-shadow(-10px 10px 0px rgb(206, 131, 255));
}
80% {
filter: drop-shadow(-10px 10px 0px rgb(119, 201, 116)) drop-shadow(0px 0px 0px rgb(206, 131, 255));
}
80.0001% {
filter: drop-shadow(0px 0px 0px rgb(69, 128, 255)) drop-shadow(-10px 10px 0px rgb(119, 201, 116));
}
100% {
filter: drop-shadow(-10px 10px 0px rgb(69, 128, 255)) drop-shadow(0px 0px 0px rgb(119, 201, 116));
max-width: 30%;
}
}
.mainMenuLogosmall {
animation-delay: 0s;
animation-duration: 5s;
animation-fill-mode: both;
animation-name: titleanimsmall;
max-width: 30%;
animation-iteration-count: infinite;
}
@keyframes titleanimsmall {
0% {
filter: drop-shadow(0px 0px 0px rgb(255, 74, 74)) drop-shadow(-10px 10px 0px rgb(69, 128, 255));
max-width: 30%;
}
20% {
filter: drop-shadow(-10px 10px 0px rgb(255, 74, 74)) drop-shadow(0px 0px 0px rgb(69, 128, 255));
}
20.0001% {
filter: drop-shadow(0px 0px 0px rgb(236, 213, 85)) drop-shadow(-10px 10px 0px rgb(255, 74, 74));
}
40% {
filter: drop-shadow(-10px 10px 0px rgb(236, 213, 85)) drop-shadow(0px 0px 0px rgb(255, 74, 74));
}
40.0001% {
filter: drop-shadow(0px 0px 0px rgb(206, 131, 255)) drop-shadow(-10px 10px 0px rgb(236, 213, 85));
}
60% {
filter: drop-shadow(-10px 10px 0px rgb(206, 131, 255)) drop-shadow(0px 0px 0px rgb(236, 213, 85));
}
60.0001% {
filter: drop-shadow(0px 0px 0px rgb(119, 201, 116)) drop-shadow(-10px 10px 0px rgb(206, 131, 255));
}
80% {
filter: drop-shadow(-10px 10px 0px rgb(119, 201, 116)) drop-shadow(0px 0px 0px rgb(206, 131, 255));
}
80.0001% {
filter: drop-shadow(0px 0px 0px rgb(69, 128, 255)) drop-shadow(-10px 10px 0px rgb(119, 201, 116));
}
100% {
filter: drop-shadow(-10px 10px 0px rgb(69, 128, 255)) drop-shadow(0px 0px 0px rgb(119, 201, 116));
max-width: 30%;
}
}
/*
.DarkmainMenuLogosmall {
animation-delay: 0s;
animation-duration: 5s;
animation-fill-mode:none;
animation-name: Darktitleanimsmall;
max-width: 30%;
animation-iteration-count: infinite;
filter: invert(1);
}
@keyframes Darktitleanimsmall {
0% {filter: drop-shadow(0px 0px 0px rgb(0, 181, 181))
drop-shadow(-10px 10px 0px rgb(186, 127, 0));}
20% {filter: drop-shadow(-10px 10px 0px rgb(0, 181, 181))
drop-shadow(0px 0px 0px rgb(186, 127, 0));}
20.0001% {filter: drop-shadow(0px 0px 0px rgb(19, 42, 170))
drop-shadow(-10px 10px 0px rgb(0, 181, 181));}
40% {filter: drop-shadow(-10px 10px 0px rgb(19, 42, 170))
drop-shadow(0px 0px 0px rgb(0, 181, 181));}
40.0001% {filter: drop-shadow(0px 0px 0px rgb(49, 124, 0))
drop-shadow(-10px 10px 0px rgb(19, 42, 170));}
60% {filter: drop-shadow(-10px 10px 0px rgb(49, 124, 0))
drop-shadow(0px 0px 0px rgb(19, 42, 170));}
60.0001% {filter: drop-shadow(0px 0px 0px rgb(136, 54, 139))
drop-shadow(-10px 10px 0px rgb(49, 124, 0));}
80% {filter: drop-shadow(-10px 10px 0px rgb(136, 54, 139))
drop-shadow(0px 0px 0px rgb(49, 124, 0));}
80.0001% {filter: drop-shadow(0px 0px 0px rgb(186, 127, 0))
drop-shadow(-10px 10px 0px rgb(136, 54, 139));}
100% {filter: drop-shadow(-10px 10px 0px rgb(186, 127, 0))
drop-shadow(0px 0px 0px rgb(136, 54, 139));}
}
*/
.NeutralToDarkBG {
background: linear-gradient(274deg, #292929, #6e6e6e, #383838, #5e5e5e);
background-size: 800% 800%;
animation: NeuToDarkAnim 2.5;
}
@keyframes NeuToDarkAnim {
from {
background: linear-gradient(274deg, #292929, #6e6e6e, #383838, #5e5e5e);
background-size: 800% 800%;
}
to {
background: linear-gradient(340deg, #5a0386, #1e0b95, #870937, #510580, #0c1578, #710825);
background-size: 1200% 1200%;
}
}
.DarkModeBG {
background: linear-gradient(340deg, #5a0386, #1e0b95, #870937, #510580, #0c1578, #710825);
background-size: 1200% 1200%;
animation: DarkModeBackground 30s ease infinite;
}
@keyframes DarkModeBackground {
0% {
background-position: 0% 5%
}
50% {
background-position: 100% 80%
}
100% {
background-position: 0% 5%
}
}
.NeutralToLightBG {
background: linear-gradient(274deg, #292929, #6e6e6e, #383838, #5e5e5e);
background-size: 800% 800%;
animation: NeuToLightAnim 44s ease infinite;
}
@keyframes NeuToLightAnim {
30% {
background-position: 5% 0%
}
100% {
background-position: 0% 5%;
background: linear-gradient(340deg, #e70000, #e08200, #d4c600, #09af00, #00af9e, #0049ff, #8d00ff, #ff00bd);
background-size: 1600% 1600%;
}
}
.LightModeBG {
background: linear-gradient(340deg, #e70000, #e08200, #d4c600, #09af00, #00af9e, #0049ff, #8d00ff, #ff00bd);
background-size: 1600% 1600%;
animation: LightModeBackground 27s ease infinite;
}
@keyframes LightModeBackground {
0% {
background-position: 0% 5%
}
50% {
background-position: 100% 80%
}
100% {
background-position: 0% 5%
}
}
.fadeOutOnly {
animation-delay: 0s;
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: fadeoutstuffonly;
}
@keyframes fadeoutstuffonly {
0% {
opacity: 100%;
}
100% {
opacity: 0%;
font-size: 0%;
}
} | animations.css |
@keyframes neutralcolors {
0% {
background-position: 5% 0%
}
50% {
background-position: 96% 100%
}
100% {
background-position: 5% 0%
}
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes title {
0% {
filter: drop-shadow(0px 0px 0px rgb(255, 74, 74)) drop-shadow(-10px 10px 0px rgb(69, 128, 255));
}
20% {
filter: drop-shadow(-10px 10px 0px rgb(255, 74, 74)) drop-shadow(0px 0px 0px rgb(69, 128, 255));
}
20.0001% {
filter: drop-shadow(0px 0px 0px rgb(236, 213, 85)) drop-shadow(-10px 10px 0px rgb(255, 74, 74));
}
40% {
filter: drop-shadow(-10px 10px 0px rgb(236, 213, 85)) drop-shadow(0px 0px 0px rgb(255, 74, 74));
}
40.0001% {
filter: drop-shadow(0px 0px 0px rgb(206, 131, 255)) drop-shadow(-10px 10px 0px rgb(236, 213, 85));
}
60% {
filter: drop-shadow(-10px 10px 0px rgb(206, 131, 255)) drop-shadow(0px 0px 0px rgb(236, 213, 85));
}
60.0001% {
filter: drop-shadow(0px 0px 0px rgb(119, 201, 116)) drop-shadow(-10px 10px 0px rgb(206, 131, 255));
}
80% {
filter: drop-shadow(-10px 10px 0px rgb(119, 201, 116)) drop-shadow(0px 0px 0px rgb(206, 131, 255));
}
80.0001% {
filter: drop-shadow(0px 0px 0px rgb(69, 128, 255)) drop-shadow(-10px 10px 0px rgb(119, 201, 116));
}
100% {
filter: drop-shadow(-10px 10px 0px rgb(69, 128, 255)) drop-shadow(0px 0px 0px rgb(119, 201, 116));
}
}
@keyframes fadeInUp {
from {
transform: translate3d(0, 40px, 0)
}
to {
transform: translate3d(0, 0, 0);
opacity: 1
}
}
@keyframes fadeinoutin {
0% {
transform: translate3d(0, 0px, 0);
opacity: 1
}
45% {
transform: translate3d(0, 40px, 0);
opacity: 0
}
55% {
transform: translate3d(0, 40px, 0);
opacity: 0
}
100% {
transform: translate3d(0, 0px, 0);
opacity: 1
}
}
@keyframes playcheckyes {
to {
opacity: 1
}
}
@keyframes playcheckno {
to {
opacity: 0
}
}
@keyframes lightbuttonanim {
0% {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 225%;
height: 49px;
width: 67.5px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 20px 50px;
}
/*45% {
top: 50%;
left: 50%;
transform: translate(-50%, 700%);
color: rgba(0, 0, 0, 0);
font-size: 0%;
height: 20px;
width: 67.5px;
text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
padding: 10px 10px;
}*/
50% {
top: 50%;
left: 50%;
transform: translate(-275%, 200%);
color: rgba(0, 0, 0, 0);
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
padding: 10px 10px;
}
100% {
top: 50%;
left: 50%;
transform: translate(-105%, -10%);
color: black;
font-size: 150%;
height: 250px;
width: 210px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
}
@keyframes darkbuttonanim {
0% {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 225%;
height: 49px;
width: 67.5px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 20px 50px;
}
/*45% {
top: 50%;
left: 50%;
transform: translate(-50%, 700%);
color: rgba(0, 0, 0, 0);
font-size: 0%;
height: 20px;
width: 67.5px;
text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
padding: 10px 10px;
}*/
50% {
top: 50%;
left: 50%;
transform: translate(175%, 200%);
color: rgba(0, 0, 0, 0);
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
padding: 10px 10px;
}
100% {
top: 50%;
left: 50%;
transform: translate(5%, -10%);
color: white;
font-size: 150%;
height: 250px;
width: 210px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
background-color: rgb(53, 53, 53);
}
}
@keyframes playbuttonanim {
0% {
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 225%;
height: 49px;
width: 67.5px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 20px 50px;
}
/*45% {
top: 50%;
left: 50%;
transform: translate(-50%, 700%);
color: rgba(0, 0, 0, 0);
font-size: 0%;
height: 20px;
width: 67.5px;
text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
padding: 10px 10px;
}*/
50% {
top: 50%;
left: 50%;
transform: translate(-50%, 570%);
color: rgba(0, 0, 0, 0);
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
padding: 10px 10px;
}
100% {
top: 50%;
left: 50%;
transform: translate(-600%, 635%);
color: black;
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
}
.fadeOut {
animation-delay: 0s;
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: fadeoutstuff;
}
@keyframes fadeoutstuff {
0% {
opacity: 100%;
font-size: 225%;
}
100% {
opacity: 0%;
font-size: 0%;
}
}
.darkbuttonfadeOut {
animation-delay: 0s;
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: darkfadeoutstuff;
position: absolute
}
@keyframes darkfadeoutstuff {
0% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(5%, -10%);
color: white;
font-size: 150%;
height: 250px;
width: 210px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
background-color: rgb(53, 53, 53);
}
100% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: rgb(0, 0, 0);
font-size: 150%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
background-color: rgb(53, 53, 53);
}
}
.lightbuttonfadeOut {
animation-delay: 0s;
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: lightfadeoutstuff;
position: absolute;
}
@keyframes lightfadeoutstuff {
0% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-105%, -10%);
color: black;
font-size: 150%;
height: 250px;
width: 210px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
100% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 150%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
}
.playbuttonfadeOut {
animation-delay: 0s;
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: playfadeoutstuff;
position: absolute;
}
@keyframes playfadeoutstuff {
0% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-600%, 635%);
color: black;
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
100% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
}
.introtextfadeOut {
animation-delay: 1s;
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: introtextfadeoutstuff;
justify-content: center;
align-items: center;
text-align: center;
vertical-align: middle;
}
@keyframes introtextfadeoutstuff {
0% {
opacity: 100%;
text-shadow: 2px 2px 4px #000000;
color: white;
font-size: 175%;
font-family: 'Playfair Display', serif;
font-weight: normal;
font-style: normal;
text-align: center;
}
100% {
opacity: 0%;
text-shadow: 2px 2px 4px #000000;
color: white;
font-size: 0%;
font-family: 'Playfair Display', serif;
font-weight: normal;
font-style: normal;
text-align: center;
}
}
.expandToMainMenu {
animation-delay: 0s;
animation-duration: 2s;
animation-fill-mode: both;
animation-name: expandmenuanim;
position: absolute;
background-color: #f0f0f0;
border-radius: 20px;
color: rgb(0, 0, 0);
padding: 20px 20px;
text-align: center;
text-decoration: none;
font-size: 225%;
margin: 4px 2px;
transition-duration: .5s;
font-family: 'Playfair Display', serif;
font-weight: normal;
font-style: normal;
border: none;
height: 20px;
width: 20px;
box-shadow: 10px 10px 10px #18181870, 10px 10px 10px #1a1a1a67, 0 0 0 #cccccc inset, 0 0 0 #ffffff inset;
}
@keyframes expandmenuanim {
0% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
100% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -10%);
color: black;
font-size: 0%;
height: 650px;
width: 900px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
background-color: rgba(240, 240, 240, 0.459);
}
}
.DarkexpandToMainMenu {
animation-delay: 0s;
animation-duration: 2s;
animation-fill-mode: both;
animation-name: darkexpandmenuanim;
position: absolute;
background-color: #f0f0f0;
border-radius: 20px;
color: rgb(0, 0, 0);
padding: 20px 20px;
text-align: center;
text-decoration: none;
font-size: 225%;
margin: 4px 2px;
transition-duration: .5s;
font-family: 'Playfair Display', serif;
font-weight: normal;
font-style: normal;
border: none;
height: 20px;
width: 20px;
box-shadow: 10px 10px 10px #18181870, 10px 10px 10px #1a1a1a67, 0 0 0 #cccccc inset, 0 0 0 #ffffff inset;
}
@keyframes darkexpandmenuanim {
0% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: black;
font-size: 0%;
height: 20px;
width: 20px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
}
100% {
opacity: 100%;
top: 50%;
left: 50%;
transform: translate(-50%, -10%);
color: black;
font-size: 0%;
height: 650px;
width: 900px;
text-shadow: 2px 2px 4px #1f1f1fad;
padding: 10px 10px;
background-color: rgba(7, 7, 7, 0.315);
}
}
.mainMenuLogoShrink {
animation-delay: 0s;
animation-duration: 2s;
animation-fill-mode: both;
animation-name: makelogosmaller;
max-width: 60%;
}
@keyframes makelogosmaller {
0% {
filter: drop-shadow(0px 0px 0px rgb(255, 74, 74)) drop-shadow(-10px 10px 0px rgb(69, 128, 255));
max-width: 60%;
}
20% {
filter: drop-shadow(-10px 10px 0px rgb(255, 74, 74)) drop-shadow(0px 0px 0px rgb(69, 128, 255));
}
20.0001% {
filter: drop-shadow(0px 0px 0px rgb(236, 213, 85)) drop-shadow(-10px 10px 0px rgb(255, 74, 74));
}
40% {
filter: drop-shadow(-10px 10px 0px rgb(236, 213, 85)) drop-shadow(0px 0px 0px rgb(255, 74, 74));
}
40.0001% {
filter: drop-shadow(0px 0px 0px rgb(206, 131, 255)) drop-shadow(-10px 10px 0px rgb(236, 213, 85));
}
60% {
filter: drop-shadow(-10px 10px 0px rgb(206, 131, 255)) drop-shadow(0px 0px 0px rgb(236, 213, 85));
}
60.0001% {
filter: drop-shadow(0px 0px 0px rgb(119, 201, 116)) drop-shadow(-10px 10px 0px rgb(206, 131, 255));
}
80% {
filter: drop-shadow(-10px 10px 0px rgb(119, 201, 116)) drop-shadow(0px 0px 0px rgb(206, 131, 255));
}
80.0001% {
filter: drop-shadow(0px 0px 0px rgb(69, 128, 255)) drop-shadow(-10px 10px 0px rgb(119, 201, 116));
}
100% {
filter: drop-shadow(-10px 10px 0px rgb(69, 128, 255)) drop-shadow(0px 0px 0px rgb(119, 201, 116));
max-width: 30%;
}
}
.mainMenuLogosmall {
animation-delay: 0s;
animation-duration: 5s;
animation-fill-mode: both;
animation-name: titleanimsmall;
max-width: 30%;
animation-iteration-count: infinite;
}
@keyframes titleanimsmall {
0% {
filter: drop-shadow(0px 0px 0px rgb(255, 74, 74)) drop-shadow(-10px 10px 0px rgb(69, 128, 255));
max-width: 30%;
}
20% {
filter: drop-shadow(-10px 10px 0px rgb(255, 74, 74)) drop-shadow(0px 0px 0px rgb(69, 128, 255));
}
20.0001% {
filter: drop-shadow(0px 0px 0px rgb(236, 213, 85)) drop-shadow(-10px 10px 0px rgb(255, 74, 74));
}
40% {
filter: drop-shadow(-10px 10px 0px rgb(236, 213, 85)) drop-shadow(0px 0px 0px rgb(255, 74, 74));
}
40.0001% {
filter: drop-shadow(0px 0px 0px rgb(206, 131, 255)) drop-shadow(-10px 10px 0px rgb(236, 213, 85));
}
60% {
filter: drop-shadow(-10px 10px 0px rgb(206, 131, 255)) drop-shadow(0px 0px 0px rgb(236, 213, 85));
}
60.0001% {
filter: drop-shadow(0px 0px 0px rgb(119, 201, 116)) drop-shadow(-10px 10px 0px rgb(206, 131, 255));
}
80% {
filter: drop-shadow(-10px 10px 0px rgb(119, 201, 116)) drop-shadow(0px 0px 0px rgb(206, 131, 255));
}
80.0001% {
filter: drop-shadow(0px 0px 0px rgb(69, 128, 255)) drop-shadow(-10px 10px 0px rgb(119, 201, 116));
}
100% {
filter: drop-shadow(-10px 10px 0px rgb(69, 128, 255)) drop-shadow(0px 0px 0px rgb(119, 201, 116));
max-width: 30%;
}
}
/*
.DarkmainMenuLogosmall {
animation-delay: 0s;
animation-duration: 5s;
animation-fill-mode:none;
animation-name: Darktitleanimsmall;
max-width: 30%;
animation-iteration-count: infinite;
filter: invert(1);
}
@keyframes Darktitleanimsmall {
0% {filter: drop-shadow(0px 0px 0px rgb(0, 181, 181))
drop-shadow(-10px 10px 0px rgb(186, 127, 0));}
20% {filter: drop-shadow(-10px 10px 0px rgb(0, 181, 181))
drop-shadow(0px 0px 0px rgb(186, 127, 0));}
20.0001% {filter: drop-shadow(0px 0px 0px rgb(19, 42, 170))
drop-shadow(-10px 10px 0px rgb(0, 181, 181));}
40% {filter: drop-shadow(-10px 10px 0px rgb(19, 42, 170))
drop-shadow(0px 0px 0px rgb(0, 181, 181));}
40.0001% {filter: drop-shadow(0px 0px 0px rgb(49, 124, 0))
drop-shadow(-10px 10px 0px rgb(19, 42, 170));}
60% {filter: drop-shadow(-10px 10px 0px rgb(49, 124, 0))
drop-shadow(0px 0px 0px rgb(19, 42, 170));}
60.0001% {filter: drop-shadow(0px 0px 0px rgb(136, 54, 139))
drop-shadow(-10px 10px 0px rgb(49, 124, 0));}
80% {filter: drop-shadow(-10px 10px 0px rgb(136, 54, 139))
drop-shadow(0px 0px 0px rgb(49, 124, 0));}
80.0001% {filter: drop-shadow(0px 0px 0px rgb(186, 127, 0))
drop-shadow(-10px 10px 0px rgb(136, 54, 139));}
100% {filter: drop-shadow(-10px 10px 0px rgb(186, 127, 0))
drop-shadow(0px 0px 0px rgb(136, 54, 139));}
}
*/
.NeutralToDarkBG {
background: linear-gradient(274deg, #292929, #6e6e6e, #383838, #5e5e5e);
background-size: 800% 800%;
animation: NeuToDarkAnim 2.5;
}
@keyframes NeuToDarkAnim {
from {
background: linear-gradient(274deg, #292929, #6e6e6e, #383838, #5e5e5e);
background-size: 800% 800%;
}
to {
background: linear-gradient(340deg, #5a0386, #1e0b95, #870937, #510580, #0c1578, #710825);
background-size: 1200% 1200%;
}
}
.DarkModeBG {
background: linear-gradient(340deg, #5a0386, #1e0b95, #870937, #510580, #0c1578, #710825);
background-size: 1200% 1200%;
animation: DarkModeBackground 30s ease infinite;
}
@keyframes DarkModeBackground {
0% {
background-position: 0% 5%
}
50% {
background-position: 100% 80%
}
100% {
background-position: 0% 5%
}
}
.NeutralToLightBG {
background: linear-gradient(274deg, #292929, #6e6e6e, #383838, #5e5e5e);
background-size: 800% 800%;
animation: NeuToLightAnim 44s ease infinite;
}
@keyframes NeuToLightAnim {
30% {
background-position: 5% 0%
}
100% {
background-position: 0% 5%;
background: linear-gradient(340deg, #e70000, #e08200, #d4c600, #09af00, #00af9e, #0049ff, #8d00ff, #ff00bd);
background-size: 1600% 1600%;
}
}
.LightModeBG {
background: linear-gradient(340deg, #e70000, #e08200, #d4c600, #09af00, #00af9e, #0049ff, #8d00ff, #ff00bd);
background-size: 1600% 1600%;
animation: LightModeBackground 27s ease infinite;
}
@keyframes LightModeBackground {
0% {
background-position: 0% 5%
}
50% {
background-position: 100% 80%
}
100% {
background-position: 0% 5%
}
}
.fadeOutOnly {
animation-delay: 0s;
animation-duration: 1.5s;
animation-fill-mode: both;
animation-name: fadeoutstuffonly;
}
@keyframes fadeoutstuffonly {
0% {
opacity: 100%;
}
100% {
opacity: 0%;
font-size: 0%;
}
} | 0.597843 | 0.239827 |
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.container {
width: 960px;
margin: 0 auto;
padding: 0px;
position: relative;
}
.container:after, .container:before {
content: " ";
display: table;
}
.container:after {
clear: both;
}
.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12, .grid-13, .grid-14, .grid-15, .grid-16, .grid-1-3 {
float: left;
margin-left: 10px;
margin-right: 10px;
}
.grid-1 {width: 40px;}
.grid-2 {width: 100px;}
.grid-3 {width: 160px;}
.grid-4 {width: 220px;}
.grid-5 {width: 280px;}
.grid-6 {width: 340px;}
.grid-7 {width: 400px;}
.grid-8 {width: 460px;}
.grid-9 {width: 520px;}
.grid-10 {width: 580px;}
.grid-11 {width: 640px;}
.grid-12 {width: 700px;}
.grid-13 {width: 760px;}
.grid-14 {width: 820px;}
.grid-15 {width: 880px;}
.grid-16 {width: 940px;}
.grid-1-3 {width: 300px;}
@media only screen and (min-width: 788px) and (max-width: 979px) {
.container {
width: 768px;
}
.grid-1 {width: 28px;}
.grid-2 {width: 76px;}
.grid-3 {width: 124px;}
.grid-4 {width: 172px;}
.grid-5 {width: 220px;}
.grid-6 {width: 268px;}
.grid-7 {width: 316px;}
.grid-8 {width: 364px;}
.grid-9 {width: 412px;}
.grid-10 {width: 460px;}
.grid-11 {width: 508px;}
.grid-12 {width: 556px;}
.grid-13 {width: 604px;}
.grid-14 {width: 652px;}
.grid-15 {width: 700px;}
.grid-16 {width: 748px;}
.grid-1-3 {width: 236px;}
}
@media only screen and (min-width: 561px) and (max-width: 787px) {
.container {
width: 560px;
}
.grid-1 {width: 15px;}
.grid-2 {width: 50px;}
.grid-3 {width: 85px;}
.grid-4 {width: 120px;}
.grid-5 {width: 155px;}
.grid-6 {width: 190px;}
.grid-7 {width: 225px;}
.grid-8 {width: 260px;}
.grid-9 {width: 295px;}
.grid-10 {width: 330px;}
.grid-11 {width: 365px;}
.grid-12 {width: 400px;}
.grid-13 {width: 435px;}
.grid-14 {width: 470px;}
.grid-15 {width: 505px;}
.grid-16 {width: 540px;}
.grid-1-3 {width: 150px;}
}
@media only screen and (max-width: 560px) {
.container {
width: 100%;
margin: 0 7px;
}
.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12, .grid-13, .grid-14, .grid-15, .grid-16, .grid-1-3 {
width: 97%;
margin: 0 auto 10px auto;
float: none;
}
} | css/grid.css | *, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
.container {
width: 960px;
margin: 0 auto;
padding: 0px;
position: relative;
}
.container:after, .container:before {
content: " ";
display: table;
}
.container:after {
clear: both;
}
.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12, .grid-13, .grid-14, .grid-15, .grid-16, .grid-1-3 {
float: left;
margin-left: 10px;
margin-right: 10px;
}
.grid-1 {width: 40px;}
.grid-2 {width: 100px;}
.grid-3 {width: 160px;}
.grid-4 {width: 220px;}
.grid-5 {width: 280px;}
.grid-6 {width: 340px;}
.grid-7 {width: 400px;}
.grid-8 {width: 460px;}
.grid-9 {width: 520px;}
.grid-10 {width: 580px;}
.grid-11 {width: 640px;}
.grid-12 {width: 700px;}
.grid-13 {width: 760px;}
.grid-14 {width: 820px;}
.grid-15 {width: 880px;}
.grid-16 {width: 940px;}
.grid-1-3 {width: 300px;}
@media only screen and (min-width: 788px) and (max-width: 979px) {
.container {
width: 768px;
}
.grid-1 {width: 28px;}
.grid-2 {width: 76px;}
.grid-3 {width: 124px;}
.grid-4 {width: 172px;}
.grid-5 {width: 220px;}
.grid-6 {width: 268px;}
.grid-7 {width: 316px;}
.grid-8 {width: 364px;}
.grid-9 {width: 412px;}
.grid-10 {width: 460px;}
.grid-11 {width: 508px;}
.grid-12 {width: 556px;}
.grid-13 {width: 604px;}
.grid-14 {width: 652px;}
.grid-15 {width: 700px;}
.grid-16 {width: 748px;}
.grid-1-3 {width: 236px;}
}
@media only screen and (min-width: 561px) and (max-width: 787px) {
.container {
width: 560px;
}
.grid-1 {width: 15px;}
.grid-2 {width: 50px;}
.grid-3 {width: 85px;}
.grid-4 {width: 120px;}
.grid-5 {width: 155px;}
.grid-6 {width: 190px;}
.grid-7 {width: 225px;}
.grid-8 {width: 260px;}
.grid-9 {width: 295px;}
.grid-10 {width: 330px;}
.grid-11 {width: 365px;}
.grid-12 {width: 400px;}
.grid-13 {width: 435px;}
.grid-14 {width: 470px;}
.grid-15 {width: 505px;}
.grid-16 {width: 540px;}
.grid-1-3 {width: 150px;}
}
@media only screen and (max-width: 560px) {
.container {
width: 100%;
margin: 0 7px;
}
.grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12, .grid-13, .grid-14, .grid-15, .grid-16, .grid-1-3 {
width: 97%;
margin: 0 auto 10px auto;
float: none;
}
} | 0.181082 | 0.056004 |
.encabezado{
background: rgba(255,255,255,1);
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 26%, rgba(255,255,255,1) 74%, rgba(0,123,255,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(26%, rgba(255,255,255,1)), color-stop(74%, rgba(255,255,255,1)), color-stop(100%, rgba(0,123,255,1)));
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 26%, rgba(255,255,255,1) 74%, rgba(0,123,255,1) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 26%, rgba(255,255,255,1) 74%, rgba(0,123,255,1) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 26%, rgba(255,255,255,1) 74%, rgba(0,123,255,1) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 26%, rgba(255,255,255,1) 74%, rgba(0,123,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#007bff', GradientType=0 );
}
.icon-menu{
font-size: 1.5em;
color: #007bff;
}
.profile-photo{
border: 1px solid #eaeaea;
width: 90%;
height: 200px;
}
.cont-form{
border: 1px solid #eaeaea;
padding: 45px;
}
.tratamientos{
background-image: url('/img/tratamiento.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-position-y: -150px;
background-position-x: -300px;
}
.head-tratamientos{
background-color: #0132c9;
}
.head-tratamientos:hover{
background-color: #717171;
transition: 0.5s;
}
a h4{
color: white;
}
a h4:hover{
color: black;
}
.title-tratamientos{
color: white;
}
.citas{
background-image: url('/img/citas.jpg');
background-size: cover;
background-attachment: fixed;
background-position: center;
}
/*HISTORIAL DE PAGOS*/
.encabezado-table{
background-color: #e1e1e1;
border-bottom: 1px solid black;
}
.text-ups{
text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
} | public/css/user.css | .encabezado{
background: rgba(255,255,255,1);
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 26%, rgba(255,255,255,1) 74%, rgba(0,123,255,1) 100%);
background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(255,255,255,1)), color-stop(26%, rgba(255,255,255,1)), color-stop(74%, rgba(255,255,255,1)), color-stop(100%, rgba(0,123,255,1)));
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 26%, rgba(255,255,255,1) 74%, rgba(0,123,255,1) 100%);
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 26%, rgba(255,255,255,1) 74%, rgba(0,123,255,1) 100%);
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 26%, rgba(255,255,255,1) 74%, rgba(0,123,255,1) 100%);
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 26%, rgba(255,255,255,1) 74%, rgba(0,123,255,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#007bff', GradientType=0 );
}
.icon-menu{
font-size: 1.5em;
color: #007bff;
}
.profile-photo{
border: 1px solid #eaeaea;
width: 90%;
height: 200px;
}
.cont-form{
border: 1px solid #eaeaea;
padding: 45px;
}
.tratamientos{
background-image: url('/img/tratamiento.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
background-position-y: -150px;
background-position-x: -300px;
}
.head-tratamientos{
background-color: #0132c9;
}
.head-tratamientos:hover{
background-color: #717171;
transition: 0.5s;
}
a h4{
color: white;
}
a h4:hover{
color: black;
}
.title-tratamientos{
color: white;
}
.citas{
background-image: url('/img/citas.jpg');
background-size: cover;
background-attachment: fixed;
background-position: center;
}
/*HISTORIAL DE PAGOS*/
.encabezado-table{
background-color: #e1e1e1;
border-bottom: 1px solid black;
}
.text-ups{
text-shadow: 2px 4px 3px rgba(0,0,0,0.3);
} | 0.405684 | 0.067087 |
@import "~@fortawesome/fontawesome-free/css/all.css";
@import "~vue-slider-component/dist-css/vue-slider-component.css";
@import "~vue-slider-component/theme/default.css";
@import '~vue-select/dist/vue-select.css';
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
@font-face {
font-family: 'Ayer Web Medium';
src: url(../fonts/Ayer-Medium-Web.woff2) format('woff2'),
url(../fonts/Ayer-Medium-Web.woff) format('woff');
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Ermina';
src: url(../fonts/Ermina.woff) format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Ermina';
src: url(../fonts/Ermina-Medium.woff) format('woff');
font-weight: 500 900;
font-style: normal;
font-display: swap;
}
html {
scroll-behavior: smooth;
}
.text-content a {
@apply underline hover:no-underline;
}
.text-content p + p {
@apply mt-2 lg:mt-4;
}
.text-content img {
height: auto !important;
width: auto !important;
}
h1 {
@apply bg-white border-2 md:border-4 border-black font-display leading-none md:leading-none mb-5 lg:mb-10 pb-2 lg:pb-8 pt-2 lg:pt-6 px-4 lg:px-8 text-5xl md:text-8xl text-center tracking-normal;
}
h2 {
@apply font-medium text-center uppercase;
}
h3 {
@apply font-medium my-4 text-center;
}
/* purgecss start ignore */
.text-content [data-oembed-url] > div {
@apply max-w-3xl !important;
}
.vue-slider {
@apply mx-1.5 pb-3 pt-0 !important;
}
.vue-slider-process {
@apply bg-black;
}
.vue-slider-dot-handle {
@apply bg-black shadow-none;
}
.vs__actions {
@apply pr-0 pt-0;
}
.vs__clear {
@apply fill-current;
}
.vs__dropdown-option {
@apply whitespace-normal;
}
.vs__dropdown-toggle {
@apply border-black border-t-0.5 border-0 p-0 pt-3 rounded-none;
}
.vs__search {
@apply border-0 font-medium m-0 p-0 focus:m-0 focus:p-0 uppercase;
}
.vs__selected {
@apply border-0 m-0 p-0 text-black;
}
.vs__selected-options {
@apply p-0;
}
/* purgecss end ignore */
} | resources/css/app.css | @import "~@fortawesome/fontawesome-free/css/all.css";
@import "~vue-slider-component/dist-css/vue-slider-component.css";
@import "~vue-slider-component/theme/default.css";
@import '~vue-select/dist/vue-select.css';
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
@font-face {
font-family: 'Ayer Web Medium';
src: url(../fonts/Ayer-Medium-Web.woff2) format('woff2'),
url(../fonts/Ayer-Medium-Web.woff) format('woff');
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Ermina';
src: url(../fonts/Ermina.woff) format('woff');
font-weight: normal;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: 'Ermina';
src: url(../fonts/Ermina-Medium.woff) format('woff');
font-weight: 500 900;
font-style: normal;
font-display: swap;
}
html {
scroll-behavior: smooth;
}
.text-content a {
@apply underline hover:no-underline;
}
.text-content p + p {
@apply mt-2 lg:mt-4;
}
.text-content img {
height: auto !important;
width: auto !important;
}
h1 {
@apply bg-white border-2 md:border-4 border-black font-display leading-none md:leading-none mb-5 lg:mb-10 pb-2 lg:pb-8 pt-2 lg:pt-6 px-4 lg:px-8 text-5xl md:text-8xl text-center tracking-normal;
}
h2 {
@apply font-medium text-center uppercase;
}
h3 {
@apply font-medium my-4 text-center;
}
/* purgecss start ignore */
.text-content [data-oembed-url] > div {
@apply max-w-3xl !important;
}
.vue-slider {
@apply mx-1.5 pb-3 pt-0 !important;
}
.vue-slider-process {
@apply bg-black;
}
.vue-slider-dot-handle {
@apply bg-black shadow-none;
}
.vs__actions {
@apply pr-0 pt-0;
}
.vs__clear {
@apply fill-current;
}
.vs__dropdown-option {
@apply whitespace-normal;
}
.vs__dropdown-toggle {
@apply border-black border-t-0.5 border-0 p-0 pt-3 rounded-none;
}
.vs__search {
@apply border-0 font-medium m-0 p-0 focus:m-0 focus:p-0 uppercase;
}
.vs__selected {
@apply border-0 m-0 p-0 text-black;
}
.vs__selected-options {
@apply p-0;
}
/* purgecss end ignore */
} | 0.403449 | 0.067332 |
H1 {
padding: 0.25em 0.5em;
color: #494949;
background: transparent;
border-left: solid 5px #7db4e6;
font-family: sans-serif;
}
.btn{
display: inline-block;
text-decoration: none;
color: #0071BC;
width: 30px;
height: 30px;
line-height: 30px;
border-radius: 50%;
border: solid 2px #0071BC;
text-align: center;
vertical-align: middle;
overflow: visible;
font-weight: bold;
font-size: 10;
transition: .4s;
}
.btn:hover {
background: #b3e1ff;
}
.btn2{
display: inline-block;
text-decoration: none;
color: #0071BC;
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 50%;
border: solid 2px #0071BC;
text-align: center;
vertical-align: middle;
overflow: visible;
font-size: 0.5em;
transition: .4s;
}
.btn2:hover {
background: #b3e1ff;
}
.btn_running
{
position: relative;
display: table-cell;
transform: translate(0%, 0%);
width: 150px;
min-width: 125px;
height: 105px;
background: #FFFFFF;
border: 3px solid #FFFFFF;
border-radius: 50%;
text-align: center;
font-family: sans-serif;
font-size: 16px;
color: #0071BC;
line-height: 17px;
}
.btn_running:before
{
content: '';
position: absolute;
top: 0;
width: 100px;
height: 100px;
transform: translate(0%, 0%);
margin-left: -50px;
border-radius: 100%;
border: 3px solid #0071BC;
border-right: 3px solid;
border-right-color: #c3cad9;
animation: spin 3s linear infinite;
}
@keyframes spin
{
0% { transform: rotate(0deg); opacity: 1.0; }
100% { transform: rotate(360deg); opacity: 1.0; }
}
.btn_finish
{
position: relative;
display: table-cell;
transform: translate(0%, 0%);
width: 150px;
height: 105px;
background: #FFFFFF;
border: 3px solid #FFFFFF;
border-radius: 50%;
min-width: 125px;
text-align: center;
font-family: sans-serif;
font-size: 16px;
color: #32CD32;
line-height: 17px;
}
.btn_finish:before
{
content: '';
position: absolute;
top: 0;
width: 100px;
height: 100px;
transform: translate(-50%, 0%);
border-radius: 100%;
border: 3px solid #32CD32;
animation: transite 1.5s;
}
@keyframes transite
{
0% { background-color: #32CD32; }
100% { background-color: ; }
}
.btn_waiting
{
position: relative;
display: table-cell;
left: ;
transform: translate(0%, 0%);
width: 150px;
height: 105px;
min-width: 125px;
background: #FFFFFF;
border: 3px solid #FFFFFF;
border-radius: 50%;
text-align: center;
font-family: sans-serif;
font-size: 16px;
color: #808080;
line-height: 17px;
}
.btn_waiting:before
{
content: '';
position: absolute;
top: 0;
width: 100px;
height: 100px;
transform: translate(-50%, 0%);
border-radius: 100%;
border: 3px solid #808080;
}
.btn_failed
{
position: relative;
display: table-cell;
transform: translate(0%, 0%);
width: 150px;
height: 105px;
min-width: 125px;
background: #FFFFFF;
border: 3px solid #FFFFFF;
border-radius: 50%;
text-align: center;
font-family: sans-serif;
font-size: 16px;
color: #FF0000;
line-height: 17px;
}
.btn_failed:before
{
content: '';
position: absolute;
top: 0;
width: 100px;
height: 100px;
transform: translate(-50%, 0%);
border-radius: 100%;
border: 3px solid #FF0000;
}
.btn_canceled
{
position: relative;
display: table-cell;
transform: translate(0%, 0%);
width: 150px;
height: 105px;
min-width: 125px;
background: #FFFFFF;
border: 3px solid #FFFFFF;
border-radius: 50%;
text-align: center;
font-family: sans-serif;
font-size: 16px;
color: #FF0000;
line-height: 17px;
}
.btn_canceled:before
{
content: '';
position: absolute;
top: 0;
width: 100px;
height: 100px;
transform: translate(-50%, 0%);
border-radius: 100%;
border: 3px solid #FF0000;
}
.g2-2le { text-align: left; color: #7db4e6; min-width: 300px; }
table {
*border-collapse: collapse; /* IE7 and lower */
border-spacing: 0;
table-layout: fixed;
}
#pageTop {
position: fixed;
bottom: 20px;
right: 20px;
}
#pageTop a {
display: inline-block;
text-decoration: none;
color: #0071BC;
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 50%;
border: solid 2px #0071BC;
text-align: center;
vertical-align: middle;
overflow: visible;
font-size: 0.5em;
background-color: #FFFFFF;
}
#pageTop a:hover {
text-decoration: none;
}
#pageReload {
position: fixed;
bottom: 100px;
right: 20px;
}
#pageReload a {
display: inline-block;
text-decoration: none;
color: #0071BC;
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 50%;
border: solid 2px #0071BC;
text-align: center;
vertical-align: middle;
overflow: visible;
font-size: 0.5em;
background-color: #FFFFFF;
}
#pageReload a:hover {
} | css/style.css | H1 {
padding: 0.25em 0.5em;
color: #494949;
background: transparent;
border-left: solid 5px #7db4e6;
font-family: sans-serif;
}
.btn{
display: inline-block;
text-decoration: none;
color: #0071BC;
width: 30px;
height: 30px;
line-height: 30px;
border-radius: 50%;
border: solid 2px #0071BC;
text-align: center;
vertical-align: middle;
overflow: visible;
font-weight: bold;
font-size: 10;
transition: .4s;
}
.btn:hover {
background: #b3e1ff;
}
.btn2{
display: inline-block;
text-decoration: none;
color: #0071BC;
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 50%;
border: solid 2px #0071BC;
text-align: center;
vertical-align: middle;
overflow: visible;
font-size: 0.5em;
transition: .4s;
}
.btn2:hover {
background: #b3e1ff;
}
.btn_running
{
position: relative;
display: table-cell;
transform: translate(0%, 0%);
width: 150px;
min-width: 125px;
height: 105px;
background: #FFFFFF;
border: 3px solid #FFFFFF;
border-radius: 50%;
text-align: center;
font-family: sans-serif;
font-size: 16px;
color: #0071BC;
line-height: 17px;
}
.btn_running:before
{
content: '';
position: absolute;
top: 0;
width: 100px;
height: 100px;
transform: translate(0%, 0%);
margin-left: -50px;
border-radius: 100%;
border: 3px solid #0071BC;
border-right: 3px solid;
border-right-color: #c3cad9;
animation: spin 3s linear infinite;
}
@keyframes spin
{
0% { transform: rotate(0deg); opacity: 1.0; }
100% { transform: rotate(360deg); opacity: 1.0; }
}
.btn_finish
{
position: relative;
display: table-cell;
transform: translate(0%, 0%);
width: 150px;
height: 105px;
background: #FFFFFF;
border: 3px solid #FFFFFF;
border-radius: 50%;
min-width: 125px;
text-align: center;
font-family: sans-serif;
font-size: 16px;
color: #32CD32;
line-height: 17px;
}
.btn_finish:before
{
content: '';
position: absolute;
top: 0;
width: 100px;
height: 100px;
transform: translate(-50%, 0%);
border-radius: 100%;
border: 3px solid #32CD32;
animation: transite 1.5s;
}
@keyframes transite
{
0% { background-color: #32CD32; }
100% { background-color: ; }
}
.btn_waiting
{
position: relative;
display: table-cell;
left: ;
transform: translate(0%, 0%);
width: 150px;
height: 105px;
min-width: 125px;
background: #FFFFFF;
border: 3px solid #FFFFFF;
border-radius: 50%;
text-align: center;
font-family: sans-serif;
font-size: 16px;
color: #808080;
line-height: 17px;
}
.btn_waiting:before
{
content: '';
position: absolute;
top: 0;
width: 100px;
height: 100px;
transform: translate(-50%, 0%);
border-radius: 100%;
border: 3px solid #808080;
}
.btn_failed
{
position: relative;
display: table-cell;
transform: translate(0%, 0%);
width: 150px;
height: 105px;
min-width: 125px;
background: #FFFFFF;
border: 3px solid #FFFFFF;
border-radius: 50%;
text-align: center;
font-family: sans-serif;
font-size: 16px;
color: #FF0000;
line-height: 17px;
}
.btn_failed:before
{
content: '';
position: absolute;
top: 0;
width: 100px;
height: 100px;
transform: translate(-50%, 0%);
border-radius: 100%;
border: 3px solid #FF0000;
}
.btn_canceled
{
position: relative;
display: table-cell;
transform: translate(0%, 0%);
width: 150px;
height: 105px;
min-width: 125px;
background: #FFFFFF;
border: 3px solid #FFFFFF;
border-radius: 50%;
text-align: center;
font-family: sans-serif;
font-size: 16px;
color: #FF0000;
line-height: 17px;
}
.btn_canceled:before
{
content: '';
position: absolute;
top: 0;
width: 100px;
height: 100px;
transform: translate(-50%, 0%);
border-radius: 100%;
border: 3px solid #FF0000;
}
.g2-2le { text-align: left; color: #7db4e6; min-width: 300px; }
table {
*border-collapse: collapse; /* IE7 and lower */
border-spacing: 0;
table-layout: fixed;
}
#pageTop {
position: fixed;
bottom: 20px;
right: 20px;
}
#pageTop a {
display: inline-block;
text-decoration: none;
color: #0071BC;
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 50%;
border: solid 2px #0071BC;
text-align: center;
vertical-align: middle;
overflow: visible;
font-size: 0.5em;
background-color: #FFFFFF;
}
#pageTop a:hover {
text-decoration: none;
}
#pageReload {
position: fixed;
bottom: 100px;
right: 20px;
}
#pageReload a {
display: inline-block;
text-decoration: none;
color: #0071BC;
width: 50px;
height: 50px;
line-height: 50px;
border-radius: 50%;
border: solid 2px #0071BC;
text-align: center;
vertical-align: middle;
overflow: visible;
font-size: 0.5em;
background-color: #FFFFFF;
}
#pageReload a:hover {
} | 0.421909 | 0.112405 |
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2014 <NAME>
*/
.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 bounce {
0%, 20%, 53%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
0%, 20%, 53%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
-ms-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
}
/* originally authored by <NAME> - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
0%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
0%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
100% {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
100% {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
}
/* originally authored by <NAME> - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
0% {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
0% {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
@keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-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-transition-timing-function: ease-in;
transition-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);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-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-transition-timing-function: ease-in;
transition-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);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-animation-duration: .75s;
animation-duration: .75s;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
0% {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
0% {
opacity: 1;
}
100% {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
0% {
opacity: 1;
}
100% {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
100% {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
100% {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
}
/* originally authored by <NAME> - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
}
/* originally authored by <NAME> - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
@keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
@keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
/*-------- 1.2 Carousel --------*/
/**
* Owl Carousel v2.2.1
* Copyright 2013-2017 <NAME>
* Licensed under ()
*/
/*
* Owl Carousel - Core
*/
.owl-carousel {
display: none;
width: 100%;
-webkit-tap-highlight-color: transparent;
/* position relative and z-index fix webkit rendering fonts issue */
position: relative;
z-index: 1; }
.owl-carousel .owl-stage {
position: relative;
-ms-touch-action: pan-Y;
-moz-backface-visibility: hidden;
/* fix firefox animation glitch */ }
.owl-carousel .owl-stage:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0; }
.owl-carousel .owl-stage-outer {
position: relative;
overflow: hidden;
/* fix for flashing background */
-webkit-transform: translate3d(0px, 0px, 0px); }
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0); }
.owl-carousel .owl-item {
position: relative;
min-height: 1px;
float: left;
-webkit-backface-visibility: hidden;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none; }
.owl-carousel .owl-item img {
display: block;
width: 100%; }
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
display: none; }
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
cursor: pointer;
cursor: hand;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.owl-carousel.owl-loaded {
display: block; }
.owl-carousel.owl-loading {
opacity: 0;
display: block; }
.owl-carousel.owl-hidden {
opacity: 0; }
.owl-carousel.owl-refresh .owl-item {
visibility: hidden; }
.owl-carousel.owl-drag .owl-item {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.owl-carousel.owl-grab {
cursor: move;
cursor: grab; }
.owl-carousel.owl-rtl {
direction: rtl; }
.owl-carousel.owl-rtl .owl-item {
float: right; }
/* No Js */
.no-js .owl-carousel {
display: block; }
/*
* Owl Carousel - Animate Plugin
*/
.owl-carousel .animated {
animation-duration: 1000ms;
animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
z-index: 0; }
.owl-carousel .owl-animated-out {
z-index: 1; }
.owl-carousel .fadeOut {
animation-name: fadeOut; }
@keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
/*
* Owl Carousel - Auto Height Plugin
*/
.owl-height {
transition: height 500ms ease-in-out; }
/*
* Owl Carousel - Lazy Load Plugin
*/
.owl-carousel .owl-item .owl-lazy {
opacity: 0;
transition: opacity 400ms ease; }
.owl-carousel .owl-item img.owl-lazy {
transform-style: preserve-3d; }
/*
* Owl Carousel - Video Plugin
*/
.owl-carousel .owl-video-wrapper {
position: relative;
height: 100%;
background: #000; }
.owl-carousel .owl-video-play-icon {
position: absolute;
height: 80px;
width: 80px;
left: 50%;
top: 50%;
margin-left: -40px;
margin-top: -40px;
background: url("owl.video.play.png") no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
-ms-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
display: none; }
.owl-carousel .owl-video-tn {
opacity: 0;
height: 100%;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
position: relative;
z-index: 1;
height: 100%;
width: 100%; }
/**
* Owl Carousel v2.2.1
* Copyright 2013-2017 <NAME>
* Licensed under ()
*/
/*
* Default theme - Owl Carousel CSS File
*/
.owl-theme .owl-nav {
margin-top: 10px;
text-align: center;
-webkit-tap-highlight-color: transparent; }
.owl-theme .owl-nav [class*='owl-'] {
color: #FFF;
font-size: 14px;
margin: 5px;
padding: 4px 7px;
background: #D6D6D6;
display: inline-block;
cursor: pointer;
border-radius: 3px; }
.owl-theme .owl-nav [class*='owl-']:hover {
background: #869791;
color: #FFF;
text-decoration: none; }
.owl-theme .owl-nav .disabled {
opacity: 0.5;
cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
margin-top: 10px; }
.owl-theme .owl-dots {
text-align: center;
-webkit-tap-highlight-color: transparent; }
.owl-theme .owl-dots .owl-dot {
display: inline-block;
zoom: 1;
*display: inline; }
.owl-theme .owl-dots .owl-dot span {
width: 10px;
height: 10px;
margin: 5px 7px;
background: #D6D6D6;
display: block;
-webkit-backface-visibility: visible;
transition: opacity 200ms ease;
border-radius: 30px; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
background: #869791; }
/*-------- 1.3 Date dropper --------*/
@font-face {
font-family: "datedropper";
src: url("src/datedropper.eot");
src: url("src/datedropper.eot?#iefix") format("embedded-opentype"), url("src/datedropper.woff") format("woff"), url("src/datedropper.ttf") format("truetype"), url("src/datedropper.svg#datedropper") format("svg");
font-weight: normal;
font-style: normal;
}
[class^="pick-i-"]:before,
[class*=" pick-i-"]:before {
font-family: "datedropper" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.pick-i-lng:before {
content: "\6a";
}
.pick-i-lkd:before {
content: "\62";
}
.pick-i-ckd:before {
content: "\65";
}
.pick-i-r:before {
content: "\66";
}
.pick-i-l:before {
content: "\68";
}
.pick-i-min:before {
content: "\61";
}
.pick-i-exp:before {
content: "\63";
}
.picker-input {
cursor: text;
}
.picker-modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
z-index: 9998;
opacity: 1;
visibility: visible;
-webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
-moz-transition: opacity 0.4s ease, visibility 0.4s ease;
-ms-transition: opacity 0.4s ease, visibility 0.4s ease;
-o-transition: opacity 0.4s ease, visibility 0.4s ease;
}
.picker-modal-overlay.tohide {
opacity: 0;
visibility: hidden;
}
div.datedropper {
position: absolute;
top: 0;
left: 0;
z-index: 9999;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
line-height: 1;
font-family: sans-serif;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
opacity: 0;
visibility: hidden;
margin-top: -8px;
transform-style: preserve-3d;
-webkit-perspective: 1000;
-moz-perspective: 1000;
-ms-perspective: 1000;
perspective: 1000;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
}
div.datedropper:before {
content: "";
position: absolute;
width: 16px;
height: 16px;
top: -8px;
left: 50%;
-webkit-transform: translateX(-50%) rotate(45deg);
-moz-transform: translateX(-50%) rotate(45deg);
-ms-transform: translateX(-50%) rotate(45deg);
-o-transform: translateX(-50%) rotate(45deg);
border-top-left-radius: 4px;
}
div.datedropper.picker-focus {
opacity: 1;
visibility: visible;
margin-top: 8px;
}
div.datedropper.picker-modal {
top: 50%!important;
left: 50%!important;
-webkit-transform: translate(-50%, -50%) !important;
-moz-transform: translate(-50%, -50%) !important;
-ms-transform: translate(-50%, -50%) !important;
-o-transform: translate(-50%, -50%) !important;
position: fixed!important;
margin: 0!important;
}
div.datedropper.picker-modal:before {
display: none;
}
div.datedropper .picker {
overflow: hidden;
}
div.datedropper .picker ul {
margin: 0;
padding: 0;
list-style: none;
cursor: pointer;
}
div.datedropper .picker ul.pick {
position: relative;
overflow: hidden;
max-height: 100px;
}
div.datedropper .picker ul.pick:nth-of-type(2) {
box-shadow: 0 1px rgba(0, 0, 0, 0.06);
}
div.datedropper .picker ul.pick li {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
opacity: .5;
display: block;
}
div.datedropper .picker ul.pick li.pick-afr {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
}
div.datedropper .picker ul.pick li.pick-bfr {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
}
div.datedropper .picker ul.pick li.pick-sl {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
z-index: 1;
}
div.datedropper .picker ul.pick li span {
font-size: 16px;
position: absolute;
left: 0;
width: 100%;
line-height: 0;
bottom: 24px;
}
div.datedropper .picker ul.pick .pick-arw {
position: absolute;
top: 0;
height: 100%;
width: 25%;
font-size: 10px;
text-align: center;
display: block;
z-index: 10;
cursor: pointer;
background-size: 24px 24px;
background-position: center;
background-repeat: no-repeat;
overflow: hidden;
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
}
div.datedropper .picker ul.pick .pick-arw i {
line-height: 0;
top: 50%;
position: relative;
display: block;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-s1:hover {
opacity: 1;
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-r {
right: 0;
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-r i {
right: 0;
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-l {
left: 0;
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-l i {
left: 0;
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-s2.pick-arw-r {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-s2.pick-arw-l {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
}
@media only screen and (max-width: 480px) {
div.datedropper .picker ul.pick .pick-arw {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
opacity: 0.4;
}
}
div.datedropper .picker ul.pick.pick-m,
div.datedropper .picker ul.pick.pick-y,
div.datedropper .picker ul.pick.pick-l {
height: 60px;
line-height: 60px;
}
div.datedropper .picker ul.pick.pick-m {
font-size: 32px;
}
div.datedropper .picker ul.pick.pick-y {
font-size: 24px;
}
div.datedropper .picker ul.pick.pick-y.pick-jump .pick-arw.pick-arw-s1.pick-arw-r i {
right: 16px;
}
div.datedropper .picker ul.pick.pick-y.pick-jump .pick-arw.pick-arw-s1.pick-arw-l i {
left: 16px;
}
div.datedropper .picker ul.pick.pick-y.pick-jump .pick-arw.pick-arw-s2.pick-arw-r,
div.datedropper .picker ul.pick.pick-y.pick-jump .pick-arw.pick-arw-s2.pick-arw-l {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
}
div.datedropper .picker ul.pick.pick-y.pick-jump .pick-arw:hover {
-webkit-transform: scale(1.6);
-moz-transform: scale(1.6);
-ms-transform: scale(1.6);
-o-transform: scale(1.6);
}
div.datedropper .picker ul.pick.pick-d {
height: 100px;
line-height: 80px;
font-size: 64px;
font-weight: bold;
}
div.datedropper .picker ul.pick.pick-l {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 10;
font-size: 18px;
font-weight: bold;
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(32px);
-moz-transform: translateY(32px);
-ms-transform: translateY(32px);
-o-transform: translateY(32px);
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-ms-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
}
div.datedropper .picker ul.pick.pick-l.visible {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
}
div.datedropper .picker ul.pick:hover .pick-arw {
opacity: 0.6;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
}
div.datedropper .picker ul.pick.pick-d:hover,
div.datedropper .picker ul.pick.pick-y:hover {
background-color: rgba(0, 0, 0, 0.02);
}
div.datedropper .picker .pick-lg {
z-index: 1;
margin: 0 auto;
max-height: 0;
overflow: hidden;
}
div.datedropper .picker .pick-lg.down {
animation: down .8s ease;
}
div.datedropper .picker .pick-lg .pick-h {
opacity: 0.4;
}
div.datedropper .picker .pick-lg ul:after {
content: "";
display: table;
clear: both;
}
div.datedropper .picker .pick-lg ul li {
float: left;
text-align: center;
width: 14.285714286%;
line-height: 36px;
height: 36px;
font-size: 14px;
}
div.datedropper .picker .pick-lg ul.pick-lg-h {
padding: 0 16px;
}
div.datedropper .picker .pick-lg ul.pick-lg-b {
padding: 16px;
}
div.datedropper .picker .pick-lg ul.pick-lg-b li {
cursor: pointer;
position: relative;
z-index: 1;
}
div.datedropper .picker .pick-lg ul.pick-lg-b li:before {
content: "";
position: absolute;
z-index: -1;
width: 48px;
height: 48px;
box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
border-radius: 32px;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%) scale(0);
-moz-transform: translate(-50%, -50%) scale(0);
-ms-transform: translate(-50%, -50%) scale(0);
-o-transform: translate(-50%, -50%) scale(0);
}
div.datedropper .picker .pick-lg ul.pick-lg-b li.pick-v:hover {
text-decoration: underline;
}
div.datedropper .picker .pick-lg ul.pick-lg-b li.pick-lk:after {
content: "";
position: absolute;
top: 50%;
left: 4px;
right: 4px;
height: 1px;
background: rgba(0, 0, 0, 0.2);
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
}
div.datedropper .picker .pick-lg ul.pick-lg-b li.pick-sl {
font-size: 24px;
}
div.datedropper .picker .pick-lg ul.pick-lg-b li.pick-sl:before {
-webkit-transform: translate(-50%, -50%) scale(1);
-moz-transform: translate(-50%, -50%) scale(1);
-ms-transform: translate(-50%, -50%) scale(1);
-o-transform: translate(-50%, -50%) scale(1);
}
div.datedropper .picker .pick-btns {
margin: -1px;
position: relative;
z-index: 2;
height: 56px;
}
div.datedropper .picker .pick-btns div {
cursor: pointer;
line-height: 0;
}
div.datedropper .picker .pick-btns .pick-submit {
margin: 0 auto;
width: 56px;
height: 56px;
line-height: 64px;
border-radius: 56px;
font-size: 24px;
cursor: pointer;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
text-align: center;
position: relative;
top: 0;
}
div.datedropper .picker .pick-btns .pick-submit:after {
font-family: "datedropper" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
line-height: 60px;
content: "\65";
}
div.datedropper .picker .pick-btns .pick-submit:hover {
top: 4px;
box-shadow: 0 0 0 16px rgba(0, 0, 0, 0.04), 0 0 0 8px rgba(0, 0, 0, 0.04);
}
div.datedropper .picker .pick-btns .pick-btn {
position: absolute;
width: 32px;
height: 32px;
bottom: 0;
text-align: center;
line-height: 38px;
font-size: 16px;
margin: 8px;
border-radius: 4px;
background: rgba(0, 0, 0, 0.03);
}
div.datedropper .picker .pick-btns .pick-btn:hover {
background: #FFF;
-webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
}
div.datedropper .picker .pick-btns .pick-btn:after {
font-family: "datedropper" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
div.datedropper .picker .pick-btns .pick-btn.pick-btn-sz {
right: 0;
transform-origin: right bottom;
}
div.datedropper .picker .pick-btns .pick-btn.pick-btn-sz:after {
content: "\63";
}
div.datedropper .picker .pick-btns .pick-btn.pick-btn-lng {
left: 0;
transform-origin: left bottom;
}
div.datedropper .picker .pick-btns .pick-btn.pick-btn-lng:after {
content: "\6a";
}
div.datedropper.picker-lg {
width: 300px!important;
}
div.datedropper.picker-lg ul.pick.pick-d {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
max-height: 0!important;
}
div.datedropper.picker-lg .pick-lg {
max-height: 320px;
}
div.datedropper.picker-lg .pick-btns .pick-btn.pick-btn-sz:after {
content: "\61";
}
@media only screen and (max-width: 480px) {
div.datedropper.picker-lg {
position: fixed;
top: 50%!important;
left: 50%!important;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
margin: 0;
}
div.datedropper.picker-lg:before {
display: none;
}
}
@-moz-keyframes picker_locked {
0%,
100% {
-webkit-transform: translateX(-50%) translate3d(0, 0, 0);
-moz-transform: translateX(-50%) translate3d(0, 0, 0);
-ms-transform: translateX(-50%) translate3d(0, 0, 0);
-o-transform: translateX(-50%) translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translateX(-50%) translate3d(-2px, 0, 0);
-moz-transform: translateX(-50%) translate3d(-2px, 0, 0);
-ms-transform: translateX(-50%) translate3d(-2px, 0, 0);
-o-transform: translateX(-50%) translate3d(-2px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translateX(-50%) translate3d(2px, 0, 0);
-moz-transform: translateX(-50%) translate3d(2px, 0, 0);
-ms-transform: translateX(-50%) translate3d(2px, 0, 0);
-o-transform: translateX(-50%) translate3d(2px, 0, 0);
}
}
@-webkit-keyframes picker_locked {
0%,
100% {
-webkit-transform: translateX(-50%) translate3d(0, 0, 0);
-moz-transform: translateX(-50%) translate3d(0, 0, 0);
-ms-transform: translateX(-50%) translate3d(0, 0, 0);
-o-transform: translateX(-50%) translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translateX(-50%) translate3d(-2px, 0, 0);
-moz-transform: translateX(-50%) translate3d(-2px, 0, 0);
-ms-transform: translateX(-50%) translate3d(-2px, 0, 0);
-o-transform: translateX(-50%) translate3d(-2px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translateX(-50%) translate3d(2px, 0, 0);
-moz-transform: translateX(-50%) translate3d(2px, 0, 0);
-ms-transform: translateX(-50%) translate3d(2px, 0, 0);
-o-transform: translateX(-50%) translate3d(2px, 0, 0);
}
}
@keyframes picker_locked {
0%,
100% {
-webkit-transform: translateX(-50%) translate3d(0, 0, 0);
-moz-transform: translateX(-50%) translate3d(0, 0, 0);
-ms-transform: translateX(-50%) translate3d(0, 0, 0);
-o-transform: translateX(-50%) translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translateX(-50%) translate3d(-2px, 0, 0);
-moz-transform: translateX(-50%) translate3d(-2px, 0, 0);
-ms-transform: translateX(-50%) translate3d(-2px, 0, 0);
-o-transform: translateX(-50%) translate3d(-2px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translateX(-50%) translate3d(2px, 0, 0);
-moz-transform: translateX(-50%) translate3d(2px, 0, 0);
-ms-transform: translateX(-50%) translate3d(2px, 0, 0);
-o-transform: translateX(-50%) translate3d(2px, 0, 0);
}
}
@-moz-keyframes picker_locked_large_mobile {
0%,
100% {
-webkit-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
}
}
@-webkit-keyframes picker_locked_large_mobile {
0%,
100% {
-webkit-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
}
}
@keyframes picker_locked_large_mobile {
0%,
100% {
-webkit-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
}
}
div.datedropper.picker-rmbl {
-webkit-animation: picker_locked 0.4s ease;
-moz-animation: picker_locked 0.4s ease;
animation: picker_locked 0.4s ease;
}
@media only screen and (max-width: 480px) {
div.datedropper.picker-rmbl.picker-lg {
-webkit-animation: picker_locked_large_mobile 0.4s ease;
-moz-animation: picker_locked_large_mobile 0.4s ease;
animation: picker_locked_large_mobile 0.4s ease;
}
}
div.datedropper.picker-lkd .pick-submit {
background-color: rgba(0, 0, 0, 0.04) !important;
color: rgba(0, 0, 0, 0.2) !important;
}
div.datedropper.picker-lkd .pick-submit:hover {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
}
div.datedropper.picker-lkd .pick-submit:after {
content: "\62" !important;
}
div.datedropper.picker-fxs {
-webkit-transition: width 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
-moz-transition: width 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
-ms-transition: width 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
-o-transition: width 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
}
div.datedropper.picker-fxs ul.pick.pick-d {
-webkit-transition: top 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), transform 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), background-color 0.4s ease;
-moz-transition: top 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), transform 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), background-color 0.4s ease;
-ms-transition: top 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), transform 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), background-color 0.4s ease;
-o-transition: top 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), transform 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), background-color 0.4s ease;
}
div.datedropper.picker-fxs ul.pick.pick-y {
-webkit-transition: background-color 0.4s ease;
-moz-transition: background-color 0.4s ease;
-ms-transition: background-color 0.4s ease;
-o-transition: background-color 0.4s ease;
}
div.datedropper.picker-fxs ul.pick li {
-webkit-transition: transform 0.4s ease, opacity 0.4s ease;
-moz-transition: transform 0.4s ease, opacity 0.4s ease;
-ms-transition: transform 0.4s ease, opacity 0.4s ease;
-o-transition: transform 0.4s ease, opacity 0.4s ease;
}
div.datedropper.picker-fxs ul.pick .pick-arw {
-webkit-transition: transform 0.2s ease, opacity 0.2s ease;
-moz-transition: transform 0.2s ease, opacity 0.2s ease;
-ms-transition: transform 0.2s ease, opacity 0.2s ease;
-o-transition: transform 0.2s ease, opacity 0.2s ease;
}
div.datedropper.picker-fxs ul.pick .pick-arw i {
-webkit-transition: right 0.2s ease, left 0.2s ease;
-moz-transition: right 0.2s ease, left 0.2s ease;
-ms-transition: right 0.2s ease, left 0.2s ease;
-o-transition: right 0.2s ease, left 0.2s ease;
}
div.datedropper.picker-fxs .pick-lg {
-webkit-transition: max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37);
-moz-transition: max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37);
-ms-transition: max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37);
-o-transition: max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37);
}
div.datedropper.picker-fxs .pick-lg .pick-lg-b li:before {
-webkit-transition: transform 0.2s ease;
-moz-transition: transform 0.2s ease;
-ms-transition: transform 0.2s ease;
-o-transition: transform 0.2s ease;
}
div.datedropper.picker-fxs .pick-btns .pick-submit {
-webkit-transition: top 0.2s ease, box-shadow 0.4s ease, background-color 0.4s ease;
-moz-transition: top 0.2s ease, box-shadow 0.4s ease, background-color 0.4s ease;
-ms-transition: top 0.2s ease, box-shadow 0.4s ease, background-color 0.4s ease;
-o-transition: top 0.2s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}
div.datedropper.picker-fxs .pick-btns .pick-btn {
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
}
@media only screen and (max-width: 480px) {
div.datedropper.picker-fxs {
-webkit-transition: opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
-moz-transition: opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
-ms-transition: opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
-o-transition: opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
}
div.datedropper.picker-fxs ul.pick.pick-d,
div.datedropper.picker-fxs .pick-lg {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
}
}
div.datedropper.vanilla {
border-radius: 6px;
width: 180px;
}
div.datedropper.vanilla .picker {
border-radius: 6px;
box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.1);
}
div.datedropper.vanilla .pick-l {
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
div.datedropper.vanilla:before,
div.datedropper.vanilla .pick-submit,
div.datedropper.vanilla .pick-lg-b .pick-sl:before,
div.datedropper.vanilla .pick-m,
div.datedropper.vanilla .pick-lg-h {
background-color: #feac92;
}
div.datedropper.vanilla .pick-y.pick-jump,
div.datedropper.vanilla .pick li span,
div.datedropper.vanilla .pick-lg-b .pick-wke,
div.datedropper.vanilla .pick-btn {
color: #feac92;
}
div.datedropper.vanilla .picker,
div.datedropper.vanilla .pick-l {
background-color: #ffffff;
}
div.datedropper.vanilla .picker,
div.datedropper.vanilla .pick-arw,
div.datedropper.vanilla .pick-l {
color: #9ed7db;
}
div.datedropper.vanilla .pick-m,
div.datedropper.vanilla .pick-m .pick-arw,
div.datedropper.vanilla .pick-lg-h,
div.datedropper.vanilla .pick-lg-b .pick-sl,
div.datedropper.vanilla .pick-submit {
color: #faf7f4;
}
div.datedropper.vanilla.picker-tiny:before,
div.datedropper.vanilla.picker-tiny .pick-m {
background-color: #ffffff;
}
div.datedropper.vanilla.picker-tiny .pick-m,
div.datedropper.vanilla.picker-tiny .pick-m .pick-arw {
color: #9ed7db;
}
div.datedropper.leaf {
border-radius: 6px;
width: 180px;
}
div.datedropper.leaf .picker {
border-radius: 6px;
box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.1);
}
div.datedropper.leaf .pick-l {
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
div.datedropper.leaf:before,
div.datedropper.leaf .pick-submit,
div.datedropper.leaf .pick-lg-b .pick-sl:before,
div.datedropper.leaf .pick-m,
div.datedropper.leaf .pick-lg-h {
background-color: #1ecd80;
}
div.datedropper.leaf .pick-y.pick-jump,
div.datedropper.leaf .pick li span,
div.datedropper.leaf .pick-lg-b .pick-wke,
div.datedropper.leaf .pick-btn {
color: #1ecd80;
}
div.datedropper.leaf .picker,
div.datedropper.leaf .pick-l {
background-color: #fefff2;
}
div.datedropper.leaf .picker,
div.datedropper.leaf .pick-arw,
div.datedropper.leaf .pick-l {
color: #528971;
}
div.datedropper.leaf .pick-m,
div.datedropper.leaf .pick-m .pick-arw,
div.datedropper.leaf .pick-lg-h,
div.datedropper.leaf .pick-lg-b .pick-sl,
div.datedropper.leaf .pick-submit {
color: #fefff2;
}
div.datedropper.leaf.picker-tiny:before,
div.datedropper.leaf.picker-tiny .pick-m {
background-color: #fefff2;
}
div.datedropper.leaf.picker-tiny .pick-m,
div.datedropper.leaf.picker-tiny .pick-m .pick-arw {
color: #528971;
}
div.datedropper.primary {
border-radius: 6px;
width: 180px;
}
div.datedropper.primary .picker {
border-radius: 6px;
box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.1);
}
div.datedropper.primary .pick-l {
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
div.datedropper.primary:before,
div.datedropper.primary .pick-submit,
div.datedropper.primary .pick-lg-b .pick-sl:before,
div.datedropper.primary .pick-m,
div.datedropper.primary .pick-lg-h {
background-color: #fd4741;
}
div.datedropper.primary .pick-y.pick-jump,
div.datedropper.primary .pick li span,
div.datedropper.primary .pick-lg-b .pick-wke,
div.datedropper.primary .pick-btn {
color: #fd4741;
}
div.datedropper.primary .picker,
div.datedropper.primary .pick-l {
background-color: #ffffff;
}
div.datedropper.primary .picker,
div.datedropper.primary .pick-arw,
div.datedropper.primary .pick-l {
color: #4d4d4d;
}
div.datedropper.primary .pick-m,
div.datedropper.primary .pick-m .pick-arw,
div.datedropper.primary .pick-lg-h,
div.datedropper.primary .pick-lg-b .pick-sl,
div.datedropper.primary .pick-submit {
color: #ffffff;
}
div.datedropper.primary.picker-tiny:before,
div.datedropper.primary.picker-tiny .pick-m {
background-color: #ffffff;
}
div.datedropper.primary.picker-tiny .pick-m,
div.datedropper.primary.picker-tiny .pick-m .pick-arw {
color: #4d4d4d;
}
div.datedropper .null {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
}
/*-------- 1.4 Time dropper --------*/
.td-wrap,
.td-wrap * {
margin: 0;
padding: 0;
list-style: none;
-webkit-box-sizing: initial !important;
-moz-box-sizing: initial !important;
box-sizing: initial !important;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.td-wrap svg {
width: 100%;
}
.td-input {
cursor: pointer;
}
.td-wrap {
display: none;
font-family: sans-serif;
position: absolute;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
outline: none;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 9999;
color: #4d4d4d;
}
.td-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.td-clock {
width: 156px;
height: 156px;
border-radius: 156px;
box-shadow: 0 0 0 1px #1977CC, 0 0 0 8px rgba(0, 0, 0, 0.05);
position: relative;
background: #FFF;
margin: 0 auto;
text-align: center;
line-height: 156px;
position: absolute;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.td-clock:before {
position: absolute;
content: "";
top: -10px;
margin-left: -10px;
left: 50%;
width: 20px;
height: 20px;
transform: rotate(45deg);
background: #FFF;
border-left: 1px solid #1977CC;
border-top: 1px solid #1977CC;
border-top-left-radius: 4px;
}
.td-init .td-deg {
-webkit-animation: slide 1s cubic-bezier(.7, 0, .175, 1) 1.2s infinite;
}
.td-svg {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.td-svg-2 {
position: absolute;
top: 18px;
left: 18px;
bottom: 18px;
right: 18px;
}
.td-wrap.td-show {
display: block;
}
.td-deg {
background-position: center;
background-repeat: no-repeat;
background-size: 80%;
position: absolute;
z-index: 1;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.td-medirian {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.td-medirian span {
width: 40px;
height: 40px;
border-radius: 40px;
line-height: 40px;
text-align: center;
margin: 0;
position: absolute;
z-index: 2;
left: 50%;
margin-left: -20px;
font-size: .8em;
opacity: 0;
font-weight: bold;
}
.td-medirian .td-icon-am {
top: 40px;
}
.td-medirian .td-icon-pm {
bottom: 40px;
}
.td-medirian .td-icon-am.td-on {
top: 26px;
opacity: 1;
}
.td-medirian .td-icon-pm.td-on {
bottom: 26px;
opacity: 1;
}
.td-select {
position: absolute;
top: 4px;
left: 32px;
right: 32px;
bottom: 22px;
}
.td-select svg {
position: absolute;
top: 0;
left: 0;
right: 0;
}
.td-select:after {
position: absolute;
background: #FFF;
width: 36px;
height: 36px;
box-shadow: 0 0 0 1px #1977CC;
border-radius: 60px;
top: -16px;
left: 50%;
margin-left: -18px;
border-bottom-left-radius: 0;
content: "";
transform: rotate(-45deg);
cursor: pointer;
}
.td-clock .td-time {
font-weight: bold;
position: relative;
}
.td-clock .td-time span {
width: 42px;
height: 42px;
display: inline-block;
vertical-align: middle;
line-height: 42px;
text-align: center;
margin: 6px;
position: relative;
z-index: 2;
cursor: pointer;
font-size: 2em;
border-radius: 6px;
}
.td-clock .td-time span.on {
color: #1977CC;
}
.td-n {
-webkit-transition: all 0.4s cubic-bezier(.7, 0, .175, 1) 0s;
-moz-transition: all 0.4s cubic-bezier(.7, 0, .175, 1) 0s;
-ms-transition: all 0.4s cubic-bezier(.7, 0, .175, 1) 0s;
transition: all 0.4s cubic-bezier(.7, 0, .175, 1) 0s;
}
.td-n2 {
-webkit-transition: all 0.2s linear 0s;
-moz-transition: all 0.2s linear 0s;
-ms-transition: all 0.2s linear 0s;
transition: all 0.2s linear 0s;
}
/*
@-webkit-keyframes td-rubber {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.td-rubber {
-webkit-animation-name: td-rubber;
animation-name: td-rubber;
-webkit-animation-duration: .8s;
animation-duration: .8s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
*/
@-webkit-keyframes td-alert {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes td-alert {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.td-alert {
-webkit-animation-name: td-alert;
animation-name: td-alert;
-webkit-animation-duration: .8s;
animation-duration: .8s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
/* effects */
@-webkit-keyframes td-bounce {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
20% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
30% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
60% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
70% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
80% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes td-bounce {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
20% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
30% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
60% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
70% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
80% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.td-bounce {
-webkit-animation-name: td-bounce;
animation-name: td-bounce;
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
@-webkit-keyframes td-fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes td-fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.td-fadein {
-webkit-animation-name: td-fadein;
animation-name: td-fadein;
-webkit-animation-duration: .3s;
animation-duration: .3s;
}
@-webkit-keyframes td-fadeout {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes td-fadeout {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.td-fadeout {
-webkit-animation: td-fadeout .3s forwards;
animation: td-fadeout .3s forwards;
}
@-webkit-keyframes td-dropdown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100px, 0);
transform: translate3d(0, -100px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes td-dropdown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100px, 0);
transform: translate3d(0, -100px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.td-dropdown {
-webkit-animation-name: td-dropdown;
animation-name: td-dropdown;
-webkit-animation-duration: .5s;
animation-duration: .5s;
}
.td-bulletpoint,
.td-bulletpoint div,
.td-lancette,
.td-lancette div {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.td-bulletpoint div:after {
position: absolute;
content: "";
top: 14px;
left: 50%;
margin-left: -2px;
width: 4px;
height: 4px;
border-radius: 10px;
}
.td-lancette {
border: 2px solid #DFF3FA;
border-radius: 100%;
margin: 6px;
}
.td-lancette div:after {
position: absolute;
top: 20px;
left: 50%;
margin-left: -1px;
width: 2px;
bottom: 50%;
border-radius: 10px;
background: #DFF3FA;
content: "";
}
.td-lancette div:last-child:after {
top: 36px;
} | assets/frontend/css/vendors.uncompressed.css | Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2014 <NAME>
*/
.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 bounce {
0%, 20%, 53%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
@keyframes bounce {
0%, 20%, 53%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
-webkit-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
}
40%, 43% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -30px, 0);
transform: translate3d(0, -30px, 0);
}
70% {
-webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
-webkit-transform: translate3d(0, -15px, 0);
transform: translate3d(0, -15px, 0);
}
90% {
-webkit-transform: translate3d(0,-4px,0);
transform: translate3d(0,-4px,0);
}
}
.bounce {
-webkit-animation-name: bounce;
animation-name: bounce;
-webkit-transform-origin: center bottom;
-ms-transform-origin: center bottom;
transform-origin: center bottom;
}
@-webkit-keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
@keyframes flash {
0%, 50%, 100% {
opacity: 1;
}
25%, 75% {
opacity: 0;
}
}
.flash {
-webkit-animation-name: flash;
animation-name: flash;
}
/* originally authored by <NAME> - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes pulse {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
50% {
-webkit-transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.pulse {
-webkit-animation-name: pulse;
animation-name: pulse;
}
@-webkit-keyframes rubberBand {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes rubberBand {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.rubberBand {
-webkit-animation-name: rubberBand;
animation-name: rubberBand;
}
@-webkit-keyframes shake {
0%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
@keyframes shake {
0%, 100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
10%, 30%, 50%, 70%, 90% {
-webkit-transform: translate3d(-10px, 0, 0);
transform: translate3d(-10px, 0, 0);
}
20%, 40%, 60%, 80% {
-webkit-transform: translate3d(10px, 0, 0);
transform: translate3d(10px, 0, 0);
}
}
.shake {
-webkit-animation-name: shake;
animation-name: shake;
}
@-webkit-keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
100% {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
@keyframes swing {
20% {
-webkit-transform: rotate3d(0, 0, 1, 15deg);
transform: rotate3d(0, 0, 1, 15deg);
}
40% {
-webkit-transform: rotate3d(0, 0, 1, -10deg);
transform: rotate3d(0, 0, 1, -10deg);
}
60% {
-webkit-transform: rotate3d(0, 0, 1, 5deg);
transform: rotate3d(0, 0, 1, 5deg);
}
80% {
-webkit-transform: rotate3d(0, 0, 1, -5deg);
transform: rotate3d(0, 0, 1, -5deg);
}
100% {
-webkit-transform: rotate3d(0, 0, 1, 0deg);
transform: rotate3d(0, 0, 1, 0deg);
}
}
.swing {
-webkit-transform-origin: top center;
-ms-transform-origin: top center;
transform-origin: top center;
-webkit-animation-name: swing;
animation-name: swing;
}
@-webkit-keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes tada {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%, 20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%, 50%, 70%, 90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%, 60%, 80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.tada {
-webkit-animation-name: tada;
animation-name: tada;
}
/* originally authored by <NAME> - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
0% {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes wobble {
0% {
-webkit-transform: none;
transform: none;
}
15% {
-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
}
30% {
-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
}
45% {
-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
}
60% {
-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
}
75% {
-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.wobble {
-webkit-animation-name: wobble;
animation-name: wobble;
}
@-webkit-keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes bounceIn {
0%, 20%, 40%, 60%, 80%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
20% {
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
40% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
60% {
opacity: 1;
-webkit-transform: scale3d(1.03, 1.03, 1.03);
transform: scale3d(1.03, 1.03, 1.03);
}
80% {
-webkit-transform: scale3d(.97, .97, .97);
transform: scale3d(.97, .97, .97);
}
100% {
opacity: 1;
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.bounceIn {
-webkit-animation-name: bounceIn;
animation-name: bounceIn;
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInDown {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, -3000px, 0);
transform: translate3d(0, -3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, 25px, 0);
transform: translate3d(0, 25px, 0);
}
75% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
90% {
-webkit-transform: translate3d(0, 5px, 0);
transform: translate3d(0, 5px, 0);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInDown {
-webkit-animation-name: bounceInDown;
animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInLeft {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(-3000px, 0, 0);
transform: translate3d(-3000px, 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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInLeft {
-webkit-animation-name: bounceInLeft;
animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
@keyframes bounceInRight {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(3000px, 0, 0);
transform: translate3d(3000px, 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);
}
100% {
-webkit-transform: none;
transform: none;
}
}
.bounceInRight {
-webkit-animation-name: bounceInRight;
animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
@keyframes bounceInUp {
0%, 60%, 75%, 90%, 100% {
-webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
0% {
opacity: 0;
-webkit-transform: translate3d(0, 3000px, 0);
transform: translate3d(0, 3000px, 0);
}
60% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
75% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
90% {
-webkit-transform: translate3d(0, -5px, 0);
transform: translate3d(0, -5px, 0);
}
100% {
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}
}
.bounceInUp {
-webkit-animation-name: bounceInUp;
animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
@keyframes bounceOut {
20% {
-webkit-transform: scale3d(.9, .9, .9);
transform: scale3d(.9, .9, .9);
}
50%, 55% {
opacity: 1;
-webkit-transform: scale3d(1.1, 1.1, 1.1);
transform: scale3d(1.1, 1.1, 1.1);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
}
.bounceOut {
-webkit-animation-name: bounceOut;
animation-name: bounceOut;
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes bounceOutDown {
20% {
-webkit-transform: translate3d(0, 10px, 0);
transform: translate3d(0, 10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, -20px, 0);
transform: translate3d(0, -20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.bounceOutDown {
-webkit-animation-name: bounceOutDown;
animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes bounceOutLeft {
20% {
opacity: 1;
-webkit-transform: translate3d(20px, 0, 0);
transform: translate3d(20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.bounceOutLeft {
-webkit-animation-name: bounceOutLeft;
animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes bounceOutRight {
20% {
opacity: 1;
-webkit-transform: translate3d(-20px, 0, 0);
transform: translate3d(-20px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.bounceOutRight {
-webkit-animation-name: bounceOutRight;
animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes bounceOutUp {
20% {
-webkit-transform: translate3d(0, -10px, 0);
transform: translate3d(0, -10px, 0);
}
40%, 45% {
opacity: 1;
-webkit-transform: translate3d(0, 20px, 0);
transform: translate3d(0, 20px, 0);
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.bounceOutUp {
-webkit-animation-name: bounceOutUp;
animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes fadeIn {
0% {opacity: 0;}
100% {opacity: 1;}
}
.fadeIn {
-webkit-animation-name: fadeIn;
animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDown {
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInDownBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInDownBig {
-webkit-animation-name: fadeInDownBig;
animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeft {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeft {
-webkit-animation-name: fadeInLeft;
animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInLeftBig {
0% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInLeftBig {
-webkit-animation-name: fadeInLeftBig;
animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRight {
0% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRight {
-webkit-animation-name: fadeInRight;
animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInRightBig {
0% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInRightBig {
-webkit-animation-name: fadeInRightBig;
animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUp {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUp {
-webkit-animation-name: fadeInUp;
animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes fadeInUpBig {
0% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.fadeInUpBig {
-webkit-animation-name: fadeInUpBig;
animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
@keyframes fadeOut {
0% {opacity: 1;}
100% {opacity: 0;}
}
.fadeOut {
-webkit-animation-name: fadeOut;
animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
@keyframes fadeOutDown {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 100%, 0);
transform: translate3d(0, 100%, 0);
}
}
.fadeOutDown {
-webkit-animation-name: fadeOutDown;
animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
@keyframes fadeOutDownBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, 2000px, 0);
transform: translate3d(0, 2000px, 0);
}
}
.fadeOutDownBig {
-webkit-animation-name: fadeOutDownBig;
animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
@keyframes fadeOutLeft {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0);
transform: translate3d(-100%, 0, 0);
}
}
.fadeOutLeft {
-webkit-animation-name: fadeOutLeft;
animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
@keyframes fadeOutLeftBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(-2000px, 0, 0);
transform: translate3d(-2000px, 0, 0);
}
}
.fadeOutLeftBig {
-webkit-animation-name: fadeOutLeftBig;
animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
@keyframes fadeOutRight {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0);
transform: translate3d(100%, 0, 0);
}
}
.fadeOutRight {
-webkit-animation-name: fadeOutRight;
animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
@keyframes fadeOutRightBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(2000px, 0, 0);
transform: translate3d(2000px, 0, 0);
}
}
.fadeOutRightBig {
-webkit-animation-name: fadeOutRightBig;
animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
@keyframes fadeOutUp {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -100%, 0);
transform: translate3d(0, -100%, 0);
}
}
.fadeOutUp {
-webkit-animation-name: fadeOutUp;
animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
@keyframes fadeOutUpBig {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(0, -2000px, 0);
transform: translate3d(0, -2000px, 0);
}
}
.fadeOutUpBig {
-webkit-animation-name: fadeOutUpBig;
animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
@keyframes flip {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
40% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
50% {
-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
80% {
-webkit-transform: perspective(400px) scale3d(.95, .95, .95);
transform: perspective(400px) scale3d(.95, .95, .95);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
}
.animated.flip {
-webkit-backface-visibility: visible;
backface-visibility: visible;
-webkit-animation-name: flip;
animation-name: flip;
}
@-webkit-keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-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-transition-timing-function: ease-in;
transition-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);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInX {
0% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-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-transition-timing-function: ease-in;
transition-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);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInX {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInX;
animation-name: flipInX;
}
@-webkit-keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
@keyframes flipInY {
0% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
opacity: 0;
}
40% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
-webkit-transition-timing-function: ease-in;
transition-timing-function: ease-in;
}
60% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
opacity: 1;
}
80% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
}
100% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
}
.flipInY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipInY;
animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutX {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
opacity: 0;
}
}
.flipOutX {
-webkit-animation-name: flipOutX;
animation-name: flipOutX;
-webkit-animation-duration: .75s;
animation-duration: .75s;
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
@keyframes flipOutY {
0% {
-webkit-transform: perspective(400px);
transform: perspective(400px);
}
30% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
opacity: 1;
}
100% {
-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
opacity: 0;
}
}
.flipOutY {
-webkit-backface-visibility: visible !important;
backface-visibility: visible !important;
-webkit-animation-name: flipOutY;
animation-name: flipOutY;
-webkit-animation-duration: .75s;
animation-duration: .75s;
}
@-webkit-keyframes lightSpeedIn {
0% {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes lightSpeedIn {
0% {
-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
transform: translate3d(100%, 0, 0) skewX(-30deg);
opacity: 0;
}
60% {
-webkit-transform: skewX(20deg);
transform: skewX(20deg);
opacity: 1;
}
80% {
-webkit-transform: skewX(-5deg);
transform: skewX(-5deg);
opacity: 1;
}
100% {
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.lightSpeedIn {
-webkit-animation-name: lightSpeedIn;
animation-name: lightSpeedIn;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
0% {
opacity: 1;
}
100% {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
@keyframes lightSpeedOut {
0% {
opacity: 1;
}
100% {
-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
transform: translate3d(100%, 0, 0) skewX(30deg);
opacity: 0;
}
}
.lightSpeedOut {
-webkit-animation-name: lightSpeedOut;
animation-name: lightSpeedOut;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateIn {
0% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, -200deg);
transform: rotate3d(0, 0, 1, -200deg);
opacity: 0;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateIn {
-webkit-animation-name: rotateIn;
animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInDownRight {
-webkit-animation-name: rotateInDownRight;
animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpLeft {
-webkit-animation-name: rotateInUpLeft;
animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -90deg);
transform: rotate3d(0, 0, 1, -90deg);
opacity: 0;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
.rotateInUpRight {
-webkit-animation-name: rotateInUpRight;
animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
@keyframes rotateOut {
0% {
-webkit-transform-origin: center;
transform-origin: center;
opacity: 1;
}
100% {
-webkit-transform-origin: center;
transform-origin: center;
-webkit-transform: rotate3d(0, 0, 1, 200deg);
transform: rotate3d(0, 0, 1, 200deg);
opacity: 0;
}
}
.rotateOut {
-webkit-animation-name: rotateOut;
animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
@keyframes rotateOutDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, 45deg);
transform: rotate3d(0, 0, 1, 45deg);
opacity: 0;
}
}
.rotateOutDownLeft {
-webkit-animation-name: rotateOutDownLeft;
animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutDownRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutDownRight {
-webkit-animation-name: rotateOutDownRight;
animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
@keyframes rotateOutUpLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
}
.rotateOutUpLeft {
-webkit-animation-name: rotateOutUpLeft;
animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
@keyframes rotateOutUpRight {
0% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
opacity: 1;
}
100% {
-webkit-transform-origin: right bottom;
transform-origin: right bottom;
-webkit-transform: rotate3d(0, 0, 1, 90deg);
transform: rotate3d(0, 0, 1, 90deg);
opacity: 0;
}
}
.rotateOutUpRight {
-webkit-animation-name: rotateOutUpRight;
animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
100% {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
@keyframes hinge {
0% {
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
20%, 60% {
-webkit-transform: rotate3d(0, 0, 1, 80deg);
transform: rotate3d(0, 0, 1, 80deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
}
40%, 80% {
-webkit-transform: rotate3d(0, 0, 1, 60deg);
transform: rotate3d(0, 0, 1, 60deg);
-webkit-transform-origin: top left;
transform-origin: top left;
-webkit-animation-timing-function: ease-in-out;
animation-timing-function: ease-in-out;
opacity: 1;
}
100% {
-webkit-transform: translate3d(0, 700px, 0);
transform: translate3d(0, 700px, 0);
opacity: 0;
}
}
.hinge {
-webkit-animation-name: hinge;
animation-name: hinge;
}
/* originally authored by <NAME> - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes rollIn {
0% {
opacity: 0;
-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.rollIn {
-webkit-animation-name: rollIn;
animation-name: rollIn;
}
/* originally authored by <NAME> - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
@keyframes rollOut {
0% {
opacity: 1;
}
100% {
opacity: 0;
-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
}
}
.rollOut {
-webkit-animation-name: rollOut;
animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
@keyframes zoomIn {
0% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
50% {
opacity: 1;
}
}
.zoomIn {
-webkit-animation-name: zoomIn;
animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInDown {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInDown {
-webkit-animation-name: zoomInDown;
animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInLeft {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInLeft {
-webkit-animation-name: zoomInLeft;
animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInRight {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInRight {
-webkit-animation-name: zoomInRight;
animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomInUp {
0% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
60% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomInUp {
-webkit-animation-name: zoomInUp;
animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
@keyframes zoomOut {
0% {
opacity: 1;
}
50% {
opacity: 0;
-webkit-transform: scale3d(.3, .3, .3);
transform: scale3d(.3, .3, .3);
}
100% {
opacity: 0;
}
}
.zoomOut {
-webkit-animation-name: zoomOut;
animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutDown {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutDown {
-webkit-animation-name: zoomOutDown;
animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
@keyframes zoomOutLeft {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
transform: scale(.1) translate3d(-2000px, 0, 0);
-webkit-transform-origin: left center;
transform-origin: left center;
}
}
.zoomOutLeft {
-webkit-animation-name: zoomOutLeft;
animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
@keyframes zoomOutRight {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
}
100% {
opacity: 0;
-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
transform: scale(.1) translate3d(2000px, 0, 0);
-webkit-transform-origin: right center;
transform-origin: right center;
}
}
.zoomOutRight {
-webkit-animation-name: zoomOutRight;
animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
@keyframes zoomOutUp {
40% {
opacity: 1;
-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
-webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
}
100% {
opacity: 0;
-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
-webkit-transform-origin: center bottom;
transform-origin: center bottom;
-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
}
}
.zoomOutUp {
-webkit-animation-name: zoomOutUp;
animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInDown {
0% {
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.slideInDown {
-webkit-animation-name: slideInDown;
animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInLeft {
0% {
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.slideInLeft {
-webkit-animation-name: slideInLeft;
animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
-webkit-transform: translateX(100%);
transform: translateX(100%);
visibility: visible;
}
100% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
}
.slideInRight {
-webkit-animation-name: slideInRight;
animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
@keyframes slideInUp {
0% {
-webkit-transform: translateY(100%);
transform: translateY(100%);
visibility: visible;
}
100% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
}
.slideInUp {
-webkit-animation-name: slideInUp;
animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
@keyframes slideOutDown {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(100%);
transform: translateY(100%);
}
}
.slideOutDown {
-webkit-animation-name: slideOutDown;
animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
@keyframes slideOutLeft {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
}
}
.slideOutLeft {
-webkit-animation-name: slideOutLeft;
animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
@keyframes slideOutRight {
0% {
-webkit-transform: translateX(0);
transform: translateX(0);
}
100% {
visibility: hidden;
-webkit-transform: translateX(100%);
transform: translateX(100%);
}
}
.slideOutRight {
-webkit-animation-name: slideOutRight;
animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
@keyframes slideOutUp {
0% {
-webkit-transform: translateY(0);
transform: translateY(0);
}
100% {
visibility: hidden;
-webkit-transform: translateY(-100%);
transform: translateY(-100%);
}
}
.slideOutUp {
-webkit-animation-name: slideOutUp;
animation-name: slideOutUp;
}
/*-------- 1.2 Carousel --------*/
/**
* Owl Carousel v2.2.1
* Copyright 2013-2017 <NAME>
* Licensed under ()
*/
/*
* Owl Carousel - Core
*/
.owl-carousel {
display: none;
width: 100%;
-webkit-tap-highlight-color: transparent;
/* position relative and z-index fix webkit rendering fonts issue */
position: relative;
z-index: 1; }
.owl-carousel .owl-stage {
position: relative;
-ms-touch-action: pan-Y;
-moz-backface-visibility: hidden;
/* fix firefox animation glitch */ }
.owl-carousel .owl-stage:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0; }
.owl-carousel .owl-stage-outer {
position: relative;
overflow: hidden;
/* fix for flashing background */
-webkit-transform: translate3d(0px, 0px, 0px); }
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
-ms-transform: translate3d(0, 0, 0); }
.owl-carousel .owl-item {
position: relative;
min-height: 1px;
float: left;
-webkit-backface-visibility: hidden;
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none; }
.owl-carousel .owl-item img {
display: block;
width: 100%; }
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
display: none; }
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
cursor: pointer;
cursor: hand;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.owl-carousel.owl-loaded {
display: block; }
.owl-carousel.owl-loading {
opacity: 0;
display: block; }
.owl-carousel.owl-hidden {
opacity: 0; }
.owl-carousel.owl-refresh .owl-item {
visibility: hidden; }
.owl-carousel.owl-drag .owl-item {
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none; }
.owl-carousel.owl-grab {
cursor: move;
cursor: grab; }
.owl-carousel.owl-rtl {
direction: rtl; }
.owl-carousel.owl-rtl .owl-item {
float: right; }
/* No Js */
.no-js .owl-carousel {
display: block; }
/*
* Owl Carousel - Animate Plugin
*/
.owl-carousel .animated {
animation-duration: 1000ms;
animation-fill-mode: both; }
.owl-carousel .owl-animated-in {
z-index: 0; }
.owl-carousel .owl-animated-out {
z-index: 1; }
.owl-carousel .fadeOut {
animation-name: fadeOut; }
@keyframes fadeOut {
0% {
opacity: 1; }
100% {
opacity: 0; } }
/*
* Owl Carousel - Auto Height Plugin
*/
.owl-height {
transition: height 500ms ease-in-out; }
/*
* Owl Carousel - Lazy Load Plugin
*/
.owl-carousel .owl-item .owl-lazy {
opacity: 0;
transition: opacity 400ms ease; }
.owl-carousel .owl-item img.owl-lazy {
transform-style: preserve-3d; }
/*
* Owl Carousel - Video Plugin
*/
.owl-carousel .owl-video-wrapper {
position: relative;
height: 100%;
background: #000; }
.owl-carousel .owl-video-play-icon {
position: absolute;
height: 80px;
width: 80px;
left: 50%;
top: 50%;
margin-left: -40px;
margin-top: -40px;
background: url("owl.video.play.png") no-repeat;
cursor: pointer;
z-index: 1;
-webkit-backface-visibility: hidden;
transition: transform 100ms ease; }
.owl-carousel .owl-video-play-icon:hover {
-ms-transform: scale(1.3, 1.3);
transform: scale(1.3, 1.3); }
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
display: none; }
.owl-carousel .owl-video-tn {
opacity: 0;
height: 100%;
background-position: center center;
background-repeat: no-repeat;
background-size: contain;
transition: opacity 400ms ease; }
.owl-carousel .owl-video-frame {
position: relative;
z-index: 1;
height: 100%;
width: 100%; }
/**
* Owl Carousel v2.2.1
* Copyright 2013-2017 <NAME>
* Licensed under ()
*/
/*
* Default theme - Owl Carousel CSS File
*/
.owl-theme .owl-nav {
margin-top: 10px;
text-align: center;
-webkit-tap-highlight-color: transparent; }
.owl-theme .owl-nav [class*='owl-'] {
color: #FFF;
font-size: 14px;
margin: 5px;
padding: 4px 7px;
background: #D6D6D6;
display: inline-block;
cursor: pointer;
border-radius: 3px; }
.owl-theme .owl-nav [class*='owl-']:hover {
background: #869791;
color: #FFF;
text-decoration: none; }
.owl-theme .owl-nav .disabled {
opacity: 0.5;
cursor: default; }
.owl-theme .owl-nav.disabled + .owl-dots {
margin-top: 10px; }
.owl-theme .owl-dots {
text-align: center;
-webkit-tap-highlight-color: transparent; }
.owl-theme .owl-dots .owl-dot {
display: inline-block;
zoom: 1;
*display: inline; }
.owl-theme .owl-dots .owl-dot span {
width: 10px;
height: 10px;
margin: 5px 7px;
background: #D6D6D6;
display: block;
-webkit-backface-visibility: visible;
transition: opacity 200ms ease;
border-radius: 30px; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
background: #869791; }
/*-------- 1.3 Date dropper --------*/
@font-face {
font-family: "datedropper";
src: url("src/datedropper.eot");
src: url("src/datedropper.eot?#iefix") format("embedded-opentype"), url("src/datedropper.woff") format("woff"), url("src/datedropper.ttf") format("truetype"), url("src/datedropper.svg#datedropper") format("svg");
font-weight: normal;
font-style: normal;
}
[class^="pick-i-"]:before,
[class*=" pick-i-"]:before {
font-family: "datedropper" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.pick-i-lng:before {
content: "\6a";
}
.pick-i-lkd:before {
content: "\62";
}
.pick-i-ckd:before {
content: "\65";
}
.pick-i-r:before {
content: "\66";
}
.pick-i-l:before {
content: "\68";
}
.pick-i-min:before {
content: "\61";
}
.pick-i-exp:before {
content: "\63";
}
.picker-input {
cursor: text;
}
.picker-modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
z-index: 9998;
opacity: 1;
visibility: visible;
-webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
-moz-transition: opacity 0.4s ease, visibility 0.4s ease;
-ms-transition: opacity 0.4s ease, visibility 0.4s ease;
-o-transition: opacity 0.4s ease, visibility 0.4s ease;
}
.picker-modal-overlay.tohide {
opacity: 0;
visibility: hidden;
}
div.datedropper {
position: absolute;
top: 0;
left: 0;
z-index: 9999;
-webkit-transform: translateX(-50%);
-moz-transform: translateX(-50%);
-ms-transform: translateX(-50%);
-o-transform: translateX(-50%);
line-height: 1;
font-family: sans-serif;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
opacity: 0;
visibility: hidden;
margin-top: -8px;
transform-style: preserve-3d;
-webkit-perspective: 1000;
-moz-perspective: 1000;
-ms-perspective: 1000;
perspective: 1000;
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
backface-visibility: hidden;
}
div.datedropper:before {
content: "";
position: absolute;
width: 16px;
height: 16px;
top: -8px;
left: 50%;
-webkit-transform: translateX(-50%) rotate(45deg);
-moz-transform: translateX(-50%) rotate(45deg);
-ms-transform: translateX(-50%) rotate(45deg);
-o-transform: translateX(-50%) rotate(45deg);
border-top-left-radius: 4px;
}
div.datedropper.picker-focus {
opacity: 1;
visibility: visible;
margin-top: 8px;
}
div.datedropper.picker-modal {
top: 50%!important;
left: 50%!important;
-webkit-transform: translate(-50%, -50%) !important;
-moz-transform: translate(-50%, -50%) !important;
-ms-transform: translate(-50%, -50%) !important;
-o-transform: translate(-50%, -50%) !important;
position: fixed!important;
margin: 0!important;
}
div.datedropper.picker-modal:before {
display: none;
}
div.datedropper .picker {
overflow: hidden;
}
div.datedropper .picker ul {
margin: 0;
padding: 0;
list-style: none;
cursor: pointer;
}
div.datedropper .picker ul.pick {
position: relative;
overflow: hidden;
max-height: 100px;
}
div.datedropper .picker ul.pick:nth-of-type(2) {
box-shadow: 0 1px rgba(0, 0, 0, 0.06);
}
div.datedropper .picker ul.pick li {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
text-align: center;
opacity: .5;
display: block;
}
div.datedropper .picker ul.pick li.pick-afr {
-webkit-transform: translateY(100%);
-moz-transform: translateY(100%);
-ms-transform: translateY(100%);
-o-transform: translateY(100%);
}
div.datedropper .picker ul.pick li.pick-bfr {
-webkit-transform: translateY(-100%);
-moz-transform: translateY(-100%);
-ms-transform: translateY(-100%);
-o-transform: translateY(-100%);
}
div.datedropper .picker ul.pick li.pick-sl {
opacity: 1;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
z-index: 1;
}
div.datedropper .picker ul.pick li span {
font-size: 16px;
position: absolute;
left: 0;
width: 100%;
line-height: 0;
bottom: 24px;
}
div.datedropper .picker ul.pick .pick-arw {
position: absolute;
top: 0;
height: 100%;
width: 25%;
font-size: 10px;
text-align: center;
display: block;
z-index: 10;
cursor: pointer;
background-size: 24px 24px;
background-position: center;
background-repeat: no-repeat;
overflow: hidden;
opacity: 0;
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
}
div.datedropper .picker ul.pick .pick-arw i {
line-height: 0;
top: 50%;
position: relative;
display: block;
-webkit-transform: translateY(-50%);
-moz-transform: translateY(-50%);
-ms-transform: translateY(-50%);
-o-transform: translateY(-50%);
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-s1:hover {
opacity: 1;
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-r {
right: 0;
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-r i {
right: 0;
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-l {
left: 0;
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-l i {
left: 0;
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-s2.pick-arw-r {
-webkit-transform: translateX(100%);
-moz-transform: translateX(100%);
-ms-transform: translateX(100%);
-o-transform: translateX(100%);
}
div.datedropper .picker ul.pick .pick-arw.pick-arw-s2.pick-arw-l {
-webkit-transform: translateX(-100%);
-moz-transform: translateX(-100%);
-ms-transform: translateX(-100%);
-o-transform: translateX(-100%);
}
@media only screen and (max-width: 480px) {
div.datedropper .picker ul.pick .pick-arw {
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
opacity: 0.4;
}
}
div.datedropper .picker ul.pick.pick-m,
div.datedropper .picker ul.pick.pick-y,
div.datedropper .picker ul.pick.pick-l {
height: 60px;
line-height: 60px;
}
div.datedropper .picker ul.pick.pick-m {
font-size: 32px;
}
div.datedropper .picker ul.pick.pick-y {
font-size: 24px;
}
div.datedropper .picker ul.pick.pick-y.pick-jump .pick-arw.pick-arw-s1.pick-arw-r i {
right: 16px;
}
div.datedropper .picker ul.pick.pick-y.pick-jump .pick-arw.pick-arw-s1.pick-arw-l i {
left: 16px;
}
div.datedropper .picker ul.pick.pick-y.pick-jump .pick-arw.pick-arw-s2.pick-arw-r,
div.datedropper .picker ul.pick.pick-y.pick-jump .pick-arw.pick-arw-s2.pick-arw-l {
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-ms-transform: translateX(0);
-o-transform: translateX(0);
}
div.datedropper .picker ul.pick.pick-y.pick-jump .pick-arw:hover {
-webkit-transform: scale(1.6);
-moz-transform: scale(1.6);
-ms-transform: scale(1.6);
-o-transform: scale(1.6);
}
div.datedropper .picker ul.pick.pick-d {
height: 100px;
line-height: 80px;
font-size: 64px;
font-weight: bold;
}
div.datedropper .picker ul.pick.pick-l {
position: absolute;
bottom: 0;
left: 0;
right: 0;
z-index: 10;
font-size: 18px;
font-weight: bold;
opacity: 0;
visibility: hidden;
-webkit-transform: translateY(32px);
-moz-transform: translateY(32px);
-ms-transform: translateY(32px);
-o-transform: translateY(32px);
-webkit-transition: all 0.4s ease;
-moz-transition: all 0.4s ease;
-ms-transition: all 0.4s ease;
-o-transition: all 0.4s ease;
}
div.datedropper .picker ul.pick.pick-l.visible {
opacity: 1;
visibility: visible;
-webkit-transform: translateY(0);
-moz-transform: translateY(0);
-ms-transform: translateY(0);
-o-transform: translateY(0);
}
div.datedropper .picker ul.pick:hover .pick-arw {
opacity: 0.6;
-webkit-transform: scale(1);
-moz-transform: scale(1);
-ms-transform: scale(1);
-o-transform: scale(1);
}
div.datedropper .picker ul.pick.pick-d:hover,
div.datedropper .picker ul.pick.pick-y:hover {
background-color: rgba(0, 0, 0, 0.02);
}
div.datedropper .picker .pick-lg {
z-index: 1;
margin: 0 auto;
max-height: 0;
overflow: hidden;
}
div.datedropper .picker .pick-lg.down {
animation: down .8s ease;
}
div.datedropper .picker .pick-lg .pick-h {
opacity: 0.4;
}
div.datedropper .picker .pick-lg ul:after {
content: "";
display: table;
clear: both;
}
div.datedropper .picker .pick-lg ul li {
float: left;
text-align: center;
width: 14.285714286%;
line-height: 36px;
height: 36px;
font-size: 14px;
}
div.datedropper .picker .pick-lg ul.pick-lg-h {
padding: 0 16px;
}
div.datedropper .picker .pick-lg ul.pick-lg-b {
padding: 16px;
}
div.datedropper .picker .pick-lg ul.pick-lg-b li {
cursor: pointer;
position: relative;
z-index: 1;
}
div.datedropper .picker .pick-lg ul.pick-lg-b li:before {
content: "";
position: absolute;
z-index: -1;
width: 48px;
height: 48px;
box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
border-radius: 32px;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%) scale(0);
-moz-transform: translate(-50%, -50%) scale(0);
-ms-transform: translate(-50%, -50%) scale(0);
-o-transform: translate(-50%, -50%) scale(0);
}
div.datedropper .picker .pick-lg ul.pick-lg-b li.pick-v:hover {
text-decoration: underline;
}
div.datedropper .picker .pick-lg ul.pick-lg-b li.pick-lk:after {
content: "";
position: absolute;
top: 50%;
left: 4px;
right: 4px;
height: 1px;
background: rgba(0, 0, 0, 0.2);
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
-ms-transform: rotate(45deg);
-o-transform: rotate(45deg);
}
div.datedropper .picker .pick-lg ul.pick-lg-b li.pick-sl {
font-size: 24px;
}
div.datedropper .picker .pick-lg ul.pick-lg-b li.pick-sl:before {
-webkit-transform: translate(-50%, -50%) scale(1);
-moz-transform: translate(-50%, -50%) scale(1);
-ms-transform: translate(-50%, -50%) scale(1);
-o-transform: translate(-50%, -50%) scale(1);
}
div.datedropper .picker .pick-btns {
margin: -1px;
position: relative;
z-index: 2;
height: 56px;
}
div.datedropper .picker .pick-btns div {
cursor: pointer;
line-height: 0;
}
div.datedropper .picker .pick-btns .pick-submit {
margin: 0 auto;
width: 56px;
height: 56px;
line-height: 64px;
border-radius: 56px;
font-size: 24px;
cursor: pointer;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
text-align: center;
position: relative;
top: 0;
}
div.datedropper .picker .pick-btns .pick-submit:after {
font-family: "datedropper" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
line-height: 60px;
content: "\65";
}
div.datedropper .picker .pick-btns .pick-submit:hover {
top: 4px;
box-shadow: 0 0 0 16px rgba(0, 0, 0, 0.04), 0 0 0 8px rgba(0, 0, 0, 0.04);
}
div.datedropper .picker .pick-btns .pick-btn {
position: absolute;
width: 32px;
height: 32px;
bottom: 0;
text-align: center;
line-height: 38px;
font-size: 16px;
margin: 8px;
border-radius: 4px;
background: rgba(0, 0, 0, 0.03);
}
div.datedropper .picker .pick-btns .pick-btn:hover {
background: #FFF;
-webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
-webkit-transform: scale(1.2);
-moz-transform: scale(1.2);
-ms-transform: scale(1.2);
-o-transform: scale(1.2);
}
div.datedropper .picker .pick-btns .pick-btn:after {
font-family: "datedropper" !important;
font-style: normal !important;
font-weight: normal !important;
font-variant: normal !important;
text-transform: none !important;
speak: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
div.datedropper .picker .pick-btns .pick-btn.pick-btn-sz {
right: 0;
transform-origin: right bottom;
}
div.datedropper .picker .pick-btns .pick-btn.pick-btn-sz:after {
content: "\63";
}
div.datedropper .picker .pick-btns .pick-btn.pick-btn-lng {
left: 0;
transform-origin: left bottom;
}
div.datedropper .picker .pick-btns .pick-btn.pick-btn-lng:after {
content: "\6a";
}
div.datedropper.picker-lg {
width: 300px!important;
}
div.datedropper.picker-lg ul.pick.pick-d {
-webkit-transform: scale(0);
-moz-transform: scale(0);
-ms-transform: scale(0);
-o-transform: scale(0);
max-height: 0!important;
}
div.datedropper.picker-lg .pick-lg {
max-height: 320px;
}
div.datedropper.picker-lg .pick-btns .pick-btn.pick-btn-sz:after {
content: "\61";
}
@media only screen and (max-width: 480px) {
div.datedropper.picker-lg {
position: fixed;
top: 50%!important;
left: 50%!important;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
margin: 0;
}
div.datedropper.picker-lg:before {
display: none;
}
}
@-moz-keyframes picker_locked {
0%,
100% {
-webkit-transform: translateX(-50%) translate3d(0, 0, 0);
-moz-transform: translateX(-50%) translate3d(0, 0, 0);
-ms-transform: translateX(-50%) translate3d(0, 0, 0);
-o-transform: translateX(-50%) translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translateX(-50%) translate3d(-2px, 0, 0);
-moz-transform: translateX(-50%) translate3d(-2px, 0, 0);
-ms-transform: translateX(-50%) translate3d(-2px, 0, 0);
-o-transform: translateX(-50%) translate3d(-2px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translateX(-50%) translate3d(2px, 0, 0);
-moz-transform: translateX(-50%) translate3d(2px, 0, 0);
-ms-transform: translateX(-50%) translate3d(2px, 0, 0);
-o-transform: translateX(-50%) translate3d(2px, 0, 0);
}
}
@-webkit-keyframes picker_locked {
0%,
100% {
-webkit-transform: translateX(-50%) translate3d(0, 0, 0);
-moz-transform: translateX(-50%) translate3d(0, 0, 0);
-ms-transform: translateX(-50%) translate3d(0, 0, 0);
-o-transform: translateX(-50%) translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translateX(-50%) translate3d(-2px, 0, 0);
-moz-transform: translateX(-50%) translate3d(-2px, 0, 0);
-ms-transform: translateX(-50%) translate3d(-2px, 0, 0);
-o-transform: translateX(-50%) translate3d(-2px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translateX(-50%) translate3d(2px, 0, 0);
-moz-transform: translateX(-50%) translate3d(2px, 0, 0);
-ms-transform: translateX(-50%) translate3d(2px, 0, 0);
-o-transform: translateX(-50%) translate3d(2px, 0, 0);
}
}
@keyframes picker_locked {
0%,
100% {
-webkit-transform: translateX(-50%) translate3d(0, 0, 0);
-moz-transform: translateX(-50%) translate3d(0, 0, 0);
-ms-transform: translateX(-50%) translate3d(0, 0, 0);
-o-transform: translateX(-50%) translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translateX(-50%) translate3d(-2px, 0, 0);
-moz-transform: translateX(-50%) translate3d(-2px, 0, 0);
-ms-transform: translateX(-50%) translate3d(-2px, 0, 0);
-o-transform: translateX(-50%) translate3d(-2px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translateX(-50%) translate3d(2px, 0, 0);
-moz-transform: translateX(-50%) translate3d(2px, 0, 0);
-ms-transform: translateX(-50%) translate3d(2px, 0, 0);
-o-transform: translateX(-50%) translate3d(2px, 0, 0);
}
}
@-moz-keyframes picker_locked_large_mobile {
0%,
100% {
-webkit-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
}
}
@-webkit-keyframes picker_locked_large_mobile {
0%,
100% {
-webkit-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
}
}
@keyframes picker_locked_large_mobile {
0%,
100% {
-webkit-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(0, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(0, 0, 0);
}
10%,
30%,
50%,
70%,
90% {
-webkit-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(-2px, 0, 0);
}
20%,
40%,
60%,
80% {
-webkit-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-moz-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-ms-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
-o-transform: translate(-50%, -50%) translate3d(2px, 0, 0);
}
}
div.datedropper.picker-rmbl {
-webkit-animation: picker_locked 0.4s ease;
-moz-animation: picker_locked 0.4s ease;
animation: picker_locked 0.4s ease;
}
@media only screen and (max-width: 480px) {
div.datedropper.picker-rmbl.picker-lg {
-webkit-animation: picker_locked_large_mobile 0.4s ease;
-moz-animation: picker_locked_large_mobile 0.4s ease;
animation: picker_locked_large_mobile 0.4s ease;
}
}
div.datedropper.picker-lkd .pick-submit {
background-color: rgba(0, 0, 0, 0.04) !important;
color: rgba(0, 0, 0, 0.2) !important;
}
div.datedropper.picker-lkd .pick-submit:hover {
-webkit-box-shadow: none !important;
-moz-box-shadow: none !important;
box-shadow: none !important;
}
div.datedropper.picker-lkd .pick-submit:after {
content: "\62" !important;
}
div.datedropper.picker-fxs {
-webkit-transition: width 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
-moz-transition: width 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
-ms-transition: width 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
-o-transition: width 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
}
div.datedropper.picker-fxs ul.pick.pick-d {
-webkit-transition: top 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), transform 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), background-color 0.4s ease;
-moz-transition: top 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), transform 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), background-color 0.4s ease;
-ms-transition: top 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), transform 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), background-color 0.4s ease;
-o-transition: top 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), transform 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37), background-color 0.4s ease;
}
div.datedropper.picker-fxs ul.pick.pick-y {
-webkit-transition: background-color 0.4s ease;
-moz-transition: background-color 0.4s ease;
-ms-transition: background-color 0.4s ease;
-o-transition: background-color 0.4s ease;
}
div.datedropper.picker-fxs ul.pick li {
-webkit-transition: transform 0.4s ease, opacity 0.4s ease;
-moz-transition: transform 0.4s ease, opacity 0.4s ease;
-ms-transition: transform 0.4s ease, opacity 0.4s ease;
-o-transition: transform 0.4s ease, opacity 0.4s ease;
}
div.datedropper.picker-fxs ul.pick .pick-arw {
-webkit-transition: transform 0.2s ease, opacity 0.2s ease;
-moz-transition: transform 0.2s ease, opacity 0.2s ease;
-ms-transition: transform 0.2s ease, opacity 0.2s ease;
-o-transition: transform 0.2s ease, opacity 0.2s ease;
}
div.datedropper.picker-fxs ul.pick .pick-arw i {
-webkit-transition: right 0.2s ease, left 0.2s ease;
-moz-transition: right 0.2s ease, left 0.2s ease;
-ms-transition: right 0.2s ease, left 0.2s ease;
-o-transition: right 0.2s ease, left 0.2s ease;
}
div.datedropper.picker-fxs .pick-lg {
-webkit-transition: max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37);
-moz-transition: max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37);
-ms-transition: max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37);
-o-transition: max-height 0.8s cubic-bezier(1, -0.55, 0.2, 1.37);
}
div.datedropper.picker-fxs .pick-lg .pick-lg-b li:before {
-webkit-transition: transform 0.2s ease;
-moz-transition: transform 0.2s ease;
-ms-transition: transform 0.2s ease;
-o-transition: transform 0.2s ease;
}
div.datedropper.picker-fxs .pick-btns .pick-submit {
-webkit-transition: top 0.2s ease, box-shadow 0.4s ease, background-color 0.4s ease;
-moz-transition: top 0.2s ease, box-shadow 0.4s ease, background-color 0.4s ease;
-ms-transition: top 0.2s ease, box-shadow 0.4s ease, background-color 0.4s ease;
-o-transition: top 0.2s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}
div.datedropper.picker-fxs .pick-btns .pick-btn {
-webkit-transition: all 0.2s ease;
-moz-transition: all 0.2s ease;
-ms-transition: all 0.2s ease;
-o-transition: all 0.2s ease;
}
@media only screen and (max-width: 480px) {
div.datedropper.picker-fxs {
-webkit-transition: opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
-moz-transition: opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
-ms-transition: opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
-o-transition: opacity 0.2s ease, visibility 0.2s ease, margin 0.2s ease;
}
div.datedropper.picker-fxs ul.pick.pick-d,
div.datedropper.picker-fxs .pick-lg {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
}
}
div.datedropper.vanilla {
border-radius: 6px;
width: 180px;
}
div.datedropper.vanilla .picker {
border-radius: 6px;
box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.1);
}
div.datedropper.vanilla .pick-l {
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
div.datedropper.vanilla:before,
div.datedropper.vanilla .pick-submit,
div.datedropper.vanilla .pick-lg-b .pick-sl:before,
div.datedropper.vanilla .pick-m,
div.datedropper.vanilla .pick-lg-h {
background-color: #feac92;
}
div.datedropper.vanilla .pick-y.pick-jump,
div.datedropper.vanilla .pick li span,
div.datedropper.vanilla .pick-lg-b .pick-wke,
div.datedropper.vanilla .pick-btn {
color: #feac92;
}
div.datedropper.vanilla .picker,
div.datedropper.vanilla .pick-l {
background-color: #ffffff;
}
div.datedropper.vanilla .picker,
div.datedropper.vanilla .pick-arw,
div.datedropper.vanilla .pick-l {
color: #9ed7db;
}
div.datedropper.vanilla .pick-m,
div.datedropper.vanilla .pick-m .pick-arw,
div.datedropper.vanilla .pick-lg-h,
div.datedropper.vanilla .pick-lg-b .pick-sl,
div.datedropper.vanilla .pick-submit {
color: #faf7f4;
}
div.datedropper.vanilla.picker-tiny:before,
div.datedropper.vanilla.picker-tiny .pick-m {
background-color: #ffffff;
}
div.datedropper.vanilla.picker-tiny .pick-m,
div.datedropper.vanilla.picker-tiny .pick-m .pick-arw {
color: #9ed7db;
}
div.datedropper.leaf {
border-radius: 6px;
width: 180px;
}
div.datedropper.leaf .picker {
border-radius: 6px;
box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.1);
}
div.datedropper.leaf .pick-l {
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
div.datedropper.leaf:before,
div.datedropper.leaf .pick-submit,
div.datedropper.leaf .pick-lg-b .pick-sl:before,
div.datedropper.leaf .pick-m,
div.datedropper.leaf .pick-lg-h {
background-color: #1ecd80;
}
div.datedropper.leaf .pick-y.pick-jump,
div.datedropper.leaf .pick li span,
div.datedropper.leaf .pick-lg-b .pick-wke,
div.datedropper.leaf .pick-btn {
color: #1ecd80;
}
div.datedropper.leaf .picker,
div.datedropper.leaf .pick-l {
background-color: #fefff2;
}
div.datedropper.leaf .picker,
div.datedropper.leaf .pick-arw,
div.datedropper.leaf .pick-l {
color: #528971;
}
div.datedropper.leaf .pick-m,
div.datedropper.leaf .pick-m .pick-arw,
div.datedropper.leaf .pick-lg-h,
div.datedropper.leaf .pick-lg-b .pick-sl,
div.datedropper.leaf .pick-submit {
color: #fefff2;
}
div.datedropper.leaf.picker-tiny:before,
div.datedropper.leaf.picker-tiny .pick-m {
background-color: #fefff2;
}
div.datedropper.leaf.picker-tiny .pick-m,
div.datedropper.leaf.picker-tiny .pick-m .pick-arw {
color: #528971;
}
div.datedropper.primary {
border-radius: 6px;
width: 180px;
}
div.datedropper.primary .picker {
border-radius: 6px;
box-shadow: 0 0 32px 0 rgba(0, 0, 0, 0.1);
}
div.datedropper.primary .pick-l {
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
}
div.datedropper.primary:before,
div.datedropper.primary .pick-submit,
div.datedropper.primary .pick-lg-b .pick-sl:before,
div.datedropper.primary .pick-m,
div.datedropper.primary .pick-lg-h {
background-color: #fd4741;
}
div.datedropper.primary .pick-y.pick-jump,
div.datedropper.primary .pick li span,
div.datedropper.primary .pick-lg-b .pick-wke,
div.datedropper.primary .pick-btn {
color: #fd4741;
}
div.datedropper.primary .picker,
div.datedropper.primary .pick-l {
background-color: #ffffff;
}
div.datedropper.primary .picker,
div.datedropper.primary .pick-arw,
div.datedropper.primary .pick-l {
color: #4d4d4d;
}
div.datedropper.primary .pick-m,
div.datedropper.primary .pick-m .pick-arw,
div.datedropper.primary .pick-lg-h,
div.datedropper.primary .pick-lg-b .pick-sl,
div.datedropper.primary .pick-submit {
color: #ffffff;
}
div.datedropper.primary.picker-tiny:before,
div.datedropper.primary.picker-tiny .pick-m {
background-color: #ffffff;
}
div.datedropper.primary.picker-tiny .pick-m,
div.datedropper.primary.picker-tiny .pick-m .pick-arw {
color: #4d4d4d;
}
div.datedropper .null {
-webkit-transition: none;
-moz-transition: none;
-ms-transition: none;
-o-transition: none;
}
/*-------- 1.4 Time dropper --------*/
.td-wrap,
.td-wrap * {
margin: 0;
padding: 0;
list-style: none;
-webkit-box-sizing: initial !important;
-moz-box-sizing: initial !important;
box-sizing: initial !important;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.td-wrap svg {
width: 100%;
}
.td-input {
cursor: pointer;
}
.td-wrap {
display: none;
font-family: sans-serif;
position: absolute;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
outline: none;
width: 100%;
height: 100%;
top: 0;
left: 0;
z-index: 9999;
color: #4d4d4d;
}
.td-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.td-clock {
width: 156px;
height: 156px;
border-radius: 156px;
box-shadow: 0 0 0 1px #1977CC, 0 0 0 8px rgba(0, 0, 0, 0.05);
position: relative;
background: #FFF;
margin: 0 auto;
text-align: center;
line-height: 156px;
position: absolute;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.td-clock:before {
position: absolute;
content: "";
top: -10px;
margin-left: -10px;
left: 50%;
width: 20px;
height: 20px;
transform: rotate(45deg);
background: #FFF;
border-left: 1px solid #1977CC;
border-top: 1px solid #1977CC;
border-top-left-radius: 4px;
}
.td-init .td-deg {
-webkit-animation: slide 1s cubic-bezier(.7, 0, .175, 1) 1.2s infinite;
}
.td-svg {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.td-svg-2 {
position: absolute;
top: 18px;
left: 18px;
bottom: 18px;
right: 18px;
}
.td-wrap.td-show {
display: block;
}
.td-deg {
background-position: center;
background-repeat: no-repeat;
background-size: 80%;
position: absolute;
z-index: 1;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.td-medirian {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.td-medirian span {
width: 40px;
height: 40px;
border-radius: 40px;
line-height: 40px;
text-align: center;
margin: 0;
position: absolute;
z-index: 2;
left: 50%;
margin-left: -20px;
font-size: .8em;
opacity: 0;
font-weight: bold;
}
.td-medirian .td-icon-am {
top: 40px;
}
.td-medirian .td-icon-pm {
bottom: 40px;
}
.td-medirian .td-icon-am.td-on {
top: 26px;
opacity: 1;
}
.td-medirian .td-icon-pm.td-on {
bottom: 26px;
opacity: 1;
}
.td-select {
position: absolute;
top: 4px;
left: 32px;
right: 32px;
bottom: 22px;
}
.td-select svg {
position: absolute;
top: 0;
left: 0;
right: 0;
}
.td-select:after {
position: absolute;
background: #FFF;
width: 36px;
height: 36px;
box-shadow: 0 0 0 1px #1977CC;
border-radius: 60px;
top: -16px;
left: 50%;
margin-left: -18px;
border-bottom-left-radius: 0;
content: "";
transform: rotate(-45deg);
cursor: pointer;
}
.td-clock .td-time {
font-weight: bold;
position: relative;
}
.td-clock .td-time span {
width: 42px;
height: 42px;
display: inline-block;
vertical-align: middle;
line-height: 42px;
text-align: center;
margin: 6px;
position: relative;
z-index: 2;
cursor: pointer;
font-size: 2em;
border-radius: 6px;
}
.td-clock .td-time span.on {
color: #1977CC;
}
.td-n {
-webkit-transition: all 0.4s cubic-bezier(.7, 0, .175, 1) 0s;
-moz-transition: all 0.4s cubic-bezier(.7, 0, .175, 1) 0s;
-ms-transition: all 0.4s cubic-bezier(.7, 0, .175, 1) 0s;
transition: all 0.4s cubic-bezier(.7, 0, .175, 1) 0s;
}
.td-n2 {
-webkit-transition: all 0.2s linear 0s;
-moz-transition: all 0.2s linear 0s;
-ms-transition: all 0.2s linear 0s;
transition: all 0.2s linear 0s;
}
/*
@-webkit-keyframes td-rubber {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
30% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
40% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
50% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
65% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
75% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.td-rubber {
-webkit-animation-name: td-rubber;
animation-name: td-rubber;
-webkit-animation-duration: .8s;
animation-duration: .8s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
*/
@-webkit-keyframes td-alert {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes td-alert {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
10%,
20% {
-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
}
30%,
50%,
70%,
90% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
}
40%,
60%,
80% {
-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.td-alert {
-webkit-animation-name: td-alert;
animation-name: td-alert;
-webkit-animation-duration: .8s;
animation-duration: .8s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
/* effects */
@-webkit-keyframes td-bounce {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
20% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
30% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
60% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
70% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
80% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
@keyframes td-bounce {
0% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
20% {
-webkit-transform: scale3d(1.25, 0.75, 1);
transform: scale3d(1.25, 0.75, 1);
}
30% {
-webkit-transform: scale3d(0.75, 1.25, 1);
transform: scale3d(0.75, 1.25, 1);
}
60% {
-webkit-transform: scale3d(1.15, 0.85, 1);
transform: scale3d(1.15, 0.85, 1);
}
70% {
-webkit-transform: scale3d(.95, 1.05, 1);
transform: scale3d(.95, 1.05, 1);
}
80% {
-webkit-transform: scale3d(1.05, .95, 1);
transform: scale3d(1.05, .95, 1);
}
100% {
-webkit-transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
}
}
.td-bounce {
-webkit-animation-name: td-bounce;
animation-name: td-bounce;
-webkit-animation-duration: 1s;
animation-duration: 1s;
}
@-webkit-keyframes td-fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes td-fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.td-fadein {
-webkit-animation-name: td-fadein;
animation-name: td-fadein;
-webkit-animation-duration: .3s;
animation-duration: .3s;
}
@-webkit-keyframes td-fadeout {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes td-fadeout {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
.td-fadeout {
-webkit-animation: td-fadeout .3s forwards;
animation: td-fadeout .3s forwards;
}
@-webkit-keyframes td-dropdown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100px, 0);
transform: translate3d(0, -100px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
@keyframes td-dropdown {
0% {
opacity: 0;
-webkit-transform: translate3d(0, -100px, 0);
transform: translate3d(0, -100px, 0);
}
100% {
opacity: 1;
-webkit-transform: none;
transform: none;
}
}
.td-dropdown {
-webkit-animation-name: td-dropdown;
animation-name: td-dropdown;
-webkit-animation-duration: .5s;
animation-duration: .5s;
}
.td-bulletpoint,
.td-bulletpoint div,
.td-lancette,
.td-lancette div {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.td-bulletpoint div:after {
position: absolute;
content: "";
top: 14px;
left: 50%;
margin-left: -2px;
width: 4px;
height: 4px;
border-radius: 10px;
}
.td-lancette {
border: 2px solid #DFF3FA;
border-radius: 100%;
margin: 6px;
}
.td-lancette div:after {
position: absolute;
top: 20px;
left: 50%;
margin-left: -1px;
width: 2px;
bottom: 50%;
border-radius: 10px;
background: #DFF3FA;
content: "";
}
.td-lancette div:last-child:after {
top: 36px;
} | 0.639173 | 0.152663 |
@charset "utf-8";
.z-comms {
background-image: url(../../MyCart/images/cart-comm.gif?v=141217);
background-repeat: no-repeat;
}
.z-arrows {
background-image: url(../../MyCart/images/cart-arrow.gif?v=141217);
background-repeat: no-repeat;
}
.g-special-head {
height: 74px;
padding: 15px 0;
}
.g-special-head a.f-logo {
display: block;
background: url(http://skin.1yyg.com/images/logo-2014.png?v=141202) no-repeat;
width: 122px;
height: 74px;
cursor: pointer;
}
.g-special-head a.f-carryOn {
color: #999;
font-size: 14px;
margin-top: 52px;
}
.g-special-head a.f-carryOn:hover {
color: #f60;
text-decoration: underline;
}
.g-main-con {
margin-bottom: 50px;
border-top: 1px solid #999;
background: #fff;
}
.g-results-bor {
border: 1px solid #ddd;
margin-bottom: 80px;
}
.m-cart-title {
font-size: 18px;
padding: 15px 0;
line-height: 18px;
}
.m-cart-list {
position: relative;
}
.m-cart-list .f-cart-comm {
width: 550px;
text-align: left;
}
.m-cart-list .f-cart-price {
width: 110px;
margin-left: 75px;
}
.m-cart-list .f-cart-plusLess {
width: 185px;
margin-left: 30px;
text-align: center;
}
.m-cart-list .f-cart-subtotal {
width: 120px;
margin-left: 60px;
}
.m-cart-list .f-cart-operate {
width: 40px;
text-align: center;
position: absolute;
right: 7px;
}
.m-cart-list dl {
position: relative;
text-align: left;
}
.m-cart-list dt {
height: 26px;
line-height: 26px;
font-size: 12px;
background: #f2f2f2;
}
.m-cart-list dt span {
float: left;
display: block;
overflow: hidden;
}
.m-cart-list dt span.f-cart-comm {
width: 500px;
padding-left: 60px;
}
.m-cart-list dd {
clear: both;
width: 1170px;
height: 70px;
padding: 20px 10px;
border-bottom: 1px solid #ddd;
overflow: hidden;
font-size: 14px;
}
.m-cart-list dd li {
float: left;
height: 70px;
line-height: 18px;
}
.m-cart-list dd li a {
color: #333;
}
.m-cart-list dd li a:hover {
color: #f60;
}
.m-cart-list dd li.f-cart-comm {
height: 70px;
}
.m-cart-list dd li.f-cart-comm cite {
float: left;
}
.m-cart-list dd li.f-cart-comm cite a.z-check {
margin-top: 27px;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-pic {
margin-left: 10px;
width: 70px;
height: 70px;
position: relative;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-pic img {
display: block;
width: 70px;
height: 70px;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-pic i.limitbuy-icon {
display: block;
width: 26px;
height: 15px;
background-position: 0 -33px;
position: absolute;
left: 0;
top: 0;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-name {
font-size: 12px;
margin-left: 10px;
padding-top: 25px;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-name dfn {
display: block;
margin-top: -17px;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-name dfn s {
width: 16px;
height: 16px;
margin-right: 5px;
background-position: -126px -274px;
display: inline-block;
vertical-align: middle;
position: relative;
top: -1px;
*top: 1px;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-name span {
display: block;
width: 440px;
height: 20px;
line-height: 20px;
word-break: break-all;
overflow: hidden;
margin-bottom: 2px;
font-size: 14px;
}
.m-cart-list dd li.f-cart-price {
color: #333;
}
.m-cart-list dd li.f-cart-price,.m-cart-list dd li.f-cart-value,.m-cart-list dd li.f-cart-subtotal {
height: 70px;
line-height: 70px;
overflow: hidden;
}
.m-cart-list dd li.f-cart-plusLess {
padding-top: 20px;
height: 50px;
position: relative;
}
.m-cart-list dd li.f-cart-plusLess span {
display: block;
width: 126px;
height: 29px;
margin: 0 auto;
}
.m-cart-list dd li.f-cart-plusLess a,.m-cart-list dd li.f-cart-plusLess input {
float: left;
}
.m-cart-list dd li.f-cart-plusLess a {
display: block;
width: 29px;
height: 29px;
}
.m-cart-list dd li.f-cart-plusLess a.z-plus {
background-position: 0 0;
}
.m-cart-list dd li.f-cart-plusLess a.z-plus2 {
background-position: 0 -30px;
}
.m-cart-list dd li.f-cart-plusLess a.z-less {
background-position: 0 -60px;
}
.m-cart-list dd li.f-cart-plusLess a.z-less2 {
background-position: 0 -90px;
}
.m-cart-list dd li.f-cart-plusLess input {
width: 68px;
height: 27px;
line-height: 27px;
_line-height: 26px;
border: 0 none;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
text-align: center;
}
.m-cart-list dd li.f-cart-plusLess p {
clear: both;
height: 32px;
padding-top: 4px;
_height: 31px;
_padding-top: 5px;
display: block;
font-size: 12px;
color: #f60;
line-height: 14px;
}
.m-cart-list dd li.f-cart-plusLess p.gray9 {
color: #999;
}
.m-cart-list dd li.f-cart-operate {
padding-top: 30px;
height: 40px;
}
.m-cart-list dd li.f-cart-operate a.z-comms {
display: block;
width: 10px;
height: 9px;
margin: 0 auto;
background-position: 0 -12px;
overflow: hidden;
}
.m-cart-list dd li.f-cart-operate a.z-comms:hover {
background-position: 0 -39px;
}
.m-cart-list dd.m-cart-fail {
background: #f8f8f8;
}
.m-cart-list dd.m-cart-fail li,.m-cart-list dd.m-cart-fail li a {
color: #bbb;
}
.m-cart-list dd.m-cart-fail img,.m-cart-list dd.m-cart-fail i.limitbuy-icon {
display: block;
width: 70px;
height: 70px;
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
filter: gray;
-webkit-filter: grayscale(100%);
}
.m-cart-list dd li a:hover {
text-decoration: underline;
}
.m-cart-list dd.m-cart-fail li.f-cart-plusLess {
height: 70px;
line-height: 70px;
padding-top: 0;
color: #333;
}
.m-cart-list dd.m-cart-fail li.f-cart-operate a.z-comms {
background-position: 0 -26px;
}
.m-cart-list dd.m-cart-fail li.f-cart-operate a.z-comms:hover {
background-position: 0 -39px;
}
.m-cart-list .f-box-prompt {
width: 176px;
height: 69px;
padding: 15px 0;
right: 0;
top: 102px;
z-index: 20;
border: 1px solid #ddd;
position: absolute;
-moz-box-shadow: 3px 3px 3px #d8d8d8;
-webkit-box-shadow: 3px 3px 3px #d8d8d8;
box-shadow: 3px 3px 3px #d8d8d8;
}
.m-cart-list .f-box-prompt p {
font-size: 16px;
color: #333;
padding-bottom: 20px;
}
.m-cart-list .f-box-prompt a {
display: inline-block;
text-align: center;
border-radius: 2px;
overflow: hidden;
font-size: 14px;
margin: 0 2px;
}
.m-cart-list .f-box-prompt a.u-btn-determine {
width: 56px;
height: 24px;
line-height: 24px;
background: #f60;
color: #fff;
}
.m-cart-list .f-box-prompt a.u-btn-cancel {
width: 54px;
height: 22px;
line-height: 22px;
border: 1px solid #ddd;
color: #666;
}
.m-cart-list .f-box-prompt b {
border-style: solid;
border-width: 0 6px 6px;
border-color: #fff;
border-bottom: 6px solid rgb(187,187,187);
width: 0;
height: 0;
font-size: 0;
line-height: 0;
position: absolute;
right: 20px;
top: -7px;
}
.m-cart-list .f-box-prompt b s {
border-style: solid;
_border-style: dashed;
border-width: 6px;
border-color: transparent;
border-top-width: 0;
border-bottom: 6px solid #fff;
width: 0;
height: 0;
font-size: 0;
line-height: 0;
position: absolute;
top: 1px;
left: -6px;
}
.m-cart-list dl .f-box-gray b {
border-color: #f8f8f8;
border-bottom: 6px solid rgb(187,187,187);
}
.m-cart-list .m-list-tips {
clear: both;
height: 29px;
line-height: 29px;
background: #ffffe8;
border: 1px solid #fc0;
color: #f60;
border-bottom: 1px solid #ddd;
padding: 0 10px 0 10px;
position: relative;
z-index: 1;
top: -1px;
}
.m-cart-list .m-list-tips span a.z-check {
margin: 7px 3px 0 0;
_margin-top: 6px;
}
.m-cart-list .m-list-operating {
clear: both;
height: 150px;
display: block;
font-size: 14px;
color: #333;
padding-top: 10px;
position: relative;
}
.m-cart-list .m-list-operating p,.m-cart-list .m-list-operating cite {
display: block;
line-height: 30px;
}
.m-cart-list .m-list-operating p {
padding-top: 5px;
padding-left: 10px;
}
.m-cart-list .m-list-operating p span {
float: left;
}
.m-cart-list .m-list-operating p span a.z-check {
margin-right: 10px;
position: relative;
top: 8px;
}
.m-cart-list .m-list-operating p span a {
color: #333;
margin-right: 20px;
}
.m-cart-list .m-list-operating p span a:hover {
color: #f60;
text-decoration: underline;
}
.m-cart-list .m-list-operating cite {
display: block;
}
.m-cart-list .m-list-operating cite i {
font-size: 26px;
position: relative;
top: 2px;
}
.m-cart-list .f-list-accounts {
clear: both;
float: right;
height: 45px;
line-height: 45px;
padding-top: 15px;
}
.m-cart-list .f-list-accounts a {
float: left;
display: block;
color: #666;
text-align: center;
border-radius: 2px;
}
.m-cart-list .f-list-accounts a.f-list-return {
border: 1px solid #ddd;
color: #666;
width: 150px;
height: 44px;
line-height: 44px;
font-size: 14px;
}
.m-cart-list .f-list-accounts a.f-list-jiesuan {
width: 200px;
height: 45px;
line-height: 45px;
color: #fff;
background: #f60;
font-size: 22px;
letter-spacing: 1px;
margin-left: 15px;
font-size: 16px;
}
.m-cart-list .f-list-accounts a.f-list-jiesuan:hover {
color: #fff;
background: #f40;
text-decoration: none;
}
.m-rqtj-con {
clear: both;
position: relative;
margin-bottom: 50px;
}
.m-rqtj-con p {
display: block;
color: #333;
font-size: 20px;
padding-bottom: 10px;
font-weight: bold;
}
.m-recomm-con {
width: 1188px;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
border-top: 1px solid #ddd;
}
.f-recomm-list {
float: left;
width: 297px;
height: 330px;
position: relative;
z-index: 1;
}
.f-recomm-list dl {
width: 267px;
height: 289px;
padding: 25px 15px 15px;
border-left: 1px solid #ddd;
border-bottom: 1px solid #ddd;
margin-left: -1px;
margin-bottom: -1px;
overflow: hidden;
position: relative;
}
.f-recomm-hover {
position: relative;
z-index: 2;
}
.f-recomm-hover dl {
width: 266px;
position: absolute;
left: 0;
top: -1px;
border: 1px solid #f60;
overflow: hidden;
-moz-box-shadow: 3px 3px 3px #d8d8d8;
-webkit-box-shadow: 3px 3px 3px #d8d8d8;
box-shadow: 3px 3px 3px #d8d8d8;
}
.f-recomm-hover2 dl {
width: 267px;
}
.f-recomm-hover .z-mask {
width: 100%;
_width: 297px;
height: 330px;
background: #000;
opacity: 0.2;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=20);
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 0;
}
.f-recomm-hover a.u-cart-add {
display: block;
width: 49px;
height: 49px;
background-image: url(../../MyCart/images/cart-add.png?v=1411112);
position: absolute;
top: 140px;
left: 123px;
z-index: 10;
overflow: hidden;
cursor: pointer;
}
.f-recomm-hover a.u-cart-add:hover {
background-image: url(../../MyCart/images/cart-add-hover.png?v=1411112);
}
.f-recomm-list dt {
float: left;
width: 200px;
margin: 10px 33px 0;
display: inline;
}
.f-recomm-list dt a img {
display: block;
width: 200px;
height: 200px;
}
.f-recomm-list dd {
text-align: center;
font-size: 14px;
width: 266px;
}
.f-recomm-list dd.u-recomm-name {
clear: both;
height: 20px;
line-height: 20px;
overflow: hidden;
padding: 40px 0 2px;
word-break: break-all;
}
.f-recomm-list dd.u-recomm-name a {
color: #333;
}
.f-recomm-list dd.u-recomm-name a:hover {
color: #f60;
text-decoration: underline;
}
.f-recomm-list dd em {
margin: 0 3px;
}
.z-popUp {
clear: both;
background: #fff;
font-size: 16px;
text-align: center;
z-index: 10;
}
.z-popUp i {
display: inline-block;
width: 20px;
height: 20px;
position: relative;
top: 4px;
*top: 0;
margin-right: 5px;
overflow: hidden;
}
.z-add-success {
width: 168px;
color: #00a800;
position: absolute;
left: 0;
top: 18px;
}
.z-add-success i.z-arrows {
background-position: -33px 0;
}
.z-sold-out {
color: #f60;
position: absolute;
left: 15px;
top: 18px;
}
.z-sold-out i.z-arrows {
background-position: -33px -27px;
}
.z-pop-box {
padding: 30px 0;
text-align: center;
}
.z-pop-box span {
display: block;
font-size: 18px;
padding-bottom: 30px;
}
.z-pop-box p {
font-size: 18px;
}
.z-pop-box cite {
display: block;
padding: 10px 0 25px;
font-size: 14px;
}
.z-cart-nothing {
clear: both;
font-size: 16px;
text-align: center;
height: 100px;
padding: 50px 0 80px;
}
.z-cart-nothing b {
display: block;
width: 54px;
height: 53px;
background-position: 0 -228px;
background-image: url(../../images/head-2014.png?v=0130);
background-repeat: no-repeat;
margin: 0 auto;
}
.z-cart-nothing span {
display: block;
padding-top: 10px;
}
.z-cart-nothing a {
color: #2af;
margin-left: 5px;
}
.z-cart-nothing a:hover {
text-decoration: underline;
}
.m-pay-list {
position: relative;
overflow: hidden;
}
.m-pay-list .f-pay-comm {
width: 640px;
}
.m-pay-list .f-pay-price {
width: 130px;
margin-left: 110px;
}
.m-pay-list .f-pay-plusLess {
width: 120px;
margin-left: 60px;
}
.m-pay-list .f-pay-subtotal {
width: 90px;
margin-left: 30px;
}
.m-pay-list dl {
text-align: left;
}
.m-pay-list dt {
height: 26px;
line-height: 26px;
font-size: 12px;
background: #f2f2f2;
overflow: hidden;
}
.m-pay-list dt span {
float: left;
display: block;
overflow: hidden;
}
.m-pay-list dt span.f-pay-comm {
width: 620px;
padding-left: 20px;
}
.m-pay-list dd {
clear: both;
width: 1190px;
height: 40px;
padding: 10px 0;
border-bottom: 1px solid #ddd;
overflow: hidden;
font-size: 14px;
outline: none;
}
.m-pay-list dd li {
float: left;
height: 40px;
line-height: 40px;
}
.m-pay-list dd li a {
color: #333;
}
.m-pay-list dd li a:hover {
color: #f60;
}
.m-pay-list dd li.f-pay-comm {
height: 40px;
position: relative;
}
.m-pay-list dd li.f-pay-comm cite {
float: left;
display: block;
}
.m-pay-list dd li.f-pay-comm cite.u-pay-pic {
padding-left: 15px;
}
.m-pay-list dd li.f-pay-comm cite.u-pay-pic img {
display: block;
width: 40px;
height: 40px;
}
.m-pay-list dd li.f-pay-comm cite.u-pay-name {
display: block;
width: 575px;
height: 20px;
line-height: 20px;
word-break: break-all;
overflow: hidden;
margin: 10px 0 10px 10px;
position: relative;
}
.m-pay-list dd li.f-pay-comm cite.limitbuy {
position: relative;
width: 545px;
padding-left: 30px;
}
.m-pay-list dd li.f-pay-comm cite.limitbuy em.limitbuy-icon {
display: block;
width: 26px;
height: 15px;
background-position: 0 -33px;
position: absolute;
left: 0;
top: 3px;
}
.m-pay-list dd.m-pay-fail {
background: #f8f8f8;
color: #bbb;
}
.m-pay-list dd.m-pay-fail li a,.m-cart-list dd.m-pay-fail li a {
color: #bbb;
}
.m-pay-list dd.m-pay-fail li img {
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
filter: gray;
-webkit-filter: grayscale(100%);
}
.m-pay-list dd li a:hover {
text-decoration: underline;
}
.g-pay-unfold {
clear: both;
height: 50px;
border-bottom: 1px solid #999;
text-align: center;
font-size: 14px;
background: url(../../MyCart/images/shadow.png?v=141216) repeat-x;
position: relative;
top: -61px;
padding-top: 30px;
}
.g-pay-unfold2 {
display: block;
background: none;
position: relative;
top: 0;
padding-top: 0;
}
.g-pay-unfold a {
display: block;
height: 35px;
padding-top: 15px;
_height: 33px;
_padding-top: 17px;
background: #fff;
color: #bbb;
}
.g-pay-unfold a:hover {
color: #f60;
}
.g-pay-unfold a b {
display: inline-block;
margin-right: 5px;
width: 15px;
height: 9px;
overflow: hidden;
position: relative;
top: 0;
*top: -4px;
}
.g-pay-unfold a b.z-arrows {
background-position: -33px -55px;
}
.g-pay-unfold a:hover b.z-arrows {
background-position: -33px -69px;
}
.g-pay-unfold a b.z-arrows2 {
background-position: -33px -83px;
}
.g-pay-unfold a:hover b.z-arrows2 {
background-position: -33px -97px;
}
.m-pay-Total {
clear: both;
}
.m-pay-Total dl {
font-size: 14px;
color: #666;
}
.m-pay-Total dt,.m-pay-Total dd {
clear: both;
height: 30px;
line-height: 30px;
padding: 15px 5px 15px 0;
border-bottom: 1px dashed #e6e6e6;
}
.m-pay-Total dt {
position: relative;
}
.m-pay-Total dt span.fl {
padding-top: 0;
padding-left: 15px;
}
.m-pay-Total dt span.u-pay-bixu {
display: block;
width: 300px;
padding: 0 5px;
height: 18px;
line-height: 17px;
font-size: 12px;
text-align: left;
position: relative;
top: 10px;
background: #ffc;
border: 1px solid #fc6;
margin-right: 7px;
color: #f60;
}
.m-pay-Total dt span em {
border-style: solid;
border-width: 5px 0 5px;
border-color: #fff;
border-left: 5px solid rgb(255,204,102);
width: 0;
height: 0;
font-size: 0;
line-height: 0;
position: absolute;
right: -5px;
top: 4px;
right: -6px\9;
*right: -6px;
}
.m-pay-Total dt span em b {
border-style: solid;
_border-style: dashed;
border-width: 4px;
border-color: transparent;
border-right-width: 0;
border-left: 4px solid #ffc;
width: 0;
height: 0;
font-size: 0;
line-height: 0;
position: absolute;
top: -4px;
right: 1px;
right: 2px\9;
*right: 2px;
}
.m-pay-Total dt a {
color: #666;
}
.m-pay-Total dt a:hover {
color: #f60;
text-decoration: underline;
}
.m-pay-Total dt i {
font-size: 26px;
position: relative;
top: 2px;
}
.m-pay-Total dd {
overflow: hidden;
}
.m-pay-Total dd span {
display: block;
float: right;
}
.m-pay-Total dd cite {
display: none;
}
.m-pay-Total dd span {
margin-right: 3px;
}
.m-pay-Total dd span.orange {
font-size: 18px;
margin-left: 5px;
}
.m-pay-Total dd span input {
float: left;
width: 47px;
padding: 0 3px;
height: 18px;
line-height: 18px;
border: 1px solid #bbb;
position: relative;
top: 5px;
font-size: 14px;
}
.m-pay-Total dd span.u-pay-bixu {
display: block;
padding: 0 5px;
height: 18px;
line-height: 17px;
font-size: 12px;
text-align: left;
position: relative;
top: 5px;
background: #ffc;
border: 1px solid #fc6;
margin-left: 7px;
color: #f60;
}
.m-pay-Total dd span a.z-comms {
float: left;
width: 15px;
height: 15px;
background-position: 0 0;
position: relative;
top: 8px;
*top: 9px;
_top: 8px;
overflow: hidden;
}
.m-pay-Total dd span a.z-check {
position: relative;
top: 8px;
*top: 9px;
_top: 7px;
}
.m-pay-Total dd span a.z-check b {
display: block;
width: 9px;
height: 7px;
background-position: 0 0;
margin: 3px 2px;
}
a.z-check {
float: left;
display: block;
width: 13px;
height: 13px;
border: 1px solid #999;
cursor: pointer;
overflow: hidden;
}
a.z-check b {
display: block;
width: 9px;
height: 7px;
background-position: 0 0;
margin: 3px 2px;
}
a.z-checked {
background-position: 0 -16px!important;
}
.m-pay-Total dd span em {
border-style: solid;
border-width: 5px 0 5px;
border-color: #fff;
border-right: 5px solid rgb(255,204,102);
width: 0;
height: 0;
font-size: 0;
line-height: 0;
position: absolute;
left: -6px;
top: 4px;
}
.m-pay-Total dd span em b {
border-style: solid;
_border-style: dashed;
border-width: 4px;
border-color: transparent;
border-right-width: 0;
border-right: 4px solid #ffc;
width: 0;
height: 0;
font-size: 0;
line-height: 0;
position: absolute;
top: -4px;
left: -2px;
}
.f-payment-password {
clear: both;
float: right;
text-align: right;
padding-top: 10px;
}
.f-payment-password p {
display: block;
width: 200px;
height: 34px;
margin: 10px 0 6px;
position: relative;
}
.f-payment-password p input {
width: 195px;
height: 20px;
line-height: 20px;
padding: 6px 0;
padding-left: 3px;
font-size: 20x;
border: 1px solid #ccc;
outline: 0;
}
.f-payment-password p input.borcolor {
border: 1px solid #f60;
}
.f-payment-password p em {
width: 195px;
padding-left: 3px;
position: absolute;
left: 1px;
top: 1px;
*top: 2px;
line-height: 32px;
color: #bbb;
text-align: left;
}
.f-payment-password p s {
display: block;
width: 16px;
height: 16px;
overflow: hidden;
background: url(/Member/images/loading.gif?v=121019) no-repeat;
position: absolute;
right: 5px;
top: 9px;
}
.f-payment-password p s.tips_txt_Correct,.f-payment-password p s.tips_txt_Wrong {
width: 15px;
height: 15px;
overflow: hidden;
background: url(/Passport/images/login_new.png?v=121019) no-repeat;
}
.f-payment-password p s.tips_txt_Correct {
background-position: -1px -19px;
}
.f-payment-password p s.tips_txt_Wrong {
background-position: -17px -19px;
}
.f-payment-password span a:hover {
color: #f60!important;
text-decoration: underline;
}
.f-list-accounts {
clear: both;
padding-top: 15px;
}
.f-list-accounts input {
display: block;
width: 200px;
height: 45px;
line-height: 44px;
text-align: center;
color: #fff;
background: #f60;
font-size: 16px;
letter-spacing: 1px;
border-radius: 2px;
border: 0 none;
cursor: pointer;
hide-focus: expression(this.hideFocus=true);
outline: none;
}
.f-list-accounts input:hover {
background: #f40;
}
.f-grayButton input,.f-grayButton input:hover {
background: #bbb;
cursor: default;
}
.f-cgzf {
clear: both;
text-align: right;
font-size: 12px;
padding-top: 10px;
color: #bbb;
}
.m-pay-Total dd.f-pay-grayBg {
background: #f8f8f8;
color: #bbb;
}
.m-pay-Total dd.f-pay-grayBg a {
cursor: default;
}
.m-pay-Total dd.f-pay-grayBg a.z-check {
border: 1px solid #ddd;
}
.m-pay-manner {
clear: both;
padding-top: 20px;
}
.f-pay-select {
height: 30px;
line-height: 30px;
margin-bottom: 15px;
}
.f-pay-select span {
font-size: 16px;
}
.f-pay-select span i {
font-size: 22px;
margin-left: 5px;
}
.f-pay-defray {
clear: both;
border: 1px solid #ddd;
border-top: 2px solid #ddd;
background: #f8f8f8;
}
.f-pay-defray p {
display: block;
width: 150px;
line-height: 317px;
padding-left: 25px;
font-size: 18px;
}
.f-pay-defray .f-pay-bank {
width: 1013px;
height: 317px;
background: #fff;
}
.f-pay-defray .f-pay-bank cite {
display: block;
background: #f2f2f2;
height: 37px;
line-height: 35px;
}
.f-pay-defray .f-pay-bank cite span {
display: block;
float: left;
font-size: 18px;
padding: 0 20px;
_padding-top: 5px;
}
.f-pay-defray .f-pay-bank cite span a {
color: #333;
}
.f-pay-defray .f-pay-bank cite span.current {
border-top: 2px solid #f60;
margin-top: -2px;
background: #fff;
height: 39px;
line-height: 37px;
}
.f-pay-defray .f-pay-bank cite span.current a,.f-pay-bank cite span a:hover {
color: #f60;
}
.f-pay-defray2 {
border-top: 1px solid #ddd;
}
.f-pay-defray2 p {
line-height: 134px;
}
.f-pay-defray2 .f-pay-bank {
height: 134px;
}
.f-pay-defray2 h3 {
font-size: 18px;
padding-top: 20px;
padding-left: 20px;
display: none;
}
.f-pay-bank dl {
padding: 18px 0 20px;
}
.f-pay-bank dd {
float: left;
width: 150px;
height: 30px;
border: 1px solid #fff;
margin: 2px 0 0 40px;
padding: 7px 0;
overflow: hidden;
display: inline;
outline: none;
}
.f-pay-bank dd.checked {
border: 1px solid #f60;
}
.f-pay-bank dd input {
float: left;
width: 20px;
position: relative;
top: 10px;
*top: 4px;
margin-left: 7px;
hide-focus: expression(this.hideFocus=true);
outline: none;
}
.f-pay-bank dd label {
float: left;
width: 123px;
cursor: pointer;
hide-focus: expression(this.hideFocus=true);
outline: none;
}
.f-pay-bank dd span {
background-image: url(../../MyCart/images/bank-logo.gif?v=0818);
display: block;
background-repeat: no-repeat;
overflow: hidden;
height: 30px;
margin: 0 auto;
}
.f-pay-bank dd span.zh_bank {
width: 104px;
background-position: 0 0;
}
.f-pay-bank dd span.gh_bank {
width: 102px;
background-position: 0 -35px;
}
.f-pay-bank dd span.jh_bank {
width: 104px;
background-position: 0 -70px;
}
.f-pay-bank dd span.nh_bank {
width: 104px;
background-position: 0 -105px;
}
.f-pay-bank dd span.zg_bank {
width: 92px;
background-position: 0 -140px;
}
.f-pay-bank dd span.jt_bank {
width: 110px;
background-position: 0 -175px;
}
.f-pay-bank dd span.hx_bank {
width: 104px;
background-position: 0 -210px;
}
.f-pay-bank dd span.xy_bank {
width: 105px;
background-position: 0 -245px;
}
.f-pay-bank dd span.sh_bank {
width: 98px;
background-position: 0 -280px;
}
.f-pay-bank dd span.ms_bank {
width: 105px;
background-position: 0 -315px;
}
.f-pay-bank dd span.gf_bank {
width: 109px;
background-position: 0 -350px;
}
.f-pay-bank dd span.pa_bank {
width: 104px;
background-position: 0 -385px;
}
.f-pay-bank dd span.pf_bank {
width: 87px;
background-position: 0 -420px;
}
.f-pay-bank dd span.zx_bank {
width: 104px;
background-position: 0 -455px;
}
.f-pay-bank dd span.gd_bank {
width: 106px;
background-position: 0 -490px;
}
.f-pay-bank dd span.nj_bank {
width: 100px;
background-position: 0 -525px;
}
.f-pay-bank dd span.yz_bank {
width: 108px;
background-position: 0 -560px;
}
.f-pay-bank dd span.hz_bank {
width: 106px;
background-position: 0 -595px;
}
.f-pay-bank dd span.lb_bank {
width: 100px;
background-position: 0 -630px;
}
.f-pay-bank dd span.bj_bank {
width: 104px;
background-position: 0 -665px;
}
.f-pay-bank dd span.cqls_bank {
width: 113px;
background-position: 0 -700px;
}
.f-pay-bank dd span.bj2_bank {
width: 109px;
background-position: 0 -735px;
}
.f-pay-bank dd span.qd_bank {
width: 104px;
background-position: 0 -770px;
}
.f-pay-bank dd span.cd_bank {
width: 102px;
background-position: 0 -805px;
}
.f-pay-bank dd span.u-bank-wy {
width: 96px;
background-position: 0 -840px;
}
.f-pay-bank dd span.u-bank-kq {
width: 68px;
background-position: -8px -875px;
}
.f-pay-bank dd span.u-bank-online {
width: 91px;
background-position: 0 -910px;
}
.f-pay-bank dd span.u-bank-weixin {
width: 100px;
background-position: 0 -945px;
}
.f-pay-bank dd span.u-bank-cft {
width: 84px;
background-position: 0 -980px;
margin: 0 0 0 13px;
}
.f-pay-bank dd span.jd_bank {
background-position: 8px -1017px;
}
.f-pay-bank dd span.u-bank-qqmobile {
width: 110px;
background-position: 3px -1058px;
}
.f-pay-bank dd span.u-bank-zfb {
background-position: 17px -1100px;
}
div.pageDialog {
-moz-box-shadow: 2px 2px 2px #999;
-webkit-box-shadow: 2px 2px 2px #999;
box-shadow: 2px 2px 2px #999;
}
.payment_ts {
margin: 40px 0 0 50px;
padding: 0;
}
.payment_ts h3 {
font-size: 18px;
color: #f60;
}
.payment_ts h3 s.z-arrows {
width: 20px;
height: 20px;
float: left;
display: block;
margin-right: 4px;
background-position: -33px -27px;
position: relative;
top: 4px;
*top: 5px;
_top: -2px;
}
.payment_ts ul {
padding: 0 0 0 23px;
font-size: 14px;
}
.payment_ts .payment_ts_con {
width: 350px;
line-height: 21px;
color: #666;
}
.payment_ts .payment_ts_links {
padding: 0;
color: #999;
}
.payment_ts_but {
margin-top: 15px;
font-size: 16px;
line-height: 35px;
}
.payment_ts_but a:hover {
text-decoration: underline;
}
.payment_ts_but a.pay_tipsbut {
float: left;
display: block;
width: 92px;
height: 35px;
line-height: 35px;
border-radius: 2px;
text-align: center;
background: #f60;
color: #fff;
margin-right: 10px;
cursor: pointer;
}
.payment_ts_but a.pay_tipsbut:hover {
background: #f40;
color: #fff;
text-decoration: none!important;
}
.login_qqcon:after {
content: "\0020";
display: block;
height: 0;
clear: both;
}
.login_qqcon {
zoom: 1;
margin-top: 38px;
margin-left: 20px;
}
.login-tips-img {
float: left;
display: inline;
margin-top: 0;
}
.login-qq-img {
float: left;
display: inline;
margin-right: 10px;
}
.login-qq-img img {
width: 100px;
height: 100px;
padding: 5px;
border: 1px solid #E3E3E3;
}
.login_qqcon .login_qqConInput {
margin-left: 138px;
}
.login_qqcon .login_qqConInput dl {
height: 60px;
margin-bottom: 15px;
}
.login_qqcon .login_qqConInput dl a {
line-height: 37px;
}
.login_qqcon .login_qqConInput dt {
height: 37px;
}
.login_qqcon .login_qqConInput dd {
padding-left: 65px;
}
.Mem_qq_orangebut,.Mem_qq_graybut {
background: url(http://skin.1yyg.com/Passport/Images/qqlogin_btn.png?v=130904) no-repeat;
display: inline-block;
font-size: 16px;
font-weight: bold;
line-height: 43px;
color: #f60;
text-indent: 50px;
}
.Mem_qq_orangebut:hover {
color: #f60;
}
.Mem_qq_orangebut {
width: 140px;
height: 43px;
background-position: 0 0;
margin-right: 22px;
}
.Mem_qq_graybut {
width: 140px;
height: 43px;
background-position: -160px 0;
color: #2AF;
}
.Mem_qq_graybut:hover {
color: #2AF;
}
.login_qq_tips_txt {
margin-bottom: 20px;
font-size: 14px;
line-height: 24px;
color: #666;
}
div.pageDialogMain .login_qq_tips_txt h2 {
font-size: 14px;
font-weight: bold;
color: #f60;
margin: 0;
margin-bottom: 5px;
font-family: arial,宋体;
padding: 0;
background: none;
}
div.pageDialogMain .login_qq_tips_txt p {
width: 310px;
display: inline-block;
padding: 0;
margin: 0;
}
.g-results-success {
width: 500px;
margin: 0 auto;
padding: 40px 0 20px;
}
.g-results-success i.z-arrows {
display: block;
width: 42px;
height: 42px;
margin: 0 auto 5px;
background-position: 0 -167px;
overflow: hidden;
}
.g-results-success dl {
text-align: center;
}
.g-results-success dt {
color: #00a800;
font-size: 22px;
margin-bottom: 5px;
height: 40px;
line-height: 40px;
}
.g-results-success dd {
font-size: 14px;
position: relative;
line-height: 22px;
padding-top: 15px;
}
.g-results-success dd a {
display: inline-block;
width: 140px;
height: 32px;
line-height: 32px;
text-align: center;
border: 1px solid #ddd;
color: #999;
margin-right: 12px;
}
.g-results-success dd a:hover {
color: #f60;
border: 1px solid #f60;
}
.g-results-failure i.z-arrows {
background-position: 0 -122px;
}
.g-results-failure dt {
color: #666;
}
.g-jd-first {
font-weight: normal;
color: #f60;
font-size: 12px;
padding-right: 10px;
}
.g-results-loading {
width: 320px;
margin: 0 auto;
padding: 150px 0 150px;
text-align: center;
}
.g-results-loading span {
font-size: 16px;
height: 30px;
line-height: 30px;
}
.g-results-loading b {
display: block;
background-image: url(../../MyCart/images/loading-2014.gif?v=141218);
width: 320px;
height: 12px;
margin-top: 20px;
}
.g-resulst-prompt {
width: 411px;
margin: 30px auto 20px;
text-align: center;
position: relative;
}
.g-resulst-prompt span {
color: #666;
font-size: 14px;
padding: 0 20px;
background: #fff;
position: absolute;
bottom: -5px;
left: 130px;
}
.g-resulst-prompt b {
width: 411px;
font-size: 0;
height: 1px;
border-top: 1px solid #ddd;
display: inline-block;
}
.g-resulst-failure,.g-results-info {
clear: both;
width: 948px;
margin: 0 auto;
border: 1px solid #ddd;
}
.g-resulst-failure {
border-top: 0 none;
margin-bottom: 40px;
}
.g-resulst-failure li {
height: 24px;
padding: 17px 0;
border-top: 1px solid #ddd;
font-size: 14px;
color: #999;
}
.g-resulst-failure span {
float: left;
display: block;
width: 450px;
height: 24px;
line-height: 24px;
margin-left: 20px;
word-break: break-all;
overflow: hidden;
}
.g-resulst-failure span a {
color: #333;
}
.g-resulst-failure span a:hover {
color: #f60;
text-decoration: underline;
}
.g-resulst-failure cite {
float: left;
padding-left: 30px;
}
.g-resulst-failure cite a {
color: #f60;
text-decoration: underline;
}
.g-results-info .u-results-name {
width: 380px;
word-break: break-all;
height: 24px;
overflow: hidden;
}
.g-results-info .u-results-time {
width: 180px;
padding-left: 30px;
}
.g-results-info .u-results-visitors {
width: 90px;
text-align: center;
}
.g-results-info dl {
text-align: left;
}
.g-results-info dl span {
float: left;
display: block;
display: inline;
line-height: 24px;
margin: 0 12px 0 20px;
}
.g-results-info dt {
height: 26px;
line-height: 26px;
background: #f2f2f2;
font-size: 12px;
color: #999;
overflow: hidden;
}
.g-results-info dd {
clear: both;
width: 100%;
float: left;
padding: 17px 0;
display: inline-block;
font-size: 14px;
color: #666;
border-top: 1px solid #ddd;
}
.g-results-info dd span em {
float: left;
padding: 0 5px;
}
.g-results-info dd span em a {
color: #666;
}
.g-results-info dd span em a:hover {
color: #f60;
text-decoration: underline;
}
.g-results-info dd span.u-results-name span {
height: 24px;
overflow: hidden;
word-break: break-all;
}
.g-results-info dd span.u-results-name a {
color: #333;
}
.g-results-info dd span.u-results-name a:hover {
color: #f60;
text-decoration: underline;
}
.g-wx-banner {
clear: both;
margin: 80px auto 0;
}
.g-wx-banner img {
display: block;
margin: 0 auto;
}
@media screen and (max-width:1190px) {
body {
min-width: 990px;
}
.w1190 {
width: 990px;
margin: 0 auto;
}
.m-cart-list dd {
width: 970px;
}
.m-cart-list .f-cart-comm {
width: 420px;
}
.m-cart-list dt span.f-cart-comm {
width: 370px;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-name span {
width: 310px;
}
.m-cart-list .f-cart-price {
margin-left: 70px;
}
.m-cart-list .f-cart-plusLess {
margin-left: 20px;
text-align: center;
}
.m-cart-list .f-cart-subtotal {
margin-left: 40px;
}
.m-recomm-con {
width: 988px;
}
.f-recomm-list {
width: 247px;
}
.f-recomm-list dl {
width: 216px;
}
.f-recomm-list dt {
margin: 10px 8px 0;
}
.f-recomm-list dt img {
width: 200px;
height: 200px;
}
.f-recomm-list dd {
width: 200px;
}
.f-recomm-hover .f-recomm-list {
width: 216px;
}
.f-recomm-hover a.u-cart-add {
left: 99px;
}
.f-recomm-hover .z-mask {
_width: 247px;
}
.m-pay-list dt span.f-pay-comm {
width: 510px;
}
.m-pay-list .f-pay-comm {
width: 530px;
}
.m-pay-list dd li.f-pay-comm cite.u-pay-name {
width: 465px;
}
.m-pay-list dd li.f-pay-comm cite.limitbuy {
width: 435px;
}
.m-pay-list .f-pay-price {
margin-left: 80px;
}
.m-pay-list .f-pay-plusLess {
margin-left: 28px;
}
.m-pay-list .f-pay-subtotal {
margin-left: 5px;
}
.m-pay-list dd {
width: 990px;
}
.f-pay-defray p {
display: none;
}
.f-pay-defray2 .f-pay-bank {
height: 173px;
}
.f-pay-defray2 h3 {
display: block;
}
.f-pay-defray2 dl {
padding: 10px 0 20px;
}
.f-pay-defray .f-pay-bank {
width: 988px;
}
.g-results-info dl span {
margin-left: 10px;
}
.g-results-info .u-results-name {
width: 320px;
}
.g-wx-banner img {
width: 988px;
}
}
body.f-width-change .w1190 {
width: 990px;
margin: 0 auto;
}
body.f-width-change .m-cart-list dd {
width: 970px;
}
body.f-width-change .m-cart-list .f-cart-comm {
width: 420px;
}
body.f-width-change .m-cart-list dt span.f-cart-comm {
width: 370px;
}
body.f-width-change .m-cart-list dd li.f-cart-comm cite.u-cart-name span {
width: 310px;
}
body.f-width-change .m-cart-list .f-cart-price {
margin-left: 70px;
}
body.f-width-change .m-cart-list .f-cart-plusLess {
margin-left: 20px;
text-align: center;
}
body.f-width-change .m-cart-list .f-cart-subtotal {
margin-left: 40px;
}
body.f-width-change .m-recomm-con {
width: 988px;
}
body.f-width-change .f-recomm-list {
width: 247px;
}
body.f-width-change .f-recomm-list dl {
width: 217px;
}
body.f-width-change .f-recomm-list dt {
margin: 10px 8px 0;
}
body.f-width-change .f-recomm-list dt img {
width: 200px;
height: 200px;
}
body.f-width-change .f-recomm-list dd {
width: 200px;
}
body.f-width-change .f-recomm-hover .f-recomm-list {
width: 216px;
}
body.f-width-change .f-recomm-hover a.u-cart-add {
left: 99px;
}
body.f-width-change .f-recomm-hover .z-mask {
_width: 247px;
}
body.f-width-change .m-pay-list dt span.f-pay-comm {
width: 510px;
}
body.f-width-change .m-pay-list .f-pay-comm {
width: 530px;
}
body.f-width-change .m-pay-list dd li.f-pay-comm cite.u-pay-name {
width: 465px;
}
body.f-width-change .m-pay-list dd li.f-pay-comm cite.limitbuy {
width: 435px;
}
body.f-width-change .m-pay-list .f-pay-price {
margin-left: 80px;
}
body.f-width-change .m-pay-list .f-pay-plusLess {
margin-left: 28px;
}
body.f-width-change .m-pay-list .f-pay-subtotal {
margin-left: 5px;
}
body.f-width-change .m-pay-list dd {
width: 990px;
}
body.f-width-change .f-pay-defray p {
display: none;
}
body.f-width-change .f-pay-defray2 .f-pay-bank {
height: 173px;
}
body.f-width-change .f-pay-defray2 h3 {
display: block;
}
body.f-width-change .f-pay-defray2 dl {
padding: 10px 0 20px;
}
body.f-width-change .f-pay-defray .f-pay-bank {
width: 988px;
}
body.f-width-change .g-results-info dl span {
margin-left: 10px;
}
body.f-width-change .g-results-info .u-results-name {
width: 320px;
}
body.f-width-change .g-wx-banner img {
width: 988px;
} | html/www.1yyg.com9-18/css/CartList.css | @charset "utf-8";
.z-comms {
background-image: url(../../MyCart/images/cart-comm.gif?v=141217);
background-repeat: no-repeat;
}
.z-arrows {
background-image: url(../../MyCart/images/cart-arrow.gif?v=141217);
background-repeat: no-repeat;
}
.g-special-head {
height: 74px;
padding: 15px 0;
}
.g-special-head a.f-logo {
display: block;
background: url(http://skin.1yyg.com/images/logo-2014.png?v=141202) no-repeat;
width: 122px;
height: 74px;
cursor: pointer;
}
.g-special-head a.f-carryOn {
color: #999;
font-size: 14px;
margin-top: 52px;
}
.g-special-head a.f-carryOn:hover {
color: #f60;
text-decoration: underline;
}
.g-main-con {
margin-bottom: 50px;
border-top: 1px solid #999;
background: #fff;
}
.g-results-bor {
border: 1px solid #ddd;
margin-bottom: 80px;
}
.m-cart-title {
font-size: 18px;
padding: 15px 0;
line-height: 18px;
}
.m-cart-list {
position: relative;
}
.m-cart-list .f-cart-comm {
width: 550px;
text-align: left;
}
.m-cart-list .f-cart-price {
width: 110px;
margin-left: 75px;
}
.m-cart-list .f-cart-plusLess {
width: 185px;
margin-left: 30px;
text-align: center;
}
.m-cart-list .f-cart-subtotal {
width: 120px;
margin-left: 60px;
}
.m-cart-list .f-cart-operate {
width: 40px;
text-align: center;
position: absolute;
right: 7px;
}
.m-cart-list dl {
position: relative;
text-align: left;
}
.m-cart-list dt {
height: 26px;
line-height: 26px;
font-size: 12px;
background: #f2f2f2;
}
.m-cart-list dt span {
float: left;
display: block;
overflow: hidden;
}
.m-cart-list dt span.f-cart-comm {
width: 500px;
padding-left: 60px;
}
.m-cart-list dd {
clear: both;
width: 1170px;
height: 70px;
padding: 20px 10px;
border-bottom: 1px solid #ddd;
overflow: hidden;
font-size: 14px;
}
.m-cart-list dd li {
float: left;
height: 70px;
line-height: 18px;
}
.m-cart-list dd li a {
color: #333;
}
.m-cart-list dd li a:hover {
color: #f60;
}
.m-cart-list dd li.f-cart-comm {
height: 70px;
}
.m-cart-list dd li.f-cart-comm cite {
float: left;
}
.m-cart-list dd li.f-cart-comm cite a.z-check {
margin-top: 27px;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-pic {
margin-left: 10px;
width: 70px;
height: 70px;
position: relative;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-pic img {
display: block;
width: 70px;
height: 70px;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-pic i.limitbuy-icon {
display: block;
width: 26px;
height: 15px;
background-position: 0 -33px;
position: absolute;
left: 0;
top: 0;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-name {
font-size: 12px;
margin-left: 10px;
padding-top: 25px;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-name dfn {
display: block;
margin-top: -17px;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-name dfn s {
width: 16px;
height: 16px;
margin-right: 5px;
background-position: -126px -274px;
display: inline-block;
vertical-align: middle;
position: relative;
top: -1px;
*top: 1px;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-name span {
display: block;
width: 440px;
height: 20px;
line-height: 20px;
word-break: break-all;
overflow: hidden;
margin-bottom: 2px;
font-size: 14px;
}
.m-cart-list dd li.f-cart-price {
color: #333;
}
.m-cart-list dd li.f-cart-price,.m-cart-list dd li.f-cart-value,.m-cart-list dd li.f-cart-subtotal {
height: 70px;
line-height: 70px;
overflow: hidden;
}
.m-cart-list dd li.f-cart-plusLess {
padding-top: 20px;
height: 50px;
position: relative;
}
.m-cart-list dd li.f-cart-plusLess span {
display: block;
width: 126px;
height: 29px;
margin: 0 auto;
}
.m-cart-list dd li.f-cart-plusLess a,.m-cart-list dd li.f-cart-plusLess input {
float: left;
}
.m-cart-list dd li.f-cart-plusLess a {
display: block;
width: 29px;
height: 29px;
}
.m-cart-list dd li.f-cart-plusLess a.z-plus {
background-position: 0 0;
}
.m-cart-list dd li.f-cart-plusLess a.z-plus2 {
background-position: 0 -30px;
}
.m-cart-list dd li.f-cart-plusLess a.z-less {
background-position: 0 -60px;
}
.m-cart-list dd li.f-cart-plusLess a.z-less2 {
background-position: 0 -90px;
}
.m-cart-list dd li.f-cart-plusLess input {
width: 68px;
height: 27px;
line-height: 27px;
_line-height: 26px;
border: 0 none;
border-top: 1px solid #ccc;
border-bottom: 1px solid #ccc;
text-align: center;
}
.m-cart-list dd li.f-cart-plusLess p {
clear: both;
height: 32px;
padding-top: 4px;
_height: 31px;
_padding-top: 5px;
display: block;
font-size: 12px;
color: #f60;
line-height: 14px;
}
.m-cart-list dd li.f-cart-plusLess p.gray9 {
color: #999;
}
.m-cart-list dd li.f-cart-operate {
padding-top: 30px;
height: 40px;
}
.m-cart-list dd li.f-cart-operate a.z-comms {
display: block;
width: 10px;
height: 9px;
margin: 0 auto;
background-position: 0 -12px;
overflow: hidden;
}
.m-cart-list dd li.f-cart-operate a.z-comms:hover {
background-position: 0 -39px;
}
.m-cart-list dd.m-cart-fail {
background: #f8f8f8;
}
.m-cart-list dd.m-cart-fail li,.m-cart-list dd.m-cart-fail li a {
color: #bbb;
}
.m-cart-list dd.m-cart-fail img,.m-cart-list dd.m-cart-fail i.limitbuy-icon {
display: block;
width: 70px;
height: 70px;
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
filter: gray;
-webkit-filter: grayscale(100%);
}
.m-cart-list dd li a:hover {
text-decoration: underline;
}
.m-cart-list dd.m-cart-fail li.f-cart-plusLess {
height: 70px;
line-height: 70px;
padding-top: 0;
color: #333;
}
.m-cart-list dd.m-cart-fail li.f-cart-operate a.z-comms {
background-position: 0 -26px;
}
.m-cart-list dd.m-cart-fail li.f-cart-operate a.z-comms:hover {
background-position: 0 -39px;
}
.m-cart-list .f-box-prompt {
width: 176px;
height: 69px;
padding: 15px 0;
right: 0;
top: 102px;
z-index: 20;
border: 1px solid #ddd;
position: absolute;
-moz-box-shadow: 3px 3px 3px #d8d8d8;
-webkit-box-shadow: 3px 3px 3px #d8d8d8;
box-shadow: 3px 3px 3px #d8d8d8;
}
.m-cart-list .f-box-prompt p {
font-size: 16px;
color: #333;
padding-bottom: 20px;
}
.m-cart-list .f-box-prompt a {
display: inline-block;
text-align: center;
border-radius: 2px;
overflow: hidden;
font-size: 14px;
margin: 0 2px;
}
.m-cart-list .f-box-prompt a.u-btn-determine {
width: 56px;
height: 24px;
line-height: 24px;
background: #f60;
color: #fff;
}
.m-cart-list .f-box-prompt a.u-btn-cancel {
width: 54px;
height: 22px;
line-height: 22px;
border: 1px solid #ddd;
color: #666;
}
.m-cart-list .f-box-prompt b {
border-style: solid;
border-width: 0 6px 6px;
border-color: #fff;
border-bottom: 6px solid rgb(187,187,187);
width: 0;
height: 0;
font-size: 0;
line-height: 0;
position: absolute;
right: 20px;
top: -7px;
}
.m-cart-list .f-box-prompt b s {
border-style: solid;
_border-style: dashed;
border-width: 6px;
border-color: transparent;
border-top-width: 0;
border-bottom: 6px solid #fff;
width: 0;
height: 0;
font-size: 0;
line-height: 0;
position: absolute;
top: 1px;
left: -6px;
}
.m-cart-list dl .f-box-gray b {
border-color: #f8f8f8;
border-bottom: 6px solid rgb(187,187,187);
}
.m-cart-list .m-list-tips {
clear: both;
height: 29px;
line-height: 29px;
background: #ffffe8;
border: 1px solid #fc0;
color: #f60;
border-bottom: 1px solid #ddd;
padding: 0 10px 0 10px;
position: relative;
z-index: 1;
top: -1px;
}
.m-cart-list .m-list-tips span a.z-check {
margin: 7px 3px 0 0;
_margin-top: 6px;
}
.m-cart-list .m-list-operating {
clear: both;
height: 150px;
display: block;
font-size: 14px;
color: #333;
padding-top: 10px;
position: relative;
}
.m-cart-list .m-list-operating p,.m-cart-list .m-list-operating cite {
display: block;
line-height: 30px;
}
.m-cart-list .m-list-operating p {
padding-top: 5px;
padding-left: 10px;
}
.m-cart-list .m-list-operating p span {
float: left;
}
.m-cart-list .m-list-operating p span a.z-check {
margin-right: 10px;
position: relative;
top: 8px;
}
.m-cart-list .m-list-operating p span a {
color: #333;
margin-right: 20px;
}
.m-cart-list .m-list-operating p span a:hover {
color: #f60;
text-decoration: underline;
}
.m-cart-list .m-list-operating cite {
display: block;
}
.m-cart-list .m-list-operating cite i {
font-size: 26px;
position: relative;
top: 2px;
}
.m-cart-list .f-list-accounts {
clear: both;
float: right;
height: 45px;
line-height: 45px;
padding-top: 15px;
}
.m-cart-list .f-list-accounts a {
float: left;
display: block;
color: #666;
text-align: center;
border-radius: 2px;
}
.m-cart-list .f-list-accounts a.f-list-return {
border: 1px solid #ddd;
color: #666;
width: 150px;
height: 44px;
line-height: 44px;
font-size: 14px;
}
.m-cart-list .f-list-accounts a.f-list-jiesuan {
width: 200px;
height: 45px;
line-height: 45px;
color: #fff;
background: #f60;
font-size: 22px;
letter-spacing: 1px;
margin-left: 15px;
font-size: 16px;
}
.m-cart-list .f-list-accounts a.f-list-jiesuan:hover {
color: #fff;
background: #f40;
text-decoration: none;
}
.m-rqtj-con {
clear: both;
position: relative;
margin-bottom: 50px;
}
.m-rqtj-con p {
display: block;
color: #333;
font-size: 20px;
padding-bottom: 10px;
font-weight: bold;
}
.m-recomm-con {
width: 1188px;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
border-top: 1px solid #ddd;
}
.f-recomm-list {
float: left;
width: 297px;
height: 330px;
position: relative;
z-index: 1;
}
.f-recomm-list dl {
width: 267px;
height: 289px;
padding: 25px 15px 15px;
border-left: 1px solid #ddd;
border-bottom: 1px solid #ddd;
margin-left: -1px;
margin-bottom: -1px;
overflow: hidden;
position: relative;
}
.f-recomm-hover {
position: relative;
z-index: 2;
}
.f-recomm-hover dl {
width: 266px;
position: absolute;
left: 0;
top: -1px;
border: 1px solid #f60;
overflow: hidden;
-moz-box-shadow: 3px 3px 3px #d8d8d8;
-webkit-box-shadow: 3px 3px 3px #d8d8d8;
box-shadow: 3px 3px 3px #d8d8d8;
}
.f-recomm-hover2 dl {
width: 267px;
}
.f-recomm-hover .z-mask {
width: 100%;
_width: 297px;
height: 330px;
background: #000;
opacity: 0.2;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=20);
position: absolute;
top: 0;
left: 0;
right: 0;
z-index: 0;
}
.f-recomm-hover a.u-cart-add {
display: block;
width: 49px;
height: 49px;
background-image: url(../../MyCart/images/cart-add.png?v=1411112);
position: absolute;
top: 140px;
left: 123px;
z-index: 10;
overflow: hidden;
cursor: pointer;
}
.f-recomm-hover a.u-cart-add:hover {
background-image: url(../../MyCart/images/cart-add-hover.png?v=1411112);
}
.f-recomm-list dt {
float: left;
width: 200px;
margin: 10px 33px 0;
display: inline;
}
.f-recomm-list dt a img {
display: block;
width: 200px;
height: 200px;
}
.f-recomm-list dd {
text-align: center;
font-size: 14px;
width: 266px;
}
.f-recomm-list dd.u-recomm-name {
clear: both;
height: 20px;
line-height: 20px;
overflow: hidden;
padding: 40px 0 2px;
word-break: break-all;
}
.f-recomm-list dd.u-recomm-name a {
color: #333;
}
.f-recomm-list dd.u-recomm-name a:hover {
color: #f60;
text-decoration: underline;
}
.f-recomm-list dd em {
margin: 0 3px;
}
.z-popUp {
clear: both;
background: #fff;
font-size: 16px;
text-align: center;
z-index: 10;
}
.z-popUp i {
display: inline-block;
width: 20px;
height: 20px;
position: relative;
top: 4px;
*top: 0;
margin-right: 5px;
overflow: hidden;
}
.z-add-success {
width: 168px;
color: #00a800;
position: absolute;
left: 0;
top: 18px;
}
.z-add-success i.z-arrows {
background-position: -33px 0;
}
.z-sold-out {
color: #f60;
position: absolute;
left: 15px;
top: 18px;
}
.z-sold-out i.z-arrows {
background-position: -33px -27px;
}
.z-pop-box {
padding: 30px 0;
text-align: center;
}
.z-pop-box span {
display: block;
font-size: 18px;
padding-bottom: 30px;
}
.z-pop-box p {
font-size: 18px;
}
.z-pop-box cite {
display: block;
padding: 10px 0 25px;
font-size: 14px;
}
.z-cart-nothing {
clear: both;
font-size: 16px;
text-align: center;
height: 100px;
padding: 50px 0 80px;
}
.z-cart-nothing b {
display: block;
width: 54px;
height: 53px;
background-position: 0 -228px;
background-image: url(../../images/head-2014.png?v=0130);
background-repeat: no-repeat;
margin: 0 auto;
}
.z-cart-nothing span {
display: block;
padding-top: 10px;
}
.z-cart-nothing a {
color: #2af;
margin-left: 5px;
}
.z-cart-nothing a:hover {
text-decoration: underline;
}
.m-pay-list {
position: relative;
overflow: hidden;
}
.m-pay-list .f-pay-comm {
width: 640px;
}
.m-pay-list .f-pay-price {
width: 130px;
margin-left: 110px;
}
.m-pay-list .f-pay-plusLess {
width: 120px;
margin-left: 60px;
}
.m-pay-list .f-pay-subtotal {
width: 90px;
margin-left: 30px;
}
.m-pay-list dl {
text-align: left;
}
.m-pay-list dt {
height: 26px;
line-height: 26px;
font-size: 12px;
background: #f2f2f2;
overflow: hidden;
}
.m-pay-list dt span {
float: left;
display: block;
overflow: hidden;
}
.m-pay-list dt span.f-pay-comm {
width: 620px;
padding-left: 20px;
}
.m-pay-list dd {
clear: both;
width: 1190px;
height: 40px;
padding: 10px 0;
border-bottom: 1px solid #ddd;
overflow: hidden;
font-size: 14px;
outline: none;
}
.m-pay-list dd li {
float: left;
height: 40px;
line-height: 40px;
}
.m-pay-list dd li a {
color: #333;
}
.m-pay-list dd li a:hover {
color: #f60;
}
.m-pay-list dd li.f-pay-comm {
height: 40px;
position: relative;
}
.m-pay-list dd li.f-pay-comm cite {
float: left;
display: block;
}
.m-pay-list dd li.f-pay-comm cite.u-pay-pic {
padding-left: 15px;
}
.m-pay-list dd li.f-pay-comm cite.u-pay-pic img {
display: block;
width: 40px;
height: 40px;
}
.m-pay-list dd li.f-pay-comm cite.u-pay-name {
display: block;
width: 575px;
height: 20px;
line-height: 20px;
word-break: break-all;
overflow: hidden;
margin: 10px 0 10px 10px;
position: relative;
}
.m-pay-list dd li.f-pay-comm cite.limitbuy {
position: relative;
width: 545px;
padding-left: 30px;
}
.m-pay-list dd li.f-pay-comm cite.limitbuy em.limitbuy-icon {
display: block;
width: 26px;
height: 15px;
background-position: 0 -33px;
position: absolute;
left: 0;
top: 3px;
}
.m-pay-list dd.m-pay-fail {
background: #f8f8f8;
color: #bbb;
}
.m-pay-list dd.m-pay-fail li a,.m-cart-list dd.m-pay-fail li a {
color: #bbb;
}
.m-pay-list dd.m-pay-fail li img {
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
filter: gray;
-webkit-filter: grayscale(100%);
}
.m-pay-list dd li a:hover {
text-decoration: underline;
}
.g-pay-unfold {
clear: both;
height: 50px;
border-bottom: 1px solid #999;
text-align: center;
font-size: 14px;
background: url(../../MyCart/images/shadow.png?v=141216) repeat-x;
position: relative;
top: -61px;
padding-top: 30px;
}
.g-pay-unfold2 {
display: block;
background: none;
position: relative;
top: 0;
padding-top: 0;
}
.g-pay-unfold a {
display: block;
height: 35px;
padding-top: 15px;
_height: 33px;
_padding-top: 17px;
background: #fff;
color: #bbb;
}
.g-pay-unfold a:hover {
color: #f60;
}
.g-pay-unfold a b {
display: inline-block;
margin-right: 5px;
width: 15px;
height: 9px;
overflow: hidden;
position: relative;
top: 0;
*top: -4px;
}
.g-pay-unfold a b.z-arrows {
background-position: -33px -55px;
}
.g-pay-unfold a:hover b.z-arrows {
background-position: -33px -69px;
}
.g-pay-unfold a b.z-arrows2 {
background-position: -33px -83px;
}
.g-pay-unfold a:hover b.z-arrows2 {
background-position: -33px -97px;
}
.m-pay-Total {
clear: both;
}
.m-pay-Total dl {
font-size: 14px;
color: #666;
}
.m-pay-Total dt,.m-pay-Total dd {
clear: both;
height: 30px;
line-height: 30px;
padding: 15px 5px 15px 0;
border-bottom: 1px dashed #e6e6e6;
}
.m-pay-Total dt {
position: relative;
}
.m-pay-Total dt span.fl {
padding-top: 0;
padding-left: 15px;
}
.m-pay-Total dt span.u-pay-bixu {
display: block;
width: 300px;
padding: 0 5px;
height: 18px;
line-height: 17px;
font-size: 12px;
text-align: left;
position: relative;
top: 10px;
background: #ffc;
border: 1px solid #fc6;
margin-right: 7px;
color: #f60;
}
.m-pay-Total dt span em {
border-style: solid;
border-width: 5px 0 5px;
border-color: #fff;
border-left: 5px solid rgb(255,204,102);
width: 0;
height: 0;
font-size: 0;
line-height: 0;
position: absolute;
right: -5px;
top: 4px;
right: -6px\9;
*right: -6px;
}
.m-pay-Total dt span em b {
border-style: solid;
_border-style: dashed;
border-width: 4px;
border-color: transparent;
border-right-width: 0;
border-left: 4px solid #ffc;
width: 0;
height: 0;
font-size: 0;
line-height: 0;
position: absolute;
top: -4px;
right: 1px;
right: 2px\9;
*right: 2px;
}
.m-pay-Total dt a {
color: #666;
}
.m-pay-Total dt a:hover {
color: #f60;
text-decoration: underline;
}
.m-pay-Total dt i {
font-size: 26px;
position: relative;
top: 2px;
}
.m-pay-Total dd {
overflow: hidden;
}
.m-pay-Total dd span {
display: block;
float: right;
}
.m-pay-Total dd cite {
display: none;
}
.m-pay-Total dd span {
margin-right: 3px;
}
.m-pay-Total dd span.orange {
font-size: 18px;
margin-left: 5px;
}
.m-pay-Total dd span input {
float: left;
width: 47px;
padding: 0 3px;
height: 18px;
line-height: 18px;
border: 1px solid #bbb;
position: relative;
top: 5px;
font-size: 14px;
}
.m-pay-Total dd span.u-pay-bixu {
display: block;
padding: 0 5px;
height: 18px;
line-height: 17px;
font-size: 12px;
text-align: left;
position: relative;
top: 5px;
background: #ffc;
border: 1px solid #fc6;
margin-left: 7px;
color: #f60;
}
.m-pay-Total dd span a.z-comms {
float: left;
width: 15px;
height: 15px;
background-position: 0 0;
position: relative;
top: 8px;
*top: 9px;
_top: 8px;
overflow: hidden;
}
.m-pay-Total dd span a.z-check {
position: relative;
top: 8px;
*top: 9px;
_top: 7px;
}
.m-pay-Total dd span a.z-check b {
display: block;
width: 9px;
height: 7px;
background-position: 0 0;
margin: 3px 2px;
}
a.z-check {
float: left;
display: block;
width: 13px;
height: 13px;
border: 1px solid #999;
cursor: pointer;
overflow: hidden;
}
a.z-check b {
display: block;
width: 9px;
height: 7px;
background-position: 0 0;
margin: 3px 2px;
}
a.z-checked {
background-position: 0 -16px!important;
}
.m-pay-Total dd span em {
border-style: solid;
border-width: 5px 0 5px;
border-color: #fff;
border-right: 5px solid rgb(255,204,102);
width: 0;
height: 0;
font-size: 0;
line-height: 0;
position: absolute;
left: -6px;
top: 4px;
}
.m-pay-Total dd span em b {
border-style: solid;
_border-style: dashed;
border-width: 4px;
border-color: transparent;
border-right-width: 0;
border-right: 4px solid #ffc;
width: 0;
height: 0;
font-size: 0;
line-height: 0;
position: absolute;
top: -4px;
left: -2px;
}
.f-payment-password {
clear: both;
float: right;
text-align: right;
padding-top: 10px;
}
.f-payment-password p {
display: block;
width: 200px;
height: 34px;
margin: 10px 0 6px;
position: relative;
}
.f-payment-password p input {
width: 195px;
height: 20px;
line-height: 20px;
padding: 6px 0;
padding-left: 3px;
font-size: 20x;
border: 1px solid #ccc;
outline: 0;
}
.f-payment-password p input.borcolor {
border: 1px solid #f60;
}
.f-payment-password p em {
width: 195px;
padding-left: 3px;
position: absolute;
left: 1px;
top: 1px;
*top: 2px;
line-height: 32px;
color: #bbb;
text-align: left;
}
.f-payment-password p s {
display: block;
width: 16px;
height: 16px;
overflow: hidden;
background: url(/Member/images/loading.gif?v=121019) no-repeat;
position: absolute;
right: 5px;
top: 9px;
}
.f-payment-password p s.tips_txt_Correct,.f-payment-password p s.tips_txt_Wrong {
width: 15px;
height: 15px;
overflow: hidden;
background: url(/Passport/images/login_new.png?v=121019) no-repeat;
}
.f-payment-password p s.tips_txt_Correct {
background-position: -1px -19px;
}
.f-payment-password p s.tips_txt_Wrong {
background-position: -17px -19px;
}
.f-payment-password span a:hover {
color: #f60!important;
text-decoration: underline;
}
.f-list-accounts {
clear: both;
padding-top: 15px;
}
.f-list-accounts input {
display: block;
width: 200px;
height: 45px;
line-height: 44px;
text-align: center;
color: #fff;
background: #f60;
font-size: 16px;
letter-spacing: 1px;
border-radius: 2px;
border: 0 none;
cursor: pointer;
hide-focus: expression(this.hideFocus=true);
outline: none;
}
.f-list-accounts input:hover {
background: #f40;
}
.f-grayButton input,.f-grayButton input:hover {
background: #bbb;
cursor: default;
}
.f-cgzf {
clear: both;
text-align: right;
font-size: 12px;
padding-top: 10px;
color: #bbb;
}
.m-pay-Total dd.f-pay-grayBg {
background: #f8f8f8;
color: #bbb;
}
.m-pay-Total dd.f-pay-grayBg a {
cursor: default;
}
.m-pay-Total dd.f-pay-grayBg a.z-check {
border: 1px solid #ddd;
}
.m-pay-manner {
clear: both;
padding-top: 20px;
}
.f-pay-select {
height: 30px;
line-height: 30px;
margin-bottom: 15px;
}
.f-pay-select span {
font-size: 16px;
}
.f-pay-select span i {
font-size: 22px;
margin-left: 5px;
}
.f-pay-defray {
clear: both;
border: 1px solid #ddd;
border-top: 2px solid #ddd;
background: #f8f8f8;
}
.f-pay-defray p {
display: block;
width: 150px;
line-height: 317px;
padding-left: 25px;
font-size: 18px;
}
.f-pay-defray .f-pay-bank {
width: 1013px;
height: 317px;
background: #fff;
}
.f-pay-defray .f-pay-bank cite {
display: block;
background: #f2f2f2;
height: 37px;
line-height: 35px;
}
.f-pay-defray .f-pay-bank cite span {
display: block;
float: left;
font-size: 18px;
padding: 0 20px;
_padding-top: 5px;
}
.f-pay-defray .f-pay-bank cite span a {
color: #333;
}
.f-pay-defray .f-pay-bank cite span.current {
border-top: 2px solid #f60;
margin-top: -2px;
background: #fff;
height: 39px;
line-height: 37px;
}
.f-pay-defray .f-pay-bank cite span.current a,.f-pay-bank cite span a:hover {
color: #f60;
}
.f-pay-defray2 {
border-top: 1px solid #ddd;
}
.f-pay-defray2 p {
line-height: 134px;
}
.f-pay-defray2 .f-pay-bank {
height: 134px;
}
.f-pay-defray2 h3 {
font-size: 18px;
padding-top: 20px;
padding-left: 20px;
display: none;
}
.f-pay-bank dl {
padding: 18px 0 20px;
}
.f-pay-bank dd {
float: left;
width: 150px;
height: 30px;
border: 1px solid #fff;
margin: 2px 0 0 40px;
padding: 7px 0;
overflow: hidden;
display: inline;
outline: none;
}
.f-pay-bank dd.checked {
border: 1px solid #f60;
}
.f-pay-bank dd input {
float: left;
width: 20px;
position: relative;
top: 10px;
*top: 4px;
margin-left: 7px;
hide-focus: expression(this.hideFocus=true);
outline: none;
}
.f-pay-bank dd label {
float: left;
width: 123px;
cursor: pointer;
hide-focus: expression(this.hideFocus=true);
outline: none;
}
.f-pay-bank dd span {
background-image: url(../../MyCart/images/bank-logo.gif?v=0818);
display: block;
background-repeat: no-repeat;
overflow: hidden;
height: 30px;
margin: 0 auto;
}
.f-pay-bank dd span.zh_bank {
width: 104px;
background-position: 0 0;
}
.f-pay-bank dd span.gh_bank {
width: 102px;
background-position: 0 -35px;
}
.f-pay-bank dd span.jh_bank {
width: 104px;
background-position: 0 -70px;
}
.f-pay-bank dd span.nh_bank {
width: 104px;
background-position: 0 -105px;
}
.f-pay-bank dd span.zg_bank {
width: 92px;
background-position: 0 -140px;
}
.f-pay-bank dd span.jt_bank {
width: 110px;
background-position: 0 -175px;
}
.f-pay-bank dd span.hx_bank {
width: 104px;
background-position: 0 -210px;
}
.f-pay-bank dd span.xy_bank {
width: 105px;
background-position: 0 -245px;
}
.f-pay-bank dd span.sh_bank {
width: 98px;
background-position: 0 -280px;
}
.f-pay-bank dd span.ms_bank {
width: 105px;
background-position: 0 -315px;
}
.f-pay-bank dd span.gf_bank {
width: 109px;
background-position: 0 -350px;
}
.f-pay-bank dd span.pa_bank {
width: 104px;
background-position: 0 -385px;
}
.f-pay-bank dd span.pf_bank {
width: 87px;
background-position: 0 -420px;
}
.f-pay-bank dd span.zx_bank {
width: 104px;
background-position: 0 -455px;
}
.f-pay-bank dd span.gd_bank {
width: 106px;
background-position: 0 -490px;
}
.f-pay-bank dd span.nj_bank {
width: 100px;
background-position: 0 -525px;
}
.f-pay-bank dd span.yz_bank {
width: 108px;
background-position: 0 -560px;
}
.f-pay-bank dd span.hz_bank {
width: 106px;
background-position: 0 -595px;
}
.f-pay-bank dd span.lb_bank {
width: 100px;
background-position: 0 -630px;
}
.f-pay-bank dd span.bj_bank {
width: 104px;
background-position: 0 -665px;
}
.f-pay-bank dd span.cqls_bank {
width: 113px;
background-position: 0 -700px;
}
.f-pay-bank dd span.bj2_bank {
width: 109px;
background-position: 0 -735px;
}
.f-pay-bank dd span.qd_bank {
width: 104px;
background-position: 0 -770px;
}
.f-pay-bank dd span.cd_bank {
width: 102px;
background-position: 0 -805px;
}
.f-pay-bank dd span.u-bank-wy {
width: 96px;
background-position: 0 -840px;
}
.f-pay-bank dd span.u-bank-kq {
width: 68px;
background-position: -8px -875px;
}
.f-pay-bank dd span.u-bank-online {
width: 91px;
background-position: 0 -910px;
}
.f-pay-bank dd span.u-bank-weixin {
width: 100px;
background-position: 0 -945px;
}
.f-pay-bank dd span.u-bank-cft {
width: 84px;
background-position: 0 -980px;
margin: 0 0 0 13px;
}
.f-pay-bank dd span.jd_bank {
background-position: 8px -1017px;
}
.f-pay-bank dd span.u-bank-qqmobile {
width: 110px;
background-position: 3px -1058px;
}
.f-pay-bank dd span.u-bank-zfb {
background-position: 17px -1100px;
}
div.pageDialog {
-moz-box-shadow: 2px 2px 2px #999;
-webkit-box-shadow: 2px 2px 2px #999;
box-shadow: 2px 2px 2px #999;
}
.payment_ts {
margin: 40px 0 0 50px;
padding: 0;
}
.payment_ts h3 {
font-size: 18px;
color: #f60;
}
.payment_ts h3 s.z-arrows {
width: 20px;
height: 20px;
float: left;
display: block;
margin-right: 4px;
background-position: -33px -27px;
position: relative;
top: 4px;
*top: 5px;
_top: -2px;
}
.payment_ts ul {
padding: 0 0 0 23px;
font-size: 14px;
}
.payment_ts .payment_ts_con {
width: 350px;
line-height: 21px;
color: #666;
}
.payment_ts .payment_ts_links {
padding: 0;
color: #999;
}
.payment_ts_but {
margin-top: 15px;
font-size: 16px;
line-height: 35px;
}
.payment_ts_but a:hover {
text-decoration: underline;
}
.payment_ts_but a.pay_tipsbut {
float: left;
display: block;
width: 92px;
height: 35px;
line-height: 35px;
border-radius: 2px;
text-align: center;
background: #f60;
color: #fff;
margin-right: 10px;
cursor: pointer;
}
.payment_ts_but a.pay_tipsbut:hover {
background: #f40;
color: #fff;
text-decoration: none!important;
}
.login_qqcon:after {
content: "\0020";
display: block;
height: 0;
clear: both;
}
.login_qqcon {
zoom: 1;
margin-top: 38px;
margin-left: 20px;
}
.login-tips-img {
float: left;
display: inline;
margin-top: 0;
}
.login-qq-img {
float: left;
display: inline;
margin-right: 10px;
}
.login-qq-img img {
width: 100px;
height: 100px;
padding: 5px;
border: 1px solid #E3E3E3;
}
.login_qqcon .login_qqConInput {
margin-left: 138px;
}
.login_qqcon .login_qqConInput dl {
height: 60px;
margin-bottom: 15px;
}
.login_qqcon .login_qqConInput dl a {
line-height: 37px;
}
.login_qqcon .login_qqConInput dt {
height: 37px;
}
.login_qqcon .login_qqConInput dd {
padding-left: 65px;
}
.Mem_qq_orangebut,.Mem_qq_graybut {
background: url(http://skin.1yyg.com/Passport/Images/qqlogin_btn.png?v=130904) no-repeat;
display: inline-block;
font-size: 16px;
font-weight: bold;
line-height: 43px;
color: #f60;
text-indent: 50px;
}
.Mem_qq_orangebut:hover {
color: #f60;
}
.Mem_qq_orangebut {
width: 140px;
height: 43px;
background-position: 0 0;
margin-right: 22px;
}
.Mem_qq_graybut {
width: 140px;
height: 43px;
background-position: -160px 0;
color: #2AF;
}
.Mem_qq_graybut:hover {
color: #2AF;
}
.login_qq_tips_txt {
margin-bottom: 20px;
font-size: 14px;
line-height: 24px;
color: #666;
}
div.pageDialogMain .login_qq_tips_txt h2 {
font-size: 14px;
font-weight: bold;
color: #f60;
margin: 0;
margin-bottom: 5px;
font-family: arial,宋体;
padding: 0;
background: none;
}
div.pageDialogMain .login_qq_tips_txt p {
width: 310px;
display: inline-block;
padding: 0;
margin: 0;
}
.g-results-success {
width: 500px;
margin: 0 auto;
padding: 40px 0 20px;
}
.g-results-success i.z-arrows {
display: block;
width: 42px;
height: 42px;
margin: 0 auto 5px;
background-position: 0 -167px;
overflow: hidden;
}
.g-results-success dl {
text-align: center;
}
.g-results-success dt {
color: #00a800;
font-size: 22px;
margin-bottom: 5px;
height: 40px;
line-height: 40px;
}
.g-results-success dd {
font-size: 14px;
position: relative;
line-height: 22px;
padding-top: 15px;
}
.g-results-success dd a {
display: inline-block;
width: 140px;
height: 32px;
line-height: 32px;
text-align: center;
border: 1px solid #ddd;
color: #999;
margin-right: 12px;
}
.g-results-success dd a:hover {
color: #f60;
border: 1px solid #f60;
}
.g-results-failure i.z-arrows {
background-position: 0 -122px;
}
.g-results-failure dt {
color: #666;
}
.g-jd-first {
font-weight: normal;
color: #f60;
font-size: 12px;
padding-right: 10px;
}
.g-results-loading {
width: 320px;
margin: 0 auto;
padding: 150px 0 150px;
text-align: center;
}
.g-results-loading span {
font-size: 16px;
height: 30px;
line-height: 30px;
}
.g-results-loading b {
display: block;
background-image: url(../../MyCart/images/loading-2014.gif?v=141218);
width: 320px;
height: 12px;
margin-top: 20px;
}
.g-resulst-prompt {
width: 411px;
margin: 30px auto 20px;
text-align: center;
position: relative;
}
.g-resulst-prompt span {
color: #666;
font-size: 14px;
padding: 0 20px;
background: #fff;
position: absolute;
bottom: -5px;
left: 130px;
}
.g-resulst-prompt b {
width: 411px;
font-size: 0;
height: 1px;
border-top: 1px solid #ddd;
display: inline-block;
}
.g-resulst-failure,.g-results-info {
clear: both;
width: 948px;
margin: 0 auto;
border: 1px solid #ddd;
}
.g-resulst-failure {
border-top: 0 none;
margin-bottom: 40px;
}
.g-resulst-failure li {
height: 24px;
padding: 17px 0;
border-top: 1px solid #ddd;
font-size: 14px;
color: #999;
}
.g-resulst-failure span {
float: left;
display: block;
width: 450px;
height: 24px;
line-height: 24px;
margin-left: 20px;
word-break: break-all;
overflow: hidden;
}
.g-resulst-failure span a {
color: #333;
}
.g-resulst-failure span a:hover {
color: #f60;
text-decoration: underline;
}
.g-resulst-failure cite {
float: left;
padding-left: 30px;
}
.g-resulst-failure cite a {
color: #f60;
text-decoration: underline;
}
.g-results-info .u-results-name {
width: 380px;
word-break: break-all;
height: 24px;
overflow: hidden;
}
.g-results-info .u-results-time {
width: 180px;
padding-left: 30px;
}
.g-results-info .u-results-visitors {
width: 90px;
text-align: center;
}
.g-results-info dl {
text-align: left;
}
.g-results-info dl span {
float: left;
display: block;
display: inline;
line-height: 24px;
margin: 0 12px 0 20px;
}
.g-results-info dt {
height: 26px;
line-height: 26px;
background: #f2f2f2;
font-size: 12px;
color: #999;
overflow: hidden;
}
.g-results-info dd {
clear: both;
width: 100%;
float: left;
padding: 17px 0;
display: inline-block;
font-size: 14px;
color: #666;
border-top: 1px solid #ddd;
}
.g-results-info dd span em {
float: left;
padding: 0 5px;
}
.g-results-info dd span em a {
color: #666;
}
.g-results-info dd span em a:hover {
color: #f60;
text-decoration: underline;
}
.g-results-info dd span.u-results-name span {
height: 24px;
overflow: hidden;
word-break: break-all;
}
.g-results-info dd span.u-results-name a {
color: #333;
}
.g-results-info dd span.u-results-name a:hover {
color: #f60;
text-decoration: underline;
}
.g-wx-banner {
clear: both;
margin: 80px auto 0;
}
.g-wx-banner img {
display: block;
margin: 0 auto;
}
@media screen and (max-width:1190px) {
body {
min-width: 990px;
}
.w1190 {
width: 990px;
margin: 0 auto;
}
.m-cart-list dd {
width: 970px;
}
.m-cart-list .f-cart-comm {
width: 420px;
}
.m-cart-list dt span.f-cart-comm {
width: 370px;
}
.m-cart-list dd li.f-cart-comm cite.u-cart-name span {
width: 310px;
}
.m-cart-list .f-cart-price {
margin-left: 70px;
}
.m-cart-list .f-cart-plusLess {
margin-left: 20px;
text-align: center;
}
.m-cart-list .f-cart-subtotal {
margin-left: 40px;
}
.m-recomm-con {
width: 988px;
}
.f-recomm-list {
width: 247px;
}
.f-recomm-list dl {
width: 216px;
}
.f-recomm-list dt {
margin: 10px 8px 0;
}
.f-recomm-list dt img {
width: 200px;
height: 200px;
}
.f-recomm-list dd {
width: 200px;
}
.f-recomm-hover .f-recomm-list {
width: 216px;
}
.f-recomm-hover a.u-cart-add {
left: 99px;
}
.f-recomm-hover .z-mask {
_width: 247px;
}
.m-pay-list dt span.f-pay-comm {
width: 510px;
}
.m-pay-list .f-pay-comm {
width: 530px;
}
.m-pay-list dd li.f-pay-comm cite.u-pay-name {
width: 465px;
}
.m-pay-list dd li.f-pay-comm cite.limitbuy {
width: 435px;
}
.m-pay-list .f-pay-price {
margin-left: 80px;
}
.m-pay-list .f-pay-plusLess {
margin-left: 28px;
}
.m-pay-list .f-pay-subtotal {
margin-left: 5px;
}
.m-pay-list dd {
width: 990px;
}
.f-pay-defray p {
display: none;
}
.f-pay-defray2 .f-pay-bank {
height: 173px;
}
.f-pay-defray2 h3 {
display: block;
}
.f-pay-defray2 dl {
padding: 10px 0 20px;
}
.f-pay-defray .f-pay-bank {
width: 988px;
}
.g-results-info dl span {
margin-left: 10px;
}
.g-results-info .u-results-name {
width: 320px;
}
.g-wx-banner img {
width: 988px;
}
}
body.f-width-change .w1190 {
width: 990px;
margin: 0 auto;
}
body.f-width-change .m-cart-list dd {
width: 970px;
}
body.f-width-change .m-cart-list .f-cart-comm {
width: 420px;
}
body.f-width-change .m-cart-list dt span.f-cart-comm {
width: 370px;
}
body.f-width-change .m-cart-list dd li.f-cart-comm cite.u-cart-name span {
width: 310px;
}
body.f-width-change .m-cart-list .f-cart-price {
margin-left: 70px;
}
body.f-width-change .m-cart-list .f-cart-plusLess {
margin-left: 20px;
text-align: center;
}
body.f-width-change .m-cart-list .f-cart-subtotal {
margin-left: 40px;
}
body.f-width-change .m-recomm-con {
width: 988px;
}
body.f-width-change .f-recomm-list {
width: 247px;
}
body.f-width-change .f-recomm-list dl {
width: 217px;
}
body.f-width-change .f-recomm-list dt {
margin: 10px 8px 0;
}
body.f-width-change .f-recomm-list dt img {
width: 200px;
height: 200px;
}
body.f-width-change .f-recomm-list dd {
width: 200px;
}
body.f-width-change .f-recomm-hover .f-recomm-list {
width: 216px;
}
body.f-width-change .f-recomm-hover a.u-cart-add {
left: 99px;
}
body.f-width-change .f-recomm-hover .z-mask {
_width: 247px;
}
body.f-width-change .m-pay-list dt span.f-pay-comm {
width: 510px;
}
body.f-width-change .m-pay-list .f-pay-comm {
width: 530px;
}
body.f-width-change .m-pay-list dd li.f-pay-comm cite.u-pay-name {
width: 465px;
}
body.f-width-change .m-pay-list dd li.f-pay-comm cite.limitbuy {
width: 435px;
}
body.f-width-change .m-pay-list .f-pay-price {
margin-left: 80px;
}
body.f-width-change .m-pay-list .f-pay-plusLess {
margin-left: 28px;
}
body.f-width-change .m-pay-list .f-pay-subtotal {
margin-left: 5px;
}
body.f-width-change .m-pay-list dd {
width: 990px;
}
body.f-width-change .f-pay-defray p {
display: none;
}
body.f-width-change .f-pay-defray2 .f-pay-bank {
height: 173px;
}
body.f-width-change .f-pay-defray2 h3 {
display: block;
}
body.f-width-change .f-pay-defray2 dl {
padding: 10px 0 20px;
}
body.f-width-change .f-pay-defray .f-pay-bank {
width: 988px;
}
body.f-width-change .g-results-info dl span {
margin-left: 10px;
}
body.f-width-change .g-results-info .u-results-name {
width: 320px;
}
body.f-width-change .g-wx-banner img {
width: 988px;
} | 0.4917 | 0.084417 |
.logo{
margin: 20px 0;
padding: 10px;
box-shadow: 0 0 7px rgba(0,0,0,0.5);
}
.navbar-brand{
color: #7e8341;
font-weight: bold;
font-size: 40px;
padding: 5px 15px;
border: 2px dashed #c7c9a9;
margin-right: 0;
}
.navbar-brand:hover{
color:#7e8341;
}
.logo-container{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.logo-diet{
height: 64px;
background: #ffffff;
width: auto;
padding: 6px 12px;
border: 1px solid #999999;
border-radius: 32px;
box-shadow: 0 0 7px rgba(0,0,0,0.4);
}
.logo-diet img{
height: 45px;
}
.nutritionist{
font-size: 24px;
font-weight: bold;
color:#4d4729;
letter-spacing: 2px;
}
.logo-description{
text-align: center;
height: auto;
}
.logo-description p{
font-style: italic;
margin: 4px;
color: #7e8341;
}
.menu{
margin: 0;
padding: 10px 0;
list-style-type: none;
width: 100%;
background: #c7c9a9;
}
.menu ul{
margin: 0;
padding: 0;
}
.menu li{
display: inline;
margin: 10px 0;
}
.menu li a {
color: #4d4729;
padding-right: 20px;
text-decoration: none;
font-size: 16px;
border-right: 1px solid #ffffff;
padding-left: 20px;
}
.menu ul li:nth-child(1) a{
padding-left: 0;
}
.menu ul li:nth-child(5) a{
border: none;
}
.add-recipe-button{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.create-step-short{
padding: 0;
margin-bottom: 30px;
box-sizing: border-box;
}
.step-header{
padding: 10px 0;
border-bottom: 1px solid #ced4da;
border-top: 1px solid #ced4da;
}
#btnStepRemove{
margin-left: -20px;
}
.template-body{
padding: 10px 0;
border-bottom: 1px solid #ced4da;
}
.filters{
box-shadow: 0 0 7px rgba(0,0,0,0.4);
padding: 15px;
margin-top: 20px;
margin-bottom: 20px;
display: none;
}
.main-title{
text-align: center;
width: 100%;
font-size: 24px;
font-weight: bold;
color: #4d4729;
margin-bottom: 20px;
}
.second-title{
text-align: center;
width: 100%;
font-size: 16px;
font-weight: bold;
color: #4d4729;
margin-bottom: 20px;
}
.recipe-list{
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}
.recipe{
width: 350px;
position: relative;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
border: 1px solid #b1cecc;
margin-bottom: 40px;
}
.user-info{
width: 100%;
height: 80px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
background: #b1cecc;
}
.user-content{
width: 70%;
display: flex;
justify-content: start;
align-items: center;
}
.user-photo{
width: 30%;
margin: 0 10px 0 15px;
}
.user-photo img{
height: 60px;
width: 60px;
border-radius: 30px;
}
.user-state{
width: 68%;
display: flex;
flex-direction: column;
}
.user-name{
color: #4d4729;
font-weight: bold;
font-size: 20px;
}
.user-date{
color: #7e8341;
}
.user-rating{
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-end;
width: 25%;
margin-right: 15px;
color: #4d4729;
font-size: 24px;
text-align: right;
font-weight: bold;
}
.user-rating p{
color: #666666;
font-size: 12px;
text-align: right;
margin: 0;
}
.recipe-photo{
width: 100%;
height: 220px;
background: #1d643b;
position: relative;
}
.recipe-photo img{
width: 100%;
height: 220px;
}
.calory {
position: absolute;
bottom: 20px;
right: 20px;
padding: 0 10px;
height: 40px;
background: #b1cecc;
border-radius: 10px;
line-height: 40px;
text-align: center;
font-size: 16px;
font-weight: bold;
color: #4d4729;
}
.recipe-info{
width: 100%;
padding: 15px;
height: 210px;
}
.recipe-title{
font-weight: bold;
font-size: 24px;
color: #7e8341;
margin: 20px 0 10px 0;
line-height: 0;
}
.recipe-category{
font-size: 16px;
color: #c7c9a9;
margin: 27px 0 20px 0;
line-height: 0;
}
.recipe-description{
font-size: 16px;
color: #666;
}
.recipe-info a{
color: #c7c9a9;
}
.recipe-info a:hover{
color: #9ea868;
text-decoration: none;
}
.recipe-ratio{
width: 100%;
display: flex;
padding: 10px 15px;
justify-content: flex-start;
align-items: center;
background: #b1cecc;
}
.recipe-like{
width: 30%;
color: #4d4729;
font-size: 24px;
font-weight: bold;
}
.recipe-like img{
width: 25%;
margin-right: 5px;
}
.recipe-dislike{
width: 30%;
color: #4d4729;
font-size: 24px;
font-weight: bold;
}
.recipe-dislike img{
width: 25%;
margin-right: 5px;
margin-top: 3px;
}
.button-section{
display: flex;
justify-content: flex-start;
align-items: center;
margin: 10px 0;
}
.recipe-button{
background: #7e8341;
padding: 10px 20px;
border: 1px solid #ced4da;
margin-right: 20px;
border-radius: 10px;
}
.recipe-button a{
color: #fff;
}
.recipe-button:hover{
box-shadow: 0 0 10px rgba(0,0,0,0.5);
transition: 1s;
background: #4d4729;
}
.recipe-button a:hover{
text-decoration: none;
}
.filter-button{
background: #c7c9a9;
padding: 10px 20px;
border: 1px solid #ced4da;
border-radius: 10px;
color: #4d4729;
}
.filter-button:hover{
box-shadow: 0 0 10px rgba(0,0,0,0.5);
transition: 1s;
background: #9ea868;
cursor: pointer;
}
.single-recipe{
width: 100%;
background: #fff;
padding: 30px;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.single-recipe_header{
width: 100%;
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.single-recipe_photo{
width: 48%;
}
.photo{
width: 100%;
}
.photo img{
width: 100%;
height: auto;
}
.single-recipe_info{
width: 48%;
}
.single-recipe_title{
text-align: left;
font-weight: bold;
color: #4d4729;
margin-bottom: 10px;
}
.single-recipe_category{
text-align: left;
color: #999999;
margin-bottom: 30px;
}
.single-recipe_time{
text-align: left;
color: #4d4729;
margin-bottom: 20px;
}
.single-recipe_time span{
color: #7e8341;
font-weight: bold;
font-size: 24px;
}
.single-recipe_ratio{
width: 100%;
display: flex;
padding: 10px 15px;
justify-content: flex-start;
align-items: center;
margin-bottom: 20px;
}
.recipe-user-info{
width: 100%;
height: 80px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-top: -20px;
}
.single-recipe_ingredients{
color: #4d4729;
font-size: 24px;
margin-top: 20px;
}
.single-recipe_description{
color: #4d4729;
font-size: 20px;
margin-bottom: 20px;
}
.step-info{
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.step-photo{
width: 48%;
}
.step-photo img{
width: 100%;
height: auto;
}
.step-description{
width: 48%;
text-align: left;
}
.comment-list{
width: 100%;
margin:20px 0;
}
.comment{
margin-bottom: 20px;
background: #d4e6f6;
border: 1px solid #b1cecc;
padding: 20px;
border-radius: 20px;
}
.comment-date{
color: #7e8341;
font-size: 14px;
}
.comment-text{
color: #666666;
font-size: 16px;
margin: 8px 0;
}
.category-list{
display: flex;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
}
.category-book{
width: 20%;
background: #b1cecc;
padding: 20px;
margin-right: 40px;
}
.category-name{
border: 2px dashed #ffffff;
padding: 10px;
color: #7e8341;
font-size: 24px;
font-weight: bold;
text-align: center;
transition: 1s;
}
.category-book a{
text-decoration: none;
}
.category-name:hover{
border: 2px solid #ffffff;
background: #ced4da;
}
.category-book:hover a{
text-decoration: none;
}
.delete-from-cooker{
position: absolute;
height: 40px;
background: #e3342f;
padding: 10px;
top:-42px;
}
.delete-from-cooker a{
color: #ffffff;
font-size: 14px;
}
.delete-from-cooker:hover{
cursor: pointer;
}
.delete-from-cooker a:hover{
text-decoration: none;
}
.own-table{
border-spacing: 10px 0;
border: 2px solid #7e8341;
}
.own-table th {
padding: 5px 10px;
background: #9ea868;
color: #ffffff;
border-right: 2px solid;
font-size: 14px;
text-align: center;
font-style: normal;
font-weight: normal;
}
.own-table td {
vertical-align: middle;
padding: 10px;
font-size: 14px;
text-align: center;
border-top: 2px solid #7e8341;
border-bottom: 2px solid #7e8341;
border-right: 2px solid #7e8341;
color: #4d4729;
}
.table-photo img{
width: 100px;
height: auto;
margin: 10px;
}
.personal-menu{
margin: 0;
padding: 10px 0;
}
.personal-menu ul{
margin: 0;
padding: 0;
list-style-type: none;
}
.personal-menu li{
margin: 10px 0;
}
.personal-menu li a {
color: #7e8341;
padding-right: 30px;
text-decoration: none;
font-size: 20px;
font-weight: bold;
opacity:0.7;
transition: 1s;
}
.personal-menu li a:hover {
opacity: 1;
}
.message-sender{
width: 80%;
margin-bottom: 20px;
background: #d4e6f6;
border: 1px solid #b1cecc;
padding: 20px;
border-radius: 20px;
}
.comment-sender{
color: #7e8341;
font-size: 14px;
}
.comment-sender{
color: #666666;
font-size: 16px;
margin: 8px 0;
}
.message-taker{
width: 80%;
margin-bottom: 20px;
background: #ebf1f6;
border: 1px solid #b1cecc;
padding: 20px;
border-radius: 20px;
margin-left: 20%;
}
.comment-sender{
color: #7e8341;
font-size: 14px;
}
.comment-sender{
color: #666666;
font-size: 16px;
margin: 8px 0;
}
.doctor-list{
width: 100%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.doctor{
width: 100%;
display: flex;
justify-content: flex-start;
align-items: flex-start;
background: #ebf1f6;
padding: 20px;
margin-bottom: 20px;
}
.nutritionist-info{
width: 100%;
background: #ebf1f6;
padding-bottom: 20px;
}
.nutritionist-description{
width: 100%;
padding:0 20px 20px 20px;
}
.info{
font-size: 16px;
color: #666666;
}
.doctor label{
font-size: 16px;
color: #7e8341;
margin-bottom: 0px;
font-weight: bold;
}
.doctor-info{
width: 20%;
padding-right: 20px;
border-right: 2px solid #ffffff;
}
.doctor-photo{
width: 100%;
}
.doctor-photo img{
width: 100%;
height: auto;
box-shadow: 0 0 7px rgba(0,0,0,0.5);
}
.doctor-ratio{
width: 100%;
display: flex;
padding: 10px 15px;
justify-content: flex-start;
align-items: flex-start;
}
.doctor-like{
width: 40%;
color: #4d4729;
font-size: 24px;
font-weight: bold;
margin-right: 20px;
}
.doctor-like img{
width: 55%;
margin-right: 5px;
}
.doctor-dislike{
width: 40%;
color: #4d4729;
font-size: 24px;
font-weight: bold;
}
.doctor-dislike img{
width: 55%;
margin-right: 5px;
margin-top: 3px;
}
.doctor-description{
width: 75%;
padding-left: 20px;
}
.user-not-block{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
box-sizing: border-box;
background: #ebf1f6;
margin-bottom: 20px;
}
.user-block{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
box-sizing: border-box;
background: #95999c;
margin-bottom: 20px;
}
.user-admin-photo{
width: 10%;
}
.user-admin-photo img{
width: 60px;
height: 60px;
border-radius: 30px;
}
.user-admin-name{
width: 35%;
font-size: 20px;
color: #7e8341;
font-weight: bold;
}
.user-admin-email{
width: 35%;
font-size: 20px;
color: #7e8341;
font-style: italic;
}
.user-admin-button{
width: 20%;
}
.StripeElement {
box-sizing: border-box;
height: 40px;
padding: 10px 12px;
border: 1px solid transparent;
border-radius: 4px;
background-color: white;
box-shadow: 0 1px 3px 0 #e6ebf1;
-webkit-transition: box-shadow 150ms ease;
transition: box-shadow 150ms ease;
}
.StripeElement--focus {
box-shadow: 0 1px 3px 0 #cfd7df;
}
.StripeElement--invalid {
border-color: #fa755a;
}
.StripeElement--webkit-autofill {
background-color: #fefde5 !important;
} | public/css/main.css | .logo{
margin: 20px 0;
padding: 10px;
box-shadow: 0 0 7px rgba(0,0,0,0.5);
}
.navbar-brand{
color: #7e8341;
font-weight: bold;
font-size: 40px;
padding: 5px 15px;
border: 2px dashed #c7c9a9;
margin-right: 0;
}
.navbar-brand:hover{
color:#7e8341;
}
.logo-container{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.logo-diet{
height: 64px;
background: #ffffff;
width: auto;
padding: 6px 12px;
border: 1px solid #999999;
border-radius: 32px;
box-shadow: 0 0 7px rgba(0,0,0,0.4);
}
.logo-diet img{
height: 45px;
}
.nutritionist{
font-size: 24px;
font-weight: bold;
color:#4d4729;
letter-spacing: 2px;
}
.logo-description{
text-align: center;
height: auto;
}
.logo-description p{
font-style: italic;
margin: 4px;
color: #7e8341;
}
.menu{
margin: 0;
padding: 10px 0;
list-style-type: none;
width: 100%;
background: #c7c9a9;
}
.menu ul{
margin: 0;
padding: 0;
}
.menu li{
display: inline;
margin: 10px 0;
}
.menu li a {
color: #4d4729;
padding-right: 20px;
text-decoration: none;
font-size: 16px;
border-right: 1px solid #ffffff;
padding-left: 20px;
}
.menu ul li:nth-child(1) a{
padding-left: 0;
}
.menu ul li:nth-child(5) a{
border: none;
}
.add-recipe-button{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
.create-step-short{
padding: 0;
margin-bottom: 30px;
box-sizing: border-box;
}
.step-header{
padding: 10px 0;
border-bottom: 1px solid #ced4da;
border-top: 1px solid #ced4da;
}
#btnStepRemove{
margin-left: -20px;
}
.template-body{
padding: 10px 0;
border-bottom: 1px solid #ced4da;
}
.filters{
box-shadow: 0 0 7px rgba(0,0,0,0.4);
padding: 15px;
margin-top: 20px;
margin-bottom: 20px;
display: none;
}
.main-title{
text-align: center;
width: 100%;
font-size: 24px;
font-weight: bold;
color: #4d4729;
margin-bottom: 20px;
}
.second-title{
text-align: center;
width: 100%;
font-size: 16px;
font-weight: bold;
color: #4d4729;
margin-bottom: 20px;
}
.recipe-list{
display: flex;
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
}
.recipe{
width: 350px;
position: relative;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
border: 1px solid #b1cecc;
margin-bottom: 40px;
}
.user-info{
width: 100%;
height: 80px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
background: #b1cecc;
}
.user-content{
width: 70%;
display: flex;
justify-content: start;
align-items: center;
}
.user-photo{
width: 30%;
margin: 0 10px 0 15px;
}
.user-photo img{
height: 60px;
width: 60px;
border-radius: 30px;
}
.user-state{
width: 68%;
display: flex;
flex-direction: column;
}
.user-name{
color: #4d4729;
font-weight: bold;
font-size: 20px;
}
.user-date{
color: #7e8341;
}
.user-rating{
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-end;
width: 25%;
margin-right: 15px;
color: #4d4729;
font-size: 24px;
text-align: right;
font-weight: bold;
}
.user-rating p{
color: #666666;
font-size: 12px;
text-align: right;
margin: 0;
}
.recipe-photo{
width: 100%;
height: 220px;
background: #1d643b;
position: relative;
}
.recipe-photo img{
width: 100%;
height: 220px;
}
.calory {
position: absolute;
bottom: 20px;
right: 20px;
padding: 0 10px;
height: 40px;
background: #b1cecc;
border-radius: 10px;
line-height: 40px;
text-align: center;
font-size: 16px;
font-weight: bold;
color: #4d4729;
}
.recipe-info{
width: 100%;
padding: 15px;
height: 210px;
}
.recipe-title{
font-weight: bold;
font-size: 24px;
color: #7e8341;
margin: 20px 0 10px 0;
line-height: 0;
}
.recipe-category{
font-size: 16px;
color: #c7c9a9;
margin: 27px 0 20px 0;
line-height: 0;
}
.recipe-description{
font-size: 16px;
color: #666;
}
.recipe-info a{
color: #c7c9a9;
}
.recipe-info a:hover{
color: #9ea868;
text-decoration: none;
}
.recipe-ratio{
width: 100%;
display: flex;
padding: 10px 15px;
justify-content: flex-start;
align-items: center;
background: #b1cecc;
}
.recipe-like{
width: 30%;
color: #4d4729;
font-size: 24px;
font-weight: bold;
}
.recipe-like img{
width: 25%;
margin-right: 5px;
}
.recipe-dislike{
width: 30%;
color: #4d4729;
font-size: 24px;
font-weight: bold;
}
.recipe-dislike img{
width: 25%;
margin-right: 5px;
margin-top: 3px;
}
.button-section{
display: flex;
justify-content: flex-start;
align-items: center;
margin: 10px 0;
}
.recipe-button{
background: #7e8341;
padding: 10px 20px;
border: 1px solid #ced4da;
margin-right: 20px;
border-radius: 10px;
}
.recipe-button a{
color: #fff;
}
.recipe-button:hover{
box-shadow: 0 0 10px rgba(0,0,0,0.5);
transition: 1s;
background: #4d4729;
}
.recipe-button a:hover{
text-decoration: none;
}
.filter-button{
background: #c7c9a9;
padding: 10px 20px;
border: 1px solid #ced4da;
border-radius: 10px;
color: #4d4729;
}
.filter-button:hover{
box-shadow: 0 0 10px rgba(0,0,0,0.5);
transition: 1s;
background: #9ea868;
cursor: pointer;
}
.single-recipe{
width: 100%;
background: #fff;
padding: 30px;
box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
.single-recipe_header{
width: 100%;
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.single-recipe_photo{
width: 48%;
}
.photo{
width: 100%;
}
.photo img{
width: 100%;
height: auto;
}
.single-recipe_info{
width: 48%;
}
.single-recipe_title{
text-align: left;
font-weight: bold;
color: #4d4729;
margin-bottom: 10px;
}
.single-recipe_category{
text-align: left;
color: #999999;
margin-bottom: 30px;
}
.single-recipe_time{
text-align: left;
color: #4d4729;
margin-bottom: 20px;
}
.single-recipe_time span{
color: #7e8341;
font-weight: bold;
font-size: 24px;
}
.single-recipe_ratio{
width: 100%;
display: flex;
padding: 10px 15px;
justify-content: flex-start;
align-items: center;
margin-bottom: 20px;
}
.recipe-user-info{
width: 100%;
height: 80px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-top: -20px;
}
.single-recipe_ingredients{
color: #4d4729;
font-size: 24px;
margin-top: 20px;
}
.single-recipe_description{
color: #4d4729;
font-size: 20px;
margin-bottom: 20px;
}
.step-info{
display: flex;
justify-content: space-between;
align-items: flex-start;
}
.step-photo{
width: 48%;
}
.step-photo img{
width: 100%;
height: auto;
}
.step-description{
width: 48%;
text-align: left;
}
.comment-list{
width: 100%;
margin:20px 0;
}
.comment{
margin-bottom: 20px;
background: #d4e6f6;
border: 1px solid #b1cecc;
padding: 20px;
border-radius: 20px;
}
.comment-date{
color: #7e8341;
font-size: 14px;
}
.comment-text{
color: #666666;
font-size: 16px;
margin: 8px 0;
}
.category-list{
display: flex;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
}
.category-book{
width: 20%;
background: #b1cecc;
padding: 20px;
margin-right: 40px;
}
.category-name{
border: 2px dashed #ffffff;
padding: 10px;
color: #7e8341;
font-size: 24px;
font-weight: bold;
text-align: center;
transition: 1s;
}
.category-book a{
text-decoration: none;
}
.category-name:hover{
border: 2px solid #ffffff;
background: #ced4da;
}
.category-book:hover a{
text-decoration: none;
}
.delete-from-cooker{
position: absolute;
height: 40px;
background: #e3342f;
padding: 10px;
top:-42px;
}
.delete-from-cooker a{
color: #ffffff;
font-size: 14px;
}
.delete-from-cooker:hover{
cursor: pointer;
}
.delete-from-cooker a:hover{
text-decoration: none;
}
.own-table{
border-spacing: 10px 0;
border: 2px solid #7e8341;
}
.own-table th {
padding: 5px 10px;
background: #9ea868;
color: #ffffff;
border-right: 2px solid;
font-size: 14px;
text-align: center;
font-style: normal;
font-weight: normal;
}
.own-table td {
vertical-align: middle;
padding: 10px;
font-size: 14px;
text-align: center;
border-top: 2px solid #7e8341;
border-bottom: 2px solid #7e8341;
border-right: 2px solid #7e8341;
color: #4d4729;
}
.table-photo img{
width: 100px;
height: auto;
margin: 10px;
}
.personal-menu{
margin: 0;
padding: 10px 0;
}
.personal-menu ul{
margin: 0;
padding: 0;
list-style-type: none;
}
.personal-menu li{
margin: 10px 0;
}
.personal-menu li a {
color: #7e8341;
padding-right: 30px;
text-decoration: none;
font-size: 20px;
font-weight: bold;
opacity:0.7;
transition: 1s;
}
.personal-menu li a:hover {
opacity: 1;
}
.message-sender{
width: 80%;
margin-bottom: 20px;
background: #d4e6f6;
border: 1px solid #b1cecc;
padding: 20px;
border-radius: 20px;
}
.comment-sender{
color: #7e8341;
font-size: 14px;
}
.comment-sender{
color: #666666;
font-size: 16px;
margin: 8px 0;
}
.message-taker{
width: 80%;
margin-bottom: 20px;
background: #ebf1f6;
border: 1px solid #b1cecc;
padding: 20px;
border-radius: 20px;
margin-left: 20%;
}
.comment-sender{
color: #7e8341;
font-size: 14px;
}
.comment-sender{
color: #666666;
font-size: 16px;
margin: 8px 0;
}
.doctor-list{
width: 100%;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
.doctor{
width: 100%;
display: flex;
justify-content: flex-start;
align-items: flex-start;
background: #ebf1f6;
padding: 20px;
margin-bottom: 20px;
}
.nutritionist-info{
width: 100%;
background: #ebf1f6;
padding-bottom: 20px;
}
.nutritionist-description{
width: 100%;
padding:0 20px 20px 20px;
}
.info{
font-size: 16px;
color: #666666;
}
.doctor label{
font-size: 16px;
color: #7e8341;
margin-bottom: 0px;
font-weight: bold;
}
.doctor-info{
width: 20%;
padding-right: 20px;
border-right: 2px solid #ffffff;
}
.doctor-photo{
width: 100%;
}
.doctor-photo img{
width: 100%;
height: auto;
box-shadow: 0 0 7px rgba(0,0,0,0.5);
}
.doctor-ratio{
width: 100%;
display: flex;
padding: 10px 15px;
justify-content: flex-start;
align-items: flex-start;
}
.doctor-like{
width: 40%;
color: #4d4729;
font-size: 24px;
font-weight: bold;
margin-right: 20px;
}
.doctor-like img{
width: 55%;
margin-right: 5px;
}
.doctor-dislike{
width: 40%;
color: #4d4729;
font-size: 24px;
font-weight: bold;
}
.doctor-dislike img{
width: 55%;
margin-right: 5px;
margin-top: 3px;
}
.doctor-description{
width: 75%;
padding-left: 20px;
}
.user-not-block{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
box-sizing: border-box;
background: #ebf1f6;
margin-bottom: 20px;
}
.user-block{
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
box-sizing: border-box;
background: #95999c;
margin-bottom: 20px;
}
.user-admin-photo{
width: 10%;
}
.user-admin-photo img{
width: 60px;
height: 60px;
border-radius: 30px;
}
.user-admin-name{
width: 35%;
font-size: 20px;
color: #7e8341;
font-weight: bold;
}
.user-admin-email{
width: 35%;
font-size: 20px;
color: #7e8341;
font-style: italic;
}
.user-admin-button{
width: 20%;
}
.StripeElement {
box-sizing: border-box;
height: 40px;
padding: 10px 12px;
border: 1px solid transparent;
border-radius: 4px;
background-color: white;
box-shadow: 0 1px 3px 0 #e6ebf1;
-webkit-transition: box-shadow 150ms ease;
transition: box-shadow 150ms ease;
}
.StripeElement--focus {
box-shadow: 0 1px 3px 0 #cfd7df;
}
.StripeElement--invalid {
border-color: #fa755a;
}
.StripeElement--webkit-autofill {
background-color: #fefde5 !important;
} | 0.290477 | 0.149066 |
.header-container {
position: relative;
height: 80px;
}
.header {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99999;
background: #ffffff;
box-shadow: 1px 0 1px rgba(0,0,0,0.3);
}
.header.small {
position: fixed;
height: 60px;
}
.header.small .logo {
-ms-transform: scale(0.7);
-o-transform: scale(0.7);
-moz-transform: scale(0.7);
-webkit-transform: scale(0.7);
transform: scale(0.7);
font-size: 24px;
/*background-size: 100% auto;*/
display: block;
/*margin-top: 10px;*/
margin-top: 15px;
}
.header.small .custom-dropdown-menu {
margin-top: -20px;
}
.header.small .main-nav.in {
top: 60px;
}
.header.small .account-panel {
padding-top: 5px;
}
.logo
{
float: left;
/*width: 137px;
height: 46px;*/
width: 200px;
height: 40px;
font-size: 24px;
background-size: 100% auto;
display: block;
/*margin-top: 17px;*/
margin-top: 20px;
/*background: url('/modules/core/img/scanifly-logo.svg') no-repeat 0 50%;*/
background: url('/modules/core/img/Scanifly-solar-logo.png') no-repeat 0 50%;
background-size: 100% 100%;
margin-left: 10px;
-webkit-transition: -webkit-transform 300ms ease;
-moz-transition: transform 300ms ease;
-o-transition: transform 300ms ease;
transition: transform 300ms ease;
-o-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-ms-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
.account-panel
{
display: block;
float: right;
padding-top: 25px;
height: 80px;
}
.main-nav
{
display: inline-block;
float: none;
padding-right: 0;
}
.main-nav a
{
color: #2e2e2e;
font-size: 16px;
}
.main-nav li a:hover {
color: #005A8B!important;
}
.user-buttons a {
color: #005A8B;
}
.header .account-panel
{
padding-top: 18px;
background: none;
position: initial;
/*margin-left: -32px;*/
margin-left: -90px;
padding-right: 0;
}
.header .login-button:hover, .login-button:active, .login-button:focus
{
margin-top: 9px;
background-color: #005a8b;
color: #fff;
margin-left: 15px;
outline:none;
}
.header .user-buttons {
/*width: 195px;*/
float: right;
margin-top: -2px;
}
.header .main-nav {
float: right;
}
.header-container > .container {
padding-left: 0;
padding-right: 0;
}
.header .hamburger {
float: right;
margin-left: 40px;
margin-right: 10px;
}
.hamburger .navbar-toggle {
margin-right: 0;
}
.user-menu {
float: right;
}
.custom-dropdown-menu {
position: absolute;
top: 100%;
right: 0;
z-index: 1000;
/* display: none; */
float: left;
min-width: 160px;
padding: 5px 0;
margin: -1px 0 0;
font-size: 14px;
text-align: left;
list-style: none;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, .15);
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
-moz-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
border-top: none;
}
.custom-dropdown-menu.pull-right {
right: 0;
left: auto;
}
.custom-dropdown-menu .divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.custom-dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #333;
white-space: nowrap;
}
.custom-dropdown-menu > li > a:hover,
.custom-dropdown-menu > li > a:focus {
color: #262626;
text-decoration: none;
background-color: #f5f5f5;
}
.custom-dropdown-menu > .active > a,
.custom-dropdown-menu > .active > a:hover,
.custom-dropdown-menu > .active > a:focus {
color: #fff;
text-decoration: none;
background-color: #337ab7;
outline: 0;
}
.custom-dropdown-menu > .disabled > a,
.custom-dropdown-menu > .disabled > a:hover,
.custom-dropdown-menu > .disabled > a:focus {
color: #777;
}
.custom-dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
text-decoration: none;
cursor: not-allowed;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .custom-dropdown-menu {
display: block;
}
@media(max-width: 767px) {
.main-nav {
overflow: hidden;
}
.main-nav.in {
position: absolute;
left: 0;
right: 0;
top: 80px;
background: #fff;
text-align: center;
z-index: 9;
padding: 0;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.main-nav.navbar-collapse.in .navbar-nav {
float: none!important;
margin: 0;
width: 100%;
}
.main-nav.navbar-collapse.in .user-buttons {
width: 100%;
text-align: center;
}
.main-nav.navbar-collapse.in .user-buttons .btn-empty-border {
float: none!important;
display: block;
width: 85px;
margin: 0 auto;
}
.main-nav.navbar-collapse.in .navbar-nav li {
margin-bottom: 5px;
}
.main-nav.in .user-buttons {
margin-top: 5px;
}
.main-nav.navbar-collapse.in .user-buttons .btn-empty-border {
margin-bottom: 15px;
}
.header-container {
position: relative;
}
.navbar-collapse {
border-color: transparent !important;
}
.navbar-collapse.in {
border-color: #e7e7e7 !important;
}
}
@media(max-width: 480px) {
.header .account-panel {
padding-right: 0;
}
.header .hamburger {
margin-left: 20px;
}
.user-buttons .btn-empty-border {
margin-left: 10px;
}
.header .logo {
width: 150px;
height: 30px;
margin-top: 25px;
}
.custom-dropdown-menu {
left: 0;
right: 0;
text-align: center;
}
}
.navbar-default .navbar-toggle {
border-color: transparent!important;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
border-color: transparent!important;
background-color: white!important;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #005a8b;
}
.x-mark-backslash {
position: absolute;
top: 9px;
transform: translateY(0) rotate(45deg);
}
.x-mark-slash {
transform: translateY(0) rotate(-45deg);
} | public/modules/core/css/3.header.css | .header-container {
position: relative;
height: 80px;
}
.header {
position: relative;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 99999;
background: #ffffff;
box-shadow: 1px 0 1px rgba(0,0,0,0.3);
}
.header.small {
position: fixed;
height: 60px;
}
.header.small .logo {
-ms-transform: scale(0.7);
-o-transform: scale(0.7);
-moz-transform: scale(0.7);
-webkit-transform: scale(0.7);
transform: scale(0.7);
font-size: 24px;
/*background-size: 100% auto;*/
display: block;
/*margin-top: 10px;*/
margin-top: 15px;
}
.header.small .custom-dropdown-menu {
margin-top: -20px;
}
.header.small .main-nav.in {
top: 60px;
}
.header.small .account-panel {
padding-top: 5px;
}
.logo
{
float: left;
/*width: 137px;
height: 46px;*/
width: 200px;
height: 40px;
font-size: 24px;
background-size: 100% auto;
display: block;
/*margin-top: 17px;*/
margin-top: 20px;
/*background: url('/modules/core/img/scanifly-logo.svg') no-repeat 0 50%;*/
background: url('/modules/core/img/Scanifly-solar-logo.png') no-repeat 0 50%;
background-size: 100% 100%;
margin-left: 10px;
-webkit-transition: -webkit-transform 300ms ease;
-moz-transition: transform 300ms ease;
-o-transition: transform 300ms ease;
transition: transform 300ms ease;
-o-transform-origin: 0 0;
-moz-transform-origin: 0 0;
-ms-transform-origin: 0 0;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
}
.account-panel
{
display: block;
float: right;
padding-top: 25px;
height: 80px;
}
.main-nav
{
display: inline-block;
float: none;
padding-right: 0;
}
.main-nav a
{
color: #2e2e2e;
font-size: 16px;
}
.main-nav li a:hover {
color: #005A8B!important;
}
.user-buttons a {
color: #005A8B;
}
.header .account-panel
{
padding-top: 18px;
background: none;
position: initial;
/*margin-left: -32px;*/
margin-left: -90px;
padding-right: 0;
}
.header .login-button:hover, .login-button:active, .login-button:focus
{
margin-top: 9px;
background-color: #005a8b;
color: #fff;
margin-left: 15px;
outline:none;
}
.header .user-buttons {
/*width: 195px;*/
float: right;
margin-top: -2px;
}
.header .main-nav {
float: right;
}
.header-container > .container {
padding-left: 0;
padding-right: 0;
}
.header .hamburger {
float: right;
margin-left: 40px;
margin-right: 10px;
}
.hamburger .navbar-toggle {
margin-right: 0;
}
.user-menu {
float: right;
}
.custom-dropdown-menu {
position: absolute;
top: 100%;
right: 0;
z-index: 1000;
/* display: none; */
float: left;
min-width: 160px;
padding: 5px 0;
margin: -1px 0 0;
font-size: 14px;
text-align: left;
list-style: none;
background-color: #fff;
-webkit-background-clip: padding-box;
background-clip: padding-box;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, .15);
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
-moz-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
border-top: none;
}
.custom-dropdown-menu.pull-right {
right: 0;
left: auto;
}
.custom-dropdown-menu .divider {
height: 1px;
margin: 9px 0;
overflow: hidden;
background-color: #e5e5e5;
}
.custom-dropdown-menu > li > a {
display: block;
padding: 3px 20px;
clear: both;
font-weight: normal;
line-height: 1.42857143;
color: #333;
white-space: nowrap;
}
.custom-dropdown-menu > li > a:hover,
.custom-dropdown-menu > li > a:focus {
color: #262626;
text-decoration: none;
background-color: #f5f5f5;
}
.custom-dropdown-menu > .active > a,
.custom-dropdown-menu > .active > a:hover,
.custom-dropdown-menu > .active > a:focus {
color: #fff;
text-decoration: none;
background-color: #337ab7;
outline: 0;
}
.custom-dropdown-menu > .disabled > a,
.custom-dropdown-menu > .disabled > a:hover,
.custom-dropdown-menu > .disabled > a:focus {
color: #777;
}
.custom-dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
text-decoration: none;
cursor: not-allowed;
background-color: transparent;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.open > .custom-dropdown-menu {
display: block;
}
@media(max-width: 767px) {
.main-nav {
overflow: hidden;
}
.main-nav.in {
position: absolute;
left: 0;
right: 0;
top: 80px;
background: #fff;
text-align: center;
z-index: 9;
padding: 0;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.main-nav.navbar-collapse.in .navbar-nav {
float: none!important;
margin: 0;
width: 100%;
}
.main-nav.navbar-collapse.in .user-buttons {
width: 100%;
text-align: center;
}
.main-nav.navbar-collapse.in .user-buttons .btn-empty-border {
float: none!important;
display: block;
width: 85px;
margin: 0 auto;
}
.main-nav.navbar-collapse.in .navbar-nav li {
margin-bottom: 5px;
}
.main-nav.in .user-buttons {
margin-top: 5px;
}
.main-nav.navbar-collapse.in .user-buttons .btn-empty-border {
margin-bottom: 15px;
}
.header-container {
position: relative;
}
.navbar-collapse {
border-color: transparent !important;
}
.navbar-collapse.in {
border-color: #e7e7e7 !important;
}
}
@media(max-width: 480px) {
.header .account-panel {
padding-right: 0;
}
.header .hamburger {
margin-left: 20px;
}
.user-buttons .btn-empty-border {
margin-left: 10px;
}
.header .logo {
width: 150px;
height: 30px;
margin-top: 25px;
}
.custom-dropdown-menu {
left: 0;
right: 0;
text-align: center;
}
}
.navbar-default .navbar-toggle {
border-color: transparent!important;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
border-color: transparent!important;
background-color: white!important;
}
.navbar-default .navbar-toggle .icon-bar {
background-color: #005a8b;
}
.x-mark-backslash {
position: absolute;
top: 9px;
transform: translateY(0) rotate(45deg);
}
.x-mark-slash {
transform: translateY(0) rotate(-45deg);
} | 0.350866 | 0.070049 |
@charset "utf-8";
@import "font-awesome.min.css";
@font-face {
font-family: 'neo-regular';
src: url('../fonts/NEOSans-regular.ttf');
}
@font-face {
font-family: 'neo-medium';
src: url('../fonts/NEOSans-Medium.ttf');
}
@font-face {
font-family: 'neo-black';
src: url('../fonts/NEOSans-Black.ttf');
}
/*------------------------------------------------------------------
[***\ Table of contents /***]
-- General Style Reset
*/
* {
box-sizing: border-box;
font-family: 'neo-regular';
}
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;
}
html {
overflow: -moz-scrollbars-vertical;
/* overflow-y: scroll; */
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
nav ul {
list-style: none;
}
ul {
list-style: none;
}
iframe {
width: 100% !important;
border: 0 !important;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
a,
a:hover,
a:visited,
a:link {
margin: 0;
padding: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
text-decoration: none;
outline: none;
color: #121212
}
/* 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 #dfdfdf;
margin: 1em 0;
padding: 0;
}
input,
select,
textarea {
vertical-align: middle;
margin: 0;
padding: 0;
outline: 0;
resize: none;
}
img {
display: block;
border: 0;
max-width: 100%;
margin: auto;
}
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
padding: 0;
}
.no-border {
border: 0 !important;
}
.no-margin {
margin: 0 !important;
}
.no-padding {
padding: 0 !important;
}
p {
line-height: 1.5;
}
/* ****************************** Hearder ************************ */
header {
background-color: #060606;
background-image: url(../images/brick-wall-dark.png);
padding-bottom: 50px;
}
header .ads {
padding: 30px 0 50px;
}
header .ads .ads-mask {
text-align: center;
background-color: rgb(1, 147, 196);
min-height: 100px;
height: 100px;
width: 100%;
display: table;
margin: 0 auto;
border-radius: 5px;
}
header .ads h3 {
vertical-align: middle;
display: table-cell;
}
header .ads h3 a {
color: #fff;
}
header .navigation {}
header .navigation .logo {
padding: 0;
}
header .navigation .logo h1 {
display: block;
width: 180px;
height: 100px;
overflow: hidden;
}
header .navigation .logo h1 a {
display: inline-block;
}
header .navigation .search-box {
padding: 52px 0 0;
}
header .navigation .search-box input {
height: 40px;
}
header .navigation .search-box button {
color: white;
background-color: #01a6de;
border-color: #01a6de;
padding: 9px 14px;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .search-box button:hover {
color: white;
background-color: #eca026;
border-color: #eca026;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools {
text-align: left;
padding: 52px 0 0;
}
header .navigation .nav-tools ul.login-user {
display: none;
}
header .navigation .nav-tools ul li {
display: inline-block;
}
header .navigation .nav-tools ul.login-user li a {
display: inline-block;
background-color: #01a6de;
line-height: 26px;
padding: 7px 10px;
border-radius: 5px;
color: #fff;
margin-left: 10px;
font-size: 14px;cursor:pointer;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.login-user li a:hover {
background-color: #eca026;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.login-user li a span {
margin-left: 5px;
}
header .navigation .nav-tools ul.login-user li.dropdown a span {
max-width: 140px;
float: right;
text-align: right;
height: 25px;
overflow: hidden;
}
header .navigation .nav-tools ul.login-user li:last-child a {
margin-left: 0;
}
header .navigation .nav-tools ul.login-user li:last-child a img {
width: 20px;
height: 20px;
float: right;
margin-left: 10px;
border-radius: 50%;
}
header .navigation .nav-tools ul.login-user li:last-child ul {
padding: 0;
}
header .navigation .nav-tools ul.login-user li:last-child ul li {
display: block;
}
header .navigation .nav-tools ul.login-user li:last-child ul li a {
display: block;
background-color: #fff;
color: #333;
border-radius: 0;
border-bottom: 1px solid #eda228;
padding: 5px 10px;
border-left: 4px solid transparent;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.login-user li:last-child ul li:last-child a {
border-bottom: 0;
}
.open>a {
outline: 0;
background-color: #eea32a !important;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.login-user li:last-child ul li a:hover {
background-color: #eda228;
color: #fff;
border-left: 4px solid #01a6de;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.login-user li:last-child ul li a i {
margin-left: 5px;
}
header .navigation .nav-tools ul.visitor {}
header .navigation .nav-tools ul.visitor li a {
display: inline-block;
color: #fff;
margin-left: 5px;
font-size: 14px;
background: #0193c4;
padding: 5px;
border-radius: 4px;
line-height: 29px;cursor:pointer;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.visitor li a:hover {
background-color: #eca026;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.visitor li:last-child a {
margin-left: 0;
}
header .navigation .nav-tools ul.visitor li a i {
margin-left: 5px;
}
header .navigation .nav-tools ul li.search-icon i {
margin-left: 0 !important;
padding: 5px 10px;
}
header .questions {
margin-top: 30px;
border-top: 2px solid rgb(33, 33, 33);
padding-top: 30px;
overflow: hidden;
position: relative;
}
header .questions .ques-head {
text-align: center;
margin-bottom: 35px;
}
header .questions .ques-head h3 {
color: #fff;
font-family: neo-medium;
font-size: 20px;
}
header .questions .ques-head p {
display: none;
padding: 15px 0 0;
color: #0193c4;
font-size: 13px;
}
header .questions .block {
padding: 0 5px;
}
header .questions .block .inner {
position: relative;
text-align: center;
height: 350px;
width: 100%;
border-radius: 5px;
padding: 0 50px 30px;
overflow: hidden;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions .block .inner.orange-card:hover {
background-color: #e28d05;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions .block .inner.blue-card:hover {
background-color: #0092c4;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions .block .inner:hover {
cursor: pointer;
}
header .questions .block .inner.orange-card {
background-color: #eda127;
}
header .questions .block .inner.blue-card {
background-color: #01a6de;
}
header .questions .block .inner .choice-result {
position: absolute;
width: 100%;
right: 0;
opacity: 0;
visibility: hidden;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions .block .inner .choice-result span {
left: 0;
position: absolute;
width: 150px;
height: 150px;
background-color: #ffffff;
text-align: center;
color: #eda127;
font-size: 35px;
-webkit-transform: rotate(45deg) translate(-110px);
transform: rotate(45deg) translate(-110px);
}
header .questions .block .inner.blue-card .choice-result span {
color: #01a6de;
}
header .questions .block .inner .choice-result span i {
-webkit-transform: translate(48px, 48px) rotate(-45deg);
transform: translate(48px, 48px) rotate(-45deg);
}
header .questions .block .inner .choice-result h2 {
font-size: 50px;
color: #fff;
font-family: neo-black;
padding-top: 50px;
}
header .questions .block .inner .choice-result h2 b {
font-family: neo-black;
margin-right: 5px;
}
header .questions .block .inner .choice-result p {
color: rgb(140, 86, 0);
font-family: neo-medium;
padding: 5px 0 0 0;
}
header .questions .block .inner.blue-card .choice-result p {
color: #0a546d;
}
header .questions .block .inner h3 {
color: #fff;
font-size: 19px;
font-family: neo-medium;
line-height: 1.5;
position: relative;
top: 50%;
}
header .questions .ques-btn {}
header .questions .ques-btn a {
background-color: rgb(214, 85, 18);
position: absolute;
top: 60%;
z-index: 2;
height: 40px;
width: 40px;
display: inline-block;
text-align: center;
color: #fff;
line-height: 40px;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions .ques-btn a.arrow-right {
right: -45px;
}
header .questions .ques-btn a.arrow-left {
left: -45px;
}
header .questions:hover .ques-btn a.arrow-right {
right: 0;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions:hover .ques-btn a.arrow-left {
left: 0;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions .ques-divider {
position: absolute;
left: 50%;
width: 70px;
height: 70px;
background-color: #000000;
text-align: center;
border-radius: 50%;
top: 53%;
z-index: 2;
-webkit-transform: translate(-35px);
transform: translate(-35px);
box-shadow: 0 0 0 8px #161616;
line-height: 70px;
}
header .questions .ques-divider h3 {
color: #fff;
font-family: neo-medium;
font-size: 20px;
position: relative;
top: 29%;
}
/* ****************************** Content ***************************** */
.main-content .content-box {
padding: 30px 0;
}
.main-content .question-data {
border-bottom: 1px solid #dfdfdf;
margin-bottom: 30px;
}
.main-content .question-data .question-name {
padding: 15px 0;
}
.main-content .question-data .question-name h3 {
display: inline;
font-family: neo-medium;
font-size: 19px;
}
.main-content .question-data .question-name span {
margin: 0 8px;
color: #9e9e9e;
font-size: 14px;
}
.main-content .question-data .question-name a {
color: #01a6de;
font-family: neo-medium;
font-size: 14px;
display: inline-block;
}
.main-content .question-data .question-btns {
padding: 15px 25px 15px 0;
border-right: 1px solid #dfdfdf;
}
.main-content .question-data .question-btns ul li {
display: inline-block;
}
.main-content .question-data .question-btns ul li a {
display: inline-block;
background-color: #01a6de;
color: #fff;
width: 35px;
height: 35px;
line-height: 33px;
border: 2px solid transparent;
border-radius: 50%;
text-align: center;
font-size: 13px;
margin-left: 4px;
cursor: pointer;
-webkit-transition: all .3s;
transition: all .3s;
}
.main-content .question-data .question-btns ul li:last-child a.active {
background-color: #eda127;
border: 2px dotted #fff;
}
.main-content .content-box .content-right {
padding-left: 30px;
}
.main-content .content-box .content-right .ques-statics {
background-color: #f4f4f4;
padding: 20px;
margin-bottom: 30px;
border-radius: 5px;
}
.main-content .content-box .content-right .ques-statics ul li {
display: block;
padding-bottom: 3px;
}
.main-content .content-box .content-right .ques-statics ul li span {
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
background-color: #fff;
font-size: 15px;
margin-left: 10px;
}
.main-content .content-box .content-right .ques-statics ul li p {
display: inline-block;
color: #000;
font-size: 14px;
font-family: neo-medium;
}
.main-content .content-box .content-right .ques-statics ul li a {
background-color: #01a6de;
color: #fff;
padding: 5px;
display: inline-block;
font-size: 14px;
border-radius: 5px;
-webkit-transition: all .3s;
transition: all .3s;
}
.main-content .question-data .question-btns ul li a:hover,
.main-content .content-box .content-right .ques-statics ul li a:hover {
-webkit-transition: all .3s;
transition: all .3s;
background-color: #0080ac;
}
.main-content .content-box .content-right .ques-comments {}
.main-content .content-box .content-right .ques-comments .comments-head {
border-top: 1px solid #dfdfdf;
border-bottom: 1px solid #dfdfdf;
padding: 15px 0;
}
.main-content .content-box .content-right .ques-comments .comments-head .add-comment,
#comment-area {
float: right;
background-color: #f4f4f4;
padding: 10px;
position: relative;
margin-top: 10px;
display: none;
}
.main-content .content-box .content-right .ques-comments .comments-head .add-comment:before {
content: '';
position: absolute;
top: -15px;
left: 20px;
border-top: 8px solid transparent;
border-bottom: 8px solid #f4f4f4;
border-right: 8px solid transparent;
border-left: 8px solid transparent;
}
.main-content .content-box .content-right .ques-comments .comments-head .add-comment input,
#comment-area input {
border-radius: 5px;
width: 99%;
height: 36px;
}
.main-content .content-box .content-right .ques-comments .comments-head h3 {
display: inline-block;
float: right;
font-family: neo-medium;
font-size: 20px;
}
.main-content .content-box .content-right .ques-comments .comments-head button,
#comment-area button {
display: inline-block;
float: left;
background-color: #01a6de;
color: #fff;
border: 0;
padding: 8px 12px;
border-radius: 5px;
font-size: 14px;
}
.main-content .content-box .content-right .ques-comments .comments-head button i {
margin-left: 5px;
}
.main-content .content-box .content-right .ques-comments .comments-box {}
.main-content .content-box .content-right .ques-comments .comments-box ul li {
display: block;
padding: 10px 0;
border-bottom: 1px solid #dfdfdf;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner {}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .avatar {
float: right;
display: table-cell;
width: 50px;
/* height: 50px;*/
border: 1px solid #dfdfdf;
padding: 2px;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .avatar .counter {
text-align: center;
margin-top: 2px;
line-height: 100%;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .avatar .counter span {
color: #fff;
font-size: 12px;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .avatar .c-blue {
background-color: #01a6de;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .avatar .c-red {
background-color: #eda127;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data {
padding-right: 65px;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data a.commenter-name {
font-family: neo-medium;
font-size: 15px;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data span {
display: block;
font-size: 13px;
color: #8a8a8a;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data p {
padding: 10px 0;
color: #000;
font-size: 14px;
line-height: 1.5;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data .comment-setting {
margin-bottom: 5px;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data .comment-setting a {
font-size: 14px;
margin-left: 15px;
display: inline-block;
color: #0193c4;
cursor: pointer;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li ul.children-comments {
padding-right: 66px;
border-right: 4px solid #f4f4f4;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li ul.children-comments li:last-child {
border-bottom: 0;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li ul.children-comments .comment-inner .avatar {
width: 45px;
/* height: 45px;*/
}
.main-content .content-box .content-right .more-comments {
text-align: right;
padding: 15px 0;
}
.main-content .content-box .content-right .more-comments button {
background-color: #01a6de;
display: inline-block;
border: 0;
border-radius: 5px;
color: #fff;
font-size: 13px;
font-family: neo-medium;
padding: 10px 30px;
-webkit-transition: all .3s;
transition: all .3s;
}
.main-content .content-box .content-right .more-comments button:hover {
-webkit-transition: all .3s;
transition: all .3s;
background-color: #0080ac;
}
.main-content .content-box .content-right .more-comments button i {
margin-left: 5px;
}
.main-content .content-box .content-left {}
.main-content .content-box .content-left .ads {
margin-bottom: 30px;
}
.main-content .content-box .content-left .ads .ads-mask {
text-align: center;
background-color: rgb(1, 147, 196);
min-height: 300px;
height: 300px;
width: 100%;
display: table;
margin: 0 auto;
border-radius: 5px;
}
.main-content .content-box .content-left .ads h3 {
vertical-align: middle;
display: table-cell;
}
.main-content .content-box .content-left .ads h3 a {
color: #fff;
}
.main-content .content-box .content-left .recent-widget {
margin-bottom: 30px;
}
.main-content .content-box .content-left .recent-widget .widget-head {
margin-bottom: 15px;
}
.mobile-widget .widget-head {
margin-bottom: 30px;
}
.main-content .content-box .content-left .recent-widget .widget-head h2,
.mobile-widget .widget-head h2 {
border-bottom: 1px solid #dfdfdf;
padding: 15px 0;
font-family: neo-medium;
font-size: 20px;
}
.main-content .content-box .content-left .recent-widget ul li {
display: block;
float: right;
padding-bottom: 10px;
}
.main-content .content-box .content-left .recent-widget ul li a {
display: block;
background-color: #f4f4f4;
padding: 5px;
-webkit-transition: all .3s;
transition: all .3s;
}
.main-content .content-box .content-left .recent-widget ul li a:hover {
-webkit-transition: all .3s;
transition: all .3s;
background-color: #e5e4e4;
}
.main-content .content-box .content-left .recent-widget ul li a p {
color: #8c8c8c;
font-size: 14px;
line-height: 1.5;
}
.main-content .content-box .content-left .recent-widget ul li a p span {
color: #000;
font-family: neo-medium;
}
.main-content .content-box .content-left .recent-widget .all-answers {
text-align: left;
}
.main-content .content-box .content-left .recent-widget .all-answers a {
display: inline-block;
padding: 7px 15px;
background-color: #01a6de;
color: #fff;
font-size: 14px;
border-radius: 5px;
}
.main-content .content-box .content-left .recent-widget .all-answers a i {
margin-right: 5px;
}
.mobile-widget {
margin-bottom: 30px;
}
.mobile-widget .mob-img {}
.mobile-widget .mob-data {
padding: 20px 50px 20px 0;
}
.mobile-widget .mob-data p {
font-size: 14px;
color: #808080;
padding-bottom: 15px;
}
.mobile-widget .mob-data ul li {
display: block;
margin-bottom: 13px;
}
.mobile-widget .mob-data ul li a {
display: block;
border-radius: 5px;
background-color: #f4f4f4;
padding: 10px;
text-align: center;
color: #fff;
font-size: 15px;
font-family: neo-medium;
-webkit-transition: all .3s;
transition: all .3s;
}
.mobile-widget .mob-data ul li a i {
margin-left: 5px;
}
.mobile-widget .mob-data ul li:first-child a {
background-color: #c97d06;
}
.mobile-widget .mob-data ul li:last-child a {
background-color: #00a5dd;
}
.mobile-widget .mob-data ul li a:hover {
opacity: .8;
-webkit-transition: all .3s;
transition: all .3s;
}
.content-extra {
border-right: 1px solid #dfdfdf;
padding-right: 15px;
}
/* *********************** Sticky ***************************** */
.sticky {
position: fixed;
top: 0;
z-index: 9;
text-align: center;
visibility: hidden;
opacity: 0;
-webkit-transition: all .3s;
transition: all .3s;
}
.sticky .top-sticky {
background-image: url(../images/brick-wall-dark.png);
background-color: #060606;
padding: 10px;
}
.sticky .top-sticky span {
color: #fff;
font-family: neo-medium;
}
.sticky .top-sticky p {
float: right;
cursor: pointer;
color: #fff;
font-size: 14px;
}
.sticky .bottom-sticky {
box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.28);
}
.sticky .bottom-sticky .block-perc {
padding: 15px 30px;
}
.sticky .bottom-sticky .block-perc.orange-card {
background-color: #eda127;
}
.sticky .bottom-sticky .block-perc.blue-card {
background-color: #01a6de;
}
.sticky .bottom-sticky .block-perc p {
color: #fff;
font-size: 15px;
}
.sticky .bottom-sticky .block-perc p span {
margin-right: 5px;
font-family: neo-medium;
color: #000;
font-size: 17px;
}
.sticky .bottom-sticky .ques-divider {
position: absolute;
left: 50%;
width: 30px;
height: 30px;
background-color: #000000;
text-align: center;
border-radius: 50%;
top: 12px;
z-index: 2;
-webkit-transform: translate(-15px);
transform: translate(-15px);
box-shadow: 0 0 0 5px #161616;
}
.sticky .bottom-sticky .ques-divider h3 {
color: #fff;
font-family: neo-medium;
font-size: 14px;
position: relative;
top: 6px;
}
.sticky .bottom-sticky .ques-divider:after {
content: '';
position: absolute;
top: 0;
height: 10px;
width: 5px;
background-color: #000;
}
.show-nav-mob {
display: inline-block;
color: #fff;
font-size: 20px;
background: #0193c4;
border: 0;
border-radius: 4px;
width: 40px;
height: 40px;
-webkit-transition: all .3s;
transition: all .3s;
display: none;
text-align: center;
line-height: 30px;
}
/*---------------------------
Side Menu Style
---------------------------*/
.mobile-nav {
position: fixed;
height: 100%;
width: 250px;
background-color: #0193c4;
left: -260px;
top: 0;
z-index: 9999;
-webkit-transition: all .3s;
transition: all .3s;
}
.mobile-nav .mobile-search {
padding: 10px;
border-bottom: 1px solid #2e6da2;
}
.mobile-nav .mobile-search input {
width: 100%;
height: 35px;
padding-right: 10px;
font-size: 13px;
border: 1px solid #dfdfdf;
border-radius: 5px;
outline: 0;
}
.mobile-nav ul.mob-usr-logged {}
.mobile-nav ul.mob-visitor {}
.mobile-nav .mobile-search ul li {
display: block;
}
.mobile-nav ul li a {
display: block;
padding: 10px;
color: #fff;
border-bottom: 1px solid #2e6da2;
font-size: 13px;
-webkit-transition: all .3s;
transition: all .3s;
}
.mobile-nav ul li a:hover {
background-color: #0081ad;
-webkit-transition: all .3s;
transition: all .3s;
}
.mobile-nav ul li a i {
margin-left: 5px;
}
.wrap-pop {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.93);
z-index: 999;
display: none;
cursor: zoom-out;
-webkit-transition: all .3s;
transition: all .3s;
}
.mask-inner {
-webkit-transition: all .3s;
transition: all .3s;
}
/* ***************************** Tagbox **************************** */
.main-content .content-box .content-right .tag-box {}
.main-content .content-box .content-right .tag-box .tag-head {
border-bottom: 2px solid #dfdfdf;
}
.main-content .content-box .content-right .tag-box .tag-head h2 {
padding: 15px 0 0;
font-family: neo-medium;
font-size: 20px;
}
.main-content .content-box .content-right .tag-box .tag-head p {
font-size: 13px;
color: #808080;
padding: 5px 0 10px;
}
.main-content .content-box .content-right .tag-box .tag-elements {}
.main-content .content-box .content-right .tag-box .tag-elements ul li {
display: block;
width: 100%;
border-bottom: 1px solid #dfdfdf;
padding: 25px 0;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li a.tag-name {
font-family: neo-medium;
color: #01a6de;
display: inline-block;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li a.tag-name:hover {
color: #0684af;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li p.content {
padding: 10px 0;
font-size: 15px;
color: #676767;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li p.content span {
font-family: neo-medium;
color: #737373;
font-size: 14px;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li p.extra {
font-size: 12px;
color: #808080;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li p.extra a {
display: inline-block;
color: #01a6de;
margin-left: 15px;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li p.extra a:hover {
text-decoration: underline;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li p.extra span {}
/*============================================
Profile1
/*============================================*/
.main-content .content-box .profile-content .content-right {
padding-left: 0;
border-left: 1px solid #dfdfdf;
}
.main-content .content-box .profile-content .content-right .profile-image {
width: 130px;
height: 130px;
overflow: hidden;
border: 1px solid #dfdfdf;
padding: 3px;
text-align: center;
margin: 0 auto 15px;
}
.main-content .content-box .profile-content .content-right .profile-image img {}
.main-content .content-box .profile-content .content-left {
padding-right: 30px;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-name h3 {
text-align: center;
font-family: neo-medium;
padding-bottom: 15px;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-name p {
color: #808080;
font-size: 13px;
padding: 0 0 15px;
text-align: center;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-info {
background-color: #f4f4f4;
margin-bottom: 15px;
padding: 15px;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-info ul li {
display: block;
padding-bottom: 5px;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-info ul li p {
font-size: 14px;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-info ul li p b {
font-weight: normal;
background-color: #01a6de;
width: 40px;
display: inline-block;
text-align: center;
height: 40px;
line-height: 40px;
margin-left: 5px;
font-family: neo-medium;
color: #fff;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-info ul li p span {
font-family: neo-medium;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane .more-activities {
margin: 15px 0;
text-align: center;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane .more-activities button {
background-color: #01a6de;
display: inline-block;
border: 0;
border-radius: 5px;
color: #fff;
font-size: 13px;
font-family: neo-medium;
padding: 10px 30px;
-webkit-transition: all .3s;
transition: all .3s;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane .more-activities button i {
margin-left: 5px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li {
display: block;
width: 100%;
padding-bottom: 20px;
border-bottom: 1px solid #dfdfdf;
margin-bottom: 40px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li:last-child {
margin-bottom: 0;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li i {
width: 40px;
height: 40px;
background-color: #f0f;
line-height: 40px;
text-align: center;
color: #fff;
margin-left: 8px;
border-radius: 50%;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li.fav-state i {
background-color: #f29a0f;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li.blue-choice i {
background-color: #01a6de;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li.red-choice i {
background-color: #cc5110;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li.comment-state i {
background-color: #2cab1d;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li.ask-state i {
background-color: #333;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li p {
display: block;
font-size: 13px;
color: #585858;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li p a,
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li p span {
font-family: neo-medium;
display: inline-block;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li .state-icon {
width: 40px;
height: 40px;
display: table-cell;
float: right;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li .state-body {
padding-right: 50px;
vertical-align: text-top;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li .state-body a {
font-size: 13px;
margin-left: 5px;
display: inline-block;
text-decoration: underline;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li .state-body time {
font-size: 12px;
color: #808080;
margin-left: 5px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li .state-body b {
font-size: 13px;
margin-left: 5px;
font-weight: normal;
color: #808080;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li .state-body .comment-text {
background-color: #f1f1f1;
padding: 10px;
margin: 13px 0 5px;
border-radius: 5px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block {}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .input-group {
margin-bottom: 15px;
width: 50%;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .input-group label {
font-weight: normal;
padding-bottom: 10px;
font-size: 14px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .input-group input,
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .input-group select {
width: 100%;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .checkbox.adults {
background-color: #f4f4f4;
padding: 10px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .checkbox input {
float: right;
display: inline-block;
width: auto;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .input-group h3,
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .password-group h3 {
font-family: neo-medium;
border-top: 1px solid #dfdfdf;
padding: 10px 0;
margin-top: 15px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block button {
padding: 6px 30px;
background-color: #01a6de;
border: 0;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .remove-acc {
margin-top: 30px;
border-top: 1px solid #dfdfdf;
padding-top: 15px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .remove-acc a {
display: inline-block;
color: red;
font-size: 14px;
font-family: neo-medium;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .remove-acc p {
padding: 5px 0 10px;
font-size: 13px;
color: #808080;
}
.right_tap-box,
.left_tap-box {
border-radius: 0px;
-webkit-transition: all 35s;
-webkit-transition: all .3s;
transition: all .3s;
}
.right_tap-box .right_box-inner {
background: #fff;
border: 1px solid #dfdfdf;
border-left: 0;
}
.right_tap-box .nav-tabs {
border-bottom: 0;
}
.right_tap-box .nav-tabs > li {
float: left;
margin-bottom: -1px;
display: block;
text-align: right;
direction: rtl;
width: 100%;
}
.right_tap-box .nav-tabs > li a {
font-size: 14px;
margin: 0;
border-radius: 0;
padding: 14px;
border: 0;
border-bottom: 1px solid #dfdfdf;
}
.right_tap-box .nav-tabs li:last-child a {
border: 0;
}
.nav>li>a:focus,
.nav>li>a:hover {
text-decoration: none;
background-color: #01a6de;
color: #fff;
}
.right_tap-box .nav-tabs > li a i {
margin-left: 7px;
}
.right_tap-box .nav-tabs > li.active > a,
.right_tap-box .nav-tabs > li.active > a:hover,
.right_tap-box .nav-tabs > li.active > a:focus {
cursor: default;
background-color: #01a6de;
border: 0;
color: #fff;
border-radius: 0;
}
.mobile_tap-box {
padding: 0 12px;
border-radius: 0px;
direction: rtl;
-webkit-transition: all .5s;
transition: all .5s;
margin-bottom: 20px;
}
.mobile_tap-box .right_box-inner {
background: #fff;
}
.right_box-inner {
position: relative;
}
.mobile_tap-box .nav-tabs {
border: 0;
}
.mobile_tap-box .nav-tabs > li {
margin: 0;
display: inline-block;
float: right;
border: 0;
}
.mobile_tap-box .nav-tabs li a {
font-size: 15px;
margin: 0;
border-radius: 0;
padding: 15px 41.25px;
border: 1px solid #dfdfdf;
border-right: 0;
}
.mobile_tap-box .nav-tabs {
border: 0;
}
.mobile_tap-box .nav-tabs > li:last-child a {
border-left: 0;
}
.mobile_tap-box .nav-tabs > li.active > a,
.mobile_tap-box .nav-tabs > li.active > a:hover,
.mobile_tap-box .nav-tabs > li.active > a:focus {
cursor: default;
background-color: #01a6de;
color: #fff;
text-align: center;
border-radius: 0;
display: inline-block;
position: relative;
}
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
border-right: 0;
border-color: #01a6de;
border-bottom-color: #01a6de;
}
/* *************************** Submit Question ****************************** */
.main-content .content-box .content-right .submit-box {}
.main-content .content-box .content-right .submit-box .submit-head {
border-bottom: 1px solid #dfdfdf;
padding: 15px 0;
margin-bottom: 30px;
}
.main-content .content-box .content-right .submit-box .submit-head h2 {
font-family: neo-medium;
font-size: 20px;
color: #000;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview {
margin-bottom: 30px;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview p.ques-title {
font-family: neo-medium;
padding-bottom: 10px;
word-break: break-all;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview p.ques-prefix {
color: #808080;
font-size: 12px;
word-break: break-all;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .submit-cards {
margin: 20px 0;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .submit-cards .card {}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .submit-cards div.card .inner {
padding: 20px 40px;
display: table;
height: 200px;
text-align: center;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .submit-cards .card p {
display: table-cell;
vertical-align: middle;
font-size: 13px;
color: #fff;
font-family: neo-medium;
word-break: break-all;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .orange-card {
background-color: #eda127;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .blue-card {
background-color: #01a6de;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .ques-divider {
position: absolute;
left: 50%;
width: 40px;
height: 40px;
background-color: #000000;
text-align: center;
border-radius: 50%;
top: 45%;
z-index: 2;
-webkit-transform: translate(-20px);
transform: translate(-20px);
box-shadow: 0 0 0 4px #161616;
line-height: 40px;
display: table;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .ques-divider h3 {
font-size: 13px;
display: table-cell;
vertical-align: middle;
color: #fff;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview p.ques-extra {
padding: 10px;
background-color: #f4f4f4;
display: inline-block;
width: 100%;
font-size: 14px;
color: #000;
border: 1px solid #dfdfdf;
border-radius: 5px;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-form {}
.main-content .content-box .content-right .submit-box .submit-body .ques-form .input-group {
margin-bottom: 15px;
width: 100%;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-form label {
font-weight: normal;
padding-bottom: 10px;
font-size: 14px;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-form button {
padding: 6px 30px;
background-color: #01a6de;
border: 0;
float: left;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-form .checkbox {
display: inline-block;
margin: 0;
float: right;
}
.content-extra .mobile-widget .mob-data {
padding-right: 0;
}
/************************************* Sign_up ******************************* */
.main-content .content-box .content-right .sign_up-box .sign_up-head{
border-bottom: 1px solid #dfdfdf;
padding: 15px 0;
margin-bottom: 30px;}
.main-content .content-box .content-right .sign_up-box .sign_up-head h2 {
font-family: neo-medium;
font-size: 20px;
color: #000;
}
.main-content .content-box .content-right .sign_up-box .sign_up-body .input-group {
margin-bottom: 15px;
width: 100%;
}
.main-content .content-box .content-right .sign_up-box .sign_up-body .input-group label {
font-weight: normal;
padding-bottom: 10px;
font-size: 14px;
}
.main-content .content-box .content-right .sign_up-box .sign_up-body .input-group button {
padding: 6px 30px;
background-color: #01a6de;
border: 0;
float: left;
}
.main-content .content-box .content-right .sign_up-box .sign_up-body .btn-group{margin-bottom:20px;}
.main-content .content-box .content-right .sign_up-box .sign_up-body .btn-group button{ background-color: #4666a6;
color: #fff;
font-size: 14px;
border: 0;
display: inline-block;
padding: 10px 20px;
border-radius: 5px;
}.main-content .content-box .content-right .sign_up-box .sign_up-body .btn-group button:hover{
opacity:.8;
}
.main-content .content-box .content-right .sign_up-box .sign_up-body .btn-group button i{
margin-left: 5px;
border-left: 1px solid #fff;
padding-left: 10px;
}
.modal{background-color:rgba(0, 0, 0, 0.75);}
.sign-in .btn-group,.sign-in .input-group{width:100%;margin-bottom:15px;}
.sign-in .btn-group button{ background-color: #4666a6;
color: #fff;
font-size: 14px;
border: 0;
display: inline-block;
padding: 10px 20px;
border-radius: 5px;}
.sign-in .btn-group button i{ margin-left: 5px;
border-left: 1px solid #fff;
padding-left: 10px;}
.sign-in .input-group label{ font-weight: normal;
padding-bottom: 10px;
font-size: 14px;}
.sign-in .input-group input{width:100%;}
.sign-in .links-group ul li{display:inline-block;}
.sign-in .links-group ul li a{ display: inline-block;
font-size: 15px;
margin-left: 40px;
color: #01a6de;}
.sign-in .links-group ul li a:hover{text-decoration:underline;}
.modal-footer .checkbox{display:inline-block;margin:0;float:right;}
.modal-footer .checkbox label{font-size:14px;}
.modal-footer .checkbox input{margin-left:5px;}
.modal-footer button{padding:6px 30px;}
/************************************* Footer ******************************* */
footer .footer-body {
background-color: #333;
padding: 15px 0;
}
footer .footer-body .rights {}
footer .footer-body .rights p {
color: #fff;
font-size: 13px;
padding-bottom: 5px;
}
footer .footer-body .rights ul li {
display: inline-block;
}
footer .footer-body .rights ul li a {
display: inline-block;
color: #3dceff;
font-size: 13px;
margin-left: 15px;
}
footer .footer-body .rights ul li a:hover {
text-decoration: underline;
}
footer .footer-body .votes p {
color: #fff;
font-size: 13px;
}
footer .footer-body .votes p img {
display: inline-block;
margin-left: 10px;
width: 20px;
height: 20px;
float: right;
}
footer .footer-body .votes p span {
font-family: neo-medium;
}
/* **************************** Media Query ************************* */
@media (max-width:991px) {
header .navigation .search-box {
padding-right: 100px;
}
header .navigation .nav-tools ul {
display: none;
}
.show-nav-mob {
display: inline-block;
}
.main-content .content-box .profile-content .content-right {
border: 0;
margin-bottom: 30px;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-info {
margin-bottom: 30px;
}
.mobile_tap-box {
padding: 0;
}
.content-extra .mobile-widget .mob-img,
.content-extra .mobile-widget .mob-data,
.mobile-widget .mob-img,
.mobile-widget .mob-data {
width: 50%;
}
.content-extra .mobile-widget {
margin-bottom: 0;
}
.content-extra {
border: 0;
}
.content-extra .mobile-widget .mob-data {
padding-right: 30px;
}
.main-content .content-box .profile-content .content-left {
padding-right: 0;
}
}
@media (min-width:768px) and (max-width:991px) {
.content-extra .mobile-widget .mob-img, .content-extra .mobile-widget .mob-data, .mobile-widget .mob-img, .mobile-widget .mob-data{width:100%;} .content-extra .mobile-widget .mob-data, .mobile-widget .mob-img, .mobile-widget .mob-data{padding:0;}.content-extra .mobile-widget .mob-img, .content-extra .mobile-widget .mob-data{margin-bottom:15px;}}
@media(max-width:768px) {
header .navigation .search-box {
display: none;
}
header .navigation .logo {
width: auto;
}
header .navigation .nav-tools {
float: left;
width: auto;
}
header .questions .ques-divider {
top: 51%;
}
header .questions .block.first-card {
margin-bottom: 10px;
}
header .questions .ques-btn a.arrow-right {
right: 3.7%;
top: 3%;
}
header .questions .ques-btn a.arrow-left {
left: 3.7%;
top: 3%;
}
.main-content .content-box .content-left .recent-widget ul li {
width: 100%;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data {
padding: 15px 0;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .avatar {
display: block;
float: none;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li ul.children-comments {
padding-right: 20px;
}
.main-content .question-data .question-btns {
border-top: 1px solid #dfdfdf;
padding: 15px 0;
border-right: 0;
}
.sticky .bottom-sticky .ques-divider {
top: 23%;
}
.main-content .content-box .content-right .tag-box {
margin-bottom: 40px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .input-group {
width: 100%;
}
.content-extra .mobile-widget {
margin-bottom: 0;
}.content-extra{padding:0;}.sign_up-box{margin-bottom:30px;}
}
@media(max-width:500px) {
.main-content .content-box .content-right {
padding: 0;
}
.sticky .bottom-sticky .block-perc {
width: 100%;
}
.sticky .bottom-sticky .ques-divider {
top: 37%;
}
.mobile_tap-box .nav-tabs > li a {
padding: 15px 24px !important;
}
.content-extra .mobile-widget .mob-img,
.content-extra .mobile-widget .mob-data,
.mobile-widget .mob-img,
.mobile-widget .mob-data {
width: 100%;
}
.content-extra .mobile-widget .mob-data,
.mobile-widget .mob-data {
padding-right: 0;
}
.footer-body .rights {
margin-bottom: 15px;
}
.footer-body .rights,
.footer-body .votes {
width: 100%;
}
}
@media(max-width:375px) {
.sticky .bottom-sticky .ques-divider {
top: 48%;
}
} | resources/views/design/css/style.css | @charset "utf-8";
@import "font-awesome.min.css";
@font-face {
font-family: 'neo-regular';
src: url('../fonts/NEOSans-regular.ttf');
}
@font-face {
font-family: 'neo-medium';
src: url('../fonts/NEOSans-Medium.ttf');
}
@font-face {
font-family: 'neo-black';
src: url('../fonts/NEOSans-Black.ttf');
}
/*------------------------------------------------------------------
[***\ Table of contents /***]
-- General Style Reset
*/
* {
box-sizing: border-box;
font-family: 'neo-regular';
}
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;
}
html {
overflow: -moz-scrollbars-vertical;
/* overflow-y: scroll; */
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
}
nav ul {
list-style: none;
}
ul {
list-style: none;
}
iframe {
width: 100% !important;
border: 0 !important;
}
blockquote,
q {
quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
}
a,
a:hover,
a:visited,
a:link {
margin: 0;
padding: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
text-decoration: none;
outline: none;
color: #121212
}
/* 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 #dfdfdf;
margin: 1em 0;
padding: 0;
}
input,
select,
textarea {
vertical-align: middle;
margin: 0;
padding: 0;
outline: 0;
resize: none;
}
img {
display: block;
border: 0;
max-width: 100%;
margin: auto;
}
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
padding: 0;
}
.no-border {
border: 0 !important;
}
.no-margin {
margin: 0 !important;
}
.no-padding {
padding: 0 !important;
}
p {
line-height: 1.5;
}
/* ****************************** Hearder ************************ */
header {
background-color: #060606;
background-image: url(../images/brick-wall-dark.png);
padding-bottom: 50px;
}
header .ads {
padding: 30px 0 50px;
}
header .ads .ads-mask {
text-align: center;
background-color: rgb(1, 147, 196);
min-height: 100px;
height: 100px;
width: 100%;
display: table;
margin: 0 auto;
border-radius: 5px;
}
header .ads h3 {
vertical-align: middle;
display: table-cell;
}
header .ads h3 a {
color: #fff;
}
header .navigation {}
header .navigation .logo {
padding: 0;
}
header .navigation .logo h1 {
display: block;
width: 180px;
height: 100px;
overflow: hidden;
}
header .navigation .logo h1 a {
display: inline-block;
}
header .navigation .search-box {
padding: 52px 0 0;
}
header .navigation .search-box input {
height: 40px;
}
header .navigation .search-box button {
color: white;
background-color: #01a6de;
border-color: #01a6de;
padding: 9px 14px;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .search-box button:hover {
color: white;
background-color: #eca026;
border-color: #eca026;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools {
text-align: left;
padding: 52px 0 0;
}
header .navigation .nav-tools ul.login-user {
display: none;
}
header .navigation .nav-tools ul li {
display: inline-block;
}
header .navigation .nav-tools ul.login-user li a {
display: inline-block;
background-color: #01a6de;
line-height: 26px;
padding: 7px 10px;
border-radius: 5px;
color: #fff;
margin-left: 10px;
font-size: 14px;cursor:pointer;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.login-user li a:hover {
background-color: #eca026;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.login-user li a span {
margin-left: 5px;
}
header .navigation .nav-tools ul.login-user li.dropdown a span {
max-width: 140px;
float: right;
text-align: right;
height: 25px;
overflow: hidden;
}
header .navigation .nav-tools ul.login-user li:last-child a {
margin-left: 0;
}
header .navigation .nav-tools ul.login-user li:last-child a img {
width: 20px;
height: 20px;
float: right;
margin-left: 10px;
border-radius: 50%;
}
header .navigation .nav-tools ul.login-user li:last-child ul {
padding: 0;
}
header .navigation .nav-tools ul.login-user li:last-child ul li {
display: block;
}
header .navigation .nav-tools ul.login-user li:last-child ul li a {
display: block;
background-color: #fff;
color: #333;
border-radius: 0;
border-bottom: 1px solid #eda228;
padding: 5px 10px;
border-left: 4px solid transparent;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.login-user li:last-child ul li:last-child a {
border-bottom: 0;
}
.open>a {
outline: 0;
background-color: #eea32a !important;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.login-user li:last-child ul li a:hover {
background-color: #eda228;
color: #fff;
border-left: 4px solid #01a6de;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.login-user li:last-child ul li a i {
margin-left: 5px;
}
header .navigation .nav-tools ul.visitor {}
header .navigation .nav-tools ul.visitor li a {
display: inline-block;
color: #fff;
margin-left: 5px;
font-size: 14px;
background: #0193c4;
padding: 5px;
border-radius: 4px;
line-height: 29px;cursor:pointer;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.visitor li a:hover {
background-color: #eca026;
-webkit-transition: all .3s;
transition: all .3s;
}
header .navigation .nav-tools ul.visitor li:last-child a {
margin-left: 0;
}
header .navigation .nav-tools ul.visitor li a i {
margin-left: 5px;
}
header .navigation .nav-tools ul li.search-icon i {
margin-left: 0 !important;
padding: 5px 10px;
}
header .questions {
margin-top: 30px;
border-top: 2px solid rgb(33, 33, 33);
padding-top: 30px;
overflow: hidden;
position: relative;
}
header .questions .ques-head {
text-align: center;
margin-bottom: 35px;
}
header .questions .ques-head h3 {
color: #fff;
font-family: neo-medium;
font-size: 20px;
}
header .questions .ques-head p {
display: none;
padding: 15px 0 0;
color: #0193c4;
font-size: 13px;
}
header .questions .block {
padding: 0 5px;
}
header .questions .block .inner {
position: relative;
text-align: center;
height: 350px;
width: 100%;
border-radius: 5px;
padding: 0 50px 30px;
overflow: hidden;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions .block .inner.orange-card:hover {
background-color: #e28d05;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions .block .inner.blue-card:hover {
background-color: #0092c4;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions .block .inner:hover {
cursor: pointer;
}
header .questions .block .inner.orange-card {
background-color: #eda127;
}
header .questions .block .inner.blue-card {
background-color: #01a6de;
}
header .questions .block .inner .choice-result {
position: absolute;
width: 100%;
right: 0;
opacity: 0;
visibility: hidden;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions .block .inner .choice-result span {
left: 0;
position: absolute;
width: 150px;
height: 150px;
background-color: #ffffff;
text-align: center;
color: #eda127;
font-size: 35px;
-webkit-transform: rotate(45deg) translate(-110px);
transform: rotate(45deg) translate(-110px);
}
header .questions .block .inner.blue-card .choice-result span {
color: #01a6de;
}
header .questions .block .inner .choice-result span i {
-webkit-transform: translate(48px, 48px) rotate(-45deg);
transform: translate(48px, 48px) rotate(-45deg);
}
header .questions .block .inner .choice-result h2 {
font-size: 50px;
color: #fff;
font-family: neo-black;
padding-top: 50px;
}
header .questions .block .inner .choice-result h2 b {
font-family: neo-black;
margin-right: 5px;
}
header .questions .block .inner .choice-result p {
color: rgb(140, 86, 0);
font-family: neo-medium;
padding: 5px 0 0 0;
}
header .questions .block .inner.blue-card .choice-result p {
color: #0a546d;
}
header .questions .block .inner h3 {
color: #fff;
font-size: 19px;
font-family: neo-medium;
line-height: 1.5;
position: relative;
top: 50%;
}
header .questions .ques-btn {}
header .questions .ques-btn a {
background-color: rgb(214, 85, 18);
position: absolute;
top: 60%;
z-index: 2;
height: 40px;
width: 40px;
display: inline-block;
text-align: center;
color: #fff;
line-height: 40px;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions .ques-btn a.arrow-right {
right: -45px;
}
header .questions .ques-btn a.arrow-left {
left: -45px;
}
header .questions:hover .ques-btn a.arrow-right {
right: 0;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions:hover .ques-btn a.arrow-left {
left: 0;
-webkit-transition: all .3s;
transition: all .3s;
}
header .questions .ques-divider {
position: absolute;
left: 50%;
width: 70px;
height: 70px;
background-color: #000000;
text-align: center;
border-radius: 50%;
top: 53%;
z-index: 2;
-webkit-transform: translate(-35px);
transform: translate(-35px);
box-shadow: 0 0 0 8px #161616;
line-height: 70px;
}
header .questions .ques-divider h3 {
color: #fff;
font-family: neo-medium;
font-size: 20px;
position: relative;
top: 29%;
}
/* ****************************** Content ***************************** */
.main-content .content-box {
padding: 30px 0;
}
.main-content .question-data {
border-bottom: 1px solid #dfdfdf;
margin-bottom: 30px;
}
.main-content .question-data .question-name {
padding: 15px 0;
}
.main-content .question-data .question-name h3 {
display: inline;
font-family: neo-medium;
font-size: 19px;
}
.main-content .question-data .question-name span {
margin: 0 8px;
color: #9e9e9e;
font-size: 14px;
}
.main-content .question-data .question-name a {
color: #01a6de;
font-family: neo-medium;
font-size: 14px;
display: inline-block;
}
.main-content .question-data .question-btns {
padding: 15px 25px 15px 0;
border-right: 1px solid #dfdfdf;
}
.main-content .question-data .question-btns ul li {
display: inline-block;
}
.main-content .question-data .question-btns ul li a {
display: inline-block;
background-color: #01a6de;
color: #fff;
width: 35px;
height: 35px;
line-height: 33px;
border: 2px solid transparent;
border-radius: 50%;
text-align: center;
font-size: 13px;
margin-left: 4px;
cursor: pointer;
-webkit-transition: all .3s;
transition: all .3s;
}
.main-content .question-data .question-btns ul li:last-child a.active {
background-color: #eda127;
border: 2px dotted #fff;
}
.main-content .content-box .content-right {
padding-left: 30px;
}
.main-content .content-box .content-right .ques-statics {
background-color: #f4f4f4;
padding: 20px;
margin-bottom: 30px;
border-radius: 5px;
}
.main-content .content-box .content-right .ques-statics ul li {
display: block;
padding-bottom: 3px;
}
.main-content .content-box .content-right .ques-statics ul li span {
width: 40px;
height: 40px;
line-height: 40px;
text-align: center;
background-color: #fff;
font-size: 15px;
margin-left: 10px;
}
.main-content .content-box .content-right .ques-statics ul li p {
display: inline-block;
color: #000;
font-size: 14px;
font-family: neo-medium;
}
.main-content .content-box .content-right .ques-statics ul li a {
background-color: #01a6de;
color: #fff;
padding: 5px;
display: inline-block;
font-size: 14px;
border-radius: 5px;
-webkit-transition: all .3s;
transition: all .3s;
}
.main-content .question-data .question-btns ul li a:hover,
.main-content .content-box .content-right .ques-statics ul li a:hover {
-webkit-transition: all .3s;
transition: all .3s;
background-color: #0080ac;
}
.main-content .content-box .content-right .ques-comments {}
.main-content .content-box .content-right .ques-comments .comments-head {
border-top: 1px solid #dfdfdf;
border-bottom: 1px solid #dfdfdf;
padding: 15px 0;
}
.main-content .content-box .content-right .ques-comments .comments-head .add-comment,
#comment-area {
float: right;
background-color: #f4f4f4;
padding: 10px;
position: relative;
margin-top: 10px;
display: none;
}
.main-content .content-box .content-right .ques-comments .comments-head .add-comment:before {
content: '';
position: absolute;
top: -15px;
left: 20px;
border-top: 8px solid transparent;
border-bottom: 8px solid #f4f4f4;
border-right: 8px solid transparent;
border-left: 8px solid transparent;
}
.main-content .content-box .content-right .ques-comments .comments-head .add-comment input,
#comment-area input {
border-radius: 5px;
width: 99%;
height: 36px;
}
.main-content .content-box .content-right .ques-comments .comments-head h3 {
display: inline-block;
float: right;
font-family: neo-medium;
font-size: 20px;
}
.main-content .content-box .content-right .ques-comments .comments-head button,
#comment-area button {
display: inline-block;
float: left;
background-color: #01a6de;
color: #fff;
border: 0;
padding: 8px 12px;
border-radius: 5px;
font-size: 14px;
}
.main-content .content-box .content-right .ques-comments .comments-head button i {
margin-left: 5px;
}
.main-content .content-box .content-right .ques-comments .comments-box {}
.main-content .content-box .content-right .ques-comments .comments-box ul li {
display: block;
padding: 10px 0;
border-bottom: 1px solid #dfdfdf;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner {}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .avatar {
float: right;
display: table-cell;
width: 50px;
/* height: 50px;*/
border: 1px solid #dfdfdf;
padding: 2px;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .avatar .counter {
text-align: center;
margin-top: 2px;
line-height: 100%;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .avatar .counter span {
color: #fff;
font-size: 12px;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .avatar .c-blue {
background-color: #01a6de;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .avatar .c-red {
background-color: #eda127;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data {
padding-right: 65px;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data a.commenter-name {
font-family: neo-medium;
font-size: 15px;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data span {
display: block;
font-size: 13px;
color: #8a8a8a;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data p {
padding: 10px 0;
color: #000;
font-size: 14px;
line-height: 1.5;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data .comment-setting {
margin-bottom: 5px;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data .comment-setting a {
font-size: 14px;
margin-left: 15px;
display: inline-block;
color: #0193c4;
cursor: pointer;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li ul.children-comments {
padding-right: 66px;
border-right: 4px solid #f4f4f4;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li ul.children-comments li:last-child {
border-bottom: 0;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li ul.children-comments .comment-inner .avatar {
width: 45px;
/* height: 45px;*/
}
.main-content .content-box .content-right .more-comments {
text-align: right;
padding: 15px 0;
}
.main-content .content-box .content-right .more-comments button {
background-color: #01a6de;
display: inline-block;
border: 0;
border-radius: 5px;
color: #fff;
font-size: 13px;
font-family: neo-medium;
padding: 10px 30px;
-webkit-transition: all .3s;
transition: all .3s;
}
.main-content .content-box .content-right .more-comments button:hover {
-webkit-transition: all .3s;
transition: all .3s;
background-color: #0080ac;
}
.main-content .content-box .content-right .more-comments button i {
margin-left: 5px;
}
.main-content .content-box .content-left {}
.main-content .content-box .content-left .ads {
margin-bottom: 30px;
}
.main-content .content-box .content-left .ads .ads-mask {
text-align: center;
background-color: rgb(1, 147, 196);
min-height: 300px;
height: 300px;
width: 100%;
display: table;
margin: 0 auto;
border-radius: 5px;
}
.main-content .content-box .content-left .ads h3 {
vertical-align: middle;
display: table-cell;
}
.main-content .content-box .content-left .ads h3 a {
color: #fff;
}
.main-content .content-box .content-left .recent-widget {
margin-bottom: 30px;
}
.main-content .content-box .content-left .recent-widget .widget-head {
margin-bottom: 15px;
}
.mobile-widget .widget-head {
margin-bottom: 30px;
}
.main-content .content-box .content-left .recent-widget .widget-head h2,
.mobile-widget .widget-head h2 {
border-bottom: 1px solid #dfdfdf;
padding: 15px 0;
font-family: neo-medium;
font-size: 20px;
}
.main-content .content-box .content-left .recent-widget ul li {
display: block;
float: right;
padding-bottom: 10px;
}
.main-content .content-box .content-left .recent-widget ul li a {
display: block;
background-color: #f4f4f4;
padding: 5px;
-webkit-transition: all .3s;
transition: all .3s;
}
.main-content .content-box .content-left .recent-widget ul li a:hover {
-webkit-transition: all .3s;
transition: all .3s;
background-color: #e5e4e4;
}
.main-content .content-box .content-left .recent-widget ul li a p {
color: #8c8c8c;
font-size: 14px;
line-height: 1.5;
}
.main-content .content-box .content-left .recent-widget ul li a p span {
color: #000;
font-family: neo-medium;
}
.main-content .content-box .content-left .recent-widget .all-answers {
text-align: left;
}
.main-content .content-box .content-left .recent-widget .all-answers a {
display: inline-block;
padding: 7px 15px;
background-color: #01a6de;
color: #fff;
font-size: 14px;
border-radius: 5px;
}
.main-content .content-box .content-left .recent-widget .all-answers a i {
margin-right: 5px;
}
.mobile-widget {
margin-bottom: 30px;
}
.mobile-widget .mob-img {}
.mobile-widget .mob-data {
padding: 20px 50px 20px 0;
}
.mobile-widget .mob-data p {
font-size: 14px;
color: #808080;
padding-bottom: 15px;
}
.mobile-widget .mob-data ul li {
display: block;
margin-bottom: 13px;
}
.mobile-widget .mob-data ul li a {
display: block;
border-radius: 5px;
background-color: #f4f4f4;
padding: 10px;
text-align: center;
color: #fff;
font-size: 15px;
font-family: neo-medium;
-webkit-transition: all .3s;
transition: all .3s;
}
.mobile-widget .mob-data ul li a i {
margin-left: 5px;
}
.mobile-widget .mob-data ul li:first-child a {
background-color: #c97d06;
}
.mobile-widget .mob-data ul li:last-child a {
background-color: #00a5dd;
}
.mobile-widget .mob-data ul li a:hover {
opacity: .8;
-webkit-transition: all .3s;
transition: all .3s;
}
.content-extra {
border-right: 1px solid #dfdfdf;
padding-right: 15px;
}
/* *********************** Sticky ***************************** */
.sticky {
position: fixed;
top: 0;
z-index: 9;
text-align: center;
visibility: hidden;
opacity: 0;
-webkit-transition: all .3s;
transition: all .3s;
}
.sticky .top-sticky {
background-image: url(../images/brick-wall-dark.png);
background-color: #060606;
padding: 10px;
}
.sticky .top-sticky span {
color: #fff;
font-family: neo-medium;
}
.sticky .top-sticky p {
float: right;
cursor: pointer;
color: #fff;
font-size: 14px;
}
.sticky .bottom-sticky {
box-shadow: 0 3px 8px 0px rgba(0, 0, 0, 0.28);
}
.sticky .bottom-sticky .block-perc {
padding: 15px 30px;
}
.sticky .bottom-sticky .block-perc.orange-card {
background-color: #eda127;
}
.sticky .bottom-sticky .block-perc.blue-card {
background-color: #01a6de;
}
.sticky .bottom-sticky .block-perc p {
color: #fff;
font-size: 15px;
}
.sticky .bottom-sticky .block-perc p span {
margin-right: 5px;
font-family: neo-medium;
color: #000;
font-size: 17px;
}
.sticky .bottom-sticky .ques-divider {
position: absolute;
left: 50%;
width: 30px;
height: 30px;
background-color: #000000;
text-align: center;
border-radius: 50%;
top: 12px;
z-index: 2;
-webkit-transform: translate(-15px);
transform: translate(-15px);
box-shadow: 0 0 0 5px #161616;
}
.sticky .bottom-sticky .ques-divider h3 {
color: #fff;
font-family: neo-medium;
font-size: 14px;
position: relative;
top: 6px;
}
.sticky .bottom-sticky .ques-divider:after {
content: '';
position: absolute;
top: 0;
height: 10px;
width: 5px;
background-color: #000;
}
.show-nav-mob {
display: inline-block;
color: #fff;
font-size: 20px;
background: #0193c4;
border: 0;
border-radius: 4px;
width: 40px;
height: 40px;
-webkit-transition: all .3s;
transition: all .3s;
display: none;
text-align: center;
line-height: 30px;
}
/*---------------------------
Side Menu Style
---------------------------*/
.mobile-nav {
position: fixed;
height: 100%;
width: 250px;
background-color: #0193c4;
left: -260px;
top: 0;
z-index: 9999;
-webkit-transition: all .3s;
transition: all .3s;
}
.mobile-nav .mobile-search {
padding: 10px;
border-bottom: 1px solid #2e6da2;
}
.mobile-nav .mobile-search input {
width: 100%;
height: 35px;
padding-right: 10px;
font-size: 13px;
border: 1px solid #dfdfdf;
border-radius: 5px;
outline: 0;
}
.mobile-nav ul.mob-usr-logged {}
.mobile-nav ul.mob-visitor {}
.mobile-nav .mobile-search ul li {
display: block;
}
.mobile-nav ul li a {
display: block;
padding: 10px;
color: #fff;
border-bottom: 1px solid #2e6da2;
font-size: 13px;
-webkit-transition: all .3s;
transition: all .3s;
}
.mobile-nav ul li a:hover {
background-color: #0081ad;
-webkit-transition: all .3s;
transition: all .3s;
}
.mobile-nav ul li a i {
margin-left: 5px;
}
.wrap-pop {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.93);
z-index: 999;
display: none;
cursor: zoom-out;
-webkit-transition: all .3s;
transition: all .3s;
}
.mask-inner {
-webkit-transition: all .3s;
transition: all .3s;
}
/* ***************************** Tagbox **************************** */
.main-content .content-box .content-right .tag-box {}
.main-content .content-box .content-right .tag-box .tag-head {
border-bottom: 2px solid #dfdfdf;
}
.main-content .content-box .content-right .tag-box .tag-head h2 {
padding: 15px 0 0;
font-family: neo-medium;
font-size: 20px;
}
.main-content .content-box .content-right .tag-box .tag-head p {
font-size: 13px;
color: #808080;
padding: 5px 0 10px;
}
.main-content .content-box .content-right .tag-box .tag-elements {}
.main-content .content-box .content-right .tag-box .tag-elements ul li {
display: block;
width: 100%;
border-bottom: 1px solid #dfdfdf;
padding: 25px 0;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li a.tag-name {
font-family: neo-medium;
color: #01a6de;
display: inline-block;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li a.tag-name:hover {
color: #0684af;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li p.content {
padding: 10px 0;
font-size: 15px;
color: #676767;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li p.content span {
font-family: neo-medium;
color: #737373;
font-size: 14px;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li p.extra {
font-size: 12px;
color: #808080;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li p.extra a {
display: inline-block;
color: #01a6de;
margin-left: 15px;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li p.extra a:hover {
text-decoration: underline;
}
.main-content .content-box .content-right .tag-box .tag-elements ul li p.extra span {}
/*============================================
Profile1
/*============================================*/
.main-content .content-box .profile-content .content-right {
padding-left: 0;
border-left: 1px solid #dfdfdf;
}
.main-content .content-box .profile-content .content-right .profile-image {
width: 130px;
height: 130px;
overflow: hidden;
border: 1px solid #dfdfdf;
padding: 3px;
text-align: center;
margin: 0 auto 15px;
}
.main-content .content-box .profile-content .content-right .profile-image img {}
.main-content .content-box .profile-content .content-left {
padding-right: 30px;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-name h3 {
text-align: center;
font-family: neo-medium;
padding-bottom: 15px;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-name p {
color: #808080;
font-size: 13px;
padding: 0 0 15px;
text-align: center;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-info {
background-color: #f4f4f4;
margin-bottom: 15px;
padding: 15px;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-info ul li {
display: block;
padding-bottom: 5px;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-info ul li p {
font-size: 14px;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-info ul li p b {
font-weight: normal;
background-color: #01a6de;
width: 40px;
display: inline-block;
text-align: center;
height: 40px;
line-height: 40px;
margin-left: 5px;
font-family: neo-medium;
color: #fff;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-info ul li p span {
font-family: neo-medium;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane .more-activities {
margin: 15px 0;
text-align: center;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane .more-activities button {
background-color: #01a6de;
display: inline-block;
border: 0;
border-radius: 5px;
color: #fff;
font-size: 13px;
font-family: neo-medium;
padding: 10px 30px;
-webkit-transition: all .3s;
transition: all .3s;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane .more-activities button i {
margin-left: 5px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li {
display: block;
width: 100%;
padding-bottom: 20px;
border-bottom: 1px solid #dfdfdf;
margin-bottom: 40px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li:last-child {
margin-bottom: 0;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li i {
width: 40px;
height: 40px;
background-color: #f0f;
line-height: 40px;
text-align: center;
color: #fff;
margin-left: 8px;
border-radius: 50%;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li.fav-state i {
background-color: #f29a0f;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li.blue-choice i {
background-color: #01a6de;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li.red-choice i {
background-color: #cc5110;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li.comment-state i {
background-color: #2cab1d;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li.ask-state i {
background-color: #333;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li p {
display: block;
font-size: 13px;
color: #585858;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li p a,
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li p span {
font-family: neo-medium;
display: inline-block;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li .state-icon {
width: 40px;
height: 40px;
display: table-cell;
float: right;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li .state-body {
padding-right: 50px;
vertical-align: text-top;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li .state-body a {
font-size: 13px;
margin-left: 5px;
display: inline-block;
text-decoration: underline;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li .state-body time {
font-size: 12px;
color: #808080;
margin-left: 5px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li .state-body b {
font-size: 13px;
margin-left: 5px;
font-weight: normal;
color: #808080;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .tab-pane ul li .state-body .comment-text {
background-color: #f1f1f1;
padding: 10px;
margin: 13px 0 5px;
border-radius: 5px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block {}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .input-group {
margin-bottom: 15px;
width: 50%;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .input-group label {
font-weight: normal;
padding-bottom: 10px;
font-size: 14px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .input-group input,
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .input-group select {
width: 100%;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .checkbox.adults {
background-color: #f4f4f4;
padding: 10px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .checkbox input {
float: right;
display: inline-block;
width: auto;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .input-group h3,
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .password-group h3 {
font-family: neo-medium;
border-top: 1px solid #dfdfdf;
padding: 10px 0;
margin-top: 15px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block button {
padding: 6px 30px;
background-color: #01a6de;
border: 0;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .remove-acc {
margin-top: 30px;
border-top: 1px solid #dfdfdf;
padding-top: 15px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .remove-acc a {
display: inline-block;
color: red;
font-size: 14px;
font-family: neo-medium;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .remove-acc p {
padding: 5px 0 10px;
font-size: 13px;
color: #808080;
}
.right_tap-box,
.left_tap-box {
border-radius: 0px;
-webkit-transition: all 35s;
-webkit-transition: all .3s;
transition: all .3s;
}
.right_tap-box .right_box-inner {
background: #fff;
border: 1px solid #dfdfdf;
border-left: 0;
}
.right_tap-box .nav-tabs {
border-bottom: 0;
}
.right_tap-box .nav-tabs > li {
float: left;
margin-bottom: -1px;
display: block;
text-align: right;
direction: rtl;
width: 100%;
}
.right_tap-box .nav-tabs > li a {
font-size: 14px;
margin: 0;
border-radius: 0;
padding: 14px;
border: 0;
border-bottom: 1px solid #dfdfdf;
}
.right_tap-box .nav-tabs li:last-child a {
border: 0;
}
.nav>li>a:focus,
.nav>li>a:hover {
text-decoration: none;
background-color: #01a6de;
color: #fff;
}
.right_tap-box .nav-tabs > li a i {
margin-left: 7px;
}
.right_tap-box .nav-tabs > li.active > a,
.right_tap-box .nav-tabs > li.active > a:hover,
.right_tap-box .nav-tabs > li.active > a:focus {
cursor: default;
background-color: #01a6de;
border: 0;
color: #fff;
border-radius: 0;
}
.mobile_tap-box {
padding: 0 12px;
border-radius: 0px;
direction: rtl;
-webkit-transition: all .5s;
transition: all .5s;
margin-bottom: 20px;
}
.mobile_tap-box .right_box-inner {
background: #fff;
}
.right_box-inner {
position: relative;
}
.mobile_tap-box .nav-tabs {
border: 0;
}
.mobile_tap-box .nav-tabs > li {
margin: 0;
display: inline-block;
float: right;
border: 0;
}
.mobile_tap-box .nav-tabs li a {
font-size: 15px;
margin: 0;
border-radius: 0;
padding: 15px 41.25px;
border: 1px solid #dfdfdf;
border-right: 0;
}
.mobile_tap-box .nav-tabs {
border: 0;
}
.mobile_tap-box .nav-tabs > li:last-child a {
border-left: 0;
}
.mobile_tap-box .nav-tabs > li.active > a,
.mobile_tap-box .nav-tabs > li.active > a:hover,
.mobile_tap-box .nav-tabs > li.active > a:focus {
cursor: default;
background-color: #01a6de;
color: #fff;
text-align: center;
border-radius: 0;
display: inline-block;
position: relative;
}
.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
border-right: 0;
border-color: #01a6de;
border-bottom-color: #01a6de;
}
/* *************************** Submit Question ****************************** */
.main-content .content-box .content-right .submit-box {}
.main-content .content-box .content-right .submit-box .submit-head {
border-bottom: 1px solid #dfdfdf;
padding: 15px 0;
margin-bottom: 30px;
}
.main-content .content-box .content-right .submit-box .submit-head h2 {
font-family: neo-medium;
font-size: 20px;
color: #000;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview {
margin-bottom: 30px;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview p.ques-title {
font-family: neo-medium;
padding-bottom: 10px;
word-break: break-all;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview p.ques-prefix {
color: #808080;
font-size: 12px;
word-break: break-all;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .submit-cards {
margin: 20px 0;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .submit-cards .card {}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .submit-cards div.card .inner {
padding: 20px 40px;
display: table;
height: 200px;
text-align: center;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .submit-cards .card p {
display: table-cell;
vertical-align: middle;
font-size: 13px;
color: #fff;
font-family: neo-medium;
word-break: break-all;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .orange-card {
background-color: #eda127;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .blue-card {
background-color: #01a6de;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .ques-divider {
position: absolute;
left: 50%;
width: 40px;
height: 40px;
background-color: #000000;
text-align: center;
border-radius: 50%;
top: 45%;
z-index: 2;
-webkit-transform: translate(-20px);
transform: translate(-20px);
box-shadow: 0 0 0 4px #161616;
line-height: 40px;
display: table;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview .ques-divider h3 {
font-size: 13px;
display: table-cell;
vertical-align: middle;
color: #fff;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-preview p.ques-extra {
padding: 10px;
background-color: #f4f4f4;
display: inline-block;
width: 100%;
font-size: 14px;
color: #000;
border: 1px solid #dfdfdf;
border-radius: 5px;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-form {}
.main-content .content-box .content-right .submit-box .submit-body .ques-form .input-group {
margin-bottom: 15px;
width: 100%;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-form label {
font-weight: normal;
padding-bottom: 10px;
font-size: 14px;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-form button {
padding: 6px 30px;
background-color: #01a6de;
border: 0;
float: left;
}
.main-content .content-box .content-right .submit-box .submit-body .ques-form .checkbox {
display: inline-block;
margin: 0;
float: right;
}
.content-extra .mobile-widget .mob-data {
padding-right: 0;
}
/************************************* Sign_up ******************************* */
.main-content .content-box .content-right .sign_up-box .sign_up-head{
border-bottom: 1px solid #dfdfdf;
padding: 15px 0;
margin-bottom: 30px;}
.main-content .content-box .content-right .sign_up-box .sign_up-head h2 {
font-family: neo-medium;
font-size: 20px;
color: #000;
}
.main-content .content-box .content-right .sign_up-box .sign_up-body .input-group {
margin-bottom: 15px;
width: 100%;
}
.main-content .content-box .content-right .sign_up-box .sign_up-body .input-group label {
font-weight: normal;
padding-bottom: 10px;
font-size: 14px;
}
.main-content .content-box .content-right .sign_up-box .sign_up-body .input-group button {
padding: 6px 30px;
background-color: #01a6de;
border: 0;
float: left;
}
.main-content .content-box .content-right .sign_up-box .sign_up-body .btn-group{margin-bottom:20px;}
.main-content .content-box .content-right .sign_up-box .sign_up-body .btn-group button{ background-color: #4666a6;
color: #fff;
font-size: 14px;
border: 0;
display: inline-block;
padding: 10px 20px;
border-radius: 5px;
}.main-content .content-box .content-right .sign_up-box .sign_up-body .btn-group button:hover{
opacity:.8;
}
.main-content .content-box .content-right .sign_up-box .sign_up-body .btn-group button i{
margin-left: 5px;
border-left: 1px solid #fff;
padding-left: 10px;
}
.modal{background-color:rgba(0, 0, 0, 0.75);}
.sign-in .btn-group,.sign-in .input-group{width:100%;margin-bottom:15px;}
.sign-in .btn-group button{ background-color: #4666a6;
color: #fff;
font-size: 14px;
border: 0;
display: inline-block;
padding: 10px 20px;
border-radius: 5px;}
.sign-in .btn-group button i{ margin-left: 5px;
border-left: 1px solid #fff;
padding-left: 10px;}
.sign-in .input-group label{ font-weight: normal;
padding-bottom: 10px;
font-size: 14px;}
.sign-in .input-group input{width:100%;}
.sign-in .links-group ul li{display:inline-block;}
.sign-in .links-group ul li a{ display: inline-block;
font-size: 15px;
margin-left: 40px;
color: #01a6de;}
.sign-in .links-group ul li a:hover{text-decoration:underline;}
.modal-footer .checkbox{display:inline-block;margin:0;float:right;}
.modal-footer .checkbox label{font-size:14px;}
.modal-footer .checkbox input{margin-left:5px;}
.modal-footer button{padding:6px 30px;}
/************************************* Footer ******************************* */
footer .footer-body {
background-color: #333;
padding: 15px 0;
}
footer .footer-body .rights {}
footer .footer-body .rights p {
color: #fff;
font-size: 13px;
padding-bottom: 5px;
}
footer .footer-body .rights ul li {
display: inline-block;
}
footer .footer-body .rights ul li a {
display: inline-block;
color: #3dceff;
font-size: 13px;
margin-left: 15px;
}
footer .footer-body .rights ul li a:hover {
text-decoration: underline;
}
footer .footer-body .votes p {
color: #fff;
font-size: 13px;
}
footer .footer-body .votes p img {
display: inline-block;
margin-left: 10px;
width: 20px;
height: 20px;
float: right;
}
footer .footer-body .votes p span {
font-family: neo-medium;
}
/* **************************** Media Query ************************* */
@media (max-width:991px) {
header .navigation .search-box {
padding-right: 100px;
}
header .navigation .nav-tools ul {
display: none;
}
.show-nav-mob {
display: inline-block;
}
.main-content .content-box .profile-content .content-right {
border: 0;
margin-bottom: 30px;
}
.main-content .content-box .profile-content .content-right .profile_mob_data .user-info {
margin-bottom: 30px;
}
.mobile_tap-box {
padding: 0;
}
.content-extra .mobile-widget .mob-img,
.content-extra .mobile-widget .mob-data,
.mobile-widget .mob-img,
.mobile-widget .mob-data {
width: 50%;
}
.content-extra .mobile-widget {
margin-bottom: 0;
}
.content-extra {
border: 0;
}
.content-extra .mobile-widget .mob-data {
padding-right: 30px;
}
.main-content .content-box .profile-content .content-left {
padding-right: 0;
}
}
@media (min-width:768px) and (max-width:991px) {
.content-extra .mobile-widget .mob-img, .content-extra .mobile-widget .mob-data, .mobile-widget .mob-img, .mobile-widget .mob-data{width:100%;} .content-extra .mobile-widget .mob-data, .mobile-widget .mob-img, .mobile-widget .mob-data{padding:0;}.content-extra .mobile-widget .mob-img, .content-extra .mobile-widget .mob-data{margin-bottom:15px;}}
@media(max-width:768px) {
header .navigation .search-box {
display: none;
}
header .navigation .logo {
width: auto;
}
header .navigation .nav-tools {
float: left;
width: auto;
}
header .questions .ques-divider {
top: 51%;
}
header .questions .block.first-card {
margin-bottom: 10px;
}
header .questions .ques-btn a.arrow-right {
right: 3.7%;
top: 3%;
}
header .questions .ques-btn a.arrow-left {
left: 3.7%;
top: 3%;
}
.main-content .content-box .content-left .recent-widget ul li {
width: 100%;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .usr-data {
padding: 15px 0;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li .comment-inner .avatar {
display: block;
float: none;
}
.main-content .content-box .content-right .ques-comments .comments-box ul li ul.children-comments {
padding-right: 20px;
}
.main-content .question-data .question-btns {
border-top: 1px solid #dfdfdf;
padding: 15px 0;
border-right: 0;
}
.sticky .bottom-sticky .ques-divider {
top: 23%;
}
.main-content .content-box .content-right .tag-box {
margin-bottom: 40px;
}
.main-content .content-box .profile-content .content-left .left_tap-box .tab-content .setting-block .input-group {
width: 100%;
}
.content-extra .mobile-widget {
margin-bottom: 0;
}.content-extra{padding:0;}.sign_up-box{margin-bottom:30px;}
}
@media(max-width:500px) {
.main-content .content-box .content-right {
padding: 0;
}
.sticky .bottom-sticky .block-perc {
width: 100%;
}
.sticky .bottom-sticky .ques-divider {
top: 37%;
}
.mobile_tap-box .nav-tabs > li a {
padding: 15px 24px !important;
}
.content-extra .mobile-widget .mob-img,
.content-extra .mobile-widget .mob-data,
.mobile-widget .mob-img,
.mobile-widget .mob-data {
width: 100%;
}
.content-extra .mobile-widget .mob-data,
.mobile-widget .mob-data {
padding-right: 0;
}
.footer-body .rights {
margin-bottom: 15px;
}
.footer-body .rights,
.footer-body .votes {
width: 100%;
}
}
@media(max-width:375px) {
.sticky .bottom-sticky .ques-divider {
top: 48%;
}
} | 0.219588 | 0.035779 |
body
{
background: url("../images/Background.jpg");
font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans serif;
font-size: 16px;
height: device-height;
width: device-width;
background-position: center;
background-size: cover;
background-attachment: fixed;
}
ul, li
{
margin: 0;
padding: 0;
list-style-type: none;
}
#infocontainer
{
width: 400px;
padding: 0px;
background: #fefefe;
margin: 0 auto;
border: 1px solid #c4cddb;
border-top-color: #d3dbde;
border-bottom-color: #bfc9dc;
box-shadow: 0 1px 1px #ccc;
border-radius: 5px;
position: relative;
}
input, select
{
padding: 10px 10px;
border: 1px solid #d5d9da;
border-radius: 5px;
box-shadow: 0 0 5px #e8e9eb inset;
width: 328px; /* 400 (#container) - 40 (li margins) - 10 (span paddings) - 20 (input paddings) - 2 (input borders) */
font-size: 1em;
outline: 0; /* remove webkit focus styles */
}
input:focus, select:focus
{
border: 1px solid #b9d4e9;
border-top-color: #b6d5ea;
border-bottom-color: #b8d4ea;
box-shadow: 0 0 5px #b9d4e9;
}
label
{
color: #555;
}
#infocontainer span
{
background: #f6f6f6;
padding: 3px 5px;
display: block;
border-radius: 5px;
margin-top: 5px;
}
button, #loaduser
{
background: #57a9eb; /* Old browsers */
background: -moz-linear-gradient(top, #57a9eb 0%, #3a76c4 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#57a9eb), color-stop(100%,#3a76c4)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #57a9eb 0%,#3a76c4 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #57a9eb 0%,#3a76c4 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #57a9eb 0%,#3a76c4 100%); /* IE10+ */
background: linear-gradient(top, #57a9eb 0%,#3a76c4 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#57a9eb', endColorstr='#3a76c4',GradientType=0 ); /* IE6-9 */
border:1px solid #326fa9;
border-top-color: #3e80b1;
border-bottom-color: #1e549d;
color: #fff;
text-shadow: 0 1px 0 #1e3c5e;
font-size: .875em;
padding: 8px 15px;
width: 150px;
border-radius: 20px;
box-shadow: 0 1px 0 #bbb, 0 1px 0 #9cccf3 inset;
}
button:active, #loaduser:active
{
background: #3a76c4; /* Old browsers */
background: -moz-linear-gradient(top, #3a76c4 0%, #57a9eb 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3a76c4), color-stop(100%,#57a9eb)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #3a76c4 0%,#57a9eb 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #3a76c4 0%,#57a9eb 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #3a76c4 0%,#57a9eb 100%); /* IE10+ */
background: linear-gradient(top, #3a76c4 0%,#57a9eb 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3a76c4', endColorstr='#57a9eb',GradientType=0 ); /* IE6-9 */
box-shadow: none;
text-shadow: 0 -1px 0 #1e3c5e;
}
form ul li
{
margin: 10px 20px;
}
form ul li:last-child, #loaduser
{
text-align: center;
margin: 20px 0 25px 0;
}
h1
{
margin: 0;
padding: 10px 0;
font-size: 24px;
text-align: center;
background: #eff4f7;
border-bottom: 1px solid #dde0e7;
box-shadow: 0 -1px 0 #fff inset;
border-radius: 5px 5px 0 0; /* otherwise we get some uncut corners with container div */
text-shadow: 1px 1px 0 #fff;
}
#skill
{
display: none;
} | css/user.css | body
{
background: url("../images/Background.jpg");
font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans serif;
font-size: 16px;
height: device-height;
width: device-width;
background-position: center;
background-size: cover;
background-attachment: fixed;
}
ul, li
{
margin: 0;
padding: 0;
list-style-type: none;
}
#infocontainer
{
width: 400px;
padding: 0px;
background: #fefefe;
margin: 0 auto;
border: 1px solid #c4cddb;
border-top-color: #d3dbde;
border-bottom-color: #bfc9dc;
box-shadow: 0 1px 1px #ccc;
border-radius: 5px;
position: relative;
}
input, select
{
padding: 10px 10px;
border: 1px solid #d5d9da;
border-radius: 5px;
box-shadow: 0 0 5px #e8e9eb inset;
width: 328px; /* 400 (#container) - 40 (li margins) - 10 (span paddings) - 20 (input paddings) - 2 (input borders) */
font-size: 1em;
outline: 0; /* remove webkit focus styles */
}
input:focus, select:focus
{
border: 1px solid #b9d4e9;
border-top-color: #b6d5ea;
border-bottom-color: #b8d4ea;
box-shadow: 0 0 5px #b9d4e9;
}
label
{
color: #555;
}
#infocontainer span
{
background: #f6f6f6;
padding: 3px 5px;
display: block;
border-radius: 5px;
margin-top: 5px;
}
button, #loaduser
{
background: #57a9eb; /* Old browsers */
background: -moz-linear-gradient(top, #57a9eb 0%, #3a76c4 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#57a9eb), color-stop(100%,#3a76c4)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #57a9eb 0%,#3a76c4 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #57a9eb 0%,#3a76c4 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #57a9eb 0%,#3a76c4 100%); /* IE10+ */
background: linear-gradient(top, #57a9eb 0%,#3a76c4 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#57a9eb', endColorstr='#3a76c4',GradientType=0 ); /* IE6-9 */
border:1px solid #326fa9;
border-top-color: #3e80b1;
border-bottom-color: #1e549d;
color: #fff;
text-shadow: 0 1px 0 #1e3c5e;
font-size: .875em;
padding: 8px 15px;
width: 150px;
border-radius: 20px;
box-shadow: 0 1px 0 #bbb, 0 1px 0 #9cccf3 inset;
}
button:active, #loaduser:active
{
background: #3a76c4; /* Old browsers */
background: -moz-linear-gradient(top, #3a76c4 0%, #57a9eb 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3a76c4), color-stop(100%,#57a9eb)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #3a76c4 0%,#57a9eb 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #3a76c4 0%,#57a9eb 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #3a76c4 0%,#57a9eb 100%); /* IE10+ */
background: linear-gradient(top, #3a76c4 0%,#57a9eb 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3a76c4', endColorstr='#57a9eb',GradientType=0 ); /* IE6-9 */
box-shadow: none;
text-shadow: 0 -1px 0 #1e3c5e;
}
form ul li
{
margin: 10px 20px;
}
form ul li:last-child, #loaduser
{
text-align: center;
margin: 20px 0 25px 0;
}
h1
{
margin: 0;
padding: 10px 0;
font-size: 24px;
text-align: center;
background: #eff4f7;
border-bottom: 1px solid #dde0e7;
box-shadow: 0 -1px 0 #fff inset;
border-radius: 5px 5px 0 0; /* otherwise we get some uncut corners with container div */
text-shadow: 1px 1px 0 #fff;
}
#skill
{
display: none;
} | 0.236164 | 0.111048 |
@keyframes slideInLeft {
0% {
opacity: 0;
transform: translateX(-300px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
opacity: 0;
transform: translateX(300px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
* {
border-radius: 0 !important;
}
canvas {
z-index: 0;
position: absolute;
top: 0;
left: 0;
}
label {
opacity: 0.8;
}
span {
display: inline-block;
}
.visible {
opacity: 1 !important;
}
.hidden {
opacity: 0;
}
#home span {
opacity: 0;
}
#home h1 {
z-index: 1;
}
.heroAnimation {
z-index: -1;
}
.hero__arrow-container {
position: absolute;
bottom: 3rem;
animation-delay: 2s;
}
.hero__arrow-icon {
height: calc(4vw + 20px);
fill: #ffffff;
}
.contact-form__container {
padding-top: 3rem;
}
.card {
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.navbar {
box-shadow: 0 5px 5px -5px rgba(0, 0, 0, .5);
-webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, .5);
opacity: 0;
}
.nav-link {
color: #343a40;
}
.full-vh {
height: 100vh;
}
.text-black {
color: black;
}
.nav-item .active {
font-weight: 400;
}
.section {
margin: 0;
padding: 50px 0 0 0;
text-align: center;
}
.highlight {
color: #08fdd8;
}
.display-5 {
font-size: 2.3rem;
font-weight: 300;
line-height: 1.2;
}
.display-6 {
font-size: 1.5rem;
font-weight: 300;
line-height: 1.2;
}
.header-bar {
width: 80px;
height: 4px;
}
.section__hero {
padding: 0;
width: 100%;
}
.flex {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
@media (max-width: 991px) {
html {
font-size: 12px;
}
}
@media (max-width: 767px) {
html {
font-size: 11px;
}
}
@media (max-width: 575px) {
html {
font-size: 10px;
}
.section {
padding: 30px 0 0 0;
}
.section__hero {
background-position: calc(50% - 50px) 50%;
padding: 0 0 0 0;
}
.section__hero h1 {
font-size: 16pt;
}
}
@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
.section {
padding: 20px 0 0 0;
}
} | static/css/style.css | @keyframes slideInLeft {
0% {
opacity: 0;
transform: translateX(-300px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
@keyframes slideInRight {
0% {
opacity: 0;
transform: translateX(300px);
}
100% {
opacity: 1;
transform: translateX(0);
}
}
* {
border-radius: 0 !important;
}
canvas {
z-index: 0;
position: absolute;
top: 0;
left: 0;
}
label {
opacity: 0.8;
}
span {
display: inline-block;
}
.visible {
opacity: 1 !important;
}
.hidden {
opacity: 0;
}
#home span {
opacity: 0;
}
#home h1 {
z-index: 1;
}
.heroAnimation {
z-index: -1;
}
.hero__arrow-container {
position: absolute;
bottom: 3rem;
animation-delay: 2s;
}
.hero__arrow-icon {
height: calc(4vw + 20px);
fill: #ffffff;
}
.contact-form__container {
padding-top: 3rem;
}
.card {
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}
.navbar {
box-shadow: 0 5px 5px -5px rgba(0, 0, 0, .5);
-webkit-box-shadow: 0 5px 5px -5px rgba(0, 0, 0, .5);
opacity: 0;
}
.nav-link {
color: #343a40;
}
.full-vh {
height: 100vh;
}
.text-black {
color: black;
}
.nav-item .active {
font-weight: 400;
}
.section {
margin: 0;
padding: 50px 0 0 0;
text-align: center;
}
.highlight {
color: #08fdd8;
}
.display-5 {
font-size: 2.3rem;
font-weight: 300;
line-height: 1.2;
}
.display-6 {
font-size: 1.5rem;
font-weight: 300;
line-height: 1.2;
}
.header-bar {
width: 80px;
height: 4px;
}
.section__hero {
padding: 0;
width: 100%;
}
.flex {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
@media (max-width: 991px) {
html {
font-size: 12px;
}
}
@media (max-width: 767px) {
html {
font-size: 11px;
}
}
@media (max-width: 575px) {
html {
font-size: 10px;
}
.section {
padding: 30px 0 0 0;
}
.section__hero {
background-position: calc(50% - 50px) 50%;
padding: 0 0 0 0;
}
.section__hero h1 {
font-size: 16pt;
}
}
@media screen and (min-width: 320px) and (max-width: 767px) and (orientation: landscape) {
.section {
padding: 20px 0 0 0;
}
} | 0.379378 | 0.137706 |
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&display=swap');
/*------Variables-------------------------------------*/
:root{
--green-color: #7acc2d;
--white-color: white;
--black-color: #313337;
/*------Tipografía-----*/
--normal:12px;
/*------Espaciado-----*/
--space: 10px;
--space-2:20px;
/*------Box Shadow-----*/
--box: 0px 0 3px 3px #d8d8d8;
}
/*------Variables-------------------------------------*/
html,body{
padding: 0px;
margin: 0px;
font-size: 12px;
font-family: 'Open Sans', sans-serif;
}
nav{
display: flex;
background-color: var(--green-color);
padding: var(--space);
color: var(--white-color);
justify-content: space-between;
align-items: center;
}
nav ul{
display: flex;
}
nav li{
padding-left: 20px;
list-style: none;
}
nav li a {
color: var(--black-color);
text-decoration: none;
}
nav li a:hover{
font-weight: bold;
}
p, label{
font-size: var(--normal);
}
/*--------Main Section----------------------------------*/
.main_section {
padding: 15%;
text-align: center;
}
.products{
background-image: url("../images/curve.png");
height: 50px;
background-size: cover;
background-position: center top;
padding: 20%;
display: flex;
}
.product {
padding: var(--space);
margin-top: -240px;
}
.product .content{
background-color: var(--white-color);
padding: 15px;
box-shadow: var(--box);
border-radius: 6px;
}
.image_content{
text-align: center;
}
.main_button{
background-color: var(--green-color);
width: 100%;
padding: var(--space);
font-size: var(--normal);
color: var(--white-color);
border: 0;
border-radius: 2px;
cursor: pointer;
}
.main_button:hover{
background-color: #5e9e22;
}
/*--------------------Caracteristicas----------------------------------------*/
.caracteristicas {
padding: 10%;
display: flex;
}
.caracteristica{
text-align: center;
padding: 20px;
}
.caracteristica img{
max-height: 100%;
}
.text_caracteristica{
text-align: justify;
}
/*--------------------Menciones----------------------------------------*/
h2.menciones_title{
text-align: center;
}
.menciones {
display: flex;
padding: 5%;
}
.content_mencion{
box-shadow: 0px 0 2px 1px #e6e5e9;
margin: 5px;
}
.mencion{
padding: var(--space);
}
.mencion img{
width: 100%;
}
.mencion .text{
padding: padding: var(--space);
}
/*--------------------Pagina Venta----------------------------------------*/
.modulo_pago{
background-color:var(--white-color);
box-shadow: var(--box);
padding: var(--space-2);
margin: 60px 0 60px 0;
}
.modulo_pago_images{
max-width: 150px;
text-align: center;
width: 100%;
margin:auto;
}
.data{
margin: 6px 0 10px 0;
width: 100%;
height: 36px;
border-radius: 2px;
border: 1px solid var(--black-color);
box-sizing: border-box;
}
.modulo_pago .main_button{
margin-top: 10px;
}
/*--------------------Footer----------------------------------------*/
footer{
display: flex;
justify-content: space-between;
font-size: var(--normal);
background-color: var(--black-color);
padding: var(--space);
color: var(--white-color);
}
footer a{
color: var(--green-color);
text-decoration: none;
} | css/estilos.css | @import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&display=swap');
/*------Variables-------------------------------------*/
:root{
--green-color: #7acc2d;
--white-color: white;
--black-color: #313337;
/*------Tipografía-----*/
--normal:12px;
/*------Espaciado-----*/
--space: 10px;
--space-2:20px;
/*------Box Shadow-----*/
--box: 0px 0 3px 3px #d8d8d8;
}
/*------Variables-------------------------------------*/
html,body{
padding: 0px;
margin: 0px;
font-size: 12px;
font-family: 'Open Sans', sans-serif;
}
nav{
display: flex;
background-color: var(--green-color);
padding: var(--space);
color: var(--white-color);
justify-content: space-between;
align-items: center;
}
nav ul{
display: flex;
}
nav li{
padding-left: 20px;
list-style: none;
}
nav li a {
color: var(--black-color);
text-decoration: none;
}
nav li a:hover{
font-weight: bold;
}
p, label{
font-size: var(--normal);
}
/*--------Main Section----------------------------------*/
.main_section {
padding: 15%;
text-align: center;
}
.products{
background-image: url("../images/curve.png");
height: 50px;
background-size: cover;
background-position: center top;
padding: 20%;
display: flex;
}
.product {
padding: var(--space);
margin-top: -240px;
}
.product .content{
background-color: var(--white-color);
padding: 15px;
box-shadow: var(--box);
border-radius: 6px;
}
.image_content{
text-align: center;
}
.main_button{
background-color: var(--green-color);
width: 100%;
padding: var(--space);
font-size: var(--normal);
color: var(--white-color);
border: 0;
border-radius: 2px;
cursor: pointer;
}
.main_button:hover{
background-color: #5e9e22;
}
/*--------------------Caracteristicas----------------------------------------*/
.caracteristicas {
padding: 10%;
display: flex;
}
.caracteristica{
text-align: center;
padding: 20px;
}
.caracteristica img{
max-height: 100%;
}
.text_caracteristica{
text-align: justify;
}
/*--------------------Menciones----------------------------------------*/
h2.menciones_title{
text-align: center;
}
.menciones {
display: flex;
padding: 5%;
}
.content_mencion{
box-shadow: 0px 0 2px 1px #e6e5e9;
margin: 5px;
}
.mencion{
padding: var(--space);
}
.mencion img{
width: 100%;
}
.mencion .text{
padding: padding: var(--space);
}
/*--------------------Pagina Venta----------------------------------------*/
.modulo_pago{
background-color:var(--white-color);
box-shadow: var(--box);
padding: var(--space-2);
margin: 60px 0 60px 0;
}
.modulo_pago_images{
max-width: 150px;
text-align: center;
width: 100%;
margin:auto;
}
.data{
margin: 6px 0 10px 0;
width: 100%;
height: 36px;
border-radius: 2px;
border: 1px solid var(--black-color);
box-sizing: border-box;
}
.modulo_pago .main_button{
margin-top: 10px;
}
/*--------------------Footer----------------------------------------*/
footer{
display: flex;
justify-content: space-between;
font-size: var(--normal);
background-color: var(--black-color);
padding: var(--space);
color: var(--white-color);
}
footer a{
color: var(--green-color);
text-decoration: none;
} | 0.29381 | 0.088781 |
.X9KLPc, .Xa, .IL9EXe, .Uexccd, .teTAFe, .haAclf, .CL, .aeN {
background-color: #4d394b;
}
/* Sidebar elemtents bg color when hovering */
.PL5Wwe:focus:not(.dQ2Tsf),
.PL5Wwe:hover:not(.dQ2Tsf),
.tuKyod .LoYJxb {
background-color: #3e313c;
}
/* Sidebar elements text color for chans with unread messages */
.PL5Wwe.H7du2 .t5F5nf {
color: #fff;
}
/* Channel name color in sidebar */
.t5F5nf, .Z6 {
color: rgb(202, 196, 201);
}
/* Sidebar channel icons */
.SwwApf, .SwwApf.qkl0pe {
background-color: #3e313c;
}
/* Sidebar "recent" or "starred" section names color */
.aOHsTc, .WW {
text-transform: uppercase;
color: rgb(202, 196, 201);
}
.V6 {
border-top: 1px solid #fff;
}
/* Sidebar Search section text color */
.HLTcjb {
color: rgb(202, 196, 201);
}
.D3DXDc {
fill: rgb(202, 196, 201) !important;
}
/* Sidebar search button hovering bg color */
.GbZFNe:focus, .GbZFNe:hover {
background-color: #3e313c;
}
/* Sidebar search button shadow */
.d6pS5 {
box-shadow: 0 5px 5px -2px #3e313c;
padding-bottom: 0;
}
/* Search Menu bg color */
.yoV6yd {
background-color: #4d394b;
}
/* Search menu text color */
.Uk0Bfe .zHQkBf, .Uk0Bfe .snByac, .dQ2Tsf .NXfF8b, .dQ2Tsf .ZTmjQb {
color: #000;
}
/* Search menu elements colors when hovering */
.dQ2Tsf[aria-selected="true"], .PL5Wwe:hover > .dQ2Tsf {
background-color: #eee;
color: #fff
}
/* Search menu people list mail color */
.dQ2Tsf[aria-selected="true"] .Kfe2Ub, .PL5Wwe:hover > .dQ2Tsf .Kfe2Ub {
color: #000;
}
/* Top left corner section (with title) background color */
.Riuhhf {
background-color: #4d394b;
}
/* Chat top left logo text color */
#XMLID_8_-Clipped{
opacity: 0.8 !important;
fill: #fff !important;
}
/* Notifications active/disabled status button */
.gWTIDe {
color: rgb(202, 196, 201);
}
/* Time and menu buttons and clock for channels inactive and active colors */
.sFuxxd {
color: rgb(202, 196, 201);
}
.PL5Wwe.H7du2 .sFuxxd {
color: #fff;
}
.DQy0Rb {
fill: rgb(202, 196, 201) !important;
}
.PL5Wwe.H7du2 .DQy0Rb {
fill: #fff !important;
}
.QeRfYe {
fill: rgb(202, 196, 201) !important;
}
.PL5Wwe.H7du2 .QeRfYe {
fill: #fff !important;
}
/* Make code snippets have slack colors */
.FMTudf, .Zc1Emd div {
border: 1px solid #e0e0e0!important;
background: #f9f9f9!important;
}
/* Make inline pre have slack colors */
.U8d2H, .Zc1Emd span:not(.NhKrqd):not(.fWwrkf) {
background-color: #f7f7f9!important;
color: #d72b3f!important;
} | css/color_slack.css | .X9KLPc, .Xa, .IL9EXe, .Uexccd, .teTAFe, .haAclf, .CL, .aeN {
background-color: #4d394b;
}
/* Sidebar elemtents bg color when hovering */
.PL5Wwe:focus:not(.dQ2Tsf),
.PL5Wwe:hover:not(.dQ2Tsf),
.tuKyod .LoYJxb {
background-color: #3e313c;
}
/* Sidebar elements text color for chans with unread messages */
.PL5Wwe.H7du2 .t5F5nf {
color: #fff;
}
/* Channel name color in sidebar */
.t5F5nf, .Z6 {
color: rgb(202, 196, 201);
}
/* Sidebar channel icons */
.SwwApf, .SwwApf.qkl0pe {
background-color: #3e313c;
}
/* Sidebar "recent" or "starred" section names color */
.aOHsTc, .WW {
text-transform: uppercase;
color: rgb(202, 196, 201);
}
.V6 {
border-top: 1px solid #fff;
}
/* Sidebar Search section text color */
.HLTcjb {
color: rgb(202, 196, 201);
}
.D3DXDc {
fill: rgb(202, 196, 201) !important;
}
/* Sidebar search button hovering bg color */
.GbZFNe:focus, .GbZFNe:hover {
background-color: #3e313c;
}
/* Sidebar search button shadow */
.d6pS5 {
box-shadow: 0 5px 5px -2px #3e313c;
padding-bottom: 0;
}
/* Search Menu bg color */
.yoV6yd {
background-color: #4d394b;
}
/* Search menu text color */
.Uk0Bfe .zHQkBf, .Uk0Bfe .snByac, .dQ2Tsf .NXfF8b, .dQ2Tsf .ZTmjQb {
color: #000;
}
/* Search menu elements colors when hovering */
.dQ2Tsf[aria-selected="true"], .PL5Wwe:hover > .dQ2Tsf {
background-color: #eee;
color: #fff
}
/* Search menu people list mail color */
.dQ2Tsf[aria-selected="true"] .Kfe2Ub, .PL5Wwe:hover > .dQ2Tsf .Kfe2Ub {
color: #000;
}
/* Top left corner section (with title) background color */
.Riuhhf {
background-color: #4d394b;
}
/* Chat top left logo text color */
#XMLID_8_-Clipped{
opacity: 0.8 !important;
fill: #fff !important;
}
/* Notifications active/disabled status button */
.gWTIDe {
color: rgb(202, 196, 201);
}
/* Time and menu buttons and clock for channels inactive and active colors */
.sFuxxd {
color: rgb(202, 196, 201);
}
.PL5Wwe.H7du2 .sFuxxd {
color: #fff;
}
.DQy0Rb {
fill: rgb(202, 196, 201) !important;
}
.PL5Wwe.H7du2 .DQy0Rb {
fill: #fff !important;
}
.QeRfYe {
fill: rgb(202, 196, 201) !important;
}
.PL5Wwe.H7du2 .QeRfYe {
fill: #fff !important;
}
/* Make code snippets have slack colors */
.FMTudf, .Zc1Emd div {
border: 1px solid #e0e0e0!important;
background: #f9f9f9!important;
}
/* Make inline pre have slack colors */
.U8d2H, .Zc1Emd span:not(.NhKrqd):not(.fWwrkf) {
background-color: #f7f7f9!important;
color: #d72b3f!important;
} | 0.333829 | 0.087291 |
body {
margin: 0;
font-family: 'Montserrat', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
h1 {
font-family: 'Playfair Display', serif;
}
h2 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
}
h4 {
font-family: 'Playfair Display', serif;
font-size: 1rem;
padding-left: 0.5rem;
}
p {
font-family: 'Montserrat', sans-serif;
}
b {
padding-left: 0.3rem;
}
/* unvisited link */
a:link {
color: #7C99AC;
}
/* visited link */
a:visited {
color: #92A9BD;
}
/* mouse over link */
a:hover {
color: #1C6DD0;
}
/* selected link */
a:active {
color: #35589A;
}
/* Home page */
.app {
background-color: #f0f1f8;
}
.heading {
font-size: 2.5rem;
}
.home-lead {
font-size: 1rem;
}
/* Images */
.img {
background-repeat: no-repeat;
background-position: center center;
background-attachment: scroll;
background-size: cover;
}
.home-img {
background-image: url("https://images.unsplash.com/photo-1508672019048-805c876b67e2?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MjZ8fHlvZ2F8ZW58MHx8MHx8&auto=format&fit=crop&w=1400&q=60");
}
.home-img-1 {
background-image: url("https://images.unsplash.com/photo-1593810451056-0acc1fad48c5?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1172&q=80");
}
.home-img-2 {
background-image: url("https://images.unsplash.com/photo-1611073615452-4889cb93422e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1171&q=80");
}
.home-img-3 {
background-image: url("https://images.unsplash.com/photo-1593810450967-f9c42742e326?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1172&q=80");
}
.home-img-4 {
background-image: url("https://images.unsplash.com/photo-1593811167526-0ead6c92273b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1172&q=80");
}
.home-img-5 {
background-image: url("https://images.unsplash.com/photo-1593810451137-5dc55105dace?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1172&q=80");
}
.home-link-1 {
background-color: #FEFBF3;
border-radius: 2em;
text-decoration:none;
text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
padding:0.6em 2.4em;
}
.home-link-2 {
background-color: #F8F0DF;
border-radius: 2em;
text-decoration:none;
text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
padding:0.6em 2.4em;
}
.home-hr {
background-color: #FEFBF3;
border-style: none;
border-top-style: dotted;
border-color: #9D9D9D;
border-width: 8px;
width: 5%;
margin: 0 auto;;
}
.home-imgs {
height: 8rem;
border-radius: 50%;
}
/* Navbar */
.navbar {
background-color: #e5e5f3;
}
/* Collapses */
.tabs {
background-color: #e5e5f3;
}
strong {
text-decoration: underline;
text-underline-offset: 0.08em;
color: #182361;
}
.card {
text-align: left;
}
/* Yoga */
.yoga-desc {
font-size: 0.9rem;
text-align: justify;
padding: 1rem;
}
.yoga-price {
font-size: 0.9rem;
}
/* Timetable */
.timetable {
font-size: 0.8rem;
text-align: center;
}
th {
font-family: 'Montserrat', sans-serif;
}
/* Massage */
.mass-desc {
font-size: 0.9rem;
text-align: justify;
padding: 1rem;
}
.mass-price {
font-size: 0.9rem;
padding: 0.3rem 1rem;
}
/* Payment */
.bank-desc {
font-size: 0.9rem;
padding: 1rem;
}
/* Footer */
.footer {
background-color: #e5e5f3;
} | src/index.css | body {
margin: 0;
font-family: 'Montserrat', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
h1 {
font-family: 'Playfair Display', serif;
}
h2 {
font-family: 'Playfair Display', serif;
font-size: 2rem;
}
h4 {
font-family: 'Playfair Display', serif;
font-size: 1rem;
padding-left: 0.5rem;
}
p {
font-family: 'Montserrat', sans-serif;
}
b {
padding-left: 0.3rem;
}
/* unvisited link */
a:link {
color: #7C99AC;
}
/* visited link */
a:visited {
color: #92A9BD;
}
/* mouse over link */
a:hover {
color: #1C6DD0;
}
/* selected link */
a:active {
color: #35589A;
}
/* Home page */
.app {
background-color: #f0f1f8;
}
.heading {
font-size: 2.5rem;
}
.home-lead {
font-size: 1rem;
}
/* Images */
.img {
background-repeat: no-repeat;
background-position: center center;
background-attachment: scroll;
background-size: cover;
}
.home-img {
background-image: url("https://images.unsplash.com/photo-1508672019048-805c876b67e2?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MjZ8fHlvZ2F8ZW58MHx8MHx8&auto=format&fit=crop&w=1400&q=60");
}
.home-img-1 {
background-image: url("https://images.unsplash.com/photo-1593810451056-0acc1fad48c5?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1172&q=80");
}
.home-img-2 {
background-image: url("https://images.unsplash.com/photo-1611073615452-4889cb93422e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1171&q=80");
}
.home-img-3 {
background-image: url("https://images.unsplash.com/photo-1593810450967-f9c42742e326?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1172&q=80");
}
.home-img-4 {
background-image: url("https://images.unsplash.com/photo-1593811167526-0ead6c92273b?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1172&q=80");
}
.home-img-5 {
background-image: url("https://images.unsplash.com/photo-1593810451137-5dc55105dace?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1172&q=80");
}
.home-link-1 {
background-color: #FEFBF3;
border-radius: 2em;
text-decoration:none;
text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
padding:0.6em 2.4em;
}
.home-link-2 {
background-color: #F8F0DF;
border-radius: 2em;
text-decoration:none;
text-shadow: 0 0.04em 0.04em rgba(0,0,0,0.35);
padding:0.6em 2.4em;
}
.home-hr {
background-color: #FEFBF3;
border-style: none;
border-top-style: dotted;
border-color: #9D9D9D;
border-width: 8px;
width: 5%;
margin: 0 auto;;
}
.home-imgs {
height: 8rem;
border-radius: 50%;
}
/* Navbar */
.navbar {
background-color: #e5e5f3;
}
/* Collapses */
.tabs {
background-color: #e5e5f3;
}
strong {
text-decoration: underline;
text-underline-offset: 0.08em;
color: #182361;
}
.card {
text-align: left;
}
/* Yoga */
.yoga-desc {
font-size: 0.9rem;
text-align: justify;
padding: 1rem;
}
.yoga-price {
font-size: 0.9rem;
}
/* Timetable */
.timetable {
font-size: 0.8rem;
text-align: center;
}
th {
font-family: 'Montserrat', sans-serif;
}
/* Massage */
.mass-desc {
font-size: 0.9rem;
text-align: justify;
padding: 1rem;
}
.mass-price {
font-size: 0.9rem;
padding: 0.3rem 1rem;
}
/* Payment */
.bank-desc {
font-size: 0.9rem;
padding: 1rem;
}
/* Footer */
.footer {
background-color: #e5e5f3;
} | 0.265499 | 0.070336 |
* {
-webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
padding: 0;
margin: 0;
text-shadow: none;
list-style: none;
}
body {
-webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
-webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
-webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
/*background-color:#555;*/
background: white;
height:100%;
width:100%;
overflow: hidden;
}
#debug-panel {
position: fixed;
display: none;
bottom: 5px;
left: 10px;
width: 90%;
height: 200px;
border: 1px solid 1px;
border-radius: 2px;
color: #ffffff;
-webkit-box-shadow: 2px 2px 8px gray;
overflow: auto;
font-size: 12px;
text-align: left;
padding: 10px;
background: black;
}
.hide {
display: none;
}
.header {
height: 65px;
background: #f7f7f7;
border-bottom: 1px solid #B0B1B0;
position: fixed;
left: 0;
top: 0;
width : 100%;
text-align: center;
z-index: 999;
}
.header .status-bar {
height: 20px;
}
.header .title-bar {
line-height: 45px;
position: relative;
}
.header h1{
font-size: 18px;
font-weight: bold;
}
.header .btn-right-div {
position: absolute;
top:0;
right: 0;
}
.header .btn-left-div {
position: absolute;
top: 0;
left: 0;
}
.btn {
text-decoration: none;
color: #007AFF;
font-size: 16px;
}
.btn.gray {
color: gray;
}
.btn-left-div .btn{
margin-left: 5px;
}
.btn-right-div .btn{
margin-right: 5px;
}
.content {
-moz-perspective: 4500px;
-webkit-perspective: 4500px;
perspective: 4500px;
position: absolute;
width: 100%;
top: 0;
left: 0;
/*top: -44px; *//* 44px 是header的高度 */
padding: 0;
}
.landscape .content {
/*ipad 横屏竖屏尺寸 http://www.cnblogs.com/macroxu-1982/p/3270290.html */
height: 768px;
}
.portrait .content {
height: 1024px;
}
.image-list{
position: absolute;
width: 100%;
left: 0;
top: 65px;
overflow: auto;
}
.landscape .image-list {
height: 703px;/* 768 - 65 */
}
.portrait .image-list {
height: 959px; /* 1024 - 65 */
}
.ani-panel {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
transition:transform 0.15s, opacity 0.15s;
-webkit-transition:-webkit-transform 0.15s, opacity 0.15s;
backface-visibility:hidden;
-webkit-backface-visibility:hidden;
opacity: 1;
overflow: hidden;
}
.detail {
text-align: center;
transform: rotateY(360deg);
-webkit-transform: rotateY(360deg); /* Safari and Chrome */
}
.gallery.flip {
transform: rotateY(90deg);
-webkit-transform: rotateY(90deg); /* Safari and Chrome */
opacity: 0.2;
}
.detail.flip {
transform: rotateY(270deg);
-webkit-transform: rotateY(270deg); /* Safari and Chrome */
opacity: 0.2;
}
/*@-webkit-keyframes spaceboots {*/
/*0% { -webkit-transform: translate(1px, 0px) rotate(0deg); }*/
/*10% { -webkit-transform: translate(0px, -1px) rotate(-1deg); }*/
/*20% { -webkit-transform: translate(-2px, -1px) rotate(1deg); }*/
/*30% { -webkit-transform: translate(-1px, 1px) rotate(0deg); }*/
/*40% { -webkit-transform: translate(0px, 0px) rotate(1deg); }*/
/*50% { -webkit-transform: translate(0px, 0px) rotate(-1deg); }*/
/*60% { -webkit-transform: translate(-2px, -1px) rotate(0deg); }*/
/*70% { -webkit-transform: translate(1px, 0px) rotate(-1deg); }*/
/*80% { -webkit-transform: translate(0px, -1px) rotate(1deg); }*/
/*90% { -webkit-transform: translate(1px, 0px) rotate(-1deg); }*/
/*100% { -webkit-transform: translate(0px, 0px) rotate(0deg); }*/
/*}*/
@-webkit-keyframes spaceboots {
0% { -webkit-transform: translate3d(0px, 0px, 0) rotate(0.65deg); -webkit-transform-origin: 65% 35%;}
100% { -webkit-transform: translate3d(0px, 0px, 0) rotate(-0.65deg); -webkit-transform-origin: 35% 65%;}
}
.image-div{
position: relative;
overflow: hidden;
display: inline-block;
text-align: center;
vertical-align: middle;
}
.edit-mode-list .image-div{
-webkit-animation-name: spaceboots;
-webkit-animation-duration: 0.15s;
/*-webkit-transform-origin:50% 50%;*/
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
.landscape .image-div{
margin: 15px;
width: 170px;
line-height: 170px;
height: 195px;
}
.portrait .image-div{
margin: 15px 2px 48px 2px;
width: 146px;
line-height: 146px;
height: 175px;
}
.image-div .title{
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
font-size: 12px;
height: 25px;
white-space:nowrap;
word-break:keep-all;
line-height: 25px;
position: absolute;
padding: 0 10px 0 10px;
}
.landscape .image-div .title{
bottom: -5px;
width: 150px;
}
.portrait .image-div .title{
bottom: -3px;
width: 130px;
}
.image-div .image-outer {
position: absolute;
left: 0;
top: 0;
text-align: center;
}
.landscape .image-div .image-outer {
width: 170px;
height: 170px;
line-height: 170px;
}
.portrait .image-div .image-outer {
width: 146px;
height: 146px;
line-height: 146px;
}
.landscape .image-div .image-inner, .portrait .image-div .image-inner {
display: inline-block;
position: relative;
vertical-align: middle;
}
.landscape .image-div img{
-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.8);
box-shadow: 0 0 2px rgba(0,0,0,0.8);
display: block;
max-height: 158px;
max-width: 158px;
border: 6px solid white;
}
.portrait .image-div img{
-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.8);
box-shadow: 0 0 2px rgba(0,0,0,0.8);
display: block;
max-height: 138px;
max-width: 138px;
border: 4px solid white;
}
.portrait .image-div .select, .landscape .image-div .select {
position: absolute;
display: none;
background: url("images/icons-18-white.png") no-repeat -252px -1px;
background-color: rgba(0,0,255,0.8);
height: 18px;
width: 18px;
border: 2px solid white;
border-radius: 18px;
bottom: 8px;
right: 8px;
}
.landscape .select-image .select, .portrait .select-image .select {
display: block;
}
.detail img {
position: absolute;
}
#dialog-mask {
position: absolute;
background: gray;
left:0;
top:0;
width: 100%;
height: 100%;
opacity: 0.298;
z-index: 9990;
/*display: none;*/
}
.import-list li {
line-height: 45px;
font-size: 16px;
background: white;
width: 200px;
padding-left: 5px;
border-bottom: 1px solid rgba(178,178,178,0.3);
position: relative;
}
.import-list li:last-child {
border-radius: 0 0 10px 10px;
border-bottom: 0;
}
.import-list li>img{
position: absolute;
vertical-align: middle;
height: 12px;
width: 10px;
right: 5px;
top: 16px;
}
.dialog-title {
text-align: center;
background: #f7f7f7;
border-bottom: 1px solid #b2b2b2;
border-radius: 10px 10px 0 0;
line-height: 45px;
font-weight: bold;
position: relative;
}
.dialog-title .btn {
position: absolute;
left: 8px;
}
.dialog-title .btn img{
height: 20px;
width: 12px;
vertical-align: middle;
margin-right: 5px;
position: relative;
top: -2px;
}
#import-dialog {
position: absolute;
top: 62px;
left: 5px;
z-index: 9999;
}
#import-dialog .dialog-arrow {
position: absolute;
left: 10px;
top: -10px;
width: 23px;
height: 12px;
}
#albums-dialog {
position: absolute;
left: 225px;
top: 62px;
width: 324px;
z-index: 9999;
}
#albums-dialog .dialog-arrow{
position: absolute;
left: -13px;
top: 53px;
width: 14px;
height: 29px;
}
#albums-list li {
line-height: 80px;
padding-left: 5px;
position: relative;
border-bottom: 1px solid rgba(178,178,178,0.3);
}
#albums-list li:last-child {
border-bottom: 0;
}
#albums-list li>.thumb {
max-width: 68px;
max-height: 68px;
vertical-align: middle;
display: inline-block;
}
#albums-dialog li>div{
vertical-align: middle;
display: inline-block;
line-height: 100%;
margin-left: 10px;
}
#albums-dialog li>.rarrow{
position: absolute;
height: 12px;
width: 10px;
right: 10px;
top: 34px;
}
#albums-list h3{
font-weight: normal;
font-size: 16px;
margin-bottom: 3px;
}
#albums-list p{
font-size: 12px;
}
#albums-dialog .dialog-footer{
position: relative;
line-height: 35px;
}
#albums-dialog .dialog-select {
background: #f7f7f7;
border-radius: 0 0 10px 10px;
overflow: hidden;
border: 5px solid #F7F7F7;
border-width: 0 5px 0 5px;
}
#albums-dialog .dialog-footer .btn{
position: absolute;
right: 0px;
}
#albums-dialog .dialog-footer h3{
font-size: 16px;
font-weight: normal;
}
#albums-dialog .dialog-content{
background: white;
position: relative;
height: 330px;
overflow: auto;
}
#albums-dialog .dialog-content ul{
position: absolute;
width: 100%;
}
#thumb-list {
position: absolute;
width: 100%;
padding-top: 5px;
}
#thumb-list .thumb{
position: relative;
overflow: hidden;
float: left;
text-align: center;
width: 79px;
height: 79px;
margin: 1px;
cursor: pointer;
}
#thumb-list .thumb img{
height: 79px;
width: 79px;
}
#select-thumb-list {
height: 70px;
overflow-x: auto;
overflow-y: hidden;
position: relative;
top: -8px;
white-space: nowrap;
}
#select-thumb-list .thumb {
display: inline-block;
position: relative;
top: 9px;
margin-left: 3px;
text-align: center;
vertical-align: middle;
width: 60px;
line-height: 60px;
height: 60px;
}
#select-thumb-list .thumb:first-child{
margin-left: 5px;
}
#select-thumb-list .thumb img{
max-height: 56px;
max-width: 56px;
vertical-align: middle;
border: 2px solid white;
}
#select-thumb-list .thumb .delete{
position: absolute;
left: -6px;
top: -6px;
width: 20px;
height: 20px;
border-radius: 12px;
background: white;
z-index: 999;
cursor: pointer;
}
#select-thumb-list .delete img{
border:none;
width: 16px;
height: 16px;
position: absolute;
left: 2px;
top: 2px;
}
#search-dialog {
position: absolute;
left: 40px;
top: 62px;
border-radius: 10px;
background: white;
padding: 10px;
z-index: 9999;
}
#btn-search {
margin-left: 0;
}
#btn-search-back {
float: right;
margin-right: 0;
}
#search-dialog .search-content {
border-radius: 6px;
background-clip: border-box;
margin-bottom: 10px;
}
#search-dialog .dialog-arrow{
position: absolute;
left: 10px;
top: -10px;
width: 23px;
height: 12px;
}
#search-dialog .dialog-footer {
}
/*#search-dialog i {*/
/*position: absolute;*/
/*top: 15px;*/
/*left: 10px;*/
/*}*/
#txt-search {
display: inline-block;
font-size: 16px;
padding:5px 0;
border: 0;
outline: none;
border-radius: 0;
border-bottom: 1px solid rgba(178,178,178,0.3);
width: 218px;
} | platforms/ios/www/css/index.css | * {
-webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
padding: 0;
margin: 0;
text-shadow: none;
list-style: none;
}
body {
-webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
-webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
-webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
/*background-color:#555;*/
background: white;
height:100%;
width:100%;
overflow: hidden;
}
#debug-panel {
position: fixed;
display: none;
bottom: 5px;
left: 10px;
width: 90%;
height: 200px;
border: 1px solid 1px;
border-radius: 2px;
color: #ffffff;
-webkit-box-shadow: 2px 2px 8px gray;
overflow: auto;
font-size: 12px;
text-align: left;
padding: 10px;
background: black;
}
.hide {
display: none;
}
.header {
height: 65px;
background: #f7f7f7;
border-bottom: 1px solid #B0B1B0;
position: fixed;
left: 0;
top: 0;
width : 100%;
text-align: center;
z-index: 999;
}
.header .status-bar {
height: 20px;
}
.header .title-bar {
line-height: 45px;
position: relative;
}
.header h1{
font-size: 18px;
font-weight: bold;
}
.header .btn-right-div {
position: absolute;
top:0;
right: 0;
}
.header .btn-left-div {
position: absolute;
top: 0;
left: 0;
}
.btn {
text-decoration: none;
color: #007AFF;
font-size: 16px;
}
.btn.gray {
color: gray;
}
.btn-left-div .btn{
margin-left: 5px;
}
.btn-right-div .btn{
margin-right: 5px;
}
.content {
-moz-perspective: 4500px;
-webkit-perspective: 4500px;
perspective: 4500px;
position: absolute;
width: 100%;
top: 0;
left: 0;
/*top: -44px; *//* 44px 是header的高度 */
padding: 0;
}
.landscape .content {
/*ipad 横屏竖屏尺寸 http://www.cnblogs.com/macroxu-1982/p/3270290.html */
height: 768px;
}
.portrait .content {
height: 1024px;
}
.image-list{
position: absolute;
width: 100%;
left: 0;
top: 65px;
overflow: auto;
}
.landscape .image-list {
height: 703px;/* 768 - 65 */
}
.portrait .image-list {
height: 959px; /* 1024 - 65 */
}
.ani-panel {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
transition:transform 0.15s, opacity 0.15s;
-webkit-transition:-webkit-transform 0.15s, opacity 0.15s;
backface-visibility:hidden;
-webkit-backface-visibility:hidden;
opacity: 1;
overflow: hidden;
}
.detail {
text-align: center;
transform: rotateY(360deg);
-webkit-transform: rotateY(360deg); /* Safari and Chrome */
}
.gallery.flip {
transform: rotateY(90deg);
-webkit-transform: rotateY(90deg); /* Safari and Chrome */
opacity: 0.2;
}
.detail.flip {
transform: rotateY(270deg);
-webkit-transform: rotateY(270deg); /* Safari and Chrome */
opacity: 0.2;
}
/*@-webkit-keyframes spaceboots {*/
/*0% { -webkit-transform: translate(1px, 0px) rotate(0deg); }*/
/*10% { -webkit-transform: translate(0px, -1px) rotate(-1deg); }*/
/*20% { -webkit-transform: translate(-2px, -1px) rotate(1deg); }*/
/*30% { -webkit-transform: translate(-1px, 1px) rotate(0deg); }*/
/*40% { -webkit-transform: translate(0px, 0px) rotate(1deg); }*/
/*50% { -webkit-transform: translate(0px, 0px) rotate(-1deg); }*/
/*60% { -webkit-transform: translate(-2px, -1px) rotate(0deg); }*/
/*70% { -webkit-transform: translate(1px, 0px) rotate(-1deg); }*/
/*80% { -webkit-transform: translate(0px, -1px) rotate(1deg); }*/
/*90% { -webkit-transform: translate(1px, 0px) rotate(-1deg); }*/
/*100% { -webkit-transform: translate(0px, 0px) rotate(0deg); }*/
/*}*/
@-webkit-keyframes spaceboots {
0% { -webkit-transform: translate3d(0px, 0px, 0) rotate(0.65deg); -webkit-transform-origin: 65% 35%;}
100% { -webkit-transform: translate3d(0px, 0px, 0) rotate(-0.65deg); -webkit-transform-origin: 35% 65%;}
}
.image-div{
position: relative;
overflow: hidden;
display: inline-block;
text-align: center;
vertical-align: middle;
}
.edit-mode-list .image-div{
-webkit-animation-name: spaceboots;
-webkit-animation-duration: 0.15s;
/*-webkit-transform-origin:50% 50%;*/
-webkit-animation-iteration-count: infinite;
-webkit-animation-timing-function: linear;
}
.landscape .image-div{
margin: 15px;
width: 170px;
line-height: 170px;
height: 195px;
}
.portrait .image-div{
margin: 15px 2px 48px 2px;
width: 146px;
line-height: 146px;
height: 175px;
}
.image-div .title{
text-align: center;
overflow: hidden;
text-overflow: ellipsis;
font-size: 12px;
height: 25px;
white-space:nowrap;
word-break:keep-all;
line-height: 25px;
position: absolute;
padding: 0 10px 0 10px;
}
.landscape .image-div .title{
bottom: -5px;
width: 150px;
}
.portrait .image-div .title{
bottom: -3px;
width: 130px;
}
.image-div .image-outer {
position: absolute;
left: 0;
top: 0;
text-align: center;
}
.landscape .image-div .image-outer {
width: 170px;
height: 170px;
line-height: 170px;
}
.portrait .image-div .image-outer {
width: 146px;
height: 146px;
line-height: 146px;
}
.landscape .image-div .image-inner, .portrait .image-div .image-inner {
display: inline-block;
position: relative;
vertical-align: middle;
}
.landscape .image-div img{
-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.8);
box-shadow: 0 0 2px rgba(0,0,0,0.8);
display: block;
max-height: 158px;
max-width: 158px;
border: 6px solid white;
}
.portrait .image-div img{
-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.8);
box-shadow: 0 0 2px rgba(0,0,0,0.8);
display: block;
max-height: 138px;
max-width: 138px;
border: 4px solid white;
}
.portrait .image-div .select, .landscape .image-div .select {
position: absolute;
display: none;
background: url("images/icons-18-white.png") no-repeat -252px -1px;
background-color: rgba(0,0,255,0.8);
height: 18px;
width: 18px;
border: 2px solid white;
border-radius: 18px;
bottom: 8px;
right: 8px;
}
.landscape .select-image .select, .portrait .select-image .select {
display: block;
}
.detail img {
position: absolute;
}
#dialog-mask {
position: absolute;
background: gray;
left:0;
top:0;
width: 100%;
height: 100%;
opacity: 0.298;
z-index: 9990;
/*display: none;*/
}
.import-list li {
line-height: 45px;
font-size: 16px;
background: white;
width: 200px;
padding-left: 5px;
border-bottom: 1px solid rgba(178,178,178,0.3);
position: relative;
}
.import-list li:last-child {
border-radius: 0 0 10px 10px;
border-bottom: 0;
}
.import-list li>img{
position: absolute;
vertical-align: middle;
height: 12px;
width: 10px;
right: 5px;
top: 16px;
}
.dialog-title {
text-align: center;
background: #f7f7f7;
border-bottom: 1px solid #b2b2b2;
border-radius: 10px 10px 0 0;
line-height: 45px;
font-weight: bold;
position: relative;
}
.dialog-title .btn {
position: absolute;
left: 8px;
}
.dialog-title .btn img{
height: 20px;
width: 12px;
vertical-align: middle;
margin-right: 5px;
position: relative;
top: -2px;
}
#import-dialog {
position: absolute;
top: 62px;
left: 5px;
z-index: 9999;
}
#import-dialog .dialog-arrow {
position: absolute;
left: 10px;
top: -10px;
width: 23px;
height: 12px;
}
#albums-dialog {
position: absolute;
left: 225px;
top: 62px;
width: 324px;
z-index: 9999;
}
#albums-dialog .dialog-arrow{
position: absolute;
left: -13px;
top: 53px;
width: 14px;
height: 29px;
}
#albums-list li {
line-height: 80px;
padding-left: 5px;
position: relative;
border-bottom: 1px solid rgba(178,178,178,0.3);
}
#albums-list li:last-child {
border-bottom: 0;
}
#albums-list li>.thumb {
max-width: 68px;
max-height: 68px;
vertical-align: middle;
display: inline-block;
}
#albums-dialog li>div{
vertical-align: middle;
display: inline-block;
line-height: 100%;
margin-left: 10px;
}
#albums-dialog li>.rarrow{
position: absolute;
height: 12px;
width: 10px;
right: 10px;
top: 34px;
}
#albums-list h3{
font-weight: normal;
font-size: 16px;
margin-bottom: 3px;
}
#albums-list p{
font-size: 12px;
}
#albums-dialog .dialog-footer{
position: relative;
line-height: 35px;
}
#albums-dialog .dialog-select {
background: #f7f7f7;
border-radius: 0 0 10px 10px;
overflow: hidden;
border: 5px solid #F7F7F7;
border-width: 0 5px 0 5px;
}
#albums-dialog .dialog-footer .btn{
position: absolute;
right: 0px;
}
#albums-dialog .dialog-footer h3{
font-size: 16px;
font-weight: normal;
}
#albums-dialog .dialog-content{
background: white;
position: relative;
height: 330px;
overflow: auto;
}
#albums-dialog .dialog-content ul{
position: absolute;
width: 100%;
}
#thumb-list {
position: absolute;
width: 100%;
padding-top: 5px;
}
#thumb-list .thumb{
position: relative;
overflow: hidden;
float: left;
text-align: center;
width: 79px;
height: 79px;
margin: 1px;
cursor: pointer;
}
#thumb-list .thumb img{
height: 79px;
width: 79px;
}
#select-thumb-list {
height: 70px;
overflow-x: auto;
overflow-y: hidden;
position: relative;
top: -8px;
white-space: nowrap;
}
#select-thumb-list .thumb {
display: inline-block;
position: relative;
top: 9px;
margin-left: 3px;
text-align: center;
vertical-align: middle;
width: 60px;
line-height: 60px;
height: 60px;
}
#select-thumb-list .thumb:first-child{
margin-left: 5px;
}
#select-thumb-list .thumb img{
max-height: 56px;
max-width: 56px;
vertical-align: middle;
border: 2px solid white;
}
#select-thumb-list .thumb .delete{
position: absolute;
left: -6px;
top: -6px;
width: 20px;
height: 20px;
border-radius: 12px;
background: white;
z-index: 999;
cursor: pointer;
}
#select-thumb-list .delete img{
border:none;
width: 16px;
height: 16px;
position: absolute;
left: 2px;
top: 2px;
}
#search-dialog {
position: absolute;
left: 40px;
top: 62px;
border-radius: 10px;
background: white;
padding: 10px;
z-index: 9999;
}
#btn-search {
margin-left: 0;
}
#btn-search-back {
float: right;
margin-right: 0;
}
#search-dialog .search-content {
border-radius: 6px;
background-clip: border-box;
margin-bottom: 10px;
}
#search-dialog .dialog-arrow{
position: absolute;
left: 10px;
top: -10px;
width: 23px;
height: 12px;
}
#search-dialog .dialog-footer {
}
/*#search-dialog i {*/
/*position: absolute;*/
/*top: 15px;*/
/*left: 10px;*/
/*}*/
#txt-search {
display: inline-block;
font-size: 16px;
padding:5px 0;
border: 0;
outline: none;
border-radius: 0;
border-bottom: 1px solid rgba(178,178,178,0.3);
width: 218px;
} | 0.262086 | 0.062103 |
.panel{
margin: 50px 10px 100px 10px !important;
}
.information{
padding:10px 100px 10px 150px !important;
}
div.dataTables_paginate ul.pagination {
margin: 15px 0px !important;
}
.table>tbody>tr>td,
.table>tbody>tr>th{
padding: 3px 10px 3px 10px !important;
line-height: 2 !important;
vertical-align: inherit !important;
white-space: nowrap !important;
overflow: hidden !important;
}
.usertable{
margin: auto !important;
white-space: nowrap !important;
font-size: 15px;
overflow: hidden !important;
}
.table-striped>tbody>tr:nth-of-type(odd){
background-color: rgba(220, 222, 239, 0.73);
}
.table-striped>tbody>tr:hover{
background-color: rgba(124, 137, 243, 0.73);
}
/* Modal */
/* Set modal detail form scrollY */
.modal-dialog-detail{
overflow-y: initial !important
}
.modal-body-detail{
height: 480px;
overflow-y: auto;
font-weight: 100;
}
.modal-body-footer{
padding: 10px 20px 0px 20px !important;
background-color: #d8dde4;
}
.modal_background {
background: #fff;
margin-bottom: 10px
}
.modal_link{
margin: 0 5px 0 5px;
}
.modal-title{
margin-bottom: 50px;
}
.detail_user{
margin: 10px 100px 0px 100px;
}
.modal_header {
font-size: 1.8em;
font-weight: 700;
letter-spacing: 1px;
color: #f8f0f0;
padding: 0.5em 1em 0.4em;
background: rgba(68, 134, 208, 0.77);;
margin: 0em;
position: relative;
}
/* Upload File*/
.image-preview{
margin-bottom: 15px;
padding-left: 3px;
}
.image-preview-input {
position: relative;
overflow: hidden;
margin: 0px;
color: #333;
background-color: #fff;
border-color: #ccc;
}
.image-preview-input input[type=file] {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 0;
font-size: 20px;
cursor: pointer;
opacity: 0;
filter: alpha(opacity=0);
}
.image-preview-input_image {
position: relative;
overflow: hidden;
margin: 0px;
color: #333;
background-color: #fff;
border-color: #ccc;
}
.image-preview-input_image input[type=file] {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 0;
font-size: 20px;
cursor: pointer;
opacity: 0;
filter: alpha(opacity=0);
}
.image-preview-input-title {
margin-left:2px;
}
.btn-file, .btn-file-edit, .btn-file-detail, .btn-file-detail-edit {
position: relative;
overflow: hidden;
}
.btn-file input[type=file], .btn-file-edit input[type=file], .btn-file-detail input[type=file], .btn-file-detail-edit input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}
#img-upload, #img-upload_edit, #img-upload-detail, #img-upload-detail-edit{
width: 200px;
margin: 10px 30%;
}
.input-group,.input-group-edit,.input-group-detail,.input-group-detail-edit{
position: relative;
display: table;
border-collapse: separate;
}
/* End upload file */
/* Pop up dictionary */
/* Styling dfn tag to highlight the word with the tooltip */
a.tooltips {
color: #1600af;
font-weight: 500;
position: relative;
display: inline-block;
}
a.answer{
background-color: rgb(20, 88, 226);
padding: 1px 10px 1px 10px;
color: white;
}
a.tooltips span {
visibility: hidden;
width: 300px;
background-color: rgb(85, 153, 212);
color: #090331;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: -36%;
margin-left: -109px;
opacity: 0;
transition: opacity 1s;
}
@media(max-width: 800px){
a.tooltips span {
width: 130px;
left: 36%;
margin-left: -52px;
}
}
a.tooltips span:after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: rgb(85, 153, 212) transparent transparent transparent;
}
a:hover.tooltips span {
visibility: visible;
opacity: 1;
}
/* Pop up dictionary */
/* The Close Button */
.close {
color: #fff;
float: right;
font-size: 28px;
font-weight: bold;
text-shadow: none;
-webkit-transition:.5s all;
-moz-transition:.5s all;
-o-transition:.5s all;
-ms-transition:.5s all;
transition:.5s all;
}
.modal-header .close {
margin-top: 11px;
opacity: 1;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
/* Button Hover Animate */
.button {
border: none;
text-align: center;
font-size: 1.6em;
width: 180px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
font-weight: 700;
letter-spacing: 1px;
color: #391313cc;
display: inline-block;
padding: 9px 5px 5px 5px;
background: rgba(179, 210, 239, 0.87);
font-family: 'Yanone Kaffeesatz', sans-serif;
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
/* Button */
.btn_admin {
background-color: #4CAF50; /* Green */
border: none;
color: white;
width: 100px;
height: 40px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 13px;
margin: 10px 0 10px 0;
cursor: pointer;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
margin: 5px 5px 5px 5px;
}
.btn_admin:hover{
box-shadow: 7px 4px 8px 0px rgba(0,0,0,0.24), 2px 17px 56px 0px rgba(0,0,0,0.19);
}
.btn_admin_action {
background-color: #4CAF50; /* Green */
border: none;
color: white;
width: 36px;
height: 32px;
font-size: 20px;
cursor: pointer;
transition-duration: 0.4s;
margin: 3px 6px 2px 6px;
}
.btn_admin_action:hover{
box-shadow: 7px 4px 8px 0px rgba(0,0,0,0.24), 2px 17px 56px 0px rgba(0,0,0,0.19);
}
.success {background-color: #4CAF50;} /* Green */
.success:hover {background-color: #46a049;}
.info {background-color: #2d7ab7;} /* Blue */
.info:hover {background: #125082;}
.warning {background-color: rgba(218, 171, 30, 0.93);} /* Orange */
.warning:hover {background: rgba(183, 146, 4, 0.93);}
.danger {background-color: #d04d43;} /* Red */
.danger:hover {background: #b91508;}
.default {background-color: #e7e7e7; color: black;} /* Gray */
.default:hover {background: #ddd;}
/* End Button */
/* Error label Ajax */
label.error {
font-style: italic;
font-weight: 100;
color: red;
}
a{
color: rgb(29, 53, 74) ;
font-weight: 700 ;
}
.nav>li:hover{
color: #284ad2;
}
.sidebar .nav-second-level li a{
color: #566267 ;
font-style: italic ;
padding-left: 42px ;
font-family: sans-serif ;
}
.sidebar .nav-second-level li a:hover{
color: #284ad2;
}
.sidebar .nav-second-level li a.active{
background-color: #747dca;
color: #fffcfe;
}
/* Admin Navbar */
.admin_navbar {
background: #716666 ;
background: -webkit-linear-gradient(left, rgba(232, 232, 223, 0.9), #8e8e8e) ;
background: -o-linear-gradient(right, rgba(232, 232, 223, 0.9), #8e8e8e) ;
background: -moz-linear-gradient(right, rgba(232, 232, 223, 0.9), #8e8e8e) ;
background: linear-gradient(to right, rgba(232, 232, 223, 0.9), #8e8e8e) ;
}
/* Set link rows table */
tr{
cursor: pointer;
}
.selected
{
background-color: rgba(20, 28, 134, 0.78) !important;
color: #FFF;
}
.selected:hover{
background-color: rgba(20, 28, 134, 0.78) !important;
}
/* Css guide modal */
.modalDialog {
position: fixed;
font-family: Arial, Helvetica, sans-serif;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0,0,0,0.8);
z-index: 99999;
opacity:0;
-webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
pointer-events: none;
}
.modalDialog > div {
width: 400px;
position: relative;
margin: 10% auto;
padding: 5px 20px 13px 20px;
border-radius: 10px;
background: #fff;
background: -moz-linear-gradient(#b1adad, #fff);
background: -webkit-linear-gradient(#b1adad, #fff);
background: -o-linear-gradient(#b1adad, #fff);
}
.close {
background: #606061;
color: #FFFFFF;
line-height: 25px;
position: absolute;
right: -12px;
text-align: center;
top: -10px;
width: 24px;
text-decoration: none;
font-weight: bold;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
}
.close:hover {
background: #00d9ff;
}
/*-- address --*/
.address-row {
margin-top: 3em;
padding: 0;
}
.contact-w3lsright h6 span {
color: #00bcd4;
}
.contact-w3lsright h6 {
font-size: 1.8em;
color: #525252;
font-weight: 500;
line-height: 1.8em;
text-transform: uppercase;
margin-top: 3em;
padding: 0 1em;
letter-spacing: 1px;
}
.address-row span.glyphicon {
font-size: 1.2em;
border: 2px solid #afafaf;
padding: 1.6em 1em;
color: #afafaf;
-webkit-transition: .5s all;
-moz-transition: .5s all;
-o-transition: .5s all;
-ms-transition: .5s all;
transition: .5s all;
}
.address-row:hover span.glyphicon {
border-color: #02bbd2;
color:#02bbd2;
-webkit-transform: rotatey(360deg);
-moz-transform: rotatey(360deg);
transform: rotatey(360deg);
-o-transform: rotatey(360deg);
-ms-transform: rotatey(360deg);
}
.address-row h5 {
font-size: 1.4em;
color: #f55800;
margin-bottom: .4em;
font-weight: 400;
}
.address-row p a {
color: #02bbd2;
}
.address-row p a:hover{
color: #999;
}
.address-right {
padding-right: 0;
}
.grid_3 .address-right p {
margin-bottom: 0;
}
/*-- //address --*/
@media(max-width:991px){
.address-row {
margin-top: 2em;
}
}
@media(max-width:600px){
.address-right {
padding: 0;
}
.address-row span.glyphicon {
font-size: 1em;
padding: 1.9em 1em;
}
.address-left {
padding: 0;
}
}
@media(max-width:568px){
.address-row {
float: none;
width: 75%;
}
.address-left {
text-align: center;
}
}
@media(max-width:480px){
.address-row {
width: 90%;
margin-top: 1.5em;
}
}
@media(max-width:414px){
.address-row {
width: 100%;
}
}
@media(max-width:375px){
.address-right {
padding-left: 1em;
}
} | public/editor/admin_interface/css/admin_style.css |
.panel{
margin: 50px 10px 100px 10px !important;
}
.information{
padding:10px 100px 10px 150px !important;
}
div.dataTables_paginate ul.pagination {
margin: 15px 0px !important;
}
.table>tbody>tr>td,
.table>tbody>tr>th{
padding: 3px 10px 3px 10px !important;
line-height: 2 !important;
vertical-align: inherit !important;
white-space: nowrap !important;
overflow: hidden !important;
}
.usertable{
margin: auto !important;
white-space: nowrap !important;
font-size: 15px;
overflow: hidden !important;
}
.table-striped>tbody>tr:nth-of-type(odd){
background-color: rgba(220, 222, 239, 0.73);
}
.table-striped>tbody>tr:hover{
background-color: rgba(124, 137, 243, 0.73);
}
/* Modal */
/* Set modal detail form scrollY */
.modal-dialog-detail{
overflow-y: initial !important
}
.modal-body-detail{
height: 480px;
overflow-y: auto;
font-weight: 100;
}
.modal-body-footer{
padding: 10px 20px 0px 20px !important;
background-color: #d8dde4;
}
.modal_background {
background: #fff;
margin-bottom: 10px
}
.modal_link{
margin: 0 5px 0 5px;
}
.modal-title{
margin-bottom: 50px;
}
.detail_user{
margin: 10px 100px 0px 100px;
}
.modal_header {
font-size: 1.8em;
font-weight: 700;
letter-spacing: 1px;
color: #f8f0f0;
padding: 0.5em 1em 0.4em;
background: rgba(68, 134, 208, 0.77);;
margin: 0em;
position: relative;
}
/* Upload File*/
.image-preview{
margin-bottom: 15px;
padding-left: 3px;
}
.image-preview-input {
position: relative;
overflow: hidden;
margin: 0px;
color: #333;
background-color: #fff;
border-color: #ccc;
}
.image-preview-input input[type=file] {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 0;
font-size: 20px;
cursor: pointer;
opacity: 0;
filter: alpha(opacity=0);
}
.image-preview-input_image {
position: relative;
overflow: hidden;
margin: 0px;
color: #333;
background-color: #fff;
border-color: #ccc;
}
.image-preview-input_image input[type=file] {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 0;
font-size: 20px;
cursor: pointer;
opacity: 0;
filter: alpha(opacity=0);
}
.image-preview-input-title {
margin-left:2px;
}
.btn-file, .btn-file-edit, .btn-file-detail, .btn-file-detail-edit {
position: relative;
overflow: hidden;
}
.btn-file input[type=file], .btn-file-edit input[type=file], .btn-file-detail input[type=file], .btn-file-detail-edit input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);
opacity: 0;
outline: none;
background: white;
cursor: inherit;
display: block;
}
#img-upload, #img-upload_edit, #img-upload-detail, #img-upload-detail-edit{
width: 200px;
margin: 10px 30%;
}
.input-group,.input-group-edit,.input-group-detail,.input-group-detail-edit{
position: relative;
display: table;
border-collapse: separate;
}
/* End upload file */
/* Pop up dictionary */
/* Styling dfn tag to highlight the word with the tooltip */
a.tooltips {
color: #1600af;
font-weight: 500;
position: relative;
display: inline-block;
}
a.answer{
background-color: rgb(20, 88, 226);
padding: 1px 10px 1px 10px;
color: white;
}
a.tooltips span {
visibility: hidden;
width: 300px;
background-color: rgb(85, 153, 212);
color: #090331;
text-align: center;
border-radius: 6px;
padding: 5px 0;
position: absolute;
z-index: 1;
bottom: 125%;
left: -36%;
margin-left: -109px;
opacity: 0;
transition: opacity 1s;
}
@media(max-width: 800px){
a.tooltips span {
width: 130px;
left: 36%;
margin-left: -52px;
}
}
a.tooltips span:after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: rgb(85, 153, 212) transparent transparent transparent;
}
a:hover.tooltips span {
visibility: visible;
opacity: 1;
}
/* Pop up dictionary */
/* The Close Button */
.close {
color: #fff;
float: right;
font-size: 28px;
font-weight: bold;
text-shadow: none;
-webkit-transition:.5s all;
-moz-transition:.5s all;
-o-transition:.5s all;
-ms-transition:.5s all;
transition:.5s all;
}
.modal-header .close {
margin-top: 11px;
opacity: 1;
}
.close:hover,
.close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
/* Button Hover Animate */
.button {
border: none;
text-align: center;
font-size: 1.6em;
width: 180px;
transition: all 0.5s;
cursor: pointer;
margin: 5px;
font-weight: 700;
letter-spacing: 1px;
color: #391313cc;
display: inline-block;
padding: 9px 5px 5px 5px;
background: rgba(179, 210, 239, 0.87);
font-family: 'Yanone Kaffeesatz', sans-serif;
}
.button span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
.button span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.5s;
}
.button:hover span {
padding-right: 25px;
}
.button:hover span:after {
opacity: 1;
right: 0;
}
/* Button */
.btn_admin {
background-color: #4CAF50; /* Green */
border: none;
color: white;
width: 100px;
height: 40px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 13px;
margin: 10px 0 10px 0;
cursor: pointer;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
margin: 5px 5px 5px 5px;
}
.btn_admin:hover{
box-shadow: 7px 4px 8px 0px rgba(0,0,0,0.24), 2px 17px 56px 0px rgba(0,0,0,0.19);
}
.btn_admin_action {
background-color: #4CAF50; /* Green */
border: none;
color: white;
width: 36px;
height: 32px;
font-size: 20px;
cursor: pointer;
transition-duration: 0.4s;
margin: 3px 6px 2px 6px;
}
.btn_admin_action:hover{
box-shadow: 7px 4px 8px 0px rgba(0,0,0,0.24), 2px 17px 56px 0px rgba(0,0,0,0.19);
}
.success {background-color: #4CAF50;} /* Green */
.success:hover {background-color: #46a049;}
.info {background-color: #2d7ab7;} /* Blue */
.info:hover {background: #125082;}
.warning {background-color: rgba(218, 171, 30, 0.93);} /* Orange */
.warning:hover {background: rgba(183, 146, 4, 0.93);}
.danger {background-color: #d04d43;} /* Red */
.danger:hover {background: #b91508;}
.default {background-color: #e7e7e7; color: black;} /* Gray */
.default:hover {background: #ddd;}
/* End Button */
/* Error label Ajax */
label.error {
font-style: italic;
font-weight: 100;
color: red;
}
a{
color: rgb(29, 53, 74) ;
font-weight: 700 ;
}
.nav>li:hover{
color: #284ad2;
}
.sidebar .nav-second-level li a{
color: #566267 ;
font-style: italic ;
padding-left: 42px ;
font-family: sans-serif ;
}
.sidebar .nav-second-level li a:hover{
color: #284ad2;
}
.sidebar .nav-second-level li a.active{
background-color: #747dca;
color: #fffcfe;
}
/* Admin Navbar */
.admin_navbar {
background: #716666 ;
background: -webkit-linear-gradient(left, rgba(232, 232, 223, 0.9), #8e8e8e) ;
background: -o-linear-gradient(right, rgba(232, 232, 223, 0.9), #8e8e8e) ;
background: -moz-linear-gradient(right, rgba(232, 232, 223, 0.9), #8e8e8e) ;
background: linear-gradient(to right, rgba(232, 232, 223, 0.9), #8e8e8e) ;
}
/* Set link rows table */
tr{
cursor: pointer;
}
.selected
{
background-color: rgba(20, 28, 134, 0.78) !important;
color: #FFF;
}
.selected:hover{
background-color: rgba(20, 28, 134, 0.78) !important;
}
/* Css guide modal */
.modalDialog {
position: fixed;
font-family: Arial, Helvetica, sans-serif;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(0,0,0,0.8);
z-index: 99999;
opacity:0;
-webkit-transition: opacity 400ms ease-in;
-moz-transition: opacity 400ms ease-in;
transition: opacity 400ms ease-in;
pointer-events: none;
}
.modalDialog > div {
width: 400px;
position: relative;
margin: 10% auto;
padding: 5px 20px 13px 20px;
border-radius: 10px;
background: #fff;
background: -moz-linear-gradient(#b1adad, #fff);
background: -webkit-linear-gradient(#b1adad, #fff);
background: -o-linear-gradient(#b1adad, #fff);
}
.close {
background: #606061;
color: #FFFFFF;
line-height: 25px;
position: absolute;
right: -12px;
text-align: center;
top: -10px;
width: 24px;
text-decoration: none;
font-weight: bold;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
-moz-box-shadow: 1px 1px 3px #000;
-webkit-box-shadow: 1px 1px 3px #000;
box-shadow: 1px 1px 3px #000;
}
.close:hover {
background: #00d9ff;
}
/*-- address --*/
.address-row {
margin-top: 3em;
padding: 0;
}
.contact-w3lsright h6 span {
color: #00bcd4;
}
.contact-w3lsright h6 {
font-size: 1.8em;
color: #525252;
font-weight: 500;
line-height: 1.8em;
text-transform: uppercase;
margin-top: 3em;
padding: 0 1em;
letter-spacing: 1px;
}
.address-row span.glyphicon {
font-size: 1.2em;
border: 2px solid #afafaf;
padding: 1.6em 1em;
color: #afafaf;
-webkit-transition: .5s all;
-moz-transition: .5s all;
-o-transition: .5s all;
-ms-transition: .5s all;
transition: .5s all;
}
.address-row:hover span.glyphicon {
border-color: #02bbd2;
color:#02bbd2;
-webkit-transform: rotatey(360deg);
-moz-transform: rotatey(360deg);
transform: rotatey(360deg);
-o-transform: rotatey(360deg);
-ms-transform: rotatey(360deg);
}
.address-row h5 {
font-size: 1.4em;
color: #f55800;
margin-bottom: .4em;
font-weight: 400;
}
.address-row p a {
color: #02bbd2;
}
.address-row p a:hover{
color: #999;
}
.address-right {
padding-right: 0;
}
.grid_3 .address-right p {
margin-bottom: 0;
}
/*-- //address --*/
@media(max-width:991px){
.address-row {
margin-top: 2em;
}
}
@media(max-width:600px){
.address-right {
padding: 0;
}
.address-row span.glyphicon {
font-size: 1em;
padding: 1.9em 1em;
}
.address-left {
padding: 0;
}
}
@media(max-width:568px){
.address-row {
float: none;
width: 75%;
}
.address-left {
text-align: center;
}
}
@media(max-width:480px){
.address-row {
width: 90%;
margin-top: 1.5em;
}
}
@media(max-width:414px){
.address-row {
width: 100%;
}
}
@media(max-width:375px){
.address-right {
padding-left: 1em;
}
} | 0.408277 | 0.108661 |
.shadow {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #333;
opacity: 0;
z-index: 999;
-webkit-transition: 300ms ease-in-out;
transition: 300ms ease-in-out;
pointer-events: none; }
.shadow.show {
opacity: 0.05; }
.side-overlay {
position: fixed;
height: 100%;
width: 59%;
background: white;
border-left: 1px solid #d7d7d2;
top: 0;
right: -59%;
z-index: 1000;
-webkit-transition: right 500ms ease-in-out;
transition: right 500ms ease-in-out; }
.side-overlay .burger-choice {
display: grid;
grid: auto/repeat(2, 1fr);
text-align: center;
font-size: 2em; }
.side-overlay .burger-choice .active {
color: black;
background: #f0f0ec; }
.side-overlay h2 {
margin: 0 10%;
font-size: 2vh;
border: 2px solid #f0f0ec;
border-radius: 10px;
-webkit-transition: 200ms all;
transition: 200ms all; }
.side-overlay.show {
right: 0; }
.side-overlay #burger-toggle-btn {
position: fixed;
z-index: 1005;
top: 3.3vh;
right: 3.5vh;
height: 70px;
width: 70px;
background-image: url("/imgs/icon/Handleliste.png");
background-size: cover;
-webkit-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out; }
.side-overlay #burger-toggle-btn.close {
background-image: url("/imgs/icon/Kryss ut.png");
height: 40px;
width: 40px; }
.shoppinglist-hidden {
opacity: 0;
display: none; }
.shoppinglist-container {
opacity: 1;
width: 90%;
margin: 20px auto;
font-size: 1.7vh;
background: #f0f0ec;
border-radius: 10px;
-webkit-transition: 200ms all;
transition: 200ms all; }
.shoppinglist-container .shoppinglist-header {
height: 2em;
position: relative;
background: #413746;
border-top-left-radius: 10px;
border-top-right-radius: 10px; }
.shoppinglist-container .shoppinglist-header .icon {
position: absolute;
right: 10px;
height: calc(100% - 20px);
margin: 10px; }
.shoppinglist-container .list-date {
padding-top: 10px;
margin-left: 15px;
color: #9B9B9B; }
.shoppinglist-container .list-name {
margin-left: 15px;
padding-bottom: 10px; }
.container.overlay {
-webkit-filter: blur(3px);
filter: blur(3px); }
.burger {
position: absolute;
height: 50px;
width: 70px;
right: 60px;
z-index: 0;
-webkit-transition: z-index 200ms ease-in 150ms;
transition: z-index 200ms ease-in 150ms; }
.burger.close {
z-index: 1001; }
.burger-title {
font-size: 2.7em;
margin-left: 10%; }
.burger-list-container {
position: relative;
width: 100%;
display: grid;
grid-template-rows: 1fr 4fr 2fr 3fr 2fr;
grid-template-areas: "title" "add-img" "name" "empty" "save-btn";
grid-gap: 2vh;
justify-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-top: 7vh;
font-size: 2vh; }
.burger-list-container .burger-title {
grid-area: title;
margin: 0;
font-size: 3rem; }
.burger-list-container .list-burger-save-btn {
grid-area: save-btn;
background: none;
border: none;
padding: 0;
background-image: url("/imgs/icon/V-gra.png");
background-size: cover;
height: 150px;
width: 155px; }
.burger-list-container .list-burger-save-btn.save {
background-image: url("/imgs/icon/V-lilla.png"); }
.burger-list-container span {
grid-area: name;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: distribute;
justify-content: space-around; }
.burger-list-container span label {
font-size: 2.5rem; }
.burger-list-container span input[type="text"] {
width: 100%;
height: 50px;
background: none;
border: none;
border-bottom: 0px solid #ffa51e;
text-overflow: ellipsis;
text-align: center;
outline: none;
-webkit-transition: all 300ms cubic-bezier(0.28, 0.69, 0.51, 0.87);
transition: all 300ms cubic-bezier(0.28, 0.69, 0.51, 0.87); }
.burger-list-container span input[type="text"]:focus {
border-bottom-width: 4px; }
#delete-btn {
position: absolute;
bottom: 0;
left: 0;
height: 100px;
width: 100%;
background-color: #ce4444;
color: #333;
font-size: 2rem;
font-weight: bold;
border: none; } | public/css/burger.css | .shadow {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: #333;
opacity: 0;
z-index: 999;
-webkit-transition: 300ms ease-in-out;
transition: 300ms ease-in-out;
pointer-events: none; }
.shadow.show {
opacity: 0.05; }
.side-overlay {
position: fixed;
height: 100%;
width: 59%;
background: white;
border-left: 1px solid #d7d7d2;
top: 0;
right: -59%;
z-index: 1000;
-webkit-transition: right 500ms ease-in-out;
transition: right 500ms ease-in-out; }
.side-overlay .burger-choice {
display: grid;
grid: auto/repeat(2, 1fr);
text-align: center;
font-size: 2em; }
.side-overlay .burger-choice .active {
color: black;
background: #f0f0ec; }
.side-overlay h2 {
margin: 0 10%;
font-size: 2vh;
border: 2px solid #f0f0ec;
border-radius: 10px;
-webkit-transition: 200ms all;
transition: 200ms all; }
.side-overlay.show {
right: 0; }
.side-overlay #burger-toggle-btn {
position: fixed;
z-index: 1005;
top: 3.3vh;
right: 3.5vh;
height: 70px;
width: 70px;
background-image: url("/imgs/icon/Handleliste.png");
background-size: cover;
-webkit-transition: all 300ms ease-in-out;
transition: all 300ms ease-in-out; }
.side-overlay #burger-toggle-btn.close {
background-image: url("/imgs/icon/Kryss ut.png");
height: 40px;
width: 40px; }
.shoppinglist-hidden {
opacity: 0;
display: none; }
.shoppinglist-container {
opacity: 1;
width: 90%;
margin: 20px auto;
font-size: 1.7vh;
background: #f0f0ec;
border-radius: 10px;
-webkit-transition: 200ms all;
transition: 200ms all; }
.shoppinglist-container .shoppinglist-header {
height: 2em;
position: relative;
background: #413746;
border-top-left-radius: 10px;
border-top-right-radius: 10px; }
.shoppinglist-container .shoppinglist-header .icon {
position: absolute;
right: 10px;
height: calc(100% - 20px);
margin: 10px; }
.shoppinglist-container .list-date {
padding-top: 10px;
margin-left: 15px;
color: #9B9B9B; }
.shoppinglist-container .list-name {
margin-left: 15px;
padding-bottom: 10px; }
.container.overlay {
-webkit-filter: blur(3px);
filter: blur(3px); }
.burger {
position: absolute;
height: 50px;
width: 70px;
right: 60px;
z-index: 0;
-webkit-transition: z-index 200ms ease-in 150ms;
transition: z-index 200ms ease-in 150ms; }
.burger.close {
z-index: 1001; }
.burger-title {
font-size: 2.7em;
margin-left: 10%; }
.burger-list-container {
position: relative;
width: 100%;
display: grid;
grid-template-rows: 1fr 4fr 2fr 3fr 2fr;
grid-template-areas: "title" "add-img" "name" "empty" "save-btn";
grid-gap: 2vh;
justify-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
padding-top: 7vh;
font-size: 2vh; }
.burger-list-container .burger-title {
grid-area: title;
margin: 0;
font-size: 3rem; }
.burger-list-container .list-burger-save-btn {
grid-area: save-btn;
background: none;
border: none;
padding: 0;
background-image: url("/imgs/icon/V-gra.png");
background-size: cover;
height: 150px;
width: 155px; }
.burger-list-container .list-burger-save-btn.save {
background-image: url("/imgs/icon/V-lilla.png"); }
.burger-list-container span {
grid-area: name;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
-ms-flex-pack: distribute;
justify-content: space-around; }
.burger-list-container span label {
font-size: 2.5rem; }
.burger-list-container span input[type="text"] {
width: 100%;
height: 50px;
background: none;
border: none;
border-bottom: 0px solid #ffa51e;
text-overflow: ellipsis;
text-align: center;
outline: none;
-webkit-transition: all 300ms cubic-bezier(0.28, 0.69, 0.51, 0.87);
transition: all 300ms cubic-bezier(0.28, 0.69, 0.51, 0.87); }
.burger-list-container span input[type="text"]:focus {
border-bottom-width: 4px; }
#delete-btn {
position: absolute;
bottom: 0;
left: 0;
height: 100px;
width: 100%;
background-color: #ce4444;
color: #333;
font-size: 2rem;
font-weight: bold;
border: none; } | 0.384219 | 0.073997 |
:root {
--site-width: 32rem; /* 800px */
--side-padding: calc((100vw - var(--site-width)) / 2);
--nav-background-color: rgba(240, 245, 255, 0.9);
--nav-height: 3rem;
--accent-color: #3fb2ff;
--accent-hover-color: #34495e;
--blue: #3fb2ff;
--orange: #f39c12;
--darkblue: #34495e;
--vw: 1vw;
color: rgba(0, 0, 0, 0.9);
font-size: calc(12px + var(--vw));
font-family: 'DIN', 'Open Sans', sans-serif;
text-align: center;
}
@media (min-width: 2000px) {
:root {
--vw: 20px;
}
}
* {
box-sizing: border-box;
}
html, body {
margin: 0;
}
div, header, main, article, footer {
display: flex;
flex-direction: column;
justify-content: center;
}
p, h1, h2, h3, h4, ul {
margin: 0;
}
img, canvas {
display: block;
max-width: 100%;
margin: auto;
transition: 0.3s;
}
a {
text-decoration: none;
transition: 0.3s;
}
/* a:hover {
opacity: 0.8;
} */
main p a:hover {
box-shadow: inset 0 -3px;
}
main a {
color: var(--accent-color);
font-weight: 600;
}
/* a.sponsorship-email {
color: #ffb347;
} */
a:hover img {
transform: translateY(-2px);
filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
}
h1 {
font-size: 3rem;
line-height: 1.1;
text-transform: uppercase;
}
input {
background: none;
border: none;
font: inherit;
}
input:focus {
outline: none;
}
input[type=email] {
border-bottom: var(--accent-color) 2px solid;
margin: 1rem 0;
font-size: 0.9rem;
transition: 0.2s;
padding: 0.5rem 0;
width: 100%;
}
input[type=email]:hover {
border-bottom: var(--accent-hover-color) 2px solid;
}
input[type=submit] {
font-size: 0.8rem;
max-width: 200px;
padding: 0.5rem 1rem;
background-color: var(--accent-color);
color: white;
cursor: pointer;
transition: 0.2s;
}
input[type=submit]:hover {
background-color: var(--accent-hover-color);
}
table {
border-collapse: collapse;
border-radius: 0.25rem;
overflow: hidden;
margin: auto;
margin-top: 0.75rem;
text-align: left;
max-width: 100%;
font-size: 0.9em;
}
tr > * {
padding: 0.3rem 0.5rem;
}
tr th {
background-color: rgba(0, 60, 120, 0.08);
}
tr:nth-of-type(even) td {
background-color: rgba(0, 60, 120, 0.01);
}
tr:nth-of-type(odd) td {
background-color: rgba(0, 60, 120, 0.03);
}
tr > :first-child {
text-align: right;
white-space: nowrap;
}
nav, nav ul, nav ul li {
display: flex;
}
nav {
background-image: linear-gradient(
to right,
rgba(255, 255, 255, 0),
var(--nav-background-color) var(--side-padding),
var(--nav-background-color) calc(100vw - var(--side-padding)),
rgba(255, 255, 255, 0)
);
box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
position: fixed;
top: 0;
width: 100vw;
height: var(--nav-height);
padding: 0 var(--side-padding);
z-index: 1;
}
nav ul {
padding: 0;
align-items: center;
}
nav #logo {
background: url('../images/Los-Altos-Hacks-Logo.svg') 1rem/auto 65% no-repeat;
min-width: 5rem;
height: 100%;
margin-right: auto;
}
nav ul li a {
color: inherit;
padding: 0 1rem;
line-height: var(--nav-height);
}
section {
padding: 2.5rem 2rem;
display: flex;
justify-content: center;
align-content: center;
justify-items: center;
align-items: center;
background-color: rgba(255, 255, 255, 0.95);
position: relative;
}
section:nth-child(even) {
background-color: rgba(250, 253, 255, 0.9);
}
footer {
align-items: center;
padding: 2rem 2rem;
background-color: #22303d;
color: white;
position: relative;
}
hr {
border: 0;
clear: both;
display: block;
width: 40%;
background-color: #e3e7ed;
height: 2px;
margin: 3.5rem auto;
margin-bottom: 2rem;
}
.row {
flex-wrap: wrap;
flex-direction: row;
align-items: center;
max-width: var(--site-width);
width: 100%;
}
.row > * {
max-width: 100%;
}
.row > :not(:only-child) {
padding: 1rem;
}
.row.columns-half > * {
flex: 1 320px;
}
.row.columns-medium > * {
flex: 1 calc(240px + 7 * var(--vw));
}
.row.columns-small > * {
flex: 1 1 calc(130px + 10 * var(--vw));
max-width: calc((130px + 10 * var(--vw)) * 1.352);
}
.row.columns-tiny > * {
flex: 1 calc(90px + 8 * var(--vw));
max-width: calc((90px + 8 * var(--vw)) * 1.25);
}
.row.columns-tinier > * {
flex: 1 calc(80px + 5 * var(--vw));
padding: 0.5rem;
max-width: calc((80px + 5 * var(--vw)) * 1.5);
}
.row > * > * + * {
margin-top: 1rem;
}
#top {
display: grid;
grid-template-areas:
'logo details'
'top-main top-main';
grid-template-columns: 40% auto;
grid-gap: 1rem;
text-align: left;
background: radial-gradient(white, #67b7e1);
padding-top: 3rem;
padding-bottom: 3rem;
min-height: 100vh;
}
@media (max-width: 717px) {
#top {
grid-template-areas:
'logo'
'details'
'top-main';
grid-template-columns: auto;
text-align: center;
}
}
@media (max-width: 469px) {
#top-main h2 {
width: 100%;
}
}
#top-canvas {
position: absolute;
overflow: hidden;
mix-blend-mode: overlay;
mix-blend-mode: color-burn;
pointer-events: none;
/*opacity: 0.75;*/
backface-visibility: hidden;
z-index: 0;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.gradient-text {
background: -webkit-linear-gradient(40deg, #106eb8, #a0d2f0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: rgba(82, 190, 230, 0.5) 1px 1px 0.1em;
}
#teaser-animation-wrapper {
grid-area: logo;
width: 60 * var(--vw);
max-width: 100%;
}
#teaser-animation {
/* mix-blend-mode: multiply; */
transition: 0.3s;
max-height: 10rem;
}
#teaser-animation:not(:hover) {
z-index: 1;
}
#teaser-animation:hover {
filter: saturate(1.1) drop-shadow(currentColor 1px 1px 10px);
color: rgb(204, 236, 247);
transform: scale(1.001);
animation: Pop 0.3s;
}
@keyframes Pop {
from, to { transform: none }
20% { transform: scale(1.1) }
}
#top-text {
grid-area: details;
display: grid;
}
#top-text .date {
margin-top: 0.5rem;
}
#top-text .venue {
margin-top: 0.5rem;
line-height: 1;
}
#top-text .address {
font-size: 0.7em;
}
#top-text a {
font-weight: normal;
}
/*#email-signup {
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0px 5px 14px 0px rgba(69,69,69,0.25);
border-radius: 0.25rem;
padding: 2rem;
width: 100%;
max-width: 700px;
margin: 2rem auto 0;
}*/
#top-main {
grid-area: top-main;
}
.button, .row > .button {
display: flex;
line-height: 1;
color: white;
margin: 0.4rem;
transform: skew(-15deg);
text-transform: uppercase;
letter-spacing: 0.05em;
padding: 0.65em 1em;
}
.button.blue {
background-color: var(--blue);
}
.button.darkblue {
background-color: var(--darkblue);
}
.button:hover {
opacity: 0.5;
}
.button span {
display: inline-block;
transform: skew(15deg);
}
#countdown, #countdown-label {
font-variant: small-caps;
color: darkslategray;
}
#about {
text-align: left;
}
.faq-wrapper {
font-size: 0.75em;
line-height: 1.65;
align-items: start;
text-align: left;
}
.faq-wrapper > * {
padding: 0 0.5rem;
}
summary {
display: flex;
justify-content: space-between;
align-items: center;
outline: none;
cursor: pointer;
transition: 0.3s;
}
summary:hover {
color: var(--blue);
}
summary::-webkit-details-marker {
display: none;
}
summary:after {
content: '';
display: table;
border: solid;
border-width: 0 0.2em 0.2em 0;
font-size: 0.66em;
width: 1em;
height: 1em;
transform: translateX(-0.3536em) rotate(-45deg);
transition: transform 0.3s;
}
details[open] > summary:after {
transform: translateY(-0.3536em) rotate(45deg);
}
details > summary + * {
animation: DetailsOpen 0.5s linear;
}
details[open] > summary + * {
margin-top: 0.5em;
max-height: 100vh;
animation-direction: reverse;
}
@keyframes DetailsOpen {
from { overflow: hidden; max-height: 100vh }
to { overflow: hidden; max-height: 0; opacity: 0 }
}
#schedule h3 {
margin-top: 1.75rem;
}
#schedule table {
width: 100%;
}
#schedule * + p {
font-size: 0.85em;
}
#team .team-wrapper {
font-size: 0.9em;
align-items: start;
}
#team figure, #judges figure {
margin: 0;
padding: 0.75rem;
max-width: 225px;
}
figure img {
border-radius: 50%;
transition: 0.3s;
max-height: 230px;
-webkit-box-shadow: 0px 3px 13px 0px rgba(0,0,0,0.15);
-moz-box-shadow: 0px 3px 13px 0px rgba(0,0,0,0.15);
box-shadow: 0px 3px 13px 0px rgba(0,0,0,0.15);
}
figure:hover img {
transform: scale(1.1);
}
.row figure h4 {
margin: 0 -3em;
margin-top: 0.75em;
}
.row figure figcaption {
font-size: 0.8em;
margin-top: 0.25em;
}
.judges-wrapper {
font-size: 0.85em;
align-items: start;
}
.judges-wrapper figure figcaption:nth-of-type(2) {
font-weight: bold;
font-size: 0.7em;
}
#partners img {
max-height: calc(40px + 6 * var(--vw));
}
#sponsors img {
max-height: calc(20px + 6 * var(--vw));
}
#food img {
max-height: calc(60px + 6 * var(--vw));
}
#past-years img {
box-shadow: 0px 5px 14px 0px rgba(69,69,69,0.25);
}
.social-media a {
background: radial-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9) 50%, transparent 50%, transparent);
border-radius: 50%;
display: inline-flex;
}
.social-media a:hover {
filter: drop-shadow(0 0 6px) drop-shadow(#fff 0 0 1px);
}
::selection {
background: #2980b9;
background: transparent;
text-shadow: #3498db 0 0 19px;
color: #02a2dd;
-webkit-text-fill-color: #02a2dd;
}
::-moz-selection {
background: #2980b9;
background: transparent;
text-shadow: #3498db 0 0 19px;
color: #02a2dd;
}
/* Workaround for "disappearing Typeform" bug */
/* See https://codepen.io/darrylyeo/pen/gvONMG */
iframe {
-webkit-transform: none !important;
transform: none !important;
} | 2018/css/main.css | :root {
--site-width: 32rem; /* 800px */
--side-padding: calc((100vw - var(--site-width)) / 2);
--nav-background-color: rgba(240, 245, 255, 0.9);
--nav-height: 3rem;
--accent-color: #3fb2ff;
--accent-hover-color: #34495e;
--blue: #3fb2ff;
--orange: #f39c12;
--darkblue: #34495e;
--vw: 1vw;
color: rgba(0, 0, 0, 0.9);
font-size: calc(12px + var(--vw));
font-family: 'DIN', 'Open Sans', sans-serif;
text-align: center;
}
@media (min-width: 2000px) {
:root {
--vw: 20px;
}
}
* {
box-sizing: border-box;
}
html, body {
margin: 0;
}
div, header, main, article, footer {
display: flex;
flex-direction: column;
justify-content: center;
}
p, h1, h2, h3, h4, ul {
margin: 0;
}
img, canvas {
display: block;
max-width: 100%;
margin: auto;
transition: 0.3s;
}
a {
text-decoration: none;
transition: 0.3s;
}
/* a:hover {
opacity: 0.8;
} */
main p a:hover {
box-shadow: inset 0 -3px;
}
main a {
color: var(--accent-color);
font-weight: 600;
}
/* a.sponsorship-email {
color: #ffb347;
} */
a:hover img {
transform: translateY(-2px);
filter: drop-shadow(0 5px 2px rgba(0, 0, 0, 0.2));
}
h1 {
font-size: 3rem;
line-height: 1.1;
text-transform: uppercase;
}
input {
background: none;
border: none;
font: inherit;
}
input:focus {
outline: none;
}
input[type=email] {
border-bottom: var(--accent-color) 2px solid;
margin: 1rem 0;
font-size: 0.9rem;
transition: 0.2s;
padding: 0.5rem 0;
width: 100%;
}
input[type=email]:hover {
border-bottom: var(--accent-hover-color) 2px solid;
}
input[type=submit] {
font-size: 0.8rem;
max-width: 200px;
padding: 0.5rem 1rem;
background-color: var(--accent-color);
color: white;
cursor: pointer;
transition: 0.2s;
}
input[type=submit]:hover {
background-color: var(--accent-hover-color);
}
table {
border-collapse: collapse;
border-radius: 0.25rem;
overflow: hidden;
margin: auto;
margin-top: 0.75rem;
text-align: left;
max-width: 100%;
font-size: 0.9em;
}
tr > * {
padding: 0.3rem 0.5rem;
}
tr th {
background-color: rgba(0, 60, 120, 0.08);
}
tr:nth-of-type(even) td {
background-color: rgba(0, 60, 120, 0.01);
}
tr:nth-of-type(odd) td {
background-color: rgba(0, 60, 120, 0.03);
}
tr > :first-child {
text-align: right;
white-space: nowrap;
}
nav, nav ul, nav ul li {
display: flex;
}
nav {
background-image: linear-gradient(
to right,
rgba(255, 255, 255, 0),
var(--nav-background-color) var(--side-padding),
var(--nav-background-color) calc(100vw - var(--side-padding)),
rgba(255, 255, 255, 0)
);
box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
position: fixed;
top: 0;
width: 100vw;
height: var(--nav-height);
padding: 0 var(--side-padding);
z-index: 1;
}
nav ul {
padding: 0;
align-items: center;
}
nav #logo {
background: url('../images/Los-Altos-Hacks-Logo.svg') 1rem/auto 65% no-repeat;
min-width: 5rem;
height: 100%;
margin-right: auto;
}
nav ul li a {
color: inherit;
padding: 0 1rem;
line-height: var(--nav-height);
}
section {
padding: 2.5rem 2rem;
display: flex;
justify-content: center;
align-content: center;
justify-items: center;
align-items: center;
background-color: rgba(255, 255, 255, 0.95);
position: relative;
}
section:nth-child(even) {
background-color: rgba(250, 253, 255, 0.9);
}
footer {
align-items: center;
padding: 2rem 2rem;
background-color: #22303d;
color: white;
position: relative;
}
hr {
border: 0;
clear: both;
display: block;
width: 40%;
background-color: #e3e7ed;
height: 2px;
margin: 3.5rem auto;
margin-bottom: 2rem;
}
.row {
flex-wrap: wrap;
flex-direction: row;
align-items: center;
max-width: var(--site-width);
width: 100%;
}
.row > * {
max-width: 100%;
}
.row > :not(:only-child) {
padding: 1rem;
}
.row.columns-half > * {
flex: 1 320px;
}
.row.columns-medium > * {
flex: 1 calc(240px + 7 * var(--vw));
}
.row.columns-small > * {
flex: 1 1 calc(130px + 10 * var(--vw));
max-width: calc((130px + 10 * var(--vw)) * 1.352);
}
.row.columns-tiny > * {
flex: 1 calc(90px + 8 * var(--vw));
max-width: calc((90px + 8 * var(--vw)) * 1.25);
}
.row.columns-tinier > * {
flex: 1 calc(80px + 5 * var(--vw));
padding: 0.5rem;
max-width: calc((80px + 5 * var(--vw)) * 1.5);
}
.row > * > * + * {
margin-top: 1rem;
}
#top {
display: grid;
grid-template-areas:
'logo details'
'top-main top-main';
grid-template-columns: 40% auto;
grid-gap: 1rem;
text-align: left;
background: radial-gradient(white, #67b7e1);
padding-top: 3rem;
padding-bottom: 3rem;
min-height: 100vh;
}
@media (max-width: 717px) {
#top {
grid-template-areas:
'logo'
'details'
'top-main';
grid-template-columns: auto;
text-align: center;
}
}
@media (max-width: 469px) {
#top-main h2 {
width: 100%;
}
}
#top-canvas {
position: absolute;
overflow: hidden;
mix-blend-mode: overlay;
mix-blend-mode: color-burn;
pointer-events: none;
/*opacity: 0.75;*/
backface-visibility: hidden;
z-index: 0;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.gradient-text {
background: -webkit-linear-gradient(40deg, #106eb8, #a0d2f0);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-shadow: rgba(82, 190, 230, 0.5) 1px 1px 0.1em;
}
#teaser-animation-wrapper {
grid-area: logo;
width: 60 * var(--vw);
max-width: 100%;
}
#teaser-animation {
/* mix-blend-mode: multiply; */
transition: 0.3s;
max-height: 10rem;
}
#teaser-animation:not(:hover) {
z-index: 1;
}
#teaser-animation:hover {
filter: saturate(1.1) drop-shadow(currentColor 1px 1px 10px);
color: rgb(204, 236, 247);
transform: scale(1.001);
animation: Pop 0.3s;
}
@keyframes Pop {
from, to { transform: none }
20% { transform: scale(1.1) }
}
#top-text {
grid-area: details;
display: grid;
}
#top-text .date {
margin-top: 0.5rem;
}
#top-text .venue {
margin-top: 0.5rem;
line-height: 1;
}
#top-text .address {
font-size: 0.7em;
}
#top-text a {
font-weight: normal;
}
/*#email-signup {
background-color: rgba(255, 255, 255, 0.9);
box-shadow: 0px 5px 14px 0px rgba(69,69,69,0.25);
border-radius: 0.25rem;
padding: 2rem;
width: 100%;
max-width: 700px;
margin: 2rem auto 0;
}*/
#top-main {
grid-area: top-main;
}
.button, .row > .button {
display: flex;
line-height: 1;
color: white;
margin: 0.4rem;
transform: skew(-15deg);
text-transform: uppercase;
letter-spacing: 0.05em;
padding: 0.65em 1em;
}
.button.blue {
background-color: var(--blue);
}
.button.darkblue {
background-color: var(--darkblue);
}
.button:hover {
opacity: 0.5;
}
.button span {
display: inline-block;
transform: skew(15deg);
}
#countdown, #countdown-label {
font-variant: small-caps;
color: darkslategray;
}
#about {
text-align: left;
}
.faq-wrapper {
font-size: 0.75em;
line-height: 1.65;
align-items: start;
text-align: left;
}
.faq-wrapper > * {
padding: 0 0.5rem;
}
summary {
display: flex;
justify-content: space-between;
align-items: center;
outline: none;
cursor: pointer;
transition: 0.3s;
}
summary:hover {
color: var(--blue);
}
summary::-webkit-details-marker {
display: none;
}
summary:after {
content: '';
display: table;
border: solid;
border-width: 0 0.2em 0.2em 0;
font-size: 0.66em;
width: 1em;
height: 1em;
transform: translateX(-0.3536em) rotate(-45deg);
transition: transform 0.3s;
}
details[open] > summary:after {
transform: translateY(-0.3536em) rotate(45deg);
}
details > summary + * {
animation: DetailsOpen 0.5s linear;
}
details[open] > summary + * {
margin-top: 0.5em;
max-height: 100vh;
animation-direction: reverse;
}
@keyframes DetailsOpen {
from { overflow: hidden; max-height: 100vh }
to { overflow: hidden; max-height: 0; opacity: 0 }
}
#schedule h3 {
margin-top: 1.75rem;
}
#schedule table {
width: 100%;
}
#schedule * + p {
font-size: 0.85em;
}
#team .team-wrapper {
font-size: 0.9em;
align-items: start;
}
#team figure, #judges figure {
margin: 0;
padding: 0.75rem;
max-width: 225px;
}
figure img {
border-radius: 50%;
transition: 0.3s;
max-height: 230px;
-webkit-box-shadow: 0px 3px 13px 0px rgba(0,0,0,0.15);
-moz-box-shadow: 0px 3px 13px 0px rgba(0,0,0,0.15);
box-shadow: 0px 3px 13px 0px rgba(0,0,0,0.15);
}
figure:hover img {
transform: scale(1.1);
}
.row figure h4 {
margin: 0 -3em;
margin-top: 0.75em;
}
.row figure figcaption {
font-size: 0.8em;
margin-top: 0.25em;
}
.judges-wrapper {
font-size: 0.85em;
align-items: start;
}
.judges-wrapper figure figcaption:nth-of-type(2) {
font-weight: bold;
font-size: 0.7em;
}
#partners img {
max-height: calc(40px + 6 * var(--vw));
}
#sponsors img {
max-height: calc(20px + 6 * var(--vw));
}
#food img {
max-height: calc(60px + 6 * var(--vw));
}
#past-years img {
box-shadow: 0px 5px 14px 0px rgba(69,69,69,0.25);
}
.social-media a {
background: radial-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9) 50%, transparent 50%, transparent);
border-radius: 50%;
display: inline-flex;
}
.social-media a:hover {
filter: drop-shadow(0 0 6px) drop-shadow(#fff 0 0 1px);
}
::selection {
background: #2980b9;
background: transparent;
text-shadow: #3498db 0 0 19px;
color: #02a2dd;
-webkit-text-fill-color: #02a2dd;
}
::-moz-selection {
background: #2980b9;
background: transparent;
text-shadow: #3498db 0 0 19px;
color: #02a2dd;
}
/* Workaround for "disappearing Typeform" bug */
/* See https://codepen.io/darrylyeo/pen/gvONMG */
iframe {
-webkit-transform: none !important;
transform: none !important;
} | 0.366363 | 0.155238 |
.header-top-area {
background: #ffffff;
user-select: none;
padding: 15px 0px;
position: fixed;
width: 100%;
height: 70px;
top: 0;
z-index: 99;
}
.header-top-area.active {
background: #ffffff;
box-shadow: 0 2px rgb(238, 238, 238);
}
.header-top-area .logo {
display: flex;
gap: 8px;
margin-left: 50px;
}
.header-top-area .logo img {
-webkit-user-drag: none;
}
.header-top-area .logo object {
height: 30px;
}
.menu-area {
text-align: right;
display: flex;
align-items: center;
justify-content: right;
transition: all 0.3s ease-in-out;
}
.menu-area nav {
display: inline-block;
}
.menu-area nav ul {
display: flex;
}
.menu-area nav ul li {
padding: 0px 15px;
}
.menu-area nav ul li a {
font-size: var(--smallFont);
text-decoration: none;
font-weight: bold;
color: var(--bgColor);
}
.menu-area nav ul li a:hover {
color: #16395f;
}
.menu-area nav ul li .active {
color: #16395f;
}
.navigation {
position: relative;
display: flex;
align-items: center;
}
.navigation .menu-area {
margin-left: auto;
margin-right: 25px;
}
.menu-trigger {
border: none;
background: #16395f;
color: white;
width: 40px;
height: 40px;
padding: 5px;
line-height: 0px;
text-align: center;
transition: all 0.3s ease-in-out;
margin-left: auto;
margin-right: 25px;
border-radius: 50%;
display: none;
}
.menu-trigger svg {
width: 23px;
height: 23px;
}
a.btn.join-us {
margin-left: 30px;
}
.app {
margin-top: 70px;
}
/* ------------------------- Header Section CSS End --------------------- */
/* -------------------------Hero Section CSS Start --------------------- */
.hero-area {
margin-top: -70px;
background: url(../assets/svgs/hero-bg.svg);
background-repeat: no-repeat;
background-color: #c9f0f2;
height: 100vh;
background-position: bottom;
background-repeat: no-repeat;
position: relative;
background-size: cover;
background-attachment: fixed;
}
.hero-text h1 {
font-size: var(--largFont);
font-weight: bold;
color: var(--textColor);
}
.hero-text span {
background-color: var(--bgColor2);
}
.hero-text p {
margin-bottom: 30px;
margin-top: 20px;
}
.hero-search-bar {
position: relative;
margin-left: 0px;
}
.search-bar {
width: 100%;
display: inline-flex;
background-color: white;
padding: 10px;
border-radius: 7px;
border: 1px solid #adadad;
box-shadow: 0px 2px 0px 1px #00000052;
position: relative;
}
.search-bar svg {
font-size: 24px;
color: var(--bgColor4);
margin: auto 12px auto 5px;
cursor: pointer;
}
.search-bar input {
width: 100%;
margin-right: 10px;
outline: none;
border: none;
color: #62656b;
}
.search-bar button {
border-radius: 5px;
font-size: 15px;
width: 40%;
}
.hero-search-bar .auto-complete {
background-color: #fff;
width: 100%;
max-height: 185px; /**/
border-radius: 7px;
box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
position: absolute;
top: 65px;
padding: 0px;
max-height: 280px;
overflow-y: auto;
opacity: 0;
pointer-events: none;
}
.hero-search-bar.active .auto-complete {
padding: 10px 10px;
opacity: 1;
pointer-events: auto;
}
.auto-complete li {
display: none;
list-style-type: none;
padding: 7px 12px;
width: 100%;
cursor: default;
border-radius: 5px;
}
.hero-search-bar.active .auto-complete li {
display: block;
}
.auto-complete li:hover {
background: whitesmoke;
}
/* work in progress*/
.hero-search-bar .tag {
width: 100%;
text-align: center;
}
.hero-search-bar .tag span a {
font-size: var(--smallFont);
color: #16395f;
text-transform: uppercase;
text-decoration: none;
font-weight: 500;
}
.hero-search-bar .tag span a:hover {
color: var(--bgColor);
}
.not-found-content {
margin: auto;
}
/* -------------------------Hero Section CSS End --------------------- */
/* -------------------------Most Recent Job Section CSS Start --------------------- */
.job-card {
background: #ffffff;
border: 1px solid var(--bgColor3);
box-shadow: 2px 3px 0px 2px var(--bgColor3);
border-radius: 10px;
padding: 20px;
margin-bottom: 30px;
height: 230px;
}
.job-card-sk {
animation: skeleton 1.5s linear infinite alternate;
}
@keyframes skeleton {
0% {
opacity: 0.7;
}
50% {
opacity: 0.4;
}
100% {
opacity: 0.95;
}
}
.job-card:hover {
background: #fafafa;
}
.about-recruiter a .recruiter-logo {
width: 50px;
height: 50px;
border: 1px solid whitesmoke;
border-radius: 5px;
}
.about-recruiter .logo-sk {
width: 50px;
height: 50px;
background-color: lightgrey;
border-radius: 5px;
border: 1px solid whitesmoke;
}
.recruiter-title {
font-size: 14px;
margin-left: 20px;
font-weight: 500;
margin-bottom: 0;
word-break: break-word;
}
.recruiter-title a {
font-size: 16px;
}
.recruiter-title-sk {
width: 145px;
height: 20px;
background-color: lightgrey;
border-radius: 5px;
margin-left: 25px;
margin-bottom: 0;
}
.post_time {
font-weight: 300;
}
.job-title {
font-size: var(--normalFont);
margin: 10px 0px;
}
.job-title-sk {
width: 100%;
height: 30px;
background-color: lightgrey;
border-radius: 5px;
margin: 10px 0px;
}
.job-status {
width: 100%;
display: inline-block;
white-space: nowrap;
overflow: hidden;
font-size: var(--smallFont);
}
.job-status-sk {
width: 100%;
height: 15px;
background-color: lightgrey;
border-radius: 5px;
margin-top: 5px;
}
.job-keywords-sk {
width: 100%;
display: flex;
margin-top: 10px;
gap: 5px;
}
.keyword-sk {
width: 80px;
height: 25px;
background-color: lightgrey;
border-radius: 15px;
}
.job-content {
margin-top: 15px;
word-break: break-word;
}
.job-keyword .job-tag,
.blog-keyword .blog-tag {
background: #edfeff;
border: 1px solid #dff3fb;
color: var(--bgColor);
display: flex;
align-items: center;
font-size: 12px;
line-height: 12px;
padding: 3px 6px 3px 3px;
border-radius: 10px;
margin-right: 5px;
margin-bottom: 5px;
word-break: initial;
}
.job-tag div,
.blog-tag div {
background: #bbbaba;
width: 12px;
height: 12px;
display: inline-block;
border-radius: 50%;
margin: auto 4px auto 2px;
}
.job-keyword,
.blog-keyword {
margin-top: 10px;
display: flex;
}
/* -------------------------Most Recent Job Section CSS End --------------------- */
/* -------------------------Browse Jobs by Category Section CSS Start --------------------- */
.browse-jobs-categories {
background-color: var(--sectionBg);
}
.category-item {
background: #ffffff;
border: 1px solid var(--bgColor3);
box-shadow: 2px 3px 0px 2px var(--bgColor3);
border-radius: 10px;
padding: 20px;
height: 200px;
margin-bottom: 25px;
text-align: center;
}
.category-item:hover {
background: #fafafa;
}
.category-icon {
text-align: center;
margin-bottom: 10px;
}
.category-icon svg {
font-size: 86px;
color: #cccccc;
}
.category-name h3 {
font-size: 22px;
}
/* -------------------------Browse Jobs by Category Section CSS End --------------------- */
/* -------------------------Browse Jobs by Cities Section CSS Start --------------------- */
.location-based-jobs {
background-repeat: no-repeat;
border: 1px solid var(--bgColor3);
box-shadow: 2px 3px 0px 2px var(--bgColor3);
border-radius: 10px;
height: 230px;
padding: 20px;
position: relative;
background-position: right;
background-size: contain;
margin-bottom: 30px;
}
.location-name {
position: absolute;
bottom: 20px;
left: 20px;
}
.location-name h4 {
font-size: var(--mediumFont);
margin-top: 5px;
}
/* -------------------------Browse Jobs by Cities Section CSS End --------------------- */
/* -------------------------How Works it Section CSS Start --------------------- */
.how-works-site {
background: var(--sectionBg);
}
.how-works-content h2 {
font-size: 32px;
font-weight: 600;
}
.how-works-content h3 {
font-size: 22px;
margin: 10px 0;
}
.how-works-content {
padding-right: 35px;
}
.how-works-content .btn {
margin-top: 25px;
padding: 7px 25px;
}
.leaflet-map {
height: 260px;
color: var(--bgColor2);
border: 2px solid var(--bgColor3);
border-radius: 10px;
background-color: white;
box-shadow: 2px 3px 0px 2px var(--bgColor3);
z-index: 90;
}
.leaflet-map.big {
height: 565px;
}
/* -------------------------How Works it Section CSS End --------------------- */
/* -------------------------User Feedback Section CSS Start --------------------- */
.feedback-wrapper {
background: white;
border: 1px solid var(--bgColor3);
border-radius: 10px;
padding: 25px 20px;
text-align: center;
width: 350px;
margin: auto;
}
.feedback-wrapper .user-info .user-avatar {
width: 80px;
height: 80px;
overflow: hidden;
margin: auto;
border: 1px solid lightgray;
border-radius: 50%;
}
.feedback-wrapper .user-info .user-avatar img {
width: 100%;
}
.feedback-wrapper .user-info h4 {
font-size: var(--mediumFont);
margin: 5px 0px;
}
.feedback-wrapper .user-info p {
font-size: var(--smallFont);
color: #00000096;
}
.feedback-wrapper .user-info {
margin-bottom: 20px;
}
.feedback-wrapper .user-feedback blockquote {
font-size: var(--normalFont);
margin-bottom: 0;
}
.user-feedback-area .owl-carousel .owl-item img {
display: inline-block;
}
.user-feedback-area .owl-carousel .owl-stage-outer {
height: 270px;
}
/* -------------------------User Feedback Section CSS End --------------------- */
/* -------------------------Latest Blog Section CSS Start --------------------- */
.latest-blog-area {
background-color: var(--sectionBg);
}
.blog-item {
background: #ffffff;
border: 1px solid #cbcbcb;
border-radius: 10px;
padding: 20px;
height: 400px;
position: relative;
padding-top: 180px;
margin-bottom: 25px;
}
.blog-item:hover {
background: #fafafa;
}
.blog-bg {
position: absolute;
width: 100%;
height: 180px;
left: 0;
top: 0;
overflow: hidden;
background-color: lightgrey; /* temporary */
background-size: cover;
background-position: center;
border-radius: 9px 9px 0px 0px;
}
.blog-bg img {
width: 100%;
height: 100%;
}
.blog-item .blog-author-time p {
font-size: var(--smallFont);
color: #00000094;
}
.blog-item .blog-author-time p span.author {
color: black;
}
.blog-text {
margin-top: 15px;
}
.blog-item .blog-text h3 {
font-size: 20px;
font-weight: 600;
margin: 10px 0;
}
.blog-item .blog-text p {
font-size: 16px;
}
.blog-content {
margin-top: 10px;
}
/* -------------------------Latest Blog Section CSS End --------------------- */
/* -------------------------Newsletter Section CSS Start --------------------- */
.newsletter-content {
text-align: center;
}
.newsletter-content h4 {
font-size: 20px;
font-weight: 400;
margin-bottom: 10px;
}
.newsletter-form {
position: relative;
margin: 10px 0;
}
.newsletter-form .newsletter-email {
width: 100%;
border: 1px solid var(--bgColor3);
box-sizing: border-box;
box-shadow: 1px 2px 0px 1px var(--bgColor3);
border-radius: 5px;
padding: 15px 131px 15px 60px;
position: relative;
outline-color: var(--bgColor);
font-weight: 400;
color: #838995;
}
.newsletter-form .btn.newsletter {
position: absolute;
top: 1px;
right: 1px;
padding: 16px 20px;
border-radius: 0px 5px 5px 0px;
font-size: 15px;
font-weight: 300;
}
.newsletter-form .svg {
position: absolute;
left: 20px;
top: 32px;
font-size: 24px;
color: var(--bgColor4);
margin-top: -16px;
}
.newsletter-form p {
margin-top: 10px;
font-size: var(--smallFont);
color: #838995;
}
.newsletter-form p.err {
color: red;
}
.newsletter-form p.okk {
color: green;
}
.newsletter-notification .msg_notify,
.newsletter-notification .msg_notify.error {
border: none;
background: transparent;
text-transform: capitalize;
padding: 0;
}
/* -------------------------Newsletter Section CSS End --------------------- */
/* -------------------------Footer Section CSS Start --------------------- */
.footer-menu-area {
background-color: var(--bgColor5);
}
.footer-menu-title {
display: inline-block;
position: relative;
}
.footer-menu-title h3 {
font-size: var(--normalFont);
color: white;
font-weight: 600;
}
.footer-menu-title::after {
position: absolute;
content: '';
background-color: var(--bgColor);
width: 100%;
height: 2px;
left: 0;
bottom: -7px;
}
.footer-menu nav ul li {
font-size: 18px;
margin-bottom: 5px;
}
.footer-menu nav ul li a {
color: white;
}
.footer-menu nav ul li a:hover {
color: var(--bgColor);
}
.footer-menu {
margin-top: 20px;
}
.footer-copyright-area {
background: var(--bgColor4);
color: white;
padding: 15px;
text-align: center;
}
.copyright-text {
font-size: var(--smallFont);
font-weight: 200;
}
/* -------------------------Footer Section CSS End --------------------- */
/* ------------------------- Home End --------------------- */
/* -------------------------About Page CSS Start--------------------- */
/* -------------------------Intro Section CSS Start --------------------- */
.intro-area {
text-align: center;
width: 100%;
height: 400px;
background: url(../assets/svgs/intro-bg.svg);
background-repeat: no-repeat;
background-color: #fafafa;
background-position: bottom;
position: relative;
background-size: contain;
}
.intro-heading {
font-size: var(--largFont);
font-weight: bold;
color: var(--textColor);
display: inline-block;
position: relative;
}
.intro-heading::after {
position: absolute;
content: '';
background: var(--bgColor);
display: block;
margin: 5px auto;
width: 100%;
height: 7px;
}
.intro-text p {
font-family: sans-serif;
font-size: 25px;
margin-bottom: 30px;
margin-top: 20px;
}
/* -------------------------Intro Section CSS End --------------------- */
/* -------------------------Story Section CSS End --------------------- */
.story-area {
background-color: #ececec;
display: flex;
gap: 5em;
justify-content: center;
flex-wrap: wrap;
}
.story-image {
padding: 50px 0;
}
.story-content {
display: flex;
flex-direction: column;
justify-content: space-around;
}
.story-content.order-first {
text-align: right;
}
.story-heading::after {
content: '';
background: var(--bgColor);
display: block;
width: 100%;
height: 3px;
margin-top: 5px;
}
.story-text h3 {
font-size: var(--mediumFont);
font-weight: 600;
color: var(--textColor);
display: inline-block;
}
.story-text p {
max-width: 400px;
line-height: 32px;
margin-bottom: 20px;
margin-top: 30px;
}
/* -------------------------Story Section CSS End --------------------- */
/* -------------------------Team Section CSS End --------------------- */
.team-area {
height: auto;
background-color: #fafafa;
padding-top: 40px;
padding-bottom: 20px;
}
.team-heading::after {
content: '';
background: var(--bgColor);
display: block;
width: 100%;
height: 3px;
margin-top: 5px;
}
.team-content h3 {
font-size: var(--mediumFont);
font-weight: 600;
color: var(--textColor);
text-align: center;
display: inline-block;
margin: 0 auto;
margin-bottom: 25px;
}
.team-content p {
width: 400px;
line-height: 32px;
margin-bottom: 20px;
margin-top: 30px;
}
.team-card {
background-color: #ffffff;
border: 1px solid #bbbbbb;
height: 250px;
border-radius: 10px;
overflow: hidden;
width: 100%;
margin-bottom: 40px;
}
.team-card img {
width: 100%;
max-height: 190px;
object-fit: cover;
}
.team-card-title {
display: flex;
flex-direction: column;
padding: 8px 0px;
background-color: #fff;
transform: translateY(-16px);
text-align: center;
}
.team-card-title h4 {
margin-bottom: 0;
font-size: 0.9em;
font-weight: 600;
}
.team-card-title small {
font-size: 14px;
}
/* -------------------------Team Section CSS End --------------------- */
/* ------------------------- Roadmap Section CSS Start --------------------- */
.roadmap-area {
height: 400px;
background-color: #fafafa;
}
.roadmap-content {
display: flex;
flex-direction: column;
align-items: center;
}
.roadmap-heading::after {
content: '';
background: var(--bgColor);
display: block;
width: 100%;
height: 3px;
margin-top: 5px;
}
.roadmap-content h3 {
font-size: var(--mediumFont);
font-weight: 600;
color: var(--textColor);
}
.roadmap-cards {
width: 672px;
margin: 30px;
display: flex;
justify-content: space-around;
}
.roadmap-card {
position: relative;
width: 75px;
height: 75px;
text-align: center;
padding-top: 11px;
background-color: var(--bgColor);
border-radius: 50%;
}
.roadmap-card p {
margin-top: 15px;
}
.roadmap-road {
width: 60%;
height: 10px;
background-color: var(--bgColor);
margin-top: -72px;
margin-bottom: 100px;
}
.roadmap-progress {
background-color: var(--bgColor4);
width: 55%;
height: 100%;
}
/* ------------------------- Roadmap Section CSS End --------------------- */
/* -------------------------About Page CSS End--------------------- */
/* -------------------------City & Category Page CSS Start--------------------- */
.locations-cities-item {
background: #ffffff;
border-radius: 10px;
padding: 25px;
position: relative;
padding-top: 225px;
box-shadow: 0px 1px 6px 0px rgb(0 0 0 / 28%);
margin-bottom: 15px;
}
.city-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 210px;
border-radius: 10px 10px 0px 0px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
opacity: 90%;
z-index: 1;
}
.city-job-info {
position: relative;
color: white;
text-align: center;
top: 70%;
}
.city-job-info h4 {
font-size: var(--mediumFont);
color: white;
font-weight: 700;
}
.city-job-info h5 {
font-weight: 600;
color: white;
}
.city-list a {
font-size: 16px;
color: var(--bgColor);
}
.city-list .col-lg-6:nth-child(even) {
text-align: right;
}
/* -------------------------City & Category Page CSS End--------------------- */
/* -------------------------Contact Us Page CSS Start--------------------- */
.contact-sidebar {
border-radius: 10px;
background: #e7eff1;
margin-top: 47px;
padding: 20px 20px;
height: calc(100%-47px);
}
.contact-information p,
.about-hourlyfinder p {
margin: 15px 0;
font-size: 16px;
text-align: justify;
}
.siderbar-border {
border-bottom: 1px solid #9e9e9e;
margin-bottom: 20px;
}
.contact-area {
background: #fafafa;
border-bottom: 0.5px solid #e1e1e1;
}
.contact-area .row {
padding-top: 30px;
}
.contact-form-area .contact-form {
background: white;
padding: 30px 35px;
border-radius: 10px;
margin-top: 15px;
box-shadow: 1px 1px 0px 2px var(--bgColor3);
}
.contact-form-loader {
position: relative;
height: 300px;
}
.contact-form-loader .spinner {
position: absolute;
left: 0;
right: 0;
width: 100%;
height: 100%;
}
h2.contact-title,
.faq-title h2 {
font-size: 28px;
}
h2.contact-title,
.faq-title h2 {
font-size: 28px;
}
.form-field {
overflow: hidden;
display: block;
/* margin-bottom: 5px; */
}
.form-field .contact-phone {
width: 47%;
float: left;
}
.form-field .profile {
width: 47%;
float: right;
display: block;
}
.form-field .invalid-feedback {
font-size: 0.7rem;
}
.form-field .valid-feedback {
font-size: 0.7rem;
}
.form-field .is-valid {
border-color: #19875450;
}
.form-field .is-invalid {
border-color: #dc354550;
}
.faq-area {
overflow: hidden;
}
.faq-title {
position: relative;
display: inline-block;
margin-bottom: 25px;
}
.faq-title::after {
position: absolute;
content: '';
width: 1000%;
height: 2px;
left: 120%;
top: 50%;
background: #737171;
}
.faq-questions .accordion-button {
font-size: 20px;
font-weight: 400;
}
/* -------------------------Contact Us Page CSS End--------------------- */
/* -------------------------Registration & Login Page CSS Start--------------------- */
.registration-area,
.jobs-application-area {
margin-top: -70px;
background: url(../assets/svgs/hero-bg.svg);
display: flex;
align-items: center;
justify-content: center;
background-size: cover;
height: 100vh;
min-height: 590px;
}
.registration-box,
.application-box {
margin-top: 35px;
width: 960px;
height: 540px;
border-radius: 30px;
background: white;
}
.registration-left {
width: 50%;
background-color: #2b313f;
height: 100%;
border-radius: 30px;
position: relative;
overflow: hidden;
float: left;
}
.registration-left::after {
content: '';
position: absolute;
top: -5%;
left: -50%;
height: 130%;
width: 100%;
background: #358fb2;
transform: skew(-25deg, 0deg);
}
.registration-left::before {
content: '';
position: absolute;
background: url(../assets/svgs/clock.svg);
top: 50%;
left: 50%;
width: 200px;
height: 200px;
z-index: 4;
margin-top: -100px;
margin-left: -100px;
background-position: center;
background-size: cover;
}
.registration-left-content {
position: absolute;
width: 80%;
margin: auto;
height: 80%;
background: linear-gradient(148.31deg, rgba(255, 255, 255, 0.165) 0%, rgba(255, 255, 255, 0.3) 100%);
border: 1px solid rgba(255, 255, 255, 0.2);
box-sizing: border-box;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
backdrop-filter: blur(20px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 10px;
z-index: 70;
left: 50%;
top: 50%;
margin-left: -40%;
margin-top: -44%;
padding: 20px;
}
.registration-left-content .normal-logo {
background: rgba(43, 49, 63, 0.1);
display: inline-block;
padding: 5px 15px;
}
.registration-left-content .normal-logo h3 {
font-size: var(--mediumFont);
color: #f2ecdc;
font-weight: 500;
}
.registration-left-text h2 {
font-size: 35px;
font-weight: bold;
}
.registration-status-info h4 a {
font-size: 20px;
color: white;
font-weight: 500;
}
.registration-left-text {
margin: 30px 0;
}
.registration-status-info {
color: white;
}
.registration-left-text p {
margin-top: 5px;
}
.registration-form,
.apply-form,
.job-application-info {
width: 50%;
float: right;
padding: 25px 50px;
display: flex;
align-items: center;
height: 100%;
}
.registration-form .form {
position: relative;
width: 100%;
}
.registration-form .form .forget {
font-size: 15px;
text-align: center;
}
.msg_notify {
color: teal;
padding: 5px 10px;
border-radius: 7px;
background-color: #ceffe0;
border: 1px solid lightseagreen;
font-size: 16px;
margin-top: 20px;
margin-bottom: 10px;
}
.msg_notify.error {
color: #e19b69;
background-color: #fbf5df;
border: 1px solid #fdd5b8;
}
.registration-form .form ul {
color: grey;
padding: 5px 10px;
font-size: 16px;
margin-top: 20px;
margin-bottom: 10px;
}
.registration-form .form ul li {
margin-bottom: 3px;
}
.btn_group {
position: absolute;
display: flex;
gap: 10px;
bottom: 0;
width: 100%;
}
.btn_group span {
user-select: none;
cursor: pointer;
color: white;
padding: 3px 10px;
border-radius: 5px;
background-color: var(--bgColor);
}
.btn_group span:nth-child(1) {
background-color: grey;
}
.form-field input,
.form-field select,
.form-field textarea {
display: block;
border: 2px solid #e8e8e8;
box-sizing: border-box;
border-radius: 5px;
width: 100%;
color: #838995;
font-size: var(--smallFont);
padding: 7px 15px;
outline-color: var(--bgColor);
margin-bottom: 5px;
}
.form-field input[type='file'] {
margin-bottom: 0;
height: 39px;
}
.file_edit_button {
border-radius: 10px;
background-color: #ffffff;
position: relative;
overflow: hidden;
}
.file_edit_button input::-webkit-file-upload-button {
visibility: hidden;
}
.file_edit_button input::before {
content: 'Choose File';
background: var(--bgColor);
position: absolute;
left: 2px;
top: 2px;
border-radius: 3px;
padding: 0 13px;
padding-top: 1px;
height: 35px;
display: inline-block;
color: #ffffff;
line-height: 33px;
}
.registration-form h2,
.apply-form h2 {
margin-bottom: 15px;
}
.form-field label {
font-size: 16px;
font-weight: 600;
margin-bottom: 5px;
}
.form-field .first-name {
float: left;
width: 47%;
}
.form-field .last-name {
float: right;
width: 47%;
}
.form-field.stay-login input,
.form-field.agree input {
width: auto;
display: inline-block;
margin-right: 10px;
margin-bottom: 15px;
padding: 7px;
}
.form-field.account-type .group {
margin-top: 10px;
display: flex;
gap: 20px;
}
.form-field.account-type .group input {
visibility: hidden;
}
.form-field.account-type .group label {
text-align: center;
border: 2px solid transparent;
background-color: #ffe1a7;
border-radius: 5px;
height: 80px;
width: 120px;
}
.form-field.account-type .group label svg {
color: #0008;
height: 30px;
margin-bottom: -20px;
}
.form-field.account-type .group label.active {
border: 2px solid var(--bgColor5);
}
.form-field.account-type .group label:nth-child(2) {
background-color: #c6e1cd;
}
.form-field .btn {
height: 45px;
font-size: 16px;
background: #16395f;
color: white;
}
.auth.mobile-view-link p {
font-size: 18px;
text-align: center;
}
.auth.mobile-view-link {
margin-top: 10px;
display: none;
}
.auth.mobile-view-link.register {
position: absolute;
left: 0;
bottom: -40px;
width: 100%;
}
.auth.mobile-view-link a {
font-weight: bold;
color: #16395f;
}
/* -------------------------Registration Page CSS End--------------------- */
/* -------------------------All Blog Page CSS Start--------------------- */
.weekly-blog {
width: 100%;
height: 250px;
border-radius: 10px;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-color: lightgray;
}
.blog-slide.owl-carousel {
position: relative;
padding: 0px;
}
.weekly-blog-content p.author-time {
font-size: 14px;
font-weight: 400;
color: #737171;
}
.weekly-blog-content h3 {
font-size: var(--mediumFont);
margin: 15px 0px;
margin-bottom: 7px;
}
.weekly-blog-content {
padding-right: 40px;
}
.weekly-blog-content p {
font-size: 16px;
text-align: justify;
}
.blog-slide .owl-nav {
position: absolute;
width: 100%;
top: 35%;
left: 0;
margin-top: -25px;
}
.blog-slide .owl-nav button span {
font-size: 50px;
}
.blog-slide .owl-nav button.owl-next {
right: 0;
position: absolute;
}
.blog-slide .owl-dots {
position: absolute;
bottom: -25px;
left: 50%;
}
.blog-slide .owl-dots .owl-dot {
width: 10px;
height: 10px;
background: rgb(182, 182, 182);
border-radius: 50%;
margin: 0 5px;
}
.blog-slide .owl-dots .owl-dot.active {
background: var(--bgColor);
}
.pagination-wrapper {
background: whitesmoke;
padding: 8px 20px;
border: 1px solid lightgrey;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
text-align: center;
}
.pagination-wrapper a {
font-size: 20px;
font-weight: 700;
margin: 0 10px;
}
.pagination-wrapper a.link {
width: 30px;
height: 30px;
border-radius: 50%;
background: transparent;
display: inline-block;
}
.pagination-wrapper a.link:hover {
width: 30px;
height: 30px;
border-radius: 50%;
background: #262626;
display: inline-block;
color: white;
}
.pagination-wrapper a.active {
width: 30px;
height: 30px;
border-radius: 50%;
background: #262626;
display: inline-block;
color: white;
}
.pagination-wrapper a.page.disabled {
color: lightgrey;
}
.pagination-wrapper a.page.disabled:hover {
cursor: not-allowed;
color: lightgray;
background-color: #f1f1f1;
}
.pagination-wrapper a.page {
font-weight: 300;
text-transform: uppercase;
padding: 5px 10px;
border-radius: 5px;
}
.pagination-wrapper a.page:hover {
cursor: pointer;
color: var(--bgColor);
background-color: #e4e4e4;
}
.pagination-wrapper a svg {
margin-right: 10px;
}
.pagination-wrapper a.next svg {
margin-left: 10px;
}
.blog-contents {
padding: 30px 0;
}
.side-bar-right {
background: #dfdfdf;
padding: 30px 15px;
height: 100%;
}
.side-bar-right .job-card .recruiter-title {
margin-left: 15px;
}
.side-bar-right .job-card .job-title {
font-size: 20px;
}
.advertizement-bg {
width: 100%;
height: 600px;
background: lightslategray;
border-radius: 10px;
}
.all-blog-area,
.single-blog-area {
background: #f6f6f6;
border-bottom: 0.5px solid #dfdfdf;
}
/* -------------------------All Blog Page CSS End--------------------- */
/* -------------------------Single Job Page CSS Start--------------------- */
.apply-area {
margin-top: 100px;
}
.recruiter-company-cover {
background-color: #e7e7e7;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 190px;
position: relative;
margin-bottom: 70px;
border-radius: 10px 10px 0px 0px;
}
.recruiter-company-cover .company-profile {
position: absolute;
bottom: 0;
height: 80px;
width: 90px;
left: 50%;
margin-left: -45px;
margin-bottom: -40px;
border-radius: 10px;
background-color: #d7d7d7;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.job-title-sk {
width: 100%;
height: 30px;
background-color: #e7e7e7;
}
.inline-sk {
display: inline-block;
margin-right: 5px;
border-radius: 5px;
width: 100px;
height: 20px;
background-color: #e7e7e7;
}
.title-sk {
border-radius: 5px;
margin-bottom: 20px;
width: 50%;
height: 30px;
background-color: #e7e7e7;
}
.content-sk {
width: 100%;
height: 15px;
border-radius: 5px;
margin-bottom: 10px;
background-color: #e7e7e7;
}
.image-sk {
width: 100px;
height: 100px;
border-radius: 50%;
background-color: #e7e7e7;
}
.jobs-details-information {
padding: 10px 25px;
}
.post-job-area .fields {
margin: 15px;
}
.post-job-area .save-all-change {
margin-left: 28px;
margin-right: 28px;
margin-bottom: 20px;
}
.job-details-image {
height: 203px;
opacity: 0.4;
background-size: cover;
background-color: #c9e2e9;
}
.jobs-details-information.dashboard {
top: 0;
position: absolute;
}
.single-job-title h2 {
font-size: 30px;
font-weight: 600;
}
.single-job-title p {
font-size: 22px;
margin-top: 5px;
}
.single-job-title {
margin-bottom: 25px;
}
.basic-info p {
font-size: 12px;
text-transform: uppercase;
color: #434343;
}
.basic-info h5 {
font-size: 16px;
margin-top: 5px;
}
.basic-info {
margin-bottom: 20px;
}
.single-job-details h3 {
font-size: var(--mediumFont);
margin-bottom: 8px;
}
.single-job-details p {
font-size: 16px;
text-align: justify;
}
.single-job-details {
margin-bottom: 25px;
}
.require-skills ul {
list-style: disc;
padding-left: 30px;
}
/* -------Apply Sidebar CSS------ */
.apply-sidebar {
border-radius: 10px;
height: 100%;
background: #f0fff8;
}
.sk-flash {
opacity: 1;
animation: opac 3s infinite;
}
.sidebar-padding {
padding: 25px 30px;
}
.application-budget-information {
border-bottom: 1px solid #dee0e3;
}
.application-budget-information p {
font-weight: 400;
}
.application-budget-information h4.budget {
font-size: 30px;
margin: 10px 0;
margin-bottom: 25px;
}
.application-budget-information .btn {
display: block;
margin-bottom: 10px;
}
.recruiter-profile-name .profile-info img {
width: 70px;
height: 70px;
border-radius: 50%;
margin-right: 20px;
}
.recruiter-profile-name {
margin: 20px 0;
}
.recruiter-profile-name .profile-name p {
font-size: 16px;
font-weight: 400;
margin-top: -5px;
}
.contact-details nav ul li {
margin-bottom: 15px;
color: #111111;
font-size: 17px;
}
.contact-details nav ul li svg {
color: #3f3f3f;
margin-right: 15px;
}
.profile-gallery p {
font-size: 14px;
text-align: justify;
}
.profile-gallery a {
color: var(--bgColor);
font-size: 14px;
margin-bottom: 5px;
display: inline-block;
}
.profile-gallery .gallery img {
height: 180px;
width: 100%;
margin: 10px 0;
border-radius: 10px;
}
/* -------------------------Single Job Page CSS End--------------------- */
/* -------------------------Apply Page CSS Start--------------------- */
.apply-form {
float: left;
}
.form-field.agree label {
font-size: 14px;
}
.job-application-info {
background: #eeeeee;
border-radius: 0px 30px 30px 0px;
}
.job-application-info .normal-logo h3 {
font-size: 20px;
color: #f2ecdc;
font-weight: 600;
}
.job-application-info .normal-logo {
background: #16395fb2;
display: inline-block;
padding: 10px 25px;
}
.job-application-title h2 {
font-size: 25px;
font-weight: 600;
}
.job-application-title p {
font-size: 18px;
font-weight: 400;
}
.job-application-title p span {
font-weight: 500;
}
.application-company-profile img {
border-radius: 10px;
height: 65px;
width: 70px;
margin-right: 20px;
}
.application-company-name h5 {
font-size: 18px;
margin-bottom: 0;
}
.application-company-name p {
font-size: 14px;
font-weight: 400;
}
.job-application-info p.job-overview {
background: white;
padding: 15px;
font-size: 14px;
border-radius: 10px;
text-align: justify;
font-weight: 400;
margin: 15px 0;
}
.job-application-info .job-budget-time h3 {
font-size: 22px;
font-weight: 600;
}
.job-application-info .job-budget-time p {
font-size: 16px;
font-weight: 400;
color: #737171;
}
.job-application-title {
margin: 15px 0;
}
.form-field.agree {
display: flex;
align-items: center;
margin: 10px 0;
}
.form-field.agree input,
.form-field.agree label {
margin-bottom: 0;
}
/* -------------------------Apply Page CSS End--------------------- */
/* -------------------------Single Blog Page CSS Start--------------------- */
.single-blog-title h2 {
font-size: 30px;
font-weight: 600;
}
.single-blog-title h4 {
font-size: 22px;
margin: 10px 0;
margin-bottom: 25px;
}
.single-blog-author-time p {
font-size: 16px;
font-weight: 400;
}
.blog-main-bg,
.blog-sub-bg {
height: 350px;
border-radius: 10px;
background-color: #bbb; /* temporary */
background-size: cover;
background-repeat: no-repeat;
background-position: center;
margin: 15px 0;
}
.single-blog-details p.blog-text {
font-size: 16px;
text-align: justify;
}
.blog-sub-bg {
height: 290px;
}
.single-blog-content-wrapper {
padding: 25px 0;
}
.single-blog-details {
padding-bottom: 30px;
border-bottom: 1px solid #dfdfdf;
margin-bottom: 20px;
}
.small-job-card {
background: white;
padding: 15px;
margin-bottom: 15px;
border-radius: 10px;
}
.small-job-title {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.small-job-title .recruiter-logo {
width: 35px;
height: 35px;
margin-right: 15px;
}
.small-job-title .recruiter-logo img {
height: 100%;
}
.small-job-title h3 {
font-size: 16px;
font-weight: 400;
word-break: break-all;
}
.small-job-bottom {
font-size: 12px;
color: #888;
}
.small-job-bottom span {
color: black;
}
/* -------------------------Single Blog Page CSS End--------------------- */
/* -------------------------Job Seeker Profile Page CSS start--------------------- */
.profile-view-bar {
padding: 50px 30px;
background: #f4f4f4;
height: 100%;
}
.profile-bg {
height: 120px;
width: 120px;
border-radius: 50%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
margin: auto;
background-color: gainsboro;
position: relative;
}
.profile-view-bar .active-status {
position: absolute;
left: 87%;
bottom: 6px;
background: #16395fd6;
border-radius: 25px;
font-size: 10px;
color: white;
overflow: hidden;
height: 25px;
display: flex;
align-items: center;
justify-content: start;
gap: 10px;
width: 25px;
transition: 0.4s;
border: 1px solid #16395f;
}
.profile-view-bar .active-status .icon {
padding-left: 6px;
margin-top: -3px;
font-size: 12px;
}
.profile-view-bar .active-status .text {
padding-right: 10px;
}
.profile-view-bar .active-status:hover {
width: auto;
}
.profile-view-bar .profile-name-title {
text-align: center;
}
.profile-view-bar .profile-name-title h3 {
font-size: 28px;
margin-top: 20px;
}
.profile-view-bar .profile-name-title p {
font-size: 18px;
font-weight: 300;
margin-top: 5px;
}
.profile-view-bar .contact-details li {
font-size: 16px;
}
.profile-view-bar .contact-details {
margin: 30px 0;
}
.important-links .btn {
display: block;
margin-bottom: 15px;
font-weight: 400;
border-radius: 10px;
}
.profile-view-information {
background: #f4f4f4;
padding: 30px;
border-radius: 10px;
margin-bottom: 20px;
height: 100%;
}
.profile-view-information .profile-category {
font-weight: 300;
}
.profile-view-information .overall-rating {
text-align: right;
display: flex;
align-items: center;
justify-content: right;
}
.profile-view-information .overall-rating h4 {
font-size: 18px;
font-weight: 300;
margin-right: 10px;
}
.profile-view-information .overall-rating .rating svg {
color: gray;
}
.profile-view-information .overall-rating .rating svg.iconify.checked {
color: black;
}
.profile-view-information .profile-title h5 {
font-size: 20px;
font-weight: 600;
position: relative;
display: inline-block;
}
.profile-view-information .profile-title h5::after {
position: absolute;
content: '';
width: 2008%;
height: 2px;
background: #c4c4c4;
top: 50%;
left: 110%;
}
.profile-view-information .profile-title {
overflow: hidden;
margin-top: 25px;
margin-bottom: 10px;
}
.profile-view-information .profile-bio,
.profile-view-information .skills-tag,
.profile-view-information .previous-works-list,
.profile-view-information .review-list {
background: white;
border-radius: 10px;
padding: 20px 30px;
word-break: break-all;
}
.profile-view-information .profile-bio h5 {
font-size: 18px;
}
.profile-view-information .profile-bio p {
font-size: 16px;
font-weight: 300;
}
.skills-tag span {
background: #e3e3e3;
font-size: 16px;
padding: 5px 10px;
border-radius: 10px;
color: #565454;
margin-right: 15px;
margin-bottom: 10px;
display: inline-block;
}
.work-title p {
display: inline-block;
}
.previous-work-item {
background: #f4f4f4;
padding: 15px 20px;
border-radius: 10px;
margin-bottom: 15px;
}
.previous-work-item h5 {
font-size: 18px;
margin-bottom: 0;
}
.previous-work-item .work-title p {
font-size: 14px;
font-weight: 300;
margin-right: 10px;
}
.previous-work-item .work-title p svg {
color: #737171;
}
.previous-work-item .rating svg {
font-size: 20px;
}
.previous-work-item .location-date p {
font-size: 14px;
}
.previous-work-item .location-date p svg {
color: #737171;
margin-right: 5px;
font-size: 15px;
}
.review-item .reviewer-profile h5 {
font-size: 14px;
margin: 0;
}
.review-item .reviewer-profile p {
font-size: 11px;
color: gray;
font-weight: 300;
}
.review-item .review-text {
font-size: 11px;
text-align: justify;
}
.review-item .rating {
margin: 7px 0;
}
.no-item-wrap p {
color: #00000094;
text-align: center;
font-size: 16px;
word-break: break-word;
}
/* -------------------------Job Seeker Profile Page CSS End--------------------- */
/* -------------------------All Job Page CSS Start--------------------- */
.all-job-area {
background-color: #fafcff;
}
.all-search-bar-area {
padding: 30px 0;
}
.filter-header-area {
width: 100%;
display: flex;
overflow: hidden;
}
.search-bar-all {
background: white;
border: 1px solid #dbdbdb;
box-shadow: 1px 1px 0px 2px var(--bgColor3);
overflow: hidden;
border-radius: 5px;
border-right: 0;
}
.search-by input,
.search-by select {
width: 100%;
height: 100%;
position: relative;
padding: 17px 0;
padding-left: 50px;
font-size: 16px;
color: #838995;
border: none;
border-right: 1px solid #dadada;
}
.search-by span {
position: absolute;
left: 15px;
top: 50%;
margin-top: -14px;
color: #16395f;
}
.search-by {
display: inline-block;
position: relative;
width: 100%;
}
.search-by input:focus-visible {
outline: none;
}
.search-by.search-btn input {
padding: 18px;
background: #16395f;
color: white;
margin-left: 0px;
}
.grid-header {
background: #358fb21c;
}
.filter-area {
width: 300px;
background-color: #e5f8ff;
height: 100%;
}
.content-area {
width: 1060px;
}
.filter-header.dark {
border-bottom: 1px solid #16395f1c;
}
.filter-header {
padding: 15px;
display: flex;
align-items: center;
}
.filter-header span svg {
width: 15px;
height: 15px;
}
.filter-header span {
padding-right: 15px;
}
.filter-header span.filter-header-text {
font-size: 16px;
}
.filter-header.right span {
padding: 0;
padding-left: 20px;
}
.all-filtered-job {
padding: 25px;
}
.all-filter {
padding: 15px 25px;
}
.filter-by p {
margin-bottom: 5px;
}
.filter-by label {
font-size: 14px;
padding-left: 5px;
}
.filter-by {
margin-bottom: 15px;
}
.job-alert-service {
padding: 10px 25px;
}
.job-alert-service h5 {
font-size: 18px;
color: #2b313f;
}
.job-alert-service p {
font-size: 14px;
margin-bottom: 10px;
}
.job-alert-service input {
border: none;
border-radius: 5px;
padding: 9px 15px;
margin-bottom: 10px;
font-size: 14px;
width: 100%;
}
.job-alert-service input[type='email'] {
outline: none;
}
.job-alert-service input[type='submit'] {
background: #16395f;
color: white;
}
/* -------------------------All Job Page CSS End--------------------- */
/* -------------------------Recruiter Dashboard CSS Start--------------------- */
.dashboard-header {
background: #c2dce5;
padding: 7px 0;
}
.header-icon {
margin-left: 15px;
display: flex;
justify-content: right;
align-items: center;
}
.header-icon .dropdown-toggle::after,
.applicant-action .dropdown-toggle::after {
border: none;
}
.header-icon .dropdown-menu.show a,
.applicant-action .dropdown-menu.show button {
display: block;
padding: 8px 15px;
background: transparent;
transition: 0.3s;
transition-timing-function: ease-in-out;
border-bottom: 0.3px solid #16395f17;
}
.header-icon .dropdown-menu.show {
margin-top: 8px;
}
.header-icon .dropdown-menu.show a:hover {
background: #16395f;
color: white;
}
.header-icon .dropdown-menu.show a:last-child {
border: none;
}
.header-icon img {
width: 30px;
height: 30px;
border: 1px solid lightgrey;
background-color: #fafafa;
border-radius: 50%;
overflow: hidden;
margin-left: 20px;
object-fit: cover;
}
.header-icon span svg {
width: 18px;
height: 18px;
margin-top: 2px;
color: var(--bgColor);
}
.header-icon span svg:hover {
color: #16395f;
}
.dashboard-all {
height: calc(100vh - 70px);
display: flex;
flex-wrap: wrap;
background: #e7eff1;
}
.dashboard-all .left {
height: calc(100vh - 70px);
width: 280px;
transition: 0.3s;
}
.dashboard-all .mid,
.dashboard-all .full {
background-color: #fafafa;
width: calc(100% - 280px);
height: calc(100vh - 70px);
overflow-y: scroll;
position: absolute;
left: 280px;
}
.dashboard-all .right {
height: calc(100vh - 70px);
width: 242px;
display: none;
}
.dashboard-sidebar .user {
padding: 20px;
text-align: center;
border-bottom: 1px solid #8888;
}
.dashboard-toggle {
position: absolute;
right: 15px;
top: 10px;
cursor: pointer;
}
.dashboard-sidebar {
position: relative;
}
.dashboard-toggle svg {
font-size: 22px;
}
.dashboard-sidebar .user-photo {
width: 90px;
height: 90px;
margin: auto;
border: 1px solid lightgrey;
border-radius: 100%;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
transition: 0.3s;
}
.dashboard-main {
background: #fafafa;
padding: 15px 15px 20px 20px;
}
.user-info h5 {
font-size: 20px;
margin: 0;
}
.user-info {
margin-top: 10px;
}
.user-info p {
font-size: 14px;
color: gray;
}
.dashboard-navigation nav ul li a {
padding: 6px 25px;
transition: 0.3s;
font-size: 17px;
display: flex;
align-items: center;
justify-content: space-between;
}
.dashboard-navigation nav ul li a span {
padding-right: 15px;
}
.dashboard-navigation nav ul li a:hover {
background: #dbe6eb;
color: #358fb2;
}
.dashboard-navigation nav ul li a.active {
background: #c2dce5;
color: #16395f;
font-weight: 500;
}
.dashboard-navigation nav ul li {
position: relative;
}
.dashboard-navigation nav ul li .sub-menu {
background: #e1ecf1;
display: none;
transition: all 0.3s ease;
}
.dashboard-navigation nav ul li.showMenu .sub-menu {
display: block;
}
.dashboard-navigation nav ul li .sub-menu li a {
background: transparent;
display: flex;
justify-content: flex-start;
padding: 6px 50px;
font-size: 16px;
}
.dashboard-navigation nav ul li .sub-menu li a.active {
background: #c2dce585;
}
.dashboard-navigation nav ul li .sub-menu li:hover a {
background: #c2dce585;
}
.dashboard-navigation nav ul li .dropdown-icon {
transition: all 0.3s ease;
padding: 0;
}
.dashboard-navigation nav ul li.showMenu .dropdown-icon {
transform: rotate(180deg);
}
/* Toggle Dashboard */
.dashboard-all .left.active {
width: 80px;
}
.dashboard-all .mid.active,
.dashboard-all .full.active {
left: 80px;
width: calc(100% - 80px);
}
.dashboard-all .left.active .user-photo {
width: 50px;
height: 50px;
margin-top: 35px;
}
.dashboard-all .left.active .user-info {
display: none;
}
.left.active .dashboard-navigation nav ul li a div {
display: flex;
}
.left.active .dashboard-navigation nav ul li a span {
padding-right: 100px;
font-size: 20px;
}
.left.active .dashboard-toggle {
right: 27px;
}
/* Toggle Dashboard */
h3.dashboard-title {
font-size: 24px;
font-weight: 400;
margin-bottom: 15px;
}
.overview-item {
background: #f9dda9;
padding: 14px 20px;
border-radius: 8px;
position: relative;
}
.overview-item .count {
color: #ffbc3a;
font-weight: 700;
}
.overview-item h5 {
font-size: 16px;
font-weight: 600;
margin-top: 5px;
margin-bottom: 0;
}
.overview-item .overview-icon {
position: absolute;
top: 10px;
right: 10px;
}
span.overview-icon svg {
width: 40px;
height: 40px;
opacity: 20%;
}
.overview-item.two {
background: #b0d7ea;
}
.overview-item.two .count {
color: #358fb2;
}
.overview-item.three {
background: #dbfbcc;
}
.overview-item.three .count {
color: #96bea4;
}
.overview-item.four {
background: #f6a3b4;
}
.overview-item.four .count {
color: #ee4d6e;
}
.dashboard-right-bar {
padding: 15px 20px;
}
h3.right-bar-title {
font-size: 16px;
font-weight: 400;
margin-bottom: 15px;
}
.dashboard-right-content {
margin-bottom: 30px;
}
.dashboard-right-item {
background: #b0d7ea;
width: 100%;
height: 150px;
border-radius: 8px;
}
.activity-item {
background: #e7eff1;
border-radius: 5px;
}
.activity-title {
text-align: center;
padding: 8px 0;
border-bottom: 1px solid #cfcfcf;
}
.activity-wrapper {
padding: 15px 20px;
}
.recent-activity {
margin-bottom: 15px;
}
.recent-activity-icon {
display: inherit;
}
.recent-activity-icon span {
width: 40px;
height: 40px;
background: #358fb2;
border-radius: 50%;
text-align: center;
line-height: 40px;
}
.recent-activity-title {
padding-left: 15px;
}
.recent-activity-icon svg {
width: 20px;
height: 20px;
}
.recent-activity-title h6 {
font-size: 14px;
margin: 0;
}
.recent-activity-title p {
font-size: 12px;
}
.recent-activity-icon span.done {
background: #96bea4;
}
.recent-activity-icon span.selected {
background: #ffbc3a;
}
.recent-activity-icon span.reviewed {
background: #df865e;
}
.activity-calender span {
width: 40px;
height: 40px;
background: #dddd;
display: inline-block;
text-align: center;
line-height: 40px;
margin-bottom: 9px;
margin-right: 9px;
border-radius: 100%;
}
.activity-calender span a {
font-size: 16px;
}
.activity-calender {
display: inline-block;
}
.activity-calender span.applied {
background: #b0d7ea;
}
.activity-calender span.select {
background: #ffbc3a;
}
.activity-calender span.done {
background: #96bea4;
}
.edit-profile-area,
.post-job-area,
.manage-job-area {
position: relative;
background: #f9f9f9;
border-radius: 5px;
border: 1px solid #8888884a;
}
.profile-area {
height: 100%;
}
.edit-profile-area form {
overflow: hidden;
}
.content {
padding: 20px;
}
.edit-title {
position: relative;
font-size: 20px;
margin-bottom: 20px;
display: inline-block;
}
.edit-title::before {
content: '';
position: absolute;
width: 100%;
height: 2px;
top: 15px;
left: 110%;
background: #a3b3b787;
}
.edit-basic-information {
margin-bottom: 30px;
}
.edit-organization-information {
margin-bottom: 30px;
}
.edit-profile-area .form-field,
.post-job-area .form-field {
margin-bottom: 15px;
}
.post-job-area .job-success {
margin-left: 20px;
margin-right: 20px;
}
.post-job-area .job-success .btn_group {
position: inherit;
display: flex;
gap: 10px;
margin-bottom: 20px;
}
.profile-img-edit {
width: 90px;
height: 90px;
margin: auto;
border: 1px solid lightgrey;
border-radius: 50%;
position: relative;
background-size: cover;
margin-top: 10px;
}
.edit-profile-picture input {
border: none;
position: absolute;
left: 0;
bottom: -10px;
border-radius: 0;
}
.edit-profile-picture input::-webkit-file-upload-button {
visibility: hidden;
}
.edit-profile-picture input::before {
position: absolute;
content: '';
background: #e7eff1;
width: 100px;
height: 80px;
text-align: center;
left: -6px;
top: 0;
opacity: 0.5;
display: inline-block;
color: #214367;
line-height: 33px;
}
.edit-profile-picture input::after {
position: absolute;
content: url(https://api.iconify.design/ant-design/camera-filled.svg?width=25);
left: 50%;
top: 5px;
opacity: 1;
display: inline-block;
line-height: 40px;
margin-left: -13px;
}
.edit-profile-picture p {
font-size: 12px;
margin-top: 5px;
}
.save-all-change {
display: flex;
justify-content: space-between;
}
.save-all-change.around {
justify-content: space-around;
}
.save-all-change .action {
width: 250px;
}
.job-view-filter .form-field input,
.job-view-filter .form-field select {
background: #fbfdff;
border: 0.5px solid #adadad;
font-weight: 300;
}
.job-view-filter {
margin-bottom: 20px;
}
.manage-job-table {
overflow-x: scroll;
}
.manage-job-table table th {
background: #e7eff1;
padding: 8px 20px;
width: 100%;
}
.manage-job-table table tbody td {
padding: 5px 10px;
background-color: #80808021;
font-size: 14px;
color: #2b313f;
}
.manage-job-table table tbody tr {
border-bottom: 15px solid #f7f7f7;
border-top: 15px solid #f7f7f7;
}
.manage-job-table .job-title {
margin: 0;
}
.manage-job-table .job-title h5 {
font-size: 18px;
}
.manage-job-table .job-title p {
font-size: 12px;
}
.manage-job-table .job-title p span svg {
color: #737171;
font-size: 14px;
}
.manage-job-table td .job-status {
background: #a6e5bc;
color: white;
font-size: 13px;
padding: 2px 5px;
border-radius: 4px;
text-align: center;
}
.manage-job-table td .job-status.complete {
background: #96bea4;
}
.manage-job-table td .job-status.rejected {
background: #ee4d6e;
}
.manage-job-table td .job-status.pending {
background: #ffbc3a;
}
.manage-job-table th.title {
width: 60%;
}
.manage-job-table th.status {
width: 5%;
}
.manage-job-table th.date {
width: 18%;
}
.manage-job-table .btn {
padding: 5px 8px;
margin-right: 5px;
}
.manage-job-table .btn svg {
font-size: 18px;
color: black;
}
.manage-job-table .btn.view {
background: #96bea4;
}
.manage-job-table .btn.edit {
background: #ffbc3a;
}
.manage-job-table .btn.delete {
background: #ee4d6e;
}
.ongoing-job-area {
background: #fbfbfb;
padding: 20px;
border-radius: 7px;
border: 1px solid #8888884d;
}
.ongoing-job-item {
background: #d4ecdb;
border-radius: 7px;
border: 0.5px solid #22533033;
align-items: center;
padding: 25px 0;
margin-bottom: 15px;
}
.ongoing-job-header {
display: flex;
justify-content: space-between;
padding: 15px;
}
.ongoing-job-header h5 {
font-size: 18px;
font-weight: 400;
}
.ongoing-job-header p {
color: #737171;
font-size: 14px;
display: flex;
gap: 20px;
}
.ongoing-job-cards .ongoing-card {
width: 40px;
height: 40px;
background: white;
border-radius: 50%;
}
.ongoing-job-cards {
display: flex;
justify-content: space-around;
position: relative;
z-index: 4;
}
.ongoing-card p {
margin-top: 45px;
margin-left: 3px;
font-size: 12px;
color: #666666;
}
.ongoing-job-progress {
width: 80%;
height: 4px;
background: white;
position: absolute;
margin: auto;
margin-top: -20px;
left: 10%;
z-index: 1;
}
.ongoing-job-content {
position: relative;
}
.ongoing-job-progress .bar {
background: #4c9566;
height: 4px;
width: 20%;
z-index: 2;
}
.ongoing-job-content {
position: relative;
}
.ongoing-job-footer {
margin-top: 25px;
display: flex;
justify-content: space-between;
padding: 0 15px;
}
.ongoing-card.active {
background: #4c9566;
}
.event-wrapper {
background: #add1dd61;
border-radius: 10px;
padding: 10px 14px;
}
.event-title {
background: rgba(255, 255, 255, 0.5);
border-radius: 5px;
padding: 5px;
font-size: 14px;
color: #888;
}
.event-item {
display: flex;
align-items: self-start;
margin-bottom: 15px;
}
.event-icon-wrap {
background: white;
width: 30px;
height: 30px;
text-align: center;
border-radius: 100%;
font-size: 14px;
line-height: 30px;
}
.event-icon {
margin-right: 5px;
}
.event-title span {
color: black;
}
.ongoing-job-details-information {
display: flex;
width: 100%;
}
.ongoing-job-details-information .information-cell {
padding: 10px;
border: 1px solid #4c9566;
width: 100%;
text-align: center;
}
.information-cell .title {
font-size: 12px;
color: #626262;
}
.information-cell .title-data {
color: black;
font-size: 16px;
font-weight: 500;
}
.information-cell .seeker-profile-bg {
display: flex;
justify-content: center;
gap: 10px;
}
.seeker-profile div {
text-align: left;
}
.seeker-profile div .title-data {
margin-bottom: 0;
}
.information-cell .seeker-profile-bg img {
width: 40px;
height: 40px;
object-fit: cover;
border-radius: 50%;
}
.job-tracker-progress-wrapper {
background: #bedac8;
padding: 20px 0;
width: 100%;
padding-bottom: 40px;
}
.review-remove-link .btn-group .btn {
font-size: 12px;
background: #358fb2;
border: none;
color: white;
border-radius: 7px !important;
padding: 7px 8px;
font-weight: 300;
}
.review-remove-link .btn-group {
display: flex;
gap: 20px;
}
.review-remove-link .btn-group .btn.remove {
background: #ffbc3a;
}
.ongoing-job-update-tracker {
display: flex;
align-items: center;
gap: 20px;
font-size: 14px;
}
.ongoing-job-update-tracker .btn {
font-size: 12px;
border-radius: 5px;
padding: 7px 17px;
background: #4c9566;
border: none;
}
.ongoing-job-update-tracker select {
border-radius: 5px;
padding: 5px 10px;
border: 1px solid #dbdbdb;
}
.ongoing-job-progress .bar.mobile-view {
display: none;
}
/* -------------------------Recruiter Dashboard CSS End--------------------- */
/* -------------------------Location Page CSS Start--------------------- */
.location-page {
margin-top: 70px;
height: 100vh;
display: flex;
}
.location-page .side-bar {
width: 400px;
background: #fff;
padding: 10px;
}
.location-page .window {
width: 100%;
background: whitesmoke;
padding: 10px;
}
/* -------------------------Location Page CSS End--------------------- */
/* -------------------------PopUp Chat CSS Start--------------------- */
.popup-chat {
width: 45px;
height: 45px;
border: none;
padding: 0;
border-radius: 50%;
background: var(--bgColor5);
position: fixed;
bottom: 10px;
left: 10px;
}
.popup-chat svg {
color: whitesmoke;
font-size: 28px;
margin: 9px;
}
/* -------------------------PopUp Chat CSS End--------------------- */
/* -------------------------Recruiter Posted JOb Page CSS Start--------------------- */
.see-posted-job-area {
background: #fbfbfb;
border-radius: 10px;
overflow: hidden;
border: 0.3px solid #c6e1cda6;
}
.see-posted-job-header {
background: #e9fbee;
border-radius: 10px 10px 0px 0px;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 0.3px solid #c6e1cda6;
}
.see-posted-job-header .job-header-content span {
font-size: 12px;
line-height: 12px;
}
.see-posted-job-header .job-header-content h4 {
font-size: 16px;
line-height: 16px;
font-weight: 500;
}
.see-posted-job-header .job-header-content {
padding: 10px 15px;
}
.see-posted-job-header .job-header-content.applicant {
background: #96bea440;
border-radius: 10px 10px 0px 0px;
padding-right: 50px;
}
.see-posted-job-header .job-header-right {
display: flex;
align-items: center;
background: rgba(150, 190, 164, 0.25);
border-radius: 10px 10px 0px 0px;
}
.see-posted-job-header .job-header-content.status {
padding-right: 40px;
}
.job-header-content.action .btn {
border: none;
background: #ffbc3a;
padding: 5px 5px;
font-size: 0px;
}
.job-header-content.action svg {
width: 13px;
height: 13px;
color: var(--bgColor4);
cursor: pointer;
}
.job-header-content.action .btn.delete {
background: #ee4d6e;
}
.see-posted-job-footer,
.avaiable-jobseeker-footer {
background: #e9fbee;
border-radius: 0px 0px 10px 10px;
/* padding: 5px 0; */
border-top: 0.3px solid #c6e1cda6;
}
.see-posted-job-footer .pagination-wrapper,
.avaiable-jobseeker-footer .pagination-wrapper {
background: transparent;
}
.see-posted-job-footer .pagination-wrapper a,
.avaiable-jobseeker-footer .pagination-wrapper a {
font-size: 14px;
}
.see-posted-job-content {
padding: 15px 20px 0px 20px;
}
.applicant-information-filter {
display: flex;
justify-content: space-between;
align-items: center;
}
.show-all-applicant {
display: flex;
align-items: center;
}
.applicant-filter {
display: flex;
align-items: center;
}
.applicant-information-filter {
background: #e9f2fb;
padding: 10px 20px;
font-size: 14px;
color: #434343;
}
.show-all-applicant .btn {
font-size: 14px;
margin-right: 15px;
}
.applicant-information-filter .display-page svg {
margin-right: 10px;
}
.applicant-information-table {
width: 100%;
}
.applicant-information-filter .display-page span {
font-size: 24px;
margin-right: 5px;
}
.applicant-information-filter .display-page {
display: flex;
align-items: center;
}
.applicant-filter .filter-meta {
display: flex;
align-items: center;
font-size: 22px;
}
.applicant-filter .filter-meta span.filter-header-text {
font-size: 14px;
margin-left: 5px;
margin-right: 15px;
}
.applicant-information-table th {
background: #b8e2f1;
padding: 10px 15px;
font-size: 12px;
font-weight: 500;
text-align: center;
}
.applicant-information-table th.name {
width: 20%;
}
.applicant-information-table td.img img {
width: 40px;
height: 40px;
background: #b8e2f1;
margin: auto;
border-radius: 50%;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.applicant-information-table td {
font-size: 14px;
text-align: center;
padding: 0 5px;
}
.applicant-information-table td.message {
font-size: 13px;
text-align: justify;
}
.applicant-information-table th.status {
width: 16%;
}
.applicant-information-table td .status {
color: white;
background: #358fb2;
border-radius: 5px;
padding: 3px 8px;
}
.applicant-information-table td.name {
font-weight: 500;
}
.applicant-information-table .data-row {
border-top: 10px solid #fbfbfb;
border-bottom: 10px solid #fbfbfb;
position: relative;
}
.applicant-information-table .data-row::after {
position: absolute;
content: '';
background: #dae1e9;
width: 100%;
height: 1px;
left: 0;
bottom: -30%;
}
.applicant-information-table .data-row:last-child::after {
height: 0;
}
.applicant-information-table td .status.rejected {
color: white;
background: #ee4d6e;
}
.applicant-information-table td .status.short {
color: black;
background: #ffbc3a;
}
.applicant-information-table td .status.hired {
color: black;
background: #96bea4;
}
.applicant-action .dropdown-menu.show button {
font-size: 12px;
text-align: center;
border: none;
margin: auto;
display: block;
width: 100%;
}
.action-status.dropdown-menu.show button.hire:hover {
background: #c6e1cd;
color: black;
}
.action-status.dropdown-menu.show button.reject:hover {
background: #ee4d6e;
color: white;
}
.action-status.dropdown-menu.show button.shortlist:hover {
background: #ffbc3a;
color: black;
}
/* -------------------------Recruiter Posted JOb Page CSS End--------------------- */
/* -------------------------Location Job Page CSS Start--------------------- */
.btn.apply-filter {
width: 100%;
background: #16395f;
font-weight: 500;
}
.job-map-sidebar {
background: #f8f8f8;
height: 100%;
}
.location-search {
padding: 0px 25px;
padding-top: 15px;
}
.location-search h5 {
font-size: 18px;
margin-bottom: 15px;
}
.location-search .form-field label {
font-weight: 400;
font-size: 14px;
margin-bottom: 5px;
}
.job-map-area .map {
background: #358fb2a6;
height: 710px;
border-radius: 10px;
}
.job-map-area {
padding: 15px 0px;
}
.selected-location-based-job {
padding: 0px 15px;
margin: 15px 0;
}
/* -------------------------Location JOb Page CSS End--------------------- */
/* -------------------------Avaiabel Job Seeker Page CSS Start--------------------- */
.avaiable-jobseeker-title h3,
.sidebar-title h3 {
font-size: 18px;
font-weight: 400;
margin-bottom: 15px;
}
.sidebar-content {
background: #edf1f5;
height: 96%;
width: 100%;
display: block;
border-radius: 10px;
}
.all-sidebar {
height: 100%;
}
.avaiable-jobseeker-wrapper {
background: #fbfbfb;
border-radius: 10px;
border: 0.3px solid #c6e1cda6;
}
.avaiable-jobseeker-header {
background: #d4ecdb;
padding: 10px 20px;
border-radius: 10px 10px 0px 0px;
display: flex;
align-items: center;
}
.avaiable-jobseeker-header p {
font-size: 14px;
font-weight: 500;
}
.avaiable-jobseeker-header p span {
font-size: 16px;
margin-right: 5px;
}
.avaiable-jobseeker-filter {
display: flex;
justify-content: space-between;
background: #e9f2fb;
padding: 10px 20px;
align-items: center;
}
.avaiable-jobseeker-filter .show-all-applicant {
font-size: 14px;
}
.avaiable-jobseeker-filter .show-all-applicant span {
font-size: 22px;
margin-right: 10px;
}
.avaiable-jobseeker-filter .show-all-applicant p,
.avaiable-jobseeker-filter .show-all-applicant .display-page {
display: flex;
align-items: center;
}
.avaiable-jobseeker-filter .show-all-applicant p {
margin-right: 20px;
}
.avaiable-jobseeker-filter .form-field select {
margin: 0;
}
.avaiable-jobseeker-cards-warapper {
padding: 10px 25px;
}
.avaible-jobseeker-card {
border: 1px solid #96bea4;
border-radius: 10px;
overflow: hidden;
background: white;
box-shadow: 1px 1px 0px 1px #96bea4;
margin: 10px 0;
}
.avaiable-jobseeker-card-footer {
background: #d4ecdb;
display: flex;
align-items: center;
justify-content: space-between;
border-top: 1px solid #96bea4;
padding: 10px 10px;
}
.avaiable-jobseeker-rating .rating svg {
color: #4c9566;
font-size: 16px;
}
.avaiable-jobseeker-rating span {
font-size: 15px;
margin-left: 10px;
margin-top: 8px;
}
.avaiable-jobseeker-rating {
display: flex;
align-items: center;
}
.btn.jobseeker-profile {
background: #96bea4;
color: #2f4e39;
padding: 3px 10px;
font-size: 14px;
border: 0.5px solid #65a97d;
line-height: 28px;
}
.avaiable-jobseeker-dp {
width: 60px;
height: 60px;
background: #d4ecdb;
border: 1px solid #d4ecdb;
border-radius: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.avaiable-jobseeker-profile {
display: flex;
align-items: center;
justify-content: space-around;
}
.about-avaiable-jobseeker {
font-size: 12px;
}
.avaiable-jobseeker-card-content {
padding: 10px 15px;
}
.avaiable-jobseeker-info .name {
font-size: 18px;
}
.avaiable-jobseeker-info .designation {
font-size: 12px;
margin: 3px 0;
margin-bottom: 0px;
}
.avaiable-jobseeker-info .avaiabele-status {
font-size: 12px;
background: #5ed788;
color: white;
padding: 3px 11px;
border-radius: 5px;
display: inline-block;
margin: 0;
margin-bottom: 10px;
}
/* -------------------------Avaiabel Job Seeker Page CSS End--------------------- */
.short_alert {
max-width: 300px;
height: 80px;
display: flex;
align-items: center;
background-color: whitesmoke;
border: 1px solid var(--bgColor5);
border-right: none;
position: fixed;
bottom: 90px;
right: -300px;
animation: 2s ease alternate 2 both;
animation-name: alert;
}
.short_color {
width: 15px;
height: 100%;
}
.short_txt {
padding: 10px;
}
@keyframes alert {
0% {
right: -300px;
}
80% {
right: 0px;
}
100% {
right: 0px;
}
}
/* -------------------------Simplle Loader Start--------------------- */
.spinner {
display: flex;
align-items: center;
justify-content: space-around;
width: 100%;
}
.spinner object {
opacity: 0.5;
width: 100px;
animation: opac 3s infinite;
}
/* -------------------------Simplle Loader End--------------------- */
.activation_box {
width: 600px;
height: 400px;
background: #ffffff;
border: 1px solid #96bea4;
box-shadow: 1px 1px 0px 1px #96bea4;
border-radius: 10px;
}
/* ------------------------- Modal Start--------------------- */
.modal-overlay {
position: fixed;
width: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 100;
}
.modal-container {
max-width: 600px;
width: 100%;
position: fixed;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
border: 1px solid #96bea4;
border-radius: 10px;
overflow: hidden;
box-shadow: 1px 1px 0px 1px #96bea4;
}
.modal-header {
font-size: 14px;
font-weight: 500;
background: #d4ecdb;
padding: 10px 15px;
display: flex;
}
.modal-header .info-text {
display: inline-block;
margin-left: 7px;
}
.modal-header .close-area {
border: none;
border-radius: 5px;
background-color: transparent;
}
.modal-header .close-area:hover {
border: none;
background-color: #6d927a;
}
.modal-header svg {
color: #96bea4;
width: 18px;
height: 18px;
}
.modal-sub-header {
font-size: 12px;
color: #96bea4;
background: #e9f2fb;
padding: 5px 20px;
}
.modal-body {
font-size: 18px;
padding: 15px 30px;
background-color: #fbfbfb;
}
.modal_footer {
display: flex;
justify-content: space-between;
padding: 7px;
background: #e9fbee;
border-top: 1px solid #96bea4;
}
.modal_footer .info-area {
font-size: 12px;
padding: 10px 0;
color: #96bea490;
}
.modal_footer .buttons .btn {
margin-left: 5px;
padding: 8px 20px;
}
/* ------------------------- Modal End--------------------- */
/* ---> animations <--- */
@keyframes opac {
0%,
50%,
100% {
opacity: 0.4;
}
25%,
75% {
opacity: 0.6;
}
}
/* -------------------------Dashboard Messenger menu CSS --------------------- */
.msging-area {
border: 0.3px solid #8888884f;
border-radius: 10px;
height: 100%;
overflow: hidden;
}
.msg-left-bar {
background: #dcebf0;
height: 100%;
}
.contact-search-bar {
padding: 20px 15px;
padding-top: 25px;
}
.contact-search-bar .form-field {
position: relative;
}
.contact-search-bar .form-field .icon {
position: absolute;
top: 0;
left: 8px;
margin-top: 5px;
border-radius: 5px;
}
.contact-search-bar .form-field .icon svg {
color: #c4c4c4;
width: 22px;
height: 22px;
}
.contact-search-bar .form-field input {
padding-left: 35px;
border-color: #95d7edf7;
font-size: 14px;
margin: 0;
}
.single-contact-item .contact-pic {
width: 40px;
height: 40px;
border-radius: 50%;
background-size: cover;
background-position: center;
margin: 0 10px;
background-repeat: no-repeat;
}
.single-contact-item {
display: flex;
align-items: center;
justify-content: start;
padding: 10px 0;
background: transparent;
cursor: pointer;
transition: 0.3s;
transition-timing-function: ease-in-out;
}
.single-contact-item .contact-info h6 {
margin: 0;
font-size: 16px;
line-height: 18px;
}
.single-contact-item .contact-info p {
font-size: 12px;
}
.contact-info.unread h6,
.contact-info.unread p {
font-weight: 600;
}
.single-contact-item:hover,
.single-contact-item.active {
background: #b3dae7;
}
.contact-list {
overflow-y: auto;
height: 300px;
}
.conversation-contact-list.scroll {
padding-bottom: 60px;
height: 100%;
}
.contact-list::-webkit-scrollbar {
width: 7px;
}
.contact-list::-webkit-scrollbar-track {
background: #ececec;
}
.contact-list::-webkit-scrollbar-thumb {
background-color: #a7a7a7;
border-radius: 10px;
}
.contact-list::-webkit-scrollbar-thumb:hover {
background: #505050;
}
.msg-top-bar {
background: #dcebf0;
padding: 10px 20px;
box-shadow: 2px 3px 16px 5px #b3dae7;
}
.msg-top-bar h5 {
font-size: 19px;
line-height: 24px;
margin: 0;
}
.msg-top-bar p {
font-size: 14px;
}
.conversation-text-area {
background: #fbfbfb;
}
.conversation-text .text {
background: rgb(179 218 231);
display: inline-block;
padding: 15px;
border-radius: 10px;
width: 70%;
text-align: right;
word-break: break-all;
}
.conversation-text .text .msg {
font-size: 13px;
line-height: 20px;
font-weight: 300;
color: black;
}
.conversation-text {
margin-bottom: 10px;
text-align: right;
}
.conversation-text .text .time {
font-size: 12px;
margin-top: 10px;
color: #8b8b8b;
}
.conversation-text.sender {
text-align: left;
}
.conversation-text.sender .text {
background: rgb(220 235 240);
text-align: left;
}
.conversation-text-list {
height: 350px;
overflow-y: auto;
padding: 10px;
}
.conversation-text-list::-webkit-scrollbar {
width: 7px;
}
.conversation-text-list::-webkit-scrollbar-track {
background: #ececec;
}
.conversation-text-list::-webkit-scrollbar-thumb {
background-color: #a7a7a7;
border-radius: 10px;
}
.conversation-text-list::-webkit-scrollbar-thumb:hover {
background: #505050;
}
.msg-sending-area .file-field,
.msg-sending-area .emoji-field {
position: relative;
width: 30px;
height: 30px;
background: rgb(113 203 233);
overflow: hidden;
display: inline-block;
cursor: pointer;
border-radius: 5px;
margin: 0 7px;
}
.msg-sending-area .file-field input {
position: absolute;
left: 0;
top: 0;
opacity: 0;
width: 100%;
height: 100%;
z-index: 999;
}
.msg-sending-area .file-field::after {
position: absolute;
content: url('https://api.iconify.design/akar-icons/attach.svg');
top: 0;
width: 100%;
text-align: center;
line-height: 34px;
}
.msg-sending-area .emoji-field {
text-align: center;
line-height: 30px;
}
.msg-sending-area {
display: flex;
justify-content: space-evenly;
align-items: center;
background: #dcebf0;
padding: 10px 0;
box-shadow: inset 2px 3px 20px 0px #b3dae7;
}
.msg-sending-area .msg-field {
width: 70%;
position: relative;
}
.msg-sending-area .msg-field input[type='text'] {
margin: 0;
padding: 10px 15px;
padding-right: 30px;
border-color: #95d7edf7;
}
.msg-sending-area .msg-field button {
position: absolute;
right: 2px;
top: 50%;
border: none;
background: transparent;
color: #aaaaaa;
margin-top: -16px;
font-size: 20px;
}
.msg-sending-area .files-area {
display: flex;
align-items: center;
}
.msg-right-bar {
background: #dcebf0;
height: 100%;
box-shadow: 2px 3px 16px 5px #b3dae7;
}
.contact-information .contact-profile {
width: 80px;
height: 80px;
border-radius: 50%;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
margin: auto;
}
.msg-right-bar .contact-information {
display: flex;
justify-content: center;
height: 230px;
align-items: center;
border-bottom: 0.3px solid #8888;
}
.contact-information .information-text h4,
.contact-information .information-text p {
text-align: center;
margin: 0;
}
.contact-information .information-text h4 {
font-size: 18px;
margin-top: 15px;
}
.contact-information .information-text .designation {
font-size: 14px;
font-weight: 300;
margin: 2px 0;
}
.contact-information .information-text .company {
font-size: 12px;
font-weight: 600;
}
/* -------------------------Dashboard Messenger CSS End--------------------- */
/* -------------------------Skeleton CSS Start--------------------- */
.blog-item.sk,
.blog-slider-sk,
.small-job-card.sk,
.single-blog-content-wrapper.sk,
.profile-view-bar.sk,
.profile-view-information.sk {
animation: skeleton 1.5s linear infinite alternate;
}
.blog-author-time.sk,
.author-time.sk {
background: #e1e1e1;
padding: 12px 0;
border-radius: 5px;
}
.blog-title-sk,
.blog-title.sk {
background: #f2f2f2;
padding: 20px 0;
border-radius: 9px;
}
.blog-description-sk,
.blog-description.sk {
background: lightgrey;
padding: 10px 0;
border-radius: 5px;
margin: 10px 0;
}
.recruiter-logo-sk {
background: #d3d3d3a6;
width: 100%;
padding: 20px 20px;
border-radius: 5px;
}
.job-title.sk {
background: #d3d3d3c7;
padding: 12px;
width: 100%;
border-radius: 5px;
}
.small-job-bottom.sk {
background: lightgray;
padding: 8px;
border-radius: 5px;
}
.avaiable-jobseeker-info .name.sk {
width: 90%;
background: lightgray;
padding: 12px 0;
display: inline-block;
border-radius: 5px;
}
.sk .avaiable-jobseeker-info {
width: 60%;
}
.avaiable-jobseeker-info .designation.sk {
background: lightgray;
padding: 8px;
border-radius: 4px;
width: 60%;
}
.avaiable-jobseeker-info .avaiabele-status.sk {
background: lightgray;
padding: 12px 0;
width: 72%;
margin-top: 7px;
}
.about-avaiable-jobseeker.sk {
padding: 5px 0;
background: lightgray;
border-radius: 5px;
}
.avaible-jobseeker-card.sk {
border-color: #808080a8;
box-shadow: 1px 1px 0px 1px lightgray;
animation: skeleton 1.5s linear infinite alternate;
}
.btn.jobseeker-profile.sk {
background: lightgray;
padding: 15px 0;
width: 43%;
border: none;
border-radius: 15px;
box-shadow: none;
}
.avaiable-jobseeker-card-footer.sk {
background: #d3d3d35e;
}
.sk .avaiable-jobseeker-rating .rating svg {
color: #80808099;
}
.avaiable-jobseeker-dp.sk {
background: lightgray;
}
.blog-title.sk {
background: lightgray;
}
.blog-sub-title.sk {
background: lightgray;
padding: 10px 0;
border-radius: 5px;
margin: 8px 0;
}
.published-time-sk {
background: lightgray;
padding: 8px 0;
border-radius: 5px;
margin: 5px 0;
width: 30%;
}
.profile-name-title.sk .name {
background: lightgray;
padding: 15px 0;
border-radius: 5px;
width: 70%;
margin: auto;
margin-top: 15px;
}
.profile-name-title.sk .name:nth-child(2) {
width: 45%;
}
.contact-details li.contact-info-sk {
display: flex;
gap: 25px;
}
.contact-details li.contact-info-sk span {
padding: 12px;
background: lightgrey;
border-radius: 5px;
}
.contact-details li.contact-info-sk .contact-info-li {
padding: 12px;
background: #d3d3d3e0;
width: 100%;
border-radius: 5px;
}
.important-links.sk .btn-main {
background: #d7d7d7;
padding: 20px;
border-radius: 30px;
width: 84%;
margin: auto;
margin-bottom: 10px;
}
.profile-category.sk,
.overall-rating.sk {
padding: 20px;
background: #e3e3e3;
border-radius: 15px;
width: 70%;
}
.overall-rating.sk {
margin-left: auto;
}
.profile-view-information .profile-title.sk {
padding: 14px;
background: #d3d3d39c;
border-radius: 15px;
width: 50%;
}
.bio-title.sk {
background: #e3e3e3;
padding: 10px;
border-radius: 10px;
width: 30%;
}
.sk .bio-description {
border-radius: 10px;
background: #e3e3e3;
padding: 5px 0;
margin-top: 10px;
}
.skills-tag.sk .skills.sk {
padding: 0px 40px;
}
.previous-work.sk {
padding: 20px 0;
background: #e0e0e0;
border-radius: 5px;
margin-bottom: 10px;
}
.no-item {
display: flex;
justify-content: space-around;
}
.no-item .content {
color: #aaaaaa;
text-align: center;
border-radius: 10px;
background-color: #f8f8f8;
}
.no-item .content svg {
width: 5em;
height: 5em;
}
.no-item .content p {
padding: 0 1.5em;
} | src/style/index.css | .header-top-area {
background: #ffffff;
user-select: none;
padding: 15px 0px;
position: fixed;
width: 100%;
height: 70px;
top: 0;
z-index: 99;
}
.header-top-area.active {
background: #ffffff;
box-shadow: 0 2px rgb(238, 238, 238);
}
.header-top-area .logo {
display: flex;
gap: 8px;
margin-left: 50px;
}
.header-top-area .logo img {
-webkit-user-drag: none;
}
.header-top-area .logo object {
height: 30px;
}
.menu-area {
text-align: right;
display: flex;
align-items: center;
justify-content: right;
transition: all 0.3s ease-in-out;
}
.menu-area nav {
display: inline-block;
}
.menu-area nav ul {
display: flex;
}
.menu-area nav ul li {
padding: 0px 15px;
}
.menu-area nav ul li a {
font-size: var(--smallFont);
text-decoration: none;
font-weight: bold;
color: var(--bgColor);
}
.menu-area nav ul li a:hover {
color: #16395f;
}
.menu-area nav ul li .active {
color: #16395f;
}
.navigation {
position: relative;
display: flex;
align-items: center;
}
.navigation .menu-area {
margin-left: auto;
margin-right: 25px;
}
.menu-trigger {
border: none;
background: #16395f;
color: white;
width: 40px;
height: 40px;
padding: 5px;
line-height: 0px;
text-align: center;
transition: all 0.3s ease-in-out;
margin-left: auto;
margin-right: 25px;
border-radius: 50%;
display: none;
}
.menu-trigger svg {
width: 23px;
height: 23px;
}
a.btn.join-us {
margin-left: 30px;
}
.app {
margin-top: 70px;
}
/* ------------------------- Header Section CSS End --------------------- */
/* -------------------------Hero Section CSS Start --------------------- */
.hero-area {
margin-top: -70px;
background: url(../assets/svgs/hero-bg.svg);
background-repeat: no-repeat;
background-color: #c9f0f2;
height: 100vh;
background-position: bottom;
background-repeat: no-repeat;
position: relative;
background-size: cover;
background-attachment: fixed;
}
.hero-text h1 {
font-size: var(--largFont);
font-weight: bold;
color: var(--textColor);
}
.hero-text span {
background-color: var(--bgColor2);
}
.hero-text p {
margin-bottom: 30px;
margin-top: 20px;
}
.hero-search-bar {
position: relative;
margin-left: 0px;
}
.search-bar {
width: 100%;
display: inline-flex;
background-color: white;
padding: 10px;
border-radius: 7px;
border: 1px solid #adadad;
box-shadow: 0px 2px 0px 1px #00000052;
position: relative;
}
.search-bar svg {
font-size: 24px;
color: var(--bgColor4);
margin: auto 12px auto 5px;
cursor: pointer;
}
.search-bar input {
width: 100%;
margin-right: 10px;
outline: none;
border: none;
color: #62656b;
}
.search-bar button {
border-radius: 5px;
font-size: 15px;
width: 40%;
}
.hero-search-bar .auto-complete {
background-color: #fff;
width: 100%;
max-height: 185px; /**/
border-radius: 7px;
box-shadow: 0px 1px 5px 3px rgba(0, 0, 0, 0.12);
position: absolute;
top: 65px;
padding: 0px;
max-height: 280px;
overflow-y: auto;
opacity: 0;
pointer-events: none;
}
.hero-search-bar.active .auto-complete {
padding: 10px 10px;
opacity: 1;
pointer-events: auto;
}
.auto-complete li {
display: none;
list-style-type: none;
padding: 7px 12px;
width: 100%;
cursor: default;
border-radius: 5px;
}
.hero-search-bar.active .auto-complete li {
display: block;
}
.auto-complete li:hover {
background: whitesmoke;
}
/* work in progress*/
.hero-search-bar .tag {
width: 100%;
text-align: center;
}
.hero-search-bar .tag span a {
font-size: var(--smallFont);
color: #16395f;
text-transform: uppercase;
text-decoration: none;
font-weight: 500;
}
.hero-search-bar .tag span a:hover {
color: var(--bgColor);
}
.not-found-content {
margin: auto;
}
/* -------------------------Hero Section CSS End --------------------- */
/* -------------------------Most Recent Job Section CSS Start --------------------- */
.job-card {
background: #ffffff;
border: 1px solid var(--bgColor3);
box-shadow: 2px 3px 0px 2px var(--bgColor3);
border-radius: 10px;
padding: 20px;
margin-bottom: 30px;
height: 230px;
}
.job-card-sk {
animation: skeleton 1.5s linear infinite alternate;
}
@keyframes skeleton {
0% {
opacity: 0.7;
}
50% {
opacity: 0.4;
}
100% {
opacity: 0.95;
}
}
.job-card:hover {
background: #fafafa;
}
.about-recruiter a .recruiter-logo {
width: 50px;
height: 50px;
border: 1px solid whitesmoke;
border-radius: 5px;
}
.about-recruiter .logo-sk {
width: 50px;
height: 50px;
background-color: lightgrey;
border-radius: 5px;
border: 1px solid whitesmoke;
}
.recruiter-title {
font-size: 14px;
margin-left: 20px;
font-weight: 500;
margin-bottom: 0;
word-break: break-word;
}
.recruiter-title a {
font-size: 16px;
}
.recruiter-title-sk {
width: 145px;
height: 20px;
background-color: lightgrey;
border-radius: 5px;
margin-left: 25px;
margin-bottom: 0;
}
.post_time {
font-weight: 300;
}
.job-title {
font-size: var(--normalFont);
margin: 10px 0px;
}
.job-title-sk {
width: 100%;
height: 30px;
background-color: lightgrey;
border-radius: 5px;
margin: 10px 0px;
}
.job-status {
width: 100%;
display: inline-block;
white-space: nowrap;
overflow: hidden;
font-size: var(--smallFont);
}
.job-status-sk {
width: 100%;
height: 15px;
background-color: lightgrey;
border-radius: 5px;
margin-top: 5px;
}
.job-keywords-sk {
width: 100%;
display: flex;
margin-top: 10px;
gap: 5px;
}
.keyword-sk {
width: 80px;
height: 25px;
background-color: lightgrey;
border-radius: 15px;
}
.job-content {
margin-top: 15px;
word-break: break-word;
}
.job-keyword .job-tag,
.blog-keyword .blog-tag {
background: #edfeff;
border: 1px solid #dff3fb;
color: var(--bgColor);
display: flex;
align-items: center;
font-size: 12px;
line-height: 12px;
padding: 3px 6px 3px 3px;
border-radius: 10px;
margin-right: 5px;
margin-bottom: 5px;
word-break: initial;
}
.job-tag div,
.blog-tag div {
background: #bbbaba;
width: 12px;
height: 12px;
display: inline-block;
border-radius: 50%;
margin: auto 4px auto 2px;
}
.job-keyword,
.blog-keyword {
margin-top: 10px;
display: flex;
}
/* -------------------------Most Recent Job Section CSS End --------------------- */
/* -------------------------Browse Jobs by Category Section CSS Start --------------------- */
.browse-jobs-categories {
background-color: var(--sectionBg);
}
.category-item {
background: #ffffff;
border: 1px solid var(--bgColor3);
box-shadow: 2px 3px 0px 2px var(--bgColor3);
border-radius: 10px;
padding: 20px;
height: 200px;
margin-bottom: 25px;
text-align: center;
}
.category-item:hover {
background: #fafafa;
}
.category-icon {
text-align: center;
margin-bottom: 10px;
}
.category-icon svg {
font-size: 86px;
color: #cccccc;
}
.category-name h3 {
font-size: 22px;
}
/* -------------------------Browse Jobs by Category Section CSS End --------------------- */
/* -------------------------Browse Jobs by Cities Section CSS Start --------------------- */
.location-based-jobs {
background-repeat: no-repeat;
border: 1px solid var(--bgColor3);
box-shadow: 2px 3px 0px 2px var(--bgColor3);
border-radius: 10px;
height: 230px;
padding: 20px;
position: relative;
background-position: right;
background-size: contain;
margin-bottom: 30px;
}
.location-name {
position: absolute;
bottom: 20px;
left: 20px;
}
.location-name h4 {
font-size: var(--mediumFont);
margin-top: 5px;
}
/* -------------------------Browse Jobs by Cities Section CSS End --------------------- */
/* -------------------------How Works it Section CSS Start --------------------- */
.how-works-site {
background: var(--sectionBg);
}
.how-works-content h2 {
font-size: 32px;
font-weight: 600;
}
.how-works-content h3 {
font-size: 22px;
margin: 10px 0;
}
.how-works-content {
padding-right: 35px;
}
.how-works-content .btn {
margin-top: 25px;
padding: 7px 25px;
}
.leaflet-map {
height: 260px;
color: var(--bgColor2);
border: 2px solid var(--bgColor3);
border-radius: 10px;
background-color: white;
box-shadow: 2px 3px 0px 2px var(--bgColor3);
z-index: 90;
}
.leaflet-map.big {
height: 565px;
}
/* -------------------------How Works it Section CSS End --------------------- */
/* -------------------------User Feedback Section CSS Start --------------------- */
.feedback-wrapper {
background: white;
border: 1px solid var(--bgColor3);
border-radius: 10px;
padding: 25px 20px;
text-align: center;
width: 350px;
margin: auto;
}
.feedback-wrapper .user-info .user-avatar {
width: 80px;
height: 80px;
overflow: hidden;
margin: auto;
border: 1px solid lightgray;
border-radius: 50%;
}
.feedback-wrapper .user-info .user-avatar img {
width: 100%;
}
.feedback-wrapper .user-info h4 {
font-size: var(--mediumFont);
margin: 5px 0px;
}
.feedback-wrapper .user-info p {
font-size: var(--smallFont);
color: #00000096;
}
.feedback-wrapper .user-info {
margin-bottom: 20px;
}
.feedback-wrapper .user-feedback blockquote {
font-size: var(--normalFont);
margin-bottom: 0;
}
.user-feedback-area .owl-carousel .owl-item img {
display: inline-block;
}
.user-feedback-area .owl-carousel .owl-stage-outer {
height: 270px;
}
/* -------------------------User Feedback Section CSS End --------------------- */
/* -------------------------Latest Blog Section CSS Start --------------------- */
.latest-blog-area {
background-color: var(--sectionBg);
}
.blog-item {
background: #ffffff;
border: 1px solid #cbcbcb;
border-radius: 10px;
padding: 20px;
height: 400px;
position: relative;
padding-top: 180px;
margin-bottom: 25px;
}
.blog-item:hover {
background: #fafafa;
}
.blog-bg {
position: absolute;
width: 100%;
height: 180px;
left: 0;
top: 0;
overflow: hidden;
background-color: lightgrey; /* temporary */
background-size: cover;
background-position: center;
border-radius: 9px 9px 0px 0px;
}
.blog-bg img {
width: 100%;
height: 100%;
}
.blog-item .blog-author-time p {
font-size: var(--smallFont);
color: #00000094;
}
.blog-item .blog-author-time p span.author {
color: black;
}
.blog-text {
margin-top: 15px;
}
.blog-item .blog-text h3 {
font-size: 20px;
font-weight: 600;
margin: 10px 0;
}
.blog-item .blog-text p {
font-size: 16px;
}
.blog-content {
margin-top: 10px;
}
/* -------------------------Latest Blog Section CSS End --------------------- */
/* -------------------------Newsletter Section CSS Start --------------------- */
.newsletter-content {
text-align: center;
}
.newsletter-content h4 {
font-size: 20px;
font-weight: 400;
margin-bottom: 10px;
}
.newsletter-form {
position: relative;
margin: 10px 0;
}
.newsletter-form .newsletter-email {
width: 100%;
border: 1px solid var(--bgColor3);
box-sizing: border-box;
box-shadow: 1px 2px 0px 1px var(--bgColor3);
border-radius: 5px;
padding: 15px 131px 15px 60px;
position: relative;
outline-color: var(--bgColor);
font-weight: 400;
color: #838995;
}
.newsletter-form .btn.newsletter {
position: absolute;
top: 1px;
right: 1px;
padding: 16px 20px;
border-radius: 0px 5px 5px 0px;
font-size: 15px;
font-weight: 300;
}
.newsletter-form .svg {
position: absolute;
left: 20px;
top: 32px;
font-size: 24px;
color: var(--bgColor4);
margin-top: -16px;
}
.newsletter-form p {
margin-top: 10px;
font-size: var(--smallFont);
color: #838995;
}
.newsletter-form p.err {
color: red;
}
.newsletter-form p.okk {
color: green;
}
.newsletter-notification .msg_notify,
.newsletter-notification .msg_notify.error {
border: none;
background: transparent;
text-transform: capitalize;
padding: 0;
}
/* -------------------------Newsletter Section CSS End --------------------- */
/* -------------------------Footer Section CSS Start --------------------- */
.footer-menu-area {
background-color: var(--bgColor5);
}
.footer-menu-title {
display: inline-block;
position: relative;
}
.footer-menu-title h3 {
font-size: var(--normalFont);
color: white;
font-weight: 600;
}
.footer-menu-title::after {
position: absolute;
content: '';
background-color: var(--bgColor);
width: 100%;
height: 2px;
left: 0;
bottom: -7px;
}
.footer-menu nav ul li {
font-size: 18px;
margin-bottom: 5px;
}
.footer-menu nav ul li a {
color: white;
}
.footer-menu nav ul li a:hover {
color: var(--bgColor);
}
.footer-menu {
margin-top: 20px;
}
.footer-copyright-area {
background: var(--bgColor4);
color: white;
padding: 15px;
text-align: center;
}
.copyright-text {
font-size: var(--smallFont);
font-weight: 200;
}
/* -------------------------Footer Section CSS End --------------------- */
/* ------------------------- Home End --------------------- */
/* -------------------------About Page CSS Start--------------------- */
/* -------------------------Intro Section CSS Start --------------------- */
.intro-area {
text-align: center;
width: 100%;
height: 400px;
background: url(../assets/svgs/intro-bg.svg);
background-repeat: no-repeat;
background-color: #fafafa;
background-position: bottom;
position: relative;
background-size: contain;
}
.intro-heading {
font-size: var(--largFont);
font-weight: bold;
color: var(--textColor);
display: inline-block;
position: relative;
}
.intro-heading::after {
position: absolute;
content: '';
background: var(--bgColor);
display: block;
margin: 5px auto;
width: 100%;
height: 7px;
}
.intro-text p {
font-family: sans-serif;
font-size: 25px;
margin-bottom: 30px;
margin-top: 20px;
}
/* -------------------------Intro Section CSS End --------------------- */
/* -------------------------Story Section CSS End --------------------- */
.story-area {
background-color: #ececec;
display: flex;
gap: 5em;
justify-content: center;
flex-wrap: wrap;
}
.story-image {
padding: 50px 0;
}
.story-content {
display: flex;
flex-direction: column;
justify-content: space-around;
}
.story-content.order-first {
text-align: right;
}
.story-heading::after {
content: '';
background: var(--bgColor);
display: block;
width: 100%;
height: 3px;
margin-top: 5px;
}
.story-text h3 {
font-size: var(--mediumFont);
font-weight: 600;
color: var(--textColor);
display: inline-block;
}
.story-text p {
max-width: 400px;
line-height: 32px;
margin-bottom: 20px;
margin-top: 30px;
}
/* -------------------------Story Section CSS End --------------------- */
/* -------------------------Team Section CSS End --------------------- */
.team-area {
height: auto;
background-color: #fafafa;
padding-top: 40px;
padding-bottom: 20px;
}
.team-heading::after {
content: '';
background: var(--bgColor);
display: block;
width: 100%;
height: 3px;
margin-top: 5px;
}
.team-content h3 {
font-size: var(--mediumFont);
font-weight: 600;
color: var(--textColor);
text-align: center;
display: inline-block;
margin: 0 auto;
margin-bottom: 25px;
}
.team-content p {
width: 400px;
line-height: 32px;
margin-bottom: 20px;
margin-top: 30px;
}
.team-card {
background-color: #ffffff;
border: 1px solid #bbbbbb;
height: 250px;
border-radius: 10px;
overflow: hidden;
width: 100%;
margin-bottom: 40px;
}
.team-card img {
width: 100%;
max-height: 190px;
object-fit: cover;
}
.team-card-title {
display: flex;
flex-direction: column;
padding: 8px 0px;
background-color: #fff;
transform: translateY(-16px);
text-align: center;
}
.team-card-title h4 {
margin-bottom: 0;
font-size: 0.9em;
font-weight: 600;
}
.team-card-title small {
font-size: 14px;
}
/* -------------------------Team Section CSS End --------------------- */
/* ------------------------- Roadmap Section CSS Start --------------------- */
.roadmap-area {
height: 400px;
background-color: #fafafa;
}
.roadmap-content {
display: flex;
flex-direction: column;
align-items: center;
}
.roadmap-heading::after {
content: '';
background: var(--bgColor);
display: block;
width: 100%;
height: 3px;
margin-top: 5px;
}
.roadmap-content h3 {
font-size: var(--mediumFont);
font-weight: 600;
color: var(--textColor);
}
.roadmap-cards {
width: 672px;
margin: 30px;
display: flex;
justify-content: space-around;
}
.roadmap-card {
position: relative;
width: 75px;
height: 75px;
text-align: center;
padding-top: 11px;
background-color: var(--bgColor);
border-radius: 50%;
}
.roadmap-card p {
margin-top: 15px;
}
.roadmap-road {
width: 60%;
height: 10px;
background-color: var(--bgColor);
margin-top: -72px;
margin-bottom: 100px;
}
.roadmap-progress {
background-color: var(--bgColor4);
width: 55%;
height: 100%;
}
/* ------------------------- Roadmap Section CSS End --------------------- */
/* -------------------------About Page CSS End--------------------- */
/* -------------------------City & Category Page CSS Start--------------------- */
.locations-cities-item {
background: #ffffff;
border-radius: 10px;
padding: 25px;
position: relative;
padding-top: 225px;
box-shadow: 0px 1px 6px 0px rgb(0 0 0 / 28%);
margin-bottom: 15px;
}
.city-bg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 210px;
border-radius: 10px 10px 0px 0px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
opacity: 90%;
z-index: 1;
}
.city-job-info {
position: relative;
color: white;
text-align: center;
top: 70%;
}
.city-job-info h4 {
font-size: var(--mediumFont);
color: white;
font-weight: 700;
}
.city-job-info h5 {
font-weight: 600;
color: white;
}
.city-list a {
font-size: 16px;
color: var(--bgColor);
}
.city-list .col-lg-6:nth-child(even) {
text-align: right;
}
/* -------------------------City & Category Page CSS End--------------------- */
/* -------------------------Contact Us Page CSS Start--------------------- */
.contact-sidebar {
border-radius: 10px;
background: #e7eff1;
margin-top: 47px;
padding: 20px 20px;
height: calc(100%-47px);
}
.contact-information p,
.about-hourlyfinder p {
margin: 15px 0;
font-size: 16px;
text-align: justify;
}
.siderbar-border {
border-bottom: 1px solid #9e9e9e;
margin-bottom: 20px;
}
.contact-area {
background: #fafafa;
border-bottom: 0.5px solid #e1e1e1;
}
.contact-area .row {
padding-top: 30px;
}
.contact-form-area .contact-form {
background: white;
padding: 30px 35px;
border-radius: 10px;
margin-top: 15px;
box-shadow: 1px 1px 0px 2px var(--bgColor3);
}
.contact-form-loader {
position: relative;
height: 300px;
}
.contact-form-loader .spinner {
position: absolute;
left: 0;
right: 0;
width: 100%;
height: 100%;
}
h2.contact-title,
.faq-title h2 {
font-size: 28px;
}
h2.contact-title,
.faq-title h2 {
font-size: 28px;
}
.form-field {
overflow: hidden;
display: block;
/* margin-bottom: 5px; */
}
.form-field .contact-phone {
width: 47%;
float: left;
}
.form-field .profile {
width: 47%;
float: right;
display: block;
}
.form-field .invalid-feedback {
font-size: 0.7rem;
}
.form-field .valid-feedback {
font-size: 0.7rem;
}
.form-field .is-valid {
border-color: #19875450;
}
.form-field .is-invalid {
border-color: #dc354550;
}
.faq-area {
overflow: hidden;
}
.faq-title {
position: relative;
display: inline-block;
margin-bottom: 25px;
}
.faq-title::after {
position: absolute;
content: '';
width: 1000%;
height: 2px;
left: 120%;
top: 50%;
background: #737171;
}
.faq-questions .accordion-button {
font-size: 20px;
font-weight: 400;
}
/* -------------------------Contact Us Page CSS End--------------------- */
/* -------------------------Registration & Login Page CSS Start--------------------- */
.registration-area,
.jobs-application-area {
margin-top: -70px;
background: url(../assets/svgs/hero-bg.svg);
display: flex;
align-items: center;
justify-content: center;
background-size: cover;
height: 100vh;
min-height: 590px;
}
.registration-box,
.application-box {
margin-top: 35px;
width: 960px;
height: 540px;
border-radius: 30px;
background: white;
}
.registration-left {
width: 50%;
background-color: #2b313f;
height: 100%;
border-radius: 30px;
position: relative;
overflow: hidden;
float: left;
}
.registration-left::after {
content: '';
position: absolute;
top: -5%;
left: -50%;
height: 130%;
width: 100%;
background: #358fb2;
transform: skew(-25deg, 0deg);
}
.registration-left::before {
content: '';
position: absolute;
background: url(../assets/svgs/clock.svg);
top: 50%;
left: 50%;
width: 200px;
height: 200px;
z-index: 4;
margin-top: -100px;
margin-left: -100px;
background-position: center;
background-size: cover;
}
.registration-left-content {
position: absolute;
width: 80%;
margin: auto;
height: 80%;
background: linear-gradient(148.31deg, rgba(255, 255, 255, 0.165) 0%, rgba(255, 255, 255, 0.3) 100%);
border: 1px solid rgba(255, 255, 255, 0.2);
box-sizing: border-box;
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
backdrop-filter: blur(20px);
/* Note: backdrop-filter has minimal browser support */
border-radius: 10px;
z-index: 70;
left: 50%;
top: 50%;
margin-left: -40%;
margin-top: -44%;
padding: 20px;
}
.registration-left-content .normal-logo {
background: rgba(43, 49, 63, 0.1);
display: inline-block;
padding: 5px 15px;
}
.registration-left-content .normal-logo h3 {
font-size: var(--mediumFont);
color: #f2ecdc;
font-weight: 500;
}
.registration-left-text h2 {
font-size: 35px;
font-weight: bold;
}
.registration-status-info h4 a {
font-size: 20px;
color: white;
font-weight: 500;
}
.registration-left-text {
margin: 30px 0;
}
.registration-status-info {
color: white;
}
.registration-left-text p {
margin-top: 5px;
}
.registration-form,
.apply-form,
.job-application-info {
width: 50%;
float: right;
padding: 25px 50px;
display: flex;
align-items: center;
height: 100%;
}
.registration-form .form {
position: relative;
width: 100%;
}
.registration-form .form .forget {
font-size: 15px;
text-align: center;
}
.msg_notify {
color: teal;
padding: 5px 10px;
border-radius: 7px;
background-color: #ceffe0;
border: 1px solid lightseagreen;
font-size: 16px;
margin-top: 20px;
margin-bottom: 10px;
}
.msg_notify.error {
color: #e19b69;
background-color: #fbf5df;
border: 1px solid #fdd5b8;
}
.registration-form .form ul {
color: grey;
padding: 5px 10px;
font-size: 16px;
margin-top: 20px;
margin-bottom: 10px;
}
.registration-form .form ul li {
margin-bottom: 3px;
}
.btn_group {
position: absolute;
display: flex;
gap: 10px;
bottom: 0;
width: 100%;
}
.btn_group span {
user-select: none;
cursor: pointer;
color: white;
padding: 3px 10px;
border-radius: 5px;
background-color: var(--bgColor);
}
.btn_group span:nth-child(1) {
background-color: grey;
}
.form-field input,
.form-field select,
.form-field textarea {
display: block;
border: 2px solid #e8e8e8;
box-sizing: border-box;
border-radius: 5px;
width: 100%;
color: #838995;
font-size: var(--smallFont);
padding: 7px 15px;
outline-color: var(--bgColor);
margin-bottom: 5px;
}
.form-field input[type='file'] {
margin-bottom: 0;
height: 39px;
}
.file_edit_button {
border-radius: 10px;
background-color: #ffffff;
position: relative;
overflow: hidden;
}
.file_edit_button input::-webkit-file-upload-button {
visibility: hidden;
}
.file_edit_button input::before {
content: 'Choose File';
background: var(--bgColor);
position: absolute;
left: 2px;
top: 2px;
border-radius: 3px;
padding: 0 13px;
padding-top: 1px;
height: 35px;
display: inline-block;
color: #ffffff;
line-height: 33px;
}
.registration-form h2,
.apply-form h2 {
margin-bottom: 15px;
}
.form-field label {
font-size: 16px;
font-weight: 600;
margin-bottom: 5px;
}
.form-field .first-name {
float: left;
width: 47%;
}
.form-field .last-name {
float: right;
width: 47%;
}
.form-field.stay-login input,
.form-field.agree input {
width: auto;
display: inline-block;
margin-right: 10px;
margin-bottom: 15px;
padding: 7px;
}
.form-field.account-type .group {
margin-top: 10px;
display: flex;
gap: 20px;
}
.form-field.account-type .group input {
visibility: hidden;
}
.form-field.account-type .group label {
text-align: center;
border: 2px solid transparent;
background-color: #ffe1a7;
border-radius: 5px;
height: 80px;
width: 120px;
}
.form-field.account-type .group label svg {
color: #0008;
height: 30px;
margin-bottom: -20px;
}
.form-field.account-type .group label.active {
border: 2px solid var(--bgColor5);
}
.form-field.account-type .group label:nth-child(2) {
background-color: #c6e1cd;
}
.form-field .btn {
height: 45px;
font-size: 16px;
background: #16395f;
color: white;
}
.auth.mobile-view-link p {
font-size: 18px;
text-align: center;
}
.auth.mobile-view-link {
margin-top: 10px;
display: none;
}
.auth.mobile-view-link.register {
position: absolute;
left: 0;
bottom: -40px;
width: 100%;
}
.auth.mobile-view-link a {
font-weight: bold;
color: #16395f;
}
/* -------------------------Registration Page CSS End--------------------- */
/* -------------------------All Blog Page CSS Start--------------------- */
.weekly-blog {
width: 100%;
height: 250px;
border-radius: 10px;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
background-color: lightgray;
}
.blog-slide.owl-carousel {
position: relative;
padding: 0px;
}
.weekly-blog-content p.author-time {
font-size: 14px;
font-weight: 400;
color: #737171;
}
.weekly-blog-content h3 {
font-size: var(--mediumFont);
margin: 15px 0px;
margin-bottom: 7px;
}
.weekly-blog-content {
padding-right: 40px;
}
.weekly-blog-content p {
font-size: 16px;
text-align: justify;
}
.blog-slide .owl-nav {
position: absolute;
width: 100%;
top: 35%;
left: 0;
margin-top: -25px;
}
.blog-slide .owl-nav button span {
font-size: 50px;
}
.blog-slide .owl-nav button.owl-next {
right: 0;
position: absolute;
}
.blog-slide .owl-dots {
position: absolute;
bottom: -25px;
left: 50%;
}
.blog-slide .owl-dots .owl-dot {
width: 10px;
height: 10px;
background: rgb(182, 182, 182);
border-radius: 50%;
margin: 0 5px;
}
.blog-slide .owl-dots .owl-dot.active {
background: var(--bgColor);
}
.pagination-wrapper {
background: whitesmoke;
padding: 8px 20px;
border: 1px solid lightgrey;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
text-align: center;
}
.pagination-wrapper a {
font-size: 20px;
font-weight: 700;
margin: 0 10px;
}
.pagination-wrapper a.link {
width: 30px;
height: 30px;
border-radius: 50%;
background: transparent;
display: inline-block;
}
.pagination-wrapper a.link:hover {
width: 30px;
height: 30px;
border-radius: 50%;
background: #262626;
display: inline-block;
color: white;
}
.pagination-wrapper a.active {
width: 30px;
height: 30px;
border-radius: 50%;
background: #262626;
display: inline-block;
color: white;
}
.pagination-wrapper a.page.disabled {
color: lightgrey;
}
.pagination-wrapper a.page.disabled:hover {
cursor: not-allowed;
color: lightgray;
background-color: #f1f1f1;
}
.pagination-wrapper a.page {
font-weight: 300;
text-transform: uppercase;
padding: 5px 10px;
border-radius: 5px;
}
.pagination-wrapper a.page:hover {
cursor: pointer;
color: var(--bgColor);
background-color: #e4e4e4;
}
.pagination-wrapper a svg {
margin-right: 10px;
}
.pagination-wrapper a.next svg {
margin-left: 10px;
}
.blog-contents {
padding: 30px 0;
}
.side-bar-right {
background: #dfdfdf;
padding: 30px 15px;
height: 100%;
}
.side-bar-right .job-card .recruiter-title {
margin-left: 15px;
}
.side-bar-right .job-card .job-title {
font-size: 20px;
}
.advertizement-bg {
width: 100%;
height: 600px;
background: lightslategray;
border-radius: 10px;
}
.all-blog-area,
.single-blog-area {
background: #f6f6f6;
border-bottom: 0.5px solid #dfdfdf;
}
/* -------------------------All Blog Page CSS End--------------------- */
/* -------------------------Single Job Page CSS Start--------------------- */
.apply-area {
margin-top: 100px;
}
.recruiter-company-cover {
background-color: #e7e7e7;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 190px;
position: relative;
margin-bottom: 70px;
border-radius: 10px 10px 0px 0px;
}
.recruiter-company-cover .company-profile {
position: absolute;
bottom: 0;
height: 80px;
width: 90px;
left: 50%;
margin-left: -45px;
margin-bottom: -40px;
border-radius: 10px;
background-color: #d7d7d7;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.job-title-sk {
width: 100%;
height: 30px;
background-color: #e7e7e7;
}
.inline-sk {
display: inline-block;
margin-right: 5px;
border-radius: 5px;
width: 100px;
height: 20px;
background-color: #e7e7e7;
}
.title-sk {
border-radius: 5px;
margin-bottom: 20px;
width: 50%;
height: 30px;
background-color: #e7e7e7;
}
.content-sk {
width: 100%;
height: 15px;
border-radius: 5px;
margin-bottom: 10px;
background-color: #e7e7e7;
}
.image-sk {
width: 100px;
height: 100px;
border-radius: 50%;
background-color: #e7e7e7;
}
.jobs-details-information {
padding: 10px 25px;
}
.post-job-area .fields {
margin: 15px;
}
.post-job-area .save-all-change {
margin-left: 28px;
margin-right: 28px;
margin-bottom: 20px;
}
.job-details-image {
height: 203px;
opacity: 0.4;
background-size: cover;
background-color: #c9e2e9;
}
.jobs-details-information.dashboard {
top: 0;
position: absolute;
}
.single-job-title h2 {
font-size: 30px;
font-weight: 600;
}
.single-job-title p {
font-size: 22px;
margin-top: 5px;
}
.single-job-title {
margin-bottom: 25px;
}
.basic-info p {
font-size: 12px;
text-transform: uppercase;
color: #434343;
}
.basic-info h5 {
font-size: 16px;
margin-top: 5px;
}
.basic-info {
margin-bottom: 20px;
}
.single-job-details h3 {
font-size: var(--mediumFont);
margin-bottom: 8px;
}
.single-job-details p {
font-size: 16px;
text-align: justify;
}
.single-job-details {
margin-bottom: 25px;
}
.require-skills ul {
list-style: disc;
padding-left: 30px;
}
/* -------Apply Sidebar CSS------ */
.apply-sidebar {
border-radius: 10px;
height: 100%;
background: #f0fff8;
}
.sk-flash {
opacity: 1;
animation: opac 3s infinite;
}
.sidebar-padding {
padding: 25px 30px;
}
.application-budget-information {
border-bottom: 1px solid #dee0e3;
}
.application-budget-information p {
font-weight: 400;
}
.application-budget-information h4.budget {
font-size: 30px;
margin: 10px 0;
margin-bottom: 25px;
}
.application-budget-information .btn {
display: block;
margin-bottom: 10px;
}
.recruiter-profile-name .profile-info img {
width: 70px;
height: 70px;
border-radius: 50%;
margin-right: 20px;
}
.recruiter-profile-name {
margin: 20px 0;
}
.recruiter-profile-name .profile-name p {
font-size: 16px;
font-weight: 400;
margin-top: -5px;
}
.contact-details nav ul li {
margin-bottom: 15px;
color: #111111;
font-size: 17px;
}
.contact-details nav ul li svg {
color: #3f3f3f;
margin-right: 15px;
}
.profile-gallery p {
font-size: 14px;
text-align: justify;
}
.profile-gallery a {
color: var(--bgColor);
font-size: 14px;
margin-bottom: 5px;
display: inline-block;
}
.profile-gallery .gallery img {
height: 180px;
width: 100%;
margin: 10px 0;
border-radius: 10px;
}
/* -------------------------Single Job Page CSS End--------------------- */
/* -------------------------Apply Page CSS Start--------------------- */
.apply-form {
float: left;
}
.form-field.agree label {
font-size: 14px;
}
.job-application-info {
background: #eeeeee;
border-radius: 0px 30px 30px 0px;
}
.job-application-info .normal-logo h3 {
font-size: 20px;
color: #f2ecdc;
font-weight: 600;
}
.job-application-info .normal-logo {
background: #16395fb2;
display: inline-block;
padding: 10px 25px;
}
.job-application-title h2 {
font-size: 25px;
font-weight: 600;
}
.job-application-title p {
font-size: 18px;
font-weight: 400;
}
.job-application-title p span {
font-weight: 500;
}
.application-company-profile img {
border-radius: 10px;
height: 65px;
width: 70px;
margin-right: 20px;
}
.application-company-name h5 {
font-size: 18px;
margin-bottom: 0;
}
.application-company-name p {
font-size: 14px;
font-weight: 400;
}
.job-application-info p.job-overview {
background: white;
padding: 15px;
font-size: 14px;
border-radius: 10px;
text-align: justify;
font-weight: 400;
margin: 15px 0;
}
.job-application-info .job-budget-time h3 {
font-size: 22px;
font-weight: 600;
}
.job-application-info .job-budget-time p {
font-size: 16px;
font-weight: 400;
color: #737171;
}
.job-application-title {
margin: 15px 0;
}
.form-field.agree {
display: flex;
align-items: center;
margin: 10px 0;
}
.form-field.agree input,
.form-field.agree label {
margin-bottom: 0;
}
/* -------------------------Apply Page CSS End--------------------- */
/* -------------------------Single Blog Page CSS Start--------------------- */
.single-blog-title h2 {
font-size: 30px;
font-weight: 600;
}
.single-blog-title h4 {
font-size: 22px;
margin: 10px 0;
margin-bottom: 25px;
}
.single-blog-author-time p {
font-size: 16px;
font-weight: 400;
}
.blog-main-bg,
.blog-sub-bg {
height: 350px;
border-radius: 10px;
background-color: #bbb; /* temporary */
background-size: cover;
background-repeat: no-repeat;
background-position: center;
margin: 15px 0;
}
.single-blog-details p.blog-text {
font-size: 16px;
text-align: justify;
}
.blog-sub-bg {
height: 290px;
}
.single-blog-content-wrapper {
padding: 25px 0;
}
.single-blog-details {
padding-bottom: 30px;
border-bottom: 1px solid #dfdfdf;
margin-bottom: 20px;
}
.small-job-card {
background: white;
padding: 15px;
margin-bottom: 15px;
border-radius: 10px;
}
.small-job-title {
display: flex;
align-items: center;
margin-bottom: 15px;
}
.small-job-title .recruiter-logo {
width: 35px;
height: 35px;
margin-right: 15px;
}
.small-job-title .recruiter-logo img {
height: 100%;
}
.small-job-title h3 {
font-size: 16px;
font-weight: 400;
word-break: break-all;
}
.small-job-bottom {
font-size: 12px;
color: #888;
}
.small-job-bottom span {
color: black;
}
/* -------------------------Single Blog Page CSS End--------------------- */
/* -------------------------Job Seeker Profile Page CSS start--------------------- */
.profile-view-bar {
padding: 50px 30px;
background: #f4f4f4;
height: 100%;
}
.profile-bg {
height: 120px;
width: 120px;
border-radius: 50%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
margin: auto;
background-color: gainsboro;
position: relative;
}
.profile-view-bar .active-status {
position: absolute;
left: 87%;
bottom: 6px;
background: #16395fd6;
border-radius: 25px;
font-size: 10px;
color: white;
overflow: hidden;
height: 25px;
display: flex;
align-items: center;
justify-content: start;
gap: 10px;
width: 25px;
transition: 0.4s;
border: 1px solid #16395f;
}
.profile-view-bar .active-status .icon {
padding-left: 6px;
margin-top: -3px;
font-size: 12px;
}
.profile-view-bar .active-status .text {
padding-right: 10px;
}
.profile-view-bar .active-status:hover {
width: auto;
}
.profile-view-bar .profile-name-title {
text-align: center;
}
.profile-view-bar .profile-name-title h3 {
font-size: 28px;
margin-top: 20px;
}
.profile-view-bar .profile-name-title p {
font-size: 18px;
font-weight: 300;
margin-top: 5px;
}
.profile-view-bar .contact-details li {
font-size: 16px;
}
.profile-view-bar .contact-details {
margin: 30px 0;
}
.important-links .btn {
display: block;
margin-bottom: 15px;
font-weight: 400;
border-radius: 10px;
}
.profile-view-information {
background: #f4f4f4;
padding: 30px;
border-radius: 10px;
margin-bottom: 20px;
height: 100%;
}
.profile-view-information .profile-category {
font-weight: 300;
}
.profile-view-information .overall-rating {
text-align: right;
display: flex;
align-items: center;
justify-content: right;
}
.profile-view-information .overall-rating h4 {
font-size: 18px;
font-weight: 300;
margin-right: 10px;
}
.profile-view-information .overall-rating .rating svg {
color: gray;
}
.profile-view-information .overall-rating .rating svg.iconify.checked {
color: black;
}
.profile-view-information .profile-title h5 {
font-size: 20px;
font-weight: 600;
position: relative;
display: inline-block;
}
.profile-view-information .profile-title h5::after {
position: absolute;
content: '';
width: 2008%;
height: 2px;
background: #c4c4c4;
top: 50%;
left: 110%;
}
.profile-view-information .profile-title {
overflow: hidden;
margin-top: 25px;
margin-bottom: 10px;
}
.profile-view-information .profile-bio,
.profile-view-information .skills-tag,
.profile-view-information .previous-works-list,
.profile-view-information .review-list {
background: white;
border-radius: 10px;
padding: 20px 30px;
word-break: break-all;
}
.profile-view-information .profile-bio h5 {
font-size: 18px;
}
.profile-view-information .profile-bio p {
font-size: 16px;
font-weight: 300;
}
.skills-tag span {
background: #e3e3e3;
font-size: 16px;
padding: 5px 10px;
border-radius: 10px;
color: #565454;
margin-right: 15px;
margin-bottom: 10px;
display: inline-block;
}
.work-title p {
display: inline-block;
}
.previous-work-item {
background: #f4f4f4;
padding: 15px 20px;
border-radius: 10px;
margin-bottom: 15px;
}
.previous-work-item h5 {
font-size: 18px;
margin-bottom: 0;
}
.previous-work-item .work-title p {
font-size: 14px;
font-weight: 300;
margin-right: 10px;
}
.previous-work-item .work-title p svg {
color: #737171;
}
.previous-work-item .rating svg {
font-size: 20px;
}
.previous-work-item .location-date p {
font-size: 14px;
}
.previous-work-item .location-date p svg {
color: #737171;
margin-right: 5px;
font-size: 15px;
}
.review-item .reviewer-profile h5 {
font-size: 14px;
margin: 0;
}
.review-item .reviewer-profile p {
font-size: 11px;
color: gray;
font-weight: 300;
}
.review-item .review-text {
font-size: 11px;
text-align: justify;
}
.review-item .rating {
margin: 7px 0;
}
.no-item-wrap p {
color: #00000094;
text-align: center;
font-size: 16px;
word-break: break-word;
}
/* -------------------------Job Seeker Profile Page CSS End--------------------- */
/* -------------------------All Job Page CSS Start--------------------- */
.all-job-area {
background-color: #fafcff;
}
.all-search-bar-area {
padding: 30px 0;
}
.filter-header-area {
width: 100%;
display: flex;
overflow: hidden;
}
.search-bar-all {
background: white;
border: 1px solid #dbdbdb;
box-shadow: 1px 1px 0px 2px var(--bgColor3);
overflow: hidden;
border-radius: 5px;
border-right: 0;
}
.search-by input,
.search-by select {
width: 100%;
height: 100%;
position: relative;
padding: 17px 0;
padding-left: 50px;
font-size: 16px;
color: #838995;
border: none;
border-right: 1px solid #dadada;
}
.search-by span {
position: absolute;
left: 15px;
top: 50%;
margin-top: -14px;
color: #16395f;
}
.search-by {
display: inline-block;
position: relative;
width: 100%;
}
.search-by input:focus-visible {
outline: none;
}
.search-by.search-btn input {
padding: 18px;
background: #16395f;
color: white;
margin-left: 0px;
}
.grid-header {
background: #358fb21c;
}
.filter-area {
width: 300px;
background-color: #e5f8ff;
height: 100%;
}
.content-area {
width: 1060px;
}
.filter-header.dark {
border-bottom: 1px solid #16395f1c;
}
.filter-header {
padding: 15px;
display: flex;
align-items: center;
}
.filter-header span svg {
width: 15px;
height: 15px;
}
.filter-header span {
padding-right: 15px;
}
.filter-header span.filter-header-text {
font-size: 16px;
}
.filter-header.right span {
padding: 0;
padding-left: 20px;
}
.all-filtered-job {
padding: 25px;
}
.all-filter {
padding: 15px 25px;
}
.filter-by p {
margin-bottom: 5px;
}
.filter-by label {
font-size: 14px;
padding-left: 5px;
}
.filter-by {
margin-bottom: 15px;
}
.job-alert-service {
padding: 10px 25px;
}
.job-alert-service h5 {
font-size: 18px;
color: #2b313f;
}
.job-alert-service p {
font-size: 14px;
margin-bottom: 10px;
}
.job-alert-service input {
border: none;
border-radius: 5px;
padding: 9px 15px;
margin-bottom: 10px;
font-size: 14px;
width: 100%;
}
.job-alert-service input[type='email'] {
outline: none;
}
.job-alert-service input[type='submit'] {
background: #16395f;
color: white;
}
/* -------------------------All Job Page CSS End--------------------- */
/* -------------------------Recruiter Dashboard CSS Start--------------------- */
.dashboard-header {
background: #c2dce5;
padding: 7px 0;
}
.header-icon {
margin-left: 15px;
display: flex;
justify-content: right;
align-items: center;
}
.header-icon .dropdown-toggle::after,
.applicant-action .dropdown-toggle::after {
border: none;
}
.header-icon .dropdown-menu.show a,
.applicant-action .dropdown-menu.show button {
display: block;
padding: 8px 15px;
background: transparent;
transition: 0.3s;
transition-timing-function: ease-in-out;
border-bottom: 0.3px solid #16395f17;
}
.header-icon .dropdown-menu.show {
margin-top: 8px;
}
.header-icon .dropdown-menu.show a:hover {
background: #16395f;
color: white;
}
.header-icon .dropdown-menu.show a:last-child {
border: none;
}
.header-icon img {
width: 30px;
height: 30px;
border: 1px solid lightgrey;
background-color: #fafafa;
border-radius: 50%;
overflow: hidden;
margin-left: 20px;
object-fit: cover;
}
.header-icon span svg {
width: 18px;
height: 18px;
margin-top: 2px;
color: var(--bgColor);
}
.header-icon span svg:hover {
color: #16395f;
}
.dashboard-all {
height: calc(100vh - 70px);
display: flex;
flex-wrap: wrap;
background: #e7eff1;
}
.dashboard-all .left {
height: calc(100vh - 70px);
width: 280px;
transition: 0.3s;
}
.dashboard-all .mid,
.dashboard-all .full {
background-color: #fafafa;
width: calc(100% - 280px);
height: calc(100vh - 70px);
overflow-y: scroll;
position: absolute;
left: 280px;
}
.dashboard-all .right {
height: calc(100vh - 70px);
width: 242px;
display: none;
}
.dashboard-sidebar .user {
padding: 20px;
text-align: center;
border-bottom: 1px solid #8888;
}
.dashboard-toggle {
position: absolute;
right: 15px;
top: 10px;
cursor: pointer;
}
.dashboard-sidebar {
position: relative;
}
.dashboard-toggle svg {
font-size: 22px;
}
.dashboard-sidebar .user-photo {
width: 90px;
height: 90px;
margin: auto;
border: 1px solid lightgrey;
border-radius: 100%;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
transition: 0.3s;
}
.dashboard-main {
background: #fafafa;
padding: 15px 15px 20px 20px;
}
.user-info h5 {
font-size: 20px;
margin: 0;
}
.user-info {
margin-top: 10px;
}
.user-info p {
font-size: 14px;
color: gray;
}
.dashboard-navigation nav ul li a {
padding: 6px 25px;
transition: 0.3s;
font-size: 17px;
display: flex;
align-items: center;
justify-content: space-between;
}
.dashboard-navigation nav ul li a span {
padding-right: 15px;
}
.dashboard-navigation nav ul li a:hover {
background: #dbe6eb;
color: #358fb2;
}
.dashboard-navigation nav ul li a.active {
background: #c2dce5;
color: #16395f;
font-weight: 500;
}
.dashboard-navigation nav ul li {
position: relative;
}
.dashboard-navigation nav ul li .sub-menu {
background: #e1ecf1;
display: none;
transition: all 0.3s ease;
}
.dashboard-navigation nav ul li.showMenu .sub-menu {
display: block;
}
.dashboard-navigation nav ul li .sub-menu li a {
background: transparent;
display: flex;
justify-content: flex-start;
padding: 6px 50px;
font-size: 16px;
}
.dashboard-navigation nav ul li .sub-menu li a.active {
background: #c2dce585;
}
.dashboard-navigation nav ul li .sub-menu li:hover a {
background: #c2dce585;
}
.dashboard-navigation nav ul li .dropdown-icon {
transition: all 0.3s ease;
padding: 0;
}
.dashboard-navigation nav ul li.showMenu .dropdown-icon {
transform: rotate(180deg);
}
/* Toggle Dashboard */
.dashboard-all .left.active {
width: 80px;
}
.dashboard-all .mid.active,
.dashboard-all .full.active {
left: 80px;
width: calc(100% - 80px);
}
.dashboard-all .left.active .user-photo {
width: 50px;
height: 50px;
margin-top: 35px;
}
.dashboard-all .left.active .user-info {
display: none;
}
.left.active .dashboard-navigation nav ul li a div {
display: flex;
}
.left.active .dashboard-navigation nav ul li a span {
padding-right: 100px;
font-size: 20px;
}
.left.active .dashboard-toggle {
right: 27px;
}
/* Toggle Dashboard */
h3.dashboard-title {
font-size: 24px;
font-weight: 400;
margin-bottom: 15px;
}
.overview-item {
background: #f9dda9;
padding: 14px 20px;
border-radius: 8px;
position: relative;
}
.overview-item .count {
color: #ffbc3a;
font-weight: 700;
}
.overview-item h5 {
font-size: 16px;
font-weight: 600;
margin-top: 5px;
margin-bottom: 0;
}
.overview-item .overview-icon {
position: absolute;
top: 10px;
right: 10px;
}
span.overview-icon svg {
width: 40px;
height: 40px;
opacity: 20%;
}
.overview-item.two {
background: #b0d7ea;
}
.overview-item.two .count {
color: #358fb2;
}
.overview-item.three {
background: #dbfbcc;
}
.overview-item.three .count {
color: #96bea4;
}
.overview-item.four {
background: #f6a3b4;
}
.overview-item.four .count {
color: #ee4d6e;
}
.dashboard-right-bar {
padding: 15px 20px;
}
h3.right-bar-title {
font-size: 16px;
font-weight: 400;
margin-bottom: 15px;
}
.dashboard-right-content {
margin-bottom: 30px;
}
.dashboard-right-item {
background: #b0d7ea;
width: 100%;
height: 150px;
border-radius: 8px;
}
.activity-item {
background: #e7eff1;
border-radius: 5px;
}
.activity-title {
text-align: center;
padding: 8px 0;
border-bottom: 1px solid #cfcfcf;
}
.activity-wrapper {
padding: 15px 20px;
}
.recent-activity {
margin-bottom: 15px;
}
.recent-activity-icon {
display: inherit;
}
.recent-activity-icon span {
width: 40px;
height: 40px;
background: #358fb2;
border-radius: 50%;
text-align: center;
line-height: 40px;
}
.recent-activity-title {
padding-left: 15px;
}
.recent-activity-icon svg {
width: 20px;
height: 20px;
}
.recent-activity-title h6 {
font-size: 14px;
margin: 0;
}
.recent-activity-title p {
font-size: 12px;
}
.recent-activity-icon span.done {
background: #96bea4;
}
.recent-activity-icon span.selected {
background: #ffbc3a;
}
.recent-activity-icon span.reviewed {
background: #df865e;
}
.activity-calender span {
width: 40px;
height: 40px;
background: #dddd;
display: inline-block;
text-align: center;
line-height: 40px;
margin-bottom: 9px;
margin-right: 9px;
border-radius: 100%;
}
.activity-calender span a {
font-size: 16px;
}
.activity-calender {
display: inline-block;
}
.activity-calender span.applied {
background: #b0d7ea;
}
.activity-calender span.select {
background: #ffbc3a;
}
.activity-calender span.done {
background: #96bea4;
}
.edit-profile-area,
.post-job-area,
.manage-job-area {
position: relative;
background: #f9f9f9;
border-radius: 5px;
border: 1px solid #8888884a;
}
.profile-area {
height: 100%;
}
.edit-profile-area form {
overflow: hidden;
}
.content {
padding: 20px;
}
.edit-title {
position: relative;
font-size: 20px;
margin-bottom: 20px;
display: inline-block;
}
.edit-title::before {
content: '';
position: absolute;
width: 100%;
height: 2px;
top: 15px;
left: 110%;
background: #a3b3b787;
}
.edit-basic-information {
margin-bottom: 30px;
}
.edit-organization-information {
margin-bottom: 30px;
}
.edit-profile-area .form-field,
.post-job-area .form-field {
margin-bottom: 15px;
}
.post-job-area .job-success {
margin-left: 20px;
margin-right: 20px;
}
.post-job-area .job-success .btn_group {
position: inherit;
display: flex;
gap: 10px;
margin-bottom: 20px;
}
.profile-img-edit {
width: 90px;
height: 90px;
margin: auto;
border: 1px solid lightgrey;
border-radius: 50%;
position: relative;
background-size: cover;
margin-top: 10px;
}
.edit-profile-picture input {
border: none;
position: absolute;
left: 0;
bottom: -10px;
border-radius: 0;
}
.edit-profile-picture input::-webkit-file-upload-button {
visibility: hidden;
}
.edit-profile-picture input::before {
position: absolute;
content: '';
background: #e7eff1;
width: 100px;
height: 80px;
text-align: center;
left: -6px;
top: 0;
opacity: 0.5;
display: inline-block;
color: #214367;
line-height: 33px;
}
.edit-profile-picture input::after {
position: absolute;
content: url(https://api.iconify.design/ant-design/camera-filled.svg?width=25);
left: 50%;
top: 5px;
opacity: 1;
display: inline-block;
line-height: 40px;
margin-left: -13px;
}
.edit-profile-picture p {
font-size: 12px;
margin-top: 5px;
}
.save-all-change {
display: flex;
justify-content: space-between;
}
.save-all-change.around {
justify-content: space-around;
}
.save-all-change .action {
width: 250px;
}
.job-view-filter .form-field input,
.job-view-filter .form-field select {
background: #fbfdff;
border: 0.5px solid #adadad;
font-weight: 300;
}
.job-view-filter {
margin-bottom: 20px;
}
.manage-job-table {
overflow-x: scroll;
}
.manage-job-table table th {
background: #e7eff1;
padding: 8px 20px;
width: 100%;
}
.manage-job-table table tbody td {
padding: 5px 10px;
background-color: #80808021;
font-size: 14px;
color: #2b313f;
}
.manage-job-table table tbody tr {
border-bottom: 15px solid #f7f7f7;
border-top: 15px solid #f7f7f7;
}
.manage-job-table .job-title {
margin: 0;
}
.manage-job-table .job-title h5 {
font-size: 18px;
}
.manage-job-table .job-title p {
font-size: 12px;
}
.manage-job-table .job-title p span svg {
color: #737171;
font-size: 14px;
}
.manage-job-table td .job-status {
background: #a6e5bc;
color: white;
font-size: 13px;
padding: 2px 5px;
border-radius: 4px;
text-align: center;
}
.manage-job-table td .job-status.complete {
background: #96bea4;
}
.manage-job-table td .job-status.rejected {
background: #ee4d6e;
}
.manage-job-table td .job-status.pending {
background: #ffbc3a;
}
.manage-job-table th.title {
width: 60%;
}
.manage-job-table th.status {
width: 5%;
}
.manage-job-table th.date {
width: 18%;
}
.manage-job-table .btn {
padding: 5px 8px;
margin-right: 5px;
}
.manage-job-table .btn svg {
font-size: 18px;
color: black;
}
.manage-job-table .btn.view {
background: #96bea4;
}
.manage-job-table .btn.edit {
background: #ffbc3a;
}
.manage-job-table .btn.delete {
background: #ee4d6e;
}
.ongoing-job-area {
background: #fbfbfb;
padding: 20px;
border-radius: 7px;
border: 1px solid #8888884d;
}
.ongoing-job-item {
background: #d4ecdb;
border-radius: 7px;
border: 0.5px solid #22533033;
align-items: center;
padding: 25px 0;
margin-bottom: 15px;
}
.ongoing-job-header {
display: flex;
justify-content: space-between;
padding: 15px;
}
.ongoing-job-header h5 {
font-size: 18px;
font-weight: 400;
}
.ongoing-job-header p {
color: #737171;
font-size: 14px;
display: flex;
gap: 20px;
}
.ongoing-job-cards .ongoing-card {
width: 40px;
height: 40px;
background: white;
border-radius: 50%;
}
.ongoing-job-cards {
display: flex;
justify-content: space-around;
position: relative;
z-index: 4;
}
.ongoing-card p {
margin-top: 45px;
margin-left: 3px;
font-size: 12px;
color: #666666;
}
.ongoing-job-progress {
width: 80%;
height: 4px;
background: white;
position: absolute;
margin: auto;
margin-top: -20px;
left: 10%;
z-index: 1;
}
.ongoing-job-content {
position: relative;
}
.ongoing-job-progress .bar {
background: #4c9566;
height: 4px;
width: 20%;
z-index: 2;
}
.ongoing-job-content {
position: relative;
}
.ongoing-job-footer {
margin-top: 25px;
display: flex;
justify-content: space-between;
padding: 0 15px;
}
.ongoing-card.active {
background: #4c9566;
}
.event-wrapper {
background: #add1dd61;
border-radius: 10px;
padding: 10px 14px;
}
.event-title {
background: rgba(255, 255, 255, 0.5);
border-radius: 5px;
padding: 5px;
font-size: 14px;
color: #888;
}
.event-item {
display: flex;
align-items: self-start;
margin-bottom: 15px;
}
.event-icon-wrap {
background: white;
width: 30px;
height: 30px;
text-align: center;
border-radius: 100%;
font-size: 14px;
line-height: 30px;
}
.event-icon {
margin-right: 5px;
}
.event-title span {
color: black;
}
.ongoing-job-details-information {
display: flex;
width: 100%;
}
.ongoing-job-details-information .information-cell {
padding: 10px;
border: 1px solid #4c9566;
width: 100%;
text-align: center;
}
.information-cell .title {
font-size: 12px;
color: #626262;
}
.information-cell .title-data {
color: black;
font-size: 16px;
font-weight: 500;
}
.information-cell .seeker-profile-bg {
display: flex;
justify-content: center;
gap: 10px;
}
.seeker-profile div {
text-align: left;
}
.seeker-profile div .title-data {
margin-bottom: 0;
}
.information-cell .seeker-profile-bg img {
width: 40px;
height: 40px;
object-fit: cover;
border-radius: 50%;
}
.job-tracker-progress-wrapper {
background: #bedac8;
padding: 20px 0;
width: 100%;
padding-bottom: 40px;
}
.review-remove-link .btn-group .btn {
font-size: 12px;
background: #358fb2;
border: none;
color: white;
border-radius: 7px !important;
padding: 7px 8px;
font-weight: 300;
}
.review-remove-link .btn-group {
display: flex;
gap: 20px;
}
.review-remove-link .btn-group .btn.remove {
background: #ffbc3a;
}
.ongoing-job-update-tracker {
display: flex;
align-items: center;
gap: 20px;
font-size: 14px;
}
.ongoing-job-update-tracker .btn {
font-size: 12px;
border-radius: 5px;
padding: 7px 17px;
background: #4c9566;
border: none;
}
.ongoing-job-update-tracker select {
border-radius: 5px;
padding: 5px 10px;
border: 1px solid #dbdbdb;
}
.ongoing-job-progress .bar.mobile-view {
display: none;
}
/* -------------------------Recruiter Dashboard CSS End--------------------- */
/* -------------------------Location Page CSS Start--------------------- */
.location-page {
margin-top: 70px;
height: 100vh;
display: flex;
}
.location-page .side-bar {
width: 400px;
background: #fff;
padding: 10px;
}
.location-page .window {
width: 100%;
background: whitesmoke;
padding: 10px;
}
/* -------------------------Location Page CSS End--------------------- */
/* -------------------------PopUp Chat CSS Start--------------------- */
.popup-chat {
width: 45px;
height: 45px;
border: none;
padding: 0;
border-radius: 50%;
background: var(--bgColor5);
position: fixed;
bottom: 10px;
left: 10px;
}
.popup-chat svg {
color: whitesmoke;
font-size: 28px;
margin: 9px;
}
/* -------------------------PopUp Chat CSS End--------------------- */
/* -------------------------Recruiter Posted JOb Page CSS Start--------------------- */
.see-posted-job-area {
background: #fbfbfb;
border-radius: 10px;
overflow: hidden;
border: 0.3px solid #c6e1cda6;
}
.see-posted-job-header {
background: #e9fbee;
border-radius: 10px 10px 0px 0px;
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 0.3px solid #c6e1cda6;
}
.see-posted-job-header .job-header-content span {
font-size: 12px;
line-height: 12px;
}
.see-posted-job-header .job-header-content h4 {
font-size: 16px;
line-height: 16px;
font-weight: 500;
}
.see-posted-job-header .job-header-content {
padding: 10px 15px;
}
.see-posted-job-header .job-header-content.applicant {
background: #96bea440;
border-radius: 10px 10px 0px 0px;
padding-right: 50px;
}
.see-posted-job-header .job-header-right {
display: flex;
align-items: center;
background: rgba(150, 190, 164, 0.25);
border-radius: 10px 10px 0px 0px;
}
.see-posted-job-header .job-header-content.status {
padding-right: 40px;
}
.job-header-content.action .btn {
border: none;
background: #ffbc3a;
padding: 5px 5px;
font-size: 0px;
}
.job-header-content.action svg {
width: 13px;
height: 13px;
color: var(--bgColor4);
cursor: pointer;
}
.job-header-content.action .btn.delete {
background: #ee4d6e;
}
.see-posted-job-footer,
.avaiable-jobseeker-footer {
background: #e9fbee;
border-radius: 0px 0px 10px 10px;
/* padding: 5px 0; */
border-top: 0.3px solid #c6e1cda6;
}
.see-posted-job-footer .pagination-wrapper,
.avaiable-jobseeker-footer .pagination-wrapper {
background: transparent;
}
.see-posted-job-footer .pagination-wrapper a,
.avaiable-jobseeker-footer .pagination-wrapper a {
font-size: 14px;
}
.see-posted-job-content {
padding: 15px 20px 0px 20px;
}
.applicant-information-filter {
display: flex;
justify-content: space-between;
align-items: center;
}
.show-all-applicant {
display: flex;
align-items: center;
}
.applicant-filter {
display: flex;
align-items: center;
}
.applicant-information-filter {
background: #e9f2fb;
padding: 10px 20px;
font-size: 14px;
color: #434343;
}
.show-all-applicant .btn {
font-size: 14px;
margin-right: 15px;
}
.applicant-information-filter .display-page svg {
margin-right: 10px;
}
.applicant-information-table {
width: 100%;
}
.applicant-information-filter .display-page span {
font-size: 24px;
margin-right: 5px;
}
.applicant-information-filter .display-page {
display: flex;
align-items: center;
}
.applicant-filter .filter-meta {
display: flex;
align-items: center;
font-size: 22px;
}
.applicant-filter .filter-meta span.filter-header-text {
font-size: 14px;
margin-left: 5px;
margin-right: 15px;
}
.applicant-information-table th {
background: #b8e2f1;
padding: 10px 15px;
font-size: 12px;
font-weight: 500;
text-align: center;
}
.applicant-information-table th.name {
width: 20%;
}
.applicant-information-table td.img img {
width: 40px;
height: 40px;
background: #b8e2f1;
margin: auto;
border-radius: 50%;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.applicant-information-table td {
font-size: 14px;
text-align: center;
padding: 0 5px;
}
.applicant-information-table td.message {
font-size: 13px;
text-align: justify;
}
.applicant-information-table th.status {
width: 16%;
}
.applicant-information-table td .status {
color: white;
background: #358fb2;
border-radius: 5px;
padding: 3px 8px;
}
.applicant-information-table td.name {
font-weight: 500;
}
.applicant-information-table .data-row {
border-top: 10px solid #fbfbfb;
border-bottom: 10px solid #fbfbfb;
position: relative;
}
.applicant-information-table .data-row::after {
position: absolute;
content: '';
background: #dae1e9;
width: 100%;
height: 1px;
left: 0;
bottom: -30%;
}
.applicant-information-table .data-row:last-child::after {
height: 0;
}
.applicant-information-table td .status.rejected {
color: white;
background: #ee4d6e;
}
.applicant-information-table td .status.short {
color: black;
background: #ffbc3a;
}
.applicant-information-table td .status.hired {
color: black;
background: #96bea4;
}
.applicant-action .dropdown-menu.show button {
font-size: 12px;
text-align: center;
border: none;
margin: auto;
display: block;
width: 100%;
}
.action-status.dropdown-menu.show button.hire:hover {
background: #c6e1cd;
color: black;
}
.action-status.dropdown-menu.show button.reject:hover {
background: #ee4d6e;
color: white;
}
.action-status.dropdown-menu.show button.shortlist:hover {
background: #ffbc3a;
color: black;
}
/* -------------------------Recruiter Posted JOb Page CSS End--------------------- */
/* -------------------------Location Job Page CSS Start--------------------- */
.btn.apply-filter {
width: 100%;
background: #16395f;
font-weight: 500;
}
.job-map-sidebar {
background: #f8f8f8;
height: 100%;
}
.location-search {
padding: 0px 25px;
padding-top: 15px;
}
.location-search h5 {
font-size: 18px;
margin-bottom: 15px;
}
.location-search .form-field label {
font-weight: 400;
font-size: 14px;
margin-bottom: 5px;
}
.job-map-area .map {
background: #358fb2a6;
height: 710px;
border-radius: 10px;
}
.job-map-area {
padding: 15px 0px;
}
.selected-location-based-job {
padding: 0px 15px;
margin: 15px 0;
}
/* -------------------------Location JOb Page CSS End--------------------- */
/* -------------------------Avaiabel Job Seeker Page CSS Start--------------------- */
.avaiable-jobseeker-title h3,
.sidebar-title h3 {
font-size: 18px;
font-weight: 400;
margin-bottom: 15px;
}
.sidebar-content {
background: #edf1f5;
height: 96%;
width: 100%;
display: block;
border-radius: 10px;
}
.all-sidebar {
height: 100%;
}
.avaiable-jobseeker-wrapper {
background: #fbfbfb;
border-radius: 10px;
border: 0.3px solid #c6e1cda6;
}
.avaiable-jobseeker-header {
background: #d4ecdb;
padding: 10px 20px;
border-radius: 10px 10px 0px 0px;
display: flex;
align-items: center;
}
.avaiable-jobseeker-header p {
font-size: 14px;
font-weight: 500;
}
.avaiable-jobseeker-header p span {
font-size: 16px;
margin-right: 5px;
}
.avaiable-jobseeker-filter {
display: flex;
justify-content: space-between;
background: #e9f2fb;
padding: 10px 20px;
align-items: center;
}
.avaiable-jobseeker-filter .show-all-applicant {
font-size: 14px;
}
.avaiable-jobseeker-filter .show-all-applicant span {
font-size: 22px;
margin-right: 10px;
}
.avaiable-jobseeker-filter .show-all-applicant p,
.avaiable-jobseeker-filter .show-all-applicant .display-page {
display: flex;
align-items: center;
}
.avaiable-jobseeker-filter .show-all-applicant p {
margin-right: 20px;
}
.avaiable-jobseeker-filter .form-field select {
margin: 0;
}
.avaiable-jobseeker-cards-warapper {
padding: 10px 25px;
}
.avaible-jobseeker-card {
border: 1px solid #96bea4;
border-radius: 10px;
overflow: hidden;
background: white;
box-shadow: 1px 1px 0px 1px #96bea4;
margin: 10px 0;
}
.avaiable-jobseeker-card-footer {
background: #d4ecdb;
display: flex;
align-items: center;
justify-content: space-between;
border-top: 1px solid #96bea4;
padding: 10px 10px;
}
.avaiable-jobseeker-rating .rating svg {
color: #4c9566;
font-size: 16px;
}
.avaiable-jobseeker-rating span {
font-size: 15px;
margin-left: 10px;
margin-top: 8px;
}
.avaiable-jobseeker-rating {
display: flex;
align-items: center;
}
.btn.jobseeker-profile {
background: #96bea4;
color: #2f4e39;
padding: 3px 10px;
font-size: 14px;
border: 0.5px solid #65a97d;
line-height: 28px;
}
.avaiable-jobseeker-dp {
width: 60px;
height: 60px;
background: #d4ecdb;
border: 1px solid #d4ecdb;
border-radius: 100%;
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}
.avaiable-jobseeker-profile {
display: flex;
align-items: center;
justify-content: space-around;
}
.about-avaiable-jobseeker {
font-size: 12px;
}
.avaiable-jobseeker-card-content {
padding: 10px 15px;
}
.avaiable-jobseeker-info .name {
font-size: 18px;
}
.avaiable-jobseeker-info .designation {
font-size: 12px;
margin: 3px 0;
margin-bottom: 0px;
}
.avaiable-jobseeker-info .avaiabele-status {
font-size: 12px;
background: #5ed788;
color: white;
padding: 3px 11px;
border-radius: 5px;
display: inline-block;
margin: 0;
margin-bottom: 10px;
}
/* -------------------------Avaiabel Job Seeker Page CSS End--------------------- */
.short_alert {
max-width: 300px;
height: 80px;
display: flex;
align-items: center;
background-color: whitesmoke;
border: 1px solid var(--bgColor5);
border-right: none;
position: fixed;
bottom: 90px;
right: -300px;
animation: 2s ease alternate 2 both;
animation-name: alert;
}
.short_color {
width: 15px;
height: 100%;
}
.short_txt {
padding: 10px;
}
@keyframes alert {
0% {
right: -300px;
}
80% {
right: 0px;
}
100% {
right: 0px;
}
}
/* -------------------------Simplle Loader Start--------------------- */
.spinner {
display: flex;
align-items: center;
justify-content: space-around;
width: 100%;
}
.spinner object {
opacity: 0.5;
width: 100px;
animation: opac 3s infinite;
}
/* -------------------------Simplle Loader End--------------------- */
.activation_box {
width: 600px;
height: 400px;
background: #ffffff;
border: 1px solid #96bea4;
box-shadow: 1px 1px 0px 1px #96bea4;
border-radius: 10px;
}
/* ------------------------- Modal Start--------------------- */
.modal-overlay {
position: fixed;
width: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.5);
z-index: 100;
}
.modal-container {
max-width: 600px;
width: 100%;
position: fixed;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
background-color: white;
border: 1px solid #96bea4;
border-radius: 10px;
overflow: hidden;
box-shadow: 1px 1px 0px 1px #96bea4;
}
.modal-header {
font-size: 14px;
font-weight: 500;
background: #d4ecdb;
padding: 10px 15px;
display: flex;
}
.modal-header .info-text {
display: inline-block;
margin-left: 7px;
}
.modal-header .close-area {
border: none;
border-radius: 5px;
background-color: transparent;
}
.modal-header .close-area:hover {
border: none;
background-color: #6d927a;
}
.modal-header svg {
color: #96bea4;
width: 18px;
height: 18px;
}
.modal-sub-header {
font-size: 12px;
color: #96bea4;
background: #e9f2fb;
padding: 5px 20px;
}
.modal-body {
font-size: 18px;
padding: 15px 30px;
background-color: #fbfbfb;
}
.modal_footer {
display: flex;
justify-content: space-between;
padding: 7px;
background: #e9fbee;
border-top: 1px solid #96bea4;
}
.modal_footer .info-area {
font-size: 12px;
padding: 10px 0;
color: #96bea490;
}
.modal_footer .buttons .btn {
margin-left: 5px;
padding: 8px 20px;
}
/* ------------------------- Modal End--------------------- */
/* ---> animations <--- */
@keyframes opac {
0%,
50%,
100% {
opacity: 0.4;
}
25%,
75% {
opacity: 0.6;
}
}
/* -------------------------Dashboard Messenger menu CSS --------------------- */
.msging-area {
border: 0.3px solid #8888884f;
border-radius: 10px;
height: 100%;
overflow: hidden;
}
.msg-left-bar {
background: #dcebf0;
height: 100%;
}
.contact-search-bar {
padding: 20px 15px;
padding-top: 25px;
}
.contact-search-bar .form-field {
position: relative;
}
.contact-search-bar .form-field .icon {
position: absolute;
top: 0;
left: 8px;
margin-top: 5px;
border-radius: 5px;
}
.contact-search-bar .form-field .icon svg {
color: #c4c4c4;
width: 22px;
height: 22px;
}
.contact-search-bar .form-field input {
padding-left: 35px;
border-color: #95d7edf7;
font-size: 14px;
margin: 0;
}
.single-contact-item .contact-pic {
width: 40px;
height: 40px;
border-radius: 50%;
background-size: cover;
background-position: center;
margin: 0 10px;
background-repeat: no-repeat;
}
.single-contact-item {
display: flex;
align-items: center;
justify-content: start;
padding: 10px 0;
background: transparent;
cursor: pointer;
transition: 0.3s;
transition-timing-function: ease-in-out;
}
.single-contact-item .contact-info h6 {
margin: 0;
font-size: 16px;
line-height: 18px;
}
.single-contact-item .contact-info p {
font-size: 12px;
}
.contact-info.unread h6,
.contact-info.unread p {
font-weight: 600;
}
.single-contact-item:hover,
.single-contact-item.active {
background: #b3dae7;
}
.contact-list {
overflow-y: auto;
height: 300px;
}
.conversation-contact-list.scroll {
padding-bottom: 60px;
height: 100%;
}
.contact-list::-webkit-scrollbar {
width: 7px;
}
.contact-list::-webkit-scrollbar-track {
background: #ececec;
}
.contact-list::-webkit-scrollbar-thumb {
background-color: #a7a7a7;
border-radius: 10px;
}
.contact-list::-webkit-scrollbar-thumb:hover {
background: #505050;
}
.msg-top-bar {
background: #dcebf0;
padding: 10px 20px;
box-shadow: 2px 3px 16px 5px #b3dae7;
}
.msg-top-bar h5 {
font-size: 19px;
line-height: 24px;
margin: 0;
}
.msg-top-bar p {
font-size: 14px;
}
.conversation-text-area {
background: #fbfbfb;
}
.conversation-text .text {
background: rgb(179 218 231);
display: inline-block;
padding: 15px;
border-radius: 10px;
width: 70%;
text-align: right;
word-break: break-all;
}
.conversation-text .text .msg {
font-size: 13px;
line-height: 20px;
font-weight: 300;
color: black;
}
.conversation-text {
margin-bottom: 10px;
text-align: right;
}
.conversation-text .text .time {
font-size: 12px;
margin-top: 10px;
color: #8b8b8b;
}
.conversation-text.sender {
text-align: left;
}
.conversation-text.sender .text {
background: rgb(220 235 240);
text-align: left;
}
.conversation-text-list {
height: 350px;
overflow-y: auto;
padding: 10px;
}
.conversation-text-list::-webkit-scrollbar {
width: 7px;
}
.conversation-text-list::-webkit-scrollbar-track {
background: #ececec;
}
.conversation-text-list::-webkit-scrollbar-thumb {
background-color: #a7a7a7;
border-radius: 10px;
}
.conversation-text-list::-webkit-scrollbar-thumb:hover {
background: #505050;
}
.msg-sending-area .file-field,
.msg-sending-area .emoji-field {
position: relative;
width: 30px;
height: 30px;
background: rgb(113 203 233);
overflow: hidden;
display: inline-block;
cursor: pointer;
border-radius: 5px;
margin: 0 7px;
}
.msg-sending-area .file-field input {
position: absolute;
left: 0;
top: 0;
opacity: 0;
width: 100%;
height: 100%;
z-index: 999;
}
.msg-sending-area .file-field::after {
position: absolute;
content: url('https://api.iconify.design/akar-icons/attach.svg');
top: 0;
width: 100%;
text-align: center;
line-height: 34px;
}
.msg-sending-area .emoji-field {
text-align: center;
line-height: 30px;
}
.msg-sending-area {
display: flex;
justify-content: space-evenly;
align-items: center;
background: #dcebf0;
padding: 10px 0;
box-shadow: inset 2px 3px 20px 0px #b3dae7;
}
.msg-sending-area .msg-field {
width: 70%;
position: relative;
}
.msg-sending-area .msg-field input[type='text'] {
margin: 0;
padding: 10px 15px;
padding-right: 30px;
border-color: #95d7edf7;
}
.msg-sending-area .msg-field button {
position: absolute;
right: 2px;
top: 50%;
border: none;
background: transparent;
color: #aaaaaa;
margin-top: -16px;
font-size: 20px;
}
.msg-sending-area .files-area {
display: flex;
align-items: center;
}
.msg-right-bar {
background: #dcebf0;
height: 100%;
box-shadow: 2px 3px 16px 5px #b3dae7;
}
.contact-information .contact-profile {
width: 80px;
height: 80px;
border-radius: 50%;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
margin: auto;
}
.msg-right-bar .contact-information {
display: flex;
justify-content: center;
height: 230px;
align-items: center;
border-bottom: 0.3px solid #8888;
}
.contact-information .information-text h4,
.contact-information .information-text p {
text-align: center;
margin: 0;
}
.contact-information .information-text h4 {
font-size: 18px;
margin-top: 15px;
}
.contact-information .information-text .designation {
font-size: 14px;
font-weight: 300;
margin: 2px 0;
}
.contact-information .information-text .company {
font-size: 12px;
font-weight: 600;
}
/* -------------------------Dashboard Messenger CSS End--------------------- */
/* -------------------------Skeleton CSS Start--------------------- */
.blog-item.sk,
.blog-slider-sk,
.small-job-card.sk,
.single-blog-content-wrapper.sk,
.profile-view-bar.sk,
.profile-view-information.sk {
animation: skeleton 1.5s linear infinite alternate;
}
.blog-author-time.sk,
.author-time.sk {
background: #e1e1e1;
padding: 12px 0;
border-radius: 5px;
}
.blog-title-sk,
.blog-title.sk {
background: #f2f2f2;
padding: 20px 0;
border-radius: 9px;
}
.blog-description-sk,
.blog-description.sk {
background: lightgrey;
padding: 10px 0;
border-radius: 5px;
margin: 10px 0;
}
.recruiter-logo-sk {
background: #d3d3d3a6;
width: 100%;
padding: 20px 20px;
border-radius: 5px;
}
.job-title.sk {
background: #d3d3d3c7;
padding: 12px;
width: 100%;
border-radius: 5px;
}
.small-job-bottom.sk {
background: lightgray;
padding: 8px;
border-radius: 5px;
}
.avaiable-jobseeker-info .name.sk {
width: 90%;
background: lightgray;
padding: 12px 0;
display: inline-block;
border-radius: 5px;
}
.sk .avaiable-jobseeker-info {
width: 60%;
}
.avaiable-jobseeker-info .designation.sk {
background: lightgray;
padding: 8px;
border-radius: 4px;
width: 60%;
}
.avaiable-jobseeker-info .avaiabele-status.sk {
background: lightgray;
padding: 12px 0;
width: 72%;
margin-top: 7px;
}
.about-avaiable-jobseeker.sk {
padding: 5px 0;
background: lightgray;
border-radius: 5px;
}
.avaible-jobseeker-card.sk {
border-color: #808080a8;
box-shadow: 1px 1px 0px 1px lightgray;
animation: skeleton 1.5s linear infinite alternate;
}
.btn.jobseeker-profile.sk {
background: lightgray;
padding: 15px 0;
width: 43%;
border: none;
border-radius: 15px;
box-shadow: none;
}
.avaiable-jobseeker-card-footer.sk {
background: #d3d3d35e;
}
.sk .avaiable-jobseeker-rating .rating svg {
color: #80808099;
}
.avaiable-jobseeker-dp.sk {
background: lightgray;
}
.blog-title.sk {
background: lightgray;
}
.blog-sub-title.sk {
background: lightgray;
padding: 10px 0;
border-radius: 5px;
margin: 8px 0;
}
.published-time-sk {
background: lightgray;
padding: 8px 0;
border-radius: 5px;
margin: 5px 0;
width: 30%;
}
.profile-name-title.sk .name {
background: lightgray;
padding: 15px 0;
border-radius: 5px;
width: 70%;
margin: auto;
margin-top: 15px;
}
.profile-name-title.sk .name:nth-child(2) {
width: 45%;
}
.contact-details li.contact-info-sk {
display: flex;
gap: 25px;
}
.contact-details li.contact-info-sk span {
padding: 12px;
background: lightgrey;
border-radius: 5px;
}
.contact-details li.contact-info-sk .contact-info-li {
padding: 12px;
background: #d3d3d3e0;
width: 100%;
border-radius: 5px;
}
.important-links.sk .btn-main {
background: #d7d7d7;
padding: 20px;
border-radius: 30px;
width: 84%;
margin: auto;
margin-bottom: 10px;
}
.profile-category.sk,
.overall-rating.sk {
padding: 20px;
background: #e3e3e3;
border-radius: 15px;
width: 70%;
}
.overall-rating.sk {
margin-left: auto;
}
.profile-view-information .profile-title.sk {
padding: 14px;
background: #d3d3d39c;
border-radius: 15px;
width: 50%;
}
.bio-title.sk {
background: #e3e3e3;
padding: 10px;
border-radius: 10px;
width: 30%;
}
.sk .bio-description {
border-radius: 10px;
background: #e3e3e3;
padding: 5px 0;
margin-top: 10px;
}
.skills-tag.sk .skills.sk {
padding: 0px 40px;
}
.previous-work.sk {
padding: 20px 0;
background: #e0e0e0;
border-radius: 5px;
margin-bottom: 10px;
}
.no-item {
display: flex;
justify-content: space-around;
}
.no-item .content {
color: #aaaaaa;
text-align: center;
border-radius: 10px;
background-color: #f8f8f8;
}
.no-item .content svg {
width: 5em;
height: 5em;
}
.no-item .content p {
padding: 0 1.5em;
} | 0.31237 | 0.061143 |
@import "./ui.css";
html {
width: 100vw;
height: 100vh;
overflow-x: hidden;
overflow-y: scroll;
display: flex;
justify-content: center;
align-items: center;
font-size: xx-large;
}
body {
width: fit-content;
height: fit-content;
position: relative;
}
h1,
p {
margin-bottom: 0;
}
#login {
width: fit-content;
text-align: right;
display: inline-block;
position: relative;
}
.button-wrapper {
width: 100%;
text-align: center;
}
#login section {
margin: calc(var(--border-radius) * 2);
border-radius: var(--border-radius);
display: block;
position: relative;
}
#login input:not(#submit) {
border-radius: 0;
padding: 0;
border: transparent;
--border-height: calc(var(--border-radius) / 10);
border-bottom: var(--border-height) solid var(--easyjs-inverse-subText);
outline: transparent;
transition: border-bottom 1s;
box-shadow: 0 0 100vmax 100vmax var(--easyjs-bg) inset;
}
#login input:not(#submit):focus {
border-bottom: var(--border-height) solid var(--easyjs-text);
}
#pass-toggle {
border: transparent !important;
background-color: var(--easyjs-cardBg);
transition: box-shadow 1s, background-color 0.5s !important;
font-size: xx-small;
border-radius: var(--border-radius) !important;
vertical-align: top;
width: var(--size);
height: var(--size);
appearance: none;
box-shadow: 0 0 calc(var(--border-radius) / 2) 0 var(--easyjs-text) inset !important;
}
#pass-toggle:checked {
background-color: var(--theme-orange);
}
#pass-toggle:hover,
#pass-toggle:focus {
box-shadow: 0 0 calc(var(--border-radius) * 2) 0 var(--easyjs-text) inset !important;
}
#submit {
border: none;
box-shadow: 0 0 calc(var(--border-radius) / 4) 0 var(--easyjs-text);
transition: box-shadow 1s;
}
#submit:hover,
#submit:focus {
box-shadow: 0 0 calc(var(--border-radius) * 2) 0 var(--easyjs-text);
}
footer {
font-size: smaller;
}
footer a {
color: var(--easyjs-link);
text-decoration-color: transparent;
transition: text-decoration-color 1s;
}
footer a:hover,
footer a:active,
footer a:focus {
text-decoration-color: var(--easyjs-link);
} | style.css | @import "./ui.css";
html {
width: 100vw;
height: 100vh;
overflow-x: hidden;
overflow-y: scroll;
display: flex;
justify-content: center;
align-items: center;
font-size: xx-large;
}
body {
width: fit-content;
height: fit-content;
position: relative;
}
h1,
p {
margin-bottom: 0;
}
#login {
width: fit-content;
text-align: right;
display: inline-block;
position: relative;
}
.button-wrapper {
width: 100%;
text-align: center;
}
#login section {
margin: calc(var(--border-radius) * 2);
border-radius: var(--border-radius);
display: block;
position: relative;
}
#login input:not(#submit) {
border-radius: 0;
padding: 0;
border: transparent;
--border-height: calc(var(--border-radius) / 10);
border-bottom: var(--border-height) solid var(--easyjs-inverse-subText);
outline: transparent;
transition: border-bottom 1s;
box-shadow: 0 0 100vmax 100vmax var(--easyjs-bg) inset;
}
#login input:not(#submit):focus {
border-bottom: var(--border-height) solid var(--easyjs-text);
}
#pass-toggle {
border: transparent !important;
background-color: var(--easyjs-cardBg);
transition: box-shadow 1s, background-color 0.5s !important;
font-size: xx-small;
border-radius: var(--border-radius) !important;
vertical-align: top;
width: var(--size);
height: var(--size);
appearance: none;
box-shadow: 0 0 calc(var(--border-radius) / 2) 0 var(--easyjs-text) inset !important;
}
#pass-toggle:checked {
background-color: var(--theme-orange);
}
#pass-toggle:hover,
#pass-toggle:focus {
box-shadow: 0 0 calc(var(--border-radius) * 2) 0 var(--easyjs-text) inset !important;
}
#submit {
border: none;
box-shadow: 0 0 calc(var(--border-radius) / 4) 0 var(--easyjs-text);
transition: box-shadow 1s;
}
#submit:hover,
#submit:focus {
box-shadow: 0 0 calc(var(--border-radius) * 2) 0 var(--easyjs-text);
}
footer {
font-size: smaller;
}
footer a {
color: var(--easyjs-link);
text-decoration-color: transparent;
transition: text-decoration-color 1s;
}
footer a:hover,
footer a:active,
footer a:focus {
text-decoration-color: var(--easyjs-link);
} | 0.313525 | 0.07072 |
html,
body{
height:100%;
}
header {
font-family: 'PT Serif', serif;
background-color: rgb(235, 199, 102);
border: solid black 1px;
margin-top: -23px;
}
h1, h2{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
text-align: center;
}
p,
h2 {
font-size: 24px;
text-align: center;
}
a{
color: black;
}
section {
text-align: center;
font-size: 25px;
display: inline-block;
border: solid 2px grey;
padding: 0px 10px;
margin:10px;
height: 100%;
}
ol {
margin-top: 50px;
font-size: 12pt;
width: 260px;
border: solid 2px grey;
border-radius: 10px;
padding: 5px
}
footer {
/* position: fixed;*/
left: 0;
bottom: 0;
text-align: center;
width: 100%;
background-color: rgb(179, 215, 247);
border: solid black 1px;
float: bottom;
}
.brand, .results, .city {
border: solid grey 2px;
background-color: rgb(236, 236, 211);
opacity: 90%;
height: 70vh;
}
.city {
float: left;
width: 25%;
}
.results {
float: left;
width: 50%;
overflow: scroll;
}
.brand {
float: right;
width: 25%;
}
.card {
color: black;
background-color: rgb(193, 194, 193);
}
.storeLoc {
margin-left: 25%;
}
.storeLocRes {
width: 90%;
height: 55vh;
overflow: scroll;
}
.storeAdr {
border:1px solid black;
border-radius: 3px;
}
.storePhone {
background-color: rgba(179, 174, 174, 0.295);
border: 3px solid rgb(223, 181, 104);
}
.storeUrl {
background-color: rgba(179, 174, 174, 0.295);
border: 3px solid rgb(223, 181, 104);
border-radius: 10px;
}
.fas{
font-size: 60px;
color:rgb(51, 55, 104)
}
.fa-store,
.fa-list-alt {
margin-top: 10px;
padding: 10px;
}
button {
border: 3px solid rgb(223, 181, 104);
border-radius: 10px;
background: rgba(179, 174, 174, 0.295);
margin-top: 10px;
padding: 10px;
display: inline-block;
}
#btnSubmit {
margin-left: 25px;
width: 260px;
}
#bg {
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
z-index:-1;
}
#bg img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
min-width: 50%;
min-height: 50%;
} | assets/styles/style.css | html,
body{
height:100%;
}
header {
font-family: 'PT Serif', serif;
background-color: rgb(235, 199, 102);
border: solid black 1px;
margin-top: -23px;
}
h1, h2{
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
text-align: center;
}
p,
h2 {
font-size: 24px;
text-align: center;
}
a{
color: black;
}
section {
text-align: center;
font-size: 25px;
display: inline-block;
border: solid 2px grey;
padding: 0px 10px;
margin:10px;
height: 100%;
}
ol {
margin-top: 50px;
font-size: 12pt;
width: 260px;
border: solid 2px grey;
border-radius: 10px;
padding: 5px
}
footer {
/* position: fixed;*/
left: 0;
bottom: 0;
text-align: center;
width: 100%;
background-color: rgb(179, 215, 247);
border: solid black 1px;
float: bottom;
}
.brand, .results, .city {
border: solid grey 2px;
background-color: rgb(236, 236, 211);
opacity: 90%;
height: 70vh;
}
.city {
float: left;
width: 25%;
}
.results {
float: left;
width: 50%;
overflow: scroll;
}
.brand {
float: right;
width: 25%;
}
.card {
color: black;
background-color: rgb(193, 194, 193);
}
.storeLoc {
margin-left: 25%;
}
.storeLocRes {
width: 90%;
height: 55vh;
overflow: scroll;
}
.storeAdr {
border:1px solid black;
border-radius: 3px;
}
.storePhone {
background-color: rgba(179, 174, 174, 0.295);
border: 3px solid rgb(223, 181, 104);
}
.storeUrl {
background-color: rgba(179, 174, 174, 0.295);
border: 3px solid rgb(223, 181, 104);
border-radius: 10px;
}
.fas{
font-size: 60px;
color:rgb(51, 55, 104)
}
.fa-store,
.fa-list-alt {
margin-top: 10px;
padding: 10px;
}
button {
border: 3px solid rgb(223, 181, 104);
border-radius: 10px;
background: rgba(179, 174, 174, 0.295);
margin-top: 10px;
padding: 10px;
display: inline-block;
}
#btnSubmit {
margin-left: 25px;
width: 260px;
}
#bg {
position: fixed;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
z-index:-1;
}
#bg img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
min-width: 50%;
min-height: 50%;
} | 0.41739 | 0.111919 |
.mediaViewInfo {
--web-view-name: success;
--web-view-id: success;
--web-scale-to-fit: true;
--web-scale-to-fit-type: fit;
--web-scale-on-resize: true;
--web-center-horizontally: true;
--web-center-vertically: true;
--web-refresh-for-changes: true;
--web-enable-deep-linking: true;
}
:root {
--web-view-ids: success;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
border: none;
}
#success {
position: absolute;
width: 1920px;
height: 1080px;
overflow: hidden;
cursor: pointer;
--web-view-name: success;
--web-view-id: success;
--web-scale-to-fit: true;
--web-scale-to-fit-type: fit;
--web-scale-on-resize: true;
--web-center-horizontally: true;
--web-center-vertically: true;
--web-refresh-for-changes: true;
--web-enable-deep-linking: true;
}
@keyframes fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#Rectangle_69 {
opacity: 0.8;
fill: rgba(162,162,162,1);
}
.Rectangle_69 {
position: absolute;
overflow: visible;
width: 1920px;
height: 1080px;
left: 0px;
top: 0px;
}
#Rectangle_70 {
fill: rgba(255,255,255,1);
stroke: rgba(112,112,112,1);
stroke-width: 1px;
stroke-linejoin: miter;
stroke-linecap: butt;
stroke-miterlimit: 4;
shape-rendering: auto;
}
.Rectangle_70 {
position: absolute;
overflow: visible;
width: 888px;
height: 492px;
left: 516px;
top: 294px;
}
#Success_ {
left: 810px;
top: 294px;
position: absolute;
overflow: visible;
width: 333px;
white-space: nowrap;
text-align: left;
font-family: Font Awesome 5 Free;
font-style: normal;
font-weight: normal;
font-size: 82px;
color: rgba(112,112,112,1);
}
#Your_order_has_been_place_and_ {
left: 673px;
top: 470px;
position: absolute;
overflow: visible;
width: 575px;
white-space: nowrap;
text-align: center;
font-family: Font Awesome 5 Free;
font-style: normal;
font-weight: normal;
font-size: 42px;
color: rgba(112,112,112,1);
}
#Component_30__1 {
position: absolute;
width: 362px;
height: 98px;
left: 779px;
top: 633px;
overflow: visible;
}
#Rectangle_71 {
fill: rgba(255,255,255,1);
stroke: rgba(112,112,112,1);
stroke-width: 1px;
stroke-linejoin: miter;
stroke-linecap: butt;
stroke-miterlimit: 4;
shape-rendering: auto;
}
.Rectangle_71 {
position: absolute;
overflow: visible;
width: 362px;
height: 98px;
left: 0px;
top: 0px;
--web-animation: fadein 0.3s linear;
--web-action-type: page;
--web-action-target: home2.html;
cursor: pointer;
}
#Back_to_Home {
left: 37px;
top: 29px;
position: absolute;
overflow: visible;
width: 289px;
white-space: nowrap;
text-align: center;
font-family: Font Awesome 5 Free;
font-style: normal;
font-weight: normal;
font-size: 42px;
color: rgba(112,112,112,1);
} | Build 55/css/success.css | .mediaViewInfo {
--web-view-name: success;
--web-view-id: success;
--web-scale-to-fit: true;
--web-scale-to-fit-type: fit;
--web-scale-on-resize: true;
--web-center-horizontally: true;
--web-center-vertically: true;
--web-refresh-for-changes: true;
--web-enable-deep-linking: true;
}
:root {
--web-view-ids: success;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
border: none;
}
#success {
position: absolute;
width: 1920px;
height: 1080px;
overflow: hidden;
cursor: pointer;
--web-view-name: success;
--web-view-id: success;
--web-scale-to-fit: true;
--web-scale-to-fit-type: fit;
--web-scale-on-resize: true;
--web-center-horizontally: true;
--web-center-vertically: true;
--web-refresh-for-changes: true;
--web-enable-deep-linking: true;
}
@keyframes fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
#Rectangle_69 {
opacity: 0.8;
fill: rgba(162,162,162,1);
}
.Rectangle_69 {
position: absolute;
overflow: visible;
width: 1920px;
height: 1080px;
left: 0px;
top: 0px;
}
#Rectangle_70 {
fill: rgba(255,255,255,1);
stroke: rgba(112,112,112,1);
stroke-width: 1px;
stroke-linejoin: miter;
stroke-linecap: butt;
stroke-miterlimit: 4;
shape-rendering: auto;
}
.Rectangle_70 {
position: absolute;
overflow: visible;
width: 888px;
height: 492px;
left: 516px;
top: 294px;
}
#Success_ {
left: 810px;
top: 294px;
position: absolute;
overflow: visible;
width: 333px;
white-space: nowrap;
text-align: left;
font-family: Font Awesome 5 Free;
font-style: normal;
font-weight: normal;
font-size: 82px;
color: rgba(112,112,112,1);
}
#Your_order_has_been_place_and_ {
left: 673px;
top: 470px;
position: absolute;
overflow: visible;
width: 575px;
white-space: nowrap;
text-align: center;
font-family: Font Awesome 5 Free;
font-style: normal;
font-weight: normal;
font-size: 42px;
color: rgba(112,112,112,1);
}
#Component_30__1 {
position: absolute;
width: 362px;
height: 98px;
left: 779px;
top: 633px;
overflow: visible;
}
#Rectangle_71 {
fill: rgba(255,255,255,1);
stroke: rgba(112,112,112,1);
stroke-width: 1px;
stroke-linejoin: miter;
stroke-linecap: butt;
stroke-miterlimit: 4;
shape-rendering: auto;
}
.Rectangle_71 {
position: absolute;
overflow: visible;
width: 362px;
height: 98px;
left: 0px;
top: 0px;
--web-animation: fadein 0.3s linear;
--web-action-type: page;
--web-action-target: home2.html;
cursor: pointer;
}
#Back_to_Home {
left: 37px;
top: 29px;
position: absolute;
overflow: visible;
width: 289px;
white-space: nowrap;
text-align: center;
font-family: Font Awesome 5 Free;
font-style: normal;
font-weight: normal;
font-size: 42px;
color: rgba(112,112,112,1);
} | 0.536799 | 0.05445 |
@charset "UTF-8";
:export {
menuText: #ffffff;
menuActiveText: #ffffff;
subMenuActiveText: #f4f4f5;
menuBg: #0d74d7;
menuHover: #175eb6;
menuSelect: #175eb6;
subMenuBg: #ffffff;
subMenuHover: #11386d;
sideBarWidth: 210px;
}
/* fade */
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.28s;
}
.fade-enter,
.fade-leave-active {
opacity: 0;
}
/* fade-transform */
.fade-transform-leave-active,
.fade-transform-enter-active {
transition: all 0.5s;
}
.fade-transform-enter {
opacity: 0;
transform: translateX(-30px);
}
.fade-transform-leave-to {
opacity: 0;
transform: translateX(30px);
}
/* breadcrumb transition */
.breadcrumb-enter-active,
.breadcrumb-leave-active {
transition: all 0.5s;
}
.breadcrumb-enter,
.breadcrumb-leave-active {
opacity: 0;
transform: translateX(20px);
}
.breadcrumb-move {
transition: all 0.5s;
}
.breadcrumb-leave-active {
position: absolute;
}
.el-breadcrumb__inner,
.el-breadcrumb__inner a {
font-weight: 400 !important;
color: #ffffff !important;
}
.el-breadcrumb__item:hover {
cursor: pointer
}
body {
overflow: auto !important;
}
.el-upload input[type='file'] {
display: none !important;
}
.el-upload__input {
display: none;
}
.el-dialog {
transform: none;
left: 0;
position: relative;
margin: 0 auto;
}
.upload-container .el-upload {
width: 100%;
}
.upload-container .el-upload .el-upload-dragger {
width: 100%;
height: 200px;
}
.el-dropdown-menu a {
display: block;
}
.el-range-separator {
box-sizing: content-box;
}
.isShow {
display: none;
}
.yjTabs.el-tabs>.el-tabs__header {
border-radius: 4px;
background-color: #fff;
margin: 20px 25px 0;
}
.yjTabs.el-tabs>.el-tabs__header .el-tabs__nav-wrap.is-scrollable {
padding-right: 90px;
}
.yjTabs.el-tabs>.el-tabs__header .el-tabs__nav-wrap.is-scrollable span[class^='el-tabs__nav'] {
line-height: 56px;
}
.yjTabs.el-tabs>.el-tabs__header .el-tabs__item.is-top {
padding: 0 48px 0 18px;
height: 56px;
line-height: 56px;
color: #999999;
font-size: 14px;
}
.yjTabs.el-tabs>.el-tabs__header .el-tabs__item.is-active {
font-size: 16px !important;
color: #5583fe !important;
}
.yjTabs.el-tabs>.el-tabs__header .el-tabs__active-bar {
height: 4px;
}
.el-button.refreshBtn {
padding: 0;
position: absolute;
width: 32px;
height: 32px;
top: 0;
right: -40px;
transform: translate(-103px, 112px);
border: 1px solid #5583fe;
z-index: 999;
}
.el-tooltip__popper.is-dark {
display: none !important;
background: none;
}
.sdialog .el-dialog.el-dialog--center {
min-height: 75vh;
padding-bottom: 20px;
overflow: hidden;
}
.sdialog .el-transfer-panel__body,
.sdialog .el-transfer-panel__list {
min-height: 256px;
height: 100%;
}
.s_dialog .el-dialog__body {
overflow: hidden;
}
.s_dialog .right .el-card__body {
padding-bottom: 100px;
}
.tDialog {
margin-top: 3rem !important;
height: 95%;
border-radius: 10px;
}
.tDialog .el-dialog__body {
height: 100%;
}
.tDialog .el-dialog__body .el-tabs.el-tabs--top.el-tabs--border-card {
height: 90%;
}
.tDialog .el-tabs__content {
height: 95%;
overflow: auto;
}
table .cell button.el-button--text {
padding: 0 !important;
}
table .cell button.el-button--text:first-child {
padding-left: 10px !important;
}
.yhImg img {
max-width: 85%;
}
.safe_main {
padding: 15px 25px;
}
.safe_main .sxForm,
.safe_main .sxTable {
background-color: #fff;
border-radius: 4px;
}
.safe_main .formTitle {
border-left: 4px solid #5583fe;
padding-left: 10px;
text-align: left;
}
.safe_main .formTitle .el-form-item__label-wrap {
margin-left: 0 !important;
}
.safe_main .sxForm {
padding: 0 20px;
padding-top: 20px;
margin-bottom: 20px;
}
.safe_main .sxForm .el-button {
padding: 0px;
width: 85px;
height: 32px;
}
.safe_main .sxForm .el-button:first-child {
background-color: #5583fe;
border-color: #005ebc;
color: #ffffff;
border-radius: 2px;
border: 1px solid #5583fe;
text-align: center;
font-size: 16px;
}
.safe_main .sxForm .el-button:hover {
color: #409eff;
border-color: #c6e2ff;
background-color: #ecf5ff;
}
.safe_main .sxTable {
padding: 10px;
}
.safe_main .sxTable .el-button {
margin-bottom: 10px;
padding: 0px 10px;
height: 32px;
}
.safe_main .sxTable .cz.el-button {
background-color: #32c5ff;
color: #ffffff;
}
.safe_main .sxTable .el-button.el-button--default:hover {
color: #409eff;
border-color: #c6e2ff;
background-color: #ecf5ff;
}
.safe_main .sxTable .el-table {
margin-bottom: 10px;
}
.safe_main .sxTable .el-pagination {
text-align: center;
}
.safe_main .sxTable.addSafety .el-input__icon {
line-height: 1 !important;
}
.safe_main .el-dialog__header {
border-bottom: 1px solid #eee !important;
}
.safe_main .el-dialog__footer {
border-top: 1px solid #eee !important;
padding-bottom: 10px;
}
.safe_main .footer .el-input__icon {
line-height: 1 !important;
}
.safe_main .height40 {
height: 40px;
line-height: 40px;
font-size: 16px;
font-weight: 600;
}
.safe_main .isSure .el-dialog__body {
font-size: 25px;
text-align: center;
}
#qrcode canvas,
#qrcode img {
display: block;
margin: auto;
width: 100%;
height: 100%;
max-width: 258px;
max-height: 258px;
}
.safety-plan .change-form .el-form-item {
display: block;
}
.safety-plan .change-form .el-input {
width: 80%;
}
.safety-plan .change-form .el-cascader {
width: 80%;
}
.safety-plan .change-form .el-select {
width: 80%;
}
.safety-plan .change-form .el-select .el-input {
width: 100%;
}
.safety-plan .change-form .el-form-item__label {
width: 160px;
}
.manageClass {
/* .form-table .el-form-item {
width: 49%;
display: inline-block;
} */
/* .row-height .el-col {
background: #ffffff;
height: 580px;
position: relative;
border-radius: 5px;
}
.row-height {
height: 580px;
border-radius: 5px;
} */
}
.manageClass .people-content {
border-radius: 5px;
}
.manageClass .choose-help {
cursor: pointer;
}
.manageClass .page-tit {
font-size: 18px;
background: #ffffff;
height: 45px;
line-height: 45px;
margin-bottom: 10px;
padding-left: 15px;
border-radius: 5px;
}
.manageClass .area-tit {
font-size: 18px;
height: 50px;
line-height: 50px;
color: #333;
padding-left: 15px;
margin-top: 10px;
}
.manageClass .area-tit:before {
display: inline-block;
content: '';
width: 4px;
height: 20px;
background: #0d74d7;
vertical-align: -4px;
margin-right: 9px;
}
.manageClass .form-table textarea input {
height: 35px;
line-height: 35px;
}
.manageClass .form-table .el-form-item__label {
width: 115px !important;
}
.manageClass .form-table .el-form-item__content {
margin-left: 115px !important;
}
.manageClass .avatar-uploader .el-upload {
border: 1px dashed #d9d9d9;
border-radius: 6px;
cursor: pointer;
position: relative;
overflow: hidden;
}
.manageClass .avatar-uploader .el-upload:hover {
border-color: #409eff;
}
.manageClass .avatar-uploader-icon {
font-size: 28px;
color: #8c939d;
width: 300px;
height: 300px;
line-height: 300px;
text-align: center;
}
.manageClass .avatar {
width: 200px;
height: 200px;
display: block;
}
.manageClass .img-head {
text-align: center;
margin-top: 130px;
}
.manageClass .lce {
background: #ffffff;
height: 260px;
border-radius: 5px;
}
.manageClass .people-tree {
height: 130px;
overflow-y: scroll;
z-index: 99;
}
.manageClass .lce .avatar-uploader-icon {
height: 200px;
line-height: 200px;
}
.manageClass .lce .img-head {
margin-top: 0px;
}
.manageClass .manage-basic {
background: #ffffff;
}
.manageClass .manage-details table {
width: 94%;
border: 1px solid #ddd;
border-collapse: collapse;
border-spacing: 0px;
margin: 0px 20px;
}
.manageClass .manage-details table tr {
height: 45px;
line-height: 45px;
border: 1px solid #ddd;
}
.manageClass .manage-details table td {
border: 1px solid #ddd;
padding-left: 15px;
}
.manageClass .manage-details .el-form-item__label {
font-weight: 500;
}
.manageClass .manage-details table td:first-child {
width: 35%;
}
.manageClass .manage-basic .el-input.is-disabled .el-input__inner {
border: none;
}
.manageClass .manage-sign {
background: #ffffff;
margin-top: 20px;
}
.manageClass .user-img {
width: 156px;
height: 97px;
}
.manageClass .manage-sign .sign-form {
border: 1px solid #d9d9d9;
margin-left: 15px;
width: 80%;
height: 366px;
}
.manageClass .manage-sign .sign-form .sign-tit {
font-size: 14px;
padding: 18px 0px;
display: inline-block;
}
.manageClass .manage-sign .sign-form .sign-name {
color: #929292;
font-size: 14px;
}
.manageClass .manage-sign .sign-form .sign-area {
height: 180px;
border-bottom: 1px solid #d9d9d9;
padding-left: 20px;
}
.manageClass .cancel_buton {
background-color: #ffffff;
}
.manageClass .cancel_buton .cancel-btn {
margin: 20px;
}
.manageClass .manage-basic .el-input.is-disabled .el-input__inner {
padding: 0;
}
.speDetail {
/* .form-table .el-form-item {
width: 49%;
display: inline-block;
} */
/* .row-height .el-col {
background: #ffffff;
height: 580px;
position: relative;
border-radius: 5px;
}
.row-height {
height: 580px;
border-radius: 5px;
} */
}
.speDetail .people-content {
border-radius: 5px;
}
.speDetail .choose-help {
cursor: pointer;
}
.speDetail .page-tit {
font-size: 18px;
background: #ffffff;
height: 45px;
line-height: 45px;
margin-bottom: 10px;
padding-left: 15px;
border-radius: 5px;
}
.speDetail .area-tit {
font-size: 18px;
height: 50px;
line-height: 50px;
color: #333;
padding-left: 15px;
margin-top: 10px;
}
.speDetail .area-tit:before {
display: inline-block;
content: '';
width: 4px;
height: 20px;
background: #0d74d7;
vertical-align: -4px;
margin-right: 9px;
}
.speDetail .form-table textarea input {
height: 35px;
line-height: 35px;
}
.speDetail .form-table .el-form-item__label {
width: 130px !important;
}
.speDetail .form-table .el-form-item__content {
margin-left: 130px !important;
}
.speDetail .avatar-uploader .el-upload {
border: 1px dashed #d9d9d9;
border-radius: 6px;
cursor: pointer;
position: relative;
overflow: hidden;
}
.speDetail .avatar-uploader .el-upload:hover {
border-color: #409eff;
}
.speDetail .avatar-uploader-icon {
font-size: 28px;
color: #8c939d;
width: 300px;
height: 300px;
line-height: 300px;
text-align: center;
}
.speDetail .avatar {
width: 200px;
height: 200px;
display: block;
}
.speDetail .img-head {
text-align: center;
margin-top: 130px;
}
.speDetail .lce {
background: #ffffff;
height: 260px;
border-radius: 5px;
}
.speDetail .people-tree {
height: 130px;
overflow-y: scroll;
z-index: 99;
}
.speDetail .lce .avatar-uploader-icon {
height: 200px;
line-height: 200px;
}
.speDetail .lce .img-head {
margin-top: 0px;
}
.speDetail .manage-basic {
background: #ffffff;
}
.speDetail .manage-details .el-form-item__label {
font-weight: 500;
}
.speDetail .manage-details table td:first-child {
width: 35%;
}
.speDetail .manage-basic .el-input.is-disabled .el-input__inner {
border: none;
}
.speDetail .spe-table {
background: #ffffff;
margin-top: 20px;
}
.speDetail .spe-table table {
width: 100%;
border: 1px solid #ddd;
border-collapse: collapse;
border-spacing: 0px;
}
.speDetail .spe-table table tr,
.speDetail .spe-table table th {
height: 45px;
line-height: 45px;
border: 1px solid #ddd;
}
.speDetail .spe-table table td {
border: 1px solid #ddd;
padding-left: 15px;
}
.speDetail .rightbutton {
text-align: right;
}
#app .main-container {
min-height: 100%;
transition: margin-left 0.28s;
margin-left: 210px;
position: relative;
}
#app .sidebar-container {
transition: width 0.28s;
width: 210px !important;
background-color: #0d74d7;
height: 100%;
position: fixed;
font-size: 0px;
top: 0px;
bottom: 0;
left: 0;
z-index: 1001;
overflow: hidden;
}
#app .sidebar-container .horizontal-collapse-transition {
transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out;
}
#app .sidebar-container .scrollbar-wrapper {
overflow-x: hidden !important;
padding-top: 80px;
}
#app .sidebar-container .el-scrollbar__bar.is-vertical {
right: 0px;
}
#app .sidebar-container .el-scrollbar {
height: 100%;
}
#app .sidebar-container.has-logo .el-scrollbar {
height: calc(100% - 50px);
}
#app .sidebar-container .is-horizontal {
display: none;
}
#app .sidebar-container a {
display: inline-block;
width: 100%;
overflow: hidden;
}
#app .sidebar-container .svg-icon {
margin-right: 16px;
}
#app .sidebar-container .el-menu {
border: none;
height: 100%;
width: 100% !important;
}
#app .sidebar-container .submenu-title-noDropdown:hover,
#app .sidebar-container .el-submenu__title:hover {
background-color: #175eb6 !important;
}
#app .sidebar-container .is-active>.el-submenu__title {
color: #f4f4f5 !important;
}
#app .sidebar-container .nest-menu .el-submenu>.el-submenu__title,
#app .sidebar-container .el-submenu .el-menu-item {
min-width: 210px !important;
}
#app .sidebar-container .nest-menu .el-submenu>.el-submenu__title:hover,
#app .sidebar-container .el-submenu .el-menu-item:hover {
background-color: #11386d !important;
}
#app .hideSidebar .sidebar-container {
width: 7% !important;
}
#app .hideSidebar .el-submenu__title {
height: 85px;
}
#app .hideSidebar .main-container {
margin-left: 0px;
}
#app .hideSidebar .app-main {
width: 93%;
margin-left: 7%;
}
#app .hideSidebar .submenu-title-noDropdown {
padding: 0 !important;
position: relative;
}
#app .hideSidebar .submenu-title-noDropdown .el-tooltip {
padding: 0 !important;
}
#app .hideSidebar .submenu-title-noDropdown .el-tooltip .svg-icon {
margin-left: 20px;
}
#app .hideSidebar .el-submenu {
overflow: hidden;
}
#app .hideSidebar .el-submenu>.el-submenu__title {
padding: 0 !important;
}
#app .hideSidebar .el-submenu>.el-submenu__title .svg-icon {
margin-left: 20px;
}
#app .hideSidebar .el-submenu>.el-submenu__title .el-submenu__icon-arrow {
display: none;
}
#app .hideSidebar .el-menu--collapse .el-submenu>.el-submenu__title>span {
height: 0;
width: 0;
overflow: hidden;
visibility: hidden;
display: inline-block;
}
#app .el-menu--collapse .el-menu .el-submenu {
min-width: 210px !important;
}
#app .mobile .main-container {
margin-left: 0px;
}
#app .mobile .sidebar-container {
transition: transform 0.28s;
width: 210px !important;
}
#app .mobile.hideSidebar .sidebar-container {
pointer-events: none;
transition-duration: 0.3s;
transform: translate3d(-210px, 0, 0);
}
#app .withoutAnimation .main-container,
#app .withoutAnimation .sidebar-container {
transition: none;
}
.el-menu--vertical>.el-menu .svg-icon {
margin-right: 16px;
}
.el-menu--vertical .nest-menu .el-submenu>.el-submenu__title:hover,
.el-menu--vertical .el-menu-item:hover {
background-color: #175eb6 !important;
}
.el-menu--vertical>.el-menu--popup {
max-height: 100vh;
overflow-y: auto;
}
.el-menu--vertical>.el-menu--popup::-webkit-scrollbar-track-piece {
background: #d3dce6;
}
.el-menu--vertical>.el-menu--popup::-webkit-scrollbar {
width: 6px;
}
.el-menu--vertical>.el-menu--popup::-webkit-scrollbar-thumb {
background: #99a9bf;
border-radius: 20px;
}
body {
height: 100%;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}
label {
font-weight: 700;
}
html {
height: 100%;
box-sizing: border-box;
}
#app {
height: 100%;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
a:focus,
a:active {
outline: none;
}
a,
a:focus,
a:hover {
cursor: pointer;
color: inherit;
text-decoration: none;
}
div:focus {
outline: none;
}
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: ' ';
clear: both;
height: 0;
}
.app-container {
padding: 15px 25px;
}
.el-form-item__content>.el-input>.el-input__inner {
height: 32px !important;
line-height: 32px !important;
}
.safeCheckTime .el-form-item__content>.el-input>.el-input__inner {
height: 40px !important;
line-height: 40px !important;
}
.query-btn {
background-color: #5583fe;
border-color: #005ebc;
color: #ffffff;
border-radius: 2px;
height: 32px;
border: 1px solid #5583fe;
padding: 0px;
text-align: center;
font-size: 16px;
width: 85px;
}
.reset-btn {
cursor: pointer;
background: #fff;
border: 1px solid #dcdfe6;
height: 32px;
border-radius: 2px;
padding: 0px;
text-align: center;
font-size: 16px;
width: 85px;
}
.el-pagination {
margin-top: 20px;
text-align: right;
padding-bottom: 56px;
}
.el-pagination__total {
font-weight: 700;
}
.el-pagination.is-background .el-pager li:not(.disabled).active {
border: 1px solid #7facff;
border-radius: 5px;
color: #ffffff;
background: #5583fe;
}
.el-pagination.is-background .btn-next,
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .el-pager li {
border: 1px solid #e4e4e4;
color: #454545;
background: #fff;
}
.el-pagination.is-background .el-pager li:not(.disabled):hover {
border: 1px solid #7facff;
border-radius: 5px;
color: #008bff;
background: #fff;
}
.openSidebar .navbar {
width: calc(100% - 210px) !important;
}
.nest-menu .is-active {
background-color: #5583fe !important;
}
.el-pagination .el-input__inner {
font-weight: 700;
}
::-webkit-scrollbar {
/*滚动条整体样式*/
width: 1px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 1px;
}
::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background: #535353;
}
::-webkit-scrollbar-track {
/*滚动条里面轨道*/
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 10px;
background: #ededed;
}
.el-table th {
background: #edf2ff;
}
/* .el-table--enable-row-hover .el-table__body tr:hover > td {
background-color: #edf2ff !important;
} */
.el-table .active-row {
background: #edf2ff;
}
.el-button--text {
color: #5583fe;
}
.table-import-btn {
background-color: #5583fe;
color: #ffffff;
padding: 0px;
width: 85px;
height: 32px;
}
.table-add-btn {
background-color: #32c5ff;
padding: 0px;
width: 85px;
height: 32px;
color: #ffffff;
}
.table-default-btn {
padding: 0px;
width: 85px;
height: 32px;
}
.confirm-btn {
width: 69px;
height: 32px;
line-height: 32px;
background: #5583fe;
padding: 0px;
color: #ffffff;
}
.el-button.confirm-btn {
line-height: 30px;
}
.cancel-btn {
padding: 0px;
width: 69px;
height: 32px;
line-height: 32px;
}
.avatar-container img {
width: 40px;
height: 40px;
border-radius: 50%;
position: relative;
top: 15px;
left: 5px;
}
.table-query-form {
background: #fff;
padding: 20px 15px 0px 15px;
border-radius: 4px;
}
.table-list {
background: #fff;
margin-top: 20px;
padding-top: 20px;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 30px;
}
@page {
size: auto;
/* auto is the initial value */
margin: 3mm;
/* this affects the margin in the printer settings */
}
.el-range-editor.el-input__inner {
padding: 0px 15px;
height: 32px !important;
line-height: 32px !important;
}
.el-input.is-disabled .el-input__inner {
background-color: #ffffff;
border-color: #e4e7ed;
color: #333;
cursor: not-allowed;
}
.el-textarea.is-disabled .el-textarea__inner {
background-color: #ffffff;
border-color: #e4e7ed;
color: #333;
cursor: not-allowed;
}
#app .hideSidebar .router-link-active>li {
background-color: #0a5dac !important;
} | src/styles/index.css | @charset "UTF-8";
:export {
menuText: #ffffff;
menuActiveText: #ffffff;
subMenuActiveText: #f4f4f5;
menuBg: #0d74d7;
menuHover: #175eb6;
menuSelect: #175eb6;
subMenuBg: #ffffff;
subMenuHover: #11386d;
sideBarWidth: 210px;
}
/* fade */
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.28s;
}
.fade-enter,
.fade-leave-active {
opacity: 0;
}
/* fade-transform */
.fade-transform-leave-active,
.fade-transform-enter-active {
transition: all 0.5s;
}
.fade-transform-enter {
opacity: 0;
transform: translateX(-30px);
}
.fade-transform-leave-to {
opacity: 0;
transform: translateX(30px);
}
/* breadcrumb transition */
.breadcrumb-enter-active,
.breadcrumb-leave-active {
transition: all 0.5s;
}
.breadcrumb-enter,
.breadcrumb-leave-active {
opacity: 0;
transform: translateX(20px);
}
.breadcrumb-move {
transition: all 0.5s;
}
.breadcrumb-leave-active {
position: absolute;
}
.el-breadcrumb__inner,
.el-breadcrumb__inner a {
font-weight: 400 !important;
color: #ffffff !important;
}
.el-breadcrumb__item:hover {
cursor: pointer
}
body {
overflow: auto !important;
}
.el-upload input[type='file'] {
display: none !important;
}
.el-upload__input {
display: none;
}
.el-dialog {
transform: none;
left: 0;
position: relative;
margin: 0 auto;
}
.upload-container .el-upload {
width: 100%;
}
.upload-container .el-upload .el-upload-dragger {
width: 100%;
height: 200px;
}
.el-dropdown-menu a {
display: block;
}
.el-range-separator {
box-sizing: content-box;
}
.isShow {
display: none;
}
.yjTabs.el-tabs>.el-tabs__header {
border-radius: 4px;
background-color: #fff;
margin: 20px 25px 0;
}
.yjTabs.el-tabs>.el-tabs__header .el-tabs__nav-wrap.is-scrollable {
padding-right: 90px;
}
.yjTabs.el-tabs>.el-tabs__header .el-tabs__nav-wrap.is-scrollable span[class^='el-tabs__nav'] {
line-height: 56px;
}
.yjTabs.el-tabs>.el-tabs__header .el-tabs__item.is-top {
padding: 0 48px 0 18px;
height: 56px;
line-height: 56px;
color: #999999;
font-size: 14px;
}
.yjTabs.el-tabs>.el-tabs__header .el-tabs__item.is-active {
font-size: 16px !important;
color: #5583fe !important;
}
.yjTabs.el-tabs>.el-tabs__header .el-tabs__active-bar {
height: 4px;
}
.el-button.refreshBtn {
padding: 0;
position: absolute;
width: 32px;
height: 32px;
top: 0;
right: -40px;
transform: translate(-103px, 112px);
border: 1px solid #5583fe;
z-index: 999;
}
.el-tooltip__popper.is-dark {
display: none !important;
background: none;
}
.sdialog .el-dialog.el-dialog--center {
min-height: 75vh;
padding-bottom: 20px;
overflow: hidden;
}
.sdialog .el-transfer-panel__body,
.sdialog .el-transfer-panel__list {
min-height: 256px;
height: 100%;
}
.s_dialog .el-dialog__body {
overflow: hidden;
}
.s_dialog .right .el-card__body {
padding-bottom: 100px;
}
.tDialog {
margin-top: 3rem !important;
height: 95%;
border-radius: 10px;
}
.tDialog .el-dialog__body {
height: 100%;
}
.tDialog .el-dialog__body .el-tabs.el-tabs--top.el-tabs--border-card {
height: 90%;
}
.tDialog .el-tabs__content {
height: 95%;
overflow: auto;
}
table .cell button.el-button--text {
padding: 0 !important;
}
table .cell button.el-button--text:first-child {
padding-left: 10px !important;
}
.yhImg img {
max-width: 85%;
}
.safe_main {
padding: 15px 25px;
}
.safe_main .sxForm,
.safe_main .sxTable {
background-color: #fff;
border-radius: 4px;
}
.safe_main .formTitle {
border-left: 4px solid #5583fe;
padding-left: 10px;
text-align: left;
}
.safe_main .formTitle .el-form-item__label-wrap {
margin-left: 0 !important;
}
.safe_main .sxForm {
padding: 0 20px;
padding-top: 20px;
margin-bottom: 20px;
}
.safe_main .sxForm .el-button {
padding: 0px;
width: 85px;
height: 32px;
}
.safe_main .sxForm .el-button:first-child {
background-color: #5583fe;
border-color: #005ebc;
color: #ffffff;
border-radius: 2px;
border: 1px solid #5583fe;
text-align: center;
font-size: 16px;
}
.safe_main .sxForm .el-button:hover {
color: #409eff;
border-color: #c6e2ff;
background-color: #ecf5ff;
}
.safe_main .sxTable {
padding: 10px;
}
.safe_main .sxTable .el-button {
margin-bottom: 10px;
padding: 0px 10px;
height: 32px;
}
.safe_main .sxTable .cz.el-button {
background-color: #32c5ff;
color: #ffffff;
}
.safe_main .sxTable .el-button.el-button--default:hover {
color: #409eff;
border-color: #c6e2ff;
background-color: #ecf5ff;
}
.safe_main .sxTable .el-table {
margin-bottom: 10px;
}
.safe_main .sxTable .el-pagination {
text-align: center;
}
.safe_main .sxTable.addSafety .el-input__icon {
line-height: 1 !important;
}
.safe_main .el-dialog__header {
border-bottom: 1px solid #eee !important;
}
.safe_main .el-dialog__footer {
border-top: 1px solid #eee !important;
padding-bottom: 10px;
}
.safe_main .footer .el-input__icon {
line-height: 1 !important;
}
.safe_main .height40 {
height: 40px;
line-height: 40px;
font-size: 16px;
font-weight: 600;
}
.safe_main .isSure .el-dialog__body {
font-size: 25px;
text-align: center;
}
#qrcode canvas,
#qrcode img {
display: block;
margin: auto;
width: 100%;
height: 100%;
max-width: 258px;
max-height: 258px;
}
.safety-plan .change-form .el-form-item {
display: block;
}
.safety-plan .change-form .el-input {
width: 80%;
}
.safety-plan .change-form .el-cascader {
width: 80%;
}
.safety-plan .change-form .el-select {
width: 80%;
}
.safety-plan .change-form .el-select .el-input {
width: 100%;
}
.safety-plan .change-form .el-form-item__label {
width: 160px;
}
.manageClass {
/* .form-table .el-form-item {
width: 49%;
display: inline-block;
} */
/* .row-height .el-col {
background: #ffffff;
height: 580px;
position: relative;
border-radius: 5px;
}
.row-height {
height: 580px;
border-radius: 5px;
} */
}
.manageClass .people-content {
border-radius: 5px;
}
.manageClass .choose-help {
cursor: pointer;
}
.manageClass .page-tit {
font-size: 18px;
background: #ffffff;
height: 45px;
line-height: 45px;
margin-bottom: 10px;
padding-left: 15px;
border-radius: 5px;
}
.manageClass .area-tit {
font-size: 18px;
height: 50px;
line-height: 50px;
color: #333;
padding-left: 15px;
margin-top: 10px;
}
.manageClass .area-tit:before {
display: inline-block;
content: '';
width: 4px;
height: 20px;
background: #0d74d7;
vertical-align: -4px;
margin-right: 9px;
}
.manageClass .form-table textarea input {
height: 35px;
line-height: 35px;
}
.manageClass .form-table .el-form-item__label {
width: 115px !important;
}
.manageClass .form-table .el-form-item__content {
margin-left: 115px !important;
}
.manageClass .avatar-uploader .el-upload {
border: 1px dashed #d9d9d9;
border-radius: 6px;
cursor: pointer;
position: relative;
overflow: hidden;
}
.manageClass .avatar-uploader .el-upload:hover {
border-color: #409eff;
}
.manageClass .avatar-uploader-icon {
font-size: 28px;
color: #8c939d;
width: 300px;
height: 300px;
line-height: 300px;
text-align: center;
}
.manageClass .avatar {
width: 200px;
height: 200px;
display: block;
}
.manageClass .img-head {
text-align: center;
margin-top: 130px;
}
.manageClass .lce {
background: #ffffff;
height: 260px;
border-radius: 5px;
}
.manageClass .people-tree {
height: 130px;
overflow-y: scroll;
z-index: 99;
}
.manageClass .lce .avatar-uploader-icon {
height: 200px;
line-height: 200px;
}
.manageClass .lce .img-head {
margin-top: 0px;
}
.manageClass .manage-basic {
background: #ffffff;
}
.manageClass .manage-details table {
width: 94%;
border: 1px solid #ddd;
border-collapse: collapse;
border-spacing: 0px;
margin: 0px 20px;
}
.manageClass .manage-details table tr {
height: 45px;
line-height: 45px;
border: 1px solid #ddd;
}
.manageClass .manage-details table td {
border: 1px solid #ddd;
padding-left: 15px;
}
.manageClass .manage-details .el-form-item__label {
font-weight: 500;
}
.manageClass .manage-details table td:first-child {
width: 35%;
}
.manageClass .manage-basic .el-input.is-disabled .el-input__inner {
border: none;
}
.manageClass .manage-sign {
background: #ffffff;
margin-top: 20px;
}
.manageClass .user-img {
width: 156px;
height: 97px;
}
.manageClass .manage-sign .sign-form {
border: 1px solid #d9d9d9;
margin-left: 15px;
width: 80%;
height: 366px;
}
.manageClass .manage-sign .sign-form .sign-tit {
font-size: 14px;
padding: 18px 0px;
display: inline-block;
}
.manageClass .manage-sign .sign-form .sign-name {
color: #929292;
font-size: 14px;
}
.manageClass .manage-sign .sign-form .sign-area {
height: 180px;
border-bottom: 1px solid #d9d9d9;
padding-left: 20px;
}
.manageClass .cancel_buton {
background-color: #ffffff;
}
.manageClass .cancel_buton .cancel-btn {
margin: 20px;
}
.manageClass .manage-basic .el-input.is-disabled .el-input__inner {
padding: 0;
}
.speDetail {
/* .form-table .el-form-item {
width: 49%;
display: inline-block;
} */
/* .row-height .el-col {
background: #ffffff;
height: 580px;
position: relative;
border-radius: 5px;
}
.row-height {
height: 580px;
border-radius: 5px;
} */
}
.speDetail .people-content {
border-radius: 5px;
}
.speDetail .choose-help {
cursor: pointer;
}
.speDetail .page-tit {
font-size: 18px;
background: #ffffff;
height: 45px;
line-height: 45px;
margin-bottom: 10px;
padding-left: 15px;
border-radius: 5px;
}
.speDetail .area-tit {
font-size: 18px;
height: 50px;
line-height: 50px;
color: #333;
padding-left: 15px;
margin-top: 10px;
}
.speDetail .area-tit:before {
display: inline-block;
content: '';
width: 4px;
height: 20px;
background: #0d74d7;
vertical-align: -4px;
margin-right: 9px;
}
.speDetail .form-table textarea input {
height: 35px;
line-height: 35px;
}
.speDetail .form-table .el-form-item__label {
width: 130px !important;
}
.speDetail .form-table .el-form-item__content {
margin-left: 130px !important;
}
.speDetail .avatar-uploader .el-upload {
border: 1px dashed #d9d9d9;
border-radius: 6px;
cursor: pointer;
position: relative;
overflow: hidden;
}
.speDetail .avatar-uploader .el-upload:hover {
border-color: #409eff;
}
.speDetail .avatar-uploader-icon {
font-size: 28px;
color: #8c939d;
width: 300px;
height: 300px;
line-height: 300px;
text-align: center;
}
.speDetail .avatar {
width: 200px;
height: 200px;
display: block;
}
.speDetail .img-head {
text-align: center;
margin-top: 130px;
}
.speDetail .lce {
background: #ffffff;
height: 260px;
border-radius: 5px;
}
.speDetail .people-tree {
height: 130px;
overflow-y: scroll;
z-index: 99;
}
.speDetail .lce .avatar-uploader-icon {
height: 200px;
line-height: 200px;
}
.speDetail .lce .img-head {
margin-top: 0px;
}
.speDetail .manage-basic {
background: #ffffff;
}
.speDetail .manage-details .el-form-item__label {
font-weight: 500;
}
.speDetail .manage-details table td:first-child {
width: 35%;
}
.speDetail .manage-basic .el-input.is-disabled .el-input__inner {
border: none;
}
.speDetail .spe-table {
background: #ffffff;
margin-top: 20px;
}
.speDetail .spe-table table {
width: 100%;
border: 1px solid #ddd;
border-collapse: collapse;
border-spacing: 0px;
}
.speDetail .spe-table table tr,
.speDetail .spe-table table th {
height: 45px;
line-height: 45px;
border: 1px solid #ddd;
}
.speDetail .spe-table table td {
border: 1px solid #ddd;
padding-left: 15px;
}
.speDetail .rightbutton {
text-align: right;
}
#app .main-container {
min-height: 100%;
transition: margin-left 0.28s;
margin-left: 210px;
position: relative;
}
#app .sidebar-container {
transition: width 0.28s;
width: 210px !important;
background-color: #0d74d7;
height: 100%;
position: fixed;
font-size: 0px;
top: 0px;
bottom: 0;
left: 0;
z-index: 1001;
overflow: hidden;
}
#app .sidebar-container .horizontal-collapse-transition {
transition: 0s width ease-in-out, 0s padding-left ease-in-out, 0s padding-right ease-in-out;
}
#app .sidebar-container .scrollbar-wrapper {
overflow-x: hidden !important;
padding-top: 80px;
}
#app .sidebar-container .el-scrollbar__bar.is-vertical {
right: 0px;
}
#app .sidebar-container .el-scrollbar {
height: 100%;
}
#app .sidebar-container.has-logo .el-scrollbar {
height: calc(100% - 50px);
}
#app .sidebar-container .is-horizontal {
display: none;
}
#app .sidebar-container a {
display: inline-block;
width: 100%;
overflow: hidden;
}
#app .sidebar-container .svg-icon {
margin-right: 16px;
}
#app .sidebar-container .el-menu {
border: none;
height: 100%;
width: 100% !important;
}
#app .sidebar-container .submenu-title-noDropdown:hover,
#app .sidebar-container .el-submenu__title:hover {
background-color: #175eb6 !important;
}
#app .sidebar-container .is-active>.el-submenu__title {
color: #f4f4f5 !important;
}
#app .sidebar-container .nest-menu .el-submenu>.el-submenu__title,
#app .sidebar-container .el-submenu .el-menu-item {
min-width: 210px !important;
}
#app .sidebar-container .nest-menu .el-submenu>.el-submenu__title:hover,
#app .sidebar-container .el-submenu .el-menu-item:hover {
background-color: #11386d !important;
}
#app .hideSidebar .sidebar-container {
width: 7% !important;
}
#app .hideSidebar .el-submenu__title {
height: 85px;
}
#app .hideSidebar .main-container {
margin-left: 0px;
}
#app .hideSidebar .app-main {
width: 93%;
margin-left: 7%;
}
#app .hideSidebar .submenu-title-noDropdown {
padding: 0 !important;
position: relative;
}
#app .hideSidebar .submenu-title-noDropdown .el-tooltip {
padding: 0 !important;
}
#app .hideSidebar .submenu-title-noDropdown .el-tooltip .svg-icon {
margin-left: 20px;
}
#app .hideSidebar .el-submenu {
overflow: hidden;
}
#app .hideSidebar .el-submenu>.el-submenu__title {
padding: 0 !important;
}
#app .hideSidebar .el-submenu>.el-submenu__title .svg-icon {
margin-left: 20px;
}
#app .hideSidebar .el-submenu>.el-submenu__title .el-submenu__icon-arrow {
display: none;
}
#app .hideSidebar .el-menu--collapse .el-submenu>.el-submenu__title>span {
height: 0;
width: 0;
overflow: hidden;
visibility: hidden;
display: inline-block;
}
#app .el-menu--collapse .el-menu .el-submenu {
min-width: 210px !important;
}
#app .mobile .main-container {
margin-left: 0px;
}
#app .mobile .sidebar-container {
transition: transform 0.28s;
width: 210px !important;
}
#app .mobile.hideSidebar .sidebar-container {
pointer-events: none;
transition-duration: 0.3s;
transform: translate3d(-210px, 0, 0);
}
#app .withoutAnimation .main-container,
#app .withoutAnimation .sidebar-container {
transition: none;
}
.el-menu--vertical>.el-menu .svg-icon {
margin-right: 16px;
}
.el-menu--vertical .nest-menu .el-submenu>.el-submenu__title:hover,
.el-menu--vertical .el-menu-item:hover {
background-color: #175eb6 !important;
}
.el-menu--vertical>.el-menu--popup {
max-height: 100vh;
overflow-y: auto;
}
.el-menu--vertical>.el-menu--popup::-webkit-scrollbar-track-piece {
background: #d3dce6;
}
.el-menu--vertical>.el-menu--popup::-webkit-scrollbar {
width: 6px;
}
.el-menu--vertical>.el-menu--popup::-webkit-scrollbar-thumb {
background: #99a9bf;
border-radius: 20px;
}
body {
height: 100%;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
font-family: Helvetica Neue, Helvetica, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Arial, sans-serif;
}
label {
font-weight: 700;
}
html {
height: 100%;
box-sizing: border-box;
}
#app {
height: 100%;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
a:focus,
a:active {
outline: none;
}
a,
a:focus,
a:hover {
cursor: pointer;
color: inherit;
text-decoration: none;
}
div:focus {
outline: none;
}
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: ' ';
clear: both;
height: 0;
}
.app-container {
padding: 15px 25px;
}
.el-form-item__content>.el-input>.el-input__inner {
height: 32px !important;
line-height: 32px !important;
}
.safeCheckTime .el-form-item__content>.el-input>.el-input__inner {
height: 40px !important;
line-height: 40px !important;
}
.query-btn {
background-color: #5583fe;
border-color: #005ebc;
color: #ffffff;
border-radius: 2px;
height: 32px;
border: 1px solid #5583fe;
padding: 0px;
text-align: center;
font-size: 16px;
width: 85px;
}
.reset-btn {
cursor: pointer;
background: #fff;
border: 1px solid #dcdfe6;
height: 32px;
border-radius: 2px;
padding: 0px;
text-align: center;
font-size: 16px;
width: 85px;
}
.el-pagination {
margin-top: 20px;
text-align: right;
padding-bottom: 56px;
}
.el-pagination__total {
font-weight: 700;
}
.el-pagination.is-background .el-pager li:not(.disabled).active {
border: 1px solid #7facff;
border-radius: 5px;
color: #ffffff;
background: #5583fe;
}
.el-pagination.is-background .btn-next,
.el-pagination.is-background .btn-prev,
.el-pagination.is-background .el-pager li {
border: 1px solid #e4e4e4;
color: #454545;
background: #fff;
}
.el-pagination.is-background .el-pager li:not(.disabled):hover {
border: 1px solid #7facff;
border-radius: 5px;
color: #008bff;
background: #fff;
}
.openSidebar .navbar {
width: calc(100% - 210px) !important;
}
.nest-menu .is-active {
background-color: #5583fe !important;
}
.el-pagination .el-input__inner {
font-weight: 700;
}
::-webkit-scrollbar {
/*滚动条整体样式*/
width: 1px;
/*高宽分别对应横竖滚动条的尺寸*/
height: 1px;
}
::-webkit-scrollbar-thumb {
/*滚动条里面小方块*/
border-radius: 10px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
background: #535353;
}
::-webkit-scrollbar-track {
/*滚动条里面轨道*/
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
border-radius: 10px;
background: #ededed;
}
.el-table th {
background: #edf2ff;
}
/* .el-table--enable-row-hover .el-table__body tr:hover > td {
background-color: #edf2ff !important;
} */
.el-table .active-row {
background: #edf2ff;
}
.el-button--text {
color: #5583fe;
}
.table-import-btn {
background-color: #5583fe;
color: #ffffff;
padding: 0px;
width: 85px;
height: 32px;
}
.table-add-btn {
background-color: #32c5ff;
padding: 0px;
width: 85px;
height: 32px;
color: #ffffff;
}
.table-default-btn {
padding: 0px;
width: 85px;
height: 32px;
}
.confirm-btn {
width: 69px;
height: 32px;
line-height: 32px;
background: #5583fe;
padding: 0px;
color: #ffffff;
}
.el-button.confirm-btn {
line-height: 30px;
}
.cancel-btn {
padding: 0px;
width: 69px;
height: 32px;
line-height: 32px;
}
.avatar-container img {
width: 40px;
height: 40px;
border-radius: 50%;
position: relative;
top: 15px;
left: 5px;
}
.table-query-form {
background: #fff;
padding: 20px 15px 0px 15px;
border-radius: 4px;
}
.table-list {
background: #fff;
margin-top: 20px;
padding-top: 20px;
padding-left: 15px;
padding-right: 15px;
padding-bottom: 30px;
}
@page {
size: auto;
/* auto is the initial value */
margin: 3mm;
/* this affects the margin in the printer settings */
}
.el-range-editor.el-input__inner {
padding: 0px 15px;
height: 32px !important;
line-height: 32px !important;
}
.el-input.is-disabled .el-input__inner {
background-color: #ffffff;
border-color: #e4e7ed;
color: #333;
cursor: not-allowed;
}
.el-textarea.is-disabled .el-textarea__inner {
background-color: #ffffff;
border-color: #e4e7ed;
color: #333;
cursor: not-allowed;
}
#app .hideSidebar .router-link-active>li {
background-color: #0a5dac !important;
} | 0.397938 | 0.060197 |
body {
padding-top: 75px;
background-color: #e2e2e2 !important;
}
header .navbar {
-webkit-box-shadow: 0 8px 6px -6px #999;
-moz-box-shadow: 0 8px 6px -6px #999;
box-shadow: 0 8px 6px -6px #999;
background-color: white;
}
header .navbar-brand {
font-size: 1.4em;
font-weight: 200;
}
main .container {
margin-bottom: 2em;
border: 1px solid #ddd;
background-color: #ffffff;
padding-top: 1.5em;
padding-bottom: 1.5em;
border-radius: .3em;
box-shadow: 0 1px 3px #cccccc;
margin-left: 12%;
width: 53%;
position: relative;
}
@media (max-width: 500px) {
main .sidebar {
display: none;
}
main .container {
margin-bottom: 2em;
border: 1px solid #ddd;
background-color: #ffffff;
padding-top: 1.5em;
padding-bottom: 1.5em;
border-radius: .3em;
box-shadow: 0 1px 3px #cccccc;
margin-left: 8%;
margin-right: 8%;
width: auto;
}
}
main .sidebar {
margin-bottom: 2em;
border: 1px solid #ddd;
background-color: #ffffff;
padding-top: 1.2em;
padding-bottom: 1.2em;
padding-left: 1.2em;
padding-right: 1.2em;
border-radius: .3em;
box-shadow: 0 1px 3px #cccccc;
margin-right: 12%;
width: 21%;
float: right;
}
.page-header {
margin: 0;
}
.page-header h1 {
margin: 0;
font-weight: 100;
font-size: 2em;
}
.navbar-form {
position: relative;
right: 10px;
}
.navbar-form button[type="submit"] {
position: absolute;
top: 24%;
right: 20px;
background: none;
border: none;
color: #8590a6;
}
.form-signin {
max-width: 330px;
padding: 15px;
margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
margin-bottom: 10px;
}
.form-signin .checkbox {
font-weight: normal;
}
.form-signin .form-control {
position: relative;
height: auto;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 10px;
font-size: 16px;
}
.form-signin .form-control:focus {
z-index: 2;
}
.form-signin input[type="email"] {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.remove-todo {
color: #bbbbbb;
font-size: 0.85em;
padding-top: 0.3em;
float: right;
display: none;
cursor: pointer;
}
.remove-todo:hover {
color: #333333;
}
.edit-todo {
color: #bbbbbb;
font-size: 0.85em;
display: none;
cursor: pointer;
}
.edit-todo:hover {
color: #333333;
} | static/css/todo.css | body {
padding-top: 75px;
background-color: #e2e2e2 !important;
}
header .navbar {
-webkit-box-shadow: 0 8px 6px -6px #999;
-moz-box-shadow: 0 8px 6px -6px #999;
box-shadow: 0 8px 6px -6px #999;
background-color: white;
}
header .navbar-brand {
font-size: 1.4em;
font-weight: 200;
}
main .container {
margin-bottom: 2em;
border: 1px solid #ddd;
background-color: #ffffff;
padding-top: 1.5em;
padding-bottom: 1.5em;
border-radius: .3em;
box-shadow: 0 1px 3px #cccccc;
margin-left: 12%;
width: 53%;
position: relative;
}
@media (max-width: 500px) {
main .sidebar {
display: none;
}
main .container {
margin-bottom: 2em;
border: 1px solid #ddd;
background-color: #ffffff;
padding-top: 1.5em;
padding-bottom: 1.5em;
border-radius: .3em;
box-shadow: 0 1px 3px #cccccc;
margin-left: 8%;
margin-right: 8%;
width: auto;
}
}
main .sidebar {
margin-bottom: 2em;
border: 1px solid #ddd;
background-color: #ffffff;
padding-top: 1.2em;
padding-bottom: 1.2em;
padding-left: 1.2em;
padding-right: 1.2em;
border-radius: .3em;
box-shadow: 0 1px 3px #cccccc;
margin-right: 12%;
width: 21%;
float: right;
}
.page-header {
margin: 0;
}
.page-header h1 {
margin: 0;
font-weight: 100;
font-size: 2em;
}
.navbar-form {
position: relative;
right: 10px;
}
.navbar-form button[type="submit"] {
position: absolute;
top: 24%;
right: 20px;
background: none;
border: none;
color: #8590a6;
}
.form-signin {
max-width: 330px;
padding: 15px;
margin: 0 auto;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
margin-bottom: 10px;
}
.form-signin .checkbox {
font-weight: normal;
}
.form-signin .form-control {
position: relative;
height: auto;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 10px;
font-size: 16px;
}
.form-signin .form-control:focus {
z-index: 2;
}
.form-signin input[type="email"] {
margin-bottom: -1px;
border-bottom-right-radius: 0;
border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
margin-bottom: 10px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
.remove-todo {
color: #bbbbbb;
font-size: 0.85em;
padding-top: 0.3em;
float: right;
display: none;
cursor: pointer;
}
.remove-todo:hover {
color: #333333;
}
.edit-todo {
color: #bbbbbb;
font-size: 0.85em;
display: none;
cursor: pointer;
}
.edit-todo:hover {
color: #333333;
} | 0.413832 | 0.11928 |
.ic-main-section {
padding-top: 32px;
padding-bottom: 49px; }
.ic-main-section .ic-header {
overflow: hidden;
position: relative;
text-align: center;
font-size: 18px;
margin-bottom: 46px; }
.ic-main-section .ic-header-content {
position: absolute;
bottom: 0px;
left: 0;
right: 0;
z-index: 1;
text-align: center;
color: #fff;
line-height: 430px; }
.ic-main-section .ic-title {
font-size: 39px;
line-height: normal;
display: block;
vertical-align: middle;
font-weight: normal;
position: relative;
margin: 0 auto 20px auto;
color: #323e26;
text-transform: uppercase; }
.ic-main-section .ic-title > span {
display: inline-block;
position: relative;
padding: 34px 0; }
.ic-main-section .ic-title > span:before {
content: "";
position: absolute;
height: 1px;
background: #323e26;
left: 36px;
right: 36px;
bottom: 0; }
.ic-main-section .ic-content {
margin: 0 130px 37px 130px;
color: #3c320f;
font-size: 15px;
line-height: 22px;
text-align: left; }
.ic-main-section .ic-content time {
font-style: italic; }
.ic-main-section .ic-content h1 {
width: 600px;
font-family: Helvetica-neue-roman, Arial,sans-serif;
font-size: 34px;
margin-bottom: 24px;
color: #3c320f;
font-weight: normal;
text-transform: none; }
.ic-main-section .ic-content h2 {
width: 800px;
font-family: Helvetica-neue-roman, Arial,sans-serif;
font-size: 34px;
margin-bottom: 24px;
color: #3c320f;
font-weight: normal;
text-transform: none; }
.ic-main-section .ic-content h3 {
width: 800px;
font-family: Helvetica-neue-roman, Arial,sans-serif;
font-size: 30px;
margin-bottom: 24px;
color: #3c320f;
font-weight: normal;
text-transform: none; }
.ic-main-section .ic-content h4 {
width: 800px;
font-family: Helvetica-neue-roman, Arial,sans-serif;
font-size: 26px;
margin-bottom: 24px;
color: #3c320f;
font-weight: normal;
text-transform: none; }
.ic-main-section .ic-content h5 {
width: 800px;
font-family: Helvetica-neue-roman, Arial,sans-serif;
font-size: 22px;
margin-bottom: 24px;
color: #3c320f;
font-weight: normal;
text-transform: none; }
.ic-main-section .ic-content h6 {
width: 800px;
font-family: Helvetica-neue-roman, Arial,sans-serif;
font-size: 18px;
margin-bottom: 24px;
color: #3c320f;
font-weight: normal;
text-transform: none; }
.ic-main-section .ic-content p {
width: 800px;
margin-bottom: 24px; }
.ic-main-section .ic-content ul {
width: 800px;
list-style: disc;
margin: 0 15px 24px 15px; }
.ic-main-section .ic-content ul ul {
margin: 10px 0 12px 25px; }
.ic-main-section .ic-content ol {
width: 800px;
list-style: decimal;
margin: 0 15px 24px 20px; }
.ic-main-section .ic-content ol ol {
margin: 10px 0 12px 25px; }
.ic-main-section .ic-content li {
margin-bottom: 5px; }
.ic-main-section .ic-content table {
max-width: 800px;
margin-bottom: 24px;
font-size: 100%;
width: auto;
border: 1px solid #3c320f; }
.ic-main-section .ic-content th,
.ic-main-section .ic-content td {
border: 1px solid #3c320f;
padding: 4px;
text-align: left; }
.ic-main-section .ic-content th {
font-weight: bold;
text-align: center; }
.ic-main-section .ic-content a,
.ic-main-section .ic-content a font {
color: #3c320f;
text-decoration: underline; }
.ic-main-section .ic-content a:hover,
.ic-main-section .ic-content a:hover font {
text-decoration: none; }
.ic-main-section .ic-content img {
margin: 0 0 24px 0; }
.ic-main-section .ic-content img[align=left] {
margin: 0 10px 24px 0;
float: left; }
.ic-main-section .ic-content img[align=right] {
margin: 0 0 24px 10px;
float: right; }
.ic-main-section .ic-content dl {
width: 800px;
margin: 0 0 24px 0; }
.ic-main-section .ic-content dt {
font-weight: bold;
margin-bottom: 2px; }
.ic-main-section .ic-content dd {
margin-bottom: 5px; }
.ic-main-section .ic-content hr {
width: 800px;
height: 1px;
border: none;
color: #3c320f;
background: #3c320f;
margin: 24px 0;
clear: both; }
.ic-main-section .ic-content-footer {
text-align: center; } | frontend/web/markup/works/extreme/css/content.css | .ic-main-section {
padding-top: 32px;
padding-bottom: 49px; }
.ic-main-section .ic-header {
overflow: hidden;
position: relative;
text-align: center;
font-size: 18px;
margin-bottom: 46px; }
.ic-main-section .ic-header-content {
position: absolute;
bottom: 0px;
left: 0;
right: 0;
z-index: 1;
text-align: center;
color: #fff;
line-height: 430px; }
.ic-main-section .ic-title {
font-size: 39px;
line-height: normal;
display: block;
vertical-align: middle;
font-weight: normal;
position: relative;
margin: 0 auto 20px auto;
color: #323e26;
text-transform: uppercase; }
.ic-main-section .ic-title > span {
display: inline-block;
position: relative;
padding: 34px 0; }
.ic-main-section .ic-title > span:before {
content: "";
position: absolute;
height: 1px;
background: #323e26;
left: 36px;
right: 36px;
bottom: 0; }
.ic-main-section .ic-content {
margin: 0 130px 37px 130px;
color: #3c320f;
font-size: 15px;
line-height: 22px;
text-align: left; }
.ic-main-section .ic-content time {
font-style: italic; }
.ic-main-section .ic-content h1 {
width: 600px;
font-family: Helvetica-neue-roman, Arial,sans-serif;
font-size: 34px;
margin-bottom: 24px;
color: #3c320f;
font-weight: normal;
text-transform: none; }
.ic-main-section .ic-content h2 {
width: 800px;
font-family: Helvetica-neue-roman, Arial,sans-serif;
font-size: 34px;
margin-bottom: 24px;
color: #3c320f;
font-weight: normal;
text-transform: none; }
.ic-main-section .ic-content h3 {
width: 800px;
font-family: Helvetica-neue-roman, Arial,sans-serif;
font-size: 30px;
margin-bottom: 24px;
color: #3c320f;
font-weight: normal;
text-transform: none; }
.ic-main-section .ic-content h4 {
width: 800px;
font-family: Helvetica-neue-roman, Arial,sans-serif;
font-size: 26px;
margin-bottom: 24px;
color: #3c320f;
font-weight: normal;
text-transform: none; }
.ic-main-section .ic-content h5 {
width: 800px;
font-family: Helvetica-neue-roman, Arial,sans-serif;
font-size: 22px;
margin-bottom: 24px;
color: #3c320f;
font-weight: normal;
text-transform: none; }
.ic-main-section .ic-content h6 {
width: 800px;
font-family: Helvetica-neue-roman, Arial,sans-serif;
font-size: 18px;
margin-bottom: 24px;
color: #3c320f;
font-weight: normal;
text-transform: none; }
.ic-main-section .ic-content p {
width: 800px;
margin-bottom: 24px; }
.ic-main-section .ic-content ul {
width: 800px;
list-style: disc;
margin: 0 15px 24px 15px; }
.ic-main-section .ic-content ul ul {
margin: 10px 0 12px 25px; }
.ic-main-section .ic-content ol {
width: 800px;
list-style: decimal;
margin: 0 15px 24px 20px; }
.ic-main-section .ic-content ol ol {
margin: 10px 0 12px 25px; }
.ic-main-section .ic-content li {
margin-bottom: 5px; }
.ic-main-section .ic-content table {
max-width: 800px;
margin-bottom: 24px;
font-size: 100%;
width: auto;
border: 1px solid #3c320f; }
.ic-main-section .ic-content th,
.ic-main-section .ic-content td {
border: 1px solid #3c320f;
padding: 4px;
text-align: left; }
.ic-main-section .ic-content th {
font-weight: bold;
text-align: center; }
.ic-main-section .ic-content a,
.ic-main-section .ic-content a font {
color: #3c320f;
text-decoration: underline; }
.ic-main-section .ic-content a:hover,
.ic-main-section .ic-content a:hover font {
text-decoration: none; }
.ic-main-section .ic-content img {
margin: 0 0 24px 0; }
.ic-main-section .ic-content img[align=left] {
margin: 0 10px 24px 0;
float: left; }
.ic-main-section .ic-content img[align=right] {
margin: 0 0 24px 10px;
float: right; }
.ic-main-section .ic-content dl {
width: 800px;
margin: 0 0 24px 0; }
.ic-main-section .ic-content dt {
font-weight: bold;
margin-bottom: 2px; }
.ic-main-section .ic-content dd {
margin-bottom: 5px; }
.ic-main-section .ic-content hr {
width: 800px;
height: 1px;
border: none;
color: #3c320f;
background: #3c320f;
margin: 24px 0;
clear: both; }
.ic-main-section .ic-content-footer {
text-align: center; } | 0.413477 | 0.060446 |
pre {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.2em;
width: 55em;
text-align: justify;
line-height: 1.5;
color: #444;
}
pre .cm-m-testmode4 {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 2.2em;
width: 55em;
text-align: justify;
line-height: 1.5;
color: #444;
}
/* SWATCHES ---------------------------------------------------------------------- */
span.cm-builtin {
color: #00294a;
}
span.cm-unordered-list {
color: #008d5c;
font-weight: bold;
/* color: #008d5c;*/
}
span.cm-highlight {
color: lightgreen;
}
span.cm-hr {
color: #e88501;
}
.highlight {
color: lightgreen;
}
span.cm-strong {
font-weight: bold;
color: #008d5c;
}
span.cm-em {
font-style: italic;
font-weight: bold;
color: #008d5c
}
span.cm-quote {
border-left: 10px solid #eee;
padding: 0 20px;
margin-left: 20px;
display: block;
}
span.cm-strikethrough {
color: #bbb;
text-decoration: line-through;
}
span.cm-citation {
color: #ff3da5;
}
span.cm-hashtag {
color: #666;
font-weight: normal;
padding: 2px 5px 3px;
border-radius: 5px;
background: #eee;
/* background: #e88501;*/
font-size:90%;
}
span.cm-header-1 {
color: #446fbd;
font-size: 200%;
}
span.cm-header-2 {
color: #446fbd;
font-size: 150%;
}
span.cm-header-3 {
color: #446fbd;
font-size: 120%;
}
span.cm-figure-title, span.cm-table-title {
color: #008d5c;
font-weight: bold;
}
span.cm-meta {
color: #00294a;
}
span.cm-operator {
color: #00294a;
}
span.cm-qualifier {
color: #00294a;
}
span.cm-atom {
color: #008fff;
}
span.cm-link {
color: #008fff;
}
span.cm-number {
color: #008fff;
}
span.cm-string {
color: #e88501;
}
span.cm-string-2 {
color: #008fff;
}
span.cm-variable-2 {
color: #008d5c;
}
span.cm-variable-3 {
color: #008d5c;
}
span.cm-bracket {
color: #002cb8;
}
span.cm-tag {
color: #002cb8;
}
span.cm-attribute {
color: #008d5c;
}
span.cm-property {
color: #008d5c;
}
/* property after string */
/*
span.cm-comment {
color: #666;
background: #F7F2E0;
}
*/
span.cm-error {
color: #ff3da5;
}
span.cm-variable {
color: #0056ba;
}
/* MISC ---------------------------------------------------------------------- */
.CodeMirror {
line-height: 1.4;
}
.CodeMirror-scroll {
background: #fff;
color: #4d6071;
}
.CodeMirror-cursor {
border-left: 1px solid #000 !important;
}
.CodeMirror-overwrite .CodeMirror-cursor {
border-bottom: 1px solid #000 !important;
border-left: none !important;
}
.CodeMirror-gutters {
background: #fff;
border-right: 1px solid #e6eff4;
}
.CodeMirror-linenumber {
color: #a5bdc7;
}
.CodeMirror-selected {}
/* Active Line */
.CodeMirror-activeline-background {
background: #e7edf2 !important;
}
.CodeMirror-focused .CodeMirror-activeline .CodeMirror-gutter-elt {
color: #000;
background-color: transparent !important;
}
/* Matching Brackets and Tags */
.CodeMirror-matchingbracket {
background: #b2e7ff !important;
color: #000 !important;
}
.CodeMirror-matchingtag {
background: #cbeeff !important;
}
.CodeMirror-focused .CodeMirror-activeline .CodeMirror-nonmatchingbracket {
color: #ff3da5 !important;
}
/* Search Match */
/*
.CodeMirror-searching {
background-color: #ffcd2d;
color: #000 !important;
}
.CodeMirror-searching.searching-current-match {
background-color: #ff8500;
}
*/
/* Non-editor styling */
#image-holder,
#not-editor {
background-color: #fff;
}
#image-holder {
color: #4d6071;
} | markdown-theme BACKUP.css | pre {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 1.2em;
width: 55em;
text-align: justify;
line-height: 1.5;
color: #444;
}
pre .cm-m-testmode4 {
font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 2.2em;
width: 55em;
text-align: justify;
line-height: 1.5;
color: #444;
}
/* SWATCHES ---------------------------------------------------------------------- */
span.cm-builtin {
color: #00294a;
}
span.cm-unordered-list {
color: #008d5c;
font-weight: bold;
/* color: #008d5c;*/
}
span.cm-highlight {
color: lightgreen;
}
span.cm-hr {
color: #e88501;
}
.highlight {
color: lightgreen;
}
span.cm-strong {
font-weight: bold;
color: #008d5c;
}
span.cm-em {
font-style: italic;
font-weight: bold;
color: #008d5c
}
span.cm-quote {
border-left: 10px solid #eee;
padding: 0 20px;
margin-left: 20px;
display: block;
}
span.cm-strikethrough {
color: #bbb;
text-decoration: line-through;
}
span.cm-citation {
color: #ff3da5;
}
span.cm-hashtag {
color: #666;
font-weight: normal;
padding: 2px 5px 3px;
border-radius: 5px;
background: #eee;
/* background: #e88501;*/
font-size:90%;
}
span.cm-header-1 {
color: #446fbd;
font-size: 200%;
}
span.cm-header-2 {
color: #446fbd;
font-size: 150%;
}
span.cm-header-3 {
color: #446fbd;
font-size: 120%;
}
span.cm-figure-title, span.cm-table-title {
color: #008d5c;
font-weight: bold;
}
span.cm-meta {
color: #00294a;
}
span.cm-operator {
color: #00294a;
}
span.cm-qualifier {
color: #00294a;
}
span.cm-atom {
color: #008fff;
}
span.cm-link {
color: #008fff;
}
span.cm-number {
color: #008fff;
}
span.cm-string {
color: #e88501;
}
span.cm-string-2 {
color: #008fff;
}
span.cm-variable-2 {
color: #008d5c;
}
span.cm-variable-3 {
color: #008d5c;
}
span.cm-bracket {
color: #002cb8;
}
span.cm-tag {
color: #002cb8;
}
span.cm-attribute {
color: #008d5c;
}
span.cm-property {
color: #008d5c;
}
/* property after string */
/*
span.cm-comment {
color: #666;
background: #F7F2E0;
}
*/
span.cm-error {
color: #ff3da5;
}
span.cm-variable {
color: #0056ba;
}
/* MISC ---------------------------------------------------------------------- */
.CodeMirror {
line-height: 1.4;
}
.CodeMirror-scroll {
background: #fff;
color: #4d6071;
}
.CodeMirror-cursor {
border-left: 1px solid #000 !important;
}
.CodeMirror-overwrite .CodeMirror-cursor {
border-bottom: 1px solid #000 !important;
border-left: none !important;
}
.CodeMirror-gutters {
background: #fff;
border-right: 1px solid #e6eff4;
}
.CodeMirror-linenumber {
color: #a5bdc7;
}
.CodeMirror-selected {}
/* Active Line */
.CodeMirror-activeline-background {
background: #e7edf2 !important;
}
.CodeMirror-focused .CodeMirror-activeline .CodeMirror-gutter-elt {
color: #000;
background-color: transparent !important;
}
/* Matching Brackets and Tags */
.CodeMirror-matchingbracket {
background: #b2e7ff !important;
color: #000 !important;
}
.CodeMirror-matchingtag {
background: #cbeeff !important;
}
.CodeMirror-focused .CodeMirror-activeline .CodeMirror-nonmatchingbracket {
color: #ff3da5 !important;
}
/* Search Match */
/*
.CodeMirror-searching {
background-color: #ffcd2d;
color: #000 !important;
}
.CodeMirror-searching.searching-current-match {
background-color: #ff8500;
}
*/
/* Non-editor styling */
#image-holder,
#not-editor {
background-color: #fff;
}
#image-holder {
color: #4d6071;
} | 0.345216 | 0.116663 |
p, ul, ol, li, dl, address {
text-align: right;
}
ul {
margin-left: 0;
margin-right: 16px;
}
ol {
margin-left: 0;
margin-right: 20px;
}
table, td, th {
text-align: right;
}
blockquote, q {
border-left: none;
border-right: 1px solid #e3e3e3;
padding-left: 0;
padding-right: 20px;
}
/* basic structure
-------------------------------------------------------------- */
#main-content {
float: right;
}
#sidebar {
float: left;
margin-left: 0px;
margin-right: 40px;
}
.scroll-top {
left: 10px;
right: auto;
}
/* header
-------------------------------------------------------------- */
.site-title,
.header-logo {
float: right;
}
.header-icons {
left: 0;
right: auto;
}
.social-icon {
margin-left: 0;
margin-right: 5px;
}
.title-box {
float: right;
}
.menu-box {
float: left;
}
.header-image .header-image-text .header-image-link span {
background-image: url(images/header-image-link-rtl.png);
background-position: right 50%;
padding: 12px 70px 12px 40px;
}
/* menus */
.menu-box ul {
float: left;
}
.menu-box ul li {
float: right;
margin-right: 37px;
margin-left: 0;
}
.menu-box a,
.menu-box a:visited {
float: right;
}
.menu-box ul ul {
left: 0;
right: auto;
}
.menu-box ul ul ul {
left: auto;
right: -212px;
}
.top-navigation ul {
float: right;
z-index: 100;
}
.top-navigation ul li {
float: right;
margin-left: 30px;
margin-right: 0;
}
.top-navigation a,
.top-navigation a:visited {
float: right;
}
#wrapper #wrapper-header .top-navigation ul ul a,
#wrapper #wrapper-header .top-navigation ul ul a:visited {
text-align: right;
}
.top-navigation ul ul {
left: auto;
right: 0;
}
.top-navigation ul ul ul {
left: auto;
right: 250px;
}
/* main content
-------------------------------------------------------------- */
.content-headline h1 {
float: right;
}
.content-headline .breadcrumb-navigation {
float: left;
text-align: left;
}
.post-info .post-info-date,
.post-info .post-info-author,
.post-info .post-info-category,
.post-info .post-info-tags,
.post-info .post-info-comments {
background-position: right top;
}
.post-info .post-info-comments {
padding-right: 20px;
}
.post-info .read-more {
float: left;
}
#main-content .nav-previous {
float: right;
}
#main-content .nav-next {
float: left;
text-align: left;
}
/* default post entry */
.entry-headline-text {
padding-left: 15px;
padding-right: 0;
}
.attachment-post-thumbnail {
float: right;
margin-left: 25px;
margin-right: 0;
}
/* sidebar
-------------------------------------------------------------- */
.sidebar-widget ul li {
background: right top no-repeat url(images/sidebar-li-rtl.png);
padding-left: 0;
padding-right: 14px;
}
/* footer
-------------------------------------------------------------- */
.footer-widget-area {
float: right;
margin-left: 40px;
margin-right: 0;
}
#footer .footer-widget-area-3 {
margin-left: 0;
}
/* default widgets
-------------------------------------------------------------- */
#wp-calendar #prev {
text-align: right;
}
#wp-calendar #next {
text-align: left;
}
/* form fields
-------------------------------------------------------------- */
#searchform .searchform-wrapper #s {
padding: 5px 3% 5px 0;
left: auto;
right: 0;
}
#searchform .searchform-wrapper .send {
left: 0;
right: auto;
}
/* comments area
-------------------------------------------------------------- */
#comments ol {
margin-left: auto;
margin-right: 0;
}
#comments .avatar,
#comments .fn {
float: right;
margin: 0 0 0 6px
}
#comments time,
#comments .edit-link {
float: left;
}
/* media queries
-------------------------------------------------------------- */
@media screen and (max-width: 980px) {
.js .selectnav {
float: right;
}
#wrapper .content-headline .breadcrumb-navigation {
text-align: right;
}
} | blog/wp-content/themes/restimpo/rtl.css | p, ul, ol, li, dl, address {
text-align: right;
}
ul {
margin-left: 0;
margin-right: 16px;
}
ol {
margin-left: 0;
margin-right: 20px;
}
table, td, th {
text-align: right;
}
blockquote, q {
border-left: none;
border-right: 1px solid #e3e3e3;
padding-left: 0;
padding-right: 20px;
}
/* basic structure
-------------------------------------------------------------- */
#main-content {
float: right;
}
#sidebar {
float: left;
margin-left: 0px;
margin-right: 40px;
}
.scroll-top {
left: 10px;
right: auto;
}
/* header
-------------------------------------------------------------- */
.site-title,
.header-logo {
float: right;
}
.header-icons {
left: 0;
right: auto;
}
.social-icon {
margin-left: 0;
margin-right: 5px;
}
.title-box {
float: right;
}
.menu-box {
float: left;
}
.header-image .header-image-text .header-image-link span {
background-image: url(images/header-image-link-rtl.png);
background-position: right 50%;
padding: 12px 70px 12px 40px;
}
/* menus */
.menu-box ul {
float: left;
}
.menu-box ul li {
float: right;
margin-right: 37px;
margin-left: 0;
}
.menu-box a,
.menu-box a:visited {
float: right;
}
.menu-box ul ul {
left: 0;
right: auto;
}
.menu-box ul ul ul {
left: auto;
right: -212px;
}
.top-navigation ul {
float: right;
z-index: 100;
}
.top-navigation ul li {
float: right;
margin-left: 30px;
margin-right: 0;
}
.top-navigation a,
.top-navigation a:visited {
float: right;
}
#wrapper #wrapper-header .top-navigation ul ul a,
#wrapper #wrapper-header .top-navigation ul ul a:visited {
text-align: right;
}
.top-navigation ul ul {
left: auto;
right: 0;
}
.top-navigation ul ul ul {
left: auto;
right: 250px;
}
/* main content
-------------------------------------------------------------- */
.content-headline h1 {
float: right;
}
.content-headline .breadcrumb-navigation {
float: left;
text-align: left;
}
.post-info .post-info-date,
.post-info .post-info-author,
.post-info .post-info-category,
.post-info .post-info-tags,
.post-info .post-info-comments {
background-position: right top;
}
.post-info .post-info-comments {
padding-right: 20px;
}
.post-info .read-more {
float: left;
}
#main-content .nav-previous {
float: right;
}
#main-content .nav-next {
float: left;
text-align: left;
}
/* default post entry */
.entry-headline-text {
padding-left: 15px;
padding-right: 0;
}
.attachment-post-thumbnail {
float: right;
margin-left: 25px;
margin-right: 0;
}
/* sidebar
-------------------------------------------------------------- */
.sidebar-widget ul li {
background: right top no-repeat url(images/sidebar-li-rtl.png);
padding-left: 0;
padding-right: 14px;
}
/* footer
-------------------------------------------------------------- */
.footer-widget-area {
float: right;
margin-left: 40px;
margin-right: 0;
}
#footer .footer-widget-area-3 {
margin-left: 0;
}
/* default widgets
-------------------------------------------------------------- */
#wp-calendar #prev {
text-align: right;
}
#wp-calendar #next {
text-align: left;
}
/* form fields
-------------------------------------------------------------- */
#searchform .searchform-wrapper #s {
padding: 5px 3% 5px 0;
left: auto;
right: 0;
}
#searchform .searchform-wrapper .send {
left: 0;
right: auto;
}
/* comments area
-------------------------------------------------------------- */
#comments ol {
margin-left: auto;
margin-right: 0;
}
#comments .avatar,
#comments .fn {
float: right;
margin: 0 0 0 6px
}
#comments time,
#comments .edit-link {
float: left;
}
/* media queries
-------------------------------------------------------------- */
@media screen and (max-width: 980px) {
.js .selectnav {
float: right;
}
#wrapper .content-headline .breadcrumb-navigation {
text-align: right;
}
} | 0.356895 | 0.113432 |
position: relative;
width: 100%;
}
#tooplate_wrapper {
width: 954px;
height: 753px;
margin: 50px auto 20px;
background: url(../images/tooplate_content_bg.jpg) top left no-repeat;
}
#tooplate_sidebar {
float: left;
width: 296px;
padding: 80px 0 0;
}
#header {
width: 224px;
padding: 0 36px;
text-align: center;
margin-bottom: 100px;
}
#header h1 {
margin: 0;
padding: 0;
height: 60px;
display: block;
text-indent: - 10000px;
}
#menu {
width: 236px;
padding-left: 60px;
}
#content {
float: right;
width: 500px;
height: 600px;
padding: 80px 100px 80px 0;
}
.content_section {
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 1px dashed #ccc
}
.last_section {
margin: 0;
padding: 0;
border: 0;
}
#footer {
clear: both;
width: 900px;
padding: 0 27px;
margin: 0 auto;
}
#footer_left {
float: right;
width: 300px;
text-align: right
}
#footer a {
color: #bbb;
}
#social_box {
float: left;
height: 85px;
padding: 0;
text-align: right;
}
#social_box a {
display: inline-block;
margin-left: 20px;
width: 60px; height: 60px;
}
.scroll {
height: 640px;
width: 500px;
overflow: auto;
overflow-x: hidden;
position: relative;
clear: left;
}
.scrollContainer div.panel {
height: 640px;
width: 500px;
overflow: hidden;
}
ul.navigation {
list-style: none;
margin: 0 auto;
padding: 0;
}
ul.navigation li {
display: inline;
margin: 0;
padding: 0;
}
ul.navigation a {
display: block;
height: 47px;
padding: 12px 0 0 20px;
color: #fff;
font-size: 18px;
font-weight: 400;
text-decoration: none;
font-family: Georgia, "Times New Roman", Times, serif;
}
.menu_01
{ background-color: black;
}*
.menu_02 { background: url(../images/tooplate_menu_02.png) }
.menu_03 { background: url(../images/tooplate_menu_03.png) }
.menu_04 { background: url(../images/tooplate_menu_04.png) }
.menu_05 { background: url(../images/tooplate_menu_05.png) }
ul.navigation a:hover, ul.navigation a.selected {
color: #412810;
}
ul.navigation a:focus {
outline: none;
}
.scrollButtons {
position: absolute;
top: 300px;
cursor: pointer;
}
.scrollButtons.left {
left: 0
}
.scrollButtons.right {
right: 0
}
.hide {
display: none;
} | css/coda-slider.css | position: relative;
width: 100%;
}
#tooplate_wrapper {
width: 954px;
height: 753px;
margin: 50px auto 20px;
background: url(../images/tooplate_content_bg.jpg) top left no-repeat;
}
#tooplate_sidebar {
float: left;
width: 296px;
padding: 80px 0 0;
}
#header {
width: 224px;
padding: 0 36px;
text-align: center;
margin-bottom: 100px;
}
#header h1 {
margin: 0;
padding: 0;
height: 60px;
display: block;
text-indent: - 10000px;
}
#menu {
width: 236px;
padding-left: 60px;
}
#content {
float: right;
width: 500px;
height: 600px;
padding: 80px 100px 80px 0;
}
.content_section {
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 1px dashed #ccc
}
.last_section {
margin: 0;
padding: 0;
border: 0;
}
#footer {
clear: both;
width: 900px;
padding: 0 27px;
margin: 0 auto;
}
#footer_left {
float: right;
width: 300px;
text-align: right
}
#footer a {
color: #bbb;
}
#social_box {
float: left;
height: 85px;
padding: 0;
text-align: right;
}
#social_box a {
display: inline-block;
margin-left: 20px;
width: 60px; height: 60px;
}
.scroll {
height: 640px;
width: 500px;
overflow: auto;
overflow-x: hidden;
position: relative;
clear: left;
}
.scrollContainer div.panel {
height: 640px;
width: 500px;
overflow: hidden;
}
ul.navigation {
list-style: none;
margin: 0 auto;
padding: 0;
}
ul.navigation li {
display: inline;
margin: 0;
padding: 0;
}
ul.navigation a {
display: block;
height: 47px;
padding: 12px 0 0 20px;
color: #fff;
font-size: 18px;
font-weight: 400;
text-decoration: none;
font-family: Georgia, "Times New Roman", Times, serif;
}
.menu_01
{ background-color: black;
}*
.menu_02 { background: url(../images/tooplate_menu_02.png) }
.menu_03 { background: url(../images/tooplate_menu_03.png) }
.menu_04 { background: url(../images/tooplate_menu_04.png) }
.menu_05 { background: url(../images/tooplate_menu_05.png) }
ul.navigation a:hover, ul.navigation a.selected {
color: #412810;
}
ul.navigation a:focus {
outline: none;
}
.scrollButtons {
position: absolute;
top: 300px;
cursor: pointer;
}
.scrollButtons.left {
left: 0
}
.scrollButtons.right {
right: 0
}
.hide {
display: none;
} | 0.349533 | 0.098816 |
*{
margin: 0;
padding: 0;
}
:root{
--main-background: linear-gradient(120deg, #88D6FF 0%, #CFEDFD 100%);
--background-details: #3D444D;
--alert-red: #f04c47;
--text: #444B54;
--border-field: #44BFFF;
--border-food:#FF94A1;
--background-box: #C9ECFF;
--button: #F89B28;
--white: #F5FBFF;
}
body{
background: var(--main-background);
position: relative;
min-height: 83vh;
}
section{
margin-top: 8%;
}
.back{
position: absolute;
background: var(--background-details);
margin: 3%;
padding: 10px;
border-radius: 50%;
width: 35px;
height: 35px;
display: flex;
justify-content: space-between;
}
.img_back{
width: 2rem;
min-width: 2rem;
max-width: 3rem;
}
.title{
font: bold 1.5rem Segoe UI;
text-transform: uppercase;
color: var(--text);
font-weight: 700;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 2%;
}
.box{
margin-left: 18%;
background: var(--background-box);
border: solid 5px var(--border-field);
box-shadow: 5px 10px 15px var(--border-field);
width: 60%;
height: 65vh;
min-width: 30%;
max-width: 70%;
border-radius: 20px;
padding: 15px;
}
.container_img{
justify-content: center;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.form{
display: flex;
justify-content: space-between;
margin: 2% 8%;
}
.field{
display: block;
position: relative;
padding: 10px;
width: 300px;
background: transparent;
border: none;
border-bottom: solid 7px var(--border-field);
color: var(--text);
font: normal 12pt Segoe UI;
letter-spacing: 1px;
outline: none;
transition: 0.5s;
}
.container_button{
display: flex;
justify-content: center;
text-align: center;
}
.btnCad{
text-align: center;
color: #fff;
background: var(--button);
border-radius: 50px;
border: none;
text-transform: uppercase;
font-size: 1.3rem;
padding: 15px 10px 15px 10px; /* top, right, bottom, left */
margin: 5% 3% ;
width: 30%;
max-width: 100%;
transition: 0.5s;
cursor: pointer;
} | Design/Cliente/Cadastrar_Animal/CadastraAnimal.css | *{
margin: 0;
padding: 0;
}
:root{
--main-background: linear-gradient(120deg, #88D6FF 0%, #CFEDFD 100%);
--background-details: #3D444D;
--alert-red: #f04c47;
--text: #444B54;
--border-field: #44BFFF;
--border-food:#FF94A1;
--background-box: #C9ECFF;
--button: #F89B28;
--white: #F5FBFF;
}
body{
background: var(--main-background);
position: relative;
min-height: 83vh;
}
section{
margin-top: 8%;
}
.back{
position: absolute;
background: var(--background-details);
margin: 3%;
padding: 10px;
border-radius: 50%;
width: 35px;
height: 35px;
display: flex;
justify-content: space-between;
}
.img_back{
width: 2rem;
min-width: 2rem;
max-width: 3rem;
}
.title{
font: bold 1.5rem Segoe UI;
text-transform: uppercase;
color: var(--text);
font-weight: 700;
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 2%;
}
.box{
margin-left: 18%;
background: var(--background-box);
border: solid 5px var(--border-field);
box-shadow: 5px 10px 15px var(--border-field);
width: 60%;
height: 65vh;
min-width: 30%;
max-width: 70%;
border-radius: 20px;
padding: 15px;
}
.container_img{
justify-content: center;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}
.form{
display: flex;
justify-content: space-between;
margin: 2% 8%;
}
.field{
display: block;
position: relative;
padding: 10px;
width: 300px;
background: transparent;
border: none;
border-bottom: solid 7px var(--border-field);
color: var(--text);
font: normal 12pt Segoe UI;
letter-spacing: 1px;
outline: none;
transition: 0.5s;
}
.container_button{
display: flex;
justify-content: center;
text-align: center;
}
.btnCad{
text-align: center;
color: #fff;
background: var(--button);
border-radius: 50px;
border: none;
text-transform: uppercase;
font-size: 1.3rem;
padding: 15px 10px 15px 10px; /* top, right, bottom, left */
margin: 5% 3% ;
width: 30%;
max-width: 100%;
transition: 0.5s;
cursor: pointer;
} | 0.396652 | 0.071364 |
#nav {
margin-top: 0px;
height: auto;
width: 100%;
}
#nav li {
text-align: center;
float: right;
width: 100%;
line-height: 60px;
padding-left: 25px;
padding-right: 25px;
}
#nav li a {
color: rgb(255, 252, 196);
font-size: 15px;
}
#nav img {
border-radius: 50%;
float: left;
width: 60px;
margin-right: 5px;
}
#navbarTogglerDemo03 {
width: 100%;
z-index: 1000;
top: 0px;
border-radius: 0px 0px 10px 10px;
}
nav.navbar a {
text-decoration: none;
}
nav.navbar {
z-index: 40 !important;
width: 100%;
top: 0px;
left: 0px !important;
position: absolute;
background: #ffffff00 !important;
transition-duration: 500ms;
}
nav.navbar:hover {
cursor: pointer !important;
}
div.quad {
z-index: 2;
width: 100%;
top: 0px;
position: absolute;
transition-duration: 500ms;
height: 100px;
}
div.quad2 {
z-index: 8;
width: 100%;
top: -100px;
position: absolute;
background-color: #50505080 !important;
transition-duration: 500ms;
height: 160px;
display: none;
}
footer {
margin-top: 100px;
overflow: hidden;
color: #fff;
height: 300px;
background-color: #112640;
}
footer div p {
text-align: center;
}
footer div h4 {
font-family: 'Montserrat', sans-serif;
text-align: center;
}
footer div img {
position: relative;
margin-top: 50px;
left: 50%;
margin-left: -50px;
}
ul.navbar-nav {
float: left !important;
width: 40%;
}
a.nav-link {
text-align: left;
margin-left: 15px;
z-index: 30;
font-family: 'Quantico', sans-serif;
text-transform: capitalize;
}
div#login a {
text-transform: uppercase;
z-index: 30;
margin: auto;
text-align: right;
margin-right: 15px;
text-decoration: none;
font-family: 'Quantico', sans-serif;
}
.navbar-brand {
font-family: 'Audiowide', cursive;
}
html p {
font-size: 18px;
text-align: justify;
line-height: 30px;
text-transform: initial;
font-family: 'Lato', sans-serif;
color: #202020;
text-indent: 10px;
} | MilenioRadartonaAPI/wwwroot/css/intra.css |
#nav {
margin-top: 0px;
height: auto;
width: 100%;
}
#nav li {
text-align: center;
float: right;
width: 100%;
line-height: 60px;
padding-left: 25px;
padding-right: 25px;
}
#nav li a {
color: rgb(255, 252, 196);
font-size: 15px;
}
#nav img {
border-radius: 50%;
float: left;
width: 60px;
margin-right: 5px;
}
#navbarTogglerDemo03 {
width: 100%;
z-index: 1000;
top: 0px;
border-radius: 0px 0px 10px 10px;
}
nav.navbar a {
text-decoration: none;
}
nav.navbar {
z-index: 40 !important;
width: 100%;
top: 0px;
left: 0px !important;
position: absolute;
background: #ffffff00 !important;
transition-duration: 500ms;
}
nav.navbar:hover {
cursor: pointer !important;
}
div.quad {
z-index: 2;
width: 100%;
top: 0px;
position: absolute;
transition-duration: 500ms;
height: 100px;
}
div.quad2 {
z-index: 8;
width: 100%;
top: -100px;
position: absolute;
background-color: #50505080 !important;
transition-duration: 500ms;
height: 160px;
display: none;
}
footer {
margin-top: 100px;
overflow: hidden;
color: #fff;
height: 300px;
background-color: #112640;
}
footer div p {
text-align: center;
}
footer div h4 {
font-family: 'Montserrat', sans-serif;
text-align: center;
}
footer div img {
position: relative;
margin-top: 50px;
left: 50%;
margin-left: -50px;
}
ul.navbar-nav {
float: left !important;
width: 40%;
}
a.nav-link {
text-align: left;
margin-left: 15px;
z-index: 30;
font-family: 'Quantico', sans-serif;
text-transform: capitalize;
}
div#login a {
text-transform: uppercase;
z-index: 30;
margin: auto;
text-align: right;
margin-right: 15px;
text-decoration: none;
font-family: 'Quantico', sans-serif;
}
.navbar-brand {
font-family: 'Audiowide', cursive;
}
html p {
font-size: 18px;
text-align: justify;
line-height: 30px;
text-transform: initial;
font-family: 'Lato', sans-serif;
color: #202020;
text-indent: 10px;
} | 0.371707 | 0.078997 |
.THIS {
position: relative;
/*overflow: hidden;*/
/* TODO: height property may need to live outside, here does not makes much sense ?*/
width: 100%;
height : 100%;
/* workaround for safari bug where scrollbars are obscured by contents
when context are in a new stacking context */
}
@if (!ie11) {
.THIS {
transform: translateZ(0);
}
}
.THIS > * {
box-sizing: border-box;
}
/* CSS Native scrolling Classes */
.THIS.native {
overflow: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: none;
}
.THIS.native > .scroller > .pullToRefresh,
.THIS.native > .scroller > .pullToLoadMore {
position: relative;
-webkit-touch-callout: none;
user-select: none;
cursor: pointer;
}
.THIS > .scroller {
position: absolute;
-webkit-tap-highlight-color: rgba(0,0,0,0);
transform: translateZ(0);
-webkit-touch-callout: none;
user-select: none;
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
-ms-text-size-adjust: none;
-o-text-size-adjust: none;
text-size-adjust: none;
}
.THIS.native > .scroller {
-webkit-touch-callout: default;
user-select: text;
}
.THIS.scroll-vertical > .scroller, .THIS.scroll-vertical .surface {
width: 100%;
}
.THIS.scroll-horizontal > .scroller, .THIS.scroll-horizontal .surface {
height: 100%;
}
.THIS .surface {
position: absolute;
transform-origin: center center;
backface-visibility: hidden;
transform-style: flat;
-webkit-tap-highlight-color: transparent;
pointer-events: auto;
box-sizing: border-box;
}
.THIS .pullToRefresh {
transform : translate3d(0,0,0);
position: absolute;
width: 100%;
height: 50px;
top: -50px;
text-align: center;
line-height: 50px;
z-index: 100; /* Do not remove, hint to the browser for compositing (the number is arbitrary)*/
}
.THIS .pullToLoadMore {
transform : translate3d(0,0,0);
height: 50px;
text-align: center;
line-height: 50px;
z-index: 100; /* Do not remove, hint to the browser for compositing (the number is arbitrary)*/
}
.THIS .pullToRefresh > .icon,
.THIS .pullToLoadMore > .icon {
line-height: 1;
display: inline-block;
background-position: 50%;
background-repeat: no-repeat;
border-radius: 5px;
transition : transform 300ms;
transform : translate3d(0,0,0);
padding: 0 5px;
box-sizing: content-box;
}
.THIS .pullToRefresh.pull > .icon,
.THIS .pullToLoadMore.pull > .icon {
transform : translate3d(0,0,0) rotate(180deg);
}
.THIS .pullToRefresh.update > .icon,
.THIS .pullToLoadMore.update > .icon {
animation : spin .6s linear infinite;
}
.THIS button.scrollButton.voiceOver {
position: absolute;
z-index: 9999;
border: none;
cursor: pointer;
overflow: hidden;
outline: none;
}
.THIS button.scrollButton.voiceOver.top {
top: 0px;
height: 30px;
width: 100%;
}
.THIS button.scrollButton.voiceOver.upButton {
display: none;
}
.THIS button.scrollButton.voiceOver.downButton {
height: 30px;
width: 100%;
bottom: 0px;
}
.THIS button.scrollButton.voiceOver.rightButton {
width: 30px;
height: 100%;
right: 0;
}
.THIS button.scrollButton.voiceOver.leftButton {
width: 30px;
height: 100%;
left: 0;
}
@keyframes spin { from { transform: rotate(180deg);} to { transform: rotate(540deg); } } | aura-components/src/main/components/ui/scroller/scroller.css | .THIS {
position: relative;
/*overflow: hidden;*/
/* TODO: height property may need to live outside, here does not makes much sense ?*/
width: 100%;
height : 100%;
/* workaround for safari bug where scrollbars are obscured by contents
when context are in a new stacking context */
}
@if (!ie11) {
.THIS {
transform: translateZ(0);
}
}
.THIS > * {
box-sizing: border-box;
}
/* CSS Native scrolling Classes */
.THIS.native {
overflow: auto;
-webkit-overflow-scrolling: touch;
-ms-overflow-style: none;
}
.THIS.native > .scroller > .pullToRefresh,
.THIS.native > .scroller > .pullToLoadMore {
position: relative;
-webkit-touch-callout: none;
user-select: none;
cursor: pointer;
}
.THIS > .scroller {
position: absolute;
-webkit-tap-highlight-color: rgba(0,0,0,0);
transform: translateZ(0);
-webkit-touch-callout: none;
user-select: none;
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
-ms-text-size-adjust: none;
-o-text-size-adjust: none;
text-size-adjust: none;
}
.THIS.native > .scroller {
-webkit-touch-callout: default;
user-select: text;
}
.THIS.scroll-vertical > .scroller, .THIS.scroll-vertical .surface {
width: 100%;
}
.THIS.scroll-horizontal > .scroller, .THIS.scroll-horizontal .surface {
height: 100%;
}
.THIS .surface {
position: absolute;
transform-origin: center center;
backface-visibility: hidden;
transform-style: flat;
-webkit-tap-highlight-color: transparent;
pointer-events: auto;
box-sizing: border-box;
}
.THIS .pullToRefresh {
transform : translate3d(0,0,0);
position: absolute;
width: 100%;
height: 50px;
top: -50px;
text-align: center;
line-height: 50px;
z-index: 100; /* Do not remove, hint to the browser for compositing (the number is arbitrary)*/
}
.THIS .pullToLoadMore {
transform : translate3d(0,0,0);
height: 50px;
text-align: center;
line-height: 50px;
z-index: 100; /* Do not remove, hint to the browser for compositing (the number is arbitrary)*/
}
.THIS .pullToRefresh > .icon,
.THIS .pullToLoadMore > .icon {
line-height: 1;
display: inline-block;
background-position: 50%;
background-repeat: no-repeat;
border-radius: 5px;
transition : transform 300ms;
transform : translate3d(0,0,0);
padding: 0 5px;
box-sizing: content-box;
}
.THIS .pullToRefresh.pull > .icon,
.THIS .pullToLoadMore.pull > .icon {
transform : translate3d(0,0,0) rotate(180deg);
}
.THIS .pullToRefresh.update > .icon,
.THIS .pullToLoadMore.update > .icon {
animation : spin .6s linear infinite;
}
.THIS button.scrollButton.voiceOver {
position: absolute;
z-index: 9999;
border: none;
cursor: pointer;
overflow: hidden;
outline: none;
}
.THIS button.scrollButton.voiceOver.top {
top: 0px;
height: 30px;
width: 100%;
}
.THIS button.scrollButton.voiceOver.upButton {
display: none;
}
.THIS button.scrollButton.voiceOver.downButton {
height: 30px;
width: 100%;
bottom: 0px;
}
.THIS button.scrollButton.voiceOver.rightButton {
width: 30px;
height: 100%;
right: 0;
}
.THIS button.scrollButton.voiceOver.leftButton {
width: 30px;
height: 100%;
left: 0;
}
@keyframes spin { from { transform: rotate(180deg);} to { transform: rotate(540deg); } } | 0.362179 | 0.056757 |
@charset "utf-8";
/*==============================================================================
タイトル: アカウント情報ページテンプレート
著者 : <NAME> as Phize (http://phize.net/)
説明 : アカウント情報ページのスタイルです。
対象 : users/profile.thtml, users/commentrow.thtml, users/storyrow.thtml,
users/loginform.thtml, users/registrationform.thtml,
users/getpasswordform.thtml, users/newpassword.thtml,
users/services.thtml
==============================================================================*/
/*--------------------------------------
ユーザログインフォーム
--------------------------------------*/
form#userloginform ul.submit {
margin-bottom: 1em;
}
/* フォームのオプションメニュー */
form#userloginform ul.navi {
list-style-position: outside;
list-style-type: none;
margin: 0;
padding: 0;
}
form#userloginform ul.navi li {
margin: 0;
padding: 0;
}
/*--------------------------------------
パスワード再発行フォーム
--------------------------------------*/
/*--------------------------------------
新パスワードの設定フォーム
--------------------------------------*/
/*--------------------------------------
新規登録フォーム
--------------------------------------*/
/*--------------------------------------
プロフィール
--------------------------------------*/
/* アカウント情報 */
dl#profile-userprofile {
overflow: hidden; /* 浮動要素の調整用 */
margin: 0;
padding: 0;
}
/* 内容生成によってfloatを解除 */
dl#profile-userprofile:after {
content: "";
display: block;
clear: both;
height: 1px;
overflow: hidden;
}
/* Win IE 6用(浮動要素の調整) \*/
* html dl#profile-userprofile {
height: 1%;
overflow: visible;
}
/* Win IE 6用(浮動要素の調整) */
dl#profile-userprofile dt {
float: left;
clear: left;
width: 25%;
margin: 0 0 0.5em 0;
padding: 0;
}
dl#profile-userprofile dd {
float: left;
width: 75%;
margin: 0 0 0.5em 0;
padding: 0;
}
/* 写真 */
dl#profile-userprofile dd#profile-user_photo {
float: none;
width: auto;
margin-left: 25%;
padding: 8px;
}
/* 最近の投稿 */
p.storyrow {
margin: 0;
padding: 0;
}
p.storyrow a {
margin: 0 8px 0 0;
padding: 0;
}
/* ユーザによる最近のコメント */
p.commentrow {
margin: 0;
padding: 0;
}
p.commentrow a {
margin: 0 8px 0 0;
padding: 0;
}
/* 投稿記事・コメントの総数 */
dl#profile-postingstats {
margin: 0;
padding: 0;
}
dl#profile-postingstats dt {
float: left;
clear: left;
width: 25%;
margin: 0 0 0.5em 0;
padding: 0;
}
dl#profile-postingstats dd {
float: left;
width: 75%;
margin: 0 0 0.5em 0;
padding: 0;
}
/* ユーザのすべての投稿を検索するリンク */
ul#profile-all_postings_by {
list-style-position: outside;
list-style-type: none;
clear: left;
margin: 0;
padding: 1em 0 0 0;
}
ul#profile-all_postings_by li {
margin: 0;
padding: 0;
} | extended/public_html/layout/WAIproCSS/css/users/users.css | @charset "utf-8";
/*==============================================================================
タイトル: アカウント情報ページテンプレート
著者 : <NAME> as Phize (http://phize.net/)
説明 : アカウント情報ページのスタイルです。
対象 : users/profile.thtml, users/commentrow.thtml, users/storyrow.thtml,
users/loginform.thtml, users/registrationform.thtml,
users/getpasswordform.thtml, users/newpassword.thtml,
users/services.thtml
==============================================================================*/
/*--------------------------------------
ユーザログインフォーム
--------------------------------------*/
form#userloginform ul.submit {
margin-bottom: 1em;
}
/* フォームのオプションメニュー */
form#userloginform ul.navi {
list-style-position: outside;
list-style-type: none;
margin: 0;
padding: 0;
}
form#userloginform ul.navi li {
margin: 0;
padding: 0;
}
/*--------------------------------------
パスワード再発行フォーム
--------------------------------------*/
/*--------------------------------------
新パスワードの設定フォーム
--------------------------------------*/
/*--------------------------------------
新規登録フォーム
--------------------------------------*/
/*--------------------------------------
プロフィール
--------------------------------------*/
/* アカウント情報 */
dl#profile-userprofile {
overflow: hidden; /* 浮動要素の調整用 */
margin: 0;
padding: 0;
}
/* 内容生成によってfloatを解除 */
dl#profile-userprofile:after {
content: "";
display: block;
clear: both;
height: 1px;
overflow: hidden;
}
/* Win IE 6用(浮動要素の調整) \*/
* html dl#profile-userprofile {
height: 1%;
overflow: visible;
}
/* Win IE 6用(浮動要素の調整) */
dl#profile-userprofile dt {
float: left;
clear: left;
width: 25%;
margin: 0 0 0.5em 0;
padding: 0;
}
dl#profile-userprofile dd {
float: left;
width: 75%;
margin: 0 0 0.5em 0;
padding: 0;
}
/* 写真 */
dl#profile-userprofile dd#profile-user_photo {
float: none;
width: auto;
margin-left: 25%;
padding: 8px;
}
/* 最近の投稿 */
p.storyrow {
margin: 0;
padding: 0;
}
p.storyrow a {
margin: 0 8px 0 0;
padding: 0;
}
/* ユーザによる最近のコメント */
p.commentrow {
margin: 0;
padding: 0;
}
p.commentrow a {
margin: 0 8px 0 0;
padding: 0;
}
/* 投稿記事・コメントの総数 */
dl#profile-postingstats {
margin: 0;
padding: 0;
}
dl#profile-postingstats dt {
float: left;
clear: left;
width: 25%;
margin: 0 0 0.5em 0;
padding: 0;
}
dl#profile-postingstats dd {
float: left;
width: 75%;
margin: 0 0 0.5em 0;
padding: 0;
}
/* ユーザのすべての投稿を検索するリンク */
ul#profile-all_postings_by {
list-style-position: outside;
list-style-type: none;
clear: left;
margin: 0;
padding: 1em 0 0 0;
}
ul#profile-all_postings_by li {
margin: 0;
padding: 0;
} | 0.242744 | 0.099295 |
height: 100%;
margin: 0;
background-color: #000451;
background: radial-gradient(#0009AD, #000451);
display: flex;
flex-direction: column;
}
.tableCaption {
flex: 0;
font-size: 20px;
font-family: SI;
background-color: rgba(0,0,0,.3);
color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
}
.tableContent {
flex: 1;
display: flex;
position: relative;
overflow: hidden;
}
#table .pauseLogo {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: #000000CC;
text-shadow: 2px 2px 0 #000;
}
#table .pauseLogo.warning {
color: darkgray;
}
#table .centerBlock {
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
#table .logoBlock {
width: 100%;
}
#table .answerBlock {
text-align: center;
display: flex;
justify-content: center;
align-items: center;
position: relative;
flex-grow: 1;
margin-top: 40px;
margin-bottom: 40px;
background-color: rgba(0, 0, 0, 0.333);
}
#table .tableText {
height: 100%;
width: 100%;
font-family: SI;
font-size: 36px;
color: #FFFFFF;
text-shadow: 1px 1px 0 #000;
padding: 15px;
white-space: pre-line;
display: flex;
align-items: center;
}
#table .tableTextCenter {
text-align: center;
justify-content: center;
}
#table .tableGameThemes {
width: 100%;
text-align: center;
font-family: SI;
color: #FFFFFF;
text-shadow: 1px 1px 0 #000;
font-size: 36px;
position: absolute;
top: 100%;
transition: top linear 10s;
}
#table .scaleText {
transform: scale(0);
transition: transform .2s linear;
width: 100%;
height: 100%;
}
#table .roundTable {
color: #FFFFFF;
text-shadow: 1px 1px 0 #000;
font-family: SI;
width: calc(100% + 1px);
height: calc(100% + 2px);
display: flex;
flex-direction: column;
margin: 0 -1px -1px 0;
text-align: center;
overflow: hidden;
}
@keyframes roundRows {
to {
transform: translate(0);
}
}
#table .roundTable .roundTableRow {
flex: 1 0 0;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
animation: roundRows;
animation-duration: .5s;
animation-fill-mode: forwards;
}
#table .roundTable .roundTableRow.left {
transform: translate(-100%);
}
#table .roundTable .roundTableRow.right {
transform: translate(100%);
}
#table .roundTable .roundTableCell {
border: 1px solid #FFFFFF;
margin: -1px 0 0 -1px;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 7px;
}
#table .roundTable .themeHeader {
flex: 0 0 40%;
}
#table .roundTable .questHeader {
flex: 1 0 0;
}
#table .roundTable.selectable .questHeader.active:hover {
background: radial-gradient(circle, rgba(229, 232, 205, 0.66) 0%, transparent 110%);
cursor: pointer;
}
@keyframes blink {
from {
background: transparent;
}
to {
background: radial-gradient(circle, cyan 0%, transparent 110%);
}
}
#table .roundTable .questHeader.blink {
animation: blink;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-duration: 0.1s;
color: darkblue;
}
#table .specialTable {
color: #FFFFFF;
text-shadow: 1px 1px 0 #000;
font-family: SI;
width: calc(100% + 1px);
height: calc(100% + 2px);
display: flex;
flex-direction: row;
margin: 0 -1px -1px 0;
text-align: center;
}
#table .specialThemes {
flex: 0 0 40%;
height: 100%;
display: flex;
flex-direction: column;
}
#table .specialTheme {
flex: 1 0 0;
border: 1px solid #FFFFFF;
margin: -1px 0 0 -1px;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 7px;
}
#table .specialTheme.active {
background: radial-gradient(circle, cyan 0%, transparent 110%);
color: darkblue;
}
#table .specialHost {
flex: 1 0 0;
padding: 10px;
}
#table .finalTable {
margin: 20px;
display: flex;
flex-direction: column;
height: calc(100% - 40px);
width: 100%;
color: #FFFFFF;
text-shadow: 1px 1px 0 #000;
font-family: SI;
}
#table .finalTableCell {
border: 1px solid #FFFFFF;
margin: -1px 0 0 -1px;
display: flex;
justify-content: center;
align-items: center;
padding: 7px;
flex: 1 0 0;
}
#table .finalTableCell.blink {
animation: blink;
animation-iteration-count: 1;
animation-direction: alternate;
animation-duration: 0.6s;
color: darkblue;
}
#table .finalTable.selectable .finalTableCell.active:hover {
background: radial-gradient(circle, rgba(229, 232, 205, 0.66) 0%, transparent 110%);
cursor: pointer;
}
.commonProgress {
height: 10px;
}
.commonProgress .progress-bar {
background: #FFFFFF;
}
@media screen and (min-width: 1100px) {
#table .tableText {
padding: 40px;
}
.tableCaption {
font-size: 25px;
}
} | src/components/gameTable/GameTable.css | height: 100%;
margin: 0;
background-color: #000451;
background: radial-gradient(#0009AD, #000451);
display: flex;
flex-direction: column;
}
.tableCaption {
flex: 0;
font-size: 20px;
font-family: SI;
background-color: rgba(0,0,0,.3);
color: #FFFFFF;
display: flex;
justify-content: center;
align-items: center;
}
.tableContent {
flex: 1;
display: flex;
position: relative;
overflow: hidden;
}
#table .pauseLogo {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
background-color: #000000CC;
text-shadow: 2px 2px 0 #000;
}
#table .pauseLogo.warning {
color: darkgray;
}
#table .centerBlock {
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
#table .logoBlock {
width: 100%;
}
#table .answerBlock {
text-align: center;
display: flex;
justify-content: center;
align-items: center;
position: relative;
flex-grow: 1;
margin-top: 40px;
margin-bottom: 40px;
background-color: rgba(0, 0, 0, 0.333);
}
#table .tableText {
height: 100%;
width: 100%;
font-family: SI;
font-size: 36px;
color: #FFFFFF;
text-shadow: 1px 1px 0 #000;
padding: 15px;
white-space: pre-line;
display: flex;
align-items: center;
}
#table .tableTextCenter {
text-align: center;
justify-content: center;
}
#table .tableGameThemes {
width: 100%;
text-align: center;
font-family: SI;
color: #FFFFFF;
text-shadow: 1px 1px 0 #000;
font-size: 36px;
position: absolute;
top: 100%;
transition: top linear 10s;
}
#table .scaleText {
transform: scale(0);
transition: transform .2s linear;
width: 100%;
height: 100%;
}
#table .roundTable {
color: #FFFFFF;
text-shadow: 1px 1px 0 #000;
font-family: SI;
width: calc(100% + 1px);
height: calc(100% + 2px);
display: flex;
flex-direction: column;
margin: 0 -1px -1px 0;
text-align: center;
overflow: hidden;
}
@keyframes roundRows {
to {
transform: translate(0);
}
}
#table .roundTable .roundTableRow {
flex: 1 0 0;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
animation: roundRows;
animation-duration: .5s;
animation-fill-mode: forwards;
}
#table .roundTable .roundTableRow.left {
transform: translate(-100%);
}
#table .roundTable .roundTableRow.right {
transform: translate(100%);
}
#table .roundTable .roundTableCell {
border: 1px solid #FFFFFF;
margin: -1px 0 0 -1px;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 7px;
}
#table .roundTable .themeHeader {
flex: 0 0 40%;
}
#table .roundTable .questHeader {
flex: 1 0 0;
}
#table .roundTable.selectable .questHeader.active:hover {
background: radial-gradient(circle, rgba(229, 232, 205, 0.66) 0%, transparent 110%);
cursor: pointer;
}
@keyframes blink {
from {
background: transparent;
}
to {
background: radial-gradient(circle, cyan 0%, transparent 110%);
}
}
#table .roundTable .questHeader.blink {
animation: blink;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-duration: 0.1s;
color: darkblue;
}
#table .specialTable {
color: #FFFFFF;
text-shadow: 1px 1px 0 #000;
font-family: SI;
width: calc(100% + 1px);
height: calc(100% + 2px);
display: flex;
flex-direction: row;
margin: 0 -1px -1px 0;
text-align: center;
}
#table .specialThemes {
flex: 0 0 40%;
height: 100%;
display: flex;
flex-direction: column;
}
#table .specialTheme {
flex: 1 0 0;
border: 1px solid #FFFFFF;
margin: -1px 0 0 -1px;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
padding: 7px;
}
#table .specialTheme.active {
background: radial-gradient(circle, cyan 0%, transparent 110%);
color: darkblue;
}
#table .specialHost {
flex: 1 0 0;
padding: 10px;
}
#table .finalTable {
margin: 20px;
display: flex;
flex-direction: column;
height: calc(100% - 40px);
width: 100%;
color: #FFFFFF;
text-shadow: 1px 1px 0 #000;
font-family: SI;
}
#table .finalTableCell {
border: 1px solid #FFFFFF;
margin: -1px 0 0 -1px;
display: flex;
justify-content: center;
align-items: center;
padding: 7px;
flex: 1 0 0;
}
#table .finalTableCell.blink {
animation: blink;
animation-iteration-count: 1;
animation-direction: alternate;
animation-duration: 0.6s;
color: darkblue;
}
#table .finalTable.selectable .finalTableCell.active:hover {
background: radial-gradient(circle, rgba(229, 232, 205, 0.66) 0%, transparent 110%);
cursor: pointer;
}
.commonProgress {
height: 10px;
}
.commonProgress .progress-bar {
background: #FFFFFF;
}
@media screen and (min-width: 1100px) {
#table .tableText {
padding: 40px;
}
.tableCaption {
font-size: 25px;
}
} | 0.6508 | 0.103522 |
body {
background-color: rgba(246, 193, 53, 0.1);
}
@font-face {
font-family: 'Raleway-Bold';
src: url('../assets/fonts/Raleway-Bold.ttf');
}
@font-face {
font-family: 'Raleway-Extra-Bold';
src: url('../assets/fonts/Raleway-ExtraBold.ttf');
}
/* media query para tablets e desktops */
@media (min-width: 601px) {
.first-section {
padding-bottom: 10%;
background-size: cover;
}
section.form {
width: 65%;
margin-top: -5%;
}
section.informations, section.map {
margin-top: 4%;
}
h5 {
margin-bottom: 3%;
}
}
/* media query only para mobile */
@media (max-width: 600px) {
.first-section {
padding-bottom: 20%;
background-size: auto 100%;
}
section.form {
width: 85%;
margin-top: -15%;
}
section.informations, section.map {
margin-top: 10%;
}
h5 {
margin-bottom: 8%;
}
.first-row::after {
content: "";
display: table;
clear: both;
}
}
.first-section {
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%,
rgba(255, 255, 255, 0.3) 59%, rgba(255, 255, 255, 0.3) 100%), url('../assets/backgrounds/background1.jpg') no-repeat;
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%,
rgba(255, 255, 255, 0.3) 59%, rgba(255, 255, 255, 0.3) 100%), url('../assets/backgrounds/background1.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
padding-top: 5%;
}
h2 {
font-size: 2.5em;
margin-top: 5%;
}
h2 span {
display: block;
text-align: center;
font-family: 'Raleway-Bold';
}
section.form {
padding-bottom: 2%;
}
p.form {
padding-top: 4%;
margin-left: 5%;
}
form.container {
margin-top: 5%;
width: 85%;
}
.input-field label {
color: #F6C135;
}
.input-field input[type=text]:focus + label {
color: #F6C135 !important;
}
.input-field input[type=text]:focus {
border-bottom: 1px solid #F6C135 !important;
box-shadow: 0 1px 0 0 #F6C135 !important;
}
.input-field textarea:focus + label {
color: #F6C135 !important;
}
.row .input-field textarea:focus {
border-bottom: 1px solid #F6C135 !important;
box-shadow: 0 1px 0 0 #F6C135 !important
}
button {
margin-top: 4%;
margin-right: 3%;
}
.preloader-wrapper {
margin-right: 5%;
}
h5 {
text-align: center;
font-family: 'Raleway-Bold';
}
h6 {
font-weight: bold;
}
div i.fa {
font-size: 4rem;
}
iframe {
width: 100%;
} | public/css/contato.css | body {
background-color: rgba(246, 193, 53, 0.1);
}
@font-face {
font-family: 'Raleway-Bold';
src: url('../assets/fonts/Raleway-Bold.ttf');
}
@font-face {
font-family: 'Raleway-Extra-Bold';
src: url('../assets/fonts/Raleway-ExtraBold.ttf');
}
/* media query para tablets e desktops */
@media (min-width: 601px) {
.first-section {
padding-bottom: 10%;
background-size: cover;
}
section.form {
width: 65%;
margin-top: -5%;
}
section.informations, section.map {
margin-top: 4%;
}
h5 {
margin-bottom: 3%;
}
}
/* media query only para mobile */
@media (max-width: 600px) {
.first-section {
padding-bottom: 20%;
background-size: auto 100%;
}
section.form {
width: 85%;
margin-top: -15%;
}
section.informations, section.map {
margin-top: 10%;
}
h5 {
margin-bottom: 8%;
}
.first-row::after {
content: "";
display: table;
clear: both;
}
}
.first-section {
background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3) 0%,
rgba(255, 255, 255, 0.3) 59%, rgba(255, 255, 255, 0.3) 100%), url('../assets/backgrounds/background1.jpg') no-repeat;
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%,
rgba(255, 255, 255, 0.3) 59%, rgba(255, 255, 255, 0.3) 100%), url('../assets/backgrounds/background1.jpg');
background-repeat: no-repeat;
background-attachment: fixed;
padding-top: 5%;
}
h2 {
font-size: 2.5em;
margin-top: 5%;
}
h2 span {
display: block;
text-align: center;
font-family: 'Raleway-Bold';
}
section.form {
padding-bottom: 2%;
}
p.form {
padding-top: 4%;
margin-left: 5%;
}
form.container {
margin-top: 5%;
width: 85%;
}
.input-field label {
color: #F6C135;
}
.input-field input[type=text]:focus + label {
color: #F6C135 !important;
}
.input-field input[type=text]:focus {
border-bottom: 1px solid #F6C135 !important;
box-shadow: 0 1px 0 0 #F6C135 !important;
}
.input-field textarea:focus + label {
color: #F6C135 !important;
}
.row .input-field textarea:focus {
border-bottom: 1px solid #F6C135 !important;
box-shadow: 0 1px 0 0 #F6C135 !important
}
button {
margin-top: 4%;
margin-right: 3%;
}
.preloader-wrapper {
margin-right: 5%;
}
h5 {
text-align: center;
font-family: 'Raleway-Bold';
}
h6 {
font-weight: bold;
}
div i.fa {
font-size: 4rem;
}
iframe {
width: 100%;
} | 0.38122 | 0.073863 |
@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
.caption {
left: 50%;
position: relative;
top: 50%;
transform: translate(-50%, -50%);
border: 2px solid #ffffff;
width: 25%;
padding: .5rem;
}
.caption h2 {
text-align: center;
font-size: 3rem;
color: #ffffff;
font-weight: 500;
font-family: 'Bebas Neue', cursive;
}
.footer {
margin-top: 2%;
width: 100%;
height: 30vh;
background-color: #a80404;
position: relative;
color: #ffffff;
}
h1 {
font-size: 3rem;
}
.names {
font-size: 5vh;
font-family: 'Roboto', sans-serif;
font-weight: 900;
color: #a80404;
}
.names a {
text-decoration: none;
font-size: 1rem;
color: black;
font-weight: 500;
font-family: 'Poppins', sans-serif;
}
.namehead {
margin-top: 3.5%;
font-family: 'Poppins', sans-serif;
}
.copy h4 {
top: .2em;
font-size: .8em;
width: 100%;
display: block;
text-align: center;
position: absolute;
}
.copy {
position: relative;
background: white;
height: 2rem;
bottom: 0;
width: 100%;
margin: auto;
justify-content: center;
align-items: center;
display: flex;
}
@media screen and (max-width:741px) {
.abt-title h2 {
font-size: 2rem;
height: 3vh;
}
.about-container {
width: 90%;
height: 40vh;
}
.abt-img {
height: 40vh;
}
.abt-details {
width: 96%;
}
}
@media screen and (max-width:934px) {
.abt-title h2 {
font-size: 2.5rem;
height: 3vh;
}
}
@media screen and (max-width:611px) {
.abt-title h2 {
font-size: 2rem;
height: 3vh;
}
}
@media screen and (max-width:535px) {
.abt-title p {
font-size: .5rem;
}
.abt-details {
padding: 1rem;
}
}
@media screen and (max-width:448px) {
.about-container {
width: 95%;
height: 40vh;
}
.abt-details {
width: 95%;
}
.copy h4 {
font-size: .6rem;
}
}
@media screen and (max-width:1307px) {
.abt-title h2 {
margin-top: .4rem;
font-size: 2rem;
}
}
@media screen and (max-width:354px) {
.about-container {
width: 95%;
height: 40vh;
}
.copy h4 {
font-size: .5rem;
}
.abt-img {
height: 40vh;
widows: 100%;
}
.abt-details {
width: 95%;
}
.abt-details p {
padding: .5rem;
font-size: .7rem;
}
.abt-title h2 {
font-size: 1.5rem;
}
}
.about-container:nth-child(2) .abt-details {
margin-left: 0;
}
.about-container:nth-child(2) .abt-title {
margin-left: 0;
}
.contact-container {
margin-bottom: -5%;
margin-top: 5%;
background: #1d2326;
width: 100%;
height: 40vh;
}
.contact-logo {
position: absolute;
}
.contact-logo img {
margin-top: 5%;
height: 100%;
}
.flx {
position: absolute;
display: flex;
flex-direction: column;
}
.ctn,
.us {
color: #ffffff;
}
* {
margin: 0;
padding: 0;
}
.testimonials {
padding: 40px 0;
background: #ffffff;
color: #434343;
text-align: center;
font-family: 'Bebas Neue', cursive;
}
.inner {
max-width: 1200px;
margin: auto;
overflow: hidden;
padding: 0 20px;
}
.border {
width: 160px;
height: 5px;
background: #a80404;
margin: 0px auto;
}
.row {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.col {
flex: 33.33%;
max-width: 33.33%;
box-sizing: border-box;
padding: 15px;
}
.testimonial {
background: rgb(211, 211, 211);
padding: 30px;
font-family: 'Bebas Neue', cursive;
}
.testimonial p {
font-family: 'Poppins', sans-serif;
}
.testimonial img {
width: 100px;
height: 100px;
border-radius: 50%;
}
.name {
font-size: 40px;
text-transform: uppercase;
margin: 20px 0;
font-family: 'Bebas Neue', cursive;
}
@media screen and (max-width:960px) {
.col {
flex: 100%;
max-width: 80%;
}
}
@media screen and (max-width:600px) {
.col {
flex: 100%;
max-width: 100%;
}
} | css/about.css | @import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
.caption {
left: 50%;
position: relative;
top: 50%;
transform: translate(-50%, -50%);
border: 2px solid #ffffff;
width: 25%;
padding: .5rem;
}
.caption h2 {
text-align: center;
font-size: 3rem;
color: #ffffff;
font-weight: 500;
font-family: 'Bebas Neue', cursive;
}
.footer {
margin-top: 2%;
width: 100%;
height: 30vh;
background-color: #a80404;
position: relative;
color: #ffffff;
}
h1 {
font-size: 3rem;
}
.names {
font-size: 5vh;
font-family: 'Roboto', sans-serif;
font-weight: 900;
color: #a80404;
}
.names a {
text-decoration: none;
font-size: 1rem;
color: black;
font-weight: 500;
font-family: 'Poppins', sans-serif;
}
.namehead {
margin-top: 3.5%;
font-family: 'Poppins', sans-serif;
}
.copy h4 {
top: .2em;
font-size: .8em;
width: 100%;
display: block;
text-align: center;
position: absolute;
}
.copy {
position: relative;
background: white;
height: 2rem;
bottom: 0;
width: 100%;
margin: auto;
justify-content: center;
align-items: center;
display: flex;
}
@media screen and (max-width:741px) {
.abt-title h2 {
font-size: 2rem;
height: 3vh;
}
.about-container {
width: 90%;
height: 40vh;
}
.abt-img {
height: 40vh;
}
.abt-details {
width: 96%;
}
}
@media screen and (max-width:934px) {
.abt-title h2 {
font-size: 2.5rem;
height: 3vh;
}
}
@media screen and (max-width:611px) {
.abt-title h2 {
font-size: 2rem;
height: 3vh;
}
}
@media screen and (max-width:535px) {
.abt-title p {
font-size: .5rem;
}
.abt-details {
padding: 1rem;
}
}
@media screen and (max-width:448px) {
.about-container {
width: 95%;
height: 40vh;
}
.abt-details {
width: 95%;
}
.copy h4 {
font-size: .6rem;
}
}
@media screen and (max-width:1307px) {
.abt-title h2 {
margin-top: .4rem;
font-size: 2rem;
}
}
@media screen and (max-width:354px) {
.about-container {
width: 95%;
height: 40vh;
}
.copy h4 {
font-size: .5rem;
}
.abt-img {
height: 40vh;
widows: 100%;
}
.abt-details {
width: 95%;
}
.abt-details p {
padding: .5rem;
font-size: .7rem;
}
.abt-title h2 {
font-size: 1.5rem;
}
}
.about-container:nth-child(2) .abt-details {
margin-left: 0;
}
.about-container:nth-child(2) .abt-title {
margin-left: 0;
}
.contact-container {
margin-bottom: -5%;
margin-top: 5%;
background: #1d2326;
width: 100%;
height: 40vh;
}
.contact-logo {
position: absolute;
}
.contact-logo img {
margin-top: 5%;
height: 100%;
}
.flx {
position: absolute;
display: flex;
flex-direction: column;
}
.ctn,
.us {
color: #ffffff;
}
* {
margin: 0;
padding: 0;
}
.testimonials {
padding: 40px 0;
background: #ffffff;
color: #434343;
text-align: center;
font-family: 'Bebas Neue', cursive;
}
.inner {
max-width: 1200px;
margin: auto;
overflow: hidden;
padding: 0 20px;
}
.border {
width: 160px;
height: 5px;
background: #a80404;
margin: 0px auto;
}
.row {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.col {
flex: 33.33%;
max-width: 33.33%;
box-sizing: border-box;
padding: 15px;
}
.testimonial {
background: rgb(211, 211, 211);
padding: 30px;
font-family: 'Bebas Neue', cursive;
}
.testimonial p {
font-family: 'Poppins', sans-serif;
}
.testimonial img {
width: 100px;
height: 100px;
border-radius: 50%;
}
.name {
font-size: 40px;
text-transform: uppercase;
margin: 20px 0;
font-family: 'Bebas Neue', cursive;
}
@media screen and (max-width:960px) {
.col {
flex: 100%;
max-width: 80%;
}
}
@media screen and (max-width:600px) {
.col {
flex: 100%;
max-width: 100%;
}
} | 0.47317 | 0.108992 |
@-moz-document regexp(".*lichess.org/study/[^/]*") {
@media (min-width: 1100px) {
/* basic tweaks */
body > .content {
margin-top: 3em !important;
width: auto !important;
margin: 40px 15px 0 15px !important;
}
#site_header {
width: 330px;
}
#lichess {
margin-left: 330px;
}
/* Lichess.org link */
h1 {
position: absolute;
top: -35px;
left: 2px;
margin: 0;
padding: 0;
}
h1 * {
font-size: 16px !important;
}
/* top menus */
#top {
position: absolute;
right: 15px;
width: calc(100vw - 380px);
}
/* study buttons */
.study_buttons {
position: absolute;
top: 0;
left: -330px;
width: 320px;
height: 32px;
}
.study_buttons > div,
.study_buttons > span,
.study_buttons .button {
display: inline-block !important;
}
.study_buttons > span,
.study_buttons .button {
margin: 0 4px 0 0 !important;
padding: 7px 8px 3px 8px;
height: 20px;
border-radius: 3px !important;
vertical-align: bottom;
}
.study_buttons .button i {
vertical-align: bottom;
display: inline-block;
position: relative;
top: -2px;
}
.study_buttons .button.comment,
.study_buttons .button.glyph,
.study_buttons .button.text.preview,
.study_buttons .button.help {
padding: 5px 8px 5px 8px;
}
.study_buttons .button.text.preview {
padding: 7px 6px 3px 10px;
}
.study_buttons .button.help {
padding: 9px 6px 1px 10px;
}
/* hide text of help and preview button to get a bit more space */
.study_buttons .button.text.preview,
.study_buttons .button.help {
font-size: 0;
}
.study_buttons .button.text.preview::before,
.study_buttons .button.help i::before {
font-size: 16px;
}
/* to compensate, add a descriptive hover text to
the 'preview' button ('help' already has one).
Copypasted from the lichess styles */
.study_buttons .button.text.preview:after {
opacity: 0;
display: block;
position: absolute;
text-shadow: 0 -1px 0 black;
z-index: 900005;
pointer-events: none;
content: "Preview";
font-size: 0;
margin: 0;
padding: 0;
border: 0;
line-height: 0;
background: #404040;
color: #e0e0e0;
white-space: nowrap;
border-radius: 2px;
box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
letter-spacing: normal;
font-weight: normal;
font-style: inherit;
font-family: 'Noto Sans';
text-transform: none!important;
transition: opacity .2s ease;
}
.study_buttons .button.text.preview:hover:after {
transform: translateY(-8px);
padding: 8px 10px;
line-height: 12px;
font-size: 12px;
bottom: 100%;
left: 83%;
opacity: 1;
transition: opacity .2s ease;
}
/* the dialogs */
.study_comment_form.underboard_form,
.study_glyph_form.underboard_form {
position: absolute;
top: 42px;
left: -330px;
width: 312px;
}
.study_comment_form form .form-group,
.chapter_desc_form form .form-group {
margin-bottom: 0 !important;
}
.study_comment_form form.material.form textarea {
height: calc(100vh - 135px) !important;
}
/* colors for lichess light and dark themes */
body.light .study_comment_form.underboard_form, body.light .study_glyph_form.underboard_form {
border: 1px solid #ccc;
}
body.dark .study_comment_form.underboard_form, body.dark .study_glyph_form.underboard_form {
border: 1px solid rgb(61, 61, 61);
}
body.dark #comment-text, body.dark .glyph_form {
background: #1a1a1a !important;
}
body.light #comment-text, body.light .glyph_form {
background: #eee !important;
}
/* fix empty space under glyph dialog */
.glyph_form {
display: block;
margin-bottom: 0;
}
/* chapters, chat, under chat */
.side_box.study_box {
margin-top: 42px;
}
.side_box.study_box, div.side_box, div.under_chat {
margin-left: 0;
width: 314px;
}
}
} | data/usercss/153007.user.css | @-moz-document regexp(".*lichess.org/study/[^/]*") {
@media (min-width: 1100px) {
/* basic tweaks */
body > .content {
margin-top: 3em !important;
width: auto !important;
margin: 40px 15px 0 15px !important;
}
#site_header {
width: 330px;
}
#lichess {
margin-left: 330px;
}
/* Lichess.org link */
h1 {
position: absolute;
top: -35px;
left: 2px;
margin: 0;
padding: 0;
}
h1 * {
font-size: 16px !important;
}
/* top menus */
#top {
position: absolute;
right: 15px;
width: calc(100vw - 380px);
}
/* study buttons */
.study_buttons {
position: absolute;
top: 0;
left: -330px;
width: 320px;
height: 32px;
}
.study_buttons > div,
.study_buttons > span,
.study_buttons .button {
display: inline-block !important;
}
.study_buttons > span,
.study_buttons .button {
margin: 0 4px 0 0 !important;
padding: 7px 8px 3px 8px;
height: 20px;
border-radius: 3px !important;
vertical-align: bottom;
}
.study_buttons .button i {
vertical-align: bottom;
display: inline-block;
position: relative;
top: -2px;
}
.study_buttons .button.comment,
.study_buttons .button.glyph,
.study_buttons .button.text.preview,
.study_buttons .button.help {
padding: 5px 8px 5px 8px;
}
.study_buttons .button.text.preview {
padding: 7px 6px 3px 10px;
}
.study_buttons .button.help {
padding: 9px 6px 1px 10px;
}
/* hide text of help and preview button to get a bit more space */
.study_buttons .button.text.preview,
.study_buttons .button.help {
font-size: 0;
}
.study_buttons .button.text.preview::before,
.study_buttons .button.help i::before {
font-size: 16px;
}
/* to compensate, add a descriptive hover text to
the 'preview' button ('help' already has one).
Copypasted from the lichess styles */
.study_buttons .button.text.preview:after {
opacity: 0;
display: block;
position: absolute;
text-shadow: 0 -1px 0 black;
z-index: 900005;
pointer-events: none;
content: "Preview";
font-size: 0;
margin: 0;
padding: 0;
border: 0;
line-height: 0;
background: #404040;
color: #e0e0e0;
white-space: nowrap;
border-radius: 2px;
box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
letter-spacing: normal;
font-weight: normal;
font-style: inherit;
font-family: 'Noto Sans';
text-transform: none!important;
transition: opacity .2s ease;
}
.study_buttons .button.text.preview:hover:after {
transform: translateY(-8px);
padding: 8px 10px;
line-height: 12px;
font-size: 12px;
bottom: 100%;
left: 83%;
opacity: 1;
transition: opacity .2s ease;
}
/* the dialogs */
.study_comment_form.underboard_form,
.study_glyph_form.underboard_form {
position: absolute;
top: 42px;
left: -330px;
width: 312px;
}
.study_comment_form form .form-group,
.chapter_desc_form form .form-group {
margin-bottom: 0 !important;
}
.study_comment_form form.material.form textarea {
height: calc(100vh - 135px) !important;
}
/* colors for lichess light and dark themes */
body.light .study_comment_form.underboard_form, body.light .study_glyph_form.underboard_form {
border: 1px solid #ccc;
}
body.dark .study_comment_form.underboard_form, body.dark .study_glyph_form.underboard_form {
border: 1px solid rgb(61, 61, 61);
}
body.dark #comment-text, body.dark .glyph_form {
background: #1a1a1a !important;
}
body.light #comment-text, body.light .glyph_form {
background: #eee !important;
}
/* fix empty space under glyph dialog */
.glyph_form {
display: block;
margin-bottom: 0;
}
/* chapters, chat, under chat */
.side_box.study_box {
margin-top: 42px;
}
.side_box.study_box, div.side_box, div.under_chat {
margin-left: 0;
width: 314px;
}
}
} | 0.253676 | 0.074265 |
@charset "utf-8";
body {
background: url("../images/background.jpg");
margin-top:80px;
margin-left: 8%;
margin-right: 8%;
}
.container{
margin-bottom: 5%;
}
.siteIcon {
max-width: 330px;
margin: 15px auto;
text-align: center;
}
.siteIcon img {
cursor: pointer;
width: 100px;
height: 100px;
border-radius: 50%;
/*display: none;*/
}
.siteIcon img:hover {
-moz-transition: all 0.8s ease-in-out;
-webkit-transition: all 0.8s ease-in-out;
-o-transition: all 0.8s ease-in-out;
-ms-transition: all 0.8s ease-in-out;
transition: all 0.8s ease-in-out;
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
.siteIcon img:active {
-webkit-transform: scale(1.05);
transform: scale(1.05);
-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);
}
#button-jump{
display: none;
}
.oprea-bar{
padding-bottom: 36px;
}
.h4-text{
padding-left: 2px;
line-height: 32px;
font-family: "Microsoft YaHei", "微软雅黑", "Lantinghei SC", "Open Sans", Arial, "Hiragino Sans GB", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
color: #39C;
cursor: pointer;
}
.h4-text:hover{
color:#98D9F2;
text-decoration:none;
}
.bootstrapSwitch{
float: right;
}
/*其他*/
.buttons-L-mid.button-giant{
height: 100px;
width: 100px;
font-size: 50px;
margin: 0 3% 0 3%;
box-shadow: 1px 1px 1px #666;
}
/*列表样式wekit浏览器默认padding-left:40px,去除*/
#list-currentList{
padding-left: 0px;
}
#list-currentList li{
background: Gainsboro;
border: 1px solid #092028;
}
#list-currentList li img{
height: 42px;
width: 42px;
border-radius: 24px;
margin-right: 3%;
}
/*工具提示
margin-bottom和再下面的bottom要一致*/
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
margin-bottom: 10px;
color: #FFF;
font-size: 16px;
font-family: "Microsoft YaHei", "微软雅黑", "Lantinghei SC", "Open Sans", Arial, "Hiragino Sans GB", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
text-align: center;
background-color: #3399CC;
border-radius: 4px;/*opacity:.7;*/
}
.tooltip.top .tooltip-arrow {
bottom: 10px;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #3399CC;
} | web/static/user/css/index.css | @charset "utf-8";
body {
background: url("../images/background.jpg");
margin-top:80px;
margin-left: 8%;
margin-right: 8%;
}
.container{
margin-bottom: 5%;
}
.siteIcon {
max-width: 330px;
margin: 15px auto;
text-align: center;
}
.siteIcon img {
cursor: pointer;
width: 100px;
height: 100px;
border-radius: 50%;
/*display: none;*/
}
.siteIcon img:hover {
-moz-transition: all 0.8s ease-in-out;
-webkit-transition: all 0.8s ease-in-out;
-o-transition: all 0.8s ease-in-out;
-ms-transition: all 0.8s ease-in-out;
transition: all 0.8s ease-in-out;
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-o-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
.siteIcon img:active {
-webkit-transform: scale(1.05);
transform: scale(1.05);
-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);
}
#button-jump{
display: none;
}
.oprea-bar{
padding-bottom: 36px;
}
.h4-text{
padding-left: 2px;
line-height: 32px;
font-family: "Microsoft YaHei", "微软雅黑", "Lantinghei SC", "Open Sans", Arial, "Hiragino Sans GB", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
color: #39C;
cursor: pointer;
}
.h4-text:hover{
color:#98D9F2;
text-decoration:none;
}
.bootstrapSwitch{
float: right;
}
/*其他*/
.buttons-L-mid.button-giant{
height: 100px;
width: 100px;
font-size: 50px;
margin: 0 3% 0 3%;
box-shadow: 1px 1px 1px #666;
}
/*列表样式wekit浏览器默认padding-left:40px,去除*/
#list-currentList{
padding-left: 0px;
}
#list-currentList li{
background: Gainsboro;
border: 1px solid #092028;
}
#list-currentList li img{
height: 42px;
width: 42px;
border-radius: 24px;
margin-right: 3%;
}
/*工具提示
margin-bottom和再下面的bottom要一致*/
.tooltip-inner {
max-width: 200px;
padding: 3px 8px;
margin-bottom: 10px;
color: #FFF;
font-size: 16px;
font-family: "Microsoft YaHei", "微软雅黑", "Lantinghei SC", "Open Sans", Arial, "Hiragino Sans GB", "STHeiti", "WenQuanYi Micro Hei", SimSun, sans-serif;
text-align: center;
background-color: #3399CC;
border-radius: 4px;/*opacity:.7;*/
}
.tooltip.top .tooltip-arrow {
bottom: 10px;
left: 50%;
margin-left: -5px;
border-width: 5px 5px 0;
border-top-color: #3399CC;
} | 0.212804 | 0.063802 |
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: inherit;
font-size: 100%;
vertical-align: baseline;
}
/* line 22, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
line-height: 1;
}
/* line 24, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
list-style: none;
}
/* line 26, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* line 28, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
text-align: left;
font-weight: normal;
vertical-align: middle;
}
/* line 30, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
quotes: none;
}
/* line 103, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
content: "";
content: none;
}
/* line 32, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
border: none;
}
/* line 116, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
display: block;
}
/*==============================*\
MOBILE NAV STYLE
\*==============================*/
/* line 26, ../sass/screen.scss */
.mobile-nav {
padding: 0px;
z-index: 100;
background-color: #176f5b;
display: none;
position: fixed;
width: 100%;
top: 0;
box-shadow: 0px 1px 5px 1px;
}
/* line 37, ../sass/screen.scss */
.menu-btn {
margin: 50px auto 50px 15px;
}
/* line 39, ../sass/screen.scss */
.menu-btn i {
color: white;
display: inline;
font-size: 50px;
float: left;
position: absolute;
left: 15px;
top: 5px;
}
/* line 48, ../sass/screen.scss */
.menu-btn .fa-remove {
left: 18px;
}
/* line 52, ../sass/screen.scss */
.responsive-menu {
display: none;
}
/* line 54, ../sass/screen.scss */
.responsive-menu li {
color: white;
list-style: none;
padding: 5px 0 5px 15px;
}
/* line 59, ../sass/screen.scss */
.responsive-menu li:hover {
background-color: #0E473A;
width: 100%;
color: white;
}
/* line 65, ../sass/screen.scss */
.expand {
display: block !important;
}
/*==============================*\
END MOBILE NAV
\*==============================*/
/*==============================*\
UNIVERSAL STYLES
\*==============================*/
/* line 77, ../sass/screen.scss */
body {
background-color: #faebd7;
font-family: 'PT Sans Narrow', Helvetica, sans-serif;
font-size: 20px;
}
/* line 82, ../sass/screen.scss */
button {
background-color: #176f5b;
border: none;
border-radius: 10px;
color: white;
padding: 15px 32px;
margin: 5px 0px;
text-align: center;
text-decoration: none;
font-size: 16px;
}
/* line 93, ../sass/screen.scss */
header {
height: 100px;
position: absolute;
width: 100%;
}
/* line 97, ../sass/screen.scss */
header ul {
padding-right: 20px;
color: white;
}
/* line 100, ../sass/screen.scss */
header ul li {
font-family: 'Cookie', Helvetica, sans-serif;
list-style: none;
display: inline-block;
margin: 25px 15px 25px 15px;
font-size: 30px;
padding: 10px 0 10px 0;
}
/* line 107, ../sass/screen.scss */
header ul li a {
background-color: transparent;
text-decoration: none;
padding: 5px 25px 5px 25px;
border-radius: 20px;
text-decoration: none;
transition: 500ms;
}
/* line 115, ../sass/screen.scss */
header ul li a:hover {
color: white;
background-color: #176f5b;
transition: 500ms;
text-decoration: none;
}
/* line 121, ../sass/screen.scss */
header ul li .active {
color: white;
background-color: #0E473A;
text-decoration: none;
}
/* line 132, ../sass/screen.scss */
header h1 {
color: white;
font-size: 40px;
font-family: 'Cookie', Helvetica, sans-serif;
margin: 20px 20px 20px 20px;
padding: 10px 0 10px 0;
}
/* line 140, ../sass/screen.scss */
.jumbo {
background-image: url("https://static.pexels.com/photos/9186/food-beans-coffee-drink.jpg");
background-size: cover;
background: -webkit-linear-gradient(rgba(39, 34, 10, 0.9) 0%, rgba(39, 34, 10, 0.5) 100%), url("https://static.pexels.com/photos/9186/food-beans-coffee-drink.jpg");
background-size: cover;
background-position: center top;
background-repeat: no-repeat;
width: 100%;
height: 475px;
position: fixed relative;
}
/* line 150, ../sass/screen.scss */
.jumbo .jumbo-info {
position: absolute;
top: 150px;
width: 100%;
text-align: center;
}
/* line 155, ../sass/screen.scss */
.jumbo .jumbo-info h1 {
font-family: 'Cookie', Helvetica, sans-serif;
font-size: 90px;
color: white;
text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
/* line 162, ../sass/screen.scss */
.jumbo .jumbo-info h6 {
color: white;
font-size: 20px;
letter-spacing: 2px;
font-weight: normal;
}
/* line 168, ../sass/screen.scss */
.jumbo .jumbo-info a {
background-color: #176f5b;
border-radius: 20px;
padding: 10px 25px 10px 25px;
color: white;
font-family: 'PT Sans Serif', Helvetica, sans-serif;
font-weight: normal;
font-size: 16px;
text-decoration: none;
transition: 500ms;
}
/* line 179, ../sass/screen.scss */
.jumbo .jumbo-info a:hover {
background-color: #164936;
transition: 500ms;
}
/* line 185, ../sass/screen.scss */
.large {
width: 97%;
}
/* line 188, ../sass/screen.scss */
.textbox {
background-color: #faebd7;
margin-top: 0px;
padding: 30px 20px 30px 20px;
}
/* line 192, ../sass/screen.scss */
.textbox h3 {
text-align: center;
margin-bottom: 10px;
}
/* line 196, ../sass/screen.scss */
.textbox p {
margin: 0px 0px 10px 0px;
text-align: left;
line-height: 150%;
}
/* line 201, ../sass/screen.scss */
.textbox .bean {
text-align: center;
margin: 0 auto;
}
/* line 205, ../sass/screen.scss */
.textbox .bean img {
width: 30px;
display: inline;
margin-bottom: 10px;
float: none;
padding: 0px;
}
/* line 213, ../sass/screen.scss */
.textbox img {
float: left;
width: 200px;
padding: 0px 20px 10px 0;
}
/* line 219, ../sass/screen.scss */
.titlebox {
background-color: #176f5b;
margin: 0;
}
/* line 222, ../sass/screen.scss */
.titlebox h4 {
color: white;
text-align: center;
border-bottom: 1px solid gray;
padding: 10px 0;
margin: 0px;
}
/* line 230, ../sass/screen.scss */
h3 {
font-size: 65px;
font-weight: bold;
color: black;
letter-spacing: 2px;
border-bottom: 5px double gray;
padding-bottom: 10px;
}
/* line 238, ../sass/screen.scss */
h4 {
font-size: 35px;
font-family: 'Cookie', Helvetica, sans-serif;
color: #4b3832;
}
/* line 243, ../sass/screen.scss */
h1 {
font-size: 65px;
font-family: 'Cookie', Helvetica, sans-serif;
color: #176f5b;
text-align: center;
}
/* line 250, ../sass/screen.scss */
main .overlay {
background-color: rgba(0, 0, 0, 0.5);
height: 400px;
width: 100%;
transition: 500ms;
}
/* line 256, ../sass/screen.scss */
main .bigthumb {
background-color: black;
}
/* line 259, ../sass/screen.scss */
main #music {
height: 400px;
width: 100%;
background-color: black;
background-image: url("https://allyrchapman.files.wordpress.com/2012/04/dsc_0007.jpg");
background-size: cover;
background-position: center center;
transition: 500ms;
}
/* line 270, ../sass/screen.scss */
main #music:hover .overlay {
background-color: rgba(23, 111, 91, 0.7);
z-index: 999;
transition: 500ms;
}
/* line 277, ../sass/screen.scss */
#social {
background-color: #176f5b;
text-align: center;
margin: 0 auto 0 auto;
padding: 15px;
color: white;
}
/* line 283, ../sass/screen.scss */
#social i {
margin: 0 10px 0 10px;
}
/* line 286, ../sass/screen.scss */
#social a {
text-decoration: none;
}
/* line 289, ../sass/screen.scss */
#social a:hover {
color: #0E473A;
}
/* line 293, ../sass/screen.scss */
table {
margin: 15px 0 15px 0;
}
/* line 295, ../sass/screen.scss */
table td {
text-align: center;
padding: 5px;
}
/* line 299, ../sass/screen.scss */
table .line {
border-bottom: 1px solid black;
}
/* line 302, ../sass/screen.scss */
table .line2 {
border-bottom: 1px solid gray;
}
/* line 306, ../sass/screen.scss */
table .category th {
font-weight: bold;
font-size: 30px;
padding-bottom: 10px;
}
/* line 314, ../sass/screen.scss */
table .subcategory th {
font-weight: bold;
font-size: 25px;
padding-top: 15px;
}
/* line 319, ../sass/screen.scss */
table .subcategory td {
font-weight: bold;
font-size: 25px;
padding-top: 15px;
}
/* line 325, ../sass/screen.scss */
table .desc {
font-style: italic;
font-size: 14px;
text-align: left;
padding: 5px 0 10px 20px;
/*border-bottom: 1px dotted black;*/
}
/*==============================*\
FOOTER
\*==============================*/
/* line 338, ../sass/screen.scss */
footer {
background-color: #0E473A;
padding: 20px;
}
/* line 341, ../sass/screen.scss */
footer #contact {
width: 75%;
text-align: center;
margin: 0 auto 0 auto;
line-height: 150%;
}
/* line 346, ../sass/screen.scss */
footer #contact p {
color: white;
font-size: 12px;
}
/*==============================*\
END FOOTER
\*==============================*/
/*==============================*\
PAGE SPEC EDITS
\*==============================*/
/* line 366, ../sass/screen.scss */
.about-styles .jumbo {
background-image: url("http://ih0.redbubble.net/image.14679849.1893/flat,1000x1000,075,f.u2.jpg");
background: -webkit-linear-gradient(rgba(39, 34, 10, 0.9) 0%, rgba(39, 34, 10, 0.5) 100%), url("http://ih0.redbubble.net/image.14679849.1893/flat,1000x1000,075,f.u2.jpg");
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
/* line 375, ../sass/screen.scss */
.menu-styles .jumbo {
background-image: url("http://global.marksandspencer.com/hk/files/2015/01/cafe1.jpg");
background: -webkit-linear-gradient(rgba(39, 34, 10, 0.9) 0%, rgba(39, 34, 10, 0.5) 100%), url("http://global.marksandspencer.com/hk/files/2015/01/cafe1.jpg");
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
/*==============================*\
END UNIVERSAL STYLES
\*==============================*/
@media only screen and (max-width: 1024px) {
/* line 393, ../sass/screen.scss */
.mobile-nav {
display: block;
}
/* line 396, ../sass/screen.scss */
header {
display: none;
}
}
/*==============================*\
END RESPONSIVE STYLES
\*==============================*/ | css/compass/stylesheets/screen.css | 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: inherit;
font-size: 100%;
vertical-align: baseline;
}
/* line 22, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
html {
line-height: 1;
}
/* line 24, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
ol, ul {
list-style: none;
}
/* line 26, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
table {
border-collapse: collapse;
border-spacing: 0;
}
/* line 28, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
caption, th, td {
text-align: left;
font-weight: normal;
vertical-align: middle;
}
/* line 30, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q, blockquote {
quotes: none;
}
/* line 103, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
q:before, q:after, blockquote:before, blockquote:after {
content: "";
content: none;
}
/* line 32, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
a img {
border: none;
}
/* line 116, ../../../../../../../../../Applications/compass.app/Contents/Resources/lib/ruby/compass_1.0/compass-core-1.0.3/stylesheets/compass/reset/_utilities.scss */
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
display: block;
}
/*==============================*\
MOBILE NAV STYLE
\*==============================*/
/* line 26, ../sass/screen.scss */
.mobile-nav {
padding: 0px;
z-index: 100;
background-color: #176f5b;
display: none;
position: fixed;
width: 100%;
top: 0;
box-shadow: 0px 1px 5px 1px;
}
/* line 37, ../sass/screen.scss */
.menu-btn {
margin: 50px auto 50px 15px;
}
/* line 39, ../sass/screen.scss */
.menu-btn i {
color: white;
display: inline;
font-size: 50px;
float: left;
position: absolute;
left: 15px;
top: 5px;
}
/* line 48, ../sass/screen.scss */
.menu-btn .fa-remove {
left: 18px;
}
/* line 52, ../sass/screen.scss */
.responsive-menu {
display: none;
}
/* line 54, ../sass/screen.scss */
.responsive-menu li {
color: white;
list-style: none;
padding: 5px 0 5px 15px;
}
/* line 59, ../sass/screen.scss */
.responsive-menu li:hover {
background-color: #0E473A;
width: 100%;
color: white;
}
/* line 65, ../sass/screen.scss */
.expand {
display: block !important;
}
/*==============================*\
END MOBILE NAV
\*==============================*/
/*==============================*\
UNIVERSAL STYLES
\*==============================*/
/* line 77, ../sass/screen.scss */
body {
background-color: #faebd7;
font-family: 'PT Sans Narrow', Helvetica, sans-serif;
font-size: 20px;
}
/* line 82, ../sass/screen.scss */
button {
background-color: #176f5b;
border: none;
border-radius: 10px;
color: white;
padding: 15px 32px;
margin: 5px 0px;
text-align: center;
text-decoration: none;
font-size: 16px;
}
/* line 93, ../sass/screen.scss */
header {
height: 100px;
position: absolute;
width: 100%;
}
/* line 97, ../sass/screen.scss */
header ul {
padding-right: 20px;
color: white;
}
/* line 100, ../sass/screen.scss */
header ul li {
font-family: 'Cookie', Helvetica, sans-serif;
list-style: none;
display: inline-block;
margin: 25px 15px 25px 15px;
font-size: 30px;
padding: 10px 0 10px 0;
}
/* line 107, ../sass/screen.scss */
header ul li a {
background-color: transparent;
text-decoration: none;
padding: 5px 25px 5px 25px;
border-radius: 20px;
text-decoration: none;
transition: 500ms;
}
/* line 115, ../sass/screen.scss */
header ul li a:hover {
color: white;
background-color: #176f5b;
transition: 500ms;
text-decoration: none;
}
/* line 121, ../sass/screen.scss */
header ul li .active {
color: white;
background-color: #0E473A;
text-decoration: none;
}
/* line 132, ../sass/screen.scss */
header h1 {
color: white;
font-size: 40px;
font-family: 'Cookie', Helvetica, sans-serif;
margin: 20px 20px 20px 20px;
padding: 10px 0 10px 0;
}
/* line 140, ../sass/screen.scss */
.jumbo {
background-image: url("https://static.pexels.com/photos/9186/food-beans-coffee-drink.jpg");
background-size: cover;
background: -webkit-linear-gradient(rgba(39, 34, 10, 0.9) 0%, rgba(39, 34, 10, 0.5) 100%), url("https://static.pexels.com/photos/9186/food-beans-coffee-drink.jpg");
background-size: cover;
background-position: center top;
background-repeat: no-repeat;
width: 100%;
height: 475px;
position: fixed relative;
}
/* line 150, ../sass/screen.scss */
.jumbo .jumbo-info {
position: absolute;
top: 150px;
width: 100%;
text-align: center;
}
/* line 155, ../sass/screen.scss */
.jumbo .jumbo-info h1 {
font-family: 'Cookie', Helvetica, sans-serif;
font-size: 90px;
color: white;
text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.1);
margin-bottom: 20px;
}
/* line 162, ../sass/screen.scss */
.jumbo .jumbo-info h6 {
color: white;
font-size: 20px;
letter-spacing: 2px;
font-weight: normal;
}
/* line 168, ../sass/screen.scss */
.jumbo .jumbo-info a {
background-color: #176f5b;
border-radius: 20px;
padding: 10px 25px 10px 25px;
color: white;
font-family: 'PT Sans Serif', Helvetica, sans-serif;
font-weight: normal;
font-size: 16px;
text-decoration: none;
transition: 500ms;
}
/* line 179, ../sass/screen.scss */
.jumbo .jumbo-info a:hover {
background-color: #164936;
transition: 500ms;
}
/* line 185, ../sass/screen.scss */
.large {
width: 97%;
}
/* line 188, ../sass/screen.scss */
.textbox {
background-color: #faebd7;
margin-top: 0px;
padding: 30px 20px 30px 20px;
}
/* line 192, ../sass/screen.scss */
.textbox h3 {
text-align: center;
margin-bottom: 10px;
}
/* line 196, ../sass/screen.scss */
.textbox p {
margin: 0px 0px 10px 0px;
text-align: left;
line-height: 150%;
}
/* line 201, ../sass/screen.scss */
.textbox .bean {
text-align: center;
margin: 0 auto;
}
/* line 205, ../sass/screen.scss */
.textbox .bean img {
width: 30px;
display: inline;
margin-bottom: 10px;
float: none;
padding: 0px;
}
/* line 213, ../sass/screen.scss */
.textbox img {
float: left;
width: 200px;
padding: 0px 20px 10px 0;
}
/* line 219, ../sass/screen.scss */
.titlebox {
background-color: #176f5b;
margin: 0;
}
/* line 222, ../sass/screen.scss */
.titlebox h4 {
color: white;
text-align: center;
border-bottom: 1px solid gray;
padding: 10px 0;
margin: 0px;
}
/* line 230, ../sass/screen.scss */
h3 {
font-size: 65px;
font-weight: bold;
color: black;
letter-spacing: 2px;
border-bottom: 5px double gray;
padding-bottom: 10px;
}
/* line 238, ../sass/screen.scss */
h4 {
font-size: 35px;
font-family: 'Cookie', Helvetica, sans-serif;
color: #4b3832;
}
/* line 243, ../sass/screen.scss */
h1 {
font-size: 65px;
font-family: 'Cookie', Helvetica, sans-serif;
color: #176f5b;
text-align: center;
}
/* line 250, ../sass/screen.scss */
main .overlay {
background-color: rgba(0, 0, 0, 0.5);
height: 400px;
width: 100%;
transition: 500ms;
}
/* line 256, ../sass/screen.scss */
main .bigthumb {
background-color: black;
}
/* line 259, ../sass/screen.scss */
main #music {
height: 400px;
width: 100%;
background-color: black;
background-image: url("https://allyrchapman.files.wordpress.com/2012/04/dsc_0007.jpg");
background-size: cover;
background-position: center center;
transition: 500ms;
}
/* line 270, ../sass/screen.scss */
main #music:hover .overlay {
background-color: rgba(23, 111, 91, 0.7);
z-index: 999;
transition: 500ms;
}
/* line 277, ../sass/screen.scss */
#social {
background-color: #176f5b;
text-align: center;
margin: 0 auto 0 auto;
padding: 15px;
color: white;
}
/* line 283, ../sass/screen.scss */
#social i {
margin: 0 10px 0 10px;
}
/* line 286, ../sass/screen.scss */
#social a {
text-decoration: none;
}
/* line 289, ../sass/screen.scss */
#social a:hover {
color: #0E473A;
}
/* line 293, ../sass/screen.scss */
table {
margin: 15px 0 15px 0;
}
/* line 295, ../sass/screen.scss */
table td {
text-align: center;
padding: 5px;
}
/* line 299, ../sass/screen.scss */
table .line {
border-bottom: 1px solid black;
}
/* line 302, ../sass/screen.scss */
table .line2 {
border-bottom: 1px solid gray;
}
/* line 306, ../sass/screen.scss */
table .category th {
font-weight: bold;
font-size: 30px;
padding-bottom: 10px;
}
/* line 314, ../sass/screen.scss */
table .subcategory th {
font-weight: bold;
font-size: 25px;
padding-top: 15px;
}
/* line 319, ../sass/screen.scss */
table .subcategory td {
font-weight: bold;
font-size: 25px;
padding-top: 15px;
}
/* line 325, ../sass/screen.scss */
table .desc {
font-style: italic;
font-size: 14px;
text-align: left;
padding: 5px 0 10px 20px;
/*border-bottom: 1px dotted black;*/
}
/*==============================*\
FOOTER
\*==============================*/
/* line 338, ../sass/screen.scss */
footer {
background-color: #0E473A;
padding: 20px;
}
/* line 341, ../sass/screen.scss */
footer #contact {
width: 75%;
text-align: center;
margin: 0 auto 0 auto;
line-height: 150%;
}
/* line 346, ../sass/screen.scss */
footer #contact p {
color: white;
font-size: 12px;
}
/*==============================*\
END FOOTER
\*==============================*/
/*==============================*\
PAGE SPEC EDITS
\*==============================*/
/* line 366, ../sass/screen.scss */
.about-styles .jumbo {
background-image: url("http://ih0.redbubble.net/image.14679849.1893/flat,1000x1000,075,f.u2.jpg");
background: -webkit-linear-gradient(rgba(39, 34, 10, 0.9) 0%, rgba(39, 34, 10, 0.5) 100%), url("http://ih0.redbubble.net/image.14679849.1893/flat,1000x1000,075,f.u2.jpg");
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
/* line 375, ../sass/screen.scss */
.menu-styles .jumbo {
background-image: url("http://global.marksandspencer.com/hk/files/2015/01/cafe1.jpg");
background: -webkit-linear-gradient(rgba(39, 34, 10, 0.9) 0%, rgba(39, 34, 10, 0.5) 100%), url("http://global.marksandspencer.com/hk/files/2015/01/cafe1.jpg");
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
}
/*==============================*\
END UNIVERSAL STYLES
\*==============================*/
@media only screen and (max-width: 1024px) {
/* line 393, ../sass/screen.scss */
.mobile-nav {
display: block;
}
/* line 396, ../sass/screen.scss */
header {
display: none;
}
}
/*==============================*\
END RESPONSIVE STYLES
\*==============================*/ | 0.344774 | 0.059319 |
body {
margin:0px;
background-image:none;
position:static;
left:auto;
width:1916px;
margin-left:0;
margin-right:0;
text-align:left;
}
#base {
position:absolute;
z-index:0;
}
#u0 {
border-width:0px;
position:absolute;
left:394px;
top:84px;
width:308px;
height:42px;
}
#u0_input {
position:absolute;
left:0px;
top:0px;
width:308px;
height:42px;
font-family:'Arial';
font-weight:400;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#000000;
}
#u0_input:disabled {
color:grayText;
}
#u1_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1916px;
height:750px;
}
#u1 {
border-width:0px;
position:absolute;
left:0px;
top:157px;
width:1916px;
height:750px;
}
#u1_text {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
visibility:hidden;
word-wrap:break-word;
}
#u2 {
border-width:0px;
position:absolute;
left:0px;
top:84px;
width:336px;
height:45px;
}
#u2_input {
position:absolute;
left:0px;
top:0px;
width:336px;
height:45px;
font-family:'Arial';
font-weight:400;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#000000;
text-align:left;
}
#u3 {
border-width:0px;
position:absolute;
left:724px;
top:84px;
width:161px;
height:42px;
}
#u3_input {
position:absolute;
left:0px;
top:0px;
width:161px;
height:42px;
font-family:'Arial';
font-weight:400;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#333333;
text-align:center;
}
#u4_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:249px;
height:124px;
background:inherit;
background-color:rgba(255, 223, 37, 1);
border:none;
border-radius:0px;
-moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
-webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
}
#u4 {
border-width:0px;
position:absolute;
left:451px;
top:660px;
width:249px;
height:124px;
}
#u4_text {
border-width:0px;
position:absolute;
left:10px;
top:10px;
width:229px;
word-wrap:break-word;
}
#u5_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:251px;
height:138px;
background:inherit;
background-color:rgba(54, 169, 206, 1);
border:none;
border-radius:0px;
-moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
-webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
}
#u5 {
border-width:0px;
position:absolute;
left:1218px;
top:671px;
width:251px;
height:138px;
}
#u5_text {
border-width:0px;
position:absolute;
left:10px;
top:10px;
width:231px;
word-wrap:break-word;
}
#u6_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:150px;
height:150px;
background:inherit;
background-color:rgba(208, 225, 125, 1);
border:none;
border-radius:0px;
-moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
-webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
}
#u6 {
border-width:0px;
position:absolute;
left:197px;
top:195px;
width:150px;
height:150px;
}
#u6_text {
border-width:0px;
position:absolute;
left:10px;
top:10px;
width:130px;
word-wrap:break-word;
}
#u7_img {
border-width:0px;
position:absolute;
left:-13px;
top:-2px;
width:31px;
height:81px;
}
#u7 {
border-width:0px;
position:absolute;
left:256px;
top:129px;
width:5px;
height:66px;
}
#u7_text {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
visibility:hidden;
word-wrap:break-word;
}
#u8_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:150px;
height:150px;
background:inherit;
background-color:rgba(239, 90, 161, 1);
border:none;
border-radius:0px;
-moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
-webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
}
#u8 {
border-width:0px;
position:absolute;
left:495px;
top:157px;
width:150px;
height:150px;
}
#u8_text {
border-width:0px;
position:absolute;
left:10px;
top:10px;
width:130px;
word-wrap:break-word;
}
#u9_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:38px;
height:38px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
}
#u9 {
border-width:0px;
position:absolute;
left:346px;
top:91px;
width:38px;
height:38px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
}
#u9_text {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:38px;
white-space:nowrap;
}
#u10_img {
border-width:0px;
position:absolute;
left:-13px;
top:-2px;
width:31px;
height:58px;
}
#u10 {
border-width:0px;
position:absolute;
left:568px;
top:126px;
width:5px;
height:43px;
}
#u10_text {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
visibility:hidden;
word-wrap:break-word;
}
#u11_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:516px;
height:38px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
}
#u11 {
border-width:0px;
position:absolute;
left:881px;
top:0px;
width:516px;
height:38px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
}
#u11_text {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:516px;
white-space:nowrap;
} | rapid prototype UI/files/home/styles.css | body {
margin:0px;
background-image:none;
position:static;
left:auto;
width:1916px;
margin-left:0;
margin-right:0;
text-align:left;
}
#base {
position:absolute;
z-index:0;
}
#u0 {
border-width:0px;
position:absolute;
left:394px;
top:84px;
width:308px;
height:42px;
}
#u0_input {
position:absolute;
left:0px;
top:0px;
width:308px;
height:42px;
font-family:'Arial';
font-weight:400;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#000000;
}
#u0_input:disabled {
color:grayText;
}
#u1_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1916px;
height:750px;
}
#u1 {
border-width:0px;
position:absolute;
left:0px;
top:157px;
width:1916px;
height:750px;
}
#u1_text {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
visibility:hidden;
word-wrap:break-word;
}
#u2 {
border-width:0px;
position:absolute;
left:0px;
top:84px;
width:336px;
height:45px;
}
#u2_input {
position:absolute;
left:0px;
top:0px;
width:336px;
height:45px;
font-family:'Arial';
font-weight:400;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#000000;
text-align:left;
}
#u3 {
border-width:0px;
position:absolute;
left:724px;
top:84px;
width:161px;
height:42px;
}
#u3_input {
position:absolute;
left:0px;
top:0px;
width:161px;
height:42px;
font-family:'Arial';
font-weight:400;
font-style:normal;
font-size:13px;
text-decoration:none;
color:#333333;
text-align:center;
}
#u4_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:249px;
height:124px;
background:inherit;
background-color:rgba(255, 223, 37, 1);
border:none;
border-radius:0px;
-moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
-webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
}
#u4 {
border-width:0px;
position:absolute;
left:451px;
top:660px;
width:249px;
height:124px;
}
#u4_text {
border-width:0px;
position:absolute;
left:10px;
top:10px;
width:229px;
word-wrap:break-word;
}
#u5_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:251px;
height:138px;
background:inherit;
background-color:rgba(54, 169, 206, 1);
border:none;
border-radius:0px;
-moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
-webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
}
#u5 {
border-width:0px;
position:absolute;
left:1218px;
top:671px;
width:251px;
height:138px;
}
#u5_text {
border-width:0px;
position:absolute;
left:10px;
top:10px;
width:231px;
word-wrap:break-word;
}
#u6_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:150px;
height:150px;
background:inherit;
background-color:rgba(208, 225, 125, 1);
border:none;
border-radius:0px;
-moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
-webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
}
#u6 {
border-width:0px;
position:absolute;
left:197px;
top:195px;
width:150px;
height:150px;
}
#u6_text {
border-width:0px;
position:absolute;
left:10px;
top:10px;
width:130px;
word-wrap:break-word;
}
#u7_img {
border-width:0px;
position:absolute;
left:-13px;
top:-2px;
width:31px;
height:81px;
}
#u7 {
border-width:0px;
position:absolute;
left:256px;
top:129px;
width:5px;
height:66px;
}
#u7_text {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
visibility:hidden;
word-wrap:break-word;
}
#u8_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:150px;
height:150px;
background:inherit;
background-color:rgba(239, 90, 161, 1);
border:none;
border-radius:0px;
-moz-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
-webkit-box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
box-shadow:5px 5px 5px rgba(0, 0, 0, 0.2);
}
#u8 {
border-width:0px;
position:absolute;
left:495px;
top:157px;
width:150px;
height:150px;
}
#u8_text {
border-width:0px;
position:absolute;
left:10px;
top:10px;
width:130px;
word-wrap:break-word;
}
#u9_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:38px;
height:38px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
}
#u9 {
border-width:0px;
position:absolute;
left:346px;
top:91px;
width:38px;
height:38px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
}
#u9_text {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:38px;
white-space:nowrap;
}
#u10_img {
border-width:0px;
position:absolute;
left:-13px;
top:-2px;
width:31px;
height:58px;
}
#u10 {
border-width:0px;
position:absolute;
left:568px;
top:126px;
width:5px;
height:43px;
}
#u10_text {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
visibility:hidden;
word-wrap:break-word;
}
#u11_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:516px;
height:38px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
}
#u11 {
border-width:0px;
position:absolute;
left:881px;
top:0px;
width:516px;
height:38px;
font-family:'Arial Bold', 'Arial';
font-weight:700;
font-style:normal;
}
#u11_text {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:516px;
white-space:nowrap;
} | 0.350977 | 0.04778 |
.tree_div
{
overflow-x: auto;
/*background-color:#FAFDFE;*/
}
.tree_div .treeview_div
{
white-space: nowrap;
text-overflow: ellipsis;
top: 0px;
left: 0px;
float:left;
min-width:100%;
}
.tree_div .treebg_div
{
float:left;
/*min-width:100%;*/
/*height: 100%;*/
}
.tree_div .treenode_img{
top:0px;
left:0px;
width:11px;
height:12px;
padding-bottom:4px;
cursor: pointer;
margin-top:3px;
/*margin-right:5px;*/
}
.tree_div .treenode_div
{
position:relative;
overflow:hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.tree_div .treenode_text{
width: auto;
font-family: arial;
font-size: 12px;
color:#0086b2;
white-space: nowrap;
text-overflow: ellipsis;
cursor: pointer;
}
.tree_div .treenode_textsel{
font-family: arial;
font-size: 12px;
color:#7f5111;
white-space: nowrap;
text-overflow: ellipsis;
cursor: pointer;
}
.tree_div .treenode_nodesel{
font-family: arial;
font-size: 12px;
color:#7f5111;
white-space: nowrap;
text-overflow: ellipsis;
cursor: pointer;
}
.tree_div .treenode_left_on {
position:absolute;
left:0px;
width:3px;
height:26px;
background-image:url('/lfw/frame/device_pc/themes/webclassic/ui/ctrl/tree/images/list_selected_left.png');
background-repeat:no-repeat;
background-color:#ffffff;
}
.tree_div .treenode_on {
height:26px;
cursor: pointer;
background:url('/lfw/frame/device_pc/themes/webclassic/ui/ctrl/tree/images/list_selected_center.png') repeat-x;
white-space:nowrap;
}
.tree_div .treenode_right_on {
position:absolute;
right:0px;
width:3px;
height:26px;
background-image:url('/lfw/frame/device_pc/themes/webclassic/ui/ctrl/tree/images/list_selected_right.png');
background-repeat:no-repeat;
background-color:#ffffff;
}
.tree_div .treenode_left_off {
width:3px;
float:left;
height:100%; /* all browsers */
height:26px\9; /* IE8 and below */
*height:100%; /* IE7 and below */
}
.tree_div .treenode_off {
float:left;
height:100%;
white-space:nowrap;
}
.tree_div .treenode_right_off {
width:3px;
float:left;
height:100%;
}
.tree_div .treenode_left_over {
position:absolute;
left:0px;
width:3px;
height:26px;
background-image:url('/lfw/frame/device_pc/themes/webclassic/ui/ctrl/tree/images/list_over_left.png');
background-repeat:no-repeat;
background-color:#ffffff;
}
.tree_div .treenode_over {
height:26px;
cursor: pointer;
background:url('/lfw/frame/device_pc/themes/webclassic/ui/ctrl/tree/images/list_over_center.png') repeat-x;
white-space:nowrap;
}
.tree_div .treenode_right_over {
position:absolute;
right:0px;
width:3px;
height:26px;
background-image:url('/lfw/frame/device_pc/themes/webclassic/ui/ctrl/tree/images/list_over_right.png');
background-repeat:no-repeat;
background-color:#ffffff;
} | SCAP_WEBCO/pub/ext/hotwebs/lfw/frame/device_pc/themes/webclassic/ui/ctrl/tree/tree.css | .tree_div
{
overflow-x: auto;
/*background-color:#FAFDFE;*/
}
.tree_div .treeview_div
{
white-space: nowrap;
text-overflow: ellipsis;
top: 0px;
left: 0px;
float:left;
min-width:100%;
}
.tree_div .treebg_div
{
float:left;
/*min-width:100%;*/
/*height: 100%;*/
}
.tree_div .treenode_img{
top:0px;
left:0px;
width:11px;
height:12px;
padding-bottom:4px;
cursor: pointer;
margin-top:3px;
/*margin-right:5px;*/
}
.tree_div .treenode_div
{
position:relative;
overflow:hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.tree_div .treenode_text{
width: auto;
font-family: arial;
font-size: 12px;
color:#0086b2;
white-space: nowrap;
text-overflow: ellipsis;
cursor: pointer;
}
.tree_div .treenode_textsel{
font-family: arial;
font-size: 12px;
color:#7f5111;
white-space: nowrap;
text-overflow: ellipsis;
cursor: pointer;
}
.tree_div .treenode_nodesel{
font-family: arial;
font-size: 12px;
color:#7f5111;
white-space: nowrap;
text-overflow: ellipsis;
cursor: pointer;
}
.tree_div .treenode_left_on {
position:absolute;
left:0px;
width:3px;
height:26px;
background-image:url('/lfw/frame/device_pc/themes/webclassic/ui/ctrl/tree/images/list_selected_left.png');
background-repeat:no-repeat;
background-color:#ffffff;
}
.tree_div .treenode_on {
height:26px;
cursor: pointer;
background:url('/lfw/frame/device_pc/themes/webclassic/ui/ctrl/tree/images/list_selected_center.png') repeat-x;
white-space:nowrap;
}
.tree_div .treenode_right_on {
position:absolute;
right:0px;
width:3px;
height:26px;
background-image:url('/lfw/frame/device_pc/themes/webclassic/ui/ctrl/tree/images/list_selected_right.png');
background-repeat:no-repeat;
background-color:#ffffff;
}
.tree_div .treenode_left_off {
width:3px;
float:left;
height:100%; /* all browsers */
height:26px\9; /* IE8 and below */
*height:100%; /* IE7 and below */
}
.tree_div .treenode_off {
float:left;
height:100%;
white-space:nowrap;
}
.tree_div .treenode_right_off {
width:3px;
float:left;
height:100%;
}
.tree_div .treenode_left_over {
position:absolute;
left:0px;
width:3px;
height:26px;
background-image:url('/lfw/frame/device_pc/themes/webclassic/ui/ctrl/tree/images/list_over_left.png');
background-repeat:no-repeat;
background-color:#ffffff;
}
.tree_div .treenode_over {
height:26px;
cursor: pointer;
background:url('/lfw/frame/device_pc/themes/webclassic/ui/ctrl/tree/images/list_over_center.png') repeat-x;
white-space:nowrap;
}
.tree_div .treenode_right_over {
position:absolute;
right:0px;
width:3px;
height:26px;
background-image:url('/lfw/frame/device_pc/themes/webclassic/ui/ctrl/tree/images/list_over_right.png');
background-repeat:no-repeat;
background-color:#ffffff;
} | 0.201892 | 0.068289 |