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 |
|---|---|---|---|---|
.header {
width: 100%;
min-height: 45px;
position: sticky;
top: 0;
left: 0;
z-index: 2;
box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.16);
background: white;
display: flex;
justify-content: center;
}
.header navbar {
width: 100%;
height: 100%;
text-align: center;
}
.header-gird {
width: 60rem;
}
.header .logo h1 {
font-size: 2rem;
}
img.logopic {
max-height: 1.5rem;
max-width: 1.5rem;
}
/* #endregion */
/* #region header menu */
.header .menus li {
opacity: 0.7;
}
.header .menus li.active {
opacity: 1;
}
.header .menus .material-icons {
font-size: 25px;
}
.header .menus .dropdown-menu {
border: none;
list-style: none;
opacity: 1 !important;
position: absolute;
left: inherit;
right: 0;
background: white;
}
.header .menus .dropdown-menu .dropdown-item:hover {
background: var(--c3);
border-radius: 5px;
}
.header .menus .dropdown-menu li {
animation: animate 300ms forwards ease;
border-radius: 5px;
background: var(--c1);
font-weight: 800 !important;
font-size: large;
width: 100%;
margin: 12px 0;
}
.header .menus .dropdown-menu li:nth-of-type(1) {
transform-origin: top left;
transform: skewX(45deg) scaleY(0);
}
.header .menus .dropdown-menu li:nth-of-type(2) {
transform-origin: top right;
transform: skewX(-45deg) scaleY(0);
animation-delay: 150ms;
}
.header .menus .dropdown-menu li:nth-of-type(4) {
transform-origin: top right;
transform: skewX(45deg) scaleY(0);
animation-delay: 300ms;
}
@keyframes animate {
to {
transform: skewX(0deg) scaleY(1);
}
}
.header .menus label {
cursor: pointer;
}
.header .menus .notify_length {
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-weight: bold;
font-size: 10px;
}
/* #endregion */
/* #region header search */
.header .search_form {
position: relative;
margin-left: auto;
/* margin-right: 10px; */
}
.header .search_form #search {
background: #fafafa;
border: 1px solid #ddd;
min-width: 250px;
width: 100%;
outline: none;
text-indent: 5px;
border-radius: 3px;
}
.header .search_form .search_icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 12px;
pointer-events: none;
}
.header .search_form .search_icon .material-icons {
font-size: 14px;
transform: translateY(3px);
}
.header .search_form .close_search {
position: absolute;
top: 0;
right: 5px;
cursor: pointer;
font-weight: 900;
/* color: crimson; */
}
/* #endregion */
.header .search_form .users {
position: absolute;
width: 100%;
min-width: 250px;
background: #fafafa;
max-height: calc(100vh- 150px);
overflow: auto;
margin-top: 3px;
}
.header .search_form .loading {
position: absolute;
top: 50%;
right: 5px;
width: 15px;
height: 15px;
transform: translateY(-50%);
} | client/src/styles/header.css | .header {
width: 100%;
min-height: 45px;
position: sticky;
top: 0;
left: 0;
z-index: 2;
box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.16);
background: white;
display: flex;
justify-content: center;
}
.header navbar {
width: 100%;
height: 100%;
text-align: center;
}
.header-gird {
width: 60rem;
}
.header .logo h1 {
font-size: 2rem;
}
img.logopic {
max-height: 1.5rem;
max-width: 1.5rem;
}
/* #endregion */
/* #region header menu */
.header .menus li {
opacity: 0.7;
}
.header .menus li.active {
opacity: 1;
}
.header .menus .material-icons {
font-size: 25px;
}
.header .menus .dropdown-menu {
border: none;
list-style: none;
opacity: 1 !important;
position: absolute;
left: inherit;
right: 0;
background: white;
}
.header .menus .dropdown-menu .dropdown-item:hover {
background: var(--c3);
border-radius: 5px;
}
.header .menus .dropdown-menu li {
animation: animate 300ms forwards ease;
border-radius: 5px;
background: var(--c1);
font-weight: 800 !important;
font-size: large;
width: 100%;
margin: 12px 0;
}
.header .menus .dropdown-menu li:nth-of-type(1) {
transform-origin: top left;
transform: skewX(45deg) scaleY(0);
}
.header .menus .dropdown-menu li:nth-of-type(2) {
transform-origin: top right;
transform: skewX(-45deg) scaleY(0);
animation-delay: 150ms;
}
.header .menus .dropdown-menu li:nth-of-type(4) {
transform-origin: top right;
transform: skewX(45deg) scaleY(0);
animation-delay: 300ms;
}
@keyframes animate {
to {
transform: skewX(0deg) scaleY(1);
}
}
.header .menus label {
cursor: pointer;
}
.header .menus .notify_length {
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-weight: bold;
font-size: 10px;
}
/* #endregion */
/* #region header search */
.header .search_form {
position: relative;
margin-left: auto;
/* margin-right: 10px; */
}
.header .search_form #search {
background: #fafafa;
border: 1px solid #ddd;
min-width: 250px;
width: 100%;
outline: none;
text-indent: 5px;
border-radius: 3px;
}
.header .search_form .search_icon {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 12px;
pointer-events: none;
}
.header .search_form .search_icon .material-icons {
font-size: 14px;
transform: translateY(3px);
}
.header .search_form .close_search {
position: absolute;
top: 0;
right: 5px;
cursor: pointer;
font-weight: 900;
/* color: crimson; */
}
/* #endregion */
.header .search_form .users {
position: absolute;
width: 100%;
min-width: 250px;
background: #fafafa;
max-height: calc(100vh- 150px);
overflow: auto;
margin-top: 3px;
}
.header .search_form .loading {
position: absolute;
top: 50%;
right: 5px;
width: 15px;
height: 15px;
transform: translateY(-50%);
} | 0.428712 | 0.077938 |
.bg-style-l{
background: #2be22e;
text-align: center;
padding: 4%;
font-size: large;
border-radius: 25px;
margin-right: auto;
margin-left: auto;
}
.bg-style-r{
background: #0085ff;
text-align: center;
padding: 4%;
font-size: large;
border-radius: 25px;
margin-right: auto;
margin-left: auto;
}
.select-style{
padding: 6px;
margin: 6px;
font-size: large;
}
body{
text-align: center;
margin:auto;
color: white;
margin-top: 3%;
margin-bottom: 5%;
}
.btn-align{
margin-left: auto;
margin-right: auto;
text-align: center;
width: 20%;
}
.div-align{
margin-left: auto;
margin-right: auto;
display: block;
text-align: center;
padding: 20px;
}
.ul-style{
list-style-type: none;
}
th,td{
text-align: center;
padding: 15px;
}
.name-stl{
text-transform: uppercase;
border: black solid 1px;
}
.header{
}
/* select style*/
.big {
font-size: 1.2em;
}
.small {
font-size: .7em;
}
.square {
width: .7em;
height: .7em;
margin: .5em;
display: inline-block;
}
/* Custom dropdown */
.custom-dropdown {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 10px; /* demo only */
}
.custom-dropdown select {
background-color:#004085;
color: #fff;
font-size: inherit;
padding: .5em;
padding-right: 2.5em;
border: 0;
margin: 0;
border-radius: 3px;
text-indent: 0.01px;
text-overflow: '';
/*Hiding the select arrow for firefox*/
-moz-appearance: none;
/*Hiding the select arrow for chrome*/
-webkit-appearance:none;
/*Hiding the select arrow default implementation*/
appearance: none;
}
/*Hiding the select arrow for IE10*/
.custom-dropdown select::-ms-expand {
display: none;
}
.custom-dropdown::before,
.custom-dropdown::after {
content: "";
position: absolute;
pointer-events: none;
}
.custom-dropdown::after { /* Custom dropdown arrow */
content: "\25BC";
height: 1em;
font-size: .625em;
line-height: 1;
right: 1.2em;
top: 50%;
margin-top: -.5em;
}
.custom-dropdown::before { /* Custom dropdown arrow cover */
width: 2em;
right: 0;
top: 0;
bottom: 0;
border-radius: 0 3px 3px 0;
background-color: rgba(0,0,0,.2);
}
.custom-dropdown::after {
color: rgba(0,0,0,.6);
}
.custom-dropdown select[disabled] {
color: rgba(0,0,0,.25);
} | css/custom_style.css | .bg-style-l{
background: #2be22e;
text-align: center;
padding: 4%;
font-size: large;
border-radius: 25px;
margin-right: auto;
margin-left: auto;
}
.bg-style-r{
background: #0085ff;
text-align: center;
padding: 4%;
font-size: large;
border-radius: 25px;
margin-right: auto;
margin-left: auto;
}
.select-style{
padding: 6px;
margin: 6px;
font-size: large;
}
body{
text-align: center;
margin:auto;
color: white;
margin-top: 3%;
margin-bottom: 5%;
}
.btn-align{
margin-left: auto;
margin-right: auto;
text-align: center;
width: 20%;
}
.div-align{
margin-left: auto;
margin-right: auto;
display: block;
text-align: center;
padding: 20px;
}
.ul-style{
list-style-type: none;
}
th,td{
text-align: center;
padding: 15px;
}
.name-stl{
text-transform: uppercase;
border: black solid 1px;
}
.header{
}
/* select style*/
.big {
font-size: 1.2em;
}
.small {
font-size: .7em;
}
.square {
width: .7em;
height: .7em;
margin: .5em;
display: inline-block;
}
/* Custom dropdown */
.custom-dropdown {
position: relative;
display: inline-block;
vertical-align: middle;
margin: 10px; /* demo only */
}
.custom-dropdown select {
background-color:#004085;
color: #fff;
font-size: inherit;
padding: .5em;
padding-right: 2.5em;
border: 0;
margin: 0;
border-radius: 3px;
text-indent: 0.01px;
text-overflow: '';
/*Hiding the select arrow for firefox*/
-moz-appearance: none;
/*Hiding the select arrow for chrome*/
-webkit-appearance:none;
/*Hiding the select arrow default implementation*/
appearance: none;
}
/*Hiding the select arrow for IE10*/
.custom-dropdown select::-ms-expand {
display: none;
}
.custom-dropdown::before,
.custom-dropdown::after {
content: "";
position: absolute;
pointer-events: none;
}
.custom-dropdown::after { /* Custom dropdown arrow */
content: "\25BC";
height: 1em;
font-size: .625em;
line-height: 1;
right: 1.2em;
top: 50%;
margin-top: -.5em;
}
.custom-dropdown::before { /* Custom dropdown arrow cover */
width: 2em;
right: 0;
top: 0;
bottom: 0;
border-radius: 0 3px 3px 0;
background-color: rgba(0,0,0,.2);
}
.custom-dropdown::after {
color: rgba(0,0,0,.6);
}
.custom-dropdown select[disabled] {
color: rgba(0,0,0,.25);
} | 0.419529 | 0.090173 |
body{
background-color: rgb(184, 184, 184);
}
.topnav {
overflow: hidden;
background-color: #333;
position: fixed;
width: 100%;
z-index: 1;
}
.logo{
float: left;
position: absolute;
}
.topnav a {
float: right;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
margin-right: 20px;
text-decoration: none;
font-size: 17px;
}
.topnav a:nth-child(2){
margin-right: 10%;
}
.topnav a:hover {
background-color: #ddd;
color: black;
cursor: pointer;
transition: 0.6s ease;
text-decoration: none;
}
.topnav a.active {
background-color: #5f5f5f;
color: #f2f2f2;
}
.topnav .icon {
display: none;
}
.topnav .logo:hover {
background-color: #333;
color: #f2f2f2;
}
@media screen and (max-width: 900px) {
.topnav a:not(:first-child) {
display: none;
}
.topnav a.icon {
float: right;
display: block;
margin:0;
}
}
@media screen and (max-width: 900px) {
.topnav.responsive {
position: relative;
display: flex;
flex-flow:column-reverse nowrap;
}
.topnav.responsive a {
position: relative;
float: none;
display: block;
text-align: left;
}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive .logo{
display: none;
}
}
/* .section{
background-image: url('images/background.png');
height:100vh;
background-repeat: no-repeat;
background-position: cover;
} */
/*SEARCH*/
.form {
position: relative;
}
.form .fa-search {
position: absolute;
top: 10px;
left: 20px;
color: #9ca3af
}
.form span {
position: absolute;
right: 17px;
top: 13px;
padding: 2px;
border-left: 1px solid #d1d5db
}
.left-pan {
padding-left: 7px
}
.left-pan i {
padding-left: 10px
}
.form-input {
height: 55px;
text-indent: 33px;
border-radius: 10px
}
.form-input:focus {
box-shadow: none;
border: none
}
.ratings i {
font-size: 16px;
color: red
}
.strike-text {
color: red;
text-decoration: line-through
}
.product-image {
width: 100%
}
.dot {
height: 7px;
width: 7px;
margin-left: 6px;
margin-right: 6px;
margin-top: 3px;
background-color: blue;
border-radius: 50%;
display: inline-block
}
.spec-1 {
color: #938787;
font-size: 15px
}
h5 {
font-weight: 400
}
.para {
font-size: 16px
}
/*Kategorije*/
.box_content {
text-align: justify;
max-width: 600px;
width: 100%;
margin: 120px auto;
padding: 15px;
color: #595959;
-webkit-border-bottom-right-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomright: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px
}
ol {
counter-reset: li;
list-style: none;
font: 15px 'trebuchet MS', 'lucida sans';
padding: 0;
margin-bottom: 4em;
text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
margin-left: -5px;
margin-top: 0px;
margin-bottom: 0px
}
ol ol {
margin: 0 0 0 2em
}
.rounded-list a {
position: relative;
display: block;
padding: .4em .4em .4em 2em;
margin: .5em 0;
background: #ddd;
color: #444;
box-shadow: 2px 2px 2px 2px silver;
text-decoration: none;
-moz-border-radius: .3em;
-webkit-border-radius: .3em;
border-radius: .3em;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-ms-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out
}
.rounded-list a:before {
content: counter(li);
counter-increment: li;
position: absolute;
left: -1.3em;
top: 50%;
margin-top: -1.3em;
background: #ffc923;
height: 39px;
width: 39px;
line-height: 31px;
border: .3em solid #fff;
text-align: center;
font-weight: bold;
-moz-border-radius: 2em;
-webkit-border-radius: 2em;
border-radius: 2em;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-ms-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out
}
.rounded-list a:hover:before {
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg)
}
.rounded-list a:hover:before {
background: #1da7e7;
color: #fff
}
/*Prijava*/
.container form {
margin: 150px 0 100px 0;
}
.container form input[type=submit] {
background-color: #0b0070;
color: #ffff;
font-size: 18px;
margin-top: 40px;
padding-bottom:30px ;
}
.container form h2 {
margin-bottom: 40px;
}
.center{
justify-content: center;
}
input[type=text ],input[type=number ],input[type=email ],input[type=password ]{
box-shadow:2px 2px 2px 2px silver;
}
.alert {
border: 1px solid #e62f2f;
background-color: #e62f2f;
color: white;
margin: 2.5%;
padding: 10px;
color: #a8a8a8;
font-size: 20px;
}
/* .shadow{
box-shadow:2px 2px 2px 2px silver;
} */
.registration-form{
padding: 50px 0;
}
.registration-form form{
background-color: #fff;
max-width: 600px;
margin: auto;
padding: 50px 70px;
border-top-left-radius: 30px;
border-top-right-radius: 30px;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
}
.registration-form .form-icon{
text-align: center;
background-color: #5891ff;
border-radius: 50%;
font-size: 40px;
color: white;
width: 100px;
height: 100px;
margin: auto;
margin-bottom: 50px;
line-height: 100px;
}
.registration-form .item{
border-radius: 20px;
margin-bottom: 25px;
padding: 10px 20px;
}
.registration-form .create-account{
border-radius: 30px;
padding: 10px 20px;
font-size: 18px;
font-weight: bold;
background-color: #5791ff;
border: none;
color: white;
margin-top: 20px;
}
.registration-form .social-media{
max-width: 600px;
background-color: #fff;
margin: auto;
padding: 35px 0;
text-align: center;
border-bottom-left-radius: 30px;
border-bottom-right-radius: 30px;
color: #9fadca;
border-top: 1px solid #dee9ff;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
}
@media (max-width: 576px) {
.registration-form form{
padding: 50px 20px;
}
.registration-form {
width: 70px;
height: 70px;
font-size: 30px;
line-height: 70px;
}
} | public/css/style.css | body{
background-color: rgb(184, 184, 184);
}
.topnav {
overflow: hidden;
background-color: #333;
position: fixed;
width: 100%;
z-index: 1;
}
.logo{
float: left;
position: absolute;
}
.topnav a {
float: right;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
margin-right: 20px;
text-decoration: none;
font-size: 17px;
}
.topnav a:nth-child(2){
margin-right: 10%;
}
.topnav a:hover {
background-color: #ddd;
color: black;
cursor: pointer;
transition: 0.6s ease;
text-decoration: none;
}
.topnav a.active {
background-color: #5f5f5f;
color: #f2f2f2;
}
.topnav .icon {
display: none;
}
.topnav .logo:hover {
background-color: #333;
color: #f2f2f2;
}
@media screen and (max-width: 900px) {
.topnav a:not(:first-child) {
display: none;
}
.topnav a.icon {
float: right;
display: block;
margin:0;
}
}
@media screen and (max-width: 900px) {
.topnav.responsive {
position: relative;
display: flex;
flex-flow:column-reverse nowrap;
}
.topnav.responsive a {
position: relative;
float: none;
display: block;
text-align: left;
}
.topnav.responsive .icon {
position: absolute;
right: 0;
top: 0;
}
.topnav.responsive .logo{
display: none;
}
}
/* .section{
background-image: url('images/background.png');
height:100vh;
background-repeat: no-repeat;
background-position: cover;
} */
/*SEARCH*/
.form {
position: relative;
}
.form .fa-search {
position: absolute;
top: 10px;
left: 20px;
color: #9ca3af
}
.form span {
position: absolute;
right: 17px;
top: 13px;
padding: 2px;
border-left: 1px solid #d1d5db
}
.left-pan {
padding-left: 7px
}
.left-pan i {
padding-left: 10px
}
.form-input {
height: 55px;
text-indent: 33px;
border-radius: 10px
}
.form-input:focus {
box-shadow: none;
border: none
}
.ratings i {
font-size: 16px;
color: red
}
.strike-text {
color: red;
text-decoration: line-through
}
.product-image {
width: 100%
}
.dot {
height: 7px;
width: 7px;
margin-left: 6px;
margin-right: 6px;
margin-top: 3px;
background-color: blue;
border-radius: 50%;
display: inline-block
}
.spec-1 {
color: #938787;
font-size: 15px
}
h5 {
font-weight: 400
}
.para {
font-size: 16px
}
/*Kategorije*/
.box_content {
text-align: justify;
max-width: 600px;
width: 100%;
margin: 120px auto;
padding: 15px;
color: #595959;
-webkit-border-bottom-right-radius: 4px;
-webkit-border-bottom-left-radius: 4px;
-moz-border-radius-bottomright: 4px;
-moz-border-radius-bottomleft: 4px;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px
}
ol {
counter-reset: li;
list-style: none;
font: 15px 'trebuchet MS', 'lucida sans';
padding: 0;
margin-bottom: 4em;
text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
margin-left: -5px;
margin-top: 0px;
margin-bottom: 0px
}
ol ol {
margin: 0 0 0 2em
}
.rounded-list a {
position: relative;
display: block;
padding: .4em .4em .4em 2em;
margin: .5em 0;
background: #ddd;
color: #444;
box-shadow: 2px 2px 2px 2px silver;
text-decoration: none;
-moz-border-radius: .3em;
-webkit-border-radius: .3em;
border-radius: .3em;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-ms-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out
}
.rounded-list a:before {
content: counter(li);
counter-increment: li;
position: absolute;
left: -1.3em;
top: 50%;
margin-top: -1.3em;
background: #ffc923;
height: 39px;
width: 39px;
line-height: 31px;
border: .3em solid #fff;
text-align: center;
font-weight: bold;
-moz-border-radius: 2em;
-webkit-border-radius: 2em;
border-radius: 2em;
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-ms-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out
}
.rounded-list a:hover:before {
-moz-transform: rotate(360deg);
-webkit-transform: rotate(360deg);
-moz-transform: rotate(360deg);
-ms-transform: rotate(360deg);
-o-transform: rotate(360deg);
transform: rotate(360deg)
}
.rounded-list a:hover:before {
background: #1da7e7;
color: #fff
}
/*Prijava*/
.container form {
margin: 150px 0 100px 0;
}
.container form input[type=submit] {
background-color: #0b0070;
color: #ffff;
font-size: 18px;
margin-top: 40px;
padding-bottom:30px ;
}
.container form h2 {
margin-bottom: 40px;
}
.center{
justify-content: center;
}
input[type=text ],input[type=number ],input[type=email ],input[type=password ]{
box-shadow:2px 2px 2px 2px silver;
}
.alert {
border: 1px solid #e62f2f;
background-color: #e62f2f;
color: white;
margin: 2.5%;
padding: 10px;
color: #a8a8a8;
font-size: 20px;
}
/* .shadow{
box-shadow:2px 2px 2px 2px silver;
} */
.registration-form{
padding: 50px 0;
}
.registration-form form{
background-color: #fff;
max-width: 600px;
margin: auto;
padding: 50px 70px;
border-top-left-radius: 30px;
border-top-right-radius: 30px;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
}
.registration-form .form-icon{
text-align: center;
background-color: #5891ff;
border-radius: 50%;
font-size: 40px;
color: white;
width: 100px;
height: 100px;
margin: auto;
margin-bottom: 50px;
line-height: 100px;
}
.registration-form .item{
border-radius: 20px;
margin-bottom: 25px;
padding: 10px 20px;
}
.registration-form .create-account{
border-radius: 30px;
padding: 10px 20px;
font-size: 18px;
font-weight: bold;
background-color: #5791ff;
border: none;
color: white;
margin-top: 20px;
}
.registration-form .social-media{
max-width: 600px;
background-color: #fff;
margin: auto;
padding: 35px 0;
text-align: center;
border-bottom-left-radius: 30px;
border-bottom-right-radius: 30px;
color: #9fadca;
border-top: 1px solid #dee9ff;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
}
@media (max-width: 576px) {
.registration-form form{
padding: 50px 20px;
}
.registration-form {
width: 70px;
height: 70px;
font-size: 30px;
line-height: 70px;
}
} | 0.366023 | 0.094761 |
@media screen and (max-height: 250px) {
.sidenav a {
font-size: 18px;
}
}
* {
margin: 0;
padding: 0;
}
body {
font-family: "Metric";
font-style: normal;
}
.page {
display: flex;
flex-wrap: nowrap;
}
.sidenav {
width: 60px;
top: 0;
left: 0;
display: block;
background-color: #171717;
position: fixed;
height: 100%;
}
.content {
flex: 70%;
width: 100%;
height: auto;
background-color: white;
border-bottom: 1px solid grey;
margin-left: 60px;
}
#header_logo {
width: 60px;
height: 60px;
}
.sidenav a {
text-align: center;
padding-top: 15px;
padding-bottom: 15px;
width: auto;
}
.sidenav a,
#dropdown-btn {
text-decoration: none;
font-size: 16px;
color: whitesmoke;
display: block;
border: none;
background: none;
width: 100%;
text-align: center;
cursor: pointer;
outline: none;
overflow: hidden;
}
.sidenav a:hover {
opacity: 0.5;
}
.black {
background-color: #000000;
height: 1px;
border: 0px;
}
.grey {
background-color: #242628;
height: 1px;
border: 0px;
}
#dropdown-container {
display: none;
background-color: #222222;
padding-left: 0px;
align-items: center;
}
.arrow {
width: 13px;
height: 28px;
border-radius: 15px;
position: absolute;
margin-left: 60px;
}
.header_menu {
margin-left: 160px;
}
.header {
width: 100%;
height: 60px;
justify-content: space-between;
position: relative;
display: flex;
flex-direction: row;
align-items: center;
background-color: #ffffff;
border-bottom: 1px solid #cccfd2;
}
.icon {
display: flex;
align-items: center;
}
.lang_prof {
display: flex;
align-items: center;
}
.lang {
width: 76px;
height: 60px;
border-left: 1px solid #e1e1e1;
text-align: center;
align-items: center;
font-weight: 400;
}
#drop-btn {
text-decoration: none;
font-size: 14px;
color: #212121;
width: 76px;
height: 60px;
border: none;
cursor: pointer;
background: transparent;
outline: none;
}
.header_flag img {
width: 16px;
height: 9px;
}
#dropdown-container_flag {
display: none;
background-color: #ffffff;
flex-wrap: wrap;
}
#dropdown-container_flag a {
text-decoration: none;
font-size: 14px;
font-family: "Metric";
color: #212121;
width: 76px;
height: 24px;
border: none;
cursor: pointer;
}
.profile {
display: flex;
flex-wrap: nowrap;
align-items: center;
height: 60px;
border-left: 1px solid #e1e1e1;
}
#profile_image {
margin-left: 20px;
width: 42px;
height: 42px;
}
#profile_name,
#profile_info {
font-family: 'Metric';
font-size: 14px;
font-weight: 400;
line-height: 15px;
color: #586784;
margin: 0px 10px;
}
#profile_name {
color: #636363;
}
#profile_info {
color: #989898;
}
.prof_in {
margin-right: 20px;
}
.header_button {
height: 8px;
border: 0;
padding: 0;
margin-right: 32px;
background-color: #ffffff;
}
.fav_cont {
height: 40px;
background-color: whitesmoke;
display: flex;
justify-content: space-between;
flex-direction: row;
flex-wrap: nowrap;
font-family: "Metric";
}
.fav_cont {
text-align: center;
align-items: center;
}
.fav_cont p {
padding-left: 20px;
color: #6e6e6e;
font-weight: 400;
}
#fav {
text-decoration: none;
font-size: 14px;
font-family: "Metric";
color: #878686;
background-color: #d8d8d8;
height: 100%;
padding: 0 10px;
border: none;
cursor: pointer;
float: right;
}
.stats {
display: flex;
flex-direction: row;
height: 200px;
align-items: center;
text-align: center;
background-color: #ffffff;
font-family: "Metric";
border-top: 1px solid #e1e1e1;
}
.stats h2 {
font-size: 50px;
font-weight: 700;
font-family: "Metric";
}
.stats span {
font-weight: 400;
margin-top: 12px;
color: #878686;
font-family: "Metric";
}
.some {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
list-style: none;
justify-content: center;
font-family: "Metric";
}
.stats>div {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex: 1;
height: 200px;
border-right: 1px solid #e1e1e1;
text-align: center;
}
.sign_ups {
color: #00acac;
background-image: url('../images/check.png');
background-repeat: no-repeat;
background-size: contain;
background-position: right bottom;
}
#s i {
color: #00acac;
}
.profit {
color: #1f7bb6;
background-image: url('../images/arrow.png');
background-repeat: no-repeat;
background-size: contain;
background-position: right bottom;
}
#p i {
color: #1f7bb6;
}
.commisions {
color: #fbcf71;
background-image: url('../images/dollar.png');
background-repeat: no-repeat;
background-size: contain;
background-position: right bottom;
}
#c i {
color: #fbcf71;
}
.pending {
color: #00acac;
background-image: url('../images/question.png');
background-repeat: no-repeat;
background-size: contain;
background-position: right bottom;
}
#pc i {
color: #00acac;
}
.charts {
display: flex;
flex-direction: row;
height: 300px;
color: #e1e1e1;
font-family: "Metric";
background-color: #171717;
}
.charts>div {}
.line_chart {
justify-content: space-between;
flex-direction: row;
font-family: "Metric";
background-color: rgb(59, 59, 59);
flex: 43%;
}
#ln_ch_info {
display: flex;
font-size: 19px;
flex-direction: row;
justify-content: space-between;
height: auto;
padding: 10px 20px 0px 20px;
align-items: center;
text-align: center;
}
#lineChart {
display: block;
width: 100%;
height: 250px;
background-color: rgb(59, 59, 59);
opacity: 1;
}
#g_ch_info {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: auto;
padding: 10px 20px 0px 20px;
background-color: rgb(59, 59, 59);
text-align: center;
}
.doughnut {
flex: 23.333333%;
font-size: 19px;
background-color: #222222;
}
.doughnut>h2 {
padding: 16px 19px 0px;
}
.geo {
flex: 33.333333%;
position: relative;
background-color: rgb(59, 59, 59);
}
.ch_title {
font-size: 21px;
font-weight: 400;
font-family: 'Metric';
}
#g_ch_m {
border-top: 1px solid #2a2a2a;
background-color: rgb(59, 59, 59);
font-family: 'Metric';
font-size: 14px;
text-align: center;
position: absolute;
width: 100%;
bottom: 0;
left: 0;
}
#g_m_l {
display: flex;
flex-flow: column;
justify-content: space-between;
text-align: left;
font-family: 'Metric';
font-size: 16px;
font-weight: 400;
line-height: 32px;
width: 100%;
}
#g_m_l_s {
border-top: 1px solid #2a2a2a;
padding: 0px 20px;
}
#g_ch_m_h {
display: flex;
float: right;
height: 30px;
align-items: center;
padding-right: 20px;
}
#g_m_n {
display: inline-block;
float: right;
}
.t_names {
display: flex;
flex-direction: row;
height: 100px;
background-color: grey;
font-family: 'Metric';
font-size: 14px;
font-weight: 400;
line-height: 15px;
}
.t_names_m {
height: 40px;
background-color: #353535;
color: #e1e1e1;
font-family: 'Metric';
font-size: 14px;
font-weight: 400;
line-height: 15px;
}
.t_names>div {
flex: 33.333333%;
height: 100px;
background-color: #e0e0e0;
}
.t_n_p {
display: flex;
font-size: 19px;
flex-direction: row;
justify-content: space-between;
height: 40px;
padding: 0px 20px;
align-items: center;
text-align: center;
border-bottom: 1px solid #d0d7e3;
}
.t_b {
border-bottom: 2px solid #d4d4d4;
}
.tb table,
th,
td {
border-spacing: 5px;
border-collapse: collapse;
}
.tb th {
text-align: left;
padding: 14px 20px 14px 20px;
}
.tb td {
padding: 16px 20px 17px 20px;
border-bottom: 1px solid #e9e9e9;
}
#t_icon {
background: url('../images/svg/table_icon.svg') no-repeat;
background-size: 24px;
background-position: center;
}
#f {
width: 100%;
height: 150%;
font-family: 'Metric';
font-size: 14px;
font-weight: 400;
line-height: 15px;
background-color: #ffffff;
border-bottom: 1px solid #d4d4d4;
border-right: 1px solid #d4d4d4;
}
.main_content {
display: block;
padding-left: 181px;
padding-top: 30px;
background-color: blue;
}
.chart-container {
width: 80%;
height: 480px;
margin: 0 auto;
}
@font-face {
font-family: 'Metric';
font-style: normal;
font-weight: 400;
src: local("Metric regular"),
url('../fonts/Metric/metric-test-medium.woff') format('woff');
}
@font-face {
font-family: 'Metric';
font-style: bold;
font-weight: 700;
src: local('Metric Bold'),
url('../fonts/Metric/metric-test-bold.woff') format('woff');
} | css/style.css | @media screen and (max-height: 250px) {
.sidenav a {
font-size: 18px;
}
}
* {
margin: 0;
padding: 0;
}
body {
font-family: "Metric";
font-style: normal;
}
.page {
display: flex;
flex-wrap: nowrap;
}
.sidenav {
width: 60px;
top: 0;
left: 0;
display: block;
background-color: #171717;
position: fixed;
height: 100%;
}
.content {
flex: 70%;
width: 100%;
height: auto;
background-color: white;
border-bottom: 1px solid grey;
margin-left: 60px;
}
#header_logo {
width: 60px;
height: 60px;
}
.sidenav a {
text-align: center;
padding-top: 15px;
padding-bottom: 15px;
width: auto;
}
.sidenav a,
#dropdown-btn {
text-decoration: none;
font-size: 16px;
color: whitesmoke;
display: block;
border: none;
background: none;
width: 100%;
text-align: center;
cursor: pointer;
outline: none;
overflow: hidden;
}
.sidenav a:hover {
opacity: 0.5;
}
.black {
background-color: #000000;
height: 1px;
border: 0px;
}
.grey {
background-color: #242628;
height: 1px;
border: 0px;
}
#dropdown-container {
display: none;
background-color: #222222;
padding-left: 0px;
align-items: center;
}
.arrow {
width: 13px;
height: 28px;
border-radius: 15px;
position: absolute;
margin-left: 60px;
}
.header_menu {
margin-left: 160px;
}
.header {
width: 100%;
height: 60px;
justify-content: space-between;
position: relative;
display: flex;
flex-direction: row;
align-items: center;
background-color: #ffffff;
border-bottom: 1px solid #cccfd2;
}
.icon {
display: flex;
align-items: center;
}
.lang_prof {
display: flex;
align-items: center;
}
.lang {
width: 76px;
height: 60px;
border-left: 1px solid #e1e1e1;
text-align: center;
align-items: center;
font-weight: 400;
}
#drop-btn {
text-decoration: none;
font-size: 14px;
color: #212121;
width: 76px;
height: 60px;
border: none;
cursor: pointer;
background: transparent;
outline: none;
}
.header_flag img {
width: 16px;
height: 9px;
}
#dropdown-container_flag {
display: none;
background-color: #ffffff;
flex-wrap: wrap;
}
#dropdown-container_flag a {
text-decoration: none;
font-size: 14px;
font-family: "Metric";
color: #212121;
width: 76px;
height: 24px;
border: none;
cursor: pointer;
}
.profile {
display: flex;
flex-wrap: nowrap;
align-items: center;
height: 60px;
border-left: 1px solid #e1e1e1;
}
#profile_image {
margin-left: 20px;
width: 42px;
height: 42px;
}
#profile_name,
#profile_info {
font-family: 'Metric';
font-size: 14px;
font-weight: 400;
line-height: 15px;
color: #586784;
margin: 0px 10px;
}
#profile_name {
color: #636363;
}
#profile_info {
color: #989898;
}
.prof_in {
margin-right: 20px;
}
.header_button {
height: 8px;
border: 0;
padding: 0;
margin-right: 32px;
background-color: #ffffff;
}
.fav_cont {
height: 40px;
background-color: whitesmoke;
display: flex;
justify-content: space-between;
flex-direction: row;
flex-wrap: nowrap;
font-family: "Metric";
}
.fav_cont {
text-align: center;
align-items: center;
}
.fav_cont p {
padding-left: 20px;
color: #6e6e6e;
font-weight: 400;
}
#fav {
text-decoration: none;
font-size: 14px;
font-family: "Metric";
color: #878686;
background-color: #d8d8d8;
height: 100%;
padding: 0 10px;
border: none;
cursor: pointer;
float: right;
}
.stats {
display: flex;
flex-direction: row;
height: 200px;
align-items: center;
text-align: center;
background-color: #ffffff;
font-family: "Metric";
border-top: 1px solid #e1e1e1;
}
.stats h2 {
font-size: 50px;
font-weight: 700;
font-family: "Metric";
}
.stats span {
font-weight: 400;
margin-top: 12px;
color: #878686;
font-family: "Metric";
}
.some {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
list-style: none;
justify-content: center;
font-family: "Metric";
}
.stats>div {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex: 1;
height: 200px;
border-right: 1px solid #e1e1e1;
text-align: center;
}
.sign_ups {
color: #00acac;
background-image: url('../images/check.png');
background-repeat: no-repeat;
background-size: contain;
background-position: right bottom;
}
#s i {
color: #00acac;
}
.profit {
color: #1f7bb6;
background-image: url('../images/arrow.png');
background-repeat: no-repeat;
background-size: contain;
background-position: right bottom;
}
#p i {
color: #1f7bb6;
}
.commisions {
color: #fbcf71;
background-image: url('../images/dollar.png');
background-repeat: no-repeat;
background-size: contain;
background-position: right bottom;
}
#c i {
color: #fbcf71;
}
.pending {
color: #00acac;
background-image: url('../images/question.png');
background-repeat: no-repeat;
background-size: contain;
background-position: right bottom;
}
#pc i {
color: #00acac;
}
.charts {
display: flex;
flex-direction: row;
height: 300px;
color: #e1e1e1;
font-family: "Metric";
background-color: #171717;
}
.charts>div {}
.line_chart {
justify-content: space-between;
flex-direction: row;
font-family: "Metric";
background-color: rgb(59, 59, 59);
flex: 43%;
}
#ln_ch_info {
display: flex;
font-size: 19px;
flex-direction: row;
justify-content: space-between;
height: auto;
padding: 10px 20px 0px 20px;
align-items: center;
text-align: center;
}
#lineChart {
display: block;
width: 100%;
height: 250px;
background-color: rgb(59, 59, 59);
opacity: 1;
}
#g_ch_info {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
height: auto;
padding: 10px 20px 0px 20px;
background-color: rgb(59, 59, 59);
text-align: center;
}
.doughnut {
flex: 23.333333%;
font-size: 19px;
background-color: #222222;
}
.doughnut>h2 {
padding: 16px 19px 0px;
}
.geo {
flex: 33.333333%;
position: relative;
background-color: rgb(59, 59, 59);
}
.ch_title {
font-size: 21px;
font-weight: 400;
font-family: 'Metric';
}
#g_ch_m {
border-top: 1px solid #2a2a2a;
background-color: rgb(59, 59, 59);
font-family: 'Metric';
font-size: 14px;
text-align: center;
position: absolute;
width: 100%;
bottom: 0;
left: 0;
}
#g_m_l {
display: flex;
flex-flow: column;
justify-content: space-between;
text-align: left;
font-family: 'Metric';
font-size: 16px;
font-weight: 400;
line-height: 32px;
width: 100%;
}
#g_m_l_s {
border-top: 1px solid #2a2a2a;
padding: 0px 20px;
}
#g_ch_m_h {
display: flex;
float: right;
height: 30px;
align-items: center;
padding-right: 20px;
}
#g_m_n {
display: inline-block;
float: right;
}
.t_names {
display: flex;
flex-direction: row;
height: 100px;
background-color: grey;
font-family: 'Metric';
font-size: 14px;
font-weight: 400;
line-height: 15px;
}
.t_names_m {
height: 40px;
background-color: #353535;
color: #e1e1e1;
font-family: 'Metric';
font-size: 14px;
font-weight: 400;
line-height: 15px;
}
.t_names>div {
flex: 33.333333%;
height: 100px;
background-color: #e0e0e0;
}
.t_n_p {
display: flex;
font-size: 19px;
flex-direction: row;
justify-content: space-between;
height: 40px;
padding: 0px 20px;
align-items: center;
text-align: center;
border-bottom: 1px solid #d0d7e3;
}
.t_b {
border-bottom: 2px solid #d4d4d4;
}
.tb table,
th,
td {
border-spacing: 5px;
border-collapse: collapse;
}
.tb th {
text-align: left;
padding: 14px 20px 14px 20px;
}
.tb td {
padding: 16px 20px 17px 20px;
border-bottom: 1px solid #e9e9e9;
}
#t_icon {
background: url('../images/svg/table_icon.svg') no-repeat;
background-size: 24px;
background-position: center;
}
#f {
width: 100%;
height: 150%;
font-family: 'Metric';
font-size: 14px;
font-weight: 400;
line-height: 15px;
background-color: #ffffff;
border-bottom: 1px solid #d4d4d4;
border-right: 1px solid #d4d4d4;
}
.main_content {
display: block;
padding-left: 181px;
padding-top: 30px;
background-color: blue;
}
.chart-container {
width: 80%;
height: 480px;
margin: 0 auto;
}
@font-face {
font-family: 'Metric';
font-style: normal;
font-weight: 400;
src: local("Metric regular"),
url('../fonts/Metric/metric-test-medium.woff') format('woff');
}
@font-face {
font-family: 'Metric';
font-style: bold;
font-weight: 700;
src: local('Metric Bold'),
url('../fonts/Metric/metric-test-bold.woff') format('woff');
} | 0.334372 | 0.077483 |
.feature-card-container {
width: 320px;
margin: var(--dl-space-space-halfunit);
display: flex;
position: relative;
align-items: center;
flex-direction: column;
}
.feature-card-image {
width: 100%;
height: 296px;
object-fit: cover;
}
.feature-card-text {
margin-top: var(--dl-space-space-unit);
margin-bottom: var(--dl-space-space-unit);
}
.feature-card-text1 {
text-align: center;
}
.home-container {
width: 100%;
height: auto;
display: flex;
overflow: hidden;
min-height: 100vh;
align-items: center;
flex-direction: column;
}
.home-header-container {
width: 100%;
display: flex;
align-items: center;
flex-direction: column;
}
.home-header {
flex: 0 0 auto;
width: 100%;
display: flex;
padding: var(--dl-space-space-doubleunit);
z-index: 100;
position: relative;
max-width: 1110px;
align-items: center;
padding-right: 2rem;
flex-direction: row;
justify-content: space-between;
}
.home-logo {
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.home-image {
width: 54px;
height: 59px;
object-fit: cover;
}
.home-container01 {
border: 2px dashed rgba(120, 120, 120, 0.4);
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.home-mobile-menu {
top: 0px;
flex: 0 0 auto;
left: 0px;
width: 100%;
height: 100vh;
display: none;
padding: var(--dl-space-space-doubleunit);
z-index: 101;
position: absolute;
align-items: flex-start;
flex-direction: column;
background-color: var(--dl-color-gray-white);
}
.home-top {
flex: 0 0 auto;
width: 100%;
display: flex;
align-items: center;
margin-bottom: var(--dl-space-space-unit);
flex-direction: row;
justify-content: space-between;
}
.home-logo1 {
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.home-image1 {
width: 100px;
object-fit: cover;
}
.home-close-menu {
flex: 0 0 auto;
display: flex;
align-items: flex-start;
flex-direction: column;
}
.home-icon {
width: 24px;
height: 24px;
}
.home-mid {
flex: 0 0 auto;
width: 100%;
display: flex;
align-items: flex-start;
flex-direction: column;
}
.home-text {
transition: 0.3s;
margin-bottom: var(--dl-space-space-halfunit);
}
.home-text:hover {
color: var(--dl-color-turquoise-default);
}
.home-text01 {
transition: 0.3s;
margin-bottom: var(--dl-space-space-halfunit);
}
.home-text01:hover {
color: var(--dl-color-turquoise-default);
}
.home-text02 {
transition: 0.3s;
margin-bottom: var(--dl-space-space-halfunit);
}
.home-text02:hover {
color: var(--dl-color-turquoise-default);
}
.home-text03 {
transition: 0.3s;
margin-bottom: var(--dl-space-space-halfunit);
}
.home-text03:hover {
color: var(--dl-color-turquoise-default);
}
.home-text04 {
transition: 0.3s;
margin-bottom: var(--dl-space-space-halfunit);
}
.home-text04:hover {
color: var(--dl-color-turquoise-default);
}
.home-text05 {
transition: 0.3s;
}
.home-text05:hover {
color: var(--dl-color-turquoise-default);
}
.home-bot {
flex: 0 0 auto;
display: flex;
margin-top: auto;
align-items: flex-start;
flex-direction: column;
}
.home-container02 {
flex: 0 0 auto;
width: 200px;
display: flex;
align-items: flex-start;
flex-direction: row;
}
.home-link {
display: contents;
}
.home-container03 {
display: flex;
padding: var(--dl-space-space-halfunit);
align-items: flex-start;
border-radius: var(--dl-radius-radius-round);
flex-direction: column;
background-color: var(--dl-color-gray-900);
}
.home-icon02 {
fill: var(--dl-color-gray-white);
width: var(--dl-size-size-unit);
height: var(--dl-size-size-unit);
transition: 0.3s;
}
.home-icon02:hover {
fill: var(--dl-color-purple-default);
}
.home-link1 {
display: contents;
}
.home-container04 {
display: flex;
padding: var(--dl-space-space-halfunit);
align-items: flex-start;
margin-left: var(--dl-space-space-unit);
border-radius: var(--dl-radius-radius-round);
flex-direction: column;
background-color: var(--dl-color-gray-900);
}
.home-icon04 {
fill: var(--dl-color-gray-white);
width: var(--dl-size-size-unit);
height: var(--dl-size-size-unit);
transition: 0.3s;
}
.home-icon04:hover {
fill: var(--dl-color-pink-default);
}
.home-link2 {
display: contents;
}
.home-container05 {
display: flex;
padding: var(--dl-space-space-halfunit);
align-items: flex-start;
margin-left: var(--dl-space-space-unit);
border-radius: var(--dl-radius-radius-round);
flex-direction: column;
background-color: var(--dl-color-gray-900);
}
.home-icon06 {
fill: var(--dl-color-gray-white);
width: var(--dl-size-size-unit);
height: var(--dl-size-size-unit);
transition: 0.3s;
}
.home-icon06:hover {
fill: var(--dl-color-turquoise-default);
}
.home-link3 {
display: contents;
}
.home-container06 {
display: flex;
padding: var(--dl-space-space-halfunit);
align-items: flex-start;
margin-left: var(--dl-space-space-unit);
border-radius: var(--dl-radius-radius-round);
flex-direction: column;
background-color: var(--dl-color-gray-900);
}
.home-icon08 {
fill: var(--dl-color-gray-white);
width: var(--dl-size-size-unit);
height: var(--dl-size-size-unit);
transition: 0.3s;
}
.home-icon08:hover {
fill: var(--dl-color-orange-default);
}
.home-main {
width: 100%;
display: flex;
position: relative;
align-items: center;
flex-direction: column;
}
.home-blur-background {
top: 0px;
left: auto;
right: 0px;
width: 100%;
bottom: auto;
filter: blur(60px);
height: 70vh;
display: flex;
position: absolute;
align-items: center;
flex-direction: column;
background-color: #f2f2f2;
}
.home-hero {
flex: 0 0 auto;
width: 1069px;
display: flex;
padding: var(--dl-space-space-doubleunit);
z-index: 100;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.home-container07 {
flex: 0 0 auto;
width: auto;
height: auto;
display: flex;
align-items: space-between;
flex-direction: column;
}
.home-container08 {
flex: 0 0 auto;
width: auto;
height: auto;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
.home-text06 {
font-size: 72px;
font-family: Inter;
font-weight: 800;
line-height: 1.1;
text-transform: none;
text-decoration: none;
}
.home-text07 {
text-align: left;
}
.home-text10 {
color: #8c30f5;
text-align: left;
}
.home-text11 {
margin-top: var(--dl-space-space-tripleunit);
}
.home-text13 {
color: #0c0c0c;
}
.home-text14 {
margin-top: var(--dl-space-space-halfunit);
margin-bottom: var(--dl-space-space-unit);
}
.home-container09 {
height: 112px;
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: flex-start;
}
.home-container10 {
flex: 0 0 auto;
width: 489px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.home-link4 {
color: #ffffff;
width: 211px;
text-align: center;
border-width: 0px;
text-decoration: none;
background-color: #07beec;
}
.home-image2 {
width: 263px;
object-fit: cover;
}
.home-turquoise-cirble {
top: 439px;
left: auto;
right: 430px;
width: 170px;
bottom: auto;
filter: blur(60px);
opacity: 0.6;
position: absolute;
object-fit: cover;
}
.home-purple-circle {
top: -100px;
left: auto;
right: -26px;
width: 400px;
bottom: auto;
filter: blur(60px);
opacity: 0.4;
position: absolute;
object-fit: cover;
}
.home-left {
top: 653px;
left: 0px;
right: auto;
width: 420px;
bottom: auto;
position: absolute;
object-fit: cover;
}
.home-right {
top: 441px;
left: auto;
right: 0px;
width: 612px;
bottom: auto;
position: absolute;
object-fit: cover;
}
.home-features {
flex: 0 0 auto;
width: 100%;
display: flex;
padding: var(--dl-space-space-doubleunit);
z-index: 100;
max-width: 1110px;
align-items: center;
flex-direction: column;
justify-content: flex-start;
}
.home-features1 {
display: flex;
flex-wrap: wrap;
margin-top: var(--dl-space-space-doubleunit);
align-items: center;
flex-direction: row;
justify-content: center;
}
.home-feature2 {
flex: 0 0 auto;
width: 100%;
display: flex;
padding: var(--dl-space-space-doubleunit);
z-index: 100;
max-width: 1110px;
align-items: center;
flex-direction: column;
justify-content: flex-start;
}
.home-container11 {
display: flex;
align-items: center;
flex-direction: row;
justify-content: flex-start;
}
.home-text21 {
white-space: pre-wrap;
}
.home-text22 {
max-width: 400px;
margin-top: var(--dl-space-space-doubleunit);
margin-bottom: var(--dl-space-space-doubleunit);
}
.home-text23 {
white-space: pre-wrap;
}
.home-image3 {
width: 100%;
height: 400px;
margin-top: var(--dl-space-space-tripleunit);
object-fit: cover;
}
.home-c-t-a {
width: 100%;
display: flex;
overflow: hidden;
align-items: center;
flex-direction: column;
justify-content: center;
background-color: var(--dl-color-turquoise-default);
}
.home-container12 {
flex: 0 0 auto;
width: 100%;
display: flex;
padding: var(--dl-space-space-doubleunit);
z-index: 100;
flex-wrap: wrap;
max-width: 1110px;
align-items: center;
flex-direction: row;
justify-content: flex-start;
}
.home-container13 {
flex: 1;
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: flex-start;
}
.home-text24 {
font-size: 50px;
font-style: normal;
text-align: left;
font-family: Inter;
font-weight: 800;
line-height: 1.55;
text-transform: none;
text-decoration: none;
}
.home-text27 {
max-width: 500px;
}
.home-text28 {
white-space: pre-wrap;
}
.home-text29 {
max-width: 400px;
margin-top: var(--dl-space-space-doubleunit);
margin-bottom: var(--dl-space-space-halfunit);
}
.home-text30 {
white-space: pre-wrap;
}
.home-store-banner {
display: flex;
align-items: flex-start;
flex-direction: row;
justify-content: space-between;
}
.home-link5 {
display: contents;
}
.home-image4 {
width: 135px;
object-fit: cover;
text-decoration: none;
}
.home-container14 {
width: 520px;
display: flex;
position: relative;
align-items: center;
flex-direction: row;
justify-content: flex-start;
}
.home-image5 {
top: -100px;
left: auto;
right: var(--dl-space-space-doubleunit);
width: 232px;
bottom: auto;
position: absolute;
object-fit: cover;
}
.home-image6 {
top: -200px;
left: 32px;
width: 232px;
position: absolute;
object-fit: cover;
}
.home-footer {
flex: 0 0 auto;
color: var(--dl-color-gray-white);
width: 100%;
display: flex;
align-items: flex-start;
flex-direction: row;
justify-content: center;
background-color: var(--dl-color-gray-black);
}
.home-container15 {
flex: 0 0 auto;
width: 100%;
display: flex;
padding: var(--dl-space-space-doubleunit);
z-index: 100;
flex-wrap: wrap;
max-width: 1110px;
align-items: center;
flex-direction: column;
justify-content: space-between;
}
.home-image7 {
height: var(--dl-size-size-tripleunit);
object-fit: cover;
border-radius: var(--dl-radius-radius-radius4);
}
.home-container16 {
display: flex;
margin-top: var(--dl-space-space-doubleunit);
align-items: center;
margin-bottom: var(--dl-space-space-doubleunit);
flex-direction: row;
justify-content: flex-start;
}
.home-navlink {
transition: 0.3s;
margin-right: var(--dl-space-space-unit);
text-decoration: none;
}
.home-navlink:hover {
color: var(--dl-color-turquoise-default);
}
.home-navlink1 {
transition: 0.3s;
white-space: nowrap;
text-decoration: none;
}
.home-navlink1:hover {
color: var(--dl-color-turquoise-default);
}
.home-divider {
width: 100%;
height: 1px;
opacity: 0.2;
background-color: var(--dl-color-gray-white);
}
.home-container17 {
width: 100%;
display: flex;
margin-top: var(--dl-space-space-unit);
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.home-text31 {
color: var(--dl-color-gray-300);
margin-top: var(--dl-space-space-unit);
}
.home-container18 {
flex: 0 0 auto;
width: 200px;
display: flex;
align-items: flex-start;
flex-direction: row;
}
.home-link6 {
display: contents;
}
.home-container19 {
display: flex;
padding: var(--dl-space-space-halfunit);
align-items: flex-start;
border-radius: var(--dl-radius-radius-round);
flex-direction: column;
background-color: var(--dl-color-gray-900);
}
.home-icon10 {
fill: var(--dl-color-gray-white);
width: var(--dl-size-size-unit);
height: var(--dl-size-size-unit);
transition: 0.3s;
}
.home-icon10:hover {
fill: var(--dl-color-purple-default);
}
.home-link7 {
display: contents;
}
.home-container20 {
display: flex;
padding: var(--dl-space-space-halfunit);
align-items: flex-start;
margin-left: var(--dl-space-space-unit);
border-radius: var(--dl-radius-radius-round);
flex-direction: column;
background-color: var(--dl-color-gray-900);
}
.home-icon12 {
fill: var(--dl-color-gray-white);
width: var(--dl-size-size-unit);
height: var(--dl-size-size-unit);
transition: 0.3s;
}
.home-icon12:hover {
fill: var(--dl-color-turquoise-default);
}
@media(max-width: 991px) {
.home-container01 {
display: none;
}
.home-hero {
height: auto;
flex-direction: column;
}
.home-container11 {
align-items: flex-start;
flex-direction: column;
}
.home-container14 {
display: none;
}
}
@media(max-width: 767px) {
.home-text20 {
font-size: 40px;
}
.home-container16 {
flex-wrap: wrap;
justify-content: center;
}
.home-container17 {
flex-direction: column;
}
.home-text31 {
margin-top: var(--dl-space-space-unit);
margin-bottom: var(--dl-space-space-unit);
}
}
@media(max-width: 479px) {
.home-container01 {
display: none;
}
.home-bot {
width: 100%;
}
.home-hero {
width: 100%;
}
.home-container08 {
width: 478px;
}
.home-text06 {
width: auto;
height: auto;
font-size: 46px;
padding-left: var(--dl-space-space-halfunit);
padding-right: var(--dl-space-space-halfunit);
list-style-type: disc;
list-style-image: none;
list-style-position: outside;
}
.home-text11 {
font-size: 28px;
padding-left: var(--dl-space-space-unit);
padding-right: var(--dl-space-space-unit);
}
.home-text14 {
margin-left: var(--dl-space-space-unit);
margin-right: var(--dl-space-space-unit);
}
.home-container09 {
height: 64px;
align-self: flex-start;
align-items: stretch;
justify-content: space-between;
}
.home-container10 {
width: auto;
height: auto;
padding: 0px;
align-self: center;
}
.home-link4 {
width: 187px;
height: auto;
align-self: flex-start;
margin-left: var(--dl-space-space-unit);
}
.home-image2 {
width: auto;
height: auto;
margin-top: 100px;
}
.home-text19 {
width: 438px;
text-align: center;
}
.home-container18 {
align-self: center;
justify-content: center;
}
} | home.css | .feature-card-container {
width: 320px;
margin: var(--dl-space-space-halfunit);
display: flex;
position: relative;
align-items: center;
flex-direction: column;
}
.feature-card-image {
width: 100%;
height: 296px;
object-fit: cover;
}
.feature-card-text {
margin-top: var(--dl-space-space-unit);
margin-bottom: var(--dl-space-space-unit);
}
.feature-card-text1 {
text-align: center;
}
.home-container {
width: 100%;
height: auto;
display: flex;
overflow: hidden;
min-height: 100vh;
align-items: center;
flex-direction: column;
}
.home-header-container {
width: 100%;
display: flex;
align-items: center;
flex-direction: column;
}
.home-header {
flex: 0 0 auto;
width: 100%;
display: flex;
padding: var(--dl-space-space-doubleunit);
z-index: 100;
position: relative;
max-width: 1110px;
align-items: center;
padding-right: 2rem;
flex-direction: row;
justify-content: space-between;
}
.home-logo {
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.home-image {
width: 54px;
height: 59px;
object-fit: cover;
}
.home-container01 {
border: 2px dashed rgba(120, 120, 120, 0.4);
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.home-mobile-menu {
top: 0px;
flex: 0 0 auto;
left: 0px;
width: 100%;
height: 100vh;
display: none;
padding: var(--dl-space-space-doubleunit);
z-index: 101;
position: absolute;
align-items: flex-start;
flex-direction: column;
background-color: var(--dl-color-gray-white);
}
.home-top {
flex: 0 0 auto;
width: 100%;
display: flex;
align-items: center;
margin-bottom: var(--dl-space-space-unit);
flex-direction: row;
justify-content: space-between;
}
.home-logo1 {
display: flex;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.home-image1 {
width: 100px;
object-fit: cover;
}
.home-close-menu {
flex: 0 0 auto;
display: flex;
align-items: flex-start;
flex-direction: column;
}
.home-icon {
width: 24px;
height: 24px;
}
.home-mid {
flex: 0 0 auto;
width: 100%;
display: flex;
align-items: flex-start;
flex-direction: column;
}
.home-text {
transition: 0.3s;
margin-bottom: var(--dl-space-space-halfunit);
}
.home-text:hover {
color: var(--dl-color-turquoise-default);
}
.home-text01 {
transition: 0.3s;
margin-bottom: var(--dl-space-space-halfunit);
}
.home-text01:hover {
color: var(--dl-color-turquoise-default);
}
.home-text02 {
transition: 0.3s;
margin-bottom: var(--dl-space-space-halfunit);
}
.home-text02:hover {
color: var(--dl-color-turquoise-default);
}
.home-text03 {
transition: 0.3s;
margin-bottom: var(--dl-space-space-halfunit);
}
.home-text03:hover {
color: var(--dl-color-turquoise-default);
}
.home-text04 {
transition: 0.3s;
margin-bottom: var(--dl-space-space-halfunit);
}
.home-text04:hover {
color: var(--dl-color-turquoise-default);
}
.home-text05 {
transition: 0.3s;
}
.home-text05:hover {
color: var(--dl-color-turquoise-default);
}
.home-bot {
flex: 0 0 auto;
display: flex;
margin-top: auto;
align-items: flex-start;
flex-direction: column;
}
.home-container02 {
flex: 0 0 auto;
width: 200px;
display: flex;
align-items: flex-start;
flex-direction: row;
}
.home-link {
display: contents;
}
.home-container03 {
display: flex;
padding: var(--dl-space-space-halfunit);
align-items: flex-start;
border-radius: var(--dl-radius-radius-round);
flex-direction: column;
background-color: var(--dl-color-gray-900);
}
.home-icon02 {
fill: var(--dl-color-gray-white);
width: var(--dl-size-size-unit);
height: var(--dl-size-size-unit);
transition: 0.3s;
}
.home-icon02:hover {
fill: var(--dl-color-purple-default);
}
.home-link1 {
display: contents;
}
.home-container04 {
display: flex;
padding: var(--dl-space-space-halfunit);
align-items: flex-start;
margin-left: var(--dl-space-space-unit);
border-radius: var(--dl-radius-radius-round);
flex-direction: column;
background-color: var(--dl-color-gray-900);
}
.home-icon04 {
fill: var(--dl-color-gray-white);
width: var(--dl-size-size-unit);
height: var(--dl-size-size-unit);
transition: 0.3s;
}
.home-icon04:hover {
fill: var(--dl-color-pink-default);
}
.home-link2 {
display: contents;
}
.home-container05 {
display: flex;
padding: var(--dl-space-space-halfunit);
align-items: flex-start;
margin-left: var(--dl-space-space-unit);
border-radius: var(--dl-radius-radius-round);
flex-direction: column;
background-color: var(--dl-color-gray-900);
}
.home-icon06 {
fill: var(--dl-color-gray-white);
width: var(--dl-size-size-unit);
height: var(--dl-size-size-unit);
transition: 0.3s;
}
.home-icon06:hover {
fill: var(--dl-color-turquoise-default);
}
.home-link3 {
display: contents;
}
.home-container06 {
display: flex;
padding: var(--dl-space-space-halfunit);
align-items: flex-start;
margin-left: var(--dl-space-space-unit);
border-radius: var(--dl-radius-radius-round);
flex-direction: column;
background-color: var(--dl-color-gray-900);
}
.home-icon08 {
fill: var(--dl-color-gray-white);
width: var(--dl-size-size-unit);
height: var(--dl-size-size-unit);
transition: 0.3s;
}
.home-icon08:hover {
fill: var(--dl-color-orange-default);
}
.home-main {
width: 100%;
display: flex;
position: relative;
align-items: center;
flex-direction: column;
}
.home-blur-background {
top: 0px;
left: auto;
right: 0px;
width: 100%;
bottom: auto;
filter: blur(60px);
height: 70vh;
display: flex;
position: absolute;
align-items: center;
flex-direction: column;
background-color: #f2f2f2;
}
.home-hero {
flex: 0 0 auto;
width: 1069px;
display: flex;
padding: var(--dl-space-space-doubleunit);
z-index: 100;
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.home-container07 {
flex: 0 0 auto;
width: auto;
height: auto;
display: flex;
align-items: space-between;
flex-direction: column;
}
.home-container08 {
flex: 0 0 auto;
width: auto;
height: auto;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
.home-text06 {
font-size: 72px;
font-family: Inter;
font-weight: 800;
line-height: 1.1;
text-transform: none;
text-decoration: none;
}
.home-text07 {
text-align: left;
}
.home-text10 {
color: #8c30f5;
text-align: left;
}
.home-text11 {
margin-top: var(--dl-space-space-tripleunit);
}
.home-text13 {
color: #0c0c0c;
}
.home-text14 {
margin-top: var(--dl-space-space-halfunit);
margin-bottom: var(--dl-space-space-unit);
}
.home-container09 {
height: 112px;
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: flex-start;
}
.home-container10 {
flex: 0 0 auto;
width: 489px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.home-link4 {
color: #ffffff;
width: 211px;
text-align: center;
border-width: 0px;
text-decoration: none;
background-color: #07beec;
}
.home-image2 {
width: 263px;
object-fit: cover;
}
.home-turquoise-cirble {
top: 439px;
left: auto;
right: 430px;
width: 170px;
bottom: auto;
filter: blur(60px);
opacity: 0.6;
position: absolute;
object-fit: cover;
}
.home-purple-circle {
top: -100px;
left: auto;
right: -26px;
width: 400px;
bottom: auto;
filter: blur(60px);
opacity: 0.4;
position: absolute;
object-fit: cover;
}
.home-left {
top: 653px;
left: 0px;
right: auto;
width: 420px;
bottom: auto;
position: absolute;
object-fit: cover;
}
.home-right {
top: 441px;
left: auto;
right: 0px;
width: 612px;
bottom: auto;
position: absolute;
object-fit: cover;
}
.home-features {
flex: 0 0 auto;
width: 100%;
display: flex;
padding: var(--dl-space-space-doubleunit);
z-index: 100;
max-width: 1110px;
align-items: center;
flex-direction: column;
justify-content: flex-start;
}
.home-features1 {
display: flex;
flex-wrap: wrap;
margin-top: var(--dl-space-space-doubleunit);
align-items: center;
flex-direction: row;
justify-content: center;
}
.home-feature2 {
flex: 0 0 auto;
width: 100%;
display: flex;
padding: var(--dl-space-space-doubleunit);
z-index: 100;
max-width: 1110px;
align-items: center;
flex-direction: column;
justify-content: flex-start;
}
.home-container11 {
display: flex;
align-items: center;
flex-direction: row;
justify-content: flex-start;
}
.home-text21 {
white-space: pre-wrap;
}
.home-text22 {
max-width: 400px;
margin-top: var(--dl-space-space-doubleunit);
margin-bottom: var(--dl-space-space-doubleunit);
}
.home-text23 {
white-space: pre-wrap;
}
.home-image3 {
width: 100%;
height: 400px;
margin-top: var(--dl-space-space-tripleunit);
object-fit: cover;
}
.home-c-t-a {
width: 100%;
display: flex;
overflow: hidden;
align-items: center;
flex-direction: column;
justify-content: center;
background-color: var(--dl-color-turquoise-default);
}
.home-container12 {
flex: 0 0 auto;
width: 100%;
display: flex;
padding: var(--dl-space-space-doubleunit);
z-index: 100;
flex-wrap: wrap;
max-width: 1110px;
align-items: center;
flex-direction: row;
justify-content: flex-start;
}
.home-container13 {
flex: 1;
display: flex;
align-items: flex-start;
flex-direction: column;
justify-content: flex-start;
}
.home-text24 {
font-size: 50px;
font-style: normal;
text-align: left;
font-family: Inter;
font-weight: 800;
line-height: 1.55;
text-transform: none;
text-decoration: none;
}
.home-text27 {
max-width: 500px;
}
.home-text28 {
white-space: pre-wrap;
}
.home-text29 {
max-width: 400px;
margin-top: var(--dl-space-space-doubleunit);
margin-bottom: var(--dl-space-space-halfunit);
}
.home-text30 {
white-space: pre-wrap;
}
.home-store-banner {
display: flex;
align-items: flex-start;
flex-direction: row;
justify-content: space-between;
}
.home-link5 {
display: contents;
}
.home-image4 {
width: 135px;
object-fit: cover;
text-decoration: none;
}
.home-container14 {
width: 520px;
display: flex;
position: relative;
align-items: center;
flex-direction: row;
justify-content: flex-start;
}
.home-image5 {
top: -100px;
left: auto;
right: var(--dl-space-space-doubleunit);
width: 232px;
bottom: auto;
position: absolute;
object-fit: cover;
}
.home-image6 {
top: -200px;
left: 32px;
width: 232px;
position: absolute;
object-fit: cover;
}
.home-footer {
flex: 0 0 auto;
color: var(--dl-color-gray-white);
width: 100%;
display: flex;
align-items: flex-start;
flex-direction: row;
justify-content: center;
background-color: var(--dl-color-gray-black);
}
.home-container15 {
flex: 0 0 auto;
width: 100%;
display: flex;
padding: var(--dl-space-space-doubleunit);
z-index: 100;
flex-wrap: wrap;
max-width: 1110px;
align-items: center;
flex-direction: column;
justify-content: space-between;
}
.home-image7 {
height: var(--dl-size-size-tripleunit);
object-fit: cover;
border-radius: var(--dl-radius-radius-radius4);
}
.home-container16 {
display: flex;
margin-top: var(--dl-space-space-doubleunit);
align-items: center;
margin-bottom: var(--dl-space-space-doubleunit);
flex-direction: row;
justify-content: flex-start;
}
.home-navlink {
transition: 0.3s;
margin-right: var(--dl-space-space-unit);
text-decoration: none;
}
.home-navlink:hover {
color: var(--dl-color-turquoise-default);
}
.home-navlink1 {
transition: 0.3s;
white-space: nowrap;
text-decoration: none;
}
.home-navlink1:hover {
color: var(--dl-color-turquoise-default);
}
.home-divider {
width: 100%;
height: 1px;
opacity: 0.2;
background-color: var(--dl-color-gray-white);
}
.home-container17 {
width: 100%;
display: flex;
margin-top: var(--dl-space-space-unit);
align-items: center;
flex-direction: row;
justify-content: space-between;
}
.home-text31 {
color: var(--dl-color-gray-300);
margin-top: var(--dl-space-space-unit);
}
.home-container18 {
flex: 0 0 auto;
width: 200px;
display: flex;
align-items: flex-start;
flex-direction: row;
}
.home-link6 {
display: contents;
}
.home-container19 {
display: flex;
padding: var(--dl-space-space-halfunit);
align-items: flex-start;
border-radius: var(--dl-radius-radius-round);
flex-direction: column;
background-color: var(--dl-color-gray-900);
}
.home-icon10 {
fill: var(--dl-color-gray-white);
width: var(--dl-size-size-unit);
height: var(--dl-size-size-unit);
transition: 0.3s;
}
.home-icon10:hover {
fill: var(--dl-color-purple-default);
}
.home-link7 {
display: contents;
}
.home-container20 {
display: flex;
padding: var(--dl-space-space-halfunit);
align-items: flex-start;
margin-left: var(--dl-space-space-unit);
border-radius: var(--dl-radius-radius-round);
flex-direction: column;
background-color: var(--dl-color-gray-900);
}
.home-icon12 {
fill: var(--dl-color-gray-white);
width: var(--dl-size-size-unit);
height: var(--dl-size-size-unit);
transition: 0.3s;
}
.home-icon12:hover {
fill: var(--dl-color-turquoise-default);
}
@media(max-width: 991px) {
.home-container01 {
display: none;
}
.home-hero {
height: auto;
flex-direction: column;
}
.home-container11 {
align-items: flex-start;
flex-direction: column;
}
.home-container14 {
display: none;
}
}
@media(max-width: 767px) {
.home-text20 {
font-size: 40px;
}
.home-container16 {
flex-wrap: wrap;
justify-content: center;
}
.home-container17 {
flex-direction: column;
}
.home-text31 {
margin-top: var(--dl-space-space-unit);
margin-bottom: var(--dl-space-space-unit);
}
}
@media(max-width: 479px) {
.home-container01 {
display: none;
}
.home-bot {
width: 100%;
}
.home-hero {
width: 100%;
}
.home-container08 {
width: 478px;
}
.home-text06 {
width: auto;
height: auto;
font-size: 46px;
padding-left: var(--dl-space-space-halfunit);
padding-right: var(--dl-space-space-halfunit);
list-style-type: disc;
list-style-image: none;
list-style-position: outside;
}
.home-text11 {
font-size: 28px;
padding-left: var(--dl-space-space-unit);
padding-right: var(--dl-space-space-unit);
}
.home-text14 {
margin-left: var(--dl-space-space-unit);
margin-right: var(--dl-space-space-unit);
}
.home-container09 {
height: 64px;
align-self: flex-start;
align-items: stretch;
justify-content: space-between;
}
.home-container10 {
width: auto;
height: auto;
padding: 0px;
align-self: center;
}
.home-link4 {
width: 187px;
height: auto;
align-self: flex-start;
margin-left: var(--dl-space-space-unit);
}
.home-image2 {
width: auto;
height: auto;
margin-top: 100px;
}
.home-text19 {
width: 438px;
text-align: center;
}
.home-container18 {
align-self: center;
justify-content: center;
}
} | 0.471953 | 0.110615 |
:root {
height: 100%;
overflow: hidden;
--accent-color: #1a73e8;
--accent-fg-color: #1a73e8;
--accent-color-hover: #3b86e8;
--accent-fg-color-hover: #1567d3;
--active-control-bg-color: #5a5a5a;
--focus-bg-color: hsl(214deg 40% 92%);
--focus-ring-inactive-shadow-color: #e0e0e0;
--input-validation-error: #db1600;
--toolbar-bg-color: #f3f3f3;
--toolbar-hover-bg-color: #eaeaea;
--selection-fg-color: white;
--selection-bg-color: var(--accent-color);
--selection-inactive-fg-color: #5a5a5a;
--selection-inactive-bg-color: #dadada;
--tab-selected-fg-color: #333;
--tab-selected-bg-color: var(--toolbar-bg-color);
--drop-shadow:
0 0 0 1px rgb(0 0 0 / 5%),
0 2px 4px rgb(0 0 0 / 20%),
0 2px 6px rgb(0 0 0 / 10%);
--divider-color: #d0d0d0;
--divider-border: 1px solid var(--divider-color);
--focus-ring-inactive-shadow: 0 0 0 1px var(--focus-ring-inactive-shadow-color);
--focus-ring-active-shadow: 0 0 0 1px var(--accent-color);
--item-selection-bg-color: #cfe8fc;
--item-selection-inactive-bg-color: #e0e0e0;
--item-hover-color: rgb(56 121 217 / 10%);
--network-grid-default-color: rgb(255 255 255 / 100%);
--network-grid-stripe-color: rgb(245 245 245 / 100%);
--network-grid-navigation-color: rgb(221 238 255 / 100%);
--network-grid-hovered-color: rgb(235 242 252 / 70%);
--network-grid-initiator-path-color: rgb(58 217 58 / 40%);
--network-grid-initiated-path-color: rgb(217 58 58 / 40%);
--network-grid-selected-color: rgb(219 219 219 / 60%);
--network-grid-focus-selected-color: var(--selection-bg-color);
--network-grid-focus-selected-color-has-error: rgb(255 240 240 / 100%);
--network-grid-from-frame-color: rgb(224 247 250 / 40%);
--network-grid-is-product-color: rgb(255 252 225 / 60%);
--network-frame-divider-color: #fccc49;
--link-color: rgb(17 85 204);
}
.-theme-with-dark-background {
--accent-color: #0e639c;
--accent-fg-color: #ccc;
--accent-fg-color-hover: #fff;
--accent-color-hover: rgb(17 119 187);
--active-control-bg-color: #cdcdcd;
--focus-bg-color: hsl(214deg 19% 27%);
--focus-ring-inactive-shadow-color: #5a5a5a;
--toolbar-bg-color: #292a2d; /* --google-grey-900-white-4-percent */
--toolbar-hover-bg-color: #202020;
--selection-fg-color: #cdcdcd;
--selection-inactive-fg-color: #cdcdcd;
--selection-inactive-bg-color: hsl(0deg 0% 28%);
--tab-selected-fg-color: #eaeaea;
--tab-selected-bg-color: #000;
--drop-shadow:
0 0 0 1px rgb(255 255 255 / 20%),
0 2px 4px 2px rgb(0 0 0 / 20%),
0 2px 6px 2px rgb(0 0 0 / 10%);
--divider-color: #525252;
--focus-ring-inactive-shadow: 0 0 0 1px var(--focus-ring-inactive-shadow-color);
--item-selection-bg-color: hsl(207deg 88% 22%);
--item-selection-inactive-bg-color: #454545;
--network-grid-default-color: rgb(36 36 36 / 100%);
--network-grid-stripe-color: rgb(41 41 41 / 100%);
--network-grid-navigation-color: rgb(221 238 255 / 100%);
--network-grid-hovered-color: rgb(20 37 63 / 70%);
--network-grid-initiator-path-color: rgb(58 217 58 / 40%);
--network-grid-initiated-path-color: rgb(217 58 58 / 40%);
--network-grid-selected-color: rgb(57 57 57 / 60%);
--network-grid-focus-selected-color: var(--selection-bg-color);
--network-grid-focus-selected-color-has-error: rgb(217 58 58 / 15%);
--network-grid-from-frame-color: rgb(224 247 250 / 40%);
--network-grid-is-product-color: rgb(255 252 225 / 60%);
--link-color: rgb(171 171 171);
}
body {
height: 100%;
width: 100%;
position: relative;
overflow: hidden;
margin: 0;
cursor: default;
font-family: '.SFNSDisplay-Regular', 'Helvetica Neue', 'Lucida Grande', sans-serif;
font-size: 12px;
tab-size: 4;
user-select: none;
color: #222;
background: white;
}
.platform-linux {
color: rgb(48 57 66);
font-family: Roboto, Ubuntu, Arial, sans-serif;
}
.platform-mac {
color: rgb(48 57 66);
font-family: '.SFNSDisplay-Regular', 'Helvetica Neue', 'Lucida Grande', sans-serif;
}
.platform-windows {
font-family: 'Segoe UI', Tahoma, sans-serif;
}
.panel {
display: flex;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
background-color: white;
}
.panel-sidebar {
overflow-x: hidden;
background-color: var(--toolbar-bg-color);
}
iframe.extension {
flex: auto;
width: 100%;
height: 100%;
}
iframe.panel.extension {
display: block;
height: 100%;
}
@media (forced-colors: active) {
:root {
--accent-color: Highlight;
--focus-ring-inactive-shadow-color: ButtonText;
}
} | front_end/ui/inspectorStyle.css | :root {
height: 100%;
overflow: hidden;
--accent-color: #1a73e8;
--accent-fg-color: #1a73e8;
--accent-color-hover: #3b86e8;
--accent-fg-color-hover: #1567d3;
--active-control-bg-color: #5a5a5a;
--focus-bg-color: hsl(214deg 40% 92%);
--focus-ring-inactive-shadow-color: #e0e0e0;
--input-validation-error: #db1600;
--toolbar-bg-color: #f3f3f3;
--toolbar-hover-bg-color: #eaeaea;
--selection-fg-color: white;
--selection-bg-color: var(--accent-color);
--selection-inactive-fg-color: #5a5a5a;
--selection-inactive-bg-color: #dadada;
--tab-selected-fg-color: #333;
--tab-selected-bg-color: var(--toolbar-bg-color);
--drop-shadow:
0 0 0 1px rgb(0 0 0 / 5%),
0 2px 4px rgb(0 0 0 / 20%),
0 2px 6px rgb(0 0 0 / 10%);
--divider-color: #d0d0d0;
--divider-border: 1px solid var(--divider-color);
--focus-ring-inactive-shadow: 0 0 0 1px var(--focus-ring-inactive-shadow-color);
--focus-ring-active-shadow: 0 0 0 1px var(--accent-color);
--item-selection-bg-color: #cfe8fc;
--item-selection-inactive-bg-color: #e0e0e0;
--item-hover-color: rgb(56 121 217 / 10%);
--network-grid-default-color: rgb(255 255 255 / 100%);
--network-grid-stripe-color: rgb(245 245 245 / 100%);
--network-grid-navigation-color: rgb(221 238 255 / 100%);
--network-grid-hovered-color: rgb(235 242 252 / 70%);
--network-grid-initiator-path-color: rgb(58 217 58 / 40%);
--network-grid-initiated-path-color: rgb(217 58 58 / 40%);
--network-grid-selected-color: rgb(219 219 219 / 60%);
--network-grid-focus-selected-color: var(--selection-bg-color);
--network-grid-focus-selected-color-has-error: rgb(255 240 240 / 100%);
--network-grid-from-frame-color: rgb(224 247 250 / 40%);
--network-grid-is-product-color: rgb(255 252 225 / 60%);
--network-frame-divider-color: #fccc49;
--link-color: rgb(17 85 204);
}
.-theme-with-dark-background {
--accent-color: #0e639c;
--accent-fg-color: #ccc;
--accent-fg-color-hover: #fff;
--accent-color-hover: rgb(17 119 187);
--active-control-bg-color: #cdcdcd;
--focus-bg-color: hsl(214deg 19% 27%);
--focus-ring-inactive-shadow-color: #5a5a5a;
--toolbar-bg-color: #292a2d; /* --google-grey-900-white-4-percent */
--toolbar-hover-bg-color: #202020;
--selection-fg-color: #cdcdcd;
--selection-inactive-fg-color: #cdcdcd;
--selection-inactive-bg-color: hsl(0deg 0% 28%);
--tab-selected-fg-color: #eaeaea;
--tab-selected-bg-color: #000;
--drop-shadow:
0 0 0 1px rgb(255 255 255 / 20%),
0 2px 4px 2px rgb(0 0 0 / 20%),
0 2px 6px 2px rgb(0 0 0 / 10%);
--divider-color: #525252;
--focus-ring-inactive-shadow: 0 0 0 1px var(--focus-ring-inactive-shadow-color);
--item-selection-bg-color: hsl(207deg 88% 22%);
--item-selection-inactive-bg-color: #454545;
--network-grid-default-color: rgb(36 36 36 / 100%);
--network-grid-stripe-color: rgb(41 41 41 / 100%);
--network-grid-navigation-color: rgb(221 238 255 / 100%);
--network-grid-hovered-color: rgb(20 37 63 / 70%);
--network-grid-initiator-path-color: rgb(58 217 58 / 40%);
--network-grid-initiated-path-color: rgb(217 58 58 / 40%);
--network-grid-selected-color: rgb(57 57 57 / 60%);
--network-grid-focus-selected-color: var(--selection-bg-color);
--network-grid-focus-selected-color-has-error: rgb(217 58 58 / 15%);
--network-grid-from-frame-color: rgb(224 247 250 / 40%);
--network-grid-is-product-color: rgb(255 252 225 / 60%);
--link-color: rgb(171 171 171);
}
body {
height: 100%;
width: 100%;
position: relative;
overflow: hidden;
margin: 0;
cursor: default;
font-family: '.SFNSDisplay-Regular', 'Helvetica Neue', 'Lucida Grande', sans-serif;
font-size: 12px;
tab-size: 4;
user-select: none;
color: #222;
background: white;
}
.platform-linux {
color: rgb(48 57 66);
font-family: Roboto, Ubuntu, Arial, sans-serif;
}
.platform-mac {
color: rgb(48 57 66);
font-family: '.SFNSDisplay-Regular', 'Helvetica Neue', 'Lucida Grande', sans-serif;
}
.platform-windows {
font-family: 'Segoe UI', Tahoma, sans-serif;
}
.panel {
display: flex;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 0;
background-color: white;
}
.panel-sidebar {
overflow-x: hidden;
background-color: var(--toolbar-bg-color);
}
iframe.extension {
flex: auto;
width: 100%;
height: 100%;
}
iframe.panel.extension {
display: block;
height: 100%;
}
@media (forced-colors: active) {
:root {
--accent-color: Highlight;
--focus-ring-inactive-shadow-color: ButtonText;
}
} | 0.577614 | 0.108472 |
*-------------------------------------------------------------------------------
* @section 1.0 - BP Generic, Typography & Imagery
*-------------------------------------------------------------------------------
*/
/**
*-------------------------------------------------------------------------------
* @section 2.0 - Navigation - General
*-------------------------------------------------------------------------------
*/
/**
*----------------------------------------------------------
* @section 2.1 - Navs Object Nav / Sub Nav (bp-list)
*
* The main navigational elements for all BP screens
*----------------------------------------------------------
*/
@media screen and (max-width: 46.8em) {
#buddypress.twentytwentytwo:not(.bp-single-vert-nav) .bp-navs li {
background: transparent;
}
}
#buddypress.twentytwentytwo .bp-navs li .count {
background-color: var(--wp--preset--color--primary);
border: 1px solid var(--wp--preset--color--primary);
border-radius: 50%;
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li.selected a .count,
#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li.current a .count,
#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li a:hover a .count {
background-color: var(--wp--preset--color--background);
border: 1px solid var(--wp--preset--color--background);
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .bp-navs li:not(.current):not(.selected) a:focus,
#buddypress.twentytwentytwo .bp-navs li:not(.current):not(.selected) a:hover {
background: var(--wp--preset--color--background);
color: var(--wp--preset--color--primary);
outline-offset: -0.25ch;
outline: 2px dashed currentColor;
}
#buddypress.twentytwentytwo .bp-navs li.selected a,
#buddypress.twentytwentytwo .bp-navs li.selected a:focus,
#buddypress.twentytwentytwo .bp-navs li.selected a:hover,
#buddypress.twentytwentytwo .bp-navs li.current a,
#buddypress.twentytwentytwo .bp-navs li.current a:focus,
#buddypress.twentytwentytwo .bp-navs li.current a:hover {
color: var(--wp--preset--color--background);
background-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-navs.tabbed-links ul,
#buddypress.twentytwentytwo .bp-navs.tabbed-links ol {
border-bottom: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-navs.tabbed-links ul li.current,
#buddypress.twentytwentytwo .bp-navs.tabbed-links ol li.current {
border-color: var(--wp--preset--color--primary) var(--wp--preset--color--primary) var(--wp--preset--color--background);
border-style: solid;
border-top-right-radius: 4px;
border-top-left-radius: 4px;
}
#buddypress.twentytwentytwo .bp-navs.tabbed-links ul li.current a,
#buddypress.twentytwentytwo .bp-navs.tabbed-links ol li.current a {
color: var(--wp--preset--color--primary);
background-color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo #group-invites-container .bp-invites-nav {
border-bottom: none;
}
#buddypress.twentytwentytwo #group-invites-container .bp-invites-nav li .count {
margin-right: 10px;
border-radius: 10%;
vertical-align: 10%;
}
#buddypress.twentytwentytwo #group-invites-container #send-invites-editor ul {
padding-right: 0;
}
#buddypress.twentytwentytwo.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links) {
border: none;
border-bottom: 1px solid var(--wp--preset--color--primary);
box-shadow: none;
}
#buddypress.twentytwentytwo .subnav-filters > ul {
padding-right: 0;
}
/**
*----------------------------------------------------------
* @section 2.2 - Pagination
*----------------------------------------------------------
*/
#buddypress.twentytwentytwo .bp-pagination {
color: var(--wp--preset--color--foreground);
}
/**
*-------------------------------------------------------------------------------
* @section 3.0 - BP Lists / Loops Generic
*-------------------------------------------------------------------------------
*/
#buddypress.twentytwentytwo .bp-list {
border-top: 1px dotted var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-list > li {
border-bottom: 1px dotted var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-list li:not(.mini) .item-avatar img.avatar {
display: block;
margin: 0 auto;
margin-bottom: 1em;
max-width: 80%;
}
@media screen and (min-width: 46.8em) {
#buddypress.twentytwentytwo .bp-list li:not(.mini) .item-avatar {
max-width: 128px;
max-height: 128px;
margin: auto;
margin-left: 5%;
}
}
#buddypress.twentytwentytwo .bp-list li.mini .item-avatar img.avatar {
display: block;
margin: 0 auto;
max-width: 50px;
max-height: 50px;
margin-bottom: 1em;
}
@media screen and (min-width: 46.8em) {
#buddypress.twentytwentytwo .bp-list li.mini .item-avatar {
width: 5%;
margin: auto;
margin-left: 2%;
}
}
#buddypress.twentytwentytwo .bp-list li.mini .activity-meta.action {
clear: none;
}
#buddypress.twentytwentytwo .bp-list li .meta,
#buddypress.twentytwentytwo .bp-list li .item-meta {
color: var(--wp--preset--color--foreground);
}
/**
*----------------------------------------------------------
* @section 3.1 - Activity Loop
*----------------------------------------------------------
*/
#buddypress.twentytwentytwo .activity-list.bp-list {
background: inherit;
border-right: none;
border-left: none;
border-top: none;
border-bottom: 1px dotted var(--wp--preset--color--primary);
padding: 0;
}
#buddypress.twentytwentytwo .activity-list.bp-list .activity-item {
background: inherit;
border: none;
border-radius: 0;
border-top: 1px dotted var(--wp--preset--color--primary);
box-shadow: none;
}
#buddypress.twentytwentytwo .activity-list.bp-list .activity-item:not(:first-child) {
margin-top: 1.5em;
}
#buddypress.twentytwentytwo .activity-list.bp-list .activity-item .activity-header .time-since,
#buddypress.twentytwentytwo .activity-list.bp-list .activity-item .activity-header .time-since:hover {
color: var(--wp--preset--color--foreground);
}
/**
*-----------------------------------------------------
* @section 3.1.1 - Activity Whats New
*-----------------------------------------------------
*/
#buddypress.twentytwentytwo .activity-update-form {
border: none;
box-shadow: none;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-textarea textarea {
border: solid 1px var(--wp--preset--color--foreground);
border-radius: 0;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-textarea textarea:focus {
box-shadow: none;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box select,
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #activity-autocomplete {
border: solid 1px var(--wp--preset--color--foreground);
padding: 0.5em;
font-size: var(--wp--preset--font-size--medium);
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box select {
width: -moz-fit-content;
width: fit-content;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li {
margin-bottom: 0;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li #activity-autocomplete {
width: 98%;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object {
padding: 0.5em;
border-radius: 0;
border-style: dotted;
border-width: 0;
border-right-width: 1px;
border-left-width: 1px;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected) {
background: var(--wp--preset--color--background);
color: var(--wp--preset--color--foreground);
border-color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):last-child {
border-bottom: dotted 1px;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):hover {
background: var(--wp--preset--color--secondary);
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object.selected {
border: none;
background-color: transparent;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-submit {
margin-bottom: calc(32px + var(--wp--style--block-gap));
}
#buddypress.twentytwentytwo #activity-rss-feed {
line-height: 40px;
}
/**
*-----------------------------------------------------
* @section 3.1.2 - Activity Entries
*-----------------------------------------------------
*/
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
border: 1px solid var(--wp--preset--color--primary);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more a,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest a {
color: var(--wp--preset--color--background);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more a:focus,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest a:focus {
color: var(--wp--preset--color--foreground);
background: transparent;
outline-offset: -0.25ch;
outline: 2px dashed currentColor;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:hover, body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:focus,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:hover,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:focus {
color: var(--wp--preset--color--foreground);
background: transparent;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:hover a, body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:focus a,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:hover a,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:focus a {
color: var(--wp--preset--color--foreground);
background: transparent;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header {
color: var(--wp--preset--color--foreground);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header a,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header a {
font-weight: 600;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header a:hover,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header a:hover {
text-decoration: underline;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-inner,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content blockquote {
background: inherit;
border: 1px dotted var(--wp--preset--color--primary);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action {
background: inherit;
margin-right: calc(128px + 5%);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .icons:before {
height: auto;
width: auto;
display: inline;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:before {
content: "";
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button {
background-color: var(--wp--preset--color--tertiary);
padding: 0.7em 0.7em 0.5em;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button .bp-screen-reader-text {
border: 0;
clip: inherit;
height: auto;
margin: auto;
overflow: auto;
position: inherit;
width: auto;
font-size: var(--wp--preset--font-size--small);
font-weight: 600;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button span:not(.bp-screen-reader-text) {
background-color: var(--wp--preset--color--foreground);
color: var(--wp--preset--color--tertiary);
padding: 0.1em 0.3em;
border-radius: 50%;
font-size: var(--wp--preset--font-size--small);
vertical-align: text-bottom;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:not(.delete-activity) {
color: var(--wp--preset--color--foreground);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover {
background-color: var(--wp--preset--color--foreground);
color: var(--wp--preset--color--background);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover span {
color: var(--wp--preset--color--background);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover span:not(.bp-screen-reader-text) {
background-color: var(--wp--preset--color--tertiary);
color: var(--wp--preset--color--foreground);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity {
color: var(--wp--preset--color--vivid-red);
border: solid 1px var(--wp--preset--color--vivid-red);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity span.bp-screen-reader-text {
color: var(--wp--preset--color--vivid-red);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity:hover {
background-color: var(--wp--preset--color--vivid-red);
color: var(--wp--preset--color--background);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity:hover span.bp-screen-reader-text {
color: var(--wp--preset--color--background);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list li.mini .activity-meta.action {
margin-right: calc(50px + 2%);
}
body.activity-permalink #buddypress.twentytwentytwo .activity-list {
border: none;
}
body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-item {
border: none;
}
body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-item .activity-avatar img.avatar {
background: var(--wp--preset--color--white);
}
/**
*-----------------------------------------------------
* @section 3.1.3 - Activity Comments
*-----------------------------------------------------
*/
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-avatar {
width: auto;
margin-left: 0;
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta a {
font-weight: 600;
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta a:hover {
text-decoration: underline;
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a {
color: var(--wp--preset--color--foreground);
display: inline-block;
font-size: var(--wp--preset--font-size--small);
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a.bp-primary-action {
background-color: var(--wp--preset--color--secondary);
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a.bp-secondary-action {
background-color: var(--wp--preset--color--tertiary);
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-content {
border-right: 1px solid var(--wp--preset--color--foreground);
margin: 15px 5% 0 0;
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content .ac-textarea textarea {
width: 98%;
border-radius: 0;
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content .ac-textarea textarea:focus {
box-shadow: none;
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type="submit"],
#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type="button"] {
color: var(--wp--preset--color--foreground);
display: inline-block;
font-size: var(--wp--preset--font-size--small);
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type="submit"] {
margin-right: calc(50px - 0.5em);
background-color: var(--wp--preset--color--secondary);
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type="button"] {
background-color: var(--wp--preset--color--tertiary);
}
/**
*----------------------------------------------------------
* @section 3.2 - Blogs Loop
*----------------------------------------------------------
*/
/**
*----------------------------------------------------------
* @section 3.3 - Groups Loop
*----------------------------------------------------------
*/
#buddypress.twentytwentytwo .groups-list li .group-desc {
color: var(--wp--preset--color--foreground);
border: 1px dotted var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #groups-dir-list .current-group-type {
text-align: center;
}
/**
*----------------------------------------------------------
* @section 3.4 - Members Loop
*----------------------------------------------------------
*/
body:not(.logged-in) #buddypress.twentytwentytwo .members-list .user-update {
width: inherit;
}
#buddypress.twentytwentytwo .members-list li .user-update {
border: 1px dotted var(--wp--preset--color--primary);
color: var(--wp--preset--color--foreground);
margin: 0 auto 15px;
}
#buddypress.twentytwentytwo #members-dir-list .current-member-type {
text-align: center;
}
/**
*-------------------------------------------------------------------------------
* @section 4.0 - Directories
*-------------------------------------------------------------------------------
*/
/**
*----------------------------------------------------------
* @section 4.1 - Groups Creation Steps
*----------------------------------------------------------
*/
#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) {
background: transparent;
clear: both;
overflow: hidden;
border: none;
border-bottom: 1px solid var(--wp--preset--color--primary);
box-shadow: none;
}
#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) li a,
#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) li span {
padding: 0.5em calc(0.5em + 2px);
display: block;
}
/**
*-------------------------------------------------------------------------------
* @section 5.0 - Single Item screens: Groups, Users
*-------------------------------------------------------------------------------
*/
body.single-item #buddypress.twentytwentytwo .item-body h2.bp-screen-title,
body.single-item #buddypress.twentytwentytwo .item-body h2.screen-heading,
body.bp-user #buddypress.twentytwentytwo .item-body h2.bp-screen-title,
body.bp-user #buddypress.twentytwentytwo .item-body h2.screen-heading {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}
/**
*-----------------------------------------------------------
* @subsection 5.1 - Item Header Global
*-----------------------------------------------------------
*/
#buddypress.twentytwentytwo .single-headers #item-header-cover-image h2 {
font-weight: 900;
}
#buddypress.twentytwentytwo .single-headers .group-status,
#buddypress.twentytwentytwo .single-headers .item-meta,
#buddypress.twentytwentytwo .single-headers .bp-group-type-list,
#buddypress.twentytwentytwo .single-headers .bp-member-type-list {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .single-headers a:hover {
text-decoration: underline;
}
/**
*-----------------------------------------------------
* @subsection 5.1.1 - item-header Groups
*
* Group Specific Item Header
*-----------------------------------------------------
*/
#buddypress.twentytwentytwo .groups-header .desc-wrap {
background: var(--wp--preset--color--background);
border: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .groups-header .desc-wrap .group-description {
background: none;
box-shadow: none;
}
/**
*-----------------------------------------------------
* @subsection 5.1.2 - Item Header User Accounts
*
* User Accounts Specific Item Header
*-----------------------------------------------------
*/
/**
*-----------------------------------------------------------
* @subsection 5.2 - Item Body: Global
*-----------------------------------------------------------
*/
#buddypress.twentytwentytwo .item-body h2.screen-heading,
#buddypress.twentytwentytwo .item-body h2.creation-step-name {
font-size: var(--wp--custom--typography--font-size--huge);
}
#buddypress.twentytwentytwo .item-body h3.screen-heading,
#buddypress.twentytwentytwo .item-body h3.creation-step-name {
font-size: var(--wp--preset--font-size--large);
}
#buddypress.twentytwentytwo .item-body h4.screen-heading,
#buddypress.twentytwentytwo .item-body h4.creation-step-name {
font-size: var(--wp--preset--font-size--medium);
}
#buddypress.twentytwentytwo .item-body .bp-avatar #avatar-crop-pane {
margin-bottom: 1em;
}
#buddypress.twentytwentytwo .item-body .bp-avatar-nav ul.avatar-nav-items {
border-bottom: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .item-body .bp-avatar-nav ul.avatar-nav-items li.current {
border: 1px solid var(--wp--preset--color--primary);
border-bottom: 1px solid var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .item-body #drag-drop-area {
border: 4px dashed var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .item-body #drag-drop-area .drag-drop-info {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .item-body #drag-drop-area #bp-browse-button {
margin: 50px auto 0;
}
#buddypress.twentytwentytwo .item-body .drag-over #drag-drop-area {
border: 4px dashed var(--wp--preset--color--vivid-cyan-blue);
}
#buddypress.twentytwentytwo .item-body .bp-avatar-status .warning,
#buddypress.twentytwentytwo .item-body .bp-avatar-status .success,
#buddypress.twentytwentytwo .item-body .bp-cover-image-status .warning,
#buddypress.twentytwentytwo .item-body .bp-cover-image-status .success,
#buddypress.twentytwentytwo .item-body .avatar-history-actions .warning,
#buddypress.twentytwentytwo .item-body .avatar-history-actions .success {
background-color: var(--wp--preset--color--tertiary);
border: none;
border-right-width: 4px;
border-right-style: solid;
color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .item-body .bp-avatar-status .warning,
#buddypress.twentytwentytwo .item-body .bp-cover-image-status .warning,
#buddypress.twentytwentytwo .item-body .avatar-history-actions .warning {
border-right-color: var(--wp--preset--color--luminous-vivid-orange);
}
#buddypress.twentytwentytwo .item-body .bp-avatar-status .success,
#buddypress.twentytwentytwo .item-body .bp-cover-image-status .success,
#buddypress.twentytwentytwo .item-body .avatar-history-actions .success {
border-right-color: var(--wp--preset--color--vivid-green-cyan);
}
#buddypress.twentytwentytwo .item-body .bp-avatar-status .error,
#buddypress.twentytwentytwo .item-body .bp-cover-image-status .error,
#buddypress.twentytwentytwo .item-body .avatar-history-actions .error {
border-right-color: var(--wp--preset--color--vivid-red);
}
#buddypress.twentytwentytwo .item-body .avatar-history-action.delete {
background-color: var(--wp--preset--color--vivid-red);
color: var(--wp--preset--color--background);
border: solid 1px var(--wp--preset--color--vivid-red);
}
#buddypress.twentytwentytwo .item-body .avatar-history-action.delete:hover {
background-color: var(--wp--preset--color--background);
color: var(--wp--preset--color--vivid-red);
}
/**
*----------------------------------------------------
* @subsection 5.2.1 - Item Body Groups
*
* Groups specific item body rules - screens
*----------------------------------------------------
*/
/**
*-----------------------------------------
* @subsection 5.2.1.1 - Management Settings Screens
*-----------------------------------------
*/
.group-settings #buddypress.twentytwentytwo .group-settings-selections {
margin-bottom: 1em;
}
#buddypress.twentytwentytwo #group-manage-members-ui .bp-pagination {
padding: 0.4em 0.5em 0.4em 0;
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form input[type="search"] {
font-size: 16px;
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form input[type="search"]:focus {
outline-offset: -7px;
outline: 2px dotted var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form button[type="submit"] {
border-width: 1px;
border-style: solid;
background-clip: border-box;
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form button[type="submit"]:hover {
border-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-roles-filter label,
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit label {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-role-filter,
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit select {
font-size: 16px;
padding: 6px 10px 6px 25px;
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-role-filter:focus,
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit select:focus {
outline-offset: 2px;
outline: 2px dotted var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo #delete-group-button {
border-color: var(--wp--preset--color--vivid-red);
color: var(--wp--preset--color--background);
background: var(--wp--preset--color--vivid-red);
}
#buddypress.twentytwentytwo #delete-group-button:hover {
color: var(--wp--preset--color--vivid-red);
background: var(--wp--preset--color--background);
}
/**
*-----------------------------------------
* @subsection 5.2.1.2 - Group Members List
*-----------------------------------------
*/
/*
*-----------------------------------------
* @subsection 5.2.1.3 - Group Invites List
*-----------------------------------------
*/
#buddypress.twentytwentytwo .bp-invites-content ul {
border-top: none;
}
#buddypress.twentytwentytwo .bp-invites-content ul li {
border: 1px dotted var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-invites-content ul li.selected {
box-shadow: none;
border-style: solid;
}
#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button {
border: none;
background: none;
top: -5px;
left: 0;
}
#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button .icons:before {
border-radius: 50%;
width: 32px;
height: 32px;
color: var(--wp--preset--color--primary);
background: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button:hover .icons:before {
color: var(--wp--preset--color--background);
background: var(--wp--preset--color--primary);
width: 32px;
height: 32px;
}
#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button.group-remove-invite-button .icons:before {
color: var(--wp--preset--color--vivid-red);
background: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button.group-remove-invite-button:hover .icons:before {
color: var(--wp--preset--color--background);
background: var(--wp--preset--color--vivid-red);
}
#buddypress.twentytwentytwo .bp-invites-content ul li ul.group-inviters li {
border: none;
}
/*
*-----------------------------------------
* @subsection 5.2.1.4 - Group Activity
*-----------------------------------------
*/
/**
*-----------------------------------------------------
* @subsection 5.2.2 - Item Body User Accounts
*
* User Account specific item body rules
*-----------------------------------------------------
*/
/**
*--------------------------------------------
* @subsection 5.2.2.1 - classes, pag, filters
*--------------------------------------------
*/
/**
*-------------------------------------------
* @subsection 5.2.2.2 - Extended Profiles
*-------------------------------------------
*/
#buddypress.twentytwentytwo .profile table.profile-fields tr.alt td,
#buddypress.twentytwentytwo .profile table.profile-fields tr td,
#buddypress.twentytwentytwo .profile table.bp-tables-user tr.alt td,
#buddypress.twentytwentytwo .profile table.bp-tables-user tr td {
background: transparent;
}
#buddypress.twentytwentytwo .profile table.profile-fields tr.alt td.label,
#buddypress.twentytwentytwo .profile table.profile-fields tr td.label,
#buddypress.twentytwentytwo .profile table.bp-tables-user tr.alt td.label,
#buddypress.twentytwentytwo .profile table.bp-tables-user tr td.label {
border-left-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .profile.edit .editfield {
background: var(--wp--preset--color--background);
border: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .profile.edit .editfield p.field-visibility-settings-toggle {
margin-top: 1em;
}
#buddypress.twentytwentytwo .profile.edit .editfield .field-visibility-settings .radio label {
margin-bottom: 0.5em;
}
#buddypress.twentytwentytwo .profile.edit .wp-editor-container .mce-toolbar button {
color: var(--wp--preset--color--primary);
background: var(--wp--preset--color--background);
border-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .profile.edit .button-tabs li {
border: solid 2px var(--wp--preset--color--primary);
overflow: hidden;
}
#buddypress.twentytwentytwo .profile.edit .button-tabs li a {
text-decoration: none;
}
#buddypress.twentytwentytwo .profile.edit .button-tabs li.current {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .profile.edit .button-tabs li.current a {
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .profile.edit .button-tabs li:hover {
outline-offset: 10px;
border-style: dotted;
}
#buddypress.twentytwentytwo .profile.edit .clear-value {
text-decoration: underline;
}
#buddypress.twentytwentytwo .profile.edit legend {
padding: 0;
}
#buddypress.twentytwentytwo .field-visibility-settings,
#buddypress.twentytwentytwo .field-visibility-settings-header {
color: var(--wp--preset--color--foreground);
}
/**
*-------------------------------------------
* @subsection 5.2.2.3 - Groups
*-------------------------------------------
*/
#buddypress.twentytwentytwo #group-list.invites h2.list-title {
float: none;
}
#buddypress.twentytwentytwo #group-list.invites .accept {
margin-right: 0;
}
/**
*-------------------------------------------
* @subsection 5.2.2.5 - Private Messaging
*-------------------------------------------
*/
#buddypress.twentytwentytwo #user_messages_select_all {
vertical-align: -5px;
}
#buddypress.twentytwentytwo #user_messages_select_all:checked {
vertical-align: -3px;
}
#buddypress.twentytwentytwo #message-threads {
border-top: 1px dotted var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads > li {
border-bottom: 1px dotted var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads > li.selected {
border: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads > li.unread {
border-right: 8px solid var(--wp--preset--color--secondary);
}
#buddypress.twentytwentytwo #message-threads li .thread-cb {
padding-right: 15px;
}
#buddypress.twentytwentytwo #message-threads li.unread .thread-cb {
padding-right: 7px;
}
#buddypress.twentytwentytwo #message-threads li .thread-from img.avatar,
#buddypress.twentytwentytwo #message-threads li .thread-to img.avatar {
width: 32px;
height: 32px;
}
#buddypress.twentytwentytwo #message-threads li .thread-from .num-recipients,
#buddypress.twentytwentytwo #message-threads li .thread-to .num-recipients {
color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads li .thread-content .excerpt {
color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads li .thread-date time {
color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads li.selected {
background: transparent;
font-weight: bolder;
color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads li.selected .thread-subject .subject {
color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads li:not(.selected) {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .bp-messages-content #thread-preview h2:first-child,
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-header h2:first-child {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list {
border-top: none;
}
#buddypress.twentytwentytwo .bp-messages-content #thread-preview {
border-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-messages-content #thread-preview dd,
#buddypress.twentytwentytwo .bp-messages-content #thread-preview .participants-list {
padding-right: 0;
}
#buddypress.twentytwentytwo .bp-messages-content #thread-preview .preview-pane-header {
border-bottom-style: dotted;
border-bottom-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-messages-content #thread-preview .preview-content .preview-message {
background: transparent;
}
#buddypress.twentytwentytwo .bp-messages-content .single-message-thread-header dd,
#buddypress.twentytwentytwo .bp-messages-content .single-message-thread-header .participants-list {
padding-right: 0;
}
#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip {
border: none;
background: none;
}
#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-delete:before, #buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-exit:before {
width: 32px;
height: 32px;
color: var(--wp--preset--color--vivid-red);
background: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before, #buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-exit:hover:before {
border-radius: 50%;
color: var(--wp--preset--color--background);
background: var(--wp--preset--color--vivid-red);
}
#buddypress.twentytwentytwo .bp-messages-content .actions .message-action-unstar:before,
#buddypress.twentytwentytwo .bp-messages-content .actions .message-action-star:before {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li {
padding-right: 0;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata {
background: transparent;
border: 1px solid var(--wp--preset--color--primary);
box-shadow: none;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata * {
line-height: 1.6;
vertical-align: middle;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link {
margin-top: 3px;
margin-bottom: 3px;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link strong {
display: inline-block;
margin-top: 2px;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link:hover strong {
text-decoration: underline;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata time {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-content {
background: transparent;
margin: 0;
width: 100%;
padding: 0.5em 0.2em;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-content * {
padding-right: 0.8em;
padding-left: 0.8em;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li:first-child .message-content {
border: 1px dotted var(--wp--preset--color--primary);
border-top: none;
}
#buddypress.twentytwentytwo .bp-messages-content #send-reply .avatar-box img.avatar {
display: inline-block;
vertical-align: -7px;
}
#buddypress.twentytwentytwo .bp-messages-content .wp-editor-container .mce-toolbar button {
color: var(--wp--preset--color--primary);
background: var(--wp--preset--color--background);
border-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-messages-content #bp-messages-reset {
border-width: 0;
font-size: inherit;
}
#buddypress.twentytwentytwo .bp-messages-content #send-to-input {
width: 100% !important;
}
#buddypress.twentytwentytwo .subnav-filters button#user_messages_search_submit {
padding: 3px 0.7em;
background-color: var(--wp--preset--color--background);
color: var(--wp--preset--color--foreground);
border-color: var(--wp--preset--color--background);
border-right-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .subnav-filters button#user_messages_search_submit:hover {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
border-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply {
line-height: 1.5;
margin: 0 10px 0 0;
padding: 3px 5px;
background-color: var(--wp--preset--color--background);
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply:hover {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply span {
vertical-align: middle;
}
/**
*------------------------------------------
* @subsection 5.2.2.6 - Settings
*------------------------------------------
*/
#buddypress.twentytwentytwo.buddypress-wrap .bp-tables-user tr.alt td,
#buddypress.twentytwentytwo.buddypress-wrap table.wp-profile-fields tr.alt td {
background: transparent;
}
#buddypress.twentytwentytwo .bp-tables-user.profile-settings {
border: solid 1px currentColor;
margin-bottom: 1em;
}
#buddypress.twentytwentytwo .bp-tables-user.profile-settings thead tr {
border: none;
}
#buddypress.twentytwentytwo .bp-tables-user.profile-settings thead tr th {
text-align: right;
border-bottom: dotted 1px currentColor;
}
#buddypress.twentytwentytwo #delete-account-button {
border-color: var(--wp--preset--color--vivid-red);
color: var(--wp--preset--color--background);
background: var(--wp--preset--color--vivid-red);
}
#buddypress.twentytwentytwo #delete-account-button:hover {
color: var(--wp--preset--color--vivid-red);
background: var(--wp--preset--color--background);
}
/**
*------------------------------------------
* @subsection 5.2.2.7 - Notifications
*------------------------------------------
*/
#buddypress.twentytwentytwo .notifications-options-nav,
#buddypress.twentytwentytwo .invitations-options-nav {
margin-top: 1em;
}
#buddypress.twentytwentytwo .notifications-options-nav input#notification-bulk-manage,
#buddypress.twentytwentytwo .invitations-options-nav input#invitation-bulk-manage {
line-height: 1.2;
}
#buddypress.twentytwentytwo .bp-tables-user.notifications th {
text-align: right;
}
#buddypress.twentytwentytwo .bp-tables-user.notifications td.notification-actions a.delete {
color: var(--wp--preset--color--vivid-red);
}
/**
*-------------------------------------------------------------------------------
* @section 6.0 - Forms - General
*-------------------------------------------------------------------------------
*/
#buddypress.twentytwentytwo fieldset {
padding-top: 0;
margin-top: 1em;
}
#buddypress.twentytwentytwo fieldset legend {
padding: 0 1em;
display: inline-block;
}
#buddypress.twentytwentytwo .select-wrap {
border: 1px solid var(--wp--preset--color--primary);
background: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .select-wrap select {
background: transparent;
width: 98%;
text-indent: 0;
}
#buddypress.twentytwentytwo .select-wrap span.select-arrow {
background: transparent;
}
#buddypress.twentytwentytwo .select-wrap span.select-arrow:before {
font-family: dashicons;
content: "\f140";
color: var(--wp--preset--color--foreground);
vertical-align: -10%;
}
#buddypress.twentytwentytwo .select-wrap:focus .select-arrow:before, #buddypress.twentytwentytwo .select-wrap:hover .select-arrow:before {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo input[type="checkbox"],
#buddypress.twentytwentytwo input[type="radio"] {
width: 25px;
height: 25px;
vertical-align: top;
}
#buddypress.twentytwentytwo textarea,
#buddypress.twentytwentytwo input[type="text"],
#buddypress.twentytwentytwo input[type="color"],
#buddypress.twentytwentytwo input[type="date"],
#buddypress.twentytwentytwo input[type="datetime"],
#buddypress.twentytwentytwo input[type="datetime-local"],
#buddypress.twentytwentytwo input[type="email"],
#buddypress.twentytwentytwo input[type="month"],
#buddypress.twentytwentytwo input[type="number"],
#buddypress.twentytwentytwo input[type="range"],
#buddypress.twentytwentytwo input[type="tel"],
#buddypress.twentytwentytwo input[type="time"],
#buddypress.twentytwentytwo input[type="url"],
#buddypress.twentytwentytwo input[type="week"],
#buddypress.twentytwentytwo input[type="password"],
#buddypress.twentytwentytwo input[type="search"],
#buddypress.twentytwentytwo .groups-members-search input[type="text"] {
color: var(--wp--preset--color--foreground);
background: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .subnav-filters input[type="search"] {
font-size: 16px;
background: transparent;
}
#buddypress.twentytwentytwo .bp-dir-search-form button,
#buddypress.twentytwentytwo form#group-members-search button,
#buddypress.twentytwentytwo form#group_invites_search_form button {
background-color: var(--wp--preset--color--background);
color: var(--wp--preset--color--foreground);
border-color: var(--wp--preset--color--background);
border-right-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-dir-search-form button:hover,
#buddypress.twentytwentytwo form#group-members-search button:hover,
#buddypress.twentytwentytwo form#group_invites_search_form button:hover {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
border-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .standard-form p.description {
color: var(--wp--preset--color--primary);
background-color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .standard-form .datebox-selects label,
#buddypress.twentytwentytwo .standard-form .datebox-selects span.label {
display: inline;
}
body.bp-user.settings.general #buddypress.twentytwentytwo .wp-pwd:not(.is-open) {
display: none;
}
/**
*----------------------------------------------------------
* @section 6.1 - Directory Search
*
* The Search form & controls in directory pages
*----------------------------------------------------------
*/
.bp-user #buddypress.twentytwentytwo [data-bp-search] form #user_messages_search {
padding: 3px 10px;
}
#buddypress.twentytwentytwo form.bp-dir-search-form,
#buddypress.twentytwentytwo form.bp-messages-search-form,
#buddypress.twentytwentytwo form[data-bp-search].bp-invites-search-form,
#buddypress.twentytwentytwo form#group-members-search {
border: 1px solid var(--wp--preset--color--primary);
background-color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo form.bp-dir-search-form button,
#buddypress.twentytwentytwo form.bp-messages-search-form button,
#buddypress.twentytwentytwo form[data-bp-search].bp-invites-search-form button,
#buddypress.twentytwentytwo form#group-members-search button {
padding: 5px 0.8em 6px;
}
/**
*----------------------------------------------------------
* @section 6.2 - Registration
*----------------------------------------------------------
*/
#buddypress.twentytwentytwo.extended-default-reg .register-page .default-profile {
min-width: 45%;
}
/**
*-------------------------------------------------------------------------------
* @section 7.0 - Tables - General
*-------------------------------------------------------------------------------
*/
#buddypress.twentytwentytwo .bp-tables-user tbody tr,
#buddypress.twentytwentytwo .bp-tables-user tbody tr.alt,
#buddypress.twentytwentytwo table.wp-profile-fields tbody tr,
#buddypress.twentytwentytwo table.wp-profile-fields tbody tr.alt,
#buddypress.twentytwentytwo table.forum tbody tr,
#buddypress.twentytwentytwo table.forum tbody tr.alt {
background: transparent;
}
/**
*-------------------------------------------------------------------------------
* @section 8.0 - Classes - Messages, Ajax, Widgets, Buttons
*-------------------------------------------------------------------------------
*/
#buddypress.twentytwentytwo button,
#buddypress.twentytwentytwo a.button,
#buddypress.twentytwentytwo input[type="submit"],
#buddypress.twentytwentytwo input[type="button"],
#buddypress.twentytwentytwo ul.button-nav:not(.button-tabs) li a,
#buddypress.twentytwentytwo .generic-button a,
#buddypress.twentytwentytwo .comment-reply-link,
#buddypress.twentytwentytwo a.bp-title-button,
#buddypress.twentytwentytwo .activity-read-more a {
background: var(--wp--preset--color--primary);
border: 1px solid var(--wp--preset--color--primary);
border-radius: 0;
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo button:hover,
#buddypress.twentytwentytwo button:focus,
#buddypress.twentytwentytwo a.button:focus,
#buddypress.twentytwentytwo a.button:hover,
#buddypress.twentytwentytwo input[type="submit"]:focus,
#buddypress.twentytwentytwo input[type="submit"]:hover,
#buddypress.twentytwentytwo input[type="button"]:focus,
#buddypress.twentytwentytwo input[type="button"]:hover,
#buddypress.twentytwentytwo input[type="reset"],
#buddypress.twentytwentytwo #bp-messages-reset,
#buddypress.twentytwentytwo .button-nav li a:focus,
#buddypress.twentytwentytwo .button-nav li a:hover,
#buddypress.twentytwentytwo .button-nav li.current a,
#buddypress.twentytwentytwo .generic-button a:focus,
#buddypress.twentytwentytwo .generic-button a:hover,
#buddypress.twentytwentytwo .comment-reply-link:focus,
#buddypress.twentytwentytwo .comment-reply-link:hover,
#buddypress.twentytwentytwo .activity-read-more a:focus,
#buddypress.twentytwentytwo .activity-read-more a:hover {
background: transparent;
border-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--foreground);
outline: none;
text-decoration: none;
}
#buddypress.twentytwentytwo input[type="reset"]:focus,
#buddypress.twentytwentytwo input[type="reset"]:hover,
#buddypress.twentytwentytwo #bp-messages-reset:focus,
#buddypress.twentytwentytwo #bp-messages-reset:hover {
outline-offset: -0.25ch;
outline: 2px dashed currentColor;
}
#buddypress.twentytwentytwo input[type="submit"].pending,
#buddypress.twentytwentytwo input[type="button"].pending,
#buddypress.twentytwentytwo input[type="reset"].pending,
#buddypress.twentytwentytwo input[type="button"].disabled,
#buddypress.twentytwentytwo input[type="reset"].disabled,
#buddypress.twentytwentytwo input[type="submit"][disabled="disabled"],
#buddypress.twentytwentytwo input[type="submit"]:disabled,
#buddypress.twentytwentytwo input[type="submit"]:hover.pending,
#buddypress.twentytwentytwo input[type="button"]:hover.pending,
#buddypress.twentytwentytwo input[type="reset"]:hover.pending,
#buddypress.twentytwentytwo input[type="submit"]:hover.disabled,
#buddypress.twentytwentytwo input[type="button"]:hover.disabled,
#buddypress.twentytwentytwo input[type="reset"]:hover.disabled,
#buddypress.twentytwentytwo button.pending:hover,
#buddypress.twentytwentytwo button.disabled:hover,
#buddypress.twentytwentytwo div.pending a:hover,
#buddypress.twentytwentytwo a.disabled:hover
button.pending,
#buddypress.twentytwentytwo button.disabled,
#buddypress.twentytwentytwo div.pending a,
#buddypress.twentytwentytwo a.disabled {
opacity: 0.6;
cursor: not-allowed;
}
#buddypress.twentytwentytwo .blog-button:after, #buddypress.twentytwentytwo .blog-button:before {
display: none;
}
#buddypress.twentytwentytwo .create-button a:focus,
#buddypress.twentytwentytwo .create-button a:hover {
text-decoration: none;
}
#buddypress.twentytwentytwo.bp-dir-vert-nav .create-button a {
box-shadow: none;
color: var(--wp--preset--color--background);
background-color: var(--wp--preset--color--primary);
border-radius: 0;
border: 1px solid var(--wp--preset--color--primary);
background-clip: border-box;
}
#buddypress.twentytwentytwo .warn {
color: var(--wp--preset--color--primary);
font-weight: 600;
}
#buddypress.twentytwentytwo .bp-feedback {
color: var(--wp--preset--color--primary);
background: var(--wp--preset--color--background);
box-shadow: none;
}
#buddypress.twentytwentytwo .bp-feedback:not(.custom-homepage-info) {
margin-top: 1.5em;
margin-bottom: 1.5em;
border: solid 1px var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-feedback .bp-icon {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-feedback a {
border-bottom: solid 1px var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip {
border: none;
background: none;
top: -5px;
left: 0;
}
#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip .dashicons-dismiss {
border-radius: 50%;
width: 32px;
height: 32px;
color: var(--wp--preset--color--primary);
background: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip:hover .dashicons-dismiss {
color: var(--wp--preset--color--background);
background: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-feedback.bp-sitewide-notice button.bp-tooltip {
top: 0;
left: 15px;
}
#buddypress.twentytwentytwo .bp-feedback.bp-sitewide-notice .bp-icon:before {
content: "\f16d";
}
#buddypress.twentytwentytwo #group-create-body .bp-cover-image-status p.warning {
background-color: var(--wp--preset--color--tertiary);
border: none;
border-right-width: 4px;
border-right-style: solid;
border-right-color: var(--wp--preset--color--luminous-vivid-orange);
color: var(--wp--preset--color--primary);
box-shadow: none;
}
body.buddypress .site #buddypress.twentytwentytwo .button.bp-tooltip:after {
content: attr(data-bp-tooltip);
word-wrap: break-word;
height: auto;
width: auto;
}
/**
*-------------------------------------------------------------------------------
* @section 9.0 - Layout classes
*-------------------------------------------------------------------------------
*/
#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li span {
background-color: var(--wp--preset--color--primary);
border-radius: 10%;
display: inline-block;
margin: 3px 0;
}
#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li.selected span, #buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li.current span {
background-color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) {
background: var(--wp--preset--color--background);
border-right: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) {
background: transparent;
border-bottom: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a {
border: none;
text-decoration: none;
}
#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current, #buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.selected {
background-color: var(--wp--preset--color--primary);
margin: 0;
padding: 10px 0;
border-radius: 0;
}
#buddypress.twentytwentytwo .grid.bp-list {
border-top: none;
}
#buddypress.twentytwentytwo .grid > li {
border: none;
}
#buddypress.twentytwentytwo .grid > li .list-wrap {
border: 1px solid var(--wp--preset--color--primary);
background: transparent;
}
#buddypress.twentytwentytwo .grid > li:not(.mini) .item-avatar,
#buddypress.twentytwentytwo .grid > li .item-avatar {
margin-left: auto;
} | wp-content/plugins/buddypress/bp-templates/bp-nouveau/css/twentytwentytwo-rtl.css | *-------------------------------------------------------------------------------
* @section 1.0 - BP Generic, Typography & Imagery
*-------------------------------------------------------------------------------
*/
/**
*-------------------------------------------------------------------------------
* @section 2.0 - Navigation - General
*-------------------------------------------------------------------------------
*/
/**
*----------------------------------------------------------
* @section 2.1 - Navs Object Nav / Sub Nav (bp-list)
*
* The main navigational elements for all BP screens
*----------------------------------------------------------
*/
@media screen and (max-width: 46.8em) {
#buddypress.twentytwentytwo:not(.bp-single-vert-nav) .bp-navs li {
background: transparent;
}
}
#buddypress.twentytwentytwo .bp-navs li .count {
background-color: var(--wp--preset--color--primary);
border: 1px solid var(--wp--preset--color--primary);
border-radius: 50%;
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li.selected a .count,
#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li.current a .count,
#buddypress.twentytwentytwo .bp-navs:not(.tabbed-links) li a:hover a .count {
background-color: var(--wp--preset--color--background);
border: 1px solid var(--wp--preset--color--background);
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .bp-navs li:not(.current):not(.selected) a:focus,
#buddypress.twentytwentytwo .bp-navs li:not(.current):not(.selected) a:hover {
background: var(--wp--preset--color--background);
color: var(--wp--preset--color--primary);
outline-offset: -0.25ch;
outline: 2px dashed currentColor;
}
#buddypress.twentytwentytwo .bp-navs li.selected a,
#buddypress.twentytwentytwo .bp-navs li.selected a:focus,
#buddypress.twentytwentytwo .bp-navs li.selected a:hover,
#buddypress.twentytwentytwo .bp-navs li.current a,
#buddypress.twentytwentytwo .bp-navs li.current a:focus,
#buddypress.twentytwentytwo .bp-navs li.current a:hover {
color: var(--wp--preset--color--background);
background-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-navs.tabbed-links ul,
#buddypress.twentytwentytwo .bp-navs.tabbed-links ol {
border-bottom: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-navs.tabbed-links ul li.current,
#buddypress.twentytwentytwo .bp-navs.tabbed-links ol li.current {
border-color: var(--wp--preset--color--primary) var(--wp--preset--color--primary) var(--wp--preset--color--background);
border-style: solid;
border-top-right-radius: 4px;
border-top-left-radius: 4px;
}
#buddypress.twentytwentytwo .bp-navs.tabbed-links ul li.current a,
#buddypress.twentytwentytwo .bp-navs.tabbed-links ol li.current a {
color: var(--wp--preset--color--primary);
background-color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo #group-invites-container .bp-invites-nav {
border-bottom: none;
}
#buddypress.twentytwentytwo #group-invites-container .bp-invites-nav li .count {
margin-right: 10px;
border-radius: 10%;
vertical-align: 10%;
}
#buddypress.twentytwentytwo #group-invites-container #send-invites-editor ul {
padding-right: 0;
}
#buddypress.twentytwentytwo.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links) {
border: none;
border-bottom: 1px solid var(--wp--preset--color--primary);
box-shadow: none;
}
#buddypress.twentytwentytwo .subnav-filters > ul {
padding-right: 0;
}
/**
*----------------------------------------------------------
* @section 2.2 - Pagination
*----------------------------------------------------------
*/
#buddypress.twentytwentytwo .bp-pagination {
color: var(--wp--preset--color--foreground);
}
/**
*-------------------------------------------------------------------------------
* @section 3.0 - BP Lists / Loops Generic
*-------------------------------------------------------------------------------
*/
#buddypress.twentytwentytwo .bp-list {
border-top: 1px dotted var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-list > li {
border-bottom: 1px dotted var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-list li:not(.mini) .item-avatar img.avatar {
display: block;
margin: 0 auto;
margin-bottom: 1em;
max-width: 80%;
}
@media screen and (min-width: 46.8em) {
#buddypress.twentytwentytwo .bp-list li:not(.mini) .item-avatar {
max-width: 128px;
max-height: 128px;
margin: auto;
margin-left: 5%;
}
}
#buddypress.twentytwentytwo .bp-list li.mini .item-avatar img.avatar {
display: block;
margin: 0 auto;
max-width: 50px;
max-height: 50px;
margin-bottom: 1em;
}
@media screen and (min-width: 46.8em) {
#buddypress.twentytwentytwo .bp-list li.mini .item-avatar {
width: 5%;
margin: auto;
margin-left: 2%;
}
}
#buddypress.twentytwentytwo .bp-list li.mini .activity-meta.action {
clear: none;
}
#buddypress.twentytwentytwo .bp-list li .meta,
#buddypress.twentytwentytwo .bp-list li .item-meta {
color: var(--wp--preset--color--foreground);
}
/**
*----------------------------------------------------------
* @section 3.1 - Activity Loop
*----------------------------------------------------------
*/
#buddypress.twentytwentytwo .activity-list.bp-list {
background: inherit;
border-right: none;
border-left: none;
border-top: none;
border-bottom: 1px dotted var(--wp--preset--color--primary);
padding: 0;
}
#buddypress.twentytwentytwo .activity-list.bp-list .activity-item {
background: inherit;
border: none;
border-radius: 0;
border-top: 1px dotted var(--wp--preset--color--primary);
box-shadow: none;
}
#buddypress.twentytwentytwo .activity-list.bp-list .activity-item:not(:first-child) {
margin-top: 1.5em;
}
#buddypress.twentytwentytwo .activity-list.bp-list .activity-item .activity-header .time-since,
#buddypress.twentytwentytwo .activity-list.bp-list .activity-item .activity-header .time-since:hover {
color: var(--wp--preset--color--foreground);
}
/**
*-----------------------------------------------------
* @section 3.1.1 - Activity Whats New
*-----------------------------------------------------
*/
#buddypress.twentytwentytwo .activity-update-form {
border: none;
box-shadow: none;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-textarea textarea {
border: solid 1px var(--wp--preset--color--foreground);
border-radius: 0;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-textarea textarea:focus {
box-shadow: none;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box select,
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #activity-autocomplete {
border: solid 1px var(--wp--preset--color--foreground);
padding: 0.5em;
font-size: var(--wp--preset--font-size--medium);
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box select {
width: -moz-fit-content;
width: fit-content;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li {
margin-bottom: 0;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li #activity-autocomplete {
width: 98%;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object {
padding: 0.5em;
border-radius: 0;
border-style: dotted;
border-width: 0;
border-right-width: 1px;
border-left-width: 1px;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected) {
background: var(--wp--preset--color--background);
color: var(--wp--preset--color--foreground);
border-color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):last-child {
border-bottom: dotted 1px;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object:not(.selected):hover {
background: var(--wp--preset--color--secondary);
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-post-in-box #whats-new-post-in-box-items li.bp-activity-object.selected {
border: none;
background-color: transparent;
}
#buddypress.twentytwentytwo .activity-update-form #whats-new-submit {
margin-bottom: calc(32px + var(--wp--style--block-gap));
}
#buddypress.twentytwentytwo #activity-rss-feed {
line-height: 40px;
}
/**
*-----------------------------------------------------
* @section 3.1.2 - Activity Entries
*-----------------------------------------------------
*/
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
border: 1px solid var(--wp--preset--color--primary);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more a,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest a {
color: var(--wp--preset--color--background);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more a:focus,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest a:focus {
color: var(--wp--preset--color--foreground);
background: transparent;
outline-offset: -0.25ch;
outline: 2px dashed currentColor;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:hover, body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:focus,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:hover,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:focus {
color: var(--wp--preset--color--foreground);
background: transparent;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:hover a, body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-more:focus a,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:hover a,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .load-newest:focus a {
color: var(--wp--preset--color--foreground);
background: transparent;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header {
color: var(--wp--preset--color--foreground);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header a,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header a {
font-weight: 600;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-header a:hover,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .comment-header a:hover {
text-decoration: underline;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-inner,
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content blockquote {
background: inherit;
border: 1px dotted var(--wp--preset--color--primary);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action {
background: inherit;
margin-right: calc(128px + 5%);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .icons:before {
height: auto;
width: auto;
display: inline;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:before {
content: "";
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button {
background-color: var(--wp--preset--color--tertiary);
padding: 0.7em 0.7em 0.5em;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button .bp-screen-reader-text {
border: 0;
clip: inherit;
height: auto;
margin: auto;
overflow: auto;
position: inherit;
width: auto;
font-size: var(--wp--preset--font-size--small);
font-weight: 600;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button span:not(.bp-screen-reader-text) {
background-color: var(--wp--preset--color--foreground);
color: var(--wp--preset--color--tertiary);
padding: 0.1em 0.3em;
border-radius: 50%;
font-size: var(--wp--preset--font-size--small);
vertical-align: text-bottom;
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:not(.delete-activity) {
color: var(--wp--preset--color--foreground);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover {
background-color: var(--wp--preset--color--foreground);
color: var(--wp--preset--color--background);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover span {
color: var(--wp--preset--color--background);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button:hover span:not(.bp-screen-reader-text) {
background-color: var(--wp--preset--color--tertiary);
color: var(--wp--preset--color--foreground);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity {
color: var(--wp--preset--color--vivid-red);
border: solid 1px var(--wp--preset--color--vivid-red);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity span.bp-screen-reader-text {
color: var(--wp--preset--color--vivid-red);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity:hover {
background-color: var(--wp--preset--color--vivid-red);
color: var(--wp--preset--color--background);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list .activity-content .activity-meta.action .button.delete-activity:hover span.bp-screen-reader-text {
color: var(--wp--preset--color--background);
}
body .wp-site-blocks #buddypress.twentytwentytwo .activity-list li.mini .activity-meta.action {
margin-right: calc(50px + 2%);
}
body.activity-permalink #buddypress.twentytwentytwo .activity-list {
border: none;
}
body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-item {
border: none;
}
body.activity-permalink #buddypress.twentytwentytwo .activity-list .activity-item .activity-avatar img.avatar {
background: var(--wp--preset--color--white);
}
/**
*-----------------------------------------------------
* @section 3.1.3 - Activity Comments
*-----------------------------------------------------
*/
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-avatar {
width: auto;
margin-left: 0;
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta a {
font-weight: 600;
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-meta a:hover {
text-decoration: underline;
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a {
color: var(--wp--preset--color--foreground);
display: inline-block;
font-size: var(--wp--preset--font-size--small);
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a.bp-primary-action {
background-color: var(--wp--preset--color--secondary);
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .activity-meta.action .generic-button a.bp-secondary-action {
background-color: var(--wp--preset--color--tertiary);
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .acomment-content {
border-right: 1px solid var(--wp--preset--color--foreground);
margin: 15px 5% 0 0;
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content .ac-textarea textarea {
width: 98%;
border-radius: 0;
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content .ac-textarea textarea:focus {
box-shadow: none;
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type="submit"],
#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type="button"] {
color: var(--wp--preset--color--foreground);
display: inline-block;
font-size: var(--wp--preset--font-size--small);
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type="submit"] {
margin-right: calc(50px - 0.5em);
background-color: var(--wp--preset--color--secondary);
}
#buddypress.twentytwentytwo .bp-list li .activity-comments .ac-form .ac-reply-content [type="button"] {
background-color: var(--wp--preset--color--tertiary);
}
/**
*----------------------------------------------------------
* @section 3.2 - Blogs Loop
*----------------------------------------------------------
*/
/**
*----------------------------------------------------------
* @section 3.3 - Groups Loop
*----------------------------------------------------------
*/
#buddypress.twentytwentytwo .groups-list li .group-desc {
color: var(--wp--preset--color--foreground);
border: 1px dotted var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #groups-dir-list .current-group-type {
text-align: center;
}
/**
*----------------------------------------------------------
* @section 3.4 - Members Loop
*----------------------------------------------------------
*/
body:not(.logged-in) #buddypress.twentytwentytwo .members-list .user-update {
width: inherit;
}
#buddypress.twentytwentytwo .members-list li .user-update {
border: 1px dotted var(--wp--preset--color--primary);
color: var(--wp--preset--color--foreground);
margin: 0 auto 15px;
}
#buddypress.twentytwentytwo #members-dir-list .current-member-type {
text-align: center;
}
/**
*-------------------------------------------------------------------------------
* @section 4.0 - Directories
*-------------------------------------------------------------------------------
*/
/**
*----------------------------------------------------------
* @section 4.1 - Groups Creation Steps
*----------------------------------------------------------
*/
#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) {
background: transparent;
clear: both;
overflow: hidden;
border: none;
border-bottom: 1px solid var(--wp--preset--color--primary);
box-shadow: none;
}
#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) li a,
#buddypress.twentytwentytwo #group-create-body nav.group-create-links:not(.tabbed-links) li span {
padding: 0.5em calc(0.5em + 2px);
display: block;
}
/**
*-------------------------------------------------------------------------------
* @section 5.0 - Single Item screens: Groups, Users
*-------------------------------------------------------------------------------
*/
body.single-item #buddypress.twentytwentytwo .item-body h2.bp-screen-title,
body.single-item #buddypress.twentytwentytwo .item-body h2.screen-heading,
body.bp-user #buddypress.twentytwentytwo .item-body h2.bp-screen-title,
body.bp-user #buddypress.twentytwentytwo .item-body h2.screen-heading {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}
/**
*-----------------------------------------------------------
* @subsection 5.1 - Item Header Global
*-----------------------------------------------------------
*/
#buddypress.twentytwentytwo .single-headers #item-header-cover-image h2 {
font-weight: 900;
}
#buddypress.twentytwentytwo .single-headers .group-status,
#buddypress.twentytwentytwo .single-headers .item-meta,
#buddypress.twentytwentytwo .single-headers .bp-group-type-list,
#buddypress.twentytwentytwo .single-headers .bp-member-type-list {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .single-headers a:hover {
text-decoration: underline;
}
/**
*-----------------------------------------------------
* @subsection 5.1.1 - item-header Groups
*
* Group Specific Item Header
*-----------------------------------------------------
*/
#buddypress.twentytwentytwo .groups-header .desc-wrap {
background: var(--wp--preset--color--background);
border: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .groups-header .desc-wrap .group-description {
background: none;
box-shadow: none;
}
/**
*-----------------------------------------------------
* @subsection 5.1.2 - Item Header User Accounts
*
* User Accounts Specific Item Header
*-----------------------------------------------------
*/
/**
*-----------------------------------------------------------
* @subsection 5.2 - Item Body: Global
*-----------------------------------------------------------
*/
#buddypress.twentytwentytwo .item-body h2.screen-heading,
#buddypress.twentytwentytwo .item-body h2.creation-step-name {
font-size: var(--wp--custom--typography--font-size--huge);
}
#buddypress.twentytwentytwo .item-body h3.screen-heading,
#buddypress.twentytwentytwo .item-body h3.creation-step-name {
font-size: var(--wp--preset--font-size--large);
}
#buddypress.twentytwentytwo .item-body h4.screen-heading,
#buddypress.twentytwentytwo .item-body h4.creation-step-name {
font-size: var(--wp--preset--font-size--medium);
}
#buddypress.twentytwentytwo .item-body .bp-avatar #avatar-crop-pane {
margin-bottom: 1em;
}
#buddypress.twentytwentytwo .item-body .bp-avatar-nav ul.avatar-nav-items {
border-bottom: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .item-body .bp-avatar-nav ul.avatar-nav-items li.current {
border: 1px solid var(--wp--preset--color--primary);
border-bottom: 1px solid var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .item-body #drag-drop-area {
border: 4px dashed var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .item-body #drag-drop-area .drag-drop-info {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .item-body #drag-drop-area #bp-browse-button {
margin: 50px auto 0;
}
#buddypress.twentytwentytwo .item-body .drag-over #drag-drop-area {
border: 4px dashed var(--wp--preset--color--vivid-cyan-blue);
}
#buddypress.twentytwentytwo .item-body .bp-avatar-status .warning,
#buddypress.twentytwentytwo .item-body .bp-avatar-status .success,
#buddypress.twentytwentytwo .item-body .bp-cover-image-status .warning,
#buddypress.twentytwentytwo .item-body .bp-cover-image-status .success,
#buddypress.twentytwentytwo .item-body .avatar-history-actions .warning,
#buddypress.twentytwentytwo .item-body .avatar-history-actions .success {
background-color: var(--wp--preset--color--tertiary);
border: none;
border-right-width: 4px;
border-right-style: solid;
color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .item-body .bp-avatar-status .warning,
#buddypress.twentytwentytwo .item-body .bp-cover-image-status .warning,
#buddypress.twentytwentytwo .item-body .avatar-history-actions .warning {
border-right-color: var(--wp--preset--color--luminous-vivid-orange);
}
#buddypress.twentytwentytwo .item-body .bp-avatar-status .success,
#buddypress.twentytwentytwo .item-body .bp-cover-image-status .success,
#buddypress.twentytwentytwo .item-body .avatar-history-actions .success {
border-right-color: var(--wp--preset--color--vivid-green-cyan);
}
#buddypress.twentytwentytwo .item-body .bp-avatar-status .error,
#buddypress.twentytwentytwo .item-body .bp-cover-image-status .error,
#buddypress.twentytwentytwo .item-body .avatar-history-actions .error {
border-right-color: var(--wp--preset--color--vivid-red);
}
#buddypress.twentytwentytwo .item-body .avatar-history-action.delete {
background-color: var(--wp--preset--color--vivid-red);
color: var(--wp--preset--color--background);
border: solid 1px var(--wp--preset--color--vivid-red);
}
#buddypress.twentytwentytwo .item-body .avatar-history-action.delete:hover {
background-color: var(--wp--preset--color--background);
color: var(--wp--preset--color--vivid-red);
}
/**
*----------------------------------------------------
* @subsection 5.2.1 - Item Body Groups
*
* Groups specific item body rules - screens
*----------------------------------------------------
*/
/**
*-----------------------------------------
* @subsection 5.2.1.1 - Management Settings Screens
*-----------------------------------------
*/
.group-settings #buddypress.twentytwentytwo .group-settings-selections {
margin-bottom: 1em;
}
#buddypress.twentytwentytwo #group-manage-members-ui .bp-pagination {
padding: 0.4em 0.5em 0.4em 0;
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form input[type="search"] {
font-size: 16px;
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form input[type="search"]:focus {
outline-offset: -7px;
outline: 2px dotted var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form button[type="submit"] {
border-width: 1px;
border-style: solid;
background-clip: border-box;
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-search-form button[type="submit"]:hover {
border-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-roles-filter label,
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit label {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-role-filter,
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit select {
font-size: 16px;
padding: 6px 10px 6px 25px;
}
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-role-filter:focus,
#buddypress.twentytwentytwo #group-manage-members-ui #group-members-list-table .group-member-edit select:focus {
outline-offset: 2px;
outline: 2px dotted var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo #delete-group-button {
border-color: var(--wp--preset--color--vivid-red);
color: var(--wp--preset--color--background);
background: var(--wp--preset--color--vivid-red);
}
#buddypress.twentytwentytwo #delete-group-button:hover {
color: var(--wp--preset--color--vivid-red);
background: var(--wp--preset--color--background);
}
/**
*-----------------------------------------
* @subsection 5.2.1.2 - Group Members List
*-----------------------------------------
*/
/*
*-----------------------------------------
* @subsection 5.2.1.3 - Group Invites List
*-----------------------------------------
*/
#buddypress.twentytwentytwo .bp-invites-content ul {
border-top: none;
}
#buddypress.twentytwentytwo .bp-invites-content ul li {
border: 1px dotted var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-invites-content ul li.selected {
box-shadow: none;
border-style: solid;
}
#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button {
border: none;
background: none;
top: -5px;
left: 0;
}
#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button .icons:before {
border-radius: 50%;
width: 32px;
height: 32px;
color: var(--wp--preset--color--primary);
background: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button:hover .icons:before {
color: var(--wp--preset--color--background);
background: var(--wp--preset--color--primary);
width: 32px;
height: 32px;
}
#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button.group-remove-invite-button .icons:before {
color: var(--wp--preset--color--vivid-red);
background: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-invites-content ul li button.invite-button.group-remove-invite-button:hover .icons:before {
color: var(--wp--preset--color--background);
background: var(--wp--preset--color--vivid-red);
}
#buddypress.twentytwentytwo .bp-invites-content ul li ul.group-inviters li {
border: none;
}
/*
*-----------------------------------------
* @subsection 5.2.1.4 - Group Activity
*-----------------------------------------
*/
/**
*-----------------------------------------------------
* @subsection 5.2.2 - Item Body User Accounts
*
* User Account specific item body rules
*-----------------------------------------------------
*/
/**
*--------------------------------------------
* @subsection 5.2.2.1 - classes, pag, filters
*--------------------------------------------
*/
/**
*-------------------------------------------
* @subsection 5.2.2.2 - Extended Profiles
*-------------------------------------------
*/
#buddypress.twentytwentytwo .profile table.profile-fields tr.alt td,
#buddypress.twentytwentytwo .profile table.profile-fields tr td,
#buddypress.twentytwentytwo .profile table.bp-tables-user tr.alt td,
#buddypress.twentytwentytwo .profile table.bp-tables-user tr td {
background: transparent;
}
#buddypress.twentytwentytwo .profile table.profile-fields tr.alt td.label,
#buddypress.twentytwentytwo .profile table.profile-fields tr td.label,
#buddypress.twentytwentytwo .profile table.bp-tables-user tr.alt td.label,
#buddypress.twentytwentytwo .profile table.bp-tables-user tr td.label {
border-left-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .profile.edit .editfield {
background: var(--wp--preset--color--background);
border: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .profile.edit .editfield p.field-visibility-settings-toggle {
margin-top: 1em;
}
#buddypress.twentytwentytwo .profile.edit .editfield .field-visibility-settings .radio label {
margin-bottom: 0.5em;
}
#buddypress.twentytwentytwo .profile.edit .wp-editor-container .mce-toolbar button {
color: var(--wp--preset--color--primary);
background: var(--wp--preset--color--background);
border-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .profile.edit .button-tabs li {
border: solid 2px var(--wp--preset--color--primary);
overflow: hidden;
}
#buddypress.twentytwentytwo .profile.edit .button-tabs li a {
text-decoration: none;
}
#buddypress.twentytwentytwo .profile.edit .button-tabs li.current {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .profile.edit .button-tabs li.current a {
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .profile.edit .button-tabs li:hover {
outline-offset: 10px;
border-style: dotted;
}
#buddypress.twentytwentytwo .profile.edit .clear-value {
text-decoration: underline;
}
#buddypress.twentytwentytwo .profile.edit legend {
padding: 0;
}
#buddypress.twentytwentytwo .field-visibility-settings,
#buddypress.twentytwentytwo .field-visibility-settings-header {
color: var(--wp--preset--color--foreground);
}
/**
*-------------------------------------------
* @subsection 5.2.2.3 - Groups
*-------------------------------------------
*/
#buddypress.twentytwentytwo #group-list.invites h2.list-title {
float: none;
}
#buddypress.twentytwentytwo #group-list.invites .accept {
margin-right: 0;
}
/**
*-------------------------------------------
* @subsection 5.2.2.5 - Private Messaging
*-------------------------------------------
*/
#buddypress.twentytwentytwo #user_messages_select_all {
vertical-align: -5px;
}
#buddypress.twentytwentytwo #user_messages_select_all:checked {
vertical-align: -3px;
}
#buddypress.twentytwentytwo #message-threads {
border-top: 1px dotted var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads > li {
border-bottom: 1px dotted var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads > li.selected {
border: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads > li.unread {
border-right: 8px solid var(--wp--preset--color--secondary);
}
#buddypress.twentytwentytwo #message-threads li .thread-cb {
padding-right: 15px;
}
#buddypress.twentytwentytwo #message-threads li.unread .thread-cb {
padding-right: 7px;
}
#buddypress.twentytwentytwo #message-threads li .thread-from img.avatar,
#buddypress.twentytwentytwo #message-threads li .thread-to img.avatar {
width: 32px;
height: 32px;
}
#buddypress.twentytwentytwo #message-threads li .thread-from .num-recipients,
#buddypress.twentytwentytwo #message-threads li .thread-to .num-recipients {
color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads li .thread-content .excerpt {
color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads li .thread-date time {
color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads li.selected {
background: transparent;
font-weight: bolder;
color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads li.selected .thread-subject .subject {
color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo #message-threads li:not(.selected) {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .bp-messages-content #thread-preview h2:first-child,
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-header h2:first-child {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list {
border-top: none;
}
#buddypress.twentytwentytwo .bp-messages-content #thread-preview {
border-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-messages-content #thread-preview dd,
#buddypress.twentytwentytwo .bp-messages-content #thread-preview .participants-list {
padding-right: 0;
}
#buddypress.twentytwentytwo .bp-messages-content #thread-preview .preview-pane-header {
border-bottom-style: dotted;
border-bottom-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-messages-content #thread-preview .preview-content .preview-message {
background: transparent;
}
#buddypress.twentytwentytwo .bp-messages-content .single-message-thread-header dd,
#buddypress.twentytwentytwo .bp-messages-content .single-message-thread-header .participants-list {
padding-right: 0;
}
#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip {
border: none;
background: none;
}
#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-delete:before, #buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-exit:before {
width: 32px;
height: 32px;
color: var(--wp--preset--color--vivid-red);
background: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-delete:hover:before, #buddypress.twentytwentytwo .bp-messages-content .actions button.bp-tooltip.message-action-exit:hover:before {
border-radius: 50%;
color: var(--wp--preset--color--background);
background: var(--wp--preset--color--vivid-red);
}
#buddypress.twentytwentytwo .bp-messages-content .actions .message-action-unstar:before,
#buddypress.twentytwentytwo .bp-messages-content .actions .message-action-star:before {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li {
padding-right: 0;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata {
background: transparent;
border: 1px solid var(--wp--preset--color--primary);
box-shadow: none;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata * {
line-height: 1.6;
vertical-align: middle;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link {
margin-top: 3px;
margin-bottom: 3px;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link strong {
display: inline-block;
margin-top: 2px;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata .user-link:hover strong {
text-decoration: underline;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-metadata time {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-content {
background: transparent;
margin: 0;
width: 100%;
padding: 0.5em 0.2em;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li .message-content * {
padding-right: 0.8em;
padding-left: 0.8em;
}
#buddypress.twentytwentytwo .bp-messages-content #bp-message-thread-list li:first-child .message-content {
border: 1px dotted var(--wp--preset--color--primary);
border-top: none;
}
#buddypress.twentytwentytwo .bp-messages-content #send-reply .avatar-box img.avatar {
display: inline-block;
vertical-align: -7px;
}
#buddypress.twentytwentytwo .bp-messages-content .wp-editor-container .mce-toolbar button {
color: var(--wp--preset--color--primary);
background: var(--wp--preset--color--background);
border-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-messages-content #bp-messages-reset {
border-width: 0;
font-size: inherit;
}
#buddypress.twentytwentytwo .bp-messages-content #send-to-input {
width: 100% !important;
}
#buddypress.twentytwentytwo .subnav-filters button#user_messages_search_submit {
padding: 3px 0.7em;
background-color: var(--wp--preset--color--background);
color: var(--wp--preset--color--foreground);
border-color: var(--wp--preset--color--background);
border-right-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .subnav-filters button#user_messages_search_submit:hover {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
border-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply {
line-height: 1.5;
margin: 0 10px 0 0;
padding: 3px 5px;
background-color: var(--wp--preset--color--background);
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply:hover {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .subnav-filters .user-messages-bulk-actions .bulk-apply span {
vertical-align: middle;
}
/**
*------------------------------------------
* @subsection 5.2.2.6 - Settings
*------------------------------------------
*/
#buddypress.twentytwentytwo.buddypress-wrap .bp-tables-user tr.alt td,
#buddypress.twentytwentytwo.buddypress-wrap table.wp-profile-fields tr.alt td {
background: transparent;
}
#buddypress.twentytwentytwo .bp-tables-user.profile-settings {
border: solid 1px currentColor;
margin-bottom: 1em;
}
#buddypress.twentytwentytwo .bp-tables-user.profile-settings thead tr {
border: none;
}
#buddypress.twentytwentytwo .bp-tables-user.profile-settings thead tr th {
text-align: right;
border-bottom: dotted 1px currentColor;
}
#buddypress.twentytwentytwo #delete-account-button {
border-color: var(--wp--preset--color--vivid-red);
color: var(--wp--preset--color--background);
background: var(--wp--preset--color--vivid-red);
}
#buddypress.twentytwentytwo #delete-account-button:hover {
color: var(--wp--preset--color--vivid-red);
background: var(--wp--preset--color--background);
}
/**
*------------------------------------------
* @subsection 5.2.2.7 - Notifications
*------------------------------------------
*/
#buddypress.twentytwentytwo .notifications-options-nav,
#buddypress.twentytwentytwo .invitations-options-nav {
margin-top: 1em;
}
#buddypress.twentytwentytwo .notifications-options-nav input#notification-bulk-manage,
#buddypress.twentytwentytwo .invitations-options-nav input#invitation-bulk-manage {
line-height: 1.2;
}
#buddypress.twentytwentytwo .bp-tables-user.notifications th {
text-align: right;
}
#buddypress.twentytwentytwo .bp-tables-user.notifications td.notification-actions a.delete {
color: var(--wp--preset--color--vivid-red);
}
/**
*-------------------------------------------------------------------------------
* @section 6.0 - Forms - General
*-------------------------------------------------------------------------------
*/
#buddypress.twentytwentytwo fieldset {
padding-top: 0;
margin-top: 1em;
}
#buddypress.twentytwentytwo fieldset legend {
padding: 0 1em;
display: inline-block;
}
#buddypress.twentytwentytwo .select-wrap {
border: 1px solid var(--wp--preset--color--primary);
background: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .select-wrap select {
background: transparent;
width: 98%;
text-indent: 0;
}
#buddypress.twentytwentytwo .select-wrap span.select-arrow {
background: transparent;
}
#buddypress.twentytwentytwo .select-wrap span.select-arrow:before {
font-family: dashicons;
content: "\f140";
color: var(--wp--preset--color--foreground);
vertical-align: -10%;
}
#buddypress.twentytwentytwo .select-wrap:focus .select-arrow:before, #buddypress.twentytwentytwo .select-wrap:hover .select-arrow:before {
color: var(--wp--preset--color--foreground);
}
#buddypress.twentytwentytwo input[type="checkbox"],
#buddypress.twentytwentytwo input[type="radio"] {
width: 25px;
height: 25px;
vertical-align: top;
}
#buddypress.twentytwentytwo textarea,
#buddypress.twentytwentytwo input[type="text"],
#buddypress.twentytwentytwo input[type="color"],
#buddypress.twentytwentytwo input[type="date"],
#buddypress.twentytwentytwo input[type="datetime"],
#buddypress.twentytwentytwo input[type="datetime-local"],
#buddypress.twentytwentytwo input[type="email"],
#buddypress.twentytwentytwo input[type="month"],
#buddypress.twentytwentytwo input[type="number"],
#buddypress.twentytwentytwo input[type="range"],
#buddypress.twentytwentytwo input[type="tel"],
#buddypress.twentytwentytwo input[type="time"],
#buddypress.twentytwentytwo input[type="url"],
#buddypress.twentytwentytwo input[type="week"],
#buddypress.twentytwentytwo input[type="password"],
#buddypress.twentytwentytwo input[type="search"],
#buddypress.twentytwentytwo .groups-members-search input[type="text"] {
color: var(--wp--preset--color--foreground);
background: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .subnav-filters input[type="search"] {
font-size: 16px;
background: transparent;
}
#buddypress.twentytwentytwo .bp-dir-search-form button,
#buddypress.twentytwentytwo form#group-members-search button,
#buddypress.twentytwentytwo form#group_invites_search_form button {
background-color: var(--wp--preset--color--background);
color: var(--wp--preset--color--foreground);
border-color: var(--wp--preset--color--background);
border-right-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-dir-search-form button:hover,
#buddypress.twentytwentytwo form#group-members-search button:hover,
#buddypress.twentytwentytwo form#group_invites_search_form button:hover {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
border-color: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .standard-form p.description {
color: var(--wp--preset--color--primary);
background-color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .standard-form .datebox-selects label,
#buddypress.twentytwentytwo .standard-form .datebox-selects span.label {
display: inline;
}
body.bp-user.settings.general #buddypress.twentytwentytwo .wp-pwd:not(.is-open) {
display: none;
}
/**
*----------------------------------------------------------
* @section 6.1 - Directory Search
*
* The Search form & controls in directory pages
*----------------------------------------------------------
*/
.bp-user #buddypress.twentytwentytwo [data-bp-search] form #user_messages_search {
padding: 3px 10px;
}
#buddypress.twentytwentytwo form.bp-dir-search-form,
#buddypress.twentytwentytwo form.bp-messages-search-form,
#buddypress.twentytwentytwo form[data-bp-search].bp-invites-search-form,
#buddypress.twentytwentytwo form#group-members-search {
border: 1px solid var(--wp--preset--color--primary);
background-color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo form.bp-dir-search-form button,
#buddypress.twentytwentytwo form.bp-messages-search-form button,
#buddypress.twentytwentytwo form[data-bp-search].bp-invites-search-form button,
#buddypress.twentytwentytwo form#group-members-search button {
padding: 5px 0.8em 6px;
}
/**
*----------------------------------------------------------
* @section 6.2 - Registration
*----------------------------------------------------------
*/
#buddypress.twentytwentytwo.extended-default-reg .register-page .default-profile {
min-width: 45%;
}
/**
*-------------------------------------------------------------------------------
* @section 7.0 - Tables - General
*-------------------------------------------------------------------------------
*/
#buddypress.twentytwentytwo .bp-tables-user tbody tr,
#buddypress.twentytwentytwo .bp-tables-user tbody tr.alt,
#buddypress.twentytwentytwo table.wp-profile-fields tbody tr,
#buddypress.twentytwentytwo table.wp-profile-fields tbody tr.alt,
#buddypress.twentytwentytwo table.forum tbody tr,
#buddypress.twentytwentytwo table.forum tbody tr.alt {
background: transparent;
}
/**
*-------------------------------------------------------------------------------
* @section 8.0 - Classes - Messages, Ajax, Widgets, Buttons
*-------------------------------------------------------------------------------
*/
#buddypress.twentytwentytwo button,
#buddypress.twentytwentytwo a.button,
#buddypress.twentytwentytwo input[type="submit"],
#buddypress.twentytwentytwo input[type="button"],
#buddypress.twentytwentytwo ul.button-nav:not(.button-tabs) li a,
#buddypress.twentytwentytwo .generic-button a,
#buddypress.twentytwentytwo .comment-reply-link,
#buddypress.twentytwentytwo a.bp-title-button,
#buddypress.twentytwentytwo .activity-read-more a {
background: var(--wp--preset--color--primary);
border: 1px solid var(--wp--preset--color--primary);
border-radius: 0;
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo button:hover,
#buddypress.twentytwentytwo button:focus,
#buddypress.twentytwentytwo a.button:focus,
#buddypress.twentytwentytwo a.button:hover,
#buddypress.twentytwentytwo input[type="submit"]:focus,
#buddypress.twentytwentytwo input[type="submit"]:hover,
#buddypress.twentytwentytwo input[type="button"]:focus,
#buddypress.twentytwentytwo input[type="button"]:hover,
#buddypress.twentytwentytwo input[type="reset"],
#buddypress.twentytwentytwo #bp-messages-reset,
#buddypress.twentytwentytwo .button-nav li a:focus,
#buddypress.twentytwentytwo .button-nav li a:hover,
#buddypress.twentytwentytwo .button-nav li.current a,
#buddypress.twentytwentytwo .generic-button a:focus,
#buddypress.twentytwentytwo .generic-button a:hover,
#buddypress.twentytwentytwo .comment-reply-link:focus,
#buddypress.twentytwentytwo .comment-reply-link:hover,
#buddypress.twentytwentytwo .activity-read-more a:focus,
#buddypress.twentytwentytwo .activity-read-more a:hover {
background: transparent;
border-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--foreground);
outline: none;
text-decoration: none;
}
#buddypress.twentytwentytwo input[type="reset"]:focus,
#buddypress.twentytwentytwo input[type="reset"]:hover,
#buddypress.twentytwentytwo #bp-messages-reset:focus,
#buddypress.twentytwentytwo #bp-messages-reset:hover {
outline-offset: -0.25ch;
outline: 2px dashed currentColor;
}
#buddypress.twentytwentytwo input[type="submit"].pending,
#buddypress.twentytwentytwo input[type="button"].pending,
#buddypress.twentytwentytwo input[type="reset"].pending,
#buddypress.twentytwentytwo input[type="button"].disabled,
#buddypress.twentytwentytwo input[type="reset"].disabled,
#buddypress.twentytwentytwo input[type="submit"][disabled="disabled"],
#buddypress.twentytwentytwo input[type="submit"]:disabled,
#buddypress.twentytwentytwo input[type="submit"]:hover.pending,
#buddypress.twentytwentytwo input[type="button"]:hover.pending,
#buddypress.twentytwentytwo input[type="reset"]:hover.pending,
#buddypress.twentytwentytwo input[type="submit"]:hover.disabled,
#buddypress.twentytwentytwo input[type="button"]:hover.disabled,
#buddypress.twentytwentytwo input[type="reset"]:hover.disabled,
#buddypress.twentytwentytwo button.pending:hover,
#buddypress.twentytwentytwo button.disabled:hover,
#buddypress.twentytwentytwo div.pending a:hover,
#buddypress.twentytwentytwo a.disabled:hover
button.pending,
#buddypress.twentytwentytwo button.disabled,
#buddypress.twentytwentytwo div.pending a,
#buddypress.twentytwentytwo a.disabled {
opacity: 0.6;
cursor: not-allowed;
}
#buddypress.twentytwentytwo .blog-button:after, #buddypress.twentytwentytwo .blog-button:before {
display: none;
}
#buddypress.twentytwentytwo .create-button a:focus,
#buddypress.twentytwentytwo .create-button a:hover {
text-decoration: none;
}
#buddypress.twentytwentytwo.bp-dir-vert-nav .create-button a {
box-shadow: none;
color: var(--wp--preset--color--background);
background-color: var(--wp--preset--color--primary);
border-radius: 0;
border: 1px solid var(--wp--preset--color--primary);
background-clip: border-box;
}
#buddypress.twentytwentytwo .warn {
color: var(--wp--preset--color--primary);
font-weight: 600;
}
#buddypress.twentytwentytwo .bp-feedback {
color: var(--wp--preset--color--primary);
background: var(--wp--preset--color--background);
box-shadow: none;
}
#buddypress.twentytwentytwo .bp-feedback:not(.custom-homepage-info) {
margin-top: 1.5em;
margin-bottom: 1.5em;
border: solid 1px var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-feedback .bp-icon {
background-color: var(--wp--preset--color--primary);
color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-feedback a {
border-bottom: solid 1px var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip {
border: none;
background: none;
top: -5px;
left: 0;
}
#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip .dashicons-dismiss {
border-radius: 50%;
width: 32px;
height: 32px;
color: var(--wp--preset--color--primary);
background: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo .bp-feedback button.bp-tooltip:hover .dashicons-dismiss {
color: var(--wp--preset--color--background);
background: var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo .bp-feedback.bp-sitewide-notice button.bp-tooltip {
top: 0;
left: 15px;
}
#buddypress.twentytwentytwo .bp-feedback.bp-sitewide-notice .bp-icon:before {
content: "\f16d";
}
#buddypress.twentytwentytwo #group-create-body .bp-cover-image-status p.warning {
background-color: var(--wp--preset--color--tertiary);
border: none;
border-right-width: 4px;
border-right-style: solid;
border-right-color: var(--wp--preset--color--luminous-vivid-orange);
color: var(--wp--preset--color--primary);
box-shadow: none;
}
body.buddypress .site #buddypress.twentytwentytwo .button.bp-tooltip:after {
content: attr(data-bp-tooltip);
word-wrap: break-word;
height: auto;
width: auto;
}
/**
*-------------------------------------------------------------------------------
* @section 9.0 - Layout classes
*-------------------------------------------------------------------------------
*/
#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li span {
background-color: var(--wp--preset--color--primary);
border-radius: 10%;
display: inline-block;
margin: 3px 0;
}
#buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li.selected span, #buddypress.twentytwentytwo.bp-single-vert-nav .bp-navs.vertical li.current span {
background-color: var(--wp--preset--color--background);
}
#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) {
background: var(--wp--preset--color--background);
border-right: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) {
background: transparent;
border-bottom: 1px solid var(--wp--preset--color--primary);
}
#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li a {
border: none;
text-decoration: none;
}
#buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.current, #buddypress.twentytwentytwo.bp-single-vert-nav .item-body:not(#group-create-body) #subnav:not(.tabbed-links) li.selected {
background-color: var(--wp--preset--color--primary);
margin: 0;
padding: 10px 0;
border-radius: 0;
}
#buddypress.twentytwentytwo .grid.bp-list {
border-top: none;
}
#buddypress.twentytwentytwo .grid > li {
border: none;
}
#buddypress.twentytwentytwo .grid > li .list-wrap {
border: 1px solid var(--wp--preset--color--primary);
background: transparent;
}
#buddypress.twentytwentytwo .grid > li:not(.mini) .item-avatar,
#buddypress.twentytwentytwo .grid > li .item-avatar {
margin-left: auto;
} | 0.453504 | 0.175679 |
body{
color: #000;
margin: 60px 20px 0px 20px;
}
.loader {
position: fixed;
width: 100%;
height: 100%;
z-index: 9999;
}
.navbar-brand{
font-family: 'Lobster', cursive;
font-size: 30px;
}
.nav-content{
margin: 0px 30px 0px 30px;
}
.nav-button a{
color: #1ABE00;
}
.nav-button{
margin: 0px 5px 0px 5px;
border-style: solid;
border-color: #1ABE00;
}
.nav-button:hover{
background-color: #1ABE00;
color: #fff;
}
.nav-button:hover a{
color: #FFFFFF;
}
#heading{
font-size: 300%;
text-align: center;
}
.fields{
height: 30px;
border-radius: 8%;
}
#heading1{
font-size: 35px;
}
#content-text{
font-size: 16px;
text-align: center;
}
.select-btn{
margin: 30px 10px 0px 10px;
text-align: center;
}
.twitter-btn{
border-style: solid;
border-color: #0084b4;
background-color: #FFFFFF;
color: #0084b4;
}
.tumblr-btn{
border-style: solid;
border-color: #34526f;
background-color: #ffffff;
color: #34526f;
}
.tumblr-btn:hover, .tumblr-btn.selected{
border-style: solid;
border-color: #ffffff;
background-color: #34526f;
color: #ffffff;
}
.everything-btn{
border-style: solid;
border-color: #00ff00;
background-color: azure;
color: #000000 ;
}
.everything-btn:hover, .everything-btn.selected{
border-style: solid;
border-color: #ffffff;
background-color: #00ff00;
color: #000000;
}
.twitter-btn:hover, .twitter-btn.selected{
border-style: solid;
border-color: #ffffff;
background-color: #0084b4;
color: #ffffff;
}
.reg-form{
background-color: #c2cbb6;
color: #000000;
margin-top: 7%;
text-align: center;
}
.navigation{
font-size: larger;
color: orangered;
}
.nav-pills{
border-radius: 5%;
background-color: transparent;
}
.nav-pills li{
border: 1px solid black;
border-radius: 5%;
}
.navbar-nav{
text-align: center;
display: inline;
}
.logout{
float: right;
margin-top: 3%;
background-color: #c9302c;
}
a:hover
{
color: #000000;
text-decoration: none;
}
a{
color: #000000;
}
.navbar-default{
background-color: #FFFFFF;
box-shadow: 2px 2px 5px #000000;
}
.active{
color: #000000;
}
.search-bar{
text-align: center;
margin-top: 20px;
}
#search-text{
background-color: #FFFFFF;
color: black;
border-radius: 5px;
}
.search-btn{
border-radius: 5px;
background-color: #FFFFFF;
}
.search-btn:hover{
background-color: #0084b4;
color: #FFFFFF;
}
.modal-title{
text-align: center;
}
@media screen and (min-width: 480px) {
.navbar-nav{
float: right;
}
} | twitter_snaps/static/css/home.css | body{
color: #000;
margin: 60px 20px 0px 20px;
}
.loader {
position: fixed;
width: 100%;
height: 100%;
z-index: 9999;
}
.navbar-brand{
font-family: 'Lobster', cursive;
font-size: 30px;
}
.nav-content{
margin: 0px 30px 0px 30px;
}
.nav-button a{
color: #1ABE00;
}
.nav-button{
margin: 0px 5px 0px 5px;
border-style: solid;
border-color: #1ABE00;
}
.nav-button:hover{
background-color: #1ABE00;
color: #fff;
}
.nav-button:hover a{
color: #FFFFFF;
}
#heading{
font-size: 300%;
text-align: center;
}
.fields{
height: 30px;
border-radius: 8%;
}
#heading1{
font-size: 35px;
}
#content-text{
font-size: 16px;
text-align: center;
}
.select-btn{
margin: 30px 10px 0px 10px;
text-align: center;
}
.twitter-btn{
border-style: solid;
border-color: #0084b4;
background-color: #FFFFFF;
color: #0084b4;
}
.tumblr-btn{
border-style: solid;
border-color: #34526f;
background-color: #ffffff;
color: #34526f;
}
.tumblr-btn:hover, .tumblr-btn.selected{
border-style: solid;
border-color: #ffffff;
background-color: #34526f;
color: #ffffff;
}
.everything-btn{
border-style: solid;
border-color: #00ff00;
background-color: azure;
color: #000000 ;
}
.everything-btn:hover, .everything-btn.selected{
border-style: solid;
border-color: #ffffff;
background-color: #00ff00;
color: #000000;
}
.twitter-btn:hover, .twitter-btn.selected{
border-style: solid;
border-color: #ffffff;
background-color: #0084b4;
color: #ffffff;
}
.reg-form{
background-color: #c2cbb6;
color: #000000;
margin-top: 7%;
text-align: center;
}
.navigation{
font-size: larger;
color: orangered;
}
.nav-pills{
border-radius: 5%;
background-color: transparent;
}
.nav-pills li{
border: 1px solid black;
border-radius: 5%;
}
.navbar-nav{
text-align: center;
display: inline;
}
.logout{
float: right;
margin-top: 3%;
background-color: #c9302c;
}
a:hover
{
color: #000000;
text-decoration: none;
}
a{
color: #000000;
}
.navbar-default{
background-color: #FFFFFF;
box-shadow: 2px 2px 5px #000000;
}
.active{
color: #000000;
}
.search-bar{
text-align: center;
margin-top: 20px;
}
#search-text{
background-color: #FFFFFF;
color: black;
border-radius: 5px;
}
.search-btn{
border-radius: 5px;
background-color: #FFFFFF;
}
.search-btn:hover{
background-color: #0084b4;
color: #FFFFFF;
}
.modal-title{
text-align: center;
}
@media screen and (min-width: 480px) {
.navbar-nav{
float: right;
}
} | 0.412175 | 0.085404 |
button {
padding: 4px 6px;
}
fieldset {
border: 1px solid #aaa;
}
.input-group-btn .btn-default .fa {
line-height: 20px;
}
.invisible {
visibility: hidden;
}
.hidden {
display: none;
}
.alert-hidden {
display: none;
}
.align-left {
float: left;
}
.align-right {
float: right;
}
.align-right label {
margin-right: 5px;
}
.align-right .dropdown-menu {
right: 0;
left: auto;
}
/* alert like 'hint' */
.hint {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
.hint h4 {
margin-top: 0;
color: inherit;
}
.hint .hint-link {
font-weight: bold;
}
.hint > p,
.hint > ul {
margin-bottom: 0;
}
.hint > p + p {
margin-top: 5px;
}
.hint {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.hint-success {
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
background-repeat: repeat-x;
border-color: #b2dba1;
}
.hint-info {
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
background-repeat: repeat-x;
border-color: #9acfea;
}
.hint-warning {
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
background-repeat: repeat-x;
border-color: #f5e79e;
}
.hint-danger {
background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
background-repeat: repeat-x;
border-color: #dca7a7;
}
/**/
.action-bar {
margin-right: 0;
padding: 5px;
}
.action-bar .btn span.label {
display: none;
}
.action-bar label {
margin: 0;
line-height: 30px;
color: #888;
}
.modal-body > .form-group:last-child {
margin-bottom: 0;
}
.modal-content > .widget-form {
margin-bottom: 0;
}
/**
* Checkbox
*/
.form-group.checkbox {
margin-top: 32px;
}
.checkbox-widget.form-control {
border: none;
box-shadow: none;
padding-left: 0;
}
.form-checkbox {
height: 59px;
padding-top: 23px;
margin-bottom: 5px;
}
.form-checkbox-col {
height: 36px;
margin-bottom: 5px;
}
/**
* Radio Group
*/
.radio-group-widget.form-control {
border: none;
border-radius: 0;
box-shadow: none;
padding: 6px 0;
}
.radio-group-widget > .radio-inline input[type=radio] {
width: 16px;
height: 16px;
margin-top: 1px;
font-size: 16px;
}
/**
* Text Field
*/
.text-field-widget {
}
/**
* Number Field
*/
.number-field-widget input {
text-align: right;
}
.number-field-widget .input-group-addon.spinner {
width: 19px;
padding: 0 !important;
}
.number-field-widget .input-group-addon .increment,
.number-field-widget .input-group-addon .decrement {
position: absolute;
height: 50%;
right: 0;
padding: 0 7px;
font-size: 10px;
line-height: 14px;
}
.number-field-widget .input-group-addon .increment {
top: 0;
padding-top: 2px;
}
.number-field-widget .input-group-addon .decrement {
bottom: 0;
}
/**
* Path Widget
*/
.path-widget button.glyphicon {
margin-top: -1px;
}
/**
* File Input
*/
.file-input .input-group button {
height: 34px;
}
.file-input .input-group button span {
line-height: 23px;
}
.file-input .file-preview-frame .file-actions {
display: none;
}
/**
* Multi Form Widget
*/
.multi-form-content {
overflow: visible; /* scroll; is truncating a possible typeahead (!) */
/* max-height: 360px; */
}
.multi-form-item {
position: relative;
display: inline-block;
width: 100%;
margin-bottom: 5px;
padding-left: 25px;
}
.multi-form-widget.readonly .multi-form-item {
padding-left: 0;
}
.multi-form-item.current {
}
.multi-form-item .item-select {
position: absolute;
top: 0;
left: 0;
width: 16px;
margin: 0;
box-shadow: none;
}
.multi-form-widget.readonly .multi-form-item .item-select {
display: none;
}
.multi-form-widget .action-bar,
.property-value-widget .action-bar {
padding-top: 2px;
padding-left: 25px;
border: none;
}
.multi-form-widget.readonly .action-bar,
.property-value-widget.readonly .action-bar {
display: none;
}
/**
* Split Pane
*/
.split-pane > .split-pane-divider:after {
font-family: FontAwesome;
position: absolute;
background: none;
font-size: 120%;
opacity: 0.4;
}
.split-pane.vertical-split > .split-pane-divider:after {
content: '\f141';
left: 50%;
top: 2px;
line-height: 15px;
}
.split-pane.horizontal-split > .split-pane-divider:after {
content: '\f142';
top: 50%;
left: 6px;
}
/**
* Tree
*/
.form-group .tree-panel {
position: relative;
top: 0;
left: 0;
min-height: 200px;
max-height: 350px;
overflow: auto;
width: 100%;
padding: 10px;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.jstree-contextmenu {
z-index: 1;
}
.jstree-proton-contextmenu li,
.jstree-proton-contextmenu li a,
.jstree-proton-contextmenu li a:hover {
border: none !important;
-moz-border-radius: 0 !important;
-webkit-border-radius: 0 !important;
border-radius: 0 !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
.jstree-node a {
position: relative;
}
.jstree-node.virtual > a,
.jstree-node.intermediate > a {
font-style: italic;
opacity: 0.7;
}
.jstree-node.virtual > a i::after,
.jstree-node.locked > a i::after {
position: absolute;
top: 5px;
left: -1px;
}
.jstree-node.locked > a i::after {
content: '\f023';
opacity: 0.7;
}
.jstree-node.checked-out > a::before {
font: normal normal normal 14px/1 FontAwesome;
position: absolute;
top: 8px;
left: 12px;
content: '\f040';
opacity: 0.6;
}
.jstree-node.virtual > a i::after {
content: '\f0c1';
opacity: 1;
}
.jstree-node.deep-lock > a i::after {
opacity: 1;
color: #777; /* mute */
}
.jstree-node.lock-holder > a i::after {
opacity: 1;
color: #a94442; /* danger */
}
.jstree-wholerow {
height: 23px;
margin-top: 2px; /* important gap for */
margin-bottom: 2px; /* DnD reordering */
}
.jstree-node .jstree-ocl {
margin: 1px 0;
}
.jstree-node .jstree-anchor {
margin: 2px 4px 2px 0;
}
.jstree-node .jstree-themeicon {
margin: 0 4px 0 0;
}
.jstree-dnd-parent {
border: 1px dashed rgba(50, 50, 50, 0.7);
}
.jstree-rename-input {
margin-top: -2px;
color: #000;
}
/**
* Dialogs
*/
.modal.dialog .lock-curtain {
display: block;
position: fixed;
top: 0;
left: 0;
content: '';
}
.modal.dialog .lock-curtain i {
display: none;
}
.modal.dialog.dialog-locked .lock-curtain {
content: ' ';
right: 0;
bottom: 0;
z-index: 1060;
pointer-events: all;
}
.modal.dialog.dialog-locked.dialog-busy .lock-curtain {
content: ' ';
background: rgba(0, 0, 0, 0.4);
color: rgba(255, 255, 255, 0.5);
text-align: center;
z-index: 1060;
}
.modal.dialog.dialog-locked.dialog-busy .lock-curtain i {
display: inline-block;
margin: 30%;
font-size: 100px;
}
.form-panel label span {
font-weight: normal;
margin-left: 5px;
}
.modal-dialog .form-group.cl,
.modal-dialog .modal-footer {
clear: both;
}
.modal-dialog .modal-header .close span {
font-size: 21px;
}
.modal-dialog button.modal-dialog_close {
position: absolute;
top: 10px;
right: 12px;
border: none;
padding: 5px;
background: transparent;
color: #aaa;
font-size: 22px;
}
.modal-dialog .modal-footer button.delete,
.modal-dialog .modal-footer button.button-left {
float: left;
}
.modal-dialog .form-group .checkbox-widget {
box-shadow: none;
max-height: 20px;
max-width: 20px;
}
.modal-dialog .modal-body .messages .panel-body {
max-height: 250px;
overflow: auto;
padding: 0 0 10px;
}
.modal-dialog .modal-body .messages .panel .panel-body {
padding: 10px;
}
.modal-dialog .modal-body .messages .panel-body ul {
list-style: none;
padding: 0;
}
.modal-dialog .modal-body .messages .panel-body li {
padding: 3px 5px;
margin-bottom: 3px;
}
.modal-dialog .modal-body .messages .label {
color: #333;
font-size: 100%;
font-weight: bold;
}
.modal-dialog .modal-body .messages .hint {
color: #777;
margin-left: 0.5rem;
}
#alert-dialog .modal-dialog .modal-body .messages .panel {
margin-bottom: 0;
}
/**
* dialog layers
*/
#alert-dialog.modal {
z-index: 4990;
}
#path-select-dialog.modal {
z-index: 4590;
} | commons/src/main/resources/root/libs/composum/nodes/commons/components/css/components.css |
button {
padding: 4px 6px;
}
fieldset {
border: 1px solid #aaa;
}
.input-group-btn .btn-default .fa {
line-height: 20px;
}
.invisible {
visibility: hidden;
}
.hidden {
display: none;
}
.alert-hidden {
display: none;
}
.align-left {
float: left;
}
.align-right {
float: right;
}
.align-right label {
margin-right: 5px;
}
.align-right .dropdown-menu {
right: 0;
left: auto;
}
/* alert like 'hint' */
.hint {
padding: 15px;
margin-bottom: 20px;
border: 1px solid transparent;
border-radius: 4px;
}
.hint h4 {
margin-top: 0;
color: inherit;
}
.hint .hint-link {
font-weight: bold;
}
.hint > p,
.hint > ul {
margin-bottom: 0;
}
.hint > p + p {
margin-top: 5px;
}
.hint {
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
-webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.hint-success {
background-image: -webkit-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
background-image: -o-linear-gradient(top, #dff0d8 0%, #c8e5bc 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#dff0d8), to(#c8e5bc));
background-image: linear-gradient(to bottom, #dff0d8 0%, #c8e5bc 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);
background-repeat: repeat-x;
border-color: #b2dba1;
}
.hint-info {
background-image: -webkit-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
background-image: -o-linear-gradient(top, #d9edf7 0%, #b9def0 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#d9edf7), to(#b9def0));
background-image: linear-gradient(to bottom, #d9edf7 0%, #b9def0 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);
background-repeat: repeat-x;
border-color: #9acfea;
}
.hint-warning {
background-image: -webkit-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
background-image: -o-linear-gradient(top, #fcf8e3 0%, #f8efc0 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#fcf8e3), to(#f8efc0));
background-image: linear-gradient(to bottom, #fcf8e3 0%, #f8efc0 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);
background-repeat: repeat-x;
border-color: #f5e79e;
}
.hint-danger {
background-image: -webkit-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
background-image: -o-linear-gradient(top, #f2dede 0%, #e7c3c3 100%);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f2dede), to(#e7c3c3));
background-image: linear-gradient(to bottom, #f2dede 0%, #e7c3c3 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);
background-repeat: repeat-x;
border-color: #dca7a7;
}
/**/
.action-bar {
margin-right: 0;
padding: 5px;
}
.action-bar .btn span.label {
display: none;
}
.action-bar label {
margin: 0;
line-height: 30px;
color: #888;
}
.modal-body > .form-group:last-child {
margin-bottom: 0;
}
.modal-content > .widget-form {
margin-bottom: 0;
}
/**
* Checkbox
*/
.form-group.checkbox {
margin-top: 32px;
}
.checkbox-widget.form-control {
border: none;
box-shadow: none;
padding-left: 0;
}
.form-checkbox {
height: 59px;
padding-top: 23px;
margin-bottom: 5px;
}
.form-checkbox-col {
height: 36px;
margin-bottom: 5px;
}
/**
* Radio Group
*/
.radio-group-widget.form-control {
border: none;
border-radius: 0;
box-shadow: none;
padding: 6px 0;
}
.radio-group-widget > .radio-inline input[type=radio] {
width: 16px;
height: 16px;
margin-top: 1px;
font-size: 16px;
}
/**
* Text Field
*/
.text-field-widget {
}
/**
* Number Field
*/
.number-field-widget input {
text-align: right;
}
.number-field-widget .input-group-addon.spinner {
width: 19px;
padding: 0 !important;
}
.number-field-widget .input-group-addon .increment,
.number-field-widget .input-group-addon .decrement {
position: absolute;
height: 50%;
right: 0;
padding: 0 7px;
font-size: 10px;
line-height: 14px;
}
.number-field-widget .input-group-addon .increment {
top: 0;
padding-top: 2px;
}
.number-field-widget .input-group-addon .decrement {
bottom: 0;
}
/**
* Path Widget
*/
.path-widget button.glyphicon {
margin-top: -1px;
}
/**
* File Input
*/
.file-input .input-group button {
height: 34px;
}
.file-input .input-group button span {
line-height: 23px;
}
.file-input .file-preview-frame .file-actions {
display: none;
}
/**
* Multi Form Widget
*/
.multi-form-content {
overflow: visible; /* scroll; is truncating a possible typeahead (!) */
/* max-height: 360px; */
}
.multi-form-item {
position: relative;
display: inline-block;
width: 100%;
margin-bottom: 5px;
padding-left: 25px;
}
.multi-form-widget.readonly .multi-form-item {
padding-left: 0;
}
.multi-form-item.current {
}
.multi-form-item .item-select {
position: absolute;
top: 0;
left: 0;
width: 16px;
margin: 0;
box-shadow: none;
}
.multi-form-widget.readonly .multi-form-item .item-select {
display: none;
}
.multi-form-widget .action-bar,
.property-value-widget .action-bar {
padding-top: 2px;
padding-left: 25px;
border: none;
}
.multi-form-widget.readonly .action-bar,
.property-value-widget.readonly .action-bar {
display: none;
}
/**
* Split Pane
*/
.split-pane > .split-pane-divider:after {
font-family: FontAwesome;
position: absolute;
background: none;
font-size: 120%;
opacity: 0.4;
}
.split-pane.vertical-split > .split-pane-divider:after {
content: '\f141';
left: 50%;
top: 2px;
line-height: 15px;
}
.split-pane.horizontal-split > .split-pane-divider:after {
content: '\f142';
top: 50%;
left: 6px;
}
/**
* Tree
*/
.form-group .tree-panel {
position: relative;
top: 0;
left: 0;
min-height: 200px;
max-height: 350px;
overflow: auto;
width: 100%;
padding: 10px;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.jstree-contextmenu {
z-index: 1;
}
.jstree-proton-contextmenu li,
.jstree-proton-contextmenu li a,
.jstree-proton-contextmenu li a:hover {
border: none !important;
-moz-border-radius: 0 !important;
-webkit-border-radius: 0 !important;
border-radius: 0 !important;
-moz-box-shadow: none !important;
-webkit-box-shadow: none !important;
box-shadow: none !important;
}
.jstree-node a {
position: relative;
}
.jstree-node.virtual > a,
.jstree-node.intermediate > a {
font-style: italic;
opacity: 0.7;
}
.jstree-node.virtual > a i::after,
.jstree-node.locked > a i::after {
position: absolute;
top: 5px;
left: -1px;
}
.jstree-node.locked > a i::after {
content: '\f023';
opacity: 0.7;
}
.jstree-node.checked-out > a::before {
font: normal normal normal 14px/1 FontAwesome;
position: absolute;
top: 8px;
left: 12px;
content: '\f040';
opacity: 0.6;
}
.jstree-node.virtual > a i::after {
content: '\f0c1';
opacity: 1;
}
.jstree-node.deep-lock > a i::after {
opacity: 1;
color: #777; /* mute */
}
.jstree-node.lock-holder > a i::after {
opacity: 1;
color: #a94442; /* danger */
}
.jstree-wholerow {
height: 23px;
margin-top: 2px; /* important gap for */
margin-bottom: 2px; /* DnD reordering */
}
.jstree-node .jstree-ocl {
margin: 1px 0;
}
.jstree-node .jstree-anchor {
margin: 2px 4px 2px 0;
}
.jstree-node .jstree-themeicon {
margin: 0 4px 0 0;
}
.jstree-dnd-parent {
border: 1px dashed rgba(50, 50, 50, 0.7);
}
.jstree-rename-input {
margin-top: -2px;
color: #000;
}
/**
* Dialogs
*/
.modal.dialog .lock-curtain {
display: block;
position: fixed;
top: 0;
left: 0;
content: '';
}
.modal.dialog .lock-curtain i {
display: none;
}
.modal.dialog.dialog-locked .lock-curtain {
content: ' ';
right: 0;
bottom: 0;
z-index: 1060;
pointer-events: all;
}
.modal.dialog.dialog-locked.dialog-busy .lock-curtain {
content: ' ';
background: rgba(0, 0, 0, 0.4);
color: rgba(255, 255, 255, 0.5);
text-align: center;
z-index: 1060;
}
.modal.dialog.dialog-locked.dialog-busy .lock-curtain i {
display: inline-block;
margin: 30%;
font-size: 100px;
}
.form-panel label span {
font-weight: normal;
margin-left: 5px;
}
.modal-dialog .form-group.cl,
.modal-dialog .modal-footer {
clear: both;
}
.modal-dialog .modal-header .close span {
font-size: 21px;
}
.modal-dialog button.modal-dialog_close {
position: absolute;
top: 10px;
right: 12px;
border: none;
padding: 5px;
background: transparent;
color: #aaa;
font-size: 22px;
}
.modal-dialog .modal-footer button.delete,
.modal-dialog .modal-footer button.button-left {
float: left;
}
.modal-dialog .form-group .checkbox-widget {
box-shadow: none;
max-height: 20px;
max-width: 20px;
}
.modal-dialog .modal-body .messages .panel-body {
max-height: 250px;
overflow: auto;
padding: 0 0 10px;
}
.modal-dialog .modal-body .messages .panel .panel-body {
padding: 10px;
}
.modal-dialog .modal-body .messages .panel-body ul {
list-style: none;
padding: 0;
}
.modal-dialog .modal-body .messages .panel-body li {
padding: 3px 5px;
margin-bottom: 3px;
}
.modal-dialog .modal-body .messages .label {
color: #333;
font-size: 100%;
font-weight: bold;
}
.modal-dialog .modal-body .messages .hint {
color: #777;
margin-left: 0.5rem;
}
#alert-dialog .modal-dialog .modal-body .messages .panel {
margin-bottom: 0;
}
/**
* dialog layers
*/
#alert-dialog.modal {
z-index: 4990;
}
#path-select-dialog.modal {
z-index: 4590;
} | 0.410756 | 0.165762 |
@import url("http://www.w3cplus.com/demo/css3/base.css");
@font-face {
font-family: 'sansationregular';
src: url('http://www.w3cplus.com/demo/css3/3DAnimationDropdownMenu/sansation_regular-webfont.eot');
src: url('http://www.w3cplus.com/demo/css3/3DAnimationDropdownMenu/sansation_regular-webfont.eot?#iefix') format('http://www.w3cplus.com/demo/css3/3DAnimationDropdownMenu/embedded-opentype'),
url('http://www.w3cplus.com/demo/css3/3DAnimationDropdownMenu/sansation_regular-webfont.woff') format('woff'),
url('http://www.w3cplus.com/demo/css3/3DAnimationDropdownMenu/sansation_regular-webfont.ttf') format('truetype'),
url('http://www.w3cplus.com/demo/css3/3DAnimationDropdownMenu/sansation_regular-webfont.svg#sansationregular') format('svg');
font-weight: normal;
font-style: normal;
}
body {
background-color:#edecec;
}
/* basic menu styles */
.nav-menu {
display: block;
background: #74adaa;
width:950px;
margin: 50px auto 150px;
}
.nav-menu > li {
display: inline;
float:left;
border-right:1px solid #94c0be;
}
.nav-menu > li:last-child {
border-right: none;
}
.nav-menu li a {
color: #fff;
display: block;
text-decoration: none;
font-family: 'sansationregular';
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
font-smoothing: antialiased;
text-transform: capitalize;
overflow: visible;
line-height: 20px;
font-size: 20px;
padding: 15px 30px 15px 31px;
}
/* animation domination */
.three-d {
-webkit-perspective: 200px;
-moz-perspective: 200px;
-ms-perspective: 200px;
-o-perspective: 200px;
perspective: 200px;
-webkit-transition: all .07s linear;
-moz-transition: all .07s linear;
-ms-transition: all .07s linear;
-o-transition: all .07s linear;
transition: all .07s linear;
position: relative;
}
.three-d:not(.active):hover {
cursor: pointer;
}
.three-d:not(.active):hover .three-d-box,
.three-d:not(.active):focus .three-d-box {
-wekbit-transform: translateZ(-25px) rotateX(90deg);
-moz-transform: translateZ(-25px) rotateX(90deg);
-o-transform: translateZ(-25px) rotateX(90deg);
-ms-transform: translateZ(-25px) rotateX(90deg);
transform: translateZ(-25px) rotateX(90deg);
}
.three-d-box {
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-ms-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out;
-webkit-transform: translatez(-25px);
-moz-transform: translatez(-25px);
-ms-transform: translatez(-25px);
-o-transform: translatez(-25px);
transform: translatez(-25px);
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-pointer-events: none;
-moz-pointer-events: none;
-ms-pointer-events: none;
-o-pointer-events: none;
pointer-events: none;
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
}
.front {
-webkit-transform: rotatex(0deg) translatez(25px);
-moz-transform: rotatex(0deg) translatez(25px);
-ms-transform: rotatex(0deg) translatez(25px);
-o-transform: rotatex(0deg) translatez(25px);
transform: rotatex(0deg) translatez(25px);
}
.back {
-webkit-transform: rotatex(-90deg) translatez(25px);
-moz-transform: rotatex(-90deg) translatez(25px);
-ms-transform: rotatex(-90deg) translatez(25px);
-o-transform: rotatex(-90deg) translatez(25px);
transform: rotatex(-90deg) translatez(25px);
color: #FFE7C4;
}
.front, .back {
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #74adaa;
padding: 15px 30px 15px 31px;
color: white;
-webkit-pointer-events: none;
-moz-pointer-events: none;
-ms-pointer-events: none;
-o-pointer-events: none;
pointer-events: none;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.nav-menu li .active .front,
.nav-menu li .active .back,
.nav-menu li a:hover .front,
.nav-menu li a:hover .back {
background-color: #51938f;
-webkit-background-size: 5px 5px;
background-size: 5px 5px;
background-position: 0 0, 30px 30px;
background-image: -webit-linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480), linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480);
background-image: -moz-linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480), linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480);
background-image: -ms-linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480), linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480);
background-image: -o-linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480), linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480);
background-image: linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480), linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480);
}
.nav-menu ul {
position: absolute;
text-align: left;
line-height: 40px;
font-size: 14px;
width: 200px;
-webkit-transition: all 0.3s ease-in;
-moz-transition: all 0.3s ease-in;
-ms-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
-webkit-transform-origin: 0px 0px;
-moz-transform-origin: 0px 0px;
-ms-transform-origin: 0px 0px;
-o-transform-origin: 0px 0px;
transform-origin: 0px 0px;
-webkit-transform: rotateX(-90deg);
-moz-transform: rotateX(-90deg);
-ms-transform: rotateX(-90deg);
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg);
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-o-backface-visibility: hidden;
backface-visibility: hidden;
}
.nav-menu > li:hover ul {
display: block;
-webkit-transform: rotateX(0deg);
-moz-transform: rotateX(0deg);
-ms-transform: rotateX(0deg);
-o-transform: rotateX(0deg);
transform: rotateX(0deg);
} | css/3d-navbar.css | @import url("http://www.w3cplus.com/demo/css3/base.css");
@font-face {
font-family: 'sansationregular';
src: url('http://www.w3cplus.com/demo/css3/3DAnimationDropdownMenu/sansation_regular-webfont.eot');
src: url('http://www.w3cplus.com/demo/css3/3DAnimationDropdownMenu/sansation_regular-webfont.eot?#iefix') format('http://www.w3cplus.com/demo/css3/3DAnimationDropdownMenu/embedded-opentype'),
url('http://www.w3cplus.com/demo/css3/3DAnimationDropdownMenu/sansation_regular-webfont.woff') format('woff'),
url('http://www.w3cplus.com/demo/css3/3DAnimationDropdownMenu/sansation_regular-webfont.ttf') format('truetype'),
url('http://www.w3cplus.com/demo/css3/3DAnimationDropdownMenu/sansation_regular-webfont.svg#sansationregular') format('svg');
font-weight: normal;
font-style: normal;
}
body {
background-color:#edecec;
}
/* basic menu styles */
.nav-menu {
display: block;
background: #74adaa;
width:950px;
margin: 50px auto 150px;
}
.nav-menu > li {
display: inline;
float:left;
border-right:1px solid #94c0be;
}
.nav-menu > li:last-child {
border-right: none;
}
.nav-menu li a {
color: #fff;
display: block;
text-decoration: none;
font-family: 'sansationregular';
-webkit-font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
font-smoothing: antialiased;
text-transform: capitalize;
overflow: visible;
line-height: 20px;
font-size: 20px;
padding: 15px 30px 15px 31px;
}
/* animation domination */
.three-d {
-webkit-perspective: 200px;
-moz-perspective: 200px;
-ms-perspective: 200px;
-o-perspective: 200px;
perspective: 200px;
-webkit-transition: all .07s linear;
-moz-transition: all .07s linear;
-ms-transition: all .07s linear;
-o-transition: all .07s linear;
transition: all .07s linear;
position: relative;
}
.three-d:not(.active):hover {
cursor: pointer;
}
.three-d:not(.active):hover .three-d-box,
.three-d:not(.active):focus .three-d-box {
-wekbit-transform: translateZ(-25px) rotateX(90deg);
-moz-transform: translateZ(-25px) rotateX(90deg);
-o-transform: translateZ(-25px) rotateX(90deg);
-ms-transform: translateZ(-25px) rotateX(90deg);
transform: translateZ(-25px) rotateX(90deg);
}
.three-d-box {
-webkit-transition: all .3s ease-out;
-moz-transition: all .3s ease-out;
-ms-transition: all .3s ease-out;
-o-transition: all .3s ease-out;
transition: all .3s ease-out;
-webkit-transform: translatez(-25px);
-moz-transform: translatez(-25px);
-ms-transform: translatez(-25px);
-o-transform: translatez(-25px);
transform: translatez(-25px);
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
-ms-transform-style: preserve-3d;
-o-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-pointer-events: none;
-moz-pointer-events: none;
-ms-pointer-events: none;
-o-pointer-events: none;
pointer-events: none;
position: absolute;
top: 0;
left: 0;
display: block;
width: 100%;
height: 100%;
}
.front {
-webkit-transform: rotatex(0deg) translatez(25px);
-moz-transform: rotatex(0deg) translatez(25px);
-ms-transform: rotatex(0deg) translatez(25px);
-o-transform: rotatex(0deg) translatez(25px);
transform: rotatex(0deg) translatez(25px);
}
.back {
-webkit-transform: rotatex(-90deg) translatez(25px);
-moz-transform: rotatex(-90deg) translatez(25px);
-ms-transform: rotatex(-90deg) translatez(25px);
-o-transform: rotatex(-90deg) translatez(25px);
transform: rotatex(-90deg) translatez(25px);
color: #FFE7C4;
}
.front, .back {
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: #74adaa;
padding: 15px 30px 15px 31px;
color: white;
-webkit-pointer-events: none;
-moz-pointer-events: none;
-ms-pointer-events: none;
-o-pointer-events: none;
pointer-events: none;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
.nav-menu li .active .front,
.nav-menu li .active .back,
.nav-menu li a:hover .front,
.nav-menu li a:hover .back {
background-color: #51938f;
-webkit-background-size: 5px 5px;
background-size: 5px 5px;
background-position: 0 0, 30px 30px;
background-image: -webit-linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480), linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480);
background-image: -moz-linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480), linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480);
background-image: -ms-linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480), linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480);
background-image: -o-linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480), linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480);
background-image: linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480), linear-gradient(45deg, #478480 25%, transparent 25%, transparent 75%, #478480 75%, #478480);
}
.nav-menu ul {
position: absolute;
text-align: left;
line-height: 40px;
font-size: 14px;
width: 200px;
-webkit-transition: all 0.3s ease-in;
-moz-transition: all 0.3s ease-in;
-ms-transition: all 0.3s ease-in;
-o-transition: all 0.3s ease-in;
transition: all 0.3s ease-in;
-webkit-transform-origin: 0px 0px;
-moz-transform-origin: 0px 0px;
-ms-transform-origin: 0px 0px;
-o-transform-origin: 0px 0px;
transform-origin: 0px 0px;
-webkit-transform: rotateX(-90deg);
-moz-transform: rotateX(-90deg);
-ms-transform: rotateX(-90deg);
-o-transform: rotateX(-90deg);
transform: rotateX(-90deg);
-webkit-backface-visibility: hidden;
-moz-backface-visibility: hidden;
-ms-backface-visibility: hidden;
-o-backface-visibility: hidden;
backface-visibility: hidden;
}
.nav-menu > li:hover ul {
display: block;
-webkit-transform: rotateX(0deg);
-moz-transform: rotateX(0deg);
-ms-transform: rotateX(0deg);
-o-transform: rotateX(0deg);
transform: rotateX(0deg);
} | 0.328637 | 0.051774 |
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
margin: 0;
padding: 0;
border: 0;
outline: 0; }
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0; }
.clearfix {
display: inline-block; }
html[xmlns] .clearfix {
display: block; }
* html .clearfix {
height: 1%; }
ul, li {
padding: 0;
margin: 0;
list-style: none; }
header, nav, section, article, aside, footer, hgroup {
display: block; }
* {
box-sizing: border-box; }
h1, h2, h3, h4, h5, h6 {
margin-top: 0px;
margin-bottom: 0px; }
ul {
margin-bottom: 0px; }
#jive-main {
padding-bottom:20px;
}
body, div, p, td, th {
font-family:arial,helvetica,sans-serif;
font-size:9pt;
}
body {
background-color:#FFFFFF;
color:#333333;
margin:0;
padding:0;
font-weight: 400;
-ms-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
color:#D76C0D;
text-decoration: none !important;
}
a:hover {
text-decoration:underline;
}
p {
margin-top:0;
}
fieldset div {
margin:10px;
padding:5px 3px 5px 0;
width:100%;
}
fieldset div .jive-table {
margin:0;
padding:0;
}
fieldset {
-moz-border-radius-bottomleft:3px;
-moz-border-radius-bottomright:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-topright:3px;
border:2px solid #CCCCCC;
width:95%;
}
fieldset legend {
color:#000000;
}
h1 {
color:#555555;
font-size:14pt;
margin:12px 0 15px;
padding:0;
}
h1 select {
color:#666666;
}
h2 {
font-size:11pt;
margin:18px 0 5px;
padding:0;
}
h3 {
font-size:10pt;
margin:18px 0 5px;
padding:0;
}
h4 {
font-size:10pt;
margin:8px 0 3px;
padding:0 0 4px;
}
h5 {
font-size:10pt;
margin:18px 0 -8px;
padding:0;
}
p {
margin-top:0;
}
ul {
margin:0;
padding:0 0 12px 26px;
}
hr {
background-color:#DCDCDC;
border:medium none;
height:1px;
width:100%;
}
form {
margin:0;
padding:0;
}
select, input {
font-family:verdana,arial,sans-serif;
font-size:8pt;
}
iframe {
border:1px solid #999999;
}
/* --------------------------------------------- */
/* Header */
/* --------------------------------------------- */
#jive-header {
clear:both;
float:left;
margin:0;
overflow:hidden;
padding:0;
width:100%;
}
#jive-logo-image {
color:#FFFFFF;
display:block;
left:0;
position:relative;
top:0;
}
#jive-logo-image_new {
background:transparent url(../images/header-title_new.gif) no-repeat scroll 0;
color:#FFFFFF;
display:block;
height:50px;
left:0;
overflow:hidden;
position:absolute;
top:0;
width:350px;
}
#jive-logo-image_new strong {
display:block;
margin:0 0 0 130px;
padding-top:23px;
position:relative;
}
#jive-secondary {
background-color:#EEEEEE;
border-bottom:1px solid #BBBBBB;
border-top:1px solid #CCCCCC;
padding:6px 6px 6px 12px;
}
#jive-header .info {
color:#FFFFFF;
display:block;
font-size:8pt;
padding:0;
position:absolute;
right:12px;
text-align:right;
top:10px;
width:220px;
}
#jive-header .info img {
margin:0 0 4px;
}
#jive-content {
padding:10px 20px 12px 32px;
}
/* name and logo image */
#jive-logo {
float:left;
height:76px;
overflow:hidden;
}
#jive-logo h1 {
clear:none;
color:#555555;
float:left;
font-size:14pt;
padding:0;
}
#jive-logo img {
border:medium none;
float:left;
padding-left:10px;
padding-top:7px;
}
/* version, login and site link */
#jive-userStatus {
color:#999999;
float:right;
font-size:8pt;
line-height:11pt;
margin:0;
padding:15px 15px 0 0;
text-align:right;
width:275px;
}
#jive-userStatus a {
font-weight:bold;
}
/* --------------------------------------------- */
/* Main nav */
/* --------------------------------------------- */
#jive-header #jive-nav {
background:#F7F7F7 url(../images/jive-nav-bg.gif) repeat-x scroll 0;
clear:both;
height:27px;
margin:0;
padding:0;
}
#jive-header #jive-nav-left, #jive-header #jive-nav-right {
height:27px;
width:15px;
}
#jive-header #jive-nav-left {
background:transparent url(../images/jive-nav-div.gif) no-repeat scroll right center;
float:left;
}
#jive-header #jive-nav-right {
float:right;
}
#jive-header #jive-nav ul {
list-style-type:none;
margin:0 0 0 5px;
padding:0;
}
#jive-header #jive-nav ul li {
background:transparent url(../images/jive-nav-div.gif) no-repeat scroll right center;
color:#FFFFFF;
float:left;
font-size:11pt;
margin:0;
padding:2px 2px 0 0;
}
#jive-header #jive-nav ul li a, #jive-header #jive-nav ul li a:visited {
color:#333333;
font-size:10pt;
font-weight:bold;
margin:0;
padding:4px 13px;
text-decoration:none;
}
#jive-header #jive-nav ul li a:hover, #jive-header #jive-nav ul li a:active {
background:transparent url(../images/jive-nav-bg-over.gif) repeat-x scroll right center;
text-decoration:underline;
}
#jive-header #jive-nav ul li.currentlink a, #jive-header #jive-nav ul li.currentlink a:visited, #jive-header #jive-nav ul li.currentlink a:active, #jive-header #jive-nav ul li.currentlink a:hover {
background:transparent url(../images/jive-nav-bg-on.gif) repeat-x scroll right center;
color:#FFFFFF;
}
/* Subnav */
#jive-subnav {
background:#F7F7F7 url(../images/jive-subnav-bg.gif) repeat-x scroll 0;
clear:both;
height:28px;
margin:0;
padding:0;
width:100%;
}
#jive-subnav .subnav-community {
background:#F7F7F7 url(../images/jive-subnav-bg.gif) repeat-x scroll 100px 50%;
}
#jive-subnav ul {
list-style-type:none;
margin:0 0 0 13px;
padding:0;
}
#jive-subnav ul li {
background:transparent url(../images/jive-subnav-div.gif) no-repeat scroll right center;
color:#FFFFFF;
float:left;
font-size:11pt;
margin:4px 0 0 0;
padding:0 1px 2px 0;
}
#jive-subnav ul li a, #jive-subnav ul li a:visited {
font-family:verdana,sans-serif;
font-size:8pt;
font-weight:bold;
margin:0;
padding:3px 15px;
text-decoration:none;
}
#jive-subnav ul li a:hover, #jive-subnav ul li a:active {
background-color:#E3E3E3;
text-decoration:underline;
}
#jive-subnav ul li.current a, #jive-subnav ul li.current a:visited {
background-color:#F9F9F9;
border-color:#cecece;
border-style:solid;
margin:0;
padding:3px 15px 4px 15px;
border: 0;
}
#jive-subnav ul li.current a:hover, #jive-subnav ul li.current a:active {
background-color:#F9F9F9;
text-decoration:underline;
border: 0;
}
/* --------------------------------------------- */
/* Logviewer tabs */
/* --------------------------------------------- */
#logviewer td {
font-family:verdana,sans-serif;
font-size:8pt;
}
#logviewer .jive-tab, .jive-tab-active {
background-color:#DDDDDD;
border:1px solid #CCCCCC;
padding:4px 1em;
white-space:nowrap;
}
#logviewer .jive-tab-active {
background-color:#FFFFFF;
border-bottom:1px solid #FFFFFF;
}
#logviewer .jive-spacer, .jive-stretch {
border-bottom:1px solid #CCCCCC;
}
#logviewer .jive-tab a, #logviewer .jive-tab-active a {
color:#000000;
font-weight:bold;
text-decoration:none;
}
#logviewer .jive-tab a:hover, #logviewer .jive-tab-active a:hover {
text-decoration:underline;
}
/* --------------------------------------------- */
/* Titles */
/* --------------------------------------------- */
#jive-main #jive-title {
font-size:12pt;
font-weight:bold;
padding-bottom:1em;
}
/* --------------------------------------------- */
/* Breadcrumbs */
/* --------------------------------------------- */
#jive-main #jive-breadcrumbs {
font-family:verdana,sans-serif;
font-size:8pt;
padding-top:2px;
white-space:nowrap;
}
#jive-main #jive-breadcrumbs a {
color:#000000;
text-decoration:none;
}
#jive-main #jive-breadcrumbs a:hover {
color:#000000;
text-decoration:underline;
}
/* --------------------------------------------- */
/* Sidebar */
/* --------------------------------------------- */
#jive-main {
background:#FFFFFF url(../images/jive-body-bg.gif) repeat-x scroll center top;
clear:both;
display:block;
float:left;
margin:0;
padding:0;
position:relative;
width:100%;
}
#jive-sidebar-container {
float:left;
font-size:9pt;
margin:0;
overflow:hidden;
padding:0;
width:200px;
}
#jive-sidebar-box {
margin:0;
overflow:hidden;
padding:0;
width:200px;
background-color: #f9f9f9;
}
#jive-sidebar {
background:transparent url(../images/jive-tertnav-top.gif) no-repeat scroll right top;
margin-bottom:12px;
padding-top:0;
}
#jive-sidebar ul {
-moz-border-radius-bottomleft:0;
-moz-border-radius-bottomright:5px;
-moz-border-radius-topleft:0;
-moz-border-radius-topright:0;
border-bottom:1px solid #E6E6E6;
border-right:1px solid #E6E6E6;
list-style-type:none;
margin:0 5px 0 0;
padding:8px 22px 15px;
}
#jive-sidebar ul li {
border-bottom:1px solid #e6e6e6;
padding:0;
border-top:1px solid #f9f9f9;
}
#jive-sidebar ul li a {
color:#777;
display:block;
padding:4px 0 4px 10px;
text-decoration:none;
}
#jive-sidebar ul li a:link, #jive-sidebar ul li a:visited {
color:#444444;
text-decoration:none;
}
#jive-sidebar ul li a:hover {
text-decoration:underline;
}
#jive-sidebar ul li.currentlink {
background:transparent url(../images/jive-tertnav-arrow.gif) no-repeat scroll left center;
font-weight:bold;
}
#jive-sidebar ul.subitems {
background-color:#f9f9f9;
border-top: 1.0px solid #f9f9f9;
border-bottom: 1.0px solid #f9f9f9;
border-right:0;
list-style-type:none;
padding:0 0 0 10px;
margin:1px 0 1px 0;
}
#jive-sidebar ul.subitems li {
border-top:1px solid #e6e6e6;
border-bottom: 1.0px solid #f9f9f9;
padding:0;
}
#jive-sidebar ul.subitems li.category {
border-top: 1.0px solid #f9f9f9;
color:#777;
font-weight:bold;
padding:4px 0;
}
#jive-sidebar ul.subitems li a {
color:#777;
display:block;
padding:4px 0 4px 10px;
text-decoration:none;
}
#jive-sidebar ul.subitems li a:hover {
text-decoration:underline;
}
#jive-sidebar ul.subitems li.currentlink a, #jive-sidebar ul.subitems li.currentlink a:visited, #jive-sidebar ul.subitems li.currentlink a:hover {
background:transparent url(../images/jive-tertnav-arrow.gif) no-repeat scroll left center;
color:#555555;
font-weight:bold;
text-decoration:none;
}
/* --------------------------------------------- */
/* Tasks */
/* --------------------------------------------- */
#jive-runningtask {
margin-left:1em;
}
/* --------------------------------------------- */
/* Back link */
/* --------------------------------------------- */
a.jive-link-back {
font-size:9pt;
}
a.jive-link-back span {
font-size:10pt;
}
/* --------------------------------------------- */
/* Edit & Delete links */
/* --------------------------------------------- */
a.jive-link-edit, a.jive-link-delete {
display:block;
font-size:8pt;
margin:3px 5px 6px 0;
padding-left:19px;
}
a.jive-link-edit {
background:transparent url(../images/edit-16x16.gif) no-repeat scroll left center;
}
a.jive-link-delete {
background:transparent url(../images/delete-16x16.gif) no-repeat scroll left center;
}
/* --------------------------------------------- */
/* Hoizontal Rule */
/* --------------------------------------------- */
.jive-horizontalRule {
background-color:#DCDCDC;
height:1px;
margin:20px 0 10px;
overflow:hidden;
padding:0;
}
/* --------------------------------------------- */
/* Older styles */
/* --------------------------------------------- */
pre, tt {
font-family:courier new,monospace;
font-size:10pt;
}
/* Messages - errors, success and info */
.jive-error table, .jive-warning table, .jive-info table, .jive-success table {
border:1px solid #CCCCCC;
}
.jive-error td, .jive-warning td, .jive-info td, .jive-success td {
padding:3px;
vertical-align:top;
}
.jive-error-text, .jive-error .jive-icon-label, .jive-error-text a, .jive-error .jive-icon-label a {
color:#FF0000;
}
.jive-warning-text, .jive-warning .jive-icon-label, .jive-warning-text a, .jive-warning-text .jive-icon-label a {
color: #FF6C0D;
}
.jive-success-text, .jive-success .jive-icon-label, .jive-success-text a, .jive-success .jive-icon-label a {
color:#009900;
}
.jive-info-text, .jive-info .jive-icon-label, .jive-info-text a, .jive-info .jive-icon-label a {
color:#330066;
}
/* tables */
.jive-table {
border-color:#CCCCCC;
border-style:solid;
border-width:1px 1px 0;
}
.jive-table .c1, fieldset .c1 {
width:30%;
}
.jive-table th, .jive-table td, .jive-option-table th, .jive-option-table td {
padding:6px;
}
.jive-table th th, .jive-table td td {
padding:0;
}
.jive-table td.icon {
padding:0 5px 0 3px;
}
.jive-table th {
background-color:#EEEEEE;
border-bottom:1px solid #CCCCCC;
font-family:verdana,arial,helvetica,sans-serif;
font-size:8pt;
font-weight:bold;
text-align:left;
}
.jive-table th table th {
border-bottom:medium none;
border-right:medium none;
}
.jive-table th table th a {
color:#000000;
text-decoration:none;
}
.jive-table tr td {
border-bottom:1px solid #E3E3E3;
}
.jive-table td {
font-family:arial,helvetica,sans-serif;
font-size:10pt;
}
.jive-table .jive-odd td {
background-color:#FFFFFF;
}
.jive-table .jive-even td {
background-color:#FBFBFB;
}
.jive-table .jive-highlight td {
background-color:#FFFFCC;
}
.jive-table tfoot td {
background-color:#EEEEEE;
border-bottom:1px solid #CCCCCC;
font-family:verdana,arial,helvetica,sans-serif;
font-size:8pt;
}
.jive-table td td {
border-width:0;
}
.jive-table input, .jive-table select, .jive-option-table input, .jive-option-table select {
font-family:verdana,arial,helvetica,sans-serif;
font-size:8pt;
}
.jive-description, .jive-description a, .jive-table .jive-date, .jive-description input, .jive-description select {
font-family:arial,helvetica,sans-serif;
font-size:8pt;
}
.jive-label, .jive-option-table label {
font-weight:bold;
padding-right:10px;
white-space:nowrap;
}
.jive-label {
padding-right:20px;
vertical-align:top;
}
.jive-buttons .jive-icon {
padding:3px;
}
.jive-buttons .jive-icon-label {
font-family:verdana,arial,helvetica,sans-serif;
font-size:8pt;
padding:3px 1em 3px 3px;
white-space:nowrap;
}
/* --------------------------------------------- */
/* Calendar styles */
/* --------------------------------------------- */
table.calBgColor {
padding:0;
}
td.cal {
background-color:#FFFFFF;
color:#000000;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
padding:0;
}
select.month {
background:transparent none repeat scroll 0;
color:#000000;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
width:85px;
}
input.year {
background:transparent none repeat scroll 0;
color:#000000;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
width:30px;
}
td.calDaysColor {
background-color:#000000;
color:#FFFFFF;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
}
td.calWeekend {
background-color:#D3D3D3;
color:#FFFFFF;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
}
td.calBgColor {
background-color:#FFFFCC;
color:#FFFFFF;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
}
.calBorderColor {
background-color:#A9A9A9;
color:#FFFFFF;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
}
td.calHighlightColor {
background-color:#FFFFCC;
color:#FFFFFF;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
}
a.cal {
background:transparent none repeat scroll 0;
color:#000000;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
text-decoration:none;
}
a.cal:hover {
background:transparent none repeat scroll 0;
color:#FF0000;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
text-decoration:none;
}
.calDisabled {
background:transparent none repeat scroll 0;
color:#808080;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
text-decoration:none;
}
/* --------------------------------------------- */
/* Quote original styles */
/* --------------------------------------------- */
.jive-quoteheader {
font-weight:bold;
margin-left:15px;
width:90%;
}
.jive-quote {
background-color:#FAFAFA;
border:1px solid #D1D7DC;
color:#444444;
margin-left:15px;
width:90%;
}
.success {
-moz-border-radius-bottomleft:3px;
-moz-border-radius-bottomright:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-topright:3px;
background-color:#CDF6CD;
background-image:url(../images/success-16x16.gif);
background-position:5px;
background-repeat:no-repeat;
border:1px solid #029B00;
color:#006600;
font-weight:bold;
margin-bottom:20px;
margin-top:10px;
padding:5px 5px 5px 28px;
}
.error {
-moz-border-radius-bottomleft:3px;
-moz-border-radius-bottomright:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-topright:3px;
background-color:#EDB9B1;
background-image:url(../images/error-16x16.gif);
background-position:5px;
background-repeat:no-repeat;
border:1px solid #BB8888;
color:#990000;
font-weight:bold;
margin-bottom:20px;
margin-top:10px;
padding:5px 5px 5px 28px;
}
.warning {
-moz-border-radius-bottomleft:3px;
-moz-border-radius-bottomright:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-topright:3px;
background-color:#FFE9B2;
background-image:url(../images/icon_warning-small.gif);
background-position:5px;
background-repeat:no-repeat;
border:1px solid #D9B04C;
color:#915A15;
font-weight:bold;
margin-bottom:20px;
margin-top:10px;
padding:5px 5px 5px 28px;
}
/* --------------------------------------------- */
/* Content Box */
/* --------------------------------------------- */
.jive-contentBox {
-moz-border-radius-bottomleft:4px;
-moz-border-radius-bottomright:4px;
-moz-border-radius-topleft:0;
-moz-border-radius-topright:0;
background-color:#FFFFFF;
border:1px solid #CCCCCC;
display:block;
margin:0 0 20px;
padding:12px 10px;
}
.jive-contentBoxHeader {
background-color:#EEEEEE;
border-color:#CCCCCC rgb(204, 204, 204);
border-style:solid solid none;
border-width:1px 1px medium;
display:block;
font-size:9pt;
font-weight:bold;
margin:8px 0 0;
padding:4px 4px 4px 6px;
}
.jive-contentBoxGrey {
background-color:#F9F9F9;
}
.jive-contentBox h3 {
color:#555555;
font-size:10pt;
margin:0;
padding:0 0 5px;
}
.jive-contentBox h4 {
background-color:#FCFCFC;
border:1px solid #E9E9E9;
color:#555555;
font-size:10pt;
margin:0 0 4px;
padding:3px 0 3px 4px;
}
.jive-contentBox form {
margin:0;
padding:0;
}
.jive-contentBox table {
margin:0;
padding:0;
}
.jive-contentBox table td {
padding:2px;
}
.jive-contentBox table th {
background-color:#eeeeee;
padding:4px;
}
th.jive-table-th-center {
text-align:center;
}
.jive-contentBox table td.jive-formLabel {
color:#555555;
font-weight:bold;
padding-right:5px;
text-align:right;
white-space:nowrap;
}
.jive-contentBox-toolbox {
float:right;
margin-left:20px;
}
.jive-contentBox-plain {
display:block;
margin:0 0 5px;
padding:12px 0;
}
.jive-contentBox-plain h3 {
color:#555555;
font-size:14pt;
margin:2px 0;
}
.jive-contentBox-plain p {
font-size:9pt;
margin:0 0 10px;
}
/* --------------------------------------------- */
/* Roster box (in Group Settings page) */
/* --------------------------------------------- */
#jive-roster {
-moz-border-radius-bottomleft:4px;
-moz-border-radius-bottomright:4px;
-moz-border-radius-topleft:4px;
-moz-border-radius-topright:4px;
background-color:#F9F9F9;
border:1px solid #DCDCDC;
display:block;
font-size:9pt;
margin:3px 0 4px;
padding:12px;
width:390px;
}
#jive-roster b {
color:#555555;
display:block;
font-size:8pt;
padding:0 0 3px;
}
/* --------------------------------------------- */
/* Footer */
/* --------------------------------------------- */
#jive-footer {
border-top:1px solid #DCDCDC;
clear:both;
color:#666666;
font-size:8pt;
margin:10px 0 0;
padding:5px 0 40px;
width:100%;
}
.jive-footer-nav {
float:left;
padding-left:5px;
}
.jive-footer-nav a {
padding:0 5px;
}
.jive-footer-copyright {
float:right;
padding-right:12px;
}
#footer {
background-image:url(../images/page-background_new.gif);
background-repeat:repeat-y;
height:30px;
margin-top:-30px;
position:relative;
width:100%;
}
#footer_padding {
padding-left:165px;
text-align:center;
}
#footer_content {
background-color:#F9F9F9;
border-color:#E6E6E6 rgb(179, 211, 244);
border-style:solid solid none;
border-width:1px 1px medium;
font-size:8pt;
height:29px;
margin:0 auto;
padding:0;
width:500px;
}
#footer_content span {
display:block;
padding:7px;
}
.jive-current {
font-weight : bold;
text-decoration : none;
}
/* --------------------------------------------- */
/* Main content */
/* --------------------------------------------- */
#jive-main-content {
-moz-border-radius-bottomleft:4px;
-moz-border-radius-bottomright:4px;
-moz-border-radius-topleft:4px;
-moz-border-radius-topright:4px;
background:#F5F5F5 url(../images/jive-body-contentbox-bg.gif) repeat-x scroll center top;
border:1px solid #DCDCDC;
margin:15px 0 20px 0;
padding:18px 20px;
width: 95%;
} | xmppserver/src/main/webapp/style/global.css | html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
margin: 0;
padding: 0;
border: 0;
outline: 0; }
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0; }
.clearfix {
display: inline-block; }
html[xmlns] .clearfix {
display: block; }
* html .clearfix {
height: 1%; }
ul, li {
padding: 0;
margin: 0;
list-style: none; }
header, nav, section, article, aside, footer, hgroup {
display: block; }
* {
box-sizing: border-box; }
h1, h2, h3, h4, h5, h6 {
margin-top: 0px;
margin-bottom: 0px; }
ul {
margin-bottom: 0px; }
#jive-main {
padding-bottom:20px;
}
body, div, p, td, th {
font-family:arial,helvetica,sans-serif;
font-size:9pt;
}
body {
background-color:#FFFFFF;
color:#333333;
margin:0;
padding:0;
font-weight: 400;
-ms-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
a {
color:#D76C0D;
text-decoration: none !important;
}
a:hover {
text-decoration:underline;
}
p {
margin-top:0;
}
fieldset div {
margin:10px;
padding:5px 3px 5px 0;
width:100%;
}
fieldset div .jive-table {
margin:0;
padding:0;
}
fieldset {
-moz-border-radius-bottomleft:3px;
-moz-border-radius-bottomright:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-topright:3px;
border:2px solid #CCCCCC;
width:95%;
}
fieldset legend {
color:#000000;
}
h1 {
color:#555555;
font-size:14pt;
margin:12px 0 15px;
padding:0;
}
h1 select {
color:#666666;
}
h2 {
font-size:11pt;
margin:18px 0 5px;
padding:0;
}
h3 {
font-size:10pt;
margin:18px 0 5px;
padding:0;
}
h4 {
font-size:10pt;
margin:8px 0 3px;
padding:0 0 4px;
}
h5 {
font-size:10pt;
margin:18px 0 -8px;
padding:0;
}
p {
margin-top:0;
}
ul {
margin:0;
padding:0 0 12px 26px;
}
hr {
background-color:#DCDCDC;
border:medium none;
height:1px;
width:100%;
}
form {
margin:0;
padding:0;
}
select, input {
font-family:verdana,arial,sans-serif;
font-size:8pt;
}
iframe {
border:1px solid #999999;
}
/* --------------------------------------------- */
/* Header */
/* --------------------------------------------- */
#jive-header {
clear:both;
float:left;
margin:0;
overflow:hidden;
padding:0;
width:100%;
}
#jive-logo-image {
color:#FFFFFF;
display:block;
left:0;
position:relative;
top:0;
}
#jive-logo-image_new {
background:transparent url(../images/header-title_new.gif) no-repeat scroll 0;
color:#FFFFFF;
display:block;
height:50px;
left:0;
overflow:hidden;
position:absolute;
top:0;
width:350px;
}
#jive-logo-image_new strong {
display:block;
margin:0 0 0 130px;
padding-top:23px;
position:relative;
}
#jive-secondary {
background-color:#EEEEEE;
border-bottom:1px solid #BBBBBB;
border-top:1px solid #CCCCCC;
padding:6px 6px 6px 12px;
}
#jive-header .info {
color:#FFFFFF;
display:block;
font-size:8pt;
padding:0;
position:absolute;
right:12px;
text-align:right;
top:10px;
width:220px;
}
#jive-header .info img {
margin:0 0 4px;
}
#jive-content {
padding:10px 20px 12px 32px;
}
/* name and logo image */
#jive-logo {
float:left;
height:76px;
overflow:hidden;
}
#jive-logo h1 {
clear:none;
color:#555555;
float:left;
font-size:14pt;
padding:0;
}
#jive-logo img {
border:medium none;
float:left;
padding-left:10px;
padding-top:7px;
}
/* version, login and site link */
#jive-userStatus {
color:#999999;
float:right;
font-size:8pt;
line-height:11pt;
margin:0;
padding:15px 15px 0 0;
text-align:right;
width:275px;
}
#jive-userStatus a {
font-weight:bold;
}
/* --------------------------------------------- */
/* Main nav */
/* --------------------------------------------- */
#jive-header #jive-nav {
background:#F7F7F7 url(../images/jive-nav-bg.gif) repeat-x scroll 0;
clear:both;
height:27px;
margin:0;
padding:0;
}
#jive-header #jive-nav-left, #jive-header #jive-nav-right {
height:27px;
width:15px;
}
#jive-header #jive-nav-left {
background:transparent url(../images/jive-nav-div.gif) no-repeat scroll right center;
float:left;
}
#jive-header #jive-nav-right {
float:right;
}
#jive-header #jive-nav ul {
list-style-type:none;
margin:0 0 0 5px;
padding:0;
}
#jive-header #jive-nav ul li {
background:transparent url(../images/jive-nav-div.gif) no-repeat scroll right center;
color:#FFFFFF;
float:left;
font-size:11pt;
margin:0;
padding:2px 2px 0 0;
}
#jive-header #jive-nav ul li a, #jive-header #jive-nav ul li a:visited {
color:#333333;
font-size:10pt;
font-weight:bold;
margin:0;
padding:4px 13px;
text-decoration:none;
}
#jive-header #jive-nav ul li a:hover, #jive-header #jive-nav ul li a:active {
background:transparent url(../images/jive-nav-bg-over.gif) repeat-x scroll right center;
text-decoration:underline;
}
#jive-header #jive-nav ul li.currentlink a, #jive-header #jive-nav ul li.currentlink a:visited, #jive-header #jive-nav ul li.currentlink a:active, #jive-header #jive-nav ul li.currentlink a:hover {
background:transparent url(../images/jive-nav-bg-on.gif) repeat-x scroll right center;
color:#FFFFFF;
}
/* Subnav */
#jive-subnav {
background:#F7F7F7 url(../images/jive-subnav-bg.gif) repeat-x scroll 0;
clear:both;
height:28px;
margin:0;
padding:0;
width:100%;
}
#jive-subnav .subnav-community {
background:#F7F7F7 url(../images/jive-subnav-bg.gif) repeat-x scroll 100px 50%;
}
#jive-subnav ul {
list-style-type:none;
margin:0 0 0 13px;
padding:0;
}
#jive-subnav ul li {
background:transparent url(../images/jive-subnav-div.gif) no-repeat scroll right center;
color:#FFFFFF;
float:left;
font-size:11pt;
margin:4px 0 0 0;
padding:0 1px 2px 0;
}
#jive-subnav ul li a, #jive-subnav ul li a:visited {
font-family:verdana,sans-serif;
font-size:8pt;
font-weight:bold;
margin:0;
padding:3px 15px;
text-decoration:none;
}
#jive-subnav ul li a:hover, #jive-subnav ul li a:active {
background-color:#E3E3E3;
text-decoration:underline;
}
#jive-subnav ul li.current a, #jive-subnav ul li.current a:visited {
background-color:#F9F9F9;
border-color:#cecece;
border-style:solid;
margin:0;
padding:3px 15px 4px 15px;
border: 0;
}
#jive-subnav ul li.current a:hover, #jive-subnav ul li.current a:active {
background-color:#F9F9F9;
text-decoration:underline;
border: 0;
}
/* --------------------------------------------- */
/* Logviewer tabs */
/* --------------------------------------------- */
#logviewer td {
font-family:verdana,sans-serif;
font-size:8pt;
}
#logviewer .jive-tab, .jive-tab-active {
background-color:#DDDDDD;
border:1px solid #CCCCCC;
padding:4px 1em;
white-space:nowrap;
}
#logviewer .jive-tab-active {
background-color:#FFFFFF;
border-bottom:1px solid #FFFFFF;
}
#logviewer .jive-spacer, .jive-stretch {
border-bottom:1px solid #CCCCCC;
}
#logviewer .jive-tab a, #logviewer .jive-tab-active a {
color:#000000;
font-weight:bold;
text-decoration:none;
}
#logviewer .jive-tab a:hover, #logviewer .jive-tab-active a:hover {
text-decoration:underline;
}
/* --------------------------------------------- */
/* Titles */
/* --------------------------------------------- */
#jive-main #jive-title {
font-size:12pt;
font-weight:bold;
padding-bottom:1em;
}
/* --------------------------------------------- */
/* Breadcrumbs */
/* --------------------------------------------- */
#jive-main #jive-breadcrumbs {
font-family:verdana,sans-serif;
font-size:8pt;
padding-top:2px;
white-space:nowrap;
}
#jive-main #jive-breadcrumbs a {
color:#000000;
text-decoration:none;
}
#jive-main #jive-breadcrumbs a:hover {
color:#000000;
text-decoration:underline;
}
/* --------------------------------------------- */
/* Sidebar */
/* --------------------------------------------- */
#jive-main {
background:#FFFFFF url(../images/jive-body-bg.gif) repeat-x scroll center top;
clear:both;
display:block;
float:left;
margin:0;
padding:0;
position:relative;
width:100%;
}
#jive-sidebar-container {
float:left;
font-size:9pt;
margin:0;
overflow:hidden;
padding:0;
width:200px;
}
#jive-sidebar-box {
margin:0;
overflow:hidden;
padding:0;
width:200px;
background-color: #f9f9f9;
}
#jive-sidebar {
background:transparent url(../images/jive-tertnav-top.gif) no-repeat scroll right top;
margin-bottom:12px;
padding-top:0;
}
#jive-sidebar ul {
-moz-border-radius-bottomleft:0;
-moz-border-radius-bottomright:5px;
-moz-border-radius-topleft:0;
-moz-border-radius-topright:0;
border-bottom:1px solid #E6E6E6;
border-right:1px solid #E6E6E6;
list-style-type:none;
margin:0 5px 0 0;
padding:8px 22px 15px;
}
#jive-sidebar ul li {
border-bottom:1px solid #e6e6e6;
padding:0;
border-top:1px solid #f9f9f9;
}
#jive-sidebar ul li a {
color:#777;
display:block;
padding:4px 0 4px 10px;
text-decoration:none;
}
#jive-sidebar ul li a:link, #jive-sidebar ul li a:visited {
color:#444444;
text-decoration:none;
}
#jive-sidebar ul li a:hover {
text-decoration:underline;
}
#jive-sidebar ul li.currentlink {
background:transparent url(../images/jive-tertnav-arrow.gif) no-repeat scroll left center;
font-weight:bold;
}
#jive-sidebar ul.subitems {
background-color:#f9f9f9;
border-top: 1.0px solid #f9f9f9;
border-bottom: 1.0px solid #f9f9f9;
border-right:0;
list-style-type:none;
padding:0 0 0 10px;
margin:1px 0 1px 0;
}
#jive-sidebar ul.subitems li {
border-top:1px solid #e6e6e6;
border-bottom: 1.0px solid #f9f9f9;
padding:0;
}
#jive-sidebar ul.subitems li.category {
border-top: 1.0px solid #f9f9f9;
color:#777;
font-weight:bold;
padding:4px 0;
}
#jive-sidebar ul.subitems li a {
color:#777;
display:block;
padding:4px 0 4px 10px;
text-decoration:none;
}
#jive-sidebar ul.subitems li a:hover {
text-decoration:underline;
}
#jive-sidebar ul.subitems li.currentlink a, #jive-sidebar ul.subitems li.currentlink a:visited, #jive-sidebar ul.subitems li.currentlink a:hover {
background:transparent url(../images/jive-tertnav-arrow.gif) no-repeat scroll left center;
color:#555555;
font-weight:bold;
text-decoration:none;
}
/* --------------------------------------------- */
/* Tasks */
/* --------------------------------------------- */
#jive-runningtask {
margin-left:1em;
}
/* --------------------------------------------- */
/* Back link */
/* --------------------------------------------- */
a.jive-link-back {
font-size:9pt;
}
a.jive-link-back span {
font-size:10pt;
}
/* --------------------------------------------- */
/* Edit & Delete links */
/* --------------------------------------------- */
a.jive-link-edit, a.jive-link-delete {
display:block;
font-size:8pt;
margin:3px 5px 6px 0;
padding-left:19px;
}
a.jive-link-edit {
background:transparent url(../images/edit-16x16.gif) no-repeat scroll left center;
}
a.jive-link-delete {
background:transparent url(../images/delete-16x16.gif) no-repeat scroll left center;
}
/* --------------------------------------------- */
/* Hoizontal Rule */
/* --------------------------------------------- */
.jive-horizontalRule {
background-color:#DCDCDC;
height:1px;
margin:20px 0 10px;
overflow:hidden;
padding:0;
}
/* --------------------------------------------- */
/* Older styles */
/* --------------------------------------------- */
pre, tt {
font-family:courier new,monospace;
font-size:10pt;
}
/* Messages - errors, success and info */
.jive-error table, .jive-warning table, .jive-info table, .jive-success table {
border:1px solid #CCCCCC;
}
.jive-error td, .jive-warning td, .jive-info td, .jive-success td {
padding:3px;
vertical-align:top;
}
.jive-error-text, .jive-error .jive-icon-label, .jive-error-text a, .jive-error .jive-icon-label a {
color:#FF0000;
}
.jive-warning-text, .jive-warning .jive-icon-label, .jive-warning-text a, .jive-warning-text .jive-icon-label a {
color: #FF6C0D;
}
.jive-success-text, .jive-success .jive-icon-label, .jive-success-text a, .jive-success .jive-icon-label a {
color:#009900;
}
.jive-info-text, .jive-info .jive-icon-label, .jive-info-text a, .jive-info .jive-icon-label a {
color:#330066;
}
/* tables */
.jive-table {
border-color:#CCCCCC;
border-style:solid;
border-width:1px 1px 0;
}
.jive-table .c1, fieldset .c1 {
width:30%;
}
.jive-table th, .jive-table td, .jive-option-table th, .jive-option-table td {
padding:6px;
}
.jive-table th th, .jive-table td td {
padding:0;
}
.jive-table td.icon {
padding:0 5px 0 3px;
}
.jive-table th {
background-color:#EEEEEE;
border-bottom:1px solid #CCCCCC;
font-family:verdana,arial,helvetica,sans-serif;
font-size:8pt;
font-weight:bold;
text-align:left;
}
.jive-table th table th {
border-bottom:medium none;
border-right:medium none;
}
.jive-table th table th a {
color:#000000;
text-decoration:none;
}
.jive-table tr td {
border-bottom:1px solid #E3E3E3;
}
.jive-table td {
font-family:arial,helvetica,sans-serif;
font-size:10pt;
}
.jive-table .jive-odd td {
background-color:#FFFFFF;
}
.jive-table .jive-even td {
background-color:#FBFBFB;
}
.jive-table .jive-highlight td {
background-color:#FFFFCC;
}
.jive-table tfoot td {
background-color:#EEEEEE;
border-bottom:1px solid #CCCCCC;
font-family:verdana,arial,helvetica,sans-serif;
font-size:8pt;
}
.jive-table td td {
border-width:0;
}
.jive-table input, .jive-table select, .jive-option-table input, .jive-option-table select {
font-family:verdana,arial,helvetica,sans-serif;
font-size:8pt;
}
.jive-description, .jive-description a, .jive-table .jive-date, .jive-description input, .jive-description select {
font-family:arial,helvetica,sans-serif;
font-size:8pt;
}
.jive-label, .jive-option-table label {
font-weight:bold;
padding-right:10px;
white-space:nowrap;
}
.jive-label {
padding-right:20px;
vertical-align:top;
}
.jive-buttons .jive-icon {
padding:3px;
}
.jive-buttons .jive-icon-label {
font-family:verdana,arial,helvetica,sans-serif;
font-size:8pt;
padding:3px 1em 3px 3px;
white-space:nowrap;
}
/* --------------------------------------------- */
/* Calendar styles */
/* --------------------------------------------- */
table.calBgColor {
padding:0;
}
td.cal {
background-color:#FFFFFF;
color:#000000;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
padding:0;
}
select.month {
background:transparent none repeat scroll 0;
color:#000000;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
width:85px;
}
input.year {
background:transparent none repeat scroll 0;
color:#000000;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
width:30px;
}
td.calDaysColor {
background-color:#000000;
color:#FFFFFF;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
}
td.calWeekend {
background-color:#D3D3D3;
color:#FFFFFF;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
}
td.calBgColor {
background-color:#FFFFCC;
color:#FFFFFF;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
}
.calBorderColor {
background-color:#A9A9A9;
color:#FFFFFF;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
}
td.calHighlightColor {
background-color:#FFFFCC;
color:#FFFFFF;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
}
a.cal {
background:transparent none repeat scroll 0;
color:#000000;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
text-decoration:none;
}
a.cal:hover {
background:transparent none repeat scroll 0;
color:#FF0000;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
text-decoration:none;
}
.calDisabled {
background:transparent none repeat scroll 0;
color:#808080;
font-family:Arial,Helvetica,Sans-serif;
font-size:11px;
text-decoration:none;
}
/* --------------------------------------------- */
/* Quote original styles */
/* --------------------------------------------- */
.jive-quoteheader {
font-weight:bold;
margin-left:15px;
width:90%;
}
.jive-quote {
background-color:#FAFAFA;
border:1px solid #D1D7DC;
color:#444444;
margin-left:15px;
width:90%;
}
.success {
-moz-border-radius-bottomleft:3px;
-moz-border-radius-bottomright:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-topright:3px;
background-color:#CDF6CD;
background-image:url(../images/success-16x16.gif);
background-position:5px;
background-repeat:no-repeat;
border:1px solid #029B00;
color:#006600;
font-weight:bold;
margin-bottom:20px;
margin-top:10px;
padding:5px 5px 5px 28px;
}
.error {
-moz-border-radius-bottomleft:3px;
-moz-border-radius-bottomright:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-topright:3px;
background-color:#EDB9B1;
background-image:url(../images/error-16x16.gif);
background-position:5px;
background-repeat:no-repeat;
border:1px solid #BB8888;
color:#990000;
font-weight:bold;
margin-bottom:20px;
margin-top:10px;
padding:5px 5px 5px 28px;
}
.warning {
-moz-border-radius-bottomleft:3px;
-moz-border-radius-bottomright:3px;
-moz-border-radius-topleft:3px;
-moz-border-radius-topright:3px;
background-color:#FFE9B2;
background-image:url(../images/icon_warning-small.gif);
background-position:5px;
background-repeat:no-repeat;
border:1px solid #D9B04C;
color:#915A15;
font-weight:bold;
margin-bottom:20px;
margin-top:10px;
padding:5px 5px 5px 28px;
}
/* --------------------------------------------- */
/* Content Box */
/* --------------------------------------------- */
.jive-contentBox {
-moz-border-radius-bottomleft:4px;
-moz-border-radius-bottomright:4px;
-moz-border-radius-topleft:0;
-moz-border-radius-topright:0;
background-color:#FFFFFF;
border:1px solid #CCCCCC;
display:block;
margin:0 0 20px;
padding:12px 10px;
}
.jive-contentBoxHeader {
background-color:#EEEEEE;
border-color:#CCCCCC rgb(204, 204, 204);
border-style:solid solid none;
border-width:1px 1px medium;
display:block;
font-size:9pt;
font-weight:bold;
margin:8px 0 0;
padding:4px 4px 4px 6px;
}
.jive-contentBoxGrey {
background-color:#F9F9F9;
}
.jive-contentBox h3 {
color:#555555;
font-size:10pt;
margin:0;
padding:0 0 5px;
}
.jive-contentBox h4 {
background-color:#FCFCFC;
border:1px solid #E9E9E9;
color:#555555;
font-size:10pt;
margin:0 0 4px;
padding:3px 0 3px 4px;
}
.jive-contentBox form {
margin:0;
padding:0;
}
.jive-contentBox table {
margin:0;
padding:0;
}
.jive-contentBox table td {
padding:2px;
}
.jive-contentBox table th {
background-color:#eeeeee;
padding:4px;
}
th.jive-table-th-center {
text-align:center;
}
.jive-contentBox table td.jive-formLabel {
color:#555555;
font-weight:bold;
padding-right:5px;
text-align:right;
white-space:nowrap;
}
.jive-contentBox-toolbox {
float:right;
margin-left:20px;
}
.jive-contentBox-plain {
display:block;
margin:0 0 5px;
padding:12px 0;
}
.jive-contentBox-plain h3 {
color:#555555;
font-size:14pt;
margin:2px 0;
}
.jive-contentBox-plain p {
font-size:9pt;
margin:0 0 10px;
}
/* --------------------------------------------- */
/* Roster box (in Group Settings page) */
/* --------------------------------------------- */
#jive-roster {
-moz-border-radius-bottomleft:4px;
-moz-border-radius-bottomright:4px;
-moz-border-radius-topleft:4px;
-moz-border-radius-topright:4px;
background-color:#F9F9F9;
border:1px solid #DCDCDC;
display:block;
font-size:9pt;
margin:3px 0 4px;
padding:12px;
width:390px;
}
#jive-roster b {
color:#555555;
display:block;
font-size:8pt;
padding:0 0 3px;
}
/* --------------------------------------------- */
/* Footer */
/* --------------------------------------------- */
#jive-footer {
border-top:1px solid #DCDCDC;
clear:both;
color:#666666;
font-size:8pt;
margin:10px 0 0;
padding:5px 0 40px;
width:100%;
}
.jive-footer-nav {
float:left;
padding-left:5px;
}
.jive-footer-nav a {
padding:0 5px;
}
.jive-footer-copyright {
float:right;
padding-right:12px;
}
#footer {
background-image:url(../images/page-background_new.gif);
background-repeat:repeat-y;
height:30px;
margin-top:-30px;
position:relative;
width:100%;
}
#footer_padding {
padding-left:165px;
text-align:center;
}
#footer_content {
background-color:#F9F9F9;
border-color:#E6E6E6 rgb(179, 211, 244);
border-style:solid solid none;
border-width:1px 1px medium;
font-size:8pt;
height:29px;
margin:0 auto;
padding:0;
width:500px;
}
#footer_content span {
display:block;
padding:7px;
}
.jive-current {
font-weight : bold;
text-decoration : none;
}
/* --------------------------------------------- */
/* Main content */
/* --------------------------------------------- */
#jive-main-content {
-moz-border-radius-bottomleft:4px;
-moz-border-radius-bottomright:4px;
-moz-border-radius-topleft:4px;
-moz-border-radius-topright:4px;
background:#F5F5F5 url(../images/jive-body-contentbox-bg.gif) repeat-x scroll center top;
border:1px solid #DCDCDC;
margin:15px 0 20px 0;
padding:18px 20px;
width: 95%;
} | 0.287468 | 0.090494 |
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Mr+Bedfort|Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');
@import url('https://fonts.googleapis.com/css?family=Fira+Sans|Fira+Sans+Condensed:200,300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700');
/*font-family: 'Open Sans', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Mr Bedfort', cursive;
font-family: 'Fira Sans Condensed', sans-serif;
*/
/*@import url('demo.css');*/
@import url('font-awesome.css');
@import url('quebec-font.css');
@import url('animate.css');
@import url('owl.css');
@import url('hover.css');
@import url('jquery.fancybox.css');
@import url('jquery.mCustomScrollbar.min.css');
/***
====================================================================
Reset
====================================================================
***/
* {
margin:0px;
padding:0px;
border:none;
outline:none;
}
/***
====================================================================
Global Settings
====================================================================
***/
body {
font-size:14px;
color:#666666;
line-height:1.8em;
font-weight:400;
background:#ffffff;
background-size:cover;
background-repeat:no-repeat;
background-position:center top;
-webkit-font-smoothing: antialiased;
font-family: 'Open Sans', sans-serif;
_font-family: 'Fira Sans', sans-serif;
}
a{
text-decoration:none;
cursor:pointer;
color:#e73f43;
}
a:hover,a:focus,a:visited{
text-decoration:none;
outline:none;
}
h1,h2,h3,h4,h5,h6 {
position:relative;
font-weight:normal;
margin:0px;
background:none;
line-height:1.4em;
font-family: 'Fira Sans', sans-serif;
}
.no-padding{
padding:0px !important;
}
input,button,select,textarea{
}
p,
.text{
position:relative;
line-height:1.8em;
font-family: 'Open Sans', sans-serif;
}
.strike-through{
text-decoration:line-through;
}
.auto-container{
position:static;
max-width:1200px;
padding:0px 15px;
margin:0 auto;
}
.small-container{
max-width:780px;
margin:0 auto;
}
.page-wrapper{
position:relative;
margin:0 auto;
width:100%;
min-width:300px;
}
ul,li{
list-style:none;
padding:0px;
margin:0px;
}
.theme-btn{
display:inline-block;
text-align:center;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.grey-bg{
background-color:#f9fafb;
}
.no-margin-btm{
margin-bottom:0px !important;
}
.centered{
text-align:center;
}
.list-style-one{
position:relative;
}
.list-style-one li{
position:relative;
margin-bottom:5px;
padding-left:20px;
color:#777777;
font-size:14px;
}
.list-style-one li:before{
position:absolute;
content:'+';
left:0px;
top:0px;
color:#e73f43;
font-size:18px;
}
/*Btn Style One*/
.btn-style-one{
position:relative;
padding:6px 26px;
line-height:24px;
color:#999999;
text-align:center;
font-size:12px;
font-weight:500;
background:none;
letter-spacing:1px;
border-radius:0px;
border:2px solid #f3f3f3;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.btn-style-one:hover{
color:#ffffff;
background:#e73f43;
border-color:#e73f43;
}
/*Btn Style Two*/
.btn-style-two{
position:relative;
padding:6px 16px;
line-height:24px;
color:#ffffff;
text-align:center;
font-size:12px;
font-weight:700;
background:none;
border-radius:0px;
border:2px solid #ffffff;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.btn-style-two:hover{
color:#ffffff;
background:#e73f43;
border-color:#e73f43;
}
/*Btn Style Three*/
.btn-style-three{
position:relative;
padding:8px 100px;
line-height:24px;
color:#999999;
text-align:center;
font-size:13px;
font-weight:500;
background:none;
border-radius:0px;
letter-spacing:2px;
border:2px solid #e0e0e0;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.btn-style-three:hover{
color:#ffffff;
background:#e73f43;
border-color:#e73f43;
}
.theme_color{
color:#e73f43;
}
/*Social Icon One*/
.social-icon-one{
position:relative;
}
.social-icon-one li.share{
position:relative;
top:-4px;
color:#999999;
font-size:13px;
font-weight:400;
line-height:30px;
letter-spacing:2px;
margin-right:15px !important;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.social-icon-one li{
position:relative;
margin-right:2px;
margin-bottom:4px;
display:inline-block;
}
.social-icon-one li a{
position:relative;
width:62px;
height:44px;
color:#ffffff;
font-size:18px;
line-height:42px;
text-align:center;
display:inline-block;
background-color:#2f58a1;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.social-icon-one li a:hover{
opacity:0.80;
}
.social-icon-one li.twitter a{ background-color:#069cd5}
.social-icon-one li.g_plus a{ background-color:#ec453e;}
.social-icon-one li.linkedin a{ background-color:#0076b8;}
.social-icon-one li.pinteret a{ background-color:#da0d32;}
.social-icon-one li.android a{ background-color:#62c56b;}
.social-icon-one li.dribbble a{ background-color:#ef70a9;}
.social-icon-one li.rss a{ background-color:#fd9f13;}
.social-icon-one li.instagram a{ background-color:#35475c;}
.social-icon-one li.vimeo a{ background-color:#4eceea;}
.social-icon-one.alternate li{
margin-right:5px;
margin-bottom:8px;
}
.social-icon-one.alternate li:nth-child(4n + 0){
margin-right:0px;
}
.social-icon-one.alternate li a{
width:76px;
height:53px;
line-height:53px;
font-size:20px;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.social-icon-one.alternate li a:hover{
opacity:0.7;
}
/*Social Icon Two*/
.social-icon-two{
position:relative;
}
.social-icon-two li{
position:relative;
margin-right:12px;
margin-bottom:4px;
display:inline-block;
}
.social-icon-two li a{
position:relative;
color:#c2c2c2;
font-size:14px;
display:inline-block;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.social-icon-two li a:hover{
color:#e73f43;
}
/*Social Icon Three*/
.social-icon-three{
position:relative;
margin-bottom:30px;
}
.social-icon-three li.share{
position:relative;
top:-4px;
color:#777777;
font-size:13px;
font-weight:400;
line-height:30px;
letter-spacing:2px;
margin-right:15px !important;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.social-icon-three li{
position:relative;
margin-right:2px;
margin-bottom:4px;
display:inline-block;
}
.social-icon-three li a{
position:relative;
width:46px;
height:33px;
color:#b5b5b5;
font-size:16px;
line-height:34px;
text-align:center;
display:inline-block;
background-color:#ededed;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.social-icon-three li a:hover{
color:#ffffff;
background-color:#e73f43;
}
img{
display:inline-block;
max-width:100%;
}
.preloader{ position:fixed; left:0px; top:0px; width:100%; height:100%; z-index:999999; background-color:#ffffff; background-position:center center; background-repeat:no-repeat; background-image:url(../images/icons/preloader.svg); background-size:80px;}
/***
====================================================================
Scroll To Top style
====================================================================
***/
.scroll-to-top{
position:fixed;
bottom:15px;
right:15px;
width:50px;
height:50px;
color:#ffffff;
font-size:13px;
text-transform:uppercase;
line-height:50px;
text-align:center;
z-index:100;
cursor:pointer;
background:#27292d;
display:none;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.scroll-to-top:hover{
color:#ffffff;
background:#e73f43;
}
/***
====================================================================
Main Header style
====================================================================
***/
.main-header{
position:relative;
left:0px;
top:0px;
width:100%;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.sticky-header{
position:fixed;
opacity:0;
visibility:hidden;
left:0px;
top:0px;
width:100%;
padding:0px 0px;
background:#ffffff;
z-index:0;
border-bottom:1px solid #cccccc;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.sticky-header .logo{
position:relative;
top:4px;
padding:2px 0px;
width:150px;
height:50px;
background:url(../images/logo-small.png) no-repeat;
}
.sticky-header .logo a{
position:relative;
display:block;
width:150px;
height:50px;
margin-top:2px;
}
.fixed-header .sticky-header{
z-index:9999;
opacity:1;
visibility:visible;
-ms-animation-name: fadeInDown;
-moz-animation-name: fadeInDown;
-op-animation-name: fadeInDown;
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
-ms-animation-duration: 500ms;
-moz-animation-duration: 500ms;
-op-animation-duration: 500ms;
-webkit-animation-duration: 500ms;
animation-duration: 500ms;
-ms-animation-timing-function: linear;
-moz-animation-timing-function: linear;
-op-animation-timing-function: linear;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-ms-animation-iteration-count: 1;
-moz-animation-iteration-count: 1;
-op-animation-iteration-count: 1;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
}
.fixed-header .main-menu .navigation > li:hover > a:after{
display:none;
}
.main-header .header-top{
position:relative;
padding:4px 0px;
background-color:#333333;
}
.main-header .header-top .top-left{
padding-left:90px !important;
}
.main-header .header-top .top-left,
.main-header .header-top .top-right{
position:relative;
padding:0px;
}
.main-header .header-top .top-left .trend{
position:absolute;
left:0px;
top:1px;
color:#e73f43;
font-weight:700;
font-size:13px;
letter-spacing:1px;
display:inline-block;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.main-header .header-top .top-left .trend.white:hover,
.main-header .header-top .top-right .top-nav.white li a:hover,
.main-header .header-top .top-right .social-nav.white li a:hover{
opacity:0.7;
color:#ffffff !important;
}
.main-header .header-top .top-left .trend.white{
color:#ffffff !important;
}
.main-header .header-top .top-left .slide .text{
position:relative;
color:#ffffff;
font-size:13px;
font-weight:600;
margin-left:10px;
display:inline-block;
}
.main-header .header-top .top-left .single-item-carousel{
float:left;
}
.main-header .header-top .top-left .owl-nav,
.main-header .header-top .top-left .owl-dots{
display:none;
}
.main-header .header-top .top-right{
position:relative;
text-align:right;
}
.main-header .header-top .top-right .top-nav{
position:relative;
display:inline-block;
}
.main-header .header-top .top-right .top-nav li{
position:relative;
padding:0px 20px;
display:inline-block;
line-height:1em;
border-left:1px solid rgba(255,255,255,0.15);
}
.main-header .header-top .top-right .top-nav li:last-child{
border-right:1px solid rgba(255,255,255,0.15);
}
.main-header .header-top .top-right .top-nav li a{
position:relative;
font-size:12px;
color:#ffffff;
font-weight:600;
letter-spacing:1px;
border-bottom:1px solid transparent;
text-transform:uppercase;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-header .header-top .top-right .top-nav li a:hover{
border-color:#e73f43;
color:#e73f43;
}
.main-header .header-top .top-right .english-nav{
position:relative;
display:inline-block;
}
.main-header .header-top .top-right .english-nav li{
position:relative;
padding:0px 10px 0px 15px;
display:inline-block;
}
.main-header .header-top .top-right .english-nav li:after{
position:absolute;
content:'/';
color:#ffffff;
font-size:16px;
right:-8px;
top:2px;
}
.main-header .header-top .top-right .english-nav li:last-child::after{
display:none;
}
.main-header .header-top .top-right .english-nav li a:hover,
.main-header .header-top .top-right .english-nav li.active a{
background-color:#e73f43;
}
.main-header .header-top .top-right .english-nav li a{
position:relative;
color:#ffffff;
font-size:12px;
font-weight:600;
text-transform:uppercase;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-header .header-top .top-right .social-nav{
position:relative;
display:inline-block;
}
.main-header .header-top .top-right .social-nav li{
position:relative;
padding:0px 15px;
display:inline-block;
border-left:1px solid rgba(255,255,255,0.15);
}
.main-header .header-top .top-right .social-nav li a{
position:relative;
color:#ffffff;
font-size:14px;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.main-header .header-top .top-right .social-nav li a:hover{
color:#e73f43;
}
.main-header .header-top .top-right .social-nav li:last-child{
border-right:1px solid rgba(255,255,255,0.15);
}
.main-header .header-upper{
position:relative;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
z-index:5;
}
.main-header .logo-outer{
position:relative;
float:left;
z-index:25;
padding:32px 0px;
}
.main-header .logo-outer .logo{
position:relative;
width:280px;
height:80px;
background:url(../images/logo.png) no-repeat;
}
.main-header .logo-outer .logo.header-three-logo{
background:url(../images/white-logo.png) no-repeat;
}
.main-header .logo-outer .logo a{
position:relative;
display:block;
width:100%;
height:100%;
}
.main-header .logo-outer .logo img{
position:relative;
display:inline-block;
max-width:100%;
}
.main-header .header-upper .upper-right{
position:relative;
padding-top:26px;
padding-bottom:26px;
}
.main-header .header-upper .nav-outer{
position:relative;
float:right;
}
.main-header .nav-outer .more-options{
position:relative;
right:0px;
top:50%;
width:35px;
float:right;
margin:54px 0px;
margin-left:30px;
border-left:1px solid #d6d6d6;
}
.main-header .header-lower .search-box-outer{
position: relative;
min-width:70px;
padding-right:10px;
padding-left:10px;
padding-top:21px;
padding-bottom:22px;
display:inline-block;
border-right:1px solid #eeeeee;
}
.main-header .header-lower .search-box-btn{
position:relative;
display:block;
width:100%;
font-size:18px;
color:#999999;
line-height:20px !important;
padding:0px;
margin:0px;
cursor:pointer;
background:none;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-header .header-lower .search-box-btn:hover{
color:#444444;
}
.main-header .header-lower .search-box-outer .dropdown-menu{
top:40px;
right:0px;
padding:0px;
width:280px;
border-radius:0px;
border-top:3px solid #e73f43;
border-left:0px;
border-right:0px;
border-bottom:0px;
}
.main-header .header-lower .search-box-outer .dropdown-menu > li{
padding:0px;
border:none;
background:none;
}
.main-header .header-lower .search-panel .form-container{
padding:25px 20px;
}
.main-header .header-lower .search-panel .form-group{
position:relative;
margin:0px;
}
.main-header .header-lower .search-panel input[type="text"],
.main-header .header-lower .search-panel input[type="search"],
.main-header .header-lower .search-panel input[type="password"],
.main-header .header-lower .search-panel select{
display:block;
width:100%;
height:40px;
color:#000000;
line-height:24px;
background:#ffffff;
border:1px solid #e0e0e0;
padding:7px 40px 7px 15px;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-header .header-lower .search-panel input:focus,
.main-header .header-lower .search-panel select:focus{
border-color:#e73f43;
}
.main-header .header-lower .search-panel .search-btn{
position:absolute;
right:0px;
top:0px;
width:40px;
height:40px;
text-align:center;
color:#555555;
font-size:12px;
background:none;
cursor:pointer;
}
.main-menu{
position:relative;
}
.main-menu .navbar-collapse{
padding:0px;
}
.main-menu .navigation{
position:relative;
margin:0px;
}
.main-menu .navigation > li{
position:relative;
float:left;
padding:0px;
border-left:1px solid #e0e0e0;
}
.main-menu .navigation > li.mega-menu{
position:static !important;
-webkit-transition:all 600ms ease;
-ms-transition:all 600ms ease;
-o-transition:all 600ms ease;
-moz-transition:all 600ms ease;
transition:all 600ms ease;
}
.main-menu .navigation > li.mega-menu > .mega-menu-bar{
position:absolute;
left:0px;
width:100%;
top:101%;
opacity:0;
background-color:#101010;
padding:45px 40px 30px 45px;
-webkit-transition:all 600ms ease;
-ms-transition:all 600ms ease;
-o-transition:all 600ms ease;
-moz-transition:all 600ms ease;
transition:all 600ms ease;
}
.main-menu .navigation > li.mega-menu > .mega-menu-bar .owl-dots{
display:none;
}
.main-menu .navigation > li.mega-menu > .mega-menu-bar .owl-nav{
position:relative;
margin-top:-10px;
}
.main-menu .navigation > li.mega-menu > .mega-menu-bar .owl-nav .owl-prev,
.main-menu .navigation > li.mega-menu > .mega-menu-bar .owl-nav .owl-next{
position:relative;
width:36px;
height:36px;
line-height:34px;
margin-right:10px;
color:rgba(255,255,255,0.40);
text-align:center;
display:inline-block;
font-size:16px;
border:1px solid rgba(255,255,255,0.60);
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-menu .navigation > li.mega-menu > .mega-menu-bar .owl-nav .owl-prev:hover,
.main-menu .navigation > li.mega-menu > .mega-menu-bar .owl-nav .owl-next:hover{
color:#e73f43;
border-color:#e73f43;
}
.main-menu .navigation > li.mega-menu:hover .mega-menu-bar{
opacity:1;
top:100%;
z-index:9;
visibility:visible;
}
.main-menu .navigation > li:last-child{
border-right:1px solid #e0e0e0;
}
.sticky-header .main-menu .navigation > li{
padding:0px;
margin-right:0px;
}
.main-menu .navigation > li > a{
position:relative;
display:block;
padding:17px 24px;
font-size:13px;
color:#777777;
line-height:20px;
font-weight:600;
opacity:1;
letter-spacing:1px;
text-transform:uppercase;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
_font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif;
}
.main-menu .navigation > li > a:hover::before,
.main-menu .navigation > li.current > a:before{
left:0px;
right:0px;
}
.main-menu .navigation > li > a:before{
content: "";
position: absolute;
z-index: -1;
left: 50%;
right: 50%;
bottom: 0;
background: #e73f43;
height: 4px;
-webkit-transition-property: left, right;
transition-property: left, right;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.sticky-header .main-menu .navigation > li > a{
padding:13px 15px !important;
color:#333333;
}
.sticky-header .main-menu .navigation > li.dropdown > a:before{
display:none;
}
.header-upper .main-menu .navigation > li:hover > a,
.header-upper .main-menu .navigation > li.current > a,
.header-upper .main-menu .navigation > li.current-menu-item > a{
color:#e73f43;
opacity:1;
}
.sticky-header .main-menu .navigation > li:hover > a,
.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li.current-menu-item > a{
color:#333333 !important;
background:#ffffff;
}
.main-menu .navigation > li:hover > a:after{
opacity:1;
}
.main-menu .navigation > li > ul{
position:absolute;
left:0px;
top:120%;
width:240px;
z-index:100;
display:none;
padding:0px 0px;
background:#101010;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.main-menu .navigation > li > ul.from-right{
left:auto;
right:0px;
}
.main-menu .navigation > li > ul > li{
position:relative;
width:100%;
border-bottom:1px solid rgba(255,255,255,0.10);
}
.main-menu .navigation > li > ul > li:last-child{
border-bottom:none;
}
.main-menu .navigation > li > ul > li > a{
position:relative;
display:block;
padding:12px 20px;
line-height:22px;
font-weight:500;
font-size:12px;
color:#e0e0e0;
text-align:left;
text-transform:uppercase;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
font-family: 'Montserrat', sans-serif;
}
.main-menu .navigation > li > ul > li:hover > a{
color:#ffffff;
background-color:#e73f43;
}
.main-menu .navigation > li > ul > li.dropdown > a:after{
font-family: 'FontAwesome';
content: "\f105";
position:absolute;
right:10px;
top:12px;
width:10px;
height:20px;
display:block;
line-height:21px;
font-size:16px;
font-weight:normal;
text-align:center;
z-index:5;
}
.main-menu .navigation > li > ul > li.dropdown:hover > a:after{
color:#ffffff;
}
.main-menu .navigation > li > ul > li > ul{
position:absolute;
left:100%;
top:20px;
width:240px;
z-index:100;
display:none;
background:#101010;
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.main-menu .navigation > li > ul > li > ul > li{
position:relative;
width:100%;
border-bottom:1px solid rgba(255,255,255,0.10);
}
.main-menu .navigation > li > ul > li > ul > li:last-child{
border-bottom:none;
}
.main-menu .navigation > li > ul > li > ul > li > a{
position:relative;
display:block;
padding:12px 20px;
line-height:22px;
font-weight:500;
font-size:12px;
color:#e0e0e0;
text-align:left;
text-transform:uppercase;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
font-family: 'Montserrat', sans-serif;
}
.main-menu .navigation > li > ul > li > ul > li > a:hover{
color:#ffffff;
background-color:#e73f43;
}
.main-menu .navigation > li.dropdown:hover > ul{
visibility:visible;
opacity:1;
top:100%;
}
.main-menu .navigation li > ul > li.dropdown:hover > ul{
visibility:visible;
opacity:1;
top:0px;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-menu .navigation li.dropdown .dropdown-btn{
position:absolute;
right:10px;
top:6px;
width:34px;
height:30px;
border:1px solid #ffffff;
text-align:center;
font-size:16px;
line-height:26px;
color:#ffffff;
cursor:pointer;
z-index:5;
display:none;
}
.main-header .header-lower{
position:relative;
border-top:1px solid #e0e0e0;
border-bottom:1px solid #e0e0e0;
box-shadow:0 2px 10px rgba(0,0,0,.175);
-webkit-box-shadow:0 2px 10px rgba(0,0,0,.175);
-o-box-shadow:0 2px 10px rgba(0,0,0,.175);
-moz-box-shadow:0 2px 10px rgba(0,0,0,.175);
-ms-box-shadow:0 2px 10px rgba(0,0,0,.175);
}
.main-header .nav-outer{
position:relative;
}
.main-header .outer-box{
position:absolute;
right:0px;
top:0px;
}
.main-header .outer-box .cart-box{
position:relative;
float:left;
color:#999999;
font-size:20px;
margin-top:20px;
background:none;
display:inline-block;
}
.main-header .outer-box .cart-box .cart-box-btn{
background:none;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
}
.main-header .outer-box .cart-box .cart-box-btn:hover{
color:#444444;
}
.main-header .outer-box .cart-box .cart-panel{
border-radius:0px;
padding:20px 20px;
min-width:300px;
margin-top:18px;
border-color:#e4e4e4;
border-top:3px solid #e73f43;
border-left:0px;
border-right:0px;
border-bottom:0px;
}
.main-header .outer-box .cart-box .cart-panel .cart-total{
color:#000000;
font-size:16px;
font-weight:400;
text-align:center;
text-transform:uppercase;
}
.main-header .outer-box .cart-box .cart-panel .cart-total span{
font-weight:700;
}
.main-header .outer-box .cart-box .cart-panel .btns-boxed{
position:relative;
text-align:center;
margin-top:20px;
}
.main-header .outer-box .cart-box .cart-panel .btns-boxed li{
position:relative;
margin:0px 5px;
display:inline-block;
}
.main-header .outer-box .cart-box .cart-panel .btns-boxed li a{
position:relative;
color:#292929;
font-weight:500;
font-size:12px;
padding:6px 15px;
display:inline-block;
border:1px solid #292929;
text-transform:uppercase;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
font-family: 'Montserrat', sans-serif;
}
.main-header .outer-box .cart-box .cart-panel .btns-boxed li a:hover{
color:#ffffff;
background-color:#292929;
}
.main-header .outer-box .cart-box .icon a{
color:#999999;
}
.header-style-two .logo-outer,
.header-style-three .logo-outer{
position:relative;
width:100%;
text-align:center;
}
.header-style-two .logo-outer .logo,
.header-style-three .logo-outer .logo{
margin:0 auto;
}
.header-style-two .header-top{
background-color:#28292d;
}
.header-style-two .header-top .top-left .slide .trend{
color:#ffffff;
}
.header-style-two .header-top .top-right .english-nav li.active a{
background-color:#333333;
}
.header-style-two .header-lower,
.header-style-three .header-lower{
background-color:#333333;
}
.header-style-two .main-menu .navigation > li,
.header-style-three .main-menu .navigation > li{
display:inline-block;
float:none;
border-color:rgba(255,255,255,0.10);
}
.header-style-two .main-menu .navigation > li,
.header-style-three .main-menu .navigation > li{
margin-left:-4px;
}
.header-style-two .main-menu .navigation > li > a:hover,
.header-style-two .main-menu .navigation > li.current > a,
.header-style-three .main-menu .navigation > li > a:hover,
.header-style-three .main-menu .navigation > li.current > a{
background-color:#e73f43;
}
.header-style-two .main-menu .navigation > li > a,
.header-style-three .main-menu .navigation > li > a{
color:#ffffff;
}
.header-style-two .main-menu,
.header-style-three .main-menu{
width:100%;
text-align:center;
}
.header-style-two.fixed-header .main-menu .navigation > li > a,
.header-style-three.fixed-header .main-menu .navigation > li > a{
color:#444444;
}
.header-style-two.fixed-header .main-menu .navigation > li.current > a,
.header-style-three.fixed-header .main-menu .navigation > li.current > a{
color:#ffffff !important;
}
.header-style-three .header-upper{
background-color:#292929;
}
.header-style-three .header-lower{
border:0px;
}
/***
====================================================================
Fancy Box
====================================================================
***/
.fancybox-next span,
.fancybox-prev span{
background-image:none !important;
width:44px !important;
height:44px !important;
line-height:44px !important;
text-align:center;
}
.fancybox-next span:before,
.fancybox-prev span:before{
content:'';
position:absolute;
font-family: 'FontAwesome';
left:0px;
top:0px;
font-size:12px;
width:44px !important;
height:44px !important;
line-height:44px !important;
background-color:rgba(28,28,28,0.40) !important;
color:#ffffff;
visibility:visible;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
}
.fancybox-next span:before{
content:'\f178';
}
.fancybox-prev span:before{
content:'\f177';
}
.fancybox-next:hover span:before,
.fancybox-prev:hover span:before{
background-color:#ffffff !important;
color:#000000;
}
.fancybox-type-image .fancybox-close{
right:0px;
top:0px;
width:45px;
height:45px;
background:url(../images/icons/icon-cross.png) center center no-repeat;
background-color:rgba(17,17,17,0.50) !important;
}
.fancybox-type-image .fancybox-close:hover{
background-color:#000000 !important;
}
.fancybox-type-image .fancybox-skin{
padding:0px !important;
}
/***
====================================================================
Sec Title
====================================================================
***/
.sec-title{
position:relative;
margin-bottom:30px;
background-color:#f3f3f3;
}
.sec-title h2{
position:relative;
color:#ffffff;
font-size:12px;
letter-spacing:1px;
padding:9px 15px;
font-weight:400;
text-transform:uppercase;
display:inline-block;
margin:0px;
background-color:#e73f43;
font-family: 'Montserrat', sans-serif;
}
/*Blog Section*/
.blog-section{
position:relative;
padding:60px 0px 60px;
max-width:780px;
margin:0 auto;
}
.news-block{
position:relative;
margin-bottom:70px;
}
.news-block .inner-box{
position:relative;
}
.news-block .inner-box .image{
position:relative;
}
.news-block .inner-box .image .category{
position:absolute;
left:15px;
bottom:15px;
color:#ffffff;
padding:2px 10px;
display:inline-block;
text-transform:uppercase;
letter-spacing:1px;
background-color:#222222;
}
.news-block .inner-box .image img{
position:relative;
width:100%;
display:block;
}
.news-block .inner-box .lower-box{
position:relative;
padding:45px 0px 35px;
border-bottom:1px solid #eeeeee;
}
.news-block .inner-box .lower-box h3{
position:relative;
font-size:32px;
font-weight:400;
line-height:1.4em;
margin-bottom:15px;
font-family: 'Montserrat', sans-serif;
}
.news-block .inner-box .lower-box h3 a{
color:#333333;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block .inner-box .lower-box h3 a:hover{
color:#e83f44;
}
.news-block .inner-box .lower-box .post-meta{
position:relative;
margin-bottom:15px;
}
.news-block .inner-box .lower-box .post-meta li{
position:relative;
color:#999999;
font-weight:600;
font-size:13px;
padding-left:18px;
display:inline-block;
margin-right:20px;
letter-spacing:1px;
text-transform:uppercase;
}
.news-block .inner-box .lower-box .post-meta li .icon{
position:absolute;
left:0px;
top:0px;
font-size:13px;
color:#999999;
}
.news-block .inner-box .lower-box .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
margin-bottom:25px;
}
/***
====================================================================
Styled Pagination
====================================================================
***/
.styled-pagination{
position:relative;
}
.styled-pagination:before{
position:absolute;
content:'';
left:20%;
top:15px;
right:0px;
height:1px;
background-color:#eeeeee;
}
.styled-pagination ul{
position:relative;
display:inline-block;
}
.styled-pagination li{
position:relative;
display:block;
float:left;
margin:0px 5px 5px 0px;
}
.styled-pagination li a{
position:relative;
display:inline-block;
line-height:26px;
height:30px;
font-size:13px;
text-transform:capitalize;
min-width:30px;
background:none;
color:#999999;
font-weight:400;
text-align:center;
border:2px solid #f3f3f3;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
font-family: 'Montserrat', sans-serif;
}
.styled-pagination li a:hover,
.styled-pagination li a.active{
color:#ffffff;
border-color:#333;
background-color:#333;
}
.styled-pagination.centered{
text-align:center;
}
.styled-pagination.centered:before{
left:0%;
}
.styled-pagination.centered ul{
background-color:#ffffff;
padding:0px 30px;
}
/***
====================================================================
Main Footer
====================================================================
***/
.main-footer{
position:relative;
background-color:#28292d;
}
.main-footer .widgets-section{
position:relative;
padding-top:86px;
padding-bottom:30px;
}
.main-footer .widgets-section .footer-widget{
position:relative;
margin-bottom:30px;
}
.main-footer .widgets-section .footer-widget h2{
position:relative;
font-size:14px;
font-weight:700;
color:#ffffff;
letter-spacing:1px;
padding-bottom:10px;
margin-bottom:30px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
border-bottom:2px solid rgba(255,255,255,0.10);
}
.review-block{
position:relative;
min-height:110px;
margin-bottom:30px;
border-bottom:1px solid rgba(255,255,255,0.10);
}
.review-block:last-child{
margin-bottom:0px;
border:0px;
min-height:80px;
}
.review-block .inner-box{
position:relative;
padding-left:105px;
}
.review-block .inner-box .image{
position:absolute;
left:0px;
top:0px;
width:86px;
background-color:#e9ebee;
}
.review-block .inner-box .image a:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
z-index:1;
opacity:0;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
background-color:rgba(255,255,255,0.30);
}
.review-block .inner-box:hover .image a:before{
opacity:1;
}
.review-block .inner-box .text{
position:relative;
font-size:16px;
font-weight:400;
color:rgba(255,255,255,0.60);
font-family: 'Montserrat', sans-serif;
}
.review-block .inner-box .text a{
position:relative;
font-weight:400;
color:rgba(255,255,255,0.60);
font-family: 'Montserrat', sans-serif;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.review-block .inner-box .text a:hover{
color:#e73f43;
}
.review-block .inner-box .ratings{
position:relative;
color:#ffffff;
font-size:13px;
font-family: 'Montserrat', sans-serif;
}
.review-block .inner-box .ratings .fa{
position:relative;
color:#ffffff;
font-size:16px;
}
.review-block .inner-box .ratings .fa.light{
color:rgba(255,255,255,0.10);
}
/***
====================================================================
Flickr Gallery
====================================================================
***/
.isntagram-widget .image{
position:relative;
float:left;
width:25%;
padding:0px 3px 3px 0px;
}
.isntagram-widget .image img{
position:relative;
display:block;
width:100%;
background-color:#e9ebee;
}
.isntagram-widget .image .lightbox-image{
position:relative;
display:block;
}
.isntagram-widget .image .lightbox-image:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
z-index:1;
opacity:0;
background-color:rgba(0,0,0,0.40);
transition:all 300ms ease;
-o-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-moz-transition:all 300ms ease;
-webkit-transition:all 300ms ease;
}
.isntagram-widget .image:hover .lightbox-image:before{
opacity:1;
}
/*Popular Tags*/
.popular-tags a{
position:relative;
display:inline-block;
line-height:24px;
padding:4px 12px 4px;
margin:0px 0px 4px 0px;
color:#777777;
text-align:center;
font-size:11px;
font-weight:600;
background:#313438;
letter-spacing:1px;
text-transform:uppercase;
transition:all 300ms ease;
-o-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-moz-transition:all 300ms ease;
-webkit-transition:all 300ms ease;
}
.popular-tags a:hover{
color:#ffffff;
background-color:#e73f43;
}
/*News Info*/
.news-info{
position:relative;
}
.news-info .inner-box{
position:relative;
padding-left:105px;
min-height:110px;
margin-bottom:30px;
border-bottom:1px solid rgba(255,255,255,0.10);
}
.news-info:last-child .inner-box{
position:relative;
border:0px;
margin-bottom:0px;
}
.news-info .inner-box .image{
position:absolute;
left:0px;
top:0px;
width:85px;
background-color:#e9ebee;
}
.news-info .inner-box .image .overlay{
position:absolute;
left:0px;
top:0px;
width:100%;
opacity:0;
height:100%;
display:block;
text-align:center;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-info .inner-box .image .overlay .icon{
position:relative;
width:32px;
height:32px;
color:#ffffff;
line-height:26px;
font-size:12px;
text-align:center;
border-radius:50%;
margin-top:20px;
border:3px solid #ffffff;
}
.news-info .inner-box:hover .image .overlay{
opacity:1;
}
.news-info .inner-box .text{
position:relative;
font-size:16px;
line-height:1.6em;
color:rgba(255,255,255,0.60);
font-family: 'Montserrat', sans-serif;
}
.news-info .inner-box .text a{
color:rgba(255,255,255,0.60);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-info .inner-box .text a:hover{
color:#e73f43;
}
.news-info .inner-box .post-date{
position:relative;
font-size:11px;
font-weight:600;
padding-left:18px;
letter-spacing:1px;
text-transform:uppercase;
color:rgba(255,255,255,0.30);
}
.news-info .inner-box .post-date:before{
position:absolute;
content:'\f017';
left:0px;
top:0px;
font-size:13px;
font-weight:300;
font-family: 'FontAwesome';
color:rgba(255,255,255,0.30);
}
.main-footer .footer-bottom{
position:relative;
padding:0px 0px 0px;
background-color:#1a1c1e;
}
.main-footer .footer-bottom .logo{
position:relative;
width:280px;
height:80px;
background:url(../images/logo-2.png) no-repeat;
}
.main-footer .footer-bottom .logo a{
position:relative;
display:block;
width:280px;
height:80px;
}
.main-footer .footer-bottom .text{
position:relative;
color:#ffffff;
font-size:14px;
line-height:1.6em;
text-align:center;
}
.main-footer .footer-bottom .copyright-section{
position:relative;
padding:15px 0px;
margin-top:40px;
border-top:1px solid rgba(255,255,255,0.10);
}
.main-footer .footer-bottom .copyright-section .footer-nav{
position:relative;
}
.main-footer .footer-bottom .copyright-section .footer-nav li{
position:relative;
font-size:13px;
padding-right:20px;
margin-right:20px;
display:inline-block;
line-height:1em;
border-right:1px solid rgba(255,255,255,0.10);
}
.main-footer .footer-bottom .copyright-section .footer-nav li:last-child{
border:0px;
margin:0px;
padding:0px;
}
.main-footer .footer-bottom .copyright-section .footer-nav li a{
position:relative;
color:#ffffff;
font-size: 12px;
letter-spacing:1px;
text-transform:uppercase;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
font-family: 'Poppins', sans-serif;
}
.main-footer .footer-bottom .copyright-section .footer-nav li a:hover{
color:#e73f43;
}
.main-footer .footer-bottom .copyright-section .copyright{
position:relative;
color:#ffffff;
text-align:center;
font-family: 'Poppins', sans-serif;
font-size: 12px
}
/***
====================================================================
Hidden Sidebar style
====================================================================
***/
.hidden-bar{
position: fixed;
top: 0;
width: 100%;
height: 100%;
background: #232323;
z-index: 9999;
transition: all 700ms ease;
-webkit-transition: all 700ms ease;
-ms-transition: all 700ms ease;
-o-transition: all 700ms ease;
-moz-transition: all 700ms ease;
}
.hidden-bar .mCSB_inside > .mCSB_container{
margin-right:0px;
}
.hidden-bar.left-align {
left: -400px;
}
.hidden-bar.left-align.visible-sidebar{
left:0px;
}
.hidden-bar.left-align {
left: -100%;
}
.hidden-bar.left-align.visible-sidebar {
left: 0%;
display:none;
}
.hidden-bar .hidden-bar-closer {
width: 40px;
height: 40px;
position: absolute;
right: 10px;
top:5px;
background: none;
color: #ffffff;
border-radius: 0px;
text-align: center;
line-height: 40px;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
z-index: 999999;
}
.hidden-bar .hidden-bar-closer button {
background: none;
display:block;
font-size: 20px;
color:#656565;
width:40px;
height:40px;
line-height:40px;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
}
.hidden-bar .hidden-bar-closer:hover button {
color: #ffffff;
}
.hidden-bar-wrapper {
height: 100%;
padding:10px 30px 40px;
padding-right:0px;
}
.hidden-bar-wrapper .mCustomScrollBox{
overflow:visible;
}
.hidden-bar .logo {
position:relative;
padding: 0px 0px 0px;
text-align:center;
width:270px;
height:60px;
margin:0 auto;
right:20px;
margin-top:20px;
margin-bottom:20px;
background:url(../images/mobile-logo.png) no-repeat;
}
.hidden-bar .logo a{
position:relative;
width:270px;
height:60px;
display:block;
}
.hidden-bar .logo img{
display:inline-block;
max-width:100%;
}
.hidden-bar .side-menu {
background-color: transparent;
padding: 0;
font-size:13px;
text-align:center;
padding-right:40px;
}
.hidden-bar .side-menu ul li ul a {
background: transparent;
}
.hidden-bar .side-menu ul li ul li ul li a {
background: transparent;
text-transform:uppercase;
padding-left:22px;
font-size:13px;
color:rgba(255,255,255,0.50);
}
.hidden-bar .side-menu a.current {
color: #c5a47e;
}
.hidden-bar .side-menu li.current > a {
color: #c5a47e;
}
.hidden-bar .side-menu ul li{
position:relative;
display:block;
border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hidden-bar .side-menu > ul > li > ul{
background-color:#2a2a2a;
}
.hidden-bar .side-menu ul.navigation > li > ul > li:first-child{
border-top: 1px solid rgba(255,255,255,0.15);
}
.hidden-bar .side-menu ul.navigation > li > ul > li:last-child{
border-bottom:none;
}
.hidden-bar .side-menu ul li a {
background: transparent;
color: #ffffff;
display: inline-block;
font-weight: 400;
text-transform: uppercase;
padding: 12px 15px 12px 0px;
position: relative;
line-height:24px;
font-size:13px;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
letter-spacing:1px;
font-family: 'Montserrat', sans-serif;
}
.hidden-bar .side-menu ul.navigation > li > ul > li > a{
text-transform:uppercase;
padding-left:22px;
font-size:13px;
color:rgba(255,255,255,0.50);
}
.hidden-bar .side-menu ul.navigation > li.active > a:after{
content:'';
position:absolute;
left:100%;
top:50%;
margin-top:-1px;
width:30px;
border-bottom:2px solid #c5a47e;
}
.hidden-bar .side-menu ul.navigation > li.dropdown > a{
}
.hidden-bar .side-menu ul.navigation > li > ul > li.dropdown > a{
padding-left:22px;
}
.hidden-bar .side-menu ul.navigation > li > ul > li.dropdown{
width:auto;
margin-left:22px;
}
.hidden-bar .side-menu > ul > li.dropdown > a:after{
position:absolute;
content:'\f107';
right:0px;
top:13px;
font-size:14px;
font-family: 'FontAwesome';
}
.hidden-bar .side-menu ul li a:hover,
.hidden-bar .side-menu ul > li.current > a,
.hidden-bar .side-menu ul > li > ul > li.current > a,
.hidden-bar .side-menu ul.navigation > li > ul > li > a:hover,
.hidden-bar .side-menu ul.navigation > li.active > a {
color: #e73f43;
}
.hidden-bar .social-links{
position:relative;
margin-right:40px;
text-align:center;
font-size:13px;
line-height:20px;
color:#999999;
margin-top:35px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.10);
}
.hidden-bar .social-links li{
position:relative;
display:inline-block;
line-height:20px;
}
.hidden-bar .social-links li a{
display:block;
color:#999999;
font-size:18px;
padding:0px 12px 0px 14px;
transition:all 500ms ease;
border-left:1px solid rgba(255,255,255,0.10);
}
.hidden-bar .social-links li:last-child a{
border-right:1px solid rgba(255,255,255,0.10);
}
.hidden-bar .social-links li a:hover{
color:#ffffff;
}
.main-header .nav-toggler{
position:absolute;
right:0px;
top:-75px;
z-index:12;
display:none;
}
.main-header .nav-toggler button{
position:relative;
display:block;
height:36px;
width:42px;
background:none;
color:#7f7f7f;
text-align:center;
font-size:20px;
line-height:36px;
border:1px solid #a0a0a0;
font-weight:normal;
}
/*Sidebar Search*/
.hidden-bar .hidden-bar-wrapper .sidebar-search{
position:relative;
margin-top:26px;
padding-right:40px;
margin-bottom:18px;
}
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group{
position:relative;
}
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group input[type="text"],
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group input[type="search"]{
position: relative;
display: block;
width: 100%;
line-height: 24px;
padding: 10px 16px 10px 25px;
height: 46px;
color:rgba(255,255,255,0.50);
font-size: 14px;
background: #1f1f1f;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group input::-webkit-input-placeholder{
color:rgba(255,255,255,0.50);
font-size: 14px;
letter-spacing:1px;
font-family: 'Montserrat', sans-serif;
}
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group input[type="submit"],
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group button {
color: #999999;
font-size: 16px;
height: 46px;
background:none;
position: absolute;
right: 0;
text-align: left;
top: 0;
width: 36px;
}
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group button:hover{
}
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group button span {
padding-left: 0 !important;
padding-right: 8px;
}
.hidden-bar .hidden-bar-wrapper .mobile-cart{
position:relative;
padding:12px 24px;
background-color:#1f1f1f;
margin-right:40px;
margin-bottom:20px;
}
.hidden-bar .hidden-bar-wrapper .mobile-cart .text{
position:relative;
font-size:14px;
text-transform:uppercase;
color:rgba(255,255,255,0.50);
font-family: 'Montserrat', sans-serif;
}
.hidden-bar .hidden-bar-wrapper .mobile-cart .icon{
position:relative;
font-size:16px;
color:rgba(255,255,255,0.50);
}
/*Language Box*/
.hidden-bar .hidden-bar-wrapper .language{
position:relative;
padding-right:40px;
}
.hidden-bar .hidden-bar-wrapper .language a{
position:relative;
width:100%;
display:block;
border:0px;
height:46px;
line-height:37px;
padding:4px 25px;
text-align:left;
text-transform:uppercase;
background-color:#1f1f1f;
color:rgba(255,255,255,0.50);
font-family: 'Montserrat', sans-serif;
}
.hidden-bar .hidden-bar-wrapper .language a .icon{
position:absolute;
right:30px;
}
.hidden-bar .hidden-bar-wrapper .language .dropdown-menu{
position:relative;
padding:0px;
width:100%;
}
/*Main Slider*/
.main-slider,
.main-slider-two{
position:relative;
overflow:hidden;
padding:0px 0px 0px;
background-color:#f9f9f9;
}
.main-slider .slide{
position:relative;
overflow:hidden;
}
.main-slider .slide .image{
position:relative;
}
.main-slider .slide .image img{
position:relative;
width:100%;
display:block;
transition:all 0.6s ease;
-moz-transition:all 0.6s ease;
-webkit-transition:all 0.6s ease;
-ms-transition:all 0.6s ease;
-o-transition:all 0.6s ease;
}
.main-slider .slide:hover .image img{
-webkit-transform : scale(1.2,1.2);
-ms-transform : scale(1.2,1.2);
transform : scale(1.2,1.2);
}
.main-slider .slide .overlay-box{
position: absolute;
left: 0px;
top: 0px;
padding: 0px;
color: #ffffff;
opacity: 1;
width:100%;
height:100%;
text-align: center;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
.main-slider .owl-item .slide:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
opacity:1;
z-index:1;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
background:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
}
.main-slider .slide .overlay-box .overlay-inner{
position: absolute;
left: 0px;
bottom: 20px;
width: 100%;
z-index:1;
text-align:center;
padding: 30px 15px;
}
.main-slider .slide .overlay-box .overlay-inner .content{
position: relative;
}
.main-slider .slide .overlay-box .overlay-inner .content .category{
position:relative;
color:#ffffff;
font-size:12px;
display:inline-block;
padding:0px 12px;
font-weight:400;
margin-bottom:20px;
text-transform:uppercase;
background-color:#e73f43;
}
.main-slider .slide .overlay-box .overlay-inner .content .category a{
color:#ffffff;
}
.main-slider .slide .overlay-box .overlay-inner .content h2{
position:relative;
color:#ffffff;
font-size:32px;
font-weight:700;
margin-bottom:15px;
text-transform:uppercase;
}
.main-slider .slide .overlay-box .overlay-inner .content h2 a{
color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.main-slider .slide .overlay-box .overlay-inner .content h2 a:hover{
opacity:0.70;
}
.main-slider .slide .overlay-box .overlay-inner .content .post-meta{
position:relative;
}
.main-slider .slide .overlay-box .overlay-inner .content .post-meta li{
position:relative;
color:#ffffff;
font-size:11px;
padding-left:20px;
font-weight:500;
line-height:1em;
margin-right:15px;
display:inline-block;
text-transform:uppercase;
}
.main-slider .slide .overlay-box .overlay-inner .content .post-meta li .icon{
position:absolute;
left:0px;
top:0px;
}
.main-slider .owl-carousel .owl-stage-outer{
overflow:visible;
}
.main-slider.style-two .owl-carousel .owl-stage-outer{
overflow:hidden;
}
.main-slider .owl-carousel{
max-width: 1170px;
margin: 0 auto;
}
.main-slider .owl-item.active .slide .overlay-box{
background:none;
}
.main-slider .owl-dots,
.main-slider-two .owl-dots,
.main-slider-four .owl-dots{
position: relative;
text-align:center;
margin-top:30px;
}
.main-slider .owl-dots .owl-dot,
.main-slider-two .owl-dots .owl-dot,
.main-slider-three .owl-dots .owl-dot,
.main-slider-four .owl-dots .owl-dot{
position:relative;
display:inline-block;
margin:0px 5px;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.main-slider .owl-dots .owl-dot span,
.main-slider-two .owl-dots .owl-dot span,
.main-slider-three .owl-dots .owl-dot span,
.main-slider-four .owl-dots .owl-dot span{
position:relative;
display:block;
width:8px;
height:8px;
margin:0px;
border-radius:50%;
background:#d1d1d1;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.main-slider .owl-dots .owl-dot.active span,
.main-slider .owl-dots .owl-dot:hover span,
.main-slider-two .owl-dots .owl-dot.active span,
.main-slider-two .owl-dots .owl-dot:hover span,
.main-slider-three .owl-dots .owl-dot.active span,
.main-slider-three .owl-dots .owl-dot:hover span,
.main-slider-four .owl-dots .owl-dot.active span,
.main-slider-four .owl-dots .owl-dot:hover span{
background:#e73f43;
}
.testimonial-section .owl-nav{
padding:0px;
margin:0px;
display:block;
}
.main-slider-two .owl-nav{
display:none;
}
.main-slider .owl-nav .owl-prev,
.main-slider .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-20px;
width:42px;
height:42px;
color:#ffffff;
font-size:24px;
line-height:40px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,0.20);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-slider .owl-nav .owl-prev{
left:-50px;
}
.main-slider .owl-nav .owl-next{
right:-50px;
}
.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
.main-slider-two .slide-column{
position:relative;
padding:0px 2px;
margin-bottom:4px;
}
.main-slider-two .slide-column .row{
margin:0px -2px;
}
.main-slider-two .slide-column .inner-slide{
margin-bottom:4px;
padding:0px 2px;
}
/*Main Slider Three*/
.main-slider-three .owl-dots{
position:relative;
text-align:center;
top:-60px;
}
.main-slider-three .owl-nav .owl-prev,
.main-slider-three .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-20px;
width:43px;
height:43px;
color:#ffffff;
font-size:18px;
line-height:38px;
text-align:center;
font-weight:700;
border:2px solid rgba(255,255,255,0.40);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-slider-three .owl-nav .owl-prev{
left:20px;
}
.main-slider-three .owl-nav .owl-next{
right:20px;
}
.main-slider-three .owl-nav .owl-prev:hover,
.main-slider-three .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
border-color:#e73f43;
}
/*Main Slider Four*/
.main-slider-four{
position:relative;
padding:55px 0px 45px;
background-color:#f9f9f9;
}
.main-slider-four .section-outer{
position:relative;
padding:0px 30px;
}
.main-slider-four .owl-nav .owl-prev,
.main-slider-four .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-40px;
width:44px;
height:44px;
color:#999999;
font-size:20px;
line-height:42px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,1);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-slider-four .owl-nav .owl-prev{
left:-22px;
}
.main-slider-four .owl-nav .owl-next{
right:-22px;
}
.main-slider-four .owl-nav .owl-prev:hover,
.main-slider-four .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
/***
====================================================================
Sidebar Page Container
====================================================================
***/
.sidebar-page-container{
position:relative;
padding:40px 0px 0px;
}
.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side{
margin-bottom:0px;
}
.sidebar-page-container .sidebar-side .sidebar.right-sidebar{
position:relative;
padding-left:30px;
}
.sidebar-page-container .sidebar-side .sidebar.left-sidebar{
padding-right:30px;
}
.sidebar-page-container.change-padding{
padding-bottom:30px;
}
.sidebar-widget{
position: relative;
margin-bottom:65px;
}
.sidebar-title{
position:relative;
margin-bottom:30px;
background-color:#f3f3f3;
}
.sidebar-title h2{
position:relative;
color:#ffffff;
padding:9px 20px;
font-weight:400;
font-size:12px;
letter-spacing:1px;
display:inline-block;
background-color:#e73f43;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.sidebar-social-widget{
margin-bottom:30px;
}
/*Adds Block*/
.adds-block{
position:relative;
background-size:cover;
}
.adds-block .inner-box{
position:relative;
padding:80px 0px;
text-align:center;
outline-offset: -12px;
outline: 2px solid rgba(255,255,255,0.80);
}
.adds-block .inner-box:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
background-color:rgba(0,0,0,0.50);
}
.adds-block .inner-box .text{
position:relative;
color:#ffffff;
font-size:18px;
line-height:1.9em;
margin-bottom:20px;
text-transform:capitalize;
}
.adds-block .inner-box .text span{
display:block;
}
/***
====================================================================
Product Tabs Style
====================================================================
***/
.product-widget-tabs{
position:relative;
padding:0px 0px;
background-color:#ffffff;
}
.product-widget-tabs .prod-tabs{
position:relative;
}
.product-widget-tabs .prod-tabs .tab-btns{
position:relative;
margin-bottom:30px;
background-color:#f3f3f3;
}
.product-widget-tabs .prod-tabs .tab-btns .tab-btn{
position:relative;
top:1px;
display:block;
float:left;
margin-right:1px;
font-size:13px;
color:#777777;
text-transform:uppercase;
font-weight:600;
line-height:24px;
cursor:pointer;
width:33%;
text-align:center;
letter-spacing:1px;
padding:7px 15px 8px;
transition:all 500ms ease;
}
.product-widget-tabs .prod-tabs .tab-btns .tab-btn:after{
position:absolute;
content:'';
right:0px;
top:13px;
width:1px;
height:10px;
background-color:#dcdcdc;
}
.product-widget-tabs .prod-tabs .tab-btns .tab-btn:last-child{
margin-right:0px;
}
.product-widget-tabs .prod-tabs .tab-btns .tab-btn:hover,
.product-widget-tabs .prod-tabs .tab-btns .tab-btn.active-btn{
color:#ffffff;
background:#e73f43;
}
.product-widget-tabs .prod-tabs .tab-btns .tab-btn:hover:after,
.product-widget-tabs .prod-tabs .tab-btns .tab-btn:last-child:after,
.product-widget-tabs .prod-tabs .tab-btns .tab-btn.active-btn:after{
display:none;
}
.product-widget-tabs .prod-tabs .tabs-content{
position:relative;
}
.product-widget-tabs .prod-tabs .tabs-content .tab{
position:relative;
display:none;
}
.product-widget-tabs .prod-tabs .tabs-content .tab.active-tab{
display:block;
}
/*Post Widget*/
.widget-post{
position:relative;
font-size:14px;
color:#666666;
padding:0px 0px;
padding-left:105px;
min-height:110px;
margin-bottom:30px;
border-bottom:1px solid #eeeeee;
}
.widget-post:last-child{
margin-bottom:0px;
border:0px;
min-height:80px;
}
.widget-post .post-thumb{
position:absolute;
left:0px;
top:0px;
width:85px;
background-color:#e9ebee;
}
.widget-post .post-thumb > a{
position:relative;
display:block;
}
.widget-post .post-thumb a:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
z-index:99;
opacity:0;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
background-color:rgba(255,255,255,0.50);
}
.widget-post:hover .post-thumb a:before{
opacity:1;
}
.widget-post .post-thumb .overlay{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
z-index:10;
opacity:0;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-post .post-thumb .overlay .icon{
position:relative;
width:30px;
height:30px;
color:#ffffff;
text-align:center;
line-height:26px;
font-size:10px;
padding-left:3px;
border-radius:50%;
display:block;
margin:0 auto;
top:50%;
margin-top:-16px;
border:3px solid #ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-post:hover .post-thumb .overlay{
opacity:1;
}
.widget-post .post-thumb img{
display:block;
width:100%;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-post .text{
position:relative;
top:-4px;
font-size:15px;
margin:0px 0px 0px;
font-weight:400;
color:#333333;
line-height:1.6em;
text-transform:capitalize;
font-family: 'Montserrat', sans-serif;
}
.widget-post .text a{
color:#000000;
font-family: 'Fira Sans', sans-serif;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-post a,
.widget-post a:hover{
color:#e73f43;
}
.widget-post .post-info{
position:relative;
font-size:11px;
color:#999999;
font-weight:600;
padding-left:20px;
text-transform:uppercase;
}
.widget-post .post-info:before{
position:absolute;
content: "\e943";
left:0px;
top:1px;
font-size:12px;
color:#999999;
font-weight:300;
font-family: 'quebec';
}
/*Cat List*/
.cat-list{
position:relative;
z-index:99;
background-color:#ffffff;
}
.cat-list li{
position:relative;
padding-left:20px;
padding-bottom:10px;
margin-bottom:10px;
border-bottom:1px solid #eeeeee;
}
.cat-list li:before{
position:absolute;
content:'';
left:0px;
top:12px;
width:5px;
height:5px;
background-color:#d3d3d3;
}
.cat-list li a{
position:relative;
color:#777777;
font-size:13px;
font-weight:400;
letter-spacing:1px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.cat-list li a:hover{
color:#e73f43;
}
.cat-list li a span{
float:right;
}
/***
====================================================================
Category Tabs Box
====================================================================
***/
.category-tabs-box{
position:relative;
margin-bottom:50px;
}
.category-tabs-box .prod-tabs{
position:relative;
}
.category-tabs-box .prod-tabs .tab-btns{
position:relative;
margin-bottom:40px;
background-color:#f3f3f3;
}
.category-tabs-box .prod-tabs .tab-btns .category{
position: relative;
color: #ffffff;
padding: 8px 20px;
font-weight: 400;
font-size: 12px;
letter-spacing: 1px;
display: inline-block;
background-color: #e73f43;
text-transform: uppercase;
font-family: 'Montserrat', sans-serif;
}
.category-tabs-box .prod-tabs .tab-btns .tab-btn{
position:relative;
top:1px;
display:block;
float:left;
margin-right:1px;
font-size:13px;
color:#777777;
text-transform:uppercase;
font-weight:600;
line-height:24px;
cursor:pointer;
letter-spacing:1px;
padding:7px 15px 8px;
transition:all 500ms ease;
}
.category-tabs-box .prod-tabs .tab-btns .tab-btn:after{
position:absolute;
content:'';
right:0px;
top:15px;
width:1px;
height:10px;
background-color:#dcdcdc;
}
.category-tabs-box .prod-tabs .tab-btns .tab-btn:last-child{
margin-right:0px;
}
.category-tabs-box .prod-tabs .tab-btns .tab-btn:hover,
.category-tabs-box .prod-tabs .tab-btns .tab-btn.active-btn{
color:#e73f43;
}
.category-tabs-box .prod-tabs .tab-btns .tab-btn:last-child:after{
display:none;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category{
position:relative;
top:2px;
display:inline-block;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category .down-panel{
border:0px;
padding:0px;
margin-top:5px;
border-radius:0px;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category .more-category{
position:relative;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category .more-category li{
position:relative;
background-color:#101010;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category .more-category li a{
color:#ffffff;
display:block;
padding:6px 15px;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category .more-category li a:hover{
background-color:#e73f43;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category .category-box-btn{
position:relative;
background:none;
top:1px;
display:block;
float:left;
margin-right:1px;
font-size:13px;
color:#777777;
text-transform:uppercase;
font-weight:600;
line-height:24px;
cursor:pointer;
letter-spacing:1px;
padding:5px 15px 5px;
transition:all 500ms ease;
}
.category-tabs-box .prod-tabs .tabs-content{
position:relative;
}
.category-tabs-box .prod-tabs .tabs-content .tab{
position:relative;
display:none;
}
.category-tabs-box .prod-tabs .tabs-content .tab.active-tab{
display:block;
}
/*News Block Two*/
.news-block-two{
position:relative;
}
.news-block-two.with-margin{
margin-bottom:40px;
}
.news-block-two .inner-box{
position:relative;
}
.news-block-two .inner-box .image{
position:relative;
background-color:#e9ebee;
}
.news-block-two .inner-box .image > a{
position:relative;
display:block;
}
.news-block-two .inner-box .image > a:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
opacity:0;
z-index:1;
background-color:rgba(255,255,255,0.40);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-two .inner-box:hover .image > a:before{
opacity:1;
}
.news-block-two .inner-box .image .category{
position:absolute;
left:10px;
bottom:10px;
color:#ffffff;
padding:2px 10px;
display:inline-block;
text-transform:uppercase;
letter-spacing:1px;
font-size:12px;
z-index:10;
background-color:#222222;
}
.news-block-two .inner-box .image .category a{
color:#ffffff;
}
.news-block-two .inner-box .image img{
position:relative;
width:100%;
display:block;
}
.news-block-two .inner-box .lower-box{
position:relative;
padding:30px 0px 0px;
}
.news-block-two .inner-box .lower-box h3{
position:relative;
font-size:20px;
font-weight:400;
line-height:1.4em;
margin-bottom:10px;
font-family: 'Fira Sans', sans-serif;
}
.news-block-two .inner-box .lower-box h3 a{
color:#333333;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-two .inner-box .lower-box h3 a:hover{
color:#e83f44;
}
.news-block-two .inner-box .lower-box .post-meta{
position:relative;
margin-bottom:8px;
}
.news-block-two .inner-box .lower-box .post-meta li{
position:relative;
color:#999999;
font-weight:600;
font-size:11px;
padding-left:18px;
display:inline-block;
margin-right:20px;
letter-spacing:1px;
text-transform:uppercase;
}
.news-block-two .inner-box .lower-box .post-meta li .icon{
position:absolute;
left:0px;
top:1px;
font-size:12px;
color:#999999;
}
.news-block-two .inner-box .lower-box .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
}
.news-block-two.small-block{
margin-bottom:30px;
}
.news-block-two.small-block .inner-box .lower-box{
padding-top:20px;
}
.news-block-two.small-block .inner-box .lower-box h3{
font-size:16px;
line-height:1.6em;
}
.category-tabs-box .owl-dots{
display:none;
}
.category-tabs-box .owl-nav{
position:relative;
margin-top:20px;
}
.category-tabs-box .owl-nav .owl-next,
.category-tabs-box .owl-nav .owl-prev{
position:relative;
width:30px;
height:30px;
color:#a7a7a7;
line-height:26px;
text-align:center;
margin-right:6px;
display:inline-block;
border:2px solid #f3f3f3;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.category-tabs-box .owl-nav .owl-next:hover,
.category-tabs-box .owl-nav .owl-prev:hover{
color:#ffffff;
border-color:#e73f43;
background-color:#e73f43;
}
/*blog carousel section*/
.blog-carousel-section{
position:relative;
padding:75px 0px 50px;
}
/*News Block Three*/
.news-block-three{
position:relative;
}
.news-block-three .inner-box{
position:relative;
overflow:hidden;
}
.news-block-three .inner-box .image{
position:relative;
}
.news-block-three .inner-box:hover .image img{
-webkit-transform : scale(1.2,1.2);
-ms-transform : scale(1.2,1.2);
transform : scale(1.2,1.2);
}
.news-block-three .inner-box .image img{
position:relative;
width:100%;
display:block;
transition:all 0.6s ease;
-moz-transition:all 0.6s ease;
-webkit-transition:all 0.6s ease;
-ms-transition:all 0.6s ease;
-o-transition:all 0.6s ease;
}
.news-block-three .inner-box .image .overlay-box{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
background:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
}
.news-block-three .inner-box .image .overlay-box .play-btn{
position:absolute;
right:15px;
top:15px;
width:34px;
height:34px;
line-height:28px;
display:inline-block;
border-radius:50%;
text-align:center;
color:#ffffff;
border:3px solid #ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-three .inner-box .image .overlay-box .play-btn .icon{
font-size:12px;
padding-left:3px;
}
.news-block-three .inner-box .image .overlay-box .play-btn:hover{
color:#e73f43;
border-color:#e73f43;
}
.news-block-three .inner-box .image .overlay-box .content{
position:absolute;
content:'';
left:0px;
bottom:0px;
padding:0px 15px 40px 45px;
}
.news-block-three .inner-box .image .overlay-box .content .tag{
position: relative;
color: #ffffff;
font-size: 12px;
display: inline-block;
padding: 0px 12px;
font-weight: 400;
margin-bottom: 12px;
text-transform: uppercase;
background-color: #e73f43;
}
.news-block-three .inner-box .image .overlay-box .content .tag a{
color:#ffffff;
}
.news-block-three .inner-box .image .overlay-box .content h3{
position:relative;
font-weight:700;
font-size:18px;
line-height:1.6em;
margin-bottom:8px;
_text-transform:uppercase;
}
.news-block-three .inner-box .image .overlay-box .content h3 a{
color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-three .inner-box .image .overlay-box .content h3 a:hover{
opacity:0.70;
}
.news-block-three .inner-box .image .overlay-box .content .post-meta{
position:relative;
}
.news-block-three .inner-box .image .overlay-box .content .post-meta li{
position:relative;
color:#ffffff;
font-size:11px;
font-weight:600;
padding-left:20px;
line-height:1em;
margin-right:15px;
display:inline-block;
text-transform:uppercase;
}
.news-block-three .inner-box .image .overlay-box .content .post-meta li .icon{
position:absolute;
left:0px;
top:0px;
font-size:11px;
color:#ffffff;
}
.news-block-three.style-two .inner-box .image .overlay-box .content h3{
font-size:20px;
line-height:1.4em;
}
.news-block-three.style-three .inner-box .image .overlay-box .content h3{
font-size:18px;
line-height:1.4em;
}
.news-block-three.style-four .inner-box .image .overlay-box .content h3{
font-size:22px;
line-height:1.4em;
}
.blog-carousel-section .owl-dots{
position: relative;
text-align:center;
margin-top:30px;
}
.blog-carousel-section .owl-dots .owl-dot{
position:relative;
display:inline-block;
margin:0px 5px;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.blog-carousel-section .owl-dots .owl-dot span{
position:relative;
display:block;
width:8px;
height:8px;
margin:0px;
border-radius:50%;
background:#d1d1d1;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.blog-carousel-section .owl-dots .owl-dot.active span,
.blog-carousel-section .owl-dots .owl-dot:hover span{
background:#e73f43;
}
.blog-carousel-section .owl-nav .owl-prev,
.blog-carousel-section .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-40px;
width:44px;
height:44px;
color:#999999;
font-size:20px;
line-height:42px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,1);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.blog-carousel-section .owl-nav .owl-prev{
left:-22px;
}
.blog-carousel-section .owl-nav .owl-next{
right:-22px;
}
.blog-carousel-section .owl-nav .owl-prev:hover,
.blog-carousel-section .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
/*News Block Four*/
.news-block-four{
position:relative;
padding-bottom:30px;
margin-bottom:50px;
border-bottom:1px solid #eeeeee;
}
.news-block-four .inner-box{
position:relative;
}
.news-block-four .inner-box .image-column{
position:relative;
}
.news-block-four .inner-box .image-column .image{
position:relative;
margin-bottom:30px;
background-color:#e9ebee;
}
.news-block-four .inner-box .image-column .image > a{
position:relative;
display:block;
}
.news-block-four .inner-box .image-column .image > a:before{
position: absolute;
content: '';
left: 0px;
top: 0px;
width: 100%;
height: 100%;
display: block;
opacity: 0;
z-index: 99;
background-color: rgba(255,255,255,0.40);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.news-block-four .inner-box:hover .image-column .image a:before{
opacity:1;
}
.news-block-four .inner-box .image-column .image img{
position:relative;
width:100%;
display:block;
}
.news-block-four .inner-box .content-box{
position:relative;
}
.news-block-four .inner-box .content-box .content-inner{
position:relative;
padding-left:10px;
}
.news-block-four .inner-box .content-box .category{
position: relative;
color: #ffffff;
font-size: 12px;
display: inline-block;
padding: 0px 12px;
font-weight: 400;
margin-bottom: 12px;
margin-top:5px;
text-transform: uppercase;
background-color: #222222;
}
.news-block-four .inner-box .content-box .category a{
color:#ffffff;
}
.news-block-four .inner-box .content-box h3{
position:relative;
font-weight:400;
font-size:20px;
line-height:1.5em;
margin-bottom:8px;
}
.news-block-four .inner-box .content-box h3 a{
color:#333333;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-four .inner-box .content-box h3 a:hover{
color:#e73f43;
}
.news-block-four .inner-box .content-box .post-meta{
position:relative;
margin-bottom:10px;
}
.news-block-four .inner-box .content-box .post-meta li{
position:relative;
color:#999999;
font-size:11px;
font-weight:600;
padding-left:20px;
line-height:1em;
margin-right:15px;
display:inline-block;
text-transform:uppercase;
}
.news-block-four .inner-box .content-box .post-meta li .icon{
position:absolute;
left:0px;
top:0px;
font-size:11px;
color:#999999;
}
.news-block-four .inner-box .content-box .text{
position:relative;
color:#777777;
font-size:14px;
}
.news-block-four:last-child{
margin-bottom:0px;
border:0px;
}
/*Search Box Widget*/
.sidebar .search-box .form-group{
position:relative;
margin:0px;
}
.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"]{
position:relative;
line-height:24px;
padding:10px 50px 10px 20px;
border:2px solid #e0e0e0;
background:none;
display:block;
font-size:16px;
width:100%;
height:48px;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.sidebar .search-box .form-group button{
position:absolute;
right:0px;
top:0px;
height:48px;
width:50px;
display:block;
font-size:20px;
color:#e0e0e0;
line-height:100%;
font-weight:normal;
background:none;
}
.sidebar .search-box .form-group input[type="text"]:focus,
.sidebar .search-box .form-group input[type="search"]:focus{
border-color:#e73f43;
}
/*News Block Five*/
.news-block-five{
position:relative;
margin-bottom:30px;
}
.news-block-five .inner-box{
position:relative;
}
.news-block-five .inner-box .image{
position:relative;
background-color:#e9ebee;
}
.news-block-five .inner-box .image a{
position:relative;
display:block;
}
.news-block-five .inner-box .image > a:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
z-index:1;
opacity:0;
background-color:rgba(0,0,0,0.50);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-five:hover .inner-box .image a:before{
opacity:1;
}
.news-block-five .inner-box .image .category{
position:absolute;
left:10px;
bottom:10px;
color:#ffffff;
padding:2px 10px;
display:inline-block;
text-transform:uppercase;
letter-spacing:1px;
font-size:12px;
z-index:2;
background-color:#222222;
}
.news-block-five .inner-box .image .category a{
color:#ffffff;
}
.news-block-five .inner-box .image img{
position:relative;
width:100%;
display:block;
}
.news-block-five .inner-box .lower-box{
position:relative;
padding:20px 0px 0px;
padding-bottom:20px;
border-bottom:1px solid #e7e7e7;
}
.news-block-five .inner-box .lower-box .rating{
position:relative;
margin-bottom:5px;
}
.news-block-five .inner-box .lower-box .rating .fa{
position:relative;
color:#333333;
font-size:15px;
}
.news-block-five .inner-box .lower-box .rating .fa.light{
color:#c5c5c5;
}
.news-block-five .inner-box .lower-box .rating .total-rating{
position:relative;
color:#c5c5c5;
margin-left:5px;
}
.news-block-five .inner-box .lower-box h3{
position:relative;
font-size:20px;
font-weight:400;
line-height:1.4em;
margin-bottom:6px;
font-family: 'Montserrat', sans-serif;
}
.news-block-five .inner-box .lower-box h3 a{
color:#333333;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-five .inner-box .lower-box h3 a:hover{
color:#e83f44;
}
.news-block-five .inner-box .lower-box .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
}
/*Post Widget*/
.widget-post-two{
position:relative;
font-size:14px;
color:#666666;
padding:0px 0px;
min-height:110px;
margin-bottom:30px;
border-bottom:1px solid #eeeeee;
}
.widget-post-two .inner{
position:relative;
padding-left:105px;
}
.widget-post-two:last-child{
margin-bottom:0px;
border:0px;
min-height:80px;
}
.widget-post-two .post-thumb{
position:absolute;
left:0px;
top:0px;
width:85px;
background-color:#e9ebee;
}
.widget-post-two .post-thumb a:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
z-index:1;
opacity:0;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
background-color:rgba(255,255,255,0.50);
}
.widget-post-two:hover .post-thumb a:before{
opacity:1;
}
.widget-post-two .post-thumb img{
display:block;
width:100%;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-post-two .text{
position:relative;
top:-4px;
font-size:15px;
margin:0px 0px 0px;
font-weight:400;
color:#333333;
line-height:1.6em;
text-transform:capitalize;
font-family: 'Montserrat', sans-serif;
}
.widget-post-two .text a{
color:#000000;
font-family: 'Montserrat', sans-serif;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-post-two a,
.widget-post-two a:hover{
color:#e73f43;
}
.widget-post-two .inner .rating{
position:relative;
margin-bottom:5px;
}
.widget-post-two .inner .rating .fa{
position:relative;
color:#333333;
font-size:15px;
}
.widget-post-two .inner .rating .fa.light{
color:#c5c5c5;
}
.widget-post-two .inner .rating .total-rating{
position:relative;
color:#c5c5c5;
margin-left:5px;
}
/*Tweet Block*/
.tweet-block{
position:relative;
}
.tweet-block .inner-box{
position:relative;
text-align:center;
}
.tweet-block .inner-box .tweet-icon{
position:relative;
color:#d9d9d9;
font-size:40px;
line-height:1em;
margin-bottom:15px;
}
.tweet-block .inner-box .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
padding-bottom:10px;
margin-bottom:5px;
}
.tweet-block .inner-box .text:after{
position:absolute;
content:'';
left:50%;
height:1px;
width:70px;
bottom:0px;
margin-left:-35px;
background-color:#e73f43;
}
.tweet-block .inner-box .post-time{
position:relative;
color:#999999;
font-size:11px;
font-weight:600;
text-transform:uppercase;
}
.tweet-widget .owl-nav{
display:none;
}
.tweet-widget .owl-dots{
position: relative;
text-align:center;
margin-top:10px;
}
.tweet-widget .owl-dots .owl-dot{
position:relative;
display:inline-block;
margin:0px 5px;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.tweet-widget .owl-dots .owl-dot span{
position:relative;
display:block;
width:8px;
height:8px;
margin:0px;
border-radius:50%;
background:#d1d1d1;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.tweet-widget .owl-dots .owl-dot.active span,
.tweet-widget .owl-dots .owl-dot:hover span{
background:#e73f43;
}
/*Post Comment Widget*/
.widget-comment-post{
position:relative;
font-size:14px;
color:#666666;
padding:0px 0px;
padding-left:105px;
min-height:110px;
margin-bottom:30px;
border-bottom:1px solid #eeeeee;
}
.widget-comment-post:last-child{
margin-bottom:0px;
border:0px;
min-height:80px;
}
.widget-comment-post .post-thumb{
position:absolute;
left:0px;
top:0px;
width:85px;
}
.widget-comment-post .post-thumb img{
display:block;
width:100%;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-comment-post .text{
position:relative;
top:-4px;
font-size:16px;
margin:0px 0px 0px;
font-weight:400;
color:#333333;
line-height:1.6em;
text-transform:capitalize;
font-family: 'Montserrat', sans-serif;
}
.widget-comment-post .text a{
color:#000000;
font-family: 'Montserrat', sans-serif;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-comment-post a,
.widget-comment-post a:hover{
color:#e73f43;
}
.widget-comment-post .post-info{
position:relative;
font-size:11px;
color:#999999;
font-weight:600;
padding-left:20px;
text-transform:uppercase;
}
.widget-comment-post .post-info:before{
position:absolute;
content: "\e943";
left:0px;
top:1px;
font-size:12px;
color:#999999;
font-weight:300;
font-family: 'quebec';
}
/*Economics Category*/
.economics-category{
position:relative;
margin-bottom:30px;
}
.economics-category .column{
position:relative;
margin-bottom:40px;
}
.economics-category .owl-dots{
position:relative;
display:none;
}
.economics-category .owl-nav{
position:relative;
margin-top:0px;
}
.economics-category .owl-nav .owl-next,
.economics-category .owl-nav .owl-prev{
position:relative;
width:30px;
height:30px;
color:#a7a7a7;
line-height:26px;
text-align:center;
margin-right:6px;
display:inline-block;
border:2px solid #f3f3f3;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.economics-category .owl-nav .owl-next:hover,
.economics-category .owl-nav .owl-prev:hover{
color:#ffffff;
border-color:#e73f43;
background-color:#e73f43;
}
/*Featured Block Section*/
.featured-block-section{
position:relative;
margin-bottom:65px;
}
.featured-block-section .owl-dots{
position: relative;
text-align:center;
margin-top:20px;
}
.featured-block-section .owl-dots .owl-dot{
position:relative;
display:inline-block;
margin:0px 5px;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.featured-block-section .owl-dots .owl-dot span{
position:relative;
display:block;
width:8px;
height:8px;
margin:0px;
border-radius:50%;
background:#d1d1d1;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.featured-block-section .owl-dots .owl-dot.active span,
.featured-block-section .owl-dots .owl-dot:hover span{
background:#e73f43;
}
.featured-block-section .owl-nav .owl-prev,
.featured-block-section .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-40px;
width:44px;
height:44px;
color:#999999;
font-size:20px;
line-height:42px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,1);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.featured-block-section .owl-nav .owl-prev{
left:-22px;
}
.featured-block-section .owl-nav .owl-next{
right:-22px;
}
.featured-block-section .owl-nav .owl-prev:hover,
.featured-block-section .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
/*News Block Six*/
.news-block-six{
position:relative;
}
.news-block-six .inner-box{
position:relative;
}
.news-block-six .inner-box .image-box{
position:relative;
}
.news-block-six .inner-box .image-box .image{
position:relative;
}
.news-block-six .inner-box .image-box .image img{
position:relative;
width:100%;
display:block;
}
.news-block-six .inner-box .image-box .image .overlay-box{
position: absolute;
left: 0px;
top: 0px;
opacity: 1;
width: 100%;
height: 100%;
color: #ffffff;
text-align: center;
}
.news-block-six .inner-box .image-box .image .overlay-box .overlay-inner{
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
display: table;
padding: 10px 30px;
vertical-align: middle;
background:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
}
.news-block-six .inner-box .image-box .image .overlay-box .overlay-inner .content{
position: relative;
display: table-cell;
vertical-align: middle;
}
.news-block-six .inner-box .image-box .image .overlay-box .overlay-inner .content .category{
position: relative;
color: #ffffff;
font-size: 12px;
display: inline-block;
padding: 0px 12px;
font-weight: 400;
margin-bottom: 12px;
text-transform: uppercase;
background-color: #e73f43;
}
.news-block-six .inner-box .image-box .image .overlay-box .overlay-inner .content .category a{
color:#ffffff;
}
.news-block-six .inner-box .image-box .image .overlay-box .overlay-inner .content h2{
position: relative;
font-weight: 700;
font-size: 42px;
line-height: 1.3em;
margin-bottom: 18px;
padding-bottom:15px;
text-transform: uppercase;
}
.news-block-six .inner-box .image-box .image .overlay-box .content h2 a{
color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-six .inner-box .image-box .image .overlay-box .content h2 a:hover{
opacity:0.70;
}
.news-block-six .inner-box .image-box .image .overlay-box .content h2:after{
position:absolute;
content:'';
left:50%;
width:90px;
height:1px;
bottom:0px;
margin-left:-45px;
background-color:#ffffff;
}
.news-block-six .inner-box .image-box .image .overlay-box .content .post-date{
position:relative;
font-size:14px;
font-weight:600;
z-index:1;
color:rgba(255,255,255,0.80);
text-transform:uppercase;
}
.news-block-six .inner-box .image-box .image .overlay-box .content .post-date.margin{
margin-bottom:100px;
}
.about-widget{
position:relative;
}
.about-widget .widget-content{
position:relative;
}
.about-widget .widget-content .inner{
position:relative;
}
.about-widget .widget-content .inner .image{
position:relative;
margin-bottom:30px;
}
.about-widget .widget-content .inner .image img{
position:relative;
width:100%;
display:block;
}
.about-widget .widget-content .inner .name{
position:relative;
color:#999999;
font-size:16px;
letter-spacing:1px;
font-weight:400;
text-align:center;
margin-bottom:30px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.about-widget .widget-content .inner .signature{
position:relative;
font-size:46px;
font-weight:400;
line-height:1em;
color:#333333;
text-align:center;
padding-bottom:20px;
border-bottom:1px solid #eeeeee;
font-family: '<NAME>', cursive;
}
.about-widget .widget-content .inner .text{
position:relative;
color:#777777;
font-size:14px;
margin-top:25px;
}
/*Newsletter Widget*/
.newsletter-widget{
position:relative;
margin-bottom:60px;
}
.newsletter-widget .inner-box{
position:relative;
padding:40px 30px 20px;
background-color:#e73f43;
}
.newsletter-widget .inner-box h2{
position:relative;
font-size:14px;
font-weight:400;
color:#ffffff;
letter-spacing:1px;
text-align:center;
padding-bottom:18px;
margin-bottom:30px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.newsletter-widget .inner-box h2:after{
position:absolute;
content:'';
left:50%;
bottom:0px;
width:65px;
height:2px;
margin-left:-32px;
background-color:#ffffff;
}
.newsletter-widget .form-group{
position:relative;
display:block;
}
.newsletter-widget .form-group input[type="text"],
.newsletter-widget .form-group input[type="tel"],
.newsletter-widget .form-group input[type="email"],
.newsletter-widget .form-group textarea{
position:relative;
display:block;
width:100%;
line-height:20px;
height:50px;
font-size:14px;
color:#777777;
font-style:italic;
padding:10px 50px 10px 20px;
background:#ffffff;
text-align:center;
margin-bottom:18px;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.newsletter-widget .form-group input[type="submit"],
.newsletter-widget button{
position:relative;
right:0px;
top:0px;
width:100%;
height:50px;
line-height:50px;
color:#ffffff;
font-size:12px;
text-align:center;
background:#333333;
letter-spacing:2px;
font-weight:400;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
/*Popular Tags*/
.popular-tags-two a{
position:relative;
display:inline-block;
line-height:24px;
padding:4px 12px 4px;
margin:0px 0px 4px 0px;
color:#ffffff;
text-align:center;
font-size:11px;
font-weight:600;
background:#adaeaf;
letter-spacing:1px;
text-transform:uppercase;
transition:all 300ms ease;
-o-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-moz-transition:all 300ms ease;
-webkit-transition:all 300ms ease;
}
.popular-tags-two a:hover{
color:#ffffff;
background-color:#e73f43;
}
/*News Block Seven*/
.news-block-seven{
position:relative;
margin-bottom:70px;
}
.news-block-seven .inner-box{
position:relative;
}
.news-block-seven .inner-box .image{
position:relative;
}
.news-block-seven .inner-box .image > a{
position:relative;
display:block;
}
.news-block-seven .inner-box .image > a:before{
position: absolute;
content: '';
left: 0px;
top: 0px;
width: 100%;
height: 100%;
display: block;
opacity: 0;
z-index: 1;
background-color: rgba(255,255,255,0.40);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.news-block-seven .inner-box:hover .image > a:before{
opacity:1;
}
.news-block-seven .inner-box .image .category{
position:absolute;
left:10px;
bottom:10px;
color:#ffffff;
padding:2px 10px;
display:inline-block;
text-transform:uppercase;
letter-spacing:1px;
font-size:12px;
z-index:1;
background-color:#222222;
}
.news-block-seven .inner-box .image .category a{
color:#ffffff;
}
.news-block-seven .inner-box .image .owl-dots{
display:none;
}
.news-block-seven .inner-box .image .owl-nav{
position:absolute;
right:0px;
bottom:0px;
}
.news-block-seven .inner-box .image .owl-nav .owl-next,
.news-block-seven .inner-box .image .owl-nav .owl-prev{
background-color:rgba(255,255,255,0.80);
width:43px;
height:43px;
color:#9b9b9b;
font-size:16px;
margin-top:1px;
line-height:43px;
text-align:center;
}
.news-block-seven .inner-box .image img{
position:relative;
width:100%;
display:block;
}
.news-block-seven .inner-box .lower-box{
position:relative;
padding:30px 0px 0px;
padding-bottom:40px;
border-bottom:1px solid #eeeeee;
}
.news-block-seven .inner-box .lower-box h3{
position:relative;
font-size:32px;
font-weight:400;
line-height:1.4em;
margin-bottom:12px;
font-family: 'Montserrat', sans-serif;
}
.news-block-seven .inner-box .lower-box h3 a{
color:#333333;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-seven .inner-box .lower-box h3 a:hover{
color:#e83f44;
}
.news-block-seven .inner-box .lower-box .post-meta{
position:relative;
margin-bottom:12px;
}
.news-block-seven .inner-box .lower-box .post-meta li{
position:relative;
color:#999999;
font-weight:600;
font-size:11px;
padding-left:18px;
display:inline-block;
margin-right:20px;
letter-spacing:1px;
text-transform:uppercase;
}
.news-block-seven .inner-box .lower-box .post-meta li .icon{
position:absolute;
left:0px;
top:1px;
font-size:12px;
color:#999999;
}
.news-block-seven .inner-box .lower-box .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
margin-bottom:25px;
}
.news-block-seven:last-child .inner-box .lower-box{
border:0px;
padding-bottom:0px;
margin-bottom:0px;
}
.news-block-seven.style-two .lower-box h3{
font-size:26px;
}
.instagram-gallery{
position:relative;
}
.instagram-gallery h2{
position:relative;
color:#999999;
font-size:14px;
letter-spacing:1px;
padding:30px 0px;
text-align:center;
font-weight:500;
background-color:#fbfbfb;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.default-portfolio-item{
position:relative;
width:20%;
float:left;
}
.default-portfolio-item .inner-box{
position:relative;
width:100%;
overflow:hidden;
}
.default-portfolio-item .inner-box:hover .image-box img{
-webkit-transform : scale(1.2,1.2);
-ms-transform : scale(1.2,1.2);
transform : scale(1.2,1.2);
}
.default-portfolio-item .image-box{
position:relative;
display:block;
}
.default-portfolio-item .image-box img{
position:relative;
display:block;
width:100%;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
.default-portfolio-item .overlay-box{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
padding:0px;
color:#ffffff;
opacity:0;
text-align:center;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
.default-portfolio-item .inner-box:hover .overlay-box{
top:0px;
opacity:1;
}
.default-portfolio-item .overlay-inner{
position:absolute;
left:0px;
top:0px;
width:101%;
height:101%;
display:table;
padding:10px 20px;
vertical-align:middle;
background:rgba(231,63,67,0.80);
}
.default-portfolio-item .overlay-inner .content{
position:relative;
display:table-cell;
vertical-align:middle;
}
.default-portfolio-item .overlay-inner .option-btn{
position:relative;
display:inline-block;
line-height:44px;
color:#222222;
font-size:15px;
width:44px;
height:44px;
margin:0px 3px;
background:#ffffff;
border-radius:50%;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
.default-portfolio-item .overlay-inner .option-btn:hover{
background:rgba(231,63,67,0.90);
color:#ffffff;
}
/*News Block Three*/
.news-block-eight{
position:relative;
}
.news-block-eight .inner-box{
position:relative;
overflow:hidden;
}
.news-block-eight .inner-box:hover .image img{
-webkit-transform : scale(1.2,1.2);
-ms-transform : scale(1.2,1.2);
transform : scale(1.2,1.2);
}
.news-block-eight .inner-box .image{
position:relative;
}
.news-block-eight .inner-box .image img{
position:relative;
width:100%;
display:block;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.news-block-eight .inner-box .image .overlay-box{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
text-align:center;
background:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
}
.news-block-eight .inner-box .image .overlay-box .content{
position:absolute;
content:'';
left:0px;
bottom:0px;
padding:0px 15px 40px 15px;
}
.news-block-eight .inner-box .image .overlay-box .content .tag{
position: relative;
color: #ffffff;
font-size: 12px;
display: inline-block;
padding: 0px 12px;
font-weight: 400;
margin-bottom: 12px;
text-transform: uppercase;
background-color: #e73f43;
}
.news-block-eight .inner-box .image .overlay-box .content .tag a{
color:#ffffff;
}
.news-block-eight .inner-box .image .overlay-box .content h3{
position:relative;
font-weight:700;
font-size:24px;
line-height:1.6em;
margin-bottom:8px;
text-transform:uppercase;
}
.news-block-eight .inner-box .image .overlay-box .content h3 a{
color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-eight .inner-box .image .overlay-box .content h3 a:hover{
opacity:0.70;
}
.news-block-eight .inner-box .image .overlay-box .content .post-meta{
position:relative;
}
.news-block-eight .inner-box .image .overlay-box .content .post-meta li{
position:relative;
color:#ffffff;
font-size:11px;
font-weight:600;
padding-left:20px;
line-height:1em;
margin-right:15px;
display:inline-block;
text-transform:uppercase;
}
.news-block-eight .inner-box .image .overlay-box .content .post-meta li .icon{
position:absolute;
left:0px;
top:0px;
font-size:11px;
color:#ffffff;
}
/*Blog Gallery*/
.blog-gallery{
position:relative;
padding:100px 0px 20px;
}
.main-slider-five .product-details .image-column .image-carousel{
position:relative;
}
.main-slider-five .product-details .image-column,
.main-slider-five .product-details .info-column{
margin-bottom:0px;
}
.main-slider-five .product-details .image-column .carousel-outer{
position:relative;
}
.main-slider-five .product-details .info-column .add-to-cart{
margin-bottom:10px;
margin-right:10px;
}
.main-slider-five .product-details .image-column .image-box img{
position:relative;
display:block;
width:100%;
}
.main-slider-five .product-details .image-column .thumbs-carousel{
position:absolute;
left:0px;
bottom:0px;
}
.main-slider-five .product-details .image-column .thumbs-carousel .owl-stage-outer{
padding-top:10px;
}
.main-slider-five .product-details .image-column .thumbs-carousel li{
cursor:pointer;
color:#ffffff;
font-size:15px;
text-align:center;
padding:30px 25px;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
text-transform:uppercase;
border-top:1px solid rgba(255,255,255,0.20);
border-right:1px solid rgba(255,255,255,0.20);
font-family: 'Montserrat', sans-serif;
}
.main-slider-five .product-details .image-column .thumbs-carousel li img{
width:100%;
display:inline-block;
border:1px solid #ededed;
}
.main-slider-five .product-details .image-column .thumbs-carousel .owl-item.active:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:1px;
opacity:0;
background-color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.main-slider-five .product-details .image-column .thumbs-carousel .owl-item.active:after{
position:absolute;
content:'';
left:50%;
top:-9px;
opacity:0;
border-bottom: 10px solid #ffffff;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.main-slider-five .product-details .image-column .thumbs-carousel .owl-item:hover::before,
.main-slider-five .product-details .image-column .thumbs-carousel .owl-item:hover::after{
opacity:1;
}
.main-slider-five .product-details .image-column .owl-dots{
display:none;
}
.main-slider-five .product-details .image-column .owl-nav{
position:absolute;
left:0px;
top:50%;
width:100%;
margin-top:-40px;
}
.main-slider-five .product-details .image-column .owl-nav .owl-prev,
.main-slider-five .product-details .image-column .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-20px;
width:44px;
height:44px;
color:#ffffff;
font-size:20px;
line-height:40px;
text-align:center;
font-weight:700;
border:2px solid rgba(255,255,255,0.40);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-slider-five .product-details .image-column .owl-nav .owl-prev{
left:20px;
}
.main-slider-five .product-details .image-column .owl-nav .owl-next{
right:20px;
}
.main-slider-five .product-details .image-column .owl-nav .owl-prev:hover,
.main-slider-five .product-details .image-column .owl-nav .owl-next:hover{
color:#ffffff;
border-color:#e73f43;
background-color:#e73f43;
}
/***
====================================================================
Gallery Section
====================================================================
***/
.galley-section{
position:relative;
padding:90px 0px 90px;
}
.galley-section .row{
position:relative;
margin:0px -2px;
}
.galley-section .row .column{
padding:0px 2px;
}
.galley-section .column{
position:relative;
}
.default-gallery-block{
position:relative;
overflow:hidden;
}
.default-gallery-block .inner-box{
position:relative;
overflow:hidden;
}
.default-gallery-block .inner-box .text{
position:absolute;
left:0px;
bottom:-100px;
width:100%;
color:#ffffff;
font-size:14px;
letter-spacing:1px;
text-transform:uppercase;
padding:12px 0px;
text-align:center;
background-color:rgba(0,0,0,0.80);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.default-gallery-block .inner-box:hover .text{
bottom:0px;
}
.default-gallery-block .inner-box img{
position:relative;
width:100%;
display:block;
}
.galley-section .column .inner-column{
position:relative;
padding:0px 2px;
margin-bottom:4px;
}
.galley-section .owl-dots{
display:none;
}
.galley-section .owl-nav .owl-prev,
.galley-section .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-40px;
width:44px;
height:44px;
color:#999999;
font-size:20px;
line-height:42px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,1);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.galley-section .owl-nav .owl-prev{
left:-22px;
}
.galley-section .owl-nav .owl-next{
right:-22px;
}
.galley-section .owl-nav .owl-prev:hover,
.galley-section .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
.main-slider-six{
position:relative;
padding:50px 0px;
}
.main-slider-six .default-tab-box{
position:relative;
overflow:hidden;
background-color:#27292d;
}
.main-slider-six .default-tab-box .column{
padding:0px;
}
.main-slider-six .default-tab-box .tab-btns{
position:relative;
z-index:1;
padding:0px 0px 0px 0px;
margin-bottom:0px;
height: 617px;
}
.mCustomScrollBox,
#mCSB_1_container{
overflow:visible;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn .date{
position:relative;
color:#b7b7b7;
font-size:13px;
font-weight:400;
display:block;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn{
position:relative;
display:block;
cursor:pointer;
margin-bottom:0px;
padding:30px 0px;
padding-left:30px;
transition:all 500ms ease;
border-bottom:1px solid rgba(255,255,255,0.20);
}
.main-slider-six .default-tab-box .tab-btns .tab-btn .widget-post .text a{
color:#ffffff;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn .image img{
width:auto;
display:inline-block;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn .icon{
position:relative;
margin-right:20px;
font-size:20px;
line-height:1em;
top:2px;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn:hover::before,
.main-slider-six .default-tab-box .tab-btns .tab-btn.active-btn:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:4px;
height:100%;
background-color:#e73f43;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn:hover::after,
.main-slider-six .default-tab-box .tab-btns .tab-btn.active-btn:after{
position:absolute;
content:'';
left:-10px;
top:50%;
margin-top:-10px;
border-top: 8px solid transparent;
border-right: 12px solid #e73f43;
border-bottom: 8px solid transparent;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn.active-btn,
.main-slider-six .default-tab-box .tab-btns .tab-btn:hover{
}
.main-slider-six .default-tab-box .tab-btns .tab-btn:hover::before,
.main-slider-six .default-tab-box .tab-btns .tab-btn.active-btn::before{
opacity:1;
}
.main-slider-six .default-tab-box .tabs-content{
position:relative;
padding:0px;
background-color:#fafafa;
}
.main-slider-six .default-tab-box .tabs-content .tab{
position:relative;
padding:0px;
display:none;
}
.main-slider-six .default-tab-box .tabs-content .tab .content .image img{
width:100%;
display:block;
}
.main-slider-six .default-tab-box .tabs-content .tab.active-tab{
display:block;
}
.blog-single-slider{
position:relative;
padding:60px 0px;
}
/*Video Box*/
.video-box{
position:relative;
}
.video-box .image img{
position:relative;
width:100%;
}
.video-box .overlay-box{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
text-align:center;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.video-box:hover .overlay-box{
background-color:rgba(0,0,0,0.30);
}
.video-box .overlay-box span{
position: relative;
width:80px;
height:80px;
top: 46%;
z-index:99;
color: #ffffff;
font-weight:300;
font-size:24px;
margin-top: -20px;
text-align: center;
border-radius:50%;
line-height:72px;
padding-left:4px;
display: inline-block;
border:4px solid #ffffff;
}
.blog-single-slider .owl-dots{
display:none;
}
.blog-single-slider .owl-nav .owl-prev,
.blog-single-slider .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-40px;
width:44px;
height:44px;
color:#999999;
font-size:20px;
line-height:42px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,1);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.blog-single-slider .owl-nav .owl-prev{
left:-22px;
}
.blog-single-slider .owl-nav .owl-next{
right:-22px;
}
.blog-single-slider .owl-nav .owl-prev:hover,
.blog-single-slider .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
.blog-single{
position:relative;
}
.breadcrumb-bar{
position:relative;
margin-bottom:10px;
}
.breadcrumb-bar li{
position:relative;
color:#777777;
font-size:13px;
padding-right:12px;
margin-right:12px;
margin-bottom:6px;
display:inline-block;
}
.breadcrumb-bar li:after{
position:absolute;
content:'\f105';
right:0px;
top:0px;
font-size:13px;
color:#777777;
font-family: 'FontAwesome';
}
.breadcrumb-bar li:last-child:after{
display:none;
}
.breadcrumb-bar li a{
position:relative;
color:#777777;
font-size:13px;
display:inline-block;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.breadcrumb-bar li a:hover{
color:#e73f43;
}
.tag-title{
position:relative;
}
.tag-title li{
position:relative;
color:#ffffff;
font-size:12px;
padding:2px 10px;
letter-spacing:1px;
margin-right:4px;
margin-bottom:4px;
text-transform:uppercase;
display:inline-block;
background-color:#e73f43;
font-family: 'Montserrat', sans-serif;
}
.tag-title li:nth-child(2){
background-color:#222222;
}
.blog-single .inner-box{
position:relative;
}
.blog-single .inner-box h2{
position:relative;
color:#333333;
font-size:34px;
line-height:1.6em;
font-weight:700;
margin-top:20px;
margin-bottom:10px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.blog-single .inner-box .post-meta{
position:relative;
margin-bottom:25px;
}
.blog-single .inner-box .post-meta li{
position:relative;
color:#999999;
font-weight:600;
font-size:11px;
padding-left:18px;
display:inline-block;
margin-right:20px;
letter-spacing:1px;
line-height:1em;
margin-bottom:6px;
text-transform:uppercase;
}
.blog-single .inner-box .post-meta li .icon{
position:absolute;
left:0px;
top:0px;
font-size:12px;
color:#999999;
}
.blog-single .inner-box .social-icon-one.alternate li:nth-child(4n + 0){
margin-right:6px;
}
.blog-single .inner-box .upper-box{
position:relative;
padding-bottom:28px;
margin-bottom:30px;
border-bottom:2px solid #ededed;
}
.blog-single .inner-box .text{
position:relative;
}
.blog-single .inner-box .text p{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
margin-bottom:28px;
}
.blog-single .inner-box .text .image{
position:relative;
}
.blog-single .inner-box .text .image img{
width:100%;
}
.blog-single .inner-box .text blockquote{
position:relative;
color:#999999;
font-size:22px;
padding-top:0px;
padding-bottom:0px;
line-height:1.5em;
font-style:italic;
margin-top:50px;
margin-bottom:50px;
border-color:#e73f43;
}
/*post share options*/
.blog-single .inner-box .post-share-options{
position:relative;
margin-bottom:35px;
padding:10px 0px 0px;
}
.blog-single .inner-box .post-share-options .tags a{
position:relative;
color:#ffffff;
font-size:11px;
font-weight:600;
padding:4px 12px;
letter-spacing:1px;
margin-right:5px;
display:inline-block;
text-transform:uppercase;
background-color:#98999b;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.blog-single .inner-box .post-share-options .tags a:hover{
color:#ffffff;
background-color:#313438;
}
.blog-single .inner-box .new-article{
position:relative;
padding:20px 0px;
margin-top:30px;
display:block;
border-top:2px solid #ededed;
border-bottom:2px solid #ededed;
}
.blog-single .inner-box .new-article li{
position:relative;
width:50%;
float:left;
text-align:center;
display:inline-block;
}
.blog-single .inner-box .new-article li a{
font-weight:600;
color:#999999;
letter-spacing:1px;
padding:18px 0px;
display:block;
text-transform:uppercase;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.blog-single .inner-box .new-article li a:hover{
color:#e73f43;
}
.blog-single .inner-box .new-article li a .fa{
font-size:20px;
}
.blog-single .inner-box .new-article li:first-child a{
border-right:2px solid #ededed;
}
/*Author Box*/
.author-box{
position:relative;
margin-top:80px;
margin-bottom:50px;
}
.author-box .author-comment{
position:relative;
padding:35px 30px 30px;
background-color:#f9f9f9;
}
.author-box .author-comment .inner-box{
position:relative;
padding-left:110px;
}
.author-box .author-comment .inner-box .image{
position:absolute;
left:0px;
top:0px;
width:80px;
}
.author-box .author-comment .inner-box h4{
position:relative;
color:#e73f43;
font-size:16px;
font-weight:400;
margin-bottom:5px;
letter-spacing:2px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.author-box .author-comment .inner-box .text{
position:relative;
color:#777777;
font-size:14px;
font-weight:400;
line-height:1.7em;
margin-bottom:10px;
}
/*Related Posts*/
.related-posts{
position:relative;
margin-bottom:30px;
}
.related-item-carousel{
position:relative;
}
.related-item-carousel .owl-dots{
position:relative;
display:none;
}
.related-item-carousel .owl-nav{
position:absolute;
right:0px;
top:-76px;
display:inline-block;
background-color:#ffffff;
}
.related-item-carousel .owl-nav .owl-next,
.related-item-carousel .owl-nav .owl-prev{
position:relative;
width:34px;
height:34px;
color:#a8a8a8;
text-align:center;
line-height:30px;
display:inline-block;
margin-left:6px;
background-color:#ffffff;
border:2px solid #f3f3f3;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.related-item-carousel .owl-nav .owl-next:hover,
.related-item-carousel .owl-nav .owl-prev:hover{
color:#ffffff;
border-color:#e73f43;
background-color:#e73f43;
}
/*Comment Box*/
.comment-box{
position:relative;
margin-bottom:35px;
padding:40px 40px 35px;
background-color:#f9f9f9;
}
.comment-box.reply-comment{
position:relative;
margin-left:45px;
}
.comment-box .comment{
position:relative;
padding-left:100px;
}
.comment-box .comment .author-thumb{
position:absolute;
left:0px;
top:0px;
width:80px;
height:80px;
}
.comment-box .comment .comment-inner{
position:relative;
}
.comment-box .comment .comment-inner .rating{
position:absolute;
right:0px;
top:0px;
}
.comment-box .comment .comment-inner .rating .fa{
position:relative;
color:#333333;
font-size:14px;
display:inline-block;
}
.comment-box .comment .comment-inner .rating .fa.light{
color:#c5c5c5;
}
.comment-box .comment .comment-inner .comment-info{
position:relative;
color:#333333;
font-size:16px;
letter-spacing:1px;
margin-bottom:5px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.comment-box .comment .comment-inner .post-date{
position:relative;
color:#999999;
font-size:11px;
font-weight:600;
letter-spacing:1px;
line-height:1em;
margin-bottom:8px;
text-transform:uppercase;
}
.comment-box .comment .comment-inner .text{
position:relative;
color:#777777;
font-size:14px;
}
.comment-box .comment .comment-inner .reply-btn{
position:absolute;
right:0px;
top:0px;
color:#999999;
font-size:11px;
font-weight:500;
padding:6px 12px;
line-height:1em;
display:inline-block;
letter-spacing:1px;
text-transform:uppercase;
border:2px solid #e9e9e9;
font-family: 'Montserrat', sans-serif;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.comment-box .comment .comment-inner .reply-btn:hover{
color:#ffffff;
border-color:#e73f43;
background-color:#e73f43;
}
/***
====================================================================
Comment Form
====================================================================
***/
.comment-form{
position:relative;
}
.comment-form .form-group{
margin-bottom:28px;
}
.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="email"],
.comment-form .form-group select{
position:relative;
display:block;
width:100%;
line-height:26px;
padding:10px 20px;
height:50px;
color:#a5a5a5;
font-size:14px;
font-weight:600;
background-color:#ffffff;
border:2px solid #e0e0e0;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group textarea:focus{
border-color:#e73f43;
}
.comment-form .form-group textarea{
position:relative;
display:block;
width:100%;
line-height:24px;
padding:20px 20px;
color:#a5a5a5;
height:120px;
font-size:15px;
resize:none;
background-color:#ffffff;
border:2px solid #e0e0e0;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.comment-form button{
font-weight:400;
padding:11px 30px;
color:#ffffff;
font-size:13px;
letter-spacing:1px;
text-transform:uppercase;
background-color:#a1a1a1;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.comment-form button:hover{
background-color:#e73f43;
}
/*Blog Single Gallery*/
.blog-single-gallery{
position:relative;
padding:60px 0px;
}
.blog-single .inner-box .rating-box{
position:relative;
}
.blog-single .inner-box .rating-box .inner{
position:relative;
padding:40px 70px;
margin-bottom:60px;
background-color:#f7f7f7;
}
.blog-single .inner-box .rating-box .inner .raing-info{
position:relative;
}
.blog-single .inner-box .rating-box .inner .raing-info li{
position:relative;
color:#777777;
font-size:14px;
letter-spacing:1px;
padding-left:22px;
padding-bottom:25px;
margin-bottom:25px;
text-transform:uppercase;
border-bottom:1px dashed #cccccc;
font-family: 'Montserrat', sans-serif;
}
.blog-single .inner-box .rating-box .inner .raing-info li:before{
position:absolute;
content:'';
left:0px;
top:10px;
width:5px;
height:5px;
background-color:#c5c5c5;
}
.blog-single .inner-box .rating-box .inner .raing-info li .fa{
position:relative;
color:#333333;
font-size:16px;
}
.blog-single .inner-box .rating-box .inner .raing-info li .fa .total-rating{
position:relative;
color:#999999;
font-family: 'Montserrat', sans-serif;
}
.blog-single .inner-box .rating-box .inner .raing-info li .fa .light{
color:#c5c5c5;
}
.blog-single .inner-box .rating-box .inner .raing-info .rating-text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.6em;
}
.blog-single .inner-box .rating-box .inner .raing-info .rating-detail{
position:relative;
padding-bottom:30px;
margin-bottom:30px;
border-bottom:1px dashed #cccccc;
}
.blog-single .inner-box .rating-box .inner .raing-info .rating-detail .rating-block{
background-color:#e73f43;
text-align:center;
color:#ffffff;
padding:30px 0px;
}
.blog-single .inner-box .rating-block .rank-rate{
color:#ffffff;
font-size:42px;
font-weight:600;
line-height:1em;
margin-bottom:10px;
}
.blog-single .inner-box .rating-block .light{
color:rgba(255,255,255,0.50);
}
/***
====================================================================
Page Title
====================================================================
***/
.page-title{
position:relative;
padding:38px 0px 35px;
background-color:#f8f8f8;
}
.page-title h2{
position:relative;
color:#777777;
font-size:18px;
}
.page-title-breadcrumb{
position:relative;
}
.page-title-breadcrumb li{
position:relative;
padding-right:12px;
margin-right:12px;
display:inline-block;
color:#777777;
font-size:13px;
text-transform:capitalize;
}
.page-title-breadcrumb li:last-child{
padding-right:0px;
margin-right:0px;
}
.page-title-breadcrumb li:last-child a:after{
display:none;
}
.page-title-breadcrumb li a:after{
position:absolute;
content:'\f105';
right:-15px;
top:9px;
color:#d3d3d3;
line-height:1px;
font-family: 'FontAwesome';
}
.page-title-breadcrumb li a{
position:relative;
color:#777777;
font-size:13px;
text-transform:capitalize;
}
.page-title-breadcrumb li a .fa{
position:relative;
top:3px;
color:#d3d3d3;
font-size:22px;
margin-right:15px;
line-height:1em;
}
/***
====================================================================
Shop Section
====================================================================
***/
.shop-section{
position:relative;
padding:80px 0px 100px;
}
.shop-section .items-sorting{
position:relative;
margin-bottom:50px;
}
.shop-section .items-sorting .results-column,
.shop-section .items-sorting .select-column{
margin-bottom:20px;
}
.shop-section .items-sorting .results-column h4{
font-size:16px;
font-weight:400;
color:#777777;
line-height:24px;
padding:13px 0px;
text-align:right;
font-family: 'Open Sans', sans-serif;
}
.shop-section .items-sorting .form-group{
margin-bottom:0px;
}
.shop-section .items-sorting select{
position:relative;
display:block;
width:100%;
line-height:22px;
padding:10px 15px 10px;
height:44px;
font-size:14px;
max-width:280px;
border:2px solid #e0e0e0;
cursor:pointer;
-moz-appearance:none;
-webkit-appearance:none;
-ms-appearance:none;
-o-appearance:none;
background:url(../images/icons/icon-select.jpg) right center no-repeat;
color:#999999;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.shop-section .items-sorting select option{
text-indent:15px;
}
/*Shop Item*/
.shop-item{
position:relative;
margin-bottom:55px;
}
.shop-item .inner-box{
position:relative;
}
.shop-item .inner-box .off-price{
position:absolute;
left:14px;
top:-22px;
width:54px;
height:54px;
color:#ffffff;
line-height:54px;
text-align:center;
border-radius:50%;
z-index:1;
font-size:13px;
background-color:#e75053;
font-family: 'Montserrat', sans-serif;
}
.shop-item .inner-box .sold-out{
position:absolute;
left:14px;
top:-22px;
width:54px;
height:54px;
color:#ffffff;
line-height:16px;
text-align:center;
border-radius:50%;
z-index:1;
padding-top:12px;
font-size:12px;
text-transform:uppercase;
background-color:#333333;
font-family: 'Montserrat', sans-serif;
}
.shop-item .inner-box .image-box{
position:relative;
text-align:center;
}
.shop-item .inner-box .image-box img{
position:relative;
width:100%;
display:block;
}
.shop-item .inner-box .lower-box{
position:relative;
text-align:center;
padding:25px 18px 0px;
border:1px solid #e0e0e0;
border-top:0px;
}
.shop-item .inner-box .lower-box .upper-box{
position:relative;
}
.shop-item .inner-box .lower-box .upper-box h4{
position:relative;
font-size:14px;
font-weight:600;
margin-bottom:25px;
letter-spacing:1px;
line-height:1.8em;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.shop-item .inner-box .lower-box .upper-box h4 a{
color:#333333;
transition:all 0.6s ease;
-moz-transition:all 0.6s ease;
-webkit-transition:all 0.6s ease;
-ms-transition:all 0.6s ease;
-o-transition:all 0.6s ease;
}
.shop-item .inner-box .lower-box .upper-box h4 a:hover{
color:#e73f43;
}
.shop-item .inner-box .lower-box .lower-content{
position:relative;
padding:9px 0px 11px;
text-align:center;
border-top:1px solid #efefef;
}
.shop-item .inner-box .lower-box .lower-content .price{
color:#e73f43;
font-size:16px;
font-weight:500;
margin:6px 0px;
font-family: 'Montserrat', sans-serif;
}
.shop-item .inner-box .lower-box .lower-content .price .discount-price{
color:#a9a9a9;
margin-right:5px;
text-decoration:line-through;
}
.shop-item .inner-box .lower-box .lower-content .cart-btn{
position:absolute;
left:0px;
top:8px;
color:#ffffff;
padding:8px 0px;
width:100%;
opacity:0;
display:block;
font-size:12px;
letter-spacing:1px;
text-transform:uppercase;
background-color:#e73f43;
transition:all 0.6s ease;
-moz-transition:all 0.6s ease;
-webkit-transition:all 0.6s ease;
-ms-transition:all 0.6s ease;
-o-transition:all 0.6s ease;
}
.shop-item .inner-box:hover .lower-box .lower-content .cart-btn{
opacity:1;
}
.shop-item .inner-box .lower-box .lower-content .cart-btn:hover{
background-color:#444444;
}
/*Shop Single Page*/
.shop-page{
position:relative;
padding-top:100px;
padding-bottom:80px;
}
.basic-details .image-column{
position:relative;
margin-bottom:50px;
}
.shop-page .basic-details .image-column .carousel-outer .thumbs-carousel{
padding:10px 0px;
}
.shop-page .basic-details .image-column .carousel-outer .thumbs-carousel li img{
width:100%;
cursor:pointer;
}
.shop-page .basic-details .info-column .inner-column{
padding-left:15px;
}
.shop-page .basic-details .details-header{
position:relative;
margin-bottom:0px;
}
.shop-page .basic-details .details-header h4{
font-size:24px;
font-weight:700;
margin:0px 0px;
line-height:1.4em;
color:#333333;
margin-bottom:15px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.shop-page .basic-details .details-header .rating{
font-size:16px;
margin-bottom:10px;
display:inline-block;
}
.shop-page .basic-details .details-header .rating span{
color:#333333;
}
.shop-page .basic-details .details-header .rating .fa{
display:inline-block;
margin-right:1px;
}
.shop-page .basic-details .details-header .rating .fa.light{
color:#dadada;
}
.shop-page .basic-details .item-price{
position:relative;
font-size:26px;
font-weight:400;
color:#e73f43;
line-height:24px;
letter-spacing:1px;
margin-top:5px;
margin-bottom:15px;
font-family: 'Montserrat', sans-serif;
}
.shop-page .basic-details .item-price span{
position:relative;
color:#a9a9a9;
text-decoration:line-through;
}
.shop-page .basic-details .details-header .reviews{
position:relative;
margin-left:10px;
display:inline-block;
}
.shop-page .basic-details .details-header .reviews .separater{
color:#acacac;
margin:0px 6px;
}
.shop-page .basic-details .details-header .reviews a{
position:relative;
color:#a2a2a2;
font-size:15px;
letter-spacing:1px;
text-transform:uppercase;
}
.shop-page .basic-details .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
margin-bottom:25px;
}
.items-form .form-group{
margin-bottom:20px;
}
.items-form .form-group label{
position: relative;
width:90px;
text-align:right;
top: -4px;
color: #777777;
font-size: 13px;
font-weight: 400;
line-height: 30px;
letter-spacing: 2px;
margin-right: 15px !important;
text-transform: uppercase;
font-family: 'Montserrat', sans-serif;
}
.items-form .form-group select{
position:relative;
display:inline-block;
line-height:22px;
padding:10px 15px 10px;
height:44px;
font-size:14px;
width:370px;
border:2px solid #e0e0e0;
cursor:pointer;
-moz-appearance:none;
-webkit-appearance:none;
-ms-appearance:none;
-o-appearance:none;
background:url(../images/icons/icon-select.jpg) right center no-repeat;
color:#999999;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.items-form .form-group select option{
text-indent:15px;
}
.shop-page .basic-details .info-column .other-options .btns-box{
position:relative;
margin-left:28px;
margin-top:28px;
}
.shop-page .basic-details .info-column .other-options .btns-box input[type="text"]{
position:relative;
width:48px;
height:46px;
text-align:center;
line-height:46px;
margin-right:30px;
background-color:#ffffff;
border:2px solid #ededed;
}
.shop-page .basic-details .info-column .other-options .btns-box .add-to-cart{
position:relative;
color:#ffffff;
font-size:13px;
padding:10px 40px;
letter-spacing:1px;
display:inline-block;
text-transform:uppercase;
background-color:#a1a1a1;
font-family: 'Montserrat', sans-serif;
}
.shop-page .basic-details .info-column .other-options .btns-box .add-to-cart .icon{
position:relative;
margin-right:10px;
font-size:20px;
top:4px;
}
.shop-page .basic-details .info-column .inner-column .tags-box{
position:relative;
padding-top:20px;
margin-top:30px;
border-top:1px dashed #cccccc;
}
.shop-page .basic-details .info-column .inner-column .tags-box li{
position:relative;
color:#999999;
font-size:12px;
letter-spacing:1px;
display:inline-block;
margin-right:30px;
text-transform:uppercase;
}
.shop-page .basic-details .info-column .inner-column .tags-box li a{
position:relative;
color:#333333;
letter-spacing:1px;
text-transform:uppercase;
}
/***
====================================================================
Product Tabs Style
====================================================================
***/
.shop-page .product-info-tabs{
position:relative;
padding:20px 0px;
}
.shop-page .product-info-tabs .prod-tabs{
position:relative;
}
.shop-page .product-info-tabs .prod-tabs .tab-btns{
position:relative;
z-index:1;
background-color:#fafafa;
border-bottom:2px solid #eeeeee;
}
.shop-page .product-info-tabs .prod-tabs .tab-btns .tab-btn{
position:relative;
top:1px;
display:block;
float:left;
margin-right:0px;
font-size:14px;
color:#999999;
text-transform:uppercase;
font-weight:700;
line-height:24px;
cursor:pointer;
letter-spacing:2px;
padding:10px 48px 11px;
border:2px solid transparent;
transition:all 500ms ease;
}
.shop-page .product-info-tabs .prod-tabs .tab-btns .tab-btn.active-btn:after{
position:absolute;
content:'';
left:0px;
bottom:-3px;
width:100%;
height:3px;
background-color:#ffffff;
}
.shop-page .product-info-tabs .prod-tabs .tab-btns .tab-btn.active-btn{
color:#222222;
background:#ffffff;
border:2px solid #e0e0e0;
}
.shop-page .product-info-tabs .prod-tabs .tabs-content{
position:relative;
}
.shop-page .product-info-tabs .prod-tabs .tabs-content .tab{
position:relative;
padding:70px 0px 0px;
display:none;
border-top:0px;
background-color:#ffffff;
}
.shop-page .product-info-tabs .prod-tabs .tabs-content .tab.active-tab{
display:block;
}
.shop-page .product-info-tabs .prod-tabs .tabs-content .tab .content p{
color:#777777;
font-size:14px;
margin-bottom:20px;
}
/*Comment Form*/
.shop-comment-form{
position:relative;
margin-top:80px;
}
.shop-comment-form .rating-box{
position:relative;
margin-bottom:30px;
}
.shop-comment-form .rating-box .text{
position:relative;
font-size:16px;
color:#777777;
margin-bottom:10px;
}
.shop-comment-form .rating-box .rating{
position:relative;
display:inline-block;
margin-right:10px;
padding-right:10px;
border-right:1px solid #ebebeb;
}
.shop-comment-form .rating-box .rating:last-child{
border-right:0px;
}
.shop-comment-form .rating-box .rating .fa{
position:relative;
margin-right:2px;
display:inline-block;
}
.shop-comment-form .rating-box .rating a{
position:relative;
color:#d6d6d6;
font-size:14px;
display:inline-block;
}
.shop-comment-form .rating-box .rating a:hover{
color:#e73f43;
}
.shop-comment-form .form-group{
position:relative;
margin-bottom:25px;
}
.shop-comment-form .form-group:last-child{
margin-bottom:0px;
}
.shop-comment-form .form-group input[type="text"],
.shop-comment-form .form-group input[type="password"],
.shop-comment-form .form-group input[type="tel"],
.shop-comment-form .form-group input[type="email"],
.shop-comment-form .form-group select{
position:relative;
display:block;
width:100%;
line-height:28px;
padding:10px 15px;
border:2px solid #e0e0e0;
height:50px;
color:#848484;
font-weight:300;
background:#ffffff;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.shop-comment-form .form-group input[type="text"]:focus,
.shop-comment-form .form-group input[type="password"]:focus,
.shop-comment-form .form-group input[type="tel"]:focus,
.shop-comment-form .form-group input[type="email"]:focus,
.shop-comment-form .form-group select:focus,
.shop-comment-form .form-group textarea:focus{
border-color:#e73f43;
}
.shop-comment-form .form-group textarea{
position:relative;
display:block;
width:100%;
line-height:26px;
padding:10px 15px;
color:#848484;
border:2px solid #e0e0e0;
height:105px;
font-weight:300;
background:#ffffff;
resize:none;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.shop-comment-form button{
position:relative;
margin-top:10px;
}
.shop-comment-form input:focus,
.shop-comment-form select:focus,
.shop-comment-form textarea:focus{
border-color:#f06529;
}
/*Related Items*/
.related-items{
position:relative;
}
.related-items .owl-stage-outer{
position:relative;
padding-top:40px;
}
.related-items .owl-dots{
display:none;
}
.related-items .owl-nav .owl-prev,
.related-items .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-40px;
width:44px;
height:44px;
color:#999999;
font-size:20px;
line-height:42px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,1);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.related-items .owl-nav .owl-prev{
left:-22px;
}
.related-items .owl-nav .owl-next{
right:-22px;
}
.related-items .owl-nav .owl-prev:hover,
.related-items .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
/***
====================================================================
Gallery Section
====================================================================
***/
.gallery-section-two{
position:relative;
padding:80px 0px 80px;
}
.gallery-section-two .items-container{
}
.gallery-section-two .filters{
margin-bottom:70px;
text-align:center;
}
.gallery-section-two .filters .filter-tabs{
position:relative;
background-color:#fafafa;
border-bottom:2px solid #e0e0e0;
}
.gallery-section-two .filters li{
position: relative;
display: inline-block;
padding:15px 40px;
line-height: 24px;
color: #999999;
cursor: pointer;
font-size: 13px;
font-weight: 400;
letter-spacing:1px;
border-bottom:none;
text-transform: uppercase;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
font-family: 'Montserrat', sans-serif;
}
.gallery-section-two .filters li:after{
position:absolute;
content:'';
right:0px;
top:16px;
width:1px;
height:25px;
background-color:#f1f1f1;
}
.gallery-section-two .filters li.active::after,
.gallery-section-two .filters li:hover::after,
.gallery-section-two .filters li:last-child::after{
display:none;
}
.gallery-section-two .filters .filter.active,
.gallery-section-two .filters .filter:hover{
color:#e73f43;
border-color:#e0e0e0;
}
.gallery-section-two .filter-outer{
background-color:#ffffff;
margin-bottom:60px;
}
.gallery-section-two .default-gallery-block{
padding:0px 3px;
margin-bottom:6px;
}
.default-gallery-block.mix{
display:none;
}
/*About Section*/
.about-section{
position:relative;
padding-top:100px;
}
.about-section .author-info{
position:relative;
padding-bottom:70px;
}
.about-section .author-info .image-column{
position:relative;
margin-bottom:30px;
}
.about-section .author-info .image-column .image{
position:relative;
}
.about-section .author-info .image-column .image img{
position:relative;
width:100%;
display:block;
}
.about-section .author-info .content-column{
position:relative;
}
.about-section .author-info .content-column .content-inner{
position:relative;
}
.about-section .author-info .content-column .content-inner h2{
position:relative;
color:#999999;
font-size:34px;
font-weight:700;
letter-spacing:1px;
line-height:1.4em;
padding-bottom:20px;
margin-bottom:25px;
text-transform:uppercase;
border-bottom:1px solid #ededed;
font-family: 'Montserrat', sans-serif;
}
.about-section .author-info .content-column .content-inner .text{
position:relative;
margin-bottom:30px;
}
.about-section .author-info .content-column .content-inner .text p{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
margin-bottom:20px;
}
.skill-section{
position:relative;
padding:90px 0px;
background-color:#f8f8f8;
}
.skill-section .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.7em;
}
/***
====================================================================
Progress Levels Style
====================================================================
***/
.skill-progress{
position:relative;
}
.skill-progress .progress-box{
position:relative;
margin-bottom:15px;
padding-bottom:3px;
overflow:hidden;
}
.skill-progress .progress-box{
margin-bottom:15px;
}
.skill-progress .progress-box:last-child{
margin-bottom:0px;
}
.skill-progress .progress-box .box-title{
position:relative;
font-size:13px;
color:#333333;
font-weight:400;
line-height:38px;
letter-spacing:1px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.skill-progress .progress-box .box-title span{
float:right;
color:#999999;
font-size:18px;
font-family: 'Montserrat', sans-serif;
}
.skill-progress .progress-box .bar{
position:relative;
height:6px;
}
.skill-progress .progress-box .bar .bar-innner{
position:relative;
left:0px;
top:0px;
width:100%;
height:6px;
background:#d9d9d9;
}
.skill-progress .progress-box .bar .bar-fill{
position:absolute;
left:-100%;
top:0px;
width:0px;
height:6px;
background:#e73f43;
border-radius:0px;
-moz-transition:all 2000ms ease 300ms;
-webkit-transition:all 2000ms ease 300ms;
-ms-transition:all 2000ms ease 300ms;
-o-transition:all 2000ms ease 300ms;
transition:all 2000ms ease 300ms;
}
.skill-progress .progress-box.animated .bar .bar-fill{
left:0px;
}
.about-content-section{
position:relative;
padding:100px 0px;
}
/***
====================================================================
Map Section Style
====================================================================
***/
.contact-section{
position:relative;
padding:100px 0px 80px;
}
.map-section{
padding-bottom:100px;
}
.map-data{
text-align:center;
font-size:14px;
font-weight:400;
line-height:1.8em;
}
.map-data h6{
font-size:16px;
font-weight:700;
text-align:center;
margin-bottom:5px;
color:#121212;
}
.map-canvas{
height:330px;
}
.contact-section .form-column{
position:relative;
margin-bottom:40px;
}
.contact-section .form-column .form-column{
position:relative;
}
.contact-section .form-column .sec-title{
margin-bottom:20px;
}
.contact-section .info-column .sec-title{
margin-bottom:40px;
}
.contact-section .info-column .inner-column{
padding-left:20px;
}
.contact-section .form-column .text{
position:relative;
color:#b1b1b1;
font-size:16px;
font-style:italic;
margin-bottom:20px;
}
/*Contact Form*/
.contact-form .form-group{
position: relative;
margin-bottom: 20px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="password"],
.contact-form select,
.contact-form textarea{
display:block;
width:100%;
line-height:22px;
height:50px;
font-size:16px;
padding:12px 20px;
background:#ffffff;
color:#333333;
border:2px solid #e0e0e0;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
border-color:#e73f43;
background:none;
}
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error{
border-color:#ff0000 !important;
}
.contact-form label.error{
display:block;
line-height:24px;
padding:5px 0px 0px;
margin:0px;
text-transform:uppercase;
font-size:11px;
color:#ff0000;
font-weight:500;
}
.contact-form textarea{
height:130px;
resize:none;
padding:10px 20px;
}
.contact-form .submit-btn{
color:#ffffff;
padding:10px 30px;
display:inline-block;
letter-spacing:1px;
font-size:13px;
text-transform:uppercase;
background-color:#a1a1a1;
}
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error{
border-color:#ff0000 !important;
}
.contact-form label.error{
display:block;
line-height:24px;
padding:5px 0px 0px;
margin:0px;
text-transform:uppercase;
font-size:11px;
color:#ff0000;
font-weight:500;
}
/*info list*/
.info-list{
position:relative;
margin-top:30px;
}
.info-list li{
position:relative;
color:#777777;
font-size:16px;
line-height:1.8em;
padding-bottom:18px;
margin-bottom:15px;
}
.info-list li:after{
position:absolute;
content:'';
left:0px;
bottom:0px;
width:65px;
height:1px;
background-color:#e0e0e0;
}
.info-list li:last-child{
margin-bottom:0px;
padding-bottom:0px;
}
.info-list li:last-child:after{
display:none;
}
/*News Block Nine*/
.news-block-nine{
position:relative;
margin-bottom:30px;
}
.news-block-nine .inner-box{
position:relative;
text-align:left;
}
.news-block-nine .inner-box .image{
position:relative;
}
.news-block-nine .inner-box .image img{
position:relative;
width:100%;
display:block;
}
.news-block-nine .inner-box .image .category{
position:absolute;
left:10px;
bottom:10px;
color:#ffffff;
padding:0px 8px;
display:inline-block;
letter-spacing:1px;
text-transform:uppercase;
background-color:#e73f43;
}
.news-block-nine .inner-box .image .category a{
color:#ffffff;
}
.news-block-nine .inner-box .lower-box{
position:relative;
padding-top:15px;
}
.news-block-nine .inner-box .lower-box h3{
position:relative;
line-height:1em;
margin-bottom:10px;
}
.news-block-nine .inner-box .lower-box h3 a{
position:relative;
color:#ffffff;
font-size:14px;
font-weight:400;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.news-block-nine .inner-box .lower-box h3 a:hover{
opacity:0.8;
}
.news-block-nine .inner-box .lower-box .post-date{
position:relative;
font-size:11px;
text-transform:uppercase;
color:rgba(255,255,255,0.50);
}
/***
====================================================================
Product Tabs Style
====================================================================
***/
.info-tabs .tab-btns{
position:relative;
z-index:1;
text-align:left;
padding-bottom:10px;
}
.info-tabs .all-cat{
position:relative;
display:block;
font-size:13px;
font-weight:400;
cursor:pointer;
line-height:1.6em;
color:#ffffff;
letter-spacing:1px;
margin-bottom:14px;
margin-top:20px;
text-align:left;
transition:all 500ms ease;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.info-tabs .tab-btns:after{
position:absolute;
content:'';
left:0px;
bottom:0px;
width:70px;
height:1px;
background-color:rgba(255,255,255,0.20);
}
.info-tabs .tab-btns .tab-btn{
position:relative;
display:block;
font-size:13px;
font-weight:400;
cursor:pointer;
line-height:1.6em;
color:#ffffff;
letter-spacing:1px;
margin-bottom:14px;
transition:all 500ms ease;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.info-tabs .tab-btns .tab-btn:hover,
.info-tabs .tab-btns .tab-btn.active-btn{
color:#e63f49;
}
.info-tabs .tabs-content{
position:relative;
}
.info-tabs .tabs-content .tab{
position:relative;
display:none;
}
.info-tabs .tabs-content .tab .content{
position:relative;
}
.info-tabs .tabs-content .tab .content .text{
position:relative;
font-size:18px;
line-height:1.7em;
color:rgba(0,0,10,0.65);
margin-bottom:25px;
}
.info-tabs .tabs-content .tab.active-tab{
display:block;
}
.cart-product{
position:relative;
margin-bottom:24px;
min-height:90px;
border-bottom:1px solid #e4e4e4;
}
.cart-product .inner{
position:relative;
padding-left:90px;
min-height:70px;
}
.cart-product .inner .cross-icon{
position:absolute;
right:0px;
top:-2px;
z-index:1;
color:#263120;
font-size:16px;
cursor:pointer;
}
.cart-product .inner .image{
position:absolute;
width:70px;
height:70px;
left:0px;
top:0px;
}
.cart-product .inner h3{
position:relative;
font-weight:600;
font-size:15px;
margin:0px;
text-transform:uppercase;
}
.cart-product .inner h3 a{
color:#222222;
}
.cart-product .inner .quantity-text{
position:relative;
font-weight:300;
color:#222222;
}
.cart-product .inner .price{
position:relative;
font-weight:600;
font-size:16px;
margin:0px;
color:#222222;
}
.color-palate .purchase-btn{
position:relative;
color:#ffffff;
padding:8px 10px;
display:block;
font-size:13px;
font-weight:400;
margin-left:28px;
margin-right:28px;
margin-bottom:25px;
text-transform:uppercase;
background-color:#333433;
font-family: 'Montserrat', sans-serif;
}
.main-footer .widgets-section .news-info .inner-box .image,
.main-footer .widgets-section .review-block .inner-box .image{
background-color:#181818;
}
.home-three-posts.heres,
.stoped-widget.stoped-here{
position:fixed;
top:80px;
max-width:340px;
z-index:99999;
background-color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.home-three-posts.heres{
position:fixed;
top:55px;
max-width:340px;
z-index:99999;
padding-bottom:20px;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
/*Demo Banner*/
.demo-banner{
position:relative;
padding:145px 0px;
text-align:center;
background-attachment:fixed;
background-repeat:no-repeat;
background-size:cover;
background-position:center center;
}
.demo-banner .logo{
position:relative;
width:480px;
height:95px;
margin:0 auto;
margin-bottom:15px;
background:url(../images/banner-logo.png) no-repeat;
background-position:center center;
}
.demo-banner .logo a{
position:relative;
width:428px;
height:80px;
display:block;
}
.demo-banner .btns-box{
position:relative;
text-align:center;
}
.demo-banner .btns-box .demo-btn{
position:relative;
padding:12px 20px;
color:#737373;
font-weight:400;
max-width:300px;
width:100%;
font-size:16px;
letter-spacing:1px;
margin:10px 10px;
text-transform:uppercase;
display:inline-block;
background-color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
font-family: 'Montserrat', sans-serif;
}
.demo-banner .btns-box .demo-btn:hover{
color:#ffffff;
background-color:#e83f44;
}
.demo-banner .btns-box .purchase-btn{
position:relative;
padding:12px 20px;
color:#ffffff;
max-width:300px;
font-weight:400;
width:100%;
margin:10px 10px;
font-size:16px;
letter-spacing:1px;
text-transform:uppercase;
display:inline-block;
background-color:#e83f44;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
font-family: 'Montserrat', sans-serif;
}
.demo-banner .btns-box .purchase-btn:hover{
background-color:#ffffff;
color:#e83f44;
}
.demo-banner .text{
position:relative;
color:#ffffff;
font-size:26px;
font-weight:400;
margin-bottom:30px;
text-transform:capitalize;
font-family: 'Montserrat', sans-serif;
}
/*Demos Section*/
.demos-section{
position:relative;
padding:80px 0px 45px;
background-color:#f6f6f6;
}
.demos-section h2{
position:relative;
color:#333333;
font-size:36px;
font-weight:700;
text-align:center;
margin-bottom:20px;
text-transform:uppercase;
}
.demos-section .text{
position:relative;
color:#777777;
font-size:18px;
text-align:center;
margin-bottom:70px;
}
.demo-block{
position:relative;
text-align:center;
margin-bottom:50px;
}
.demo-block .image{
position:relative;
transition:all 0.6s ease;
-moz-transition:all 0.6s ease;
-webkit-transition:all 0.6s ease;
-ms-transition:all 0.6s ease;
-o-transition:all 0.6s ease;
}
.demo-block .image:hover{
transform: translate3d(0,-10px,0);
-webkit-transform: translate3d(0,-10px,0);
box-shadow: 0 23px 40px rgba(0,0,0,0.2);
}
.demo-block .image img{
position:relative;
width:100%;
display:block;
}
.demo-block .inner-box .demo-number{
position:relative;
font-size:14px;
color:#777777;
font-weight:600;
margin-top:20px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
/*Plugin Section*/
.plugin-section{
position:relative;
padding:40px 0px;
text-align:center;
display:none;
}
.plugin-section .image{
position:relative;
margin:0px 40px;
display:inline-block;
}
/*Banner Footer*/
.banner-footer{
position:relative;
padding:115px 0px;
text-align:center;
}
.banner-footer .text{
position:relative;
color:#ffffff;
font-size:18px;
font-weight:500;
letter-spacing:1px;
margin-top:15px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.banner-footer .text span{
color:#fd1e39;
}
.post-date1 {
position: absolute;
left: 0;
top: 0;
width: 50px;
background: #ff6600;
text-align: center;
padding: 8px 0 15px;
color: #fff;
-webkit-border-radius: 0 0 25px 25px;
-moz-border-radius: 0 0 25px 25px;
-ms-border-radius: 0 0 25px 25px;
border-radius: 0 0 25px 25px; }
.post-classic-new {
padding-left: 70px;
position: relative;
margin-bottom: 20px;
max-height: 115px;
overflow: hidden
}
.post-classic-new .post-date1 .month, .post-classic-new .post-date1 .day, .post-classic-new .post-date1 .year {
line-height: 1.2; }
.post-classic-new .post-date1 .year{
font-weight: 600;
font-size: 12px;
display: block; }
.post-classic-new .post-date1 .month{
font-weight: 600;
font-size: 12px;
display: block; }
.post-classic-new .post-date1 .day{
font-weight: 600;
font-size: 14px;
display: block;} | source/css/style.css | @import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Mr+Bedfort|Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');
@import url('https://fonts.googleapis.com/css?family=Fira+Sans|Fira+Sans+Condensed:200,300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700');
/*font-family: 'Open Sans', sans-serif;
font-family: 'Montserrat', sans-serif;
font-family: 'Mr Bedfort', cursive;
font-family: 'Fira Sans Condensed', sans-serif;
*/
/*@import url('demo.css');*/
@import url('font-awesome.css');
@import url('quebec-font.css');
@import url('animate.css');
@import url('owl.css');
@import url('hover.css');
@import url('jquery.fancybox.css');
@import url('jquery.mCustomScrollbar.min.css');
/***
====================================================================
Reset
====================================================================
***/
* {
margin:0px;
padding:0px;
border:none;
outline:none;
}
/***
====================================================================
Global Settings
====================================================================
***/
body {
font-size:14px;
color:#666666;
line-height:1.8em;
font-weight:400;
background:#ffffff;
background-size:cover;
background-repeat:no-repeat;
background-position:center top;
-webkit-font-smoothing: antialiased;
font-family: 'Open Sans', sans-serif;
_font-family: 'Fira Sans', sans-serif;
}
a{
text-decoration:none;
cursor:pointer;
color:#e73f43;
}
a:hover,a:focus,a:visited{
text-decoration:none;
outline:none;
}
h1,h2,h3,h4,h5,h6 {
position:relative;
font-weight:normal;
margin:0px;
background:none;
line-height:1.4em;
font-family: 'Fira Sans', sans-serif;
}
.no-padding{
padding:0px !important;
}
input,button,select,textarea{
}
p,
.text{
position:relative;
line-height:1.8em;
font-family: 'Open Sans', sans-serif;
}
.strike-through{
text-decoration:line-through;
}
.auto-container{
position:static;
max-width:1200px;
padding:0px 15px;
margin:0 auto;
}
.small-container{
max-width:780px;
margin:0 auto;
}
.page-wrapper{
position:relative;
margin:0 auto;
width:100%;
min-width:300px;
}
ul,li{
list-style:none;
padding:0px;
margin:0px;
}
.theme-btn{
display:inline-block;
text-align:center;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.grey-bg{
background-color:#f9fafb;
}
.no-margin-btm{
margin-bottom:0px !important;
}
.centered{
text-align:center;
}
.list-style-one{
position:relative;
}
.list-style-one li{
position:relative;
margin-bottom:5px;
padding-left:20px;
color:#777777;
font-size:14px;
}
.list-style-one li:before{
position:absolute;
content:'+';
left:0px;
top:0px;
color:#e73f43;
font-size:18px;
}
/*Btn Style One*/
.btn-style-one{
position:relative;
padding:6px 26px;
line-height:24px;
color:#999999;
text-align:center;
font-size:12px;
font-weight:500;
background:none;
letter-spacing:1px;
border-radius:0px;
border:2px solid #f3f3f3;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.btn-style-one:hover{
color:#ffffff;
background:#e73f43;
border-color:#e73f43;
}
/*Btn Style Two*/
.btn-style-two{
position:relative;
padding:6px 16px;
line-height:24px;
color:#ffffff;
text-align:center;
font-size:12px;
font-weight:700;
background:none;
border-radius:0px;
border:2px solid #ffffff;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.btn-style-two:hover{
color:#ffffff;
background:#e73f43;
border-color:#e73f43;
}
/*Btn Style Three*/
.btn-style-three{
position:relative;
padding:8px 100px;
line-height:24px;
color:#999999;
text-align:center;
font-size:13px;
font-weight:500;
background:none;
border-radius:0px;
letter-spacing:2px;
border:2px solid #e0e0e0;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.btn-style-three:hover{
color:#ffffff;
background:#e73f43;
border-color:#e73f43;
}
.theme_color{
color:#e73f43;
}
/*Social Icon One*/
.social-icon-one{
position:relative;
}
.social-icon-one li.share{
position:relative;
top:-4px;
color:#999999;
font-size:13px;
font-weight:400;
line-height:30px;
letter-spacing:2px;
margin-right:15px !important;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.social-icon-one li{
position:relative;
margin-right:2px;
margin-bottom:4px;
display:inline-block;
}
.social-icon-one li a{
position:relative;
width:62px;
height:44px;
color:#ffffff;
font-size:18px;
line-height:42px;
text-align:center;
display:inline-block;
background-color:#2f58a1;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.social-icon-one li a:hover{
opacity:0.80;
}
.social-icon-one li.twitter a{ background-color:#069cd5}
.social-icon-one li.g_plus a{ background-color:#ec453e;}
.social-icon-one li.linkedin a{ background-color:#0076b8;}
.social-icon-one li.pinteret a{ background-color:#da0d32;}
.social-icon-one li.android a{ background-color:#62c56b;}
.social-icon-one li.dribbble a{ background-color:#ef70a9;}
.social-icon-one li.rss a{ background-color:#fd9f13;}
.social-icon-one li.instagram a{ background-color:#35475c;}
.social-icon-one li.vimeo a{ background-color:#4eceea;}
.social-icon-one.alternate li{
margin-right:5px;
margin-bottom:8px;
}
.social-icon-one.alternate li:nth-child(4n + 0){
margin-right:0px;
}
.social-icon-one.alternate li a{
width:76px;
height:53px;
line-height:53px;
font-size:20px;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.social-icon-one.alternate li a:hover{
opacity:0.7;
}
/*Social Icon Two*/
.social-icon-two{
position:relative;
}
.social-icon-two li{
position:relative;
margin-right:12px;
margin-bottom:4px;
display:inline-block;
}
.social-icon-two li a{
position:relative;
color:#c2c2c2;
font-size:14px;
display:inline-block;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.social-icon-two li a:hover{
color:#e73f43;
}
/*Social Icon Three*/
.social-icon-three{
position:relative;
margin-bottom:30px;
}
.social-icon-three li.share{
position:relative;
top:-4px;
color:#777777;
font-size:13px;
font-weight:400;
line-height:30px;
letter-spacing:2px;
margin-right:15px !important;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.social-icon-three li{
position:relative;
margin-right:2px;
margin-bottom:4px;
display:inline-block;
}
.social-icon-three li a{
position:relative;
width:46px;
height:33px;
color:#b5b5b5;
font-size:16px;
line-height:34px;
text-align:center;
display:inline-block;
background-color:#ededed;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.social-icon-three li a:hover{
color:#ffffff;
background-color:#e73f43;
}
img{
display:inline-block;
max-width:100%;
}
.preloader{ position:fixed; left:0px; top:0px; width:100%; height:100%; z-index:999999; background-color:#ffffff; background-position:center center; background-repeat:no-repeat; background-image:url(../images/icons/preloader.svg); background-size:80px;}
/***
====================================================================
Scroll To Top style
====================================================================
***/
.scroll-to-top{
position:fixed;
bottom:15px;
right:15px;
width:50px;
height:50px;
color:#ffffff;
font-size:13px;
text-transform:uppercase;
line-height:50px;
text-align:center;
z-index:100;
cursor:pointer;
background:#27292d;
display:none;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.scroll-to-top:hover{
color:#ffffff;
background:#e73f43;
}
/***
====================================================================
Main Header style
====================================================================
***/
.main-header{
position:relative;
left:0px;
top:0px;
width:100%;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.sticky-header{
position:fixed;
opacity:0;
visibility:hidden;
left:0px;
top:0px;
width:100%;
padding:0px 0px;
background:#ffffff;
z-index:0;
border-bottom:1px solid #cccccc;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.sticky-header .logo{
position:relative;
top:4px;
padding:2px 0px;
width:150px;
height:50px;
background:url(../images/logo-small.png) no-repeat;
}
.sticky-header .logo a{
position:relative;
display:block;
width:150px;
height:50px;
margin-top:2px;
}
.fixed-header .sticky-header{
z-index:9999;
opacity:1;
visibility:visible;
-ms-animation-name: fadeInDown;
-moz-animation-name: fadeInDown;
-op-animation-name: fadeInDown;
-webkit-animation-name: fadeInDown;
animation-name: fadeInDown;
-ms-animation-duration: 500ms;
-moz-animation-duration: 500ms;
-op-animation-duration: 500ms;
-webkit-animation-duration: 500ms;
animation-duration: 500ms;
-ms-animation-timing-function: linear;
-moz-animation-timing-function: linear;
-op-animation-timing-function: linear;
-webkit-animation-timing-function: linear;
animation-timing-function: linear;
-ms-animation-iteration-count: 1;
-moz-animation-iteration-count: 1;
-op-animation-iteration-count: 1;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
}
.fixed-header .main-menu .navigation > li:hover > a:after{
display:none;
}
.main-header .header-top{
position:relative;
padding:4px 0px;
background-color:#333333;
}
.main-header .header-top .top-left{
padding-left:90px !important;
}
.main-header .header-top .top-left,
.main-header .header-top .top-right{
position:relative;
padding:0px;
}
.main-header .header-top .top-left .trend{
position:absolute;
left:0px;
top:1px;
color:#e73f43;
font-weight:700;
font-size:13px;
letter-spacing:1px;
display:inline-block;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.main-header .header-top .top-left .trend.white:hover,
.main-header .header-top .top-right .top-nav.white li a:hover,
.main-header .header-top .top-right .social-nav.white li a:hover{
opacity:0.7;
color:#ffffff !important;
}
.main-header .header-top .top-left .trend.white{
color:#ffffff !important;
}
.main-header .header-top .top-left .slide .text{
position:relative;
color:#ffffff;
font-size:13px;
font-weight:600;
margin-left:10px;
display:inline-block;
}
.main-header .header-top .top-left .single-item-carousel{
float:left;
}
.main-header .header-top .top-left .owl-nav,
.main-header .header-top .top-left .owl-dots{
display:none;
}
.main-header .header-top .top-right{
position:relative;
text-align:right;
}
.main-header .header-top .top-right .top-nav{
position:relative;
display:inline-block;
}
.main-header .header-top .top-right .top-nav li{
position:relative;
padding:0px 20px;
display:inline-block;
line-height:1em;
border-left:1px solid rgba(255,255,255,0.15);
}
.main-header .header-top .top-right .top-nav li:last-child{
border-right:1px solid rgba(255,255,255,0.15);
}
.main-header .header-top .top-right .top-nav li a{
position:relative;
font-size:12px;
color:#ffffff;
font-weight:600;
letter-spacing:1px;
border-bottom:1px solid transparent;
text-transform:uppercase;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-header .header-top .top-right .top-nav li a:hover{
border-color:#e73f43;
color:#e73f43;
}
.main-header .header-top .top-right .english-nav{
position:relative;
display:inline-block;
}
.main-header .header-top .top-right .english-nav li{
position:relative;
padding:0px 10px 0px 15px;
display:inline-block;
}
.main-header .header-top .top-right .english-nav li:after{
position:absolute;
content:'/';
color:#ffffff;
font-size:16px;
right:-8px;
top:2px;
}
.main-header .header-top .top-right .english-nav li:last-child::after{
display:none;
}
.main-header .header-top .top-right .english-nav li a:hover,
.main-header .header-top .top-right .english-nav li.active a{
background-color:#e73f43;
}
.main-header .header-top .top-right .english-nav li a{
position:relative;
color:#ffffff;
font-size:12px;
font-weight:600;
text-transform:uppercase;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-header .header-top .top-right .social-nav{
position:relative;
display:inline-block;
}
.main-header .header-top .top-right .social-nav li{
position:relative;
padding:0px 15px;
display:inline-block;
border-left:1px solid rgba(255,255,255,0.15);
}
.main-header .header-top .top-right .social-nav li a{
position:relative;
color:#ffffff;
font-size:14px;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.main-header .header-top .top-right .social-nav li a:hover{
color:#e73f43;
}
.main-header .header-top .top-right .social-nav li:last-child{
border-right:1px solid rgba(255,255,255,0.15);
}
.main-header .header-upper{
position:relative;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
z-index:5;
}
.main-header .logo-outer{
position:relative;
float:left;
z-index:25;
padding:32px 0px;
}
.main-header .logo-outer .logo{
position:relative;
width:280px;
height:80px;
background:url(../images/logo.png) no-repeat;
}
.main-header .logo-outer .logo.header-three-logo{
background:url(../images/white-logo.png) no-repeat;
}
.main-header .logo-outer .logo a{
position:relative;
display:block;
width:100%;
height:100%;
}
.main-header .logo-outer .logo img{
position:relative;
display:inline-block;
max-width:100%;
}
.main-header .header-upper .upper-right{
position:relative;
padding-top:26px;
padding-bottom:26px;
}
.main-header .header-upper .nav-outer{
position:relative;
float:right;
}
.main-header .nav-outer .more-options{
position:relative;
right:0px;
top:50%;
width:35px;
float:right;
margin:54px 0px;
margin-left:30px;
border-left:1px solid #d6d6d6;
}
.main-header .header-lower .search-box-outer{
position: relative;
min-width:70px;
padding-right:10px;
padding-left:10px;
padding-top:21px;
padding-bottom:22px;
display:inline-block;
border-right:1px solid #eeeeee;
}
.main-header .header-lower .search-box-btn{
position:relative;
display:block;
width:100%;
font-size:18px;
color:#999999;
line-height:20px !important;
padding:0px;
margin:0px;
cursor:pointer;
background:none;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-header .header-lower .search-box-btn:hover{
color:#444444;
}
.main-header .header-lower .search-box-outer .dropdown-menu{
top:40px;
right:0px;
padding:0px;
width:280px;
border-radius:0px;
border-top:3px solid #e73f43;
border-left:0px;
border-right:0px;
border-bottom:0px;
}
.main-header .header-lower .search-box-outer .dropdown-menu > li{
padding:0px;
border:none;
background:none;
}
.main-header .header-lower .search-panel .form-container{
padding:25px 20px;
}
.main-header .header-lower .search-panel .form-group{
position:relative;
margin:0px;
}
.main-header .header-lower .search-panel input[type="text"],
.main-header .header-lower .search-panel input[type="search"],
.main-header .header-lower .search-panel input[type="password"],
.main-header .header-lower .search-panel select{
display:block;
width:100%;
height:40px;
color:#000000;
line-height:24px;
background:#ffffff;
border:1px solid #e0e0e0;
padding:7px 40px 7px 15px;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-header .header-lower .search-panel input:focus,
.main-header .header-lower .search-panel select:focus{
border-color:#e73f43;
}
.main-header .header-lower .search-panel .search-btn{
position:absolute;
right:0px;
top:0px;
width:40px;
height:40px;
text-align:center;
color:#555555;
font-size:12px;
background:none;
cursor:pointer;
}
.main-menu{
position:relative;
}
.main-menu .navbar-collapse{
padding:0px;
}
.main-menu .navigation{
position:relative;
margin:0px;
}
.main-menu .navigation > li{
position:relative;
float:left;
padding:0px;
border-left:1px solid #e0e0e0;
}
.main-menu .navigation > li.mega-menu{
position:static !important;
-webkit-transition:all 600ms ease;
-ms-transition:all 600ms ease;
-o-transition:all 600ms ease;
-moz-transition:all 600ms ease;
transition:all 600ms ease;
}
.main-menu .navigation > li.mega-menu > .mega-menu-bar{
position:absolute;
left:0px;
width:100%;
top:101%;
opacity:0;
background-color:#101010;
padding:45px 40px 30px 45px;
-webkit-transition:all 600ms ease;
-ms-transition:all 600ms ease;
-o-transition:all 600ms ease;
-moz-transition:all 600ms ease;
transition:all 600ms ease;
}
.main-menu .navigation > li.mega-menu > .mega-menu-bar .owl-dots{
display:none;
}
.main-menu .navigation > li.mega-menu > .mega-menu-bar .owl-nav{
position:relative;
margin-top:-10px;
}
.main-menu .navigation > li.mega-menu > .mega-menu-bar .owl-nav .owl-prev,
.main-menu .navigation > li.mega-menu > .mega-menu-bar .owl-nav .owl-next{
position:relative;
width:36px;
height:36px;
line-height:34px;
margin-right:10px;
color:rgba(255,255,255,0.40);
text-align:center;
display:inline-block;
font-size:16px;
border:1px solid rgba(255,255,255,0.60);
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.main-menu .navigation > li.mega-menu > .mega-menu-bar .owl-nav .owl-prev:hover,
.main-menu .navigation > li.mega-menu > .mega-menu-bar .owl-nav .owl-next:hover{
color:#e73f43;
border-color:#e73f43;
}
.main-menu .navigation > li.mega-menu:hover .mega-menu-bar{
opacity:1;
top:100%;
z-index:9;
visibility:visible;
}
.main-menu .navigation > li:last-child{
border-right:1px solid #e0e0e0;
}
.sticky-header .main-menu .navigation > li{
padding:0px;
margin-right:0px;
}
.main-menu .navigation > li > a{
position:relative;
display:block;
padding:17px 24px;
font-size:13px;
color:#777777;
line-height:20px;
font-weight:600;
opacity:1;
letter-spacing:1px;
text-transform:uppercase;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
_font-family: 'Montserrat', sans-serif;
font-family: 'Poppins', sans-serif;
}
.main-menu .navigation > li > a:hover::before,
.main-menu .navigation > li.current > a:before{
left:0px;
right:0px;
}
.main-menu .navigation > li > a:before{
content: "";
position: absolute;
z-index: -1;
left: 50%;
right: 50%;
bottom: 0;
background: #e73f43;
height: 4px;
-webkit-transition-property: left, right;
transition-property: left, right;
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
.sticky-header .main-menu .navigation > li > a{
padding:13px 15px !important;
color:#333333;
}
.sticky-header .main-menu .navigation > li.dropdown > a:before{
display:none;
}
.header-upper .main-menu .navigation > li:hover > a,
.header-upper .main-menu .navigation > li.current > a,
.header-upper .main-menu .navigation > li.current-menu-item > a{
color:#e73f43;
opacity:1;
}
.sticky-header .main-menu .navigation > li:hover > a,
.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li.current-menu-item > a{
color:#333333 !important;
background:#ffffff;
}
.main-menu .navigation > li:hover > a:after{
opacity:1;
}
.main-menu .navigation > li > ul{
position:absolute;
left:0px;
top:120%;
width:240px;
z-index:100;
display:none;
padding:0px 0px;
background:#101010;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.main-menu .navigation > li > ul.from-right{
left:auto;
right:0px;
}
.main-menu .navigation > li > ul > li{
position:relative;
width:100%;
border-bottom:1px solid rgba(255,255,255,0.10);
}
.main-menu .navigation > li > ul > li:last-child{
border-bottom:none;
}
.main-menu .navigation > li > ul > li > a{
position:relative;
display:block;
padding:12px 20px;
line-height:22px;
font-weight:500;
font-size:12px;
color:#e0e0e0;
text-align:left;
text-transform:uppercase;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
font-family: 'Montserrat', sans-serif;
}
.main-menu .navigation > li > ul > li:hover > a{
color:#ffffff;
background-color:#e73f43;
}
.main-menu .navigation > li > ul > li.dropdown > a:after{
font-family: 'FontAwesome';
content: "\f105";
position:absolute;
right:10px;
top:12px;
width:10px;
height:20px;
display:block;
line-height:21px;
font-size:16px;
font-weight:normal;
text-align:center;
z-index:5;
}
.main-menu .navigation > li > ul > li.dropdown:hover > a:after{
color:#ffffff;
}
.main-menu .navigation > li > ul > li > ul{
position:absolute;
left:100%;
top:20px;
width:240px;
z-index:100;
display:none;
background:#101010;
-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}
.main-menu .navigation > li > ul > li > ul > li{
position:relative;
width:100%;
border-bottom:1px solid rgba(255,255,255,0.10);
}
.main-menu .navigation > li > ul > li > ul > li:last-child{
border-bottom:none;
}
.main-menu .navigation > li > ul > li > ul > li > a{
position:relative;
display:block;
padding:12px 20px;
line-height:22px;
font-weight:500;
font-size:12px;
color:#e0e0e0;
text-align:left;
text-transform:uppercase;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
font-family: 'Montserrat', sans-serif;
}
.main-menu .navigation > li > ul > li > ul > li > a:hover{
color:#ffffff;
background-color:#e73f43;
}
.main-menu .navigation > li.dropdown:hover > ul{
visibility:visible;
opacity:1;
top:100%;
}
.main-menu .navigation li > ul > li.dropdown:hover > ul{
visibility:visible;
opacity:1;
top:0px;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.main-menu .navigation li.dropdown .dropdown-btn{
position:absolute;
right:10px;
top:6px;
width:34px;
height:30px;
border:1px solid #ffffff;
text-align:center;
font-size:16px;
line-height:26px;
color:#ffffff;
cursor:pointer;
z-index:5;
display:none;
}
.main-header .header-lower{
position:relative;
border-top:1px solid #e0e0e0;
border-bottom:1px solid #e0e0e0;
box-shadow:0 2px 10px rgba(0,0,0,.175);
-webkit-box-shadow:0 2px 10px rgba(0,0,0,.175);
-o-box-shadow:0 2px 10px rgba(0,0,0,.175);
-moz-box-shadow:0 2px 10px rgba(0,0,0,.175);
-ms-box-shadow:0 2px 10px rgba(0,0,0,.175);
}
.main-header .nav-outer{
position:relative;
}
.main-header .outer-box{
position:absolute;
right:0px;
top:0px;
}
.main-header .outer-box .cart-box{
position:relative;
float:left;
color:#999999;
font-size:20px;
margin-top:20px;
background:none;
display:inline-block;
}
.main-header .outer-box .cart-box .cart-box-btn{
background:none;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
}
.main-header .outer-box .cart-box .cart-box-btn:hover{
color:#444444;
}
.main-header .outer-box .cart-box .cart-panel{
border-radius:0px;
padding:20px 20px;
min-width:300px;
margin-top:18px;
border-color:#e4e4e4;
border-top:3px solid #e73f43;
border-left:0px;
border-right:0px;
border-bottom:0px;
}
.main-header .outer-box .cart-box .cart-panel .cart-total{
color:#000000;
font-size:16px;
font-weight:400;
text-align:center;
text-transform:uppercase;
}
.main-header .outer-box .cart-box .cart-panel .cart-total span{
font-weight:700;
}
.main-header .outer-box .cart-box .cart-panel .btns-boxed{
position:relative;
text-align:center;
margin-top:20px;
}
.main-header .outer-box .cart-box .cart-panel .btns-boxed li{
position:relative;
margin:0px 5px;
display:inline-block;
}
.main-header .outer-box .cart-box .cart-panel .btns-boxed li a{
position:relative;
color:#292929;
font-weight:500;
font-size:12px;
padding:6px 15px;
display:inline-block;
border:1px solid #292929;
text-transform:uppercase;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
font-family: 'Montserrat', sans-serif;
}
.main-header .outer-box .cart-box .cart-panel .btns-boxed li a:hover{
color:#ffffff;
background-color:#292929;
}
.main-header .outer-box .cart-box .icon a{
color:#999999;
}
.header-style-two .logo-outer,
.header-style-three .logo-outer{
position:relative;
width:100%;
text-align:center;
}
.header-style-two .logo-outer .logo,
.header-style-three .logo-outer .logo{
margin:0 auto;
}
.header-style-two .header-top{
background-color:#28292d;
}
.header-style-two .header-top .top-left .slide .trend{
color:#ffffff;
}
.header-style-two .header-top .top-right .english-nav li.active a{
background-color:#333333;
}
.header-style-two .header-lower,
.header-style-three .header-lower{
background-color:#333333;
}
.header-style-two .main-menu .navigation > li,
.header-style-three .main-menu .navigation > li{
display:inline-block;
float:none;
border-color:rgba(255,255,255,0.10);
}
.header-style-two .main-menu .navigation > li,
.header-style-three .main-menu .navigation > li{
margin-left:-4px;
}
.header-style-two .main-menu .navigation > li > a:hover,
.header-style-two .main-menu .navigation > li.current > a,
.header-style-three .main-menu .navigation > li > a:hover,
.header-style-three .main-menu .navigation > li.current > a{
background-color:#e73f43;
}
.header-style-two .main-menu .navigation > li > a,
.header-style-three .main-menu .navigation > li > a{
color:#ffffff;
}
.header-style-two .main-menu,
.header-style-three .main-menu{
width:100%;
text-align:center;
}
.header-style-two.fixed-header .main-menu .navigation > li > a,
.header-style-three.fixed-header .main-menu .navigation > li > a{
color:#444444;
}
.header-style-two.fixed-header .main-menu .navigation > li.current > a,
.header-style-three.fixed-header .main-menu .navigation > li.current > a{
color:#ffffff !important;
}
.header-style-three .header-upper{
background-color:#292929;
}
.header-style-three .header-lower{
border:0px;
}
/***
====================================================================
Fancy Box
====================================================================
***/
.fancybox-next span,
.fancybox-prev span{
background-image:none !important;
width:44px !important;
height:44px !important;
line-height:44px !important;
text-align:center;
}
.fancybox-next span:before,
.fancybox-prev span:before{
content:'';
position:absolute;
font-family: 'FontAwesome';
left:0px;
top:0px;
font-size:12px;
width:44px !important;
height:44px !important;
line-height:44px !important;
background-color:rgba(28,28,28,0.40) !important;
color:#ffffff;
visibility:visible;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
}
.fancybox-next span:before{
content:'\f178';
}
.fancybox-prev span:before{
content:'\f177';
}
.fancybox-next:hover span:before,
.fancybox-prev:hover span:before{
background-color:#ffffff !important;
color:#000000;
}
.fancybox-type-image .fancybox-close{
right:0px;
top:0px;
width:45px;
height:45px;
background:url(../images/icons/icon-cross.png) center center no-repeat;
background-color:rgba(17,17,17,0.50) !important;
}
.fancybox-type-image .fancybox-close:hover{
background-color:#000000 !important;
}
.fancybox-type-image .fancybox-skin{
padding:0px !important;
}
/***
====================================================================
Sec Title
====================================================================
***/
.sec-title{
position:relative;
margin-bottom:30px;
background-color:#f3f3f3;
}
.sec-title h2{
position:relative;
color:#ffffff;
font-size:12px;
letter-spacing:1px;
padding:9px 15px;
font-weight:400;
text-transform:uppercase;
display:inline-block;
margin:0px;
background-color:#e73f43;
font-family: 'Montserrat', sans-serif;
}
/*Blog Section*/
.blog-section{
position:relative;
padding:60px 0px 60px;
max-width:780px;
margin:0 auto;
}
.news-block{
position:relative;
margin-bottom:70px;
}
.news-block .inner-box{
position:relative;
}
.news-block .inner-box .image{
position:relative;
}
.news-block .inner-box .image .category{
position:absolute;
left:15px;
bottom:15px;
color:#ffffff;
padding:2px 10px;
display:inline-block;
text-transform:uppercase;
letter-spacing:1px;
background-color:#222222;
}
.news-block .inner-box .image img{
position:relative;
width:100%;
display:block;
}
.news-block .inner-box .lower-box{
position:relative;
padding:45px 0px 35px;
border-bottom:1px solid #eeeeee;
}
.news-block .inner-box .lower-box h3{
position:relative;
font-size:32px;
font-weight:400;
line-height:1.4em;
margin-bottom:15px;
font-family: 'Montserrat', sans-serif;
}
.news-block .inner-box .lower-box h3 a{
color:#333333;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block .inner-box .lower-box h3 a:hover{
color:#e83f44;
}
.news-block .inner-box .lower-box .post-meta{
position:relative;
margin-bottom:15px;
}
.news-block .inner-box .lower-box .post-meta li{
position:relative;
color:#999999;
font-weight:600;
font-size:13px;
padding-left:18px;
display:inline-block;
margin-right:20px;
letter-spacing:1px;
text-transform:uppercase;
}
.news-block .inner-box .lower-box .post-meta li .icon{
position:absolute;
left:0px;
top:0px;
font-size:13px;
color:#999999;
}
.news-block .inner-box .lower-box .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
margin-bottom:25px;
}
/***
====================================================================
Styled Pagination
====================================================================
***/
.styled-pagination{
position:relative;
}
.styled-pagination:before{
position:absolute;
content:'';
left:20%;
top:15px;
right:0px;
height:1px;
background-color:#eeeeee;
}
.styled-pagination ul{
position:relative;
display:inline-block;
}
.styled-pagination li{
position:relative;
display:block;
float:left;
margin:0px 5px 5px 0px;
}
.styled-pagination li a{
position:relative;
display:inline-block;
line-height:26px;
height:30px;
font-size:13px;
text-transform:capitalize;
min-width:30px;
background:none;
color:#999999;
font-weight:400;
text-align:center;
border:2px solid #f3f3f3;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
font-family: 'Montserrat', sans-serif;
}
.styled-pagination li a:hover,
.styled-pagination li a.active{
color:#ffffff;
border-color:#333;
background-color:#333;
}
.styled-pagination.centered{
text-align:center;
}
.styled-pagination.centered:before{
left:0%;
}
.styled-pagination.centered ul{
background-color:#ffffff;
padding:0px 30px;
}
/***
====================================================================
Main Footer
====================================================================
***/
.main-footer{
position:relative;
background-color:#28292d;
}
.main-footer .widgets-section{
position:relative;
padding-top:86px;
padding-bottom:30px;
}
.main-footer .widgets-section .footer-widget{
position:relative;
margin-bottom:30px;
}
.main-footer .widgets-section .footer-widget h2{
position:relative;
font-size:14px;
font-weight:700;
color:#ffffff;
letter-spacing:1px;
padding-bottom:10px;
margin-bottom:30px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
border-bottom:2px solid rgba(255,255,255,0.10);
}
.review-block{
position:relative;
min-height:110px;
margin-bottom:30px;
border-bottom:1px solid rgba(255,255,255,0.10);
}
.review-block:last-child{
margin-bottom:0px;
border:0px;
min-height:80px;
}
.review-block .inner-box{
position:relative;
padding-left:105px;
}
.review-block .inner-box .image{
position:absolute;
left:0px;
top:0px;
width:86px;
background-color:#e9ebee;
}
.review-block .inner-box .image a:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
z-index:1;
opacity:0;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
background-color:rgba(255,255,255,0.30);
}
.review-block .inner-box:hover .image a:before{
opacity:1;
}
.review-block .inner-box .text{
position:relative;
font-size:16px;
font-weight:400;
color:rgba(255,255,255,0.60);
font-family: 'Montserrat', sans-serif;
}
.review-block .inner-box .text a{
position:relative;
font-weight:400;
color:rgba(255,255,255,0.60);
font-family: 'Montserrat', sans-serif;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.review-block .inner-box .text a:hover{
color:#e73f43;
}
.review-block .inner-box .ratings{
position:relative;
color:#ffffff;
font-size:13px;
font-family: 'Montserrat', sans-serif;
}
.review-block .inner-box .ratings .fa{
position:relative;
color:#ffffff;
font-size:16px;
}
.review-block .inner-box .ratings .fa.light{
color:rgba(255,255,255,0.10);
}
/***
====================================================================
Flickr Gallery
====================================================================
***/
.isntagram-widget .image{
position:relative;
float:left;
width:25%;
padding:0px 3px 3px 0px;
}
.isntagram-widget .image img{
position:relative;
display:block;
width:100%;
background-color:#e9ebee;
}
.isntagram-widget .image .lightbox-image{
position:relative;
display:block;
}
.isntagram-widget .image .lightbox-image:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
z-index:1;
opacity:0;
background-color:rgba(0,0,0,0.40);
transition:all 300ms ease;
-o-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-moz-transition:all 300ms ease;
-webkit-transition:all 300ms ease;
}
.isntagram-widget .image:hover .lightbox-image:before{
opacity:1;
}
/*Popular Tags*/
.popular-tags a{
position:relative;
display:inline-block;
line-height:24px;
padding:4px 12px 4px;
margin:0px 0px 4px 0px;
color:#777777;
text-align:center;
font-size:11px;
font-weight:600;
background:#313438;
letter-spacing:1px;
text-transform:uppercase;
transition:all 300ms ease;
-o-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-moz-transition:all 300ms ease;
-webkit-transition:all 300ms ease;
}
.popular-tags a:hover{
color:#ffffff;
background-color:#e73f43;
}
/*News Info*/
.news-info{
position:relative;
}
.news-info .inner-box{
position:relative;
padding-left:105px;
min-height:110px;
margin-bottom:30px;
border-bottom:1px solid rgba(255,255,255,0.10);
}
.news-info:last-child .inner-box{
position:relative;
border:0px;
margin-bottom:0px;
}
.news-info .inner-box .image{
position:absolute;
left:0px;
top:0px;
width:85px;
background-color:#e9ebee;
}
.news-info .inner-box .image .overlay{
position:absolute;
left:0px;
top:0px;
width:100%;
opacity:0;
height:100%;
display:block;
text-align:center;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-info .inner-box .image .overlay .icon{
position:relative;
width:32px;
height:32px;
color:#ffffff;
line-height:26px;
font-size:12px;
text-align:center;
border-radius:50%;
margin-top:20px;
border:3px solid #ffffff;
}
.news-info .inner-box:hover .image .overlay{
opacity:1;
}
.news-info .inner-box .text{
position:relative;
font-size:16px;
line-height:1.6em;
color:rgba(255,255,255,0.60);
font-family: 'Montserrat', sans-serif;
}
.news-info .inner-box .text a{
color:rgba(255,255,255,0.60);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-info .inner-box .text a:hover{
color:#e73f43;
}
.news-info .inner-box .post-date{
position:relative;
font-size:11px;
font-weight:600;
padding-left:18px;
letter-spacing:1px;
text-transform:uppercase;
color:rgba(255,255,255,0.30);
}
.news-info .inner-box .post-date:before{
position:absolute;
content:'\f017';
left:0px;
top:0px;
font-size:13px;
font-weight:300;
font-family: 'FontAwesome';
color:rgba(255,255,255,0.30);
}
.main-footer .footer-bottom{
position:relative;
padding:0px 0px 0px;
background-color:#1a1c1e;
}
.main-footer .footer-bottom .logo{
position:relative;
width:280px;
height:80px;
background:url(../images/logo-2.png) no-repeat;
}
.main-footer .footer-bottom .logo a{
position:relative;
display:block;
width:280px;
height:80px;
}
.main-footer .footer-bottom .text{
position:relative;
color:#ffffff;
font-size:14px;
line-height:1.6em;
text-align:center;
}
.main-footer .footer-bottom .copyright-section{
position:relative;
padding:15px 0px;
margin-top:40px;
border-top:1px solid rgba(255,255,255,0.10);
}
.main-footer .footer-bottom .copyright-section .footer-nav{
position:relative;
}
.main-footer .footer-bottom .copyright-section .footer-nav li{
position:relative;
font-size:13px;
padding-right:20px;
margin-right:20px;
display:inline-block;
line-height:1em;
border-right:1px solid rgba(255,255,255,0.10);
}
.main-footer .footer-bottom .copyright-section .footer-nav li:last-child{
border:0px;
margin:0px;
padding:0px;
}
.main-footer .footer-bottom .copyright-section .footer-nav li a{
position:relative;
color:#ffffff;
font-size: 12px;
letter-spacing:1px;
text-transform:uppercase;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
font-family: 'Poppins', sans-serif;
}
.main-footer .footer-bottom .copyright-section .footer-nav li a:hover{
color:#e73f43;
}
.main-footer .footer-bottom .copyright-section .copyright{
position:relative;
color:#ffffff;
text-align:center;
font-family: 'Poppins', sans-serif;
font-size: 12px
}
/***
====================================================================
Hidden Sidebar style
====================================================================
***/
.hidden-bar{
position: fixed;
top: 0;
width: 100%;
height: 100%;
background: #232323;
z-index: 9999;
transition: all 700ms ease;
-webkit-transition: all 700ms ease;
-ms-transition: all 700ms ease;
-o-transition: all 700ms ease;
-moz-transition: all 700ms ease;
}
.hidden-bar .mCSB_inside > .mCSB_container{
margin-right:0px;
}
.hidden-bar.left-align {
left: -400px;
}
.hidden-bar.left-align.visible-sidebar{
left:0px;
}
.hidden-bar.left-align {
left: -100%;
}
.hidden-bar.left-align.visible-sidebar {
left: 0%;
display:none;
}
.hidden-bar .hidden-bar-closer {
width: 40px;
height: 40px;
position: absolute;
right: 10px;
top:5px;
background: none;
color: #ffffff;
border-radius: 0px;
text-align: center;
line-height: 40px;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
z-index: 999999;
}
.hidden-bar .hidden-bar-closer button {
background: none;
display:block;
font-size: 20px;
color:#656565;
width:40px;
height:40px;
line-height:40px;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
}
.hidden-bar .hidden-bar-closer:hover button {
color: #ffffff;
}
.hidden-bar-wrapper {
height: 100%;
padding:10px 30px 40px;
padding-right:0px;
}
.hidden-bar-wrapper .mCustomScrollBox{
overflow:visible;
}
.hidden-bar .logo {
position:relative;
padding: 0px 0px 0px;
text-align:center;
width:270px;
height:60px;
margin:0 auto;
right:20px;
margin-top:20px;
margin-bottom:20px;
background:url(../images/mobile-logo.png) no-repeat;
}
.hidden-bar .logo a{
position:relative;
width:270px;
height:60px;
display:block;
}
.hidden-bar .logo img{
display:inline-block;
max-width:100%;
}
.hidden-bar .side-menu {
background-color: transparent;
padding: 0;
font-size:13px;
text-align:center;
padding-right:40px;
}
.hidden-bar .side-menu ul li ul a {
background: transparent;
}
.hidden-bar .side-menu ul li ul li ul li a {
background: transparent;
text-transform:uppercase;
padding-left:22px;
font-size:13px;
color:rgba(255,255,255,0.50);
}
.hidden-bar .side-menu a.current {
color: #c5a47e;
}
.hidden-bar .side-menu li.current > a {
color: #c5a47e;
}
.hidden-bar .side-menu ul li{
position:relative;
display:block;
border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hidden-bar .side-menu > ul > li > ul{
background-color:#2a2a2a;
}
.hidden-bar .side-menu ul.navigation > li > ul > li:first-child{
border-top: 1px solid rgba(255,255,255,0.15);
}
.hidden-bar .side-menu ul.navigation > li > ul > li:last-child{
border-bottom:none;
}
.hidden-bar .side-menu ul li a {
background: transparent;
color: #ffffff;
display: inline-block;
font-weight: 400;
text-transform: uppercase;
padding: 12px 15px 12px 0px;
position: relative;
line-height:24px;
font-size:13px;
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
letter-spacing:1px;
font-family: 'Montserrat', sans-serif;
}
.hidden-bar .side-menu ul.navigation > li > ul > li > a{
text-transform:uppercase;
padding-left:22px;
font-size:13px;
color:rgba(255,255,255,0.50);
}
.hidden-bar .side-menu ul.navigation > li.active > a:after{
content:'';
position:absolute;
left:100%;
top:50%;
margin-top:-1px;
width:30px;
border-bottom:2px solid #c5a47e;
}
.hidden-bar .side-menu ul.navigation > li.dropdown > a{
}
.hidden-bar .side-menu ul.navigation > li > ul > li.dropdown > a{
padding-left:22px;
}
.hidden-bar .side-menu ul.navigation > li > ul > li.dropdown{
width:auto;
margin-left:22px;
}
.hidden-bar .side-menu > ul > li.dropdown > a:after{
position:absolute;
content:'\f107';
right:0px;
top:13px;
font-size:14px;
font-family: 'FontAwesome';
}
.hidden-bar .side-menu ul li a:hover,
.hidden-bar .side-menu ul > li.current > a,
.hidden-bar .side-menu ul > li > ul > li.current > a,
.hidden-bar .side-menu ul.navigation > li > ul > li > a:hover,
.hidden-bar .side-menu ul.navigation > li.active > a {
color: #e73f43;
}
.hidden-bar .social-links{
position:relative;
margin-right:40px;
text-align:center;
font-size:13px;
line-height:20px;
color:#999999;
margin-top:35px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.10);
}
.hidden-bar .social-links li{
position:relative;
display:inline-block;
line-height:20px;
}
.hidden-bar .social-links li a{
display:block;
color:#999999;
font-size:18px;
padding:0px 12px 0px 14px;
transition:all 500ms ease;
border-left:1px solid rgba(255,255,255,0.10);
}
.hidden-bar .social-links li:last-child a{
border-right:1px solid rgba(255,255,255,0.10);
}
.hidden-bar .social-links li a:hover{
color:#ffffff;
}
.main-header .nav-toggler{
position:absolute;
right:0px;
top:-75px;
z-index:12;
display:none;
}
.main-header .nav-toggler button{
position:relative;
display:block;
height:36px;
width:42px;
background:none;
color:#7f7f7f;
text-align:center;
font-size:20px;
line-height:36px;
border:1px solid #a0a0a0;
font-weight:normal;
}
/*Sidebar Search*/
.hidden-bar .hidden-bar-wrapper .sidebar-search{
position:relative;
margin-top:26px;
padding-right:40px;
margin-bottom:18px;
}
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group{
position:relative;
}
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group input[type="text"],
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group input[type="search"]{
position: relative;
display: block;
width: 100%;
line-height: 24px;
padding: 10px 16px 10px 25px;
height: 46px;
color:rgba(255,255,255,0.50);
font-size: 14px;
background: #1f1f1f;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
-moz-transition: all 300ms ease;
transition: all 300ms ease;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group input::-webkit-input-placeholder{
color:rgba(255,255,255,0.50);
font-size: 14px;
letter-spacing:1px;
font-family: 'Montserrat', sans-serif;
}
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group input[type="submit"],
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group button {
color: #999999;
font-size: 16px;
height: 46px;
background:none;
position: absolute;
right: 0;
text-align: left;
top: 0;
width: 36px;
}
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group button:hover{
}
.hidden-bar .hidden-bar-wrapper .sidebar-search .form-group button span {
padding-left: 0 !important;
padding-right: 8px;
}
.hidden-bar .hidden-bar-wrapper .mobile-cart{
position:relative;
padding:12px 24px;
background-color:#1f1f1f;
margin-right:40px;
margin-bottom:20px;
}
.hidden-bar .hidden-bar-wrapper .mobile-cart .text{
position:relative;
font-size:14px;
text-transform:uppercase;
color:rgba(255,255,255,0.50);
font-family: 'Montserrat', sans-serif;
}
.hidden-bar .hidden-bar-wrapper .mobile-cart .icon{
position:relative;
font-size:16px;
color:rgba(255,255,255,0.50);
}
/*Language Box*/
.hidden-bar .hidden-bar-wrapper .language{
position:relative;
padding-right:40px;
}
.hidden-bar .hidden-bar-wrapper .language a{
position:relative;
width:100%;
display:block;
border:0px;
height:46px;
line-height:37px;
padding:4px 25px;
text-align:left;
text-transform:uppercase;
background-color:#1f1f1f;
color:rgba(255,255,255,0.50);
font-family: 'Montserrat', sans-serif;
}
.hidden-bar .hidden-bar-wrapper .language a .icon{
position:absolute;
right:30px;
}
.hidden-bar .hidden-bar-wrapper .language .dropdown-menu{
position:relative;
padding:0px;
width:100%;
}
/*Main Slider*/
.main-slider,
.main-slider-two{
position:relative;
overflow:hidden;
padding:0px 0px 0px;
background-color:#f9f9f9;
}
.main-slider .slide{
position:relative;
overflow:hidden;
}
.main-slider .slide .image{
position:relative;
}
.main-slider .slide .image img{
position:relative;
width:100%;
display:block;
transition:all 0.6s ease;
-moz-transition:all 0.6s ease;
-webkit-transition:all 0.6s ease;
-ms-transition:all 0.6s ease;
-o-transition:all 0.6s ease;
}
.main-slider .slide:hover .image img{
-webkit-transform : scale(1.2,1.2);
-ms-transform : scale(1.2,1.2);
transform : scale(1.2,1.2);
}
.main-slider .slide .overlay-box{
position: absolute;
left: 0px;
top: 0px;
padding: 0px;
color: #ffffff;
opacity: 1;
width:100%;
height:100%;
text-align: center;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
.main-slider .owl-item .slide:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
opacity:1;
z-index:1;
transition:all 300ms ease;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
background:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
}
.main-slider .slide .overlay-box .overlay-inner{
position: absolute;
left: 0px;
bottom: 20px;
width: 100%;
z-index:1;
text-align:center;
padding: 30px 15px;
}
.main-slider .slide .overlay-box .overlay-inner .content{
position: relative;
}
.main-slider .slide .overlay-box .overlay-inner .content .category{
position:relative;
color:#ffffff;
font-size:12px;
display:inline-block;
padding:0px 12px;
font-weight:400;
margin-bottom:20px;
text-transform:uppercase;
background-color:#e73f43;
}
.main-slider .slide .overlay-box .overlay-inner .content .category a{
color:#ffffff;
}
.main-slider .slide .overlay-box .overlay-inner .content h2{
position:relative;
color:#ffffff;
font-size:32px;
font-weight:700;
margin-bottom:15px;
text-transform:uppercase;
}
.main-slider .slide .overlay-box .overlay-inner .content h2 a{
color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.main-slider .slide .overlay-box .overlay-inner .content h2 a:hover{
opacity:0.70;
}
.main-slider .slide .overlay-box .overlay-inner .content .post-meta{
position:relative;
}
.main-slider .slide .overlay-box .overlay-inner .content .post-meta li{
position:relative;
color:#ffffff;
font-size:11px;
padding-left:20px;
font-weight:500;
line-height:1em;
margin-right:15px;
display:inline-block;
text-transform:uppercase;
}
.main-slider .slide .overlay-box .overlay-inner .content .post-meta li .icon{
position:absolute;
left:0px;
top:0px;
}
.main-slider .owl-carousel .owl-stage-outer{
overflow:visible;
}
.main-slider.style-two .owl-carousel .owl-stage-outer{
overflow:hidden;
}
.main-slider .owl-carousel{
max-width: 1170px;
margin: 0 auto;
}
.main-slider .owl-item.active .slide .overlay-box{
background:none;
}
.main-slider .owl-dots,
.main-slider-two .owl-dots,
.main-slider-four .owl-dots{
position: relative;
text-align:center;
margin-top:30px;
}
.main-slider .owl-dots .owl-dot,
.main-slider-two .owl-dots .owl-dot,
.main-slider-three .owl-dots .owl-dot,
.main-slider-four .owl-dots .owl-dot{
position:relative;
display:inline-block;
margin:0px 5px;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.main-slider .owl-dots .owl-dot span,
.main-slider-two .owl-dots .owl-dot span,
.main-slider-three .owl-dots .owl-dot span,
.main-slider-four .owl-dots .owl-dot span{
position:relative;
display:block;
width:8px;
height:8px;
margin:0px;
border-radius:50%;
background:#d1d1d1;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.main-slider .owl-dots .owl-dot.active span,
.main-slider .owl-dots .owl-dot:hover span,
.main-slider-two .owl-dots .owl-dot.active span,
.main-slider-two .owl-dots .owl-dot:hover span,
.main-slider-three .owl-dots .owl-dot.active span,
.main-slider-three .owl-dots .owl-dot:hover span,
.main-slider-four .owl-dots .owl-dot.active span,
.main-slider-four .owl-dots .owl-dot:hover span{
background:#e73f43;
}
.testimonial-section .owl-nav{
padding:0px;
margin:0px;
display:block;
}
.main-slider-two .owl-nav{
display:none;
}
.main-slider .owl-nav .owl-prev,
.main-slider .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-20px;
width:42px;
height:42px;
color:#ffffff;
font-size:24px;
line-height:40px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,0.20);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-slider .owl-nav .owl-prev{
left:-50px;
}
.main-slider .owl-nav .owl-next{
right:-50px;
}
.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
.main-slider-two .slide-column{
position:relative;
padding:0px 2px;
margin-bottom:4px;
}
.main-slider-two .slide-column .row{
margin:0px -2px;
}
.main-slider-two .slide-column .inner-slide{
margin-bottom:4px;
padding:0px 2px;
}
/*Main Slider Three*/
.main-slider-three .owl-dots{
position:relative;
text-align:center;
top:-60px;
}
.main-slider-three .owl-nav .owl-prev,
.main-slider-three .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-20px;
width:43px;
height:43px;
color:#ffffff;
font-size:18px;
line-height:38px;
text-align:center;
font-weight:700;
border:2px solid rgba(255,255,255,0.40);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-slider-three .owl-nav .owl-prev{
left:20px;
}
.main-slider-three .owl-nav .owl-next{
right:20px;
}
.main-slider-three .owl-nav .owl-prev:hover,
.main-slider-three .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
border-color:#e73f43;
}
/*Main Slider Four*/
.main-slider-four{
position:relative;
padding:55px 0px 45px;
background-color:#f9f9f9;
}
.main-slider-four .section-outer{
position:relative;
padding:0px 30px;
}
.main-slider-four .owl-nav .owl-prev,
.main-slider-four .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-40px;
width:44px;
height:44px;
color:#999999;
font-size:20px;
line-height:42px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,1);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-slider-four .owl-nav .owl-prev{
left:-22px;
}
.main-slider-four .owl-nav .owl-next{
right:-22px;
}
.main-slider-four .owl-nav .owl-prev:hover,
.main-slider-four .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
/***
====================================================================
Sidebar Page Container
====================================================================
***/
.sidebar-page-container{
position:relative;
padding:40px 0px 0px;
}
.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side{
margin-bottom:0px;
}
.sidebar-page-container .sidebar-side .sidebar.right-sidebar{
position:relative;
padding-left:30px;
}
.sidebar-page-container .sidebar-side .sidebar.left-sidebar{
padding-right:30px;
}
.sidebar-page-container.change-padding{
padding-bottom:30px;
}
.sidebar-widget{
position: relative;
margin-bottom:65px;
}
.sidebar-title{
position:relative;
margin-bottom:30px;
background-color:#f3f3f3;
}
.sidebar-title h2{
position:relative;
color:#ffffff;
padding:9px 20px;
font-weight:400;
font-size:12px;
letter-spacing:1px;
display:inline-block;
background-color:#e73f43;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.sidebar-social-widget{
margin-bottom:30px;
}
/*Adds Block*/
.adds-block{
position:relative;
background-size:cover;
}
.adds-block .inner-box{
position:relative;
padding:80px 0px;
text-align:center;
outline-offset: -12px;
outline: 2px solid rgba(255,255,255,0.80);
}
.adds-block .inner-box:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
background-color:rgba(0,0,0,0.50);
}
.adds-block .inner-box .text{
position:relative;
color:#ffffff;
font-size:18px;
line-height:1.9em;
margin-bottom:20px;
text-transform:capitalize;
}
.adds-block .inner-box .text span{
display:block;
}
/***
====================================================================
Product Tabs Style
====================================================================
***/
.product-widget-tabs{
position:relative;
padding:0px 0px;
background-color:#ffffff;
}
.product-widget-tabs .prod-tabs{
position:relative;
}
.product-widget-tabs .prod-tabs .tab-btns{
position:relative;
margin-bottom:30px;
background-color:#f3f3f3;
}
.product-widget-tabs .prod-tabs .tab-btns .tab-btn{
position:relative;
top:1px;
display:block;
float:left;
margin-right:1px;
font-size:13px;
color:#777777;
text-transform:uppercase;
font-weight:600;
line-height:24px;
cursor:pointer;
width:33%;
text-align:center;
letter-spacing:1px;
padding:7px 15px 8px;
transition:all 500ms ease;
}
.product-widget-tabs .prod-tabs .tab-btns .tab-btn:after{
position:absolute;
content:'';
right:0px;
top:13px;
width:1px;
height:10px;
background-color:#dcdcdc;
}
.product-widget-tabs .prod-tabs .tab-btns .tab-btn:last-child{
margin-right:0px;
}
.product-widget-tabs .prod-tabs .tab-btns .tab-btn:hover,
.product-widget-tabs .prod-tabs .tab-btns .tab-btn.active-btn{
color:#ffffff;
background:#e73f43;
}
.product-widget-tabs .prod-tabs .tab-btns .tab-btn:hover:after,
.product-widget-tabs .prod-tabs .tab-btns .tab-btn:last-child:after,
.product-widget-tabs .prod-tabs .tab-btns .tab-btn.active-btn:after{
display:none;
}
.product-widget-tabs .prod-tabs .tabs-content{
position:relative;
}
.product-widget-tabs .prod-tabs .tabs-content .tab{
position:relative;
display:none;
}
.product-widget-tabs .prod-tabs .tabs-content .tab.active-tab{
display:block;
}
/*Post Widget*/
.widget-post{
position:relative;
font-size:14px;
color:#666666;
padding:0px 0px;
padding-left:105px;
min-height:110px;
margin-bottom:30px;
border-bottom:1px solid #eeeeee;
}
.widget-post:last-child{
margin-bottom:0px;
border:0px;
min-height:80px;
}
.widget-post .post-thumb{
position:absolute;
left:0px;
top:0px;
width:85px;
background-color:#e9ebee;
}
.widget-post .post-thumb > a{
position:relative;
display:block;
}
.widget-post .post-thumb a:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
z-index:99;
opacity:0;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
background-color:rgba(255,255,255,0.50);
}
.widget-post:hover .post-thumb a:before{
opacity:1;
}
.widget-post .post-thumb .overlay{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
z-index:10;
opacity:0;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-post .post-thumb .overlay .icon{
position:relative;
width:30px;
height:30px;
color:#ffffff;
text-align:center;
line-height:26px;
font-size:10px;
padding-left:3px;
border-radius:50%;
display:block;
margin:0 auto;
top:50%;
margin-top:-16px;
border:3px solid #ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-post:hover .post-thumb .overlay{
opacity:1;
}
.widget-post .post-thumb img{
display:block;
width:100%;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-post .text{
position:relative;
top:-4px;
font-size:15px;
margin:0px 0px 0px;
font-weight:400;
color:#333333;
line-height:1.6em;
text-transform:capitalize;
font-family: 'Montserrat', sans-serif;
}
.widget-post .text a{
color:#000000;
font-family: 'Fira Sans', sans-serif;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-post a,
.widget-post a:hover{
color:#e73f43;
}
.widget-post .post-info{
position:relative;
font-size:11px;
color:#999999;
font-weight:600;
padding-left:20px;
text-transform:uppercase;
}
.widget-post .post-info:before{
position:absolute;
content: "\e943";
left:0px;
top:1px;
font-size:12px;
color:#999999;
font-weight:300;
font-family: 'quebec';
}
/*Cat List*/
.cat-list{
position:relative;
z-index:99;
background-color:#ffffff;
}
.cat-list li{
position:relative;
padding-left:20px;
padding-bottom:10px;
margin-bottom:10px;
border-bottom:1px solid #eeeeee;
}
.cat-list li:before{
position:absolute;
content:'';
left:0px;
top:12px;
width:5px;
height:5px;
background-color:#d3d3d3;
}
.cat-list li a{
position:relative;
color:#777777;
font-size:13px;
font-weight:400;
letter-spacing:1px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.cat-list li a:hover{
color:#e73f43;
}
.cat-list li a span{
float:right;
}
/***
====================================================================
Category Tabs Box
====================================================================
***/
.category-tabs-box{
position:relative;
margin-bottom:50px;
}
.category-tabs-box .prod-tabs{
position:relative;
}
.category-tabs-box .prod-tabs .tab-btns{
position:relative;
margin-bottom:40px;
background-color:#f3f3f3;
}
.category-tabs-box .prod-tabs .tab-btns .category{
position: relative;
color: #ffffff;
padding: 8px 20px;
font-weight: 400;
font-size: 12px;
letter-spacing: 1px;
display: inline-block;
background-color: #e73f43;
text-transform: uppercase;
font-family: 'Montserrat', sans-serif;
}
.category-tabs-box .prod-tabs .tab-btns .tab-btn{
position:relative;
top:1px;
display:block;
float:left;
margin-right:1px;
font-size:13px;
color:#777777;
text-transform:uppercase;
font-weight:600;
line-height:24px;
cursor:pointer;
letter-spacing:1px;
padding:7px 15px 8px;
transition:all 500ms ease;
}
.category-tabs-box .prod-tabs .tab-btns .tab-btn:after{
position:absolute;
content:'';
right:0px;
top:15px;
width:1px;
height:10px;
background-color:#dcdcdc;
}
.category-tabs-box .prod-tabs .tab-btns .tab-btn:last-child{
margin-right:0px;
}
.category-tabs-box .prod-tabs .tab-btns .tab-btn:hover,
.category-tabs-box .prod-tabs .tab-btns .tab-btn.active-btn{
color:#e73f43;
}
.category-tabs-box .prod-tabs .tab-btns .tab-btn:last-child:after{
display:none;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category{
position:relative;
top:2px;
display:inline-block;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category .down-panel{
border:0px;
padding:0px;
margin-top:5px;
border-radius:0px;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category .more-category{
position:relative;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category .more-category li{
position:relative;
background-color:#101010;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category .more-category li a{
color:#ffffff;
display:block;
padding:6px 15px;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category .more-category li a:hover{
background-color:#e73f43;
}
.category-tabs-box .prod-tabs .tab-btns .dropdown-category .category-box-btn{
position:relative;
background:none;
top:1px;
display:block;
float:left;
margin-right:1px;
font-size:13px;
color:#777777;
text-transform:uppercase;
font-weight:600;
line-height:24px;
cursor:pointer;
letter-spacing:1px;
padding:5px 15px 5px;
transition:all 500ms ease;
}
.category-tabs-box .prod-tabs .tabs-content{
position:relative;
}
.category-tabs-box .prod-tabs .tabs-content .tab{
position:relative;
display:none;
}
.category-tabs-box .prod-tabs .tabs-content .tab.active-tab{
display:block;
}
/*News Block Two*/
.news-block-two{
position:relative;
}
.news-block-two.with-margin{
margin-bottom:40px;
}
.news-block-two .inner-box{
position:relative;
}
.news-block-two .inner-box .image{
position:relative;
background-color:#e9ebee;
}
.news-block-two .inner-box .image > a{
position:relative;
display:block;
}
.news-block-two .inner-box .image > a:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
opacity:0;
z-index:1;
background-color:rgba(255,255,255,0.40);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-two .inner-box:hover .image > a:before{
opacity:1;
}
.news-block-two .inner-box .image .category{
position:absolute;
left:10px;
bottom:10px;
color:#ffffff;
padding:2px 10px;
display:inline-block;
text-transform:uppercase;
letter-spacing:1px;
font-size:12px;
z-index:10;
background-color:#222222;
}
.news-block-two .inner-box .image .category a{
color:#ffffff;
}
.news-block-two .inner-box .image img{
position:relative;
width:100%;
display:block;
}
.news-block-two .inner-box .lower-box{
position:relative;
padding:30px 0px 0px;
}
.news-block-two .inner-box .lower-box h3{
position:relative;
font-size:20px;
font-weight:400;
line-height:1.4em;
margin-bottom:10px;
font-family: 'Fira Sans', sans-serif;
}
.news-block-two .inner-box .lower-box h3 a{
color:#333333;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-two .inner-box .lower-box h3 a:hover{
color:#e83f44;
}
.news-block-two .inner-box .lower-box .post-meta{
position:relative;
margin-bottom:8px;
}
.news-block-two .inner-box .lower-box .post-meta li{
position:relative;
color:#999999;
font-weight:600;
font-size:11px;
padding-left:18px;
display:inline-block;
margin-right:20px;
letter-spacing:1px;
text-transform:uppercase;
}
.news-block-two .inner-box .lower-box .post-meta li .icon{
position:absolute;
left:0px;
top:1px;
font-size:12px;
color:#999999;
}
.news-block-two .inner-box .lower-box .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
}
.news-block-two.small-block{
margin-bottom:30px;
}
.news-block-two.small-block .inner-box .lower-box{
padding-top:20px;
}
.news-block-two.small-block .inner-box .lower-box h3{
font-size:16px;
line-height:1.6em;
}
.category-tabs-box .owl-dots{
display:none;
}
.category-tabs-box .owl-nav{
position:relative;
margin-top:20px;
}
.category-tabs-box .owl-nav .owl-next,
.category-tabs-box .owl-nav .owl-prev{
position:relative;
width:30px;
height:30px;
color:#a7a7a7;
line-height:26px;
text-align:center;
margin-right:6px;
display:inline-block;
border:2px solid #f3f3f3;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.category-tabs-box .owl-nav .owl-next:hover,
.category-tabs-box .owl-nav .owl-prev:hover{
color:#ffffff;
border-color:#e73f43;
background-color:#e73f43;
}
/*blog carousel section*/
.blog-carousel-section{
position:relative;
padding:75px 0px 50px;
}
/*News Block Three*/
.news-block-three{
position:relative;
}
.news-block-three .inner-box{
position:relative;
overflow:hidden;
}
.news-block-three .inner-box .image{
position:relative;
}
.news-block-three .inner-box:hover .image img{
-webkit-transform : scale(1.2,1.2);
-ms-transform : scale(1.2,1.2);
transform : scale(1.2,1.2);
}
.news-block-three .inner-box .image img{
position:relative;
width:100%;
display:block;
transition:all 0.6s ease;
-moz-transition:all 0.6s ease;
-webkit-transition:all 0.6s ease;
-ms-transition:all 0.6s ease;
-o-transition:all 0.6s ease;
}
.news-block-three .inner-box .image .overlay-box{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
background:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
}
.news-block-three .inner-box .image .overlay-box .play-btn{
position:absolute;
right:15px;
top:15px;
width:34px;
height:34px;
line-height:28px;
display:inline-block;
border-radius:50%;
text-align:center;
color:#ffffff;
border:3px solid #ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-three .inner-box .image .overlay-box .play-btn .icon{
font-size:12px;
padding-left:3px;
}
.news-block-three .inner-box .image .overlay-box .play-btn:hover{
color:#e73f43;
border-color:#e73f43;
}
.news-block-three .inner-box .image .overlay-box .content{
position:absolute;
content:'';
left:0px;
bottom:0px;
padding:0px 15px 40px 45px;
}
.news-block-three .inner-box .image .overlay-box .content .tag{
position: relative;
color: #ffffff;
font-size: 12px;
display: inline-block;
padding: 0px 12px;
font-weight: 400;
margin-bottom: 12px;
text-transform: uppercase;
background-color: #e73f43;
}
.news-block-three .inner-box .image .overlay-box .content .tag a{
color:#ffffff;
}
.news-block-three .inner-box .image .overlay-box .content h3{
position:relative;
font-weight:700;
font-size:18px;
line-height:1.6em;
margin-bottom:8px;
_text-transform:uppercase;
}
.news-block-three .inner-box .image .overlay-box .content h3 a{
color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-three .inner-box .image .overlay-box .content h3 a:hover{
opacity:0.70;
}
.news-block-three .inner-box .image .overlay-box .content .post-meta{
position:relative;
}
.news-block-three .inner-box .image .overlay-box .content .post-meta li{
position:relative;
color:#ffffff;
font-size:11px;
font-weight:600;
padding-left:20px;
line-height:1em;
margin-right:15px;
display:inline-block;
text-transform:uppercase;
}
.news-block-three .inner-box .image .overlay-box .content .post-meta li .icon{
position:absolute;
left:0px;
top:0px;
font-size:11px;
color:#ffffff;
}
.news-block-three.style-two .inner-box .image .overlay-box .content h3{
font-size:20px;
line-height:1.4em;
}
.news-block-three.style-three .inner-box .image .overlay-box .content h3{
font-size:18px;
line-height:1.4em;
}
.news-block-three.style-four .inner-box .image .overlay-box .content h3{
font-size:22px;
line-height:1.4em;
}
.blog-carousel-section .owl-dots{
position: relative;
text-align:center;
margin-top:30px;
}
.blog-carousel-section .owl-dots .owl-dot{
position:relative;
display:inline-block;
margin:0px 5px;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.blog-carousel-section .owl-dots .owl-dot span{
position:relative;
display:block;
width:8px;
height:8px;
margin:0px;
border-radius:50%;
background:#d1d1d1;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.blog-carousel-section .owl-dots .owl-dot.active span,
.blog-carousel-section .owl-dots .owl-dot:hover span{
background:#e73f43;
}
.blog-carousel-section .owl-nav .owl-prev,
.blog-carousel-section .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-40px;
width:44px;
height:44px;
color:#999999;
font-size:20px;
line-height:42px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,1);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.blog-carousel-section .owl-nav .owl-prev{
left:-22px;
}
.blog-carousel-section .owl-nav .owl-next{
right:-22px;
}
.blog-carousel-section .owl-nav .owl-prev:hover,
.blog-carousel-section .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
/*News Block Four*/
.news-block-four{
position:relative;
padding-bottom:30px;
margin-bottom:50px;
border-bottom:1px solid #eeeeee;
}
.news-block-four .inner-box{
position:relative;
}
.news-block-four .inner-box .image-column{
position:relative;
}
.news-block-four .inner-box .image-column .image{
position:relative;
margin-bottom:30px;
background-color:#e9ebee;
}
.news-block-four .inner-box .image-column .image > a{
position:relative;
display:block;
}
.news-block-four .inner-box .image-column .image > a:before{
position: absolute;
content: '';
left: 0px;
top: 0px;
width: 100%;
height: 100%;
display: block;
opacity: 0;
z-index: 99;
background-color: rgba(255,255,255,0.40);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.news-block-four .inner-box:hover .image-column .image a:before{
opacity:1;
}
.news-block-four .inner-box .image-column .image img{
position:relative;
width:100%;
display:block;
}
.news-block-four .inner-box .content-box{
position:relative;
}
.news-block-four .inner-box .content-box .content-inner{
position:relative;
padding-left:10px;
}
.news-block-four .inner-box .content-box .category{
position: relative;
color: #ffffff;
font-size: 12px;
display: inline-block;
padding: 0px 12px;
font-weight: 400;
margin-bottom: 12px;
margin-top:5px;
text-transform: uppercase;
background-color: #222222;
}
.news-block-four .inner-box .content-box .category a{
color:#ffffff;
}
.news-block-four .inner-box .content-box h3{
position:relative;
font-weight:400;
font-size:20px;
line-height:1.5em;
margin-bottom:8px;
}
.news-block-four .inner-box .content-box h3 a{
color:#333333;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-four .inner-box .content-box h3 a:hover{
color:#e73f43;
}
.news-block-four .inner-box .content-box .post-meta{
position:relative;
margin-bottom:10px;
}
.news-block-four .inner-box .content-box .post-meta li{
position:relative;
color:#999999;
font-size:11px;
font-weight:600;
padding-left:20px;
line-height:1em;
margin-right:15px;
display:inline-block;
text-transform:uppercase;
}
.news-block-four .inner-box .content-box .post-meta li .icon{
position:absolute;
left:0px;
top:0px;
font-size:11px;
color:#999999;
}
.news-block-four .inner-box .content-box .text{
position:relative;
color:#777777;
font-size:14px;
}
.news-block-four:last-child{
margin-bottom:0px;
border:0px;
}
/*Search Box Widget*/
.sidebar .search-box .form-group{
position:relative;
margin:0px;
}
.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"]{
position:relative;
line-height:24px;
padding:10px 50px 10px 20px;
border:2px solid #e0e0e0;
background:none;
display:block;
font-size:16px;
width:100%;
height:48px;
transition:all 500ms ease;
-moz-transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.sidebar .search-box .form-group button{
position:absolute;
right:0px;
top:0px;
height:48px;
width:50px;
display:block;
font-size:20px;
color:#e0e0e0;
line-height:100%;
font-weight:normal;
background:none;
}
.sidebar .search-box .form-group input[type="text"]:focus,
.sidebar .search-box .form-group input[type="search"]:focus{
border-color:#e73f43;
}
/*News Block Five*/
.news-block-five{
position:relative;
margin-bottom:30px;
}
.news-block-five .inner-box{
position:relative;
}
.news-block-five .inner-box .image{
position:relative;
background-color:#e9ebee;
}
.news-block-five .inner-box .image a{
position:relative;
display:block;
}
.news-block-five .inner-box .image > a:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
z-index:1;
opacity:0;
background-color:rgba(0,0,0,0.50);
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-five:hover .inner-box .image a:before{
opacity:1;
}
.news-block-five .inner-box .image .category{
position:absolute;
left:10px;
bottom:10px;
color:#ffffff;
padding:2px 10px;
display:inline-block;
text-transform:uppercase;
letter-spacing:1px;
font-size:12px;
z-index:2;
background-color:#222222;
}
.news-block-five .inner-box .image .category a{
color:#ffffff;
}
.news-block-five .inner-box .image img{
position:relative;
width:100%;
display:block;
}
.news-block-five .inner-box .lower-box{
position:relative;
padding:20px 0px 0px;
padding-bottom:20px;
border-bottom:1px solid #e7e7e7;
}
.news-block-five .inner-box .lower-box .rating{
position:relative;
margin-bottom:5px;
}
.news-block-five .inner-box .lower-box .rating .fa{
position:relative;
color:#333333;
font-size:15px;
}
.news-block-five .inner-box .lower-box .rating .fa.light{
color:#c5c5c5;
}
.news-block-five .inner-box .lower-box .rating .total-rating{
position:relative;
color:#c5c5c5;
margin-left:5px;
}
.news-block-five .inner-box .lower-box h3{
position:relative;
font-size:20px;
font-weight:400;
line-height:1.4em;
margin-bottom:6px;
font-family: 'Montserrat', sans-serif;
}
.news-block-five .inner-box .lower-box h3 a{
color:#333333;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-five .inner-box .lower-box h3 a:hover{
color:#e83f44;
}
.news-block-five .inner-box .lower-box .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
}
/*Post Widget*/
.widget-post-two{
position:relative;
font-size:14px;
color:#666666;
padding:0px 0px;
min-height:110px;
margin-bottom:30px;
border-bottom:1px solid #eeeeee;
}
.widget-post-two .inner{
position:relative;
padding-left:105px;
}
.widget-post-two:last-child{
margin-bottom:0px;
border:0px;
min-height:80px;
}
.widget-post-two .post-thumb{
position:absolute;
left:0px;
top:0px;
width:85px;
background-color:#e9ebee;
}
.widget-post-two .post-thumb a:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
z-index:1;
opacity:0;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
background-color:rgba(255,255,255,0.50);
}
.widget-post-two:hover .post-thumb a:before{
opacity:1;
}
.widget-post-two .post-thumb img{
display:block;
width:100%;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-post-two .text{
position:relative;
top:-4px;
font-size:15px;
margin:0px 0px 0px;
font-weight:400;
color:#333333;
line-height:1.6em;
text-transform:capitalize;
font-family: 'Montserrat', sans-serif;
}
.widget-post-two .text a{
color:#000000;
font-family: 'Montserrat', sans-serif;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-post-two a,
.widget-post-two a:hover{
color:#e73f43;
}
.widget-post-two .inner .rating{
position:relative;
margin-bottom:5px;
}
.widget-post-two .inner .rating .fa{
position:relative;
color:#333333;
font-size:15px;
}
.widget-post-two .inner .rating .fa.light{
color:#c5c5c5;
}
.widget-post-two .inner .rating .total-rating{
position:relative;
color:#c5c5c5;
margin-left:5px;
}
/*Tweet Block*/
.tweet-block{
position:relative;
}
.tweet-block .inner-box{
position:relative;
text-align:center;
}
.tweet-block .inner-box .tweet-icon{
position:relative;
color:#d9d9d9;
font-size:40px;
line-height:1em;
margin-bottom:15px;
}
.tweet-block .inner-box .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
padding-bottom:10px;
margin-bottom:5px;
}
.tweet-block .inner-box .text:after{
position:absolute;
content:'';
left:50%;
height:1px;
width:70px;
bottom:0px;
margin-left:-35px;
background-color:#e73f43;
}
.tweet-block .inner-box .post-time{
position:relative;
color:#999999;
font-size:11px;
font-weight:600;
text-transform:uppercase;
}
.tweet-widget .owl-nav{
display:none;
}
.tweet-widget .owl-dots{
position: relative;
text-align:center;
margin-top:10px;
}
.tweet-widget .owl-dots .owl-dot{
position:relative;
display:inline-block;
margin:0px 5px;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.tweet-widget .owl-dots .owl-dot span{
position:relative;
display:block;
width:8px;
height:8px;
margin:0px;
border-radius:50%;
background:#d1d1d1;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.tweet-widget .owl-dots .owl-dot.active span,
.tweet-widget .owl-dots .owl-dot:hover span{
background:#e73f43;
}
/*Post Comment Widget*/
.widget-comment-post{
position:relative;
font-size:14px;
color:#666666;
padding:0px 0px;
padding-left:105px;
min-height:110px;
margin-bottom:30px;
border-bottom:1px solid #eeeeee;
}
.widget-comment-post:last-child{
margin-bottom:0px;
border:0px;
min-height:80px;
}
.widget-comment-post .post-thumb{
position:absolute;
left:0px;
top:0px;
width:85px;
}
.widget-comment-post .post-thumb img{
display:block;
width:100%;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-comment-post .text{
position:relative;
top:-4px;
font-size:16px;
margin:0px 0px 0px;
font-weight:400;
color:#333333;
line-height:1.6em;
text-transform:capitalize;
font-family: 'Montserrat', sans-serif;
}
.widget-comment-post .text a{
color:#000000;
font-family: 'Montserrat', sans-serif;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.widget-comment-post a,
.widget-comment-post a:hover{
color:#e73f43;
}
.widget-comment-post .post-info{
position:relative;
font-size:11px;
color:#999999;
font-weight:600;
padding-left:20px;
text-transform:uppercase;
}
.widget-comment-post .post-info:before{
position:absolute;
content: "\e943";
left:0px;
top:1px;
font-size:12px;
color:#999999;
font-weight:300;
font-family: 'quebec';
}
/*Economics Category*/
.economics-category{
position:relative;
margin-bottom:30px;
}
.economics-category .column{
position:relative;
margin-bottom:40px;
}
.economics-category .owl-dots{
position:relative;
display:none;
}
.economics-category .owl-nav{
position:relative;
margin-top:0px;
}
.economics-category .owl-nav .owl-next,
.economics-category .owl-nav .owl-prev{
position:relative;
width:30px;
height:30px;
color:#a7a7a7;
line-height:26px;
text-align:center;
margin-right:6px;
display:inline-block;
border:2px solid #f3f3f3;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.economics-category .owl-nav .owl-next:hover,
.economics-category .owl-nav .owl-prev:hover{
color:#ffffff;
border-color:#e73f43;
background-color:#e73f43;
}
/*Featured Block Section*/
.featured-block-section{
position:relative;
margin-bottom:65px;
}
.featured-block-section .owl-dots{
position: relative;
text-align:center;
margin-top:20px;
}
.featured-block-section .owl-dots .owl-dot{
position:relative;
display:inline-block;
margin:0px 5px;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.featured-block-section .owl-dots .owl-dot span{
position:relative;
display:block;
width:8px;
height:8px;
margin:0px;
border-radius:50%;
background:#d1d1d1;
transition: all 0.6s ease;
-moz-transition: all 0.6s ease;
-webkit-transition: all 0.6s ease;
-ms-transition: all 0.6s ease;
-o-transition: all 0.6s ease;
}
.featured-block-section .owl-dots .owl-dot.active span,
.featured-block-section .owl-dots .owl-dot:hover span{
background:#e73f43;
}
.featured-block-section .owl-nav .owl-prev,
.featured-block-section .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-40px;
width:44px;
height:44px;
color:#999999;
font-size:20px;
line-height:42px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,1);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.featured-block-section .owl-nav .owl-prev{
left:-22px;
}
.featured-block-section .owl-nav .owl-next{
right:-22px;
}
.featured-block-section .owl-nav .owl-prev:hover,
.featured-block-section .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
/*News Block Six*/
.news-block-six{
position:relative;
}
.news-block-six .inner-box{
position:relative;
}
.news-block-six .inner-box .image-box{
position:relative;
}
.news-block-six .inner-box .image-box .image{
position:relative;
}
.news-block-six .inner-box .image-box .image img{
position:relative;
width:100%;
display:block;
}
.news-block-six .inner-box .image-box .image .overlay-box{
position: absolute;
left: 0px;
top: 0px;
opacity: 1;
width: 100%;
height: 100%;
color: #ffffff;
text-align: center;
}
.news-block-six .inner-box .image-box .image .overlay-box .overlay-inner{
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
display: table;
padding: 10px 30px;
vertical-align: middle;
background:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
}
.news-block-six .inner-box .image-box .image .overlay-box .overlay-inner .content{
position: relative;
display: table-cell;
vertical-align: middle;
}
.news-block-six .inner-box .image-box .image .overlay-box .overlay-inner .content .category{
position: relative;
color: #ffffff;
font-size: 12px;
display: inline-block;
padding: 0px 12px;
font-weight: 400;
margin-bottom: 12px;
text-transform: uppercase;
background-color: #e73f43;
}
.news-block-six .inner-box .image-box .image .overlay-box .overlay-inner .content .category a{
color:#ffffff;
}
.news-block-six .inner-box .image-box .image .overlay-box .overlay-inner .content h2{
position: relative;
font-weight: 700;
font-size: 42px;
line-height: 1.3em;
margin-bottom: 18px;
padding-bottom:15px;
text-transform: uppercase;
}
.news-block-six .inner-box .image-box .image .overlay-box .content h2 a{
color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-six .inner-box .image-box .image .overlay-box .content h2 a:hover{
opacity:0.70;
}
.news-block-six .inner-box .image-box .image .overlay-box .content h2:after{
position:absolute;
content:'';
left:50%;
width:90px;
height:1px;
bottom:0px;
margin-left:-45px;
background-color:#ffffff;
}
.news-block-six .inner-box .image-box .image .overlay-box .content .post-date{
position:relative;
font-size:14px;
font-weight:600;
z-index:1;
color:rgba(255,255,255,0.80);
text-transform:uppercase;
}
.news-block-six .inner-box .image-box .image .overlay-box .content .post-date.margin{
margin-bottom:100px;
}
.about-widget{
position:relative;
}
.about-widget .widget-content{
position:relative;
}
.about-widget .widget-content .inner{
position:relative;
}
.about-widget .widget-content .inner .image{
position:relative;
margin-bottom:30px;
}
.about-widget .widget-content .inner .image img{
position:relative;
width:100%;
display:block;
}
.about-widget .widget-content .inner .name{
position:relative;
color:#999999;
font-size:16px;
letter-spacing:1px;
font-weight:400;
text-align:center;
margin-bottom:30px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.about-widget .widget-content .inner .signature{
position:relative;
font-size:46px;
font-weight:400;
line-height:1em;
color:#333333;
text-align:center;
padding-bottom:20px;
border-bottom:1px solid #eeeeee;
font-family: '<NAME>', cursive;
}
.about-widget .widget-content .inner .text{
position:relative;
color:#777777;
font-size:14px;
margin-top:25px;
}
/*Newsletter Widget*/
.newsletter-widget{
position:relative;
margin-bottom:60px;
}
.newsletter-widget .inner-box{
position:relative;
padding:40px 30px 20px;
background-color:#e73f43;
}
.newsletter-widget .inner-box h2{
position:relative;
font-size:14px;
font-weight:400;
color:#ffffff;
letter-spacing:1px;
text-align:center;
padding-bottom:18px;
margin-bottom:30px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.newsletter-widget .inner-box h2:after{
position:absolute;
content:'';
left:50%;
bottom:0px;
width:65px;
height:2px;
margin-left:-32px;
background-color:#ffffff;
}
.newsletter-widget .form-group{
position:relative;
display:block;
}
.newsletter-widget .form-group input[type="text"],
.newsletter-widget .form-group input[type="tel"],
.newsletter-widget .form-group input[type="email"],
.newsletter-widget .form-group textarea{
position:relative;
display:block;
width:100%;
line-height:20px;
height:50px;
font-size:14px;
color:#777777;
font-style:italic;
padding:10px 50px 10px 20px;
background:#ffffff;
text-align:center;
margin-bottom:18px;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.newsletter-widget .form-group input[type="submit"],
.newsletter-widget button{
position:relative;
right:0px;
top:0px;
width:100%;
height:50px;
line-height:50px;
color:#ffffff;
font-size:12px;
text-align:center;
background:#333333;
letter-spacing:2px;
font-weight:400;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
/*Popular Tags*/
.popular-tags-two a{
position:relative;
display:inline-block;
line-height:24px;
padding:4px 12px 4px;
margin:0px 0px 4px 0px;
color:#ffffff;
text-align:center;
font-size:11px;
font-weight:600;
background:#adaeaf;
letter-spacing:1px;
text-transform:uppercase;
transition:all 300ms ease;
-o-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-moz-transition:all 300ms ease;
-webkit-transition:all 300ms ease;
}
.popular-tags-two a:hover{
color:#ffffff;
background-color:#e73f43;
}
/*News Block Seven*/
.news-block-seven{
position:relative;
margin-bottom:70px;
}
.news-block-seven .inner-box{
position:relative;
}
.news-block-seven .inner-box .image{
position:relative;
}
.news-block-seven .inner-box .image > a{
position:relative;
display:block;
}
.news-block-seven .inner-box .image > a:before{
position: absolute;
content: '';
left: 0px;
top: 0px;
width: 100%;
height: 100%;
display: block;
opacity: 0;
z-index: 1;
background-color: rgba(255,255,255,0.40);
transition: all 0.3s ease;
-moz-transition: all 0.3s ease;
-webkit-transition: all 0.3s ease;
-ms-transition: all 0.3s ease;
-o-transition: all 0.3s ease;
}
.news-block-seven .inner-box:hover .image > a:before{
opacity:1;
}
.news-block-seven .inner-box .image .category{
position:absolute;
left:10px;
bottom:10px;
color:#ffffff;
padding:2px 10px;
display:inline-block;
text-transform:uppercase;
letter-spacing:1px;
font-size:12px;
z-index:1;
background-color:#222222;
}
.news-block-seven .inner-box .image .category a{
color:#ffffff;
}
.news-block-seven .inner-box .image .owl-dots{
display:none;
}
.news-block-seven .inner-box .image .owl-nav{
position:absolute;
right:0px;
bottom:0px;
}
.news-block-seven .inner-box .image .owl-nav .owl-next,
.news-block-seven .inner-box .image .owl-nav .owl-prev{
background-color:rgba(255,255,255,0.80);
width:43px;
height:43px;
color:#9b9b9b;
font-size:16px;
margin-top:1px;
line-height:43px;
text-align:center;
}
.news-block-seven .inner-box .image img{
position:relative;
width:100%;
display:block;
}
.news-block-seven .inner-box .lower-box{
position:relative;
padding:30px 0px 0px;
padding-bottom:40px;
border-bottom:1px solid #eeeeee;
}
.news-block-seven .inner-box .lower-box h3{
position:relative;
font-size:32px;
font-weight:400;
line-height:1.4em;
margin-bottom:12px;
font-family: 'Montserrat', sans-serif;
}
.news-block-seven .inner-box .lower-box h3 a{
color:#333333;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-seven .inner-box .lower-box h3 a:hover{
color:#e83f44;
}
.news-block-seven .inner-box .lower-box .post-meta{
position:relative;
margin-bottom:12px;
}
.news-block-seven .inner-box .lower-box .post-meta li{
position:relative;
color:#999999;
font-weight:600;
font-size:11px;
padding-left:18px;
display:inline-block;
margin-right:20px;
letter-spacing:1px;
text-transform:uppercase;
}
.news-block-seven .inner-box .lower-box .post-meta li .icon{
position:absolute;
left:0px;
top:1px;
font-size:12px;
color:#999999;
}
.news-block-seven .inner-box .lower-box .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
margin-bottom:25px;
}
.news-block-seven:last-child .inner-box .lower-box{
border:0px;
padding-bottom:0px;
margin-bottom:0px;
}
.news-block-seven.style-two .lower-box h3{
font-size:26px;
}
.instagram-gallery{
position:relative;
}
.instagram-gallery h2{
position:relative;
color:#999999;
font-size:14px;
letter-spacing:1px;
padding:30px 0px;
text-align:center;
font-weight:500;
background-color:#fbfbfb;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.default-portfolio-item{
position:relative;
width:20%;
float:left;
}
.default-portfolio-item .inner-box{
position:relative;
width:100%;
overflow:hidden;
}
.default-portfolio-item .inner-box:hover .image-box img{
-webkit-transform : scale(1.2,1.2);
-ms-transform : scale(1.2,1.2);
transform : scale(1.2,1.2);
}
.default-portfolio-item .image-box{
position:relative;
display:block;
}
.default-portfolio-item .image-box img{
position:relative;
display:block;
width:100%;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
.default-portfolio-item .overlay-box{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
padding:0px;
color:#ffffff;
opacity:0;
text-align:center;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
.default-portfolio-item .inner-box:hover .overlay-box{
top:0px;
opacity:1;
}
.default-portfolio-item .overlay-inner{
position:absolute;
left:0px;
top:0px;
width:101%;
height:101%;
display:table;
padding:10px 20px;
vertical-align:middle;
background:rgba(231,63,67,0.80);
}
.default-portfolio-item .overlay-inner .content{
position:relative;
display:table-cell;
vertical-align:middle;
}
.default-portfolio-item .overlay-inner .option-btn{
position:relative;
display:inline-block;
line-height:44px;
color:#222222;
font-size:15px;
width:44px;
height:44px;
margin:0px 3px;
background:#ffffff;
border-radius:50%;
transition: all 500ms ease;
-webkit-transition: all 500ms ease;
-ms-transition: all 500ms ease;
-o-transition: all 500ms ease;
-moz-transition: all 500ms ease;
}
.default-portfolio-item .overlay-inner .option-btn:hover{
background:rgba(231,63,67,0.90);
color:#ffffff;
}
/*News Block Three*/
.news-block-eight{
position:relative;
}
.news-block-eight .inner-box{
position:relative;
overflow:hidden;
}
.news-block-eight .inner-box:hover .image img{
-webkit-transform : scale(1.2,1.2);
-ms-transform : scale(1.2,1.2);
transform : scale(1.2,1.2);
}
.news-block-eight .inner-box .image{
position:relative;
}
.news-block-eight .inner-box .image img{
position:relative;
width:100%;
display:block;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.news-block-eight .inner-box .image .overlay-box{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
display:block;
text-align:center;
background:-webkit-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-moz-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-o-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
background:-ms-linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.6));
}
.news-block-eight .inner-box .image .overlay-box .content{
position:absolute;
content:'';
left:0px;
bottom:0px;
padding:0px 15px 40px 15px;
}
.news-block-eight .inner-box .image .overlay-box .content .tag{
position: relative;
color: #ffffff;
font-size: 12px;
display: inline-block;
padding: 0px 12px;
font-weight: 400;
margin-bottom: 12px;
text-transform: uppercase;
background-color: #e73f43;
}
.news-block-eight .inner-box .image .overlay-box .content .tag a{
color:#ffffff;
}
.news-block-eight .inner-box .image .overlay-box .content h3{
position:relative;
font-weight:700;
font-size:24px;
line-height:1.6em;
margin-bottom:8px;
text-transform:uppercase;
}
.news-block-eight .inner-box .image .overlay-box .content h3 a{
color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.news-block-eight .inner-box .image .overlay-box .content h3 a:hover{
opacity:0.70;
}
.news-block-eight .inner-box .image .overlay-box .content .post-meta{
position:relative;
}
.news-block-eight .inner-box .image .overlay-box .content .post-meta li{
position:relative;
color:#ffffff;
font-size:11px;
font-weight:600;
padding-left:20px;
line-height:1em;
margin-right:15px;
display:inline-block;
text-transform:uppercase;
}
.news-block-eight .inner-box .image .overlay-box .content .post-meta li .icon{
position:absolute;
left:0px;
top:0px;
font-size:11px;
color:#ffffff;
}
/*Blog Gallery*/
.blog-gallery{
position:relative;
padding:100px 0px 20px;
}
.main-slider-five .product-details .image-column .image-carousel{
position:relative;
}
.main-slider-five .product-details .image-column,
.main-slider-five .product-details .info-column{
margin-bottom:0px;
}
.main-slider-five .product-details .image-column .carousel-outer{
position:relative;
}
.main-slider-five .product-details .info-column .add-to-cart{
margin-bottom:10px;
margin-right:10px;
}
.main-slider-five .product-details .image-column .image-box img{
position:relative;
display:block;
width:100%;
}
.main-slider-five .product-details .image-column .thumbs-carousel{
position:absolute;
left:0px;
bottom:0px;
}
.main-slider-five .product-details .image-column .thumbs-carousel .owl-stage-outer{
padding-top:10px;
}
.main-slider-five .product-details .image-column .thumbs-carousel li{
cursor:pointer;
color:#ffffff;
font-size:15px;
text-align:center;
padding:30px 25px;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
text-transform:uppercase;
border-top:1px solid rgba(255,255,255,0.20);
border-right:1px solid rgba(255,255,255,0.20);
font-family: 'Montserrat', sans-serif;
}
.main-slider-five .product-details .image-column .thumbs-carousel li img{
width:100%;
display:inline-block;
border:1px solid #ededed;
}
.main-slider-five .product-details .image-column .thumbs-carousel .owl-item.active:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:100%;
height:1px;
opacity:0;
background-color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.main-slider-five .product-details .image-column .thumbs-carousel .owl-item.active:after{
position:absolute;
content:'';
left:50%;
top:-9px;
opacity:0;
border-bottom: 10px solid #ffffff;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.main-slider-five .product-details .image-column .thumbs-carousel .owl-item:hover::before,
.main-slider-five .product-details .image-column .thumbs-carousel .owl-item:hover::after{
opacity:1;
}
.main-slider-five .product-details .image-column .owl-dots{
display:none;
}
.main-slider-five .product-details .image-column .owl-nav{
position:absolute;
left:0px;
top:50%;
width:100%;
margin-top:-40px;
}
.main-slider-five .product-details .image-column .owl-nav .owl-prev,
.main-slider-five .product-details .image-column .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-20px;
width:44px;
height:44px;
color:#ffffff;
font-size:20px;
line-height:40px;
text-align:center;
font-weight:700;
border:2px solid rgba(255,255,255,0.40);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-slider-five .product-details .image-column .owl-nav .owl-prev{
left:20px;
}
.main-slider-five .product-details .image-column .owl-nav .owl-next{
right:20px;
}
.main-slider-five .product-details .image-column .owl-nav .owl-prev:hover,
.main-slider-five .product-details .image-column .owl-nav .owl-next:hover{
color:#ffffff;
border-color:#e73f43;
background-color:#e73f43;
}
/***
====================================================================
Gallery Section
====================================================================
***/
.galley-section{
position:relative;
padding:90px 0px 90px;
}
.galley-section .row{
position:relative;
margin:0px -2px;
}
.galley-section .row .column{
padding:0px 2px;
}
.galley-section .column{
position:relative;
}
.default-gallery-block{
position:relative;
overflow:hidden;
}
.default-gallery-block .inner-box{
position:relative;
overflow:hidden;
}
.default-gallery-block .inner-box .text{
position:absolute;
left:0px;
bottom:-100px;
width:100%;
color:#ffffff;
font-size:14px;
letter-spacing:1px;
text-transform:uppercase;
padding:12px 0px;
text-align:center;
background-color:rgba(0,0,0,0.80);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.default-gallery-block .inner-box:hover .text{
bottom:0px;
}
.default-gallery-block .inner-box img{
position:relative;
width:100%;
display:block;
}
.galley-section .column .inner-column{
position:relative;
padding:0px 2px;
margin-bottom:4px;
}
.galley-section .owl-dots{
display:none;
}
.galley-section .owl-nav .owl-prev,
.galley-section .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-40px;
width:44px;
height:44px;
color:#999999;
font-size:20px;
line-height:42px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,1);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.galley-section .owl-nav .owl-prev{
left:-22px;
}
.galley-section .owl-nav .owl-next{
right:-22px;
}
.galley-section .owl-nav .owl-prev:hover,
.galley-section .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
.main-slider-six{
position:relative;
padding:50px 0px;
}
.main-slider-six .default-tab-box{
position:relative;
overflow:hidden;
background-color:#27292d;
}
.main-slider-six .default-tab-box .column{
padding:0px;
}
.main-slider-six .default-tab-box .tab-btns{
position:relative;
z-index:1;
padding:0px 0px 0px 0px;
margin-bottom:0px;
height: 617px;
}
.mCustomScrollBox,
#mCSB_1_container{
overflow:visible;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn .date{
position:relative;
color:#b7b7b7;
font-size:13px;
font-weight:400;
display:block;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn{
position:relative;
display:block;
cursor:pointer;
margin-bottom:0px;
padding:30px 0px;
padding-left:30px;
transition:all 500ms ease;
border-bottom:1px solid rgba(255,255,255,0.20);
}
.main-slider-six .default-tab-box .tab-btns .tab-btn .widget-post .text a{
color:#ffffff;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn .image img{
width:auto;
display:inline-block;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn .icon{
position:relative;
margin-right:20px;
font-size:20px;
line-height:1em;
top:2px;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn:hover::before,
.main-slider-six .default-tab-box .tab-btns .tab-btn.active-btn:before{
position:absolute;
content:'';
left:0px;
top:0px;
width:4px;
height:100%;
background-color:#e73f43;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn:hover::after,
.main-slider-six .default-tab-box .tab-btns .tab-btn.active-btn:after{
position:absolute;
content:'';
left:-10px;
top:50%;
margin-top:-10px;
border-top: 8px solid transparent;
border-right: 12px solid #e73f43;
border-bottom: 8px solid transparent;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.main-slider-six .default-tab-box .tab-btns .tab-btn.active-btn,
.main-slider-six .default-tab-box .tab-btns .tab-btn:hover{
}
.main-slider-six .default-tab-box .tab-btns .tab-btn:hover::before,
.main-slider-six .default-tab-box .tab-btns .tab-btn.active-btn::before{
opacity:1;
}
.main-slider-six .default-tab-box .tabs-content{
position:relative;
padding:0px;
background-color:#fafafa;
}
.main-slider-six .default-tab-box .tabs-content .tab{
position:relative;
padding:0px;
display:none;
}
.main-slider-six .default-tab-box .tabs-content .tab .content .image img{
width:100%;
display:block;
}
.main-slider-six .default-tab-box .tabs-content .tab.active-tab{
display:block;
}
.blog-single-slider{
position:relative;
padding:60px 0px;
}
/*Video Box*/
.video-box{
position:relative;
}
.video-box .image img{
position:relative;
width:100%;
}
.video-box .overlay-box{
position:absolute;
left:0px;
top:0px;
width:100%;
height:100%;
text-align:center;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.video-box:hover .overlay-box{
background-color:rgba(0,0,0,0.30);
}
.video-box .overlay-box span{
position: relative;
width:80px;
height:80px;
top: 46%;
z-index:99;
color: #ffffff;
font-weight:300;
font-size:24px;
margin-top: -20px;
text-align: center;
border-radius:50%;
line-height:72px;
padding-left:4px;
display: inline-block;
border:4px solid #ffffff;
}
.blog-single-slider .owl-dots{
display:none;
}
.blog-single-slider .owl-nav .owl-prev,
.blog-single-slider .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-40px;
width:44px;
height:44px;
color:#999999;
font-size:20px;
line-height:42px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,1);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.blog-single-slider .owl-nav .owl-prev{
left:-22px;
}
.blog-single-slider .owl-nav .owl-next{
right:-22px;
}
.blog-single-slider .owl-nav .owl-prev:hover,
.blog-single-slider .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
.blog-single{
position:relative;
}
.breadcrumb-bar{
position:relative;
margin-bottom:10px;
}
.breadcrumb-bar li{
position:relative;
color:#777777;
font-size:13px;
padding-right:12px;
margin-right:12px;
margin-bottom:6px;
display:inline-block;
}
.breadcrumb-bar li:after{
position:absolute;
content:'\f105';
right:0px;
top:0px;
font-size:13px;
color:#777777;
font-family: 'FontAwesome';
}
.breadcrumb-bar li:last-child:after{
display:none;
}
.breadcrumb-bar li a{
position:relative;
color:#777777;
font-size:13px;
display:inline-block;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.breadcrumb-bar li a:hover{
color:#e73f43;
}
.tag-title{
position:relative;
}
.tag-title li{
position:relative;
color:#ffffff;
font-size:12px;
padding:2px 10px;
letter-spacing:1px;
margin-right:4px;
margin-bottom:4px;
text-transform:uppercase;
display:inline-block;
background-color:#e73f43;
font-family: 'Montserrat', sans-serif;
}
.tag-title li:nth-child(2){
background-color:#222222;
}
.blog-single .inner-box{
position:relative;
}
.blog-single .inner-box h2{
position:relative;
color:#333333;
font-size:34px;
line-height:1.6em;
font-weight:700;
margin-top:20px;
margin-bottom:10px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.blog-single .inner-box .post-meta{
position:relative;
margin-bottom:25px;
}
.blog-single .inner-box .post-meta li{
position:relative;
color:#999999;
font-weight:600;
font-size:11px;
padding-left:18px;
display:inline-block;
margin-right:20px;
letter-spacing:1px;
line-height:1em;
margin-bottom:6px;
text-transform:uppercase;
}
.blog-single .inner-box .post-meta li .icon{
position:absolute;
left:0px;
top:0px;
font-size:12px;
color:#999999;
}
.blog-single .inner-box .social-icon-one.alternate li:nth-child(4n + 0){
margin-right:6px;
}
.blog-single .inner-box .upper-box{
position:relative;
padding-bottom:28px;
margin-bottom:30px;
border-bottom:2px solid #ededed;
}
.blog-single .inner-box .text{
position:relative;
}
.blog-single .inner-box .text p{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
margin-bottom:28px;
}
.blog-single .inner-box .text .image{
position:relative;
}
.blog-single .inner-box .text .image img{
width:100%;
}
.blog-single .inner-box .text blockquote{
position:relative;
color:#999999;
font-size:22px;
padding-top:0px;
padding-bottom:0px;
line-height:1.5em;
font-style:italic;
margin-top:50px;
margin-bottom:50px;
border-color:#e73f43;
}
/*post share options*/
.blog-single .inner-box .post-share-options{
position:relative;
margin-bottom:35px;
padding:10px 0px 0px;
}
.blog-single .inner-box .post-share-options .tags a{
position:relative;
color:#ffffff;
font-size:11px;
font-weight:600;
padding:4px 12px;
letter-spacing:1px;
margin-right:5px;
display:inline-block;
text-transform:uppercase;
background-color:#98999b;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.blog-single .inner-box .post-share-options .tags a:hover{
color:#ffffff;
background-color:#313438;
}
.blog-single .inner-box .new-article{
position:relative;
padding:20px 0px;
margin-top:30px;
display:block;
border-top:2px solid #ededed;
border-bottom:2px solid #ededed;
}
.blog-single .inner-box .new-article li{
position:relative;
width:50%;
float:left;
text-align:center;
display:inline-block;
}
.blog-single .inner-box .new-article li a{
font-weight:600;
color:#999999;
letter-spacing:1px;
padding:18px 0px;
display:block;
text-transform:uppercase;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.blog-single .inner-box .new-article li a:hover{
color:#e73f43;
}
.blog-single .inner-box .new-article li a .fa{
font-size:20px;
}
.blog-single .inner-box .new-article li:first-child a{
border-right:2px solid #ededed;
}
/*Author Box*/
.author-box{
position:relative;
margin-top:80px;
margin-bottom:50px;
}
.author-box .author-comment{
position:relative;
padding:35px 30px 30px;
background-color:#f9f9f9;
}
.author-box .author-comment .inner-box{
position:relative;
padding-left:110px;
}
.author-box .author-comment .inner-box .image{
position:absolute;
left:0px;
top:0px;
width:80px;
}
.author-box .author-comment .inner-box h4{
position:relative;
color:#e73f43;
font-size:16px;
font-weight:400;
margin-bottom:5px;
letter-spacing:2px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.author-box .author-comment .inner-box .text{
position:relative;
color:#777777;
font-size:14px;
font-weight:400;
line-height:1.7em;
margin-bottom:10px;
}
/*Related Posts*/
.related-posts{
position:relative;
margin-bottom:30px;
}
.related-item-carousel{
position:relative;
}
.related-item-carousel .owl-dots{
position:relative;
display:none;
}
.related-item-carousel .owl-nav{
position:absolute;
right:0px;
top:-76px;
display:inline-block;
background-color:#ffffff;
}
.related-item-carousel .owl-nav .owl-next,
.related-item-carousel .owl-nav .owl-prev{
position:relative;
width:34px;
height:34px;
color:#a8a8a8;
text-align:center;
line-height:30px;
display:inline-block;
margin-left:6px;
background-color:#ffffff;
border:2px solid #f3f3f3;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.related-item-carousel .owl-nav .owl-next:hover,
.related-item-carousel .owl-nav .owl-prev:hover{
color:#ffffff;
border-color:#e73f43;
background-color:#e73f43;
}
/*Comment Box*/
.comment-box{
position:relative;
margin-bottom:35px;
padding:40px 40px 35px;
background-color:#f9f9f9;
}
.comment-box.reply-comment{
position:relative;
margin-left:45px;
}
.comment-box .comment{
position:relative;
padding-left:100px;
}
.comment-box .comment .author-thumb{
position:absolute;
left:0px;
top:0px;
width:80px;
height:80px;
}
.comment-box .comment .comment-inner{
position:relative;
}
.comment-box .comment .comment-inner .rating{
position:absolute;
right:0px;
top:0px;
}
.comment-box .comment .comment-inner .rating .fa{
position:relative;
color:#333333;
font-size:14px;
display:inline-block;
}
.comment-box .comment .comment-inner .rating .fa.light{
color:#c5c5c5;
}
.comment-box .comment .comment-inner .comment-info{
position:relative;
color:#333333;
font-size:16px;
letter-spacing:1px;
margin-bottom:5px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.comment-box .comment .comment-inner .post-date{
position:relative;
color:#999999;
font-size:11px;
font-weight:600;
letter-spacing:1px;
line-height:1em;
margin-bottom:8px;
text-transform:uppercase;
}
.comment-box .comment .comment-inner .text{
position:relative;
color:#777777;
font-size:14px;
}
.comment-box .comment .comment-inner .reply-btn{
position:absolute;
right:0px;
top:0px;
color:#999999;
font-size:11px;
font-weight:500;
padding:6px 12px;
line-height:1em;
display:inline-block;
letter-spacing:1px;
text-transform:uppercase;
border:2px solid #e9e9e9;
font-family: 'Montserrat', sans-serif;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.comment-box .comment .comment-inner .reply-btn:hover{
color:#ffffff;
border-color:#e73f43;
background-color:#e73f43;
}
/***
====================================================================
Comment Form
====================================================================
***/
.comment-form{
position:relative;
}
.comment-form .form-group{
margin-bottom:28px;
}
.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="email"],
.comment-form .form-group select{
position:relative;
display:block;
width:100%;
line-height:26px;
padding:10px 20px;
height:50px;
color:#a5a5a5;
font-size:14px;
font-weight:600;
background-color:#ffffff;
border:2px solid #e0e0e0;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group textarea:focus{
border-color:#e73f43;
}
.comment-form .form-group textarea{
position:relative;
display:block;
width:100%;
line-height:24px;
padding:20px 20px;
color:#a5a5a5;
height:120px;
font-size:15px;
resize:none;
background-color:#ffffff;
border:2px solid #e0e0e0;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.comment-form button{
font-weight:400;
padding:11px 30px;
color:#ffffff;
font-size:13px;
letter-spacing:1px;
text-transform:uppercase;
background-color:#a1a1a1;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.comment-form button:hover{
background-color:#e73f43;
}
/*Blog Single Gallery*/
.blog-single-gallery{
position:relative;
padding:60px 0px;
}
.blog-single .inner-box .rating-box{
position:relative;
}
.blog-single .inner-box .rating-box .inner{
position:relative;
padding:40px 70px;
margin-bottom:60px;
background-color:#f7f7f7;
}
.blog-single .inner-box .rating-box .inner .raing-info{
position:relative;
}
.blog-single .inner-box .rating-box .inner .raing-info li{
position:relative;
color:#777777;
font-size:14px;
letter-spacing:1px;
padding-left:22px;
padding-bottom:25px;
margin-bottom:25px;
text-transform:uppercase;
border-bottom:1px dashed #cccccc;
font-family: 'Montserrat', sans-serif;
}
.blog-single .inner-box .rating-box .inner .raing-info li:before{
position:absolute;
content:'';
left:0px;
top:10px;
width:5px;
height:5px;
background-color:#c5c5c5;
}
.blog-single .inner-box .rating-box .inner .raing-info li .fa{
position:relative;
color:#333333;
font-size:16px;
}
.blog-single .inner-box .rating-box .inner .raing-info li .fa .total-rating{
position:relative;
color:#999999;
font-family: 'Montserrat', sans-serif;
}
.blog-single .inner-box .rating-box .inner .raing-info li .fa .light{
color:#c5c5c5;
}
.blog-single .inner-box .rating-box .inner .raing-info .rating-text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.6em;
}
.blog-single .inner-box .rating-box .inner .raing-info .rating-detail{
position:relative;
padding-bottom:30px;
margin-bottom:30px;
border-bottom:1px dashed #cccccc;
}
.blog-single .inner-box .rating-box .inner .raing-info .rating-detail .rating-block{
background-color:#e73f43;
text-align:center;
color:#ffffff;
padding:30px 0px;
}
.blog-single .inner-box .rating-block .rank-rate{
color:#ffffff;
font-size:42px;
font-weight:600;
line-height:1em;
margin-bottom:10px;
}
.blog-single .inner-box .rating-block .light{
color:rgba(255,255,255,0.50);
}
/***
====================================================================
Page Title
====================================================================
***/
.page-title{
position:relative;
padding:38px 0px 35px;
background-color:#f8f8f8;
}
.page-title h2{
position:relative;
color:#777777;
font-size:18px;
}
.page-title-breadcrumb{
position:relative;
}
.page-title-breadcrumb li{
position:relative;
padding-right:12px;
margin-right:12px;
display:inline-block;
color:#777777;
font-size:13px;
text-transform:capitalize;
}
.page-title-breadcrumb li:last-child{
padding-right:0px;
margin-right:0px;
}
.page-title-breadcrumb li:last-child a:after{
display:none;
}
.page-title-breadcrumb li a:after{
position:absolute;
content:'\f105';
right:-15px;
top:9px;
color:#d3d3d3;
line-height:1px;
font-family: 'FontAwesome';
}
.page-title-breadcrumb li a{
position:relative;
color:#777777;
font-size:13px;
text-transform:capitalize;
}
.page-title-breadcrumb li a .fa{
position:relative;
top:3px;
color:#d3d3d3;
font-size:22px;
margin-right:15px;
line-height:1em;
}
/***
====================================================================
Shop Section
====================================================================
***/
.shop-section{
position:relative;
padding:80px 0px 100px;
}
.shop-section .items-sorting{
position:relative;
margin-bottom:50px;
}
.shop-section .items-sorting .results-column,
.shop-section .items-sorting .select-column{
margin-bottom:20px;
}
.shop-section .items-sorting .results-column h4{
font-size:16px;
font-weight:400;
color:#777777;
line-height:24px;
padding:13px 0px;
text-align:right;
font-family: 'Open Sans', sans-serif;
}
.shop-section .items-sorting .form-group{
margin-bottom:0px;
}
.shop-section .items-sorting select{
position:relative;
display:block;
width:100%;
line-height:22px;
padding:10px 15px 10px;
height:44px;
font-size:14px;
max-width:280px;
border:2px solid #e0e0e0;
cursor:pointer;
-moz-appearance:none;
-webkit-appearance:none;
-ms-appearance:none;
-o-appearance:none;
background:url(../images/icons/icon-select.jpg) right center no-repeat;
color:#999999;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.shop-section .items-sorting select option{
text-indent:15px;
}
/*Shop Item*/
.shop-item{
position:relative;
margin-bottom:55px;
}
.shop-item .inner-box{
position:relative;
}
.shop-item .inner-box .off-price{
position:absolute;
left:14px;
top:-22px;
width:54px;
height:54px;
color:#ffffff;
line-height:54px;
text-align:center;
border-radius:50%;
z-index:1;
font-size:13px;
background-color:#e75053;
font-family: 'Montserrat', sans-serif;
}
.shop-item .inner-box .sold-out{
position:absolute;
left:14px;
top:-22px;
width:54px;
height:54px;
color:#ffffff;
line-height:16px;
text-align:center;
border-radius:50%;
z-index:1;
padding-top:12px;
font-size:12px;
text-transform:uppercase;
background-color:#333333;
font-family: 'Montserrat', sans-serif;
}
.shop-item .inner-box .image-box{
position:relative;
text-align:center;
}
.shop-item .inner-box .image-box img{
position:relative;
width:100%;
display:block;
}
.shop-item .inner-box .lower-box{
position:relative;
text-align:center;
padding:25px 18px 0px;
border:1px solid #e0e0e0;
border-top:0px;
}
.shop-item .inner-box .lower-box .upper-box{
position:relative;
}
.shop-item .inner-box .lower-box .upper-box h4{
position:relative;
font-size:14px;
font-weight:600;
margin-bottom:25px;
letter-spacing:1px;
line-height:1.8em;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.shop-item .inner-box .lower-box .upper-box h4 a{
color:#333333;
transition:all 0.6s ease;
-moz-transition:all 0.6s ease;
-webkit-transition:all 0.6s ease;
-ms-transition:all 0.6s ease;
-o-transition:all 0.6s ease;
}
.shop-item .inner-box .lower-box .upper-box h4 a:hover{
color:#e73f43;
}
.shop-item .inner-box .lower-box .lower-content{
position:relative;
padding:9px 0px 11px;
text-align:center;
border-top:1px solid #efefef;
}
.shop-item .inner-box .lower-box .lower-content .price{
color:#e73f43;
font-size:16px;
font-weight:500;
margin:6px 0px;
font-family: 'Montserrat', sans-serif;
}
.shop-item .inner-box .lower-box .lower-content .price .discount-price{
color:#a9a9a9;
margin-right:5px;
text-decoration:line-through;
}
.shop-item .inner-box .lower-box .lower-content .cart-btn{
position:absolute;
left:0px;
top:8px;
color:#ffffff;
padding:8px 0px;
width:100%;
opacity:0;
display:block;
font-size:12px;
letter-spacing:1px;
text-transform:uppercase;
background-color:#e73f43;
transition:all 0.6s ease;
-moz-transition:all 0.6s ease;
-webkit-transition:all 0.6s ease;
-ms-transition:all 0.6s ease;
-o-transition:all 0.6s ease;
}
.shop-item .inner-box:hover .lower-box .lower-content .cart-btn{
opacity:1;
}
.shop-item .inner-box .lower-box .lower-content .cart-btn:hover{
background-color:#444444;
}
/*Shop Single Page*/
.shop-page{
position:relative;
padding-top:100px;
padding-bottom:80px;
}
.basic-details .image-column{
position:relative;
margin-bottom:50px;
}
.shop-page .basic-details .image-column .carousel-outer .thumbs-carousel{
padding:10px 0px;
}
.shop-page .basic-details .image-column .carousel-outer .thumbs-carousel li img{
width:100%;
cursor:pointer;
}
.shop-page .basic-details .info-column .inner-column{
padding-left:15px;
}
.shop-page .basic-details .details-header{
position:relative;
margin-bottom:0px;
}
.shop-page .basic-details .details-header h4{
font-size:24px;
font-weight:700;
margin:0px 0px;
line-height:1.4em;
color:#333333;
margin-bottom:15px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.shop-page .basic-details .details-header .rating{
font-size:16px;
margin-bottom:10px;
display:inline-block;
}
.shop-page .basic-details .details-header .rating span{
color:#333333;
}
.shop-page .basic-details .details-header .rating .fa{
display:inline-block;
margin-right:1px;
}
.shop-page .basic-details .details-header .rating .fa.light{
color:#dadada;
}
.shop-page .basic-details .item-price{
position:relative;
font-size:26px;
font-weight:400;
color:#e73f43;
line-height:24px;
letter-spacing:1px;
margin-top:5px;
margin-bottom:15px;
font-family: 'Montserrat', sans-serif;
}
.shop-page .basic-details .item-price span{
position:relative;
color:#a9a9a9;
text-decoration:line-through;
}
.shop-page .basic-details .details-header .reviews{
position:relative;
margin-left:10px;
display:inline-block;
}
.shop-page .basic-details .details-header .reviews .separater{
color:#acacac;
margin:0px 6px;
}
.shop-page .basic-details .details-header .reviews a{
position:relative;
color:#a2a2a2;
font-size:15px;
letter-spacing:1px;
text-transform:uppercase;
}
.shop-page .basic-details .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
margin-bottom:25px;
}
.items-form .form-group{
margin-bottom:20px;
}
.items-form .form-group label{
position: relative;
width:90px;
text-align:right;
top: -4px;
color: #777777;
font-size: 13px;
font-weight: 400;
line-height: 30px;
letter-spacing: 2px;
margin-right: 15px !important;
text-transform: uppercase;
font-family: 'Montserrat', sans-serif;
}
.items-form .form-group select{
position:relative;
display:inline-block;
line-height:22px;
padding:10px 15px 10px;
height:44px;
font-size:14px;
width:370px;
border:2px solid #e0e0e0;
cursor:pointer;
-moz-appearance:none;
-webkit-appearance:none;
-ms-appearance:none;
-o-appearance:none;
background:url(../images/icons/icon-select.jpg) right center no-repeat;
color:#999999;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.items-form .form-group select option{
text-indent:15px;
}
.shop-page .basic-details .info-column .other-options .btns-box{
position:relative;
margin-left:28px;
margin-top:28px;
}
.shop-page .basic-details .info-column .other-options .btns-box input[type="text"]{
position:relative;
width:48px;
height:46px;
text-align:center;
line-height:46px;
margin-right:30px;
background-color:#ffffff;
border:2px solid #ededed;
}
.shop-page .basic-details .info-column .other-options .btns-box .add-to-cart{
position:relative;
color:#ffffff;
font-size:13px;
padding:10px 40px;
letter-spacing:1px;
display:inline-block;
text-transform:uppercase;
background-color:#a1a1a1;
font-family: 'Montserrat', sans-serif;
}
.shop-page .basic-details .info-column .other-options .btns-box .add-to-cart .icon{
position:relative;
margin-right:10px;
font-size:20px;
top:4px;
}
.shop-page .basic-details .info-column .inner-column .tags-box{
position:relative;
padding-top:20px;
margin-top:30px;
border-top:1px dashed #cccccc;
}
.shop-page .basic-details .info-column .inner-column .tags-box li{
position:relative;
color:#999999;
font-size:12px;
letter-spacing:1px;
display:inline-block;
margin-right:30px;
text-transform:uppercase;
}
.shop-page .basic-details .info-column .inner-column .tags-box li a{
position:relative;
color:#333333;
letter-spacing:1px;
text-transform:uppercase;
}
/***
====================================================================
Product Tabs Style
====================================================================
***/
.shop-page .product-info-tabs{
position:relative;
padding:20px 0px;
}
.shop-page .product-info-tabs .prod-tabs{
position:relative;
}
.shop-page .product-info-tabs .prod-tabs .tab-btns{
position:relative;
z-index:1;
background-color:#fafafa;
border-bottom:2px solid #eeeeee;
}
.shop-page .product-info-tabs .prod-tabs .tab-btns .tab-btn{
position:relative;
top:1px;
display:block;
float:left;
margin-right:0px;
font-size:14px;
color:#999999;
text-transform:uppercase;
font-weight:700;
line-height:24px;
cursor:pointer;
letter-spacing:2px;
padding:10px 48px 11px;
border:2px solid transparent;
transition:all 500ms ease;
}
.shop-page .product-info-tabs .prod-tabs .tab-btns .tab-btn.active-btn:after{
position:absolute;
content:'';
left:0px;
bottom:-3px;
width:100%;
height:3px;
background-color:#ffffff;
}
.shop-page .product-info-tabs .prod-tabs .tab-btns .tab-btn.active-btn{
color:#222222;
background:#ffffff;
border:2px solid #e0e0e0;
}
.shop-page .product-info-tabs .prod-tabs .tabs-content{
position:relative;
}
.shop-page .product-info-tabs .prod-tabs .tabs-content .tab{
position:relative;
padding:70px 0px 0px;
display:none;
border-top:0px;
background-color:#ffffff;
}
.shop-page .product-info-tabs .prod-tabs .tabs-content .tab.active-tab{
display:block;
}
.shop-page .product-info-tabs .prod-tabs .tabs-content .tab .content p{
color:#777777;
font-size:14px;
margin-bottom:20px;
}
/*Comment Form*/
.shop-comment-form{
position:relative;
margin-top:80px;
}
.shop-comment-form .rating-box{
position:relative;
margin-bottom:30px;
}
.shop-comment-form .rating-box .text{
position:relative;
font-size:16px;
color:#777777;
margin-bottom:10px;
}
.shop-comment-form .rating-box .rating{
position:relative;
display:inline-block;
margin-right:10px;
padding-right:10px;
border-right:1px solid #ebebeb;
}
.shop-comment-form .rating-box .rating:last-child{
border-right:0px;
}
.shop-comment-form .rating-box .rating .fa{
position:relative;
margin-right:2px;
display:inline-block;
}
.shop-comment-form .rating-box .rating a{
position:relative;
color:#d6d6d6;
font-size:14px;
display:inline-block;
}
.shop-comment-form .rating-box .rating a:hover{
color:#e73f43;
}
.shop-comment-form .form-group{
position:relative;
margin-bottom:25px;
}
.shop-comment-form .form-group:last-child{
margin-bottom:0px;
}
.shop-comment-form .form-group input[type="text"],
.shop-comment-form .form-group input[type="password"],
.shop-comment-form .form-group input[type="tel"],
.shop-comment-form .form-group input[type="email"],
.shop-comment-form .form-group select{
position:relative;
display:block;
width:100%;
line-height:28px;
padding:10px 15px;
border:2px solid #e0e0e0;
height:50px;
color:#848484;
font-weight:300;
background:#ffffff;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.shop-comment-form .form-group input[type="text"]:focus,
.shop-comment-form .form-group input[type="password"]:focus,
.shop-comment-form .form-group input[type="tel"]:focus,
.shop-comment-form .form-group input[type="email"]:focus,
.shop-comment-form .form-group select:focus,
.shop-comment-form .form-group textarea:focus{
border-color:#e73f43;
}
.shop-comment-form .form-group textarea{
position:relative;
display:block;
width:100%;
line-height:26px;
padding:10px 15px;
color:#848484;
border:2px solid #e0e0e0;
height:105px;
font-weight:300;
background:#ffffff;
resize:none;
-webkit-transition:all 300ms ease;
-ms-transition:all 300ms ease;
-o-transition:all 300ms ease;
-moz-transition:all 300ms ease;
transition:all 300ms ease;
}
.shop-comment-form button{
position:relative;
margin-top:10px;
}
.shop-comment-form input:focus,
.shop-comment-form select:focus,
.shop-comment-form textarea:focus{
border-color:#f06529;
}
/*Related Items*/
.related-items{
position:relative;
}
.related-items .owl-stage-outer{
position:relative;
padding-top:40px;
}
.related-items .owl-dots{
display:none;
}
.related-items .owl-nav .owl-prev,
.related-items .owl-nav .owl-next{
position:absolute;
display:block;
top:50%;
margin-top:-40px;
width:44px;
height:44px;
color:#999999;
font-size:20px;
line-height:42px;
text-align:center;
font-weight:700;
background:rgba(255,255,255,1);
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
-moz-transition:all 500ms ease;
transition:all 500ms ease;
}
.related-items .owl-nav .owl-prev{
left:-22px;
}
.related-items .owl-nav .owl-next{
right:-22px;
}
.related-items .owl-nav .owl-prev:hover,
.related-items .owl-nav .owl-next:hover{
color:#ffffff;
background-color:#e73f43;
}
/***
====================================================================
Gallery Section
====================================================================
***/
.gallery-section-two{
position:relative;
padding:80px 0px 80px;
}
.gallery-section-two .items-container{
}
.gallery-section-two .filters{
margin-bottom:70px;
text-align:center;
}
.gallery-section-two .filters .filter-tabs{
position:relative;
background-color:#fafafa;
border-bottom:2px solid #e0e0e0;
}
.gallery-section-two .filters li{
position: relative;
display: inline-block;
padding:15px 40px;
line-height: 24px;
color: #999999;
cursor: pointer;
font-size: 13px;
font-weight: 400;
letter-spacing:1px;
border-bottom:none;
text-transform: uppercase;
transition: all 300ms ease;
-webkit-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
font-family: 'Montserrat', sans-serif;
}
.gallery-section-two .filters li:after{
position:absolute;
content:'';
right:0px;
top:16px;
width:1px;
height:25px;
background-color:#f1f1f1;
}
.gallery-section-two .filters li.active::after,
.gallery-section-two .filters li:hover::after,
.gallery-section-two .filters li:last-child::after{
display:none;
}
.gallery-section-two .filters .filter.active,
.gallery-section-two .filters .filter:hover{
color:#e73f43;
border-color:#e0e0e0;
}
.gallery-section-two .filter-outer{
background-color:#ffffff;
margin-bottom:60px;
}
.gallery-section-two .default-gallery-block{
padding:0px 3px;
margin-bottom:6px;
}
.default-gallery-block.mix{
display:none;
}
/*About Section*/
.about-section{
position:relative;
padding-top:100px;
}
.about-section .author-info{
position:relative;
padding-bottom:70px;
}
.about-section .author-info .image-column{
position:relative;
margin-bottom:30px;
}
.about-section .author-info .image-column .image{
position:relative;
}
.about-section .author-info .image-column .image img{
position:relative;
width:100%;
display:block;
}
.about-section .author-info .content-column{
position:relative;
}
.about-section .author-info .content-column .content-inner{
position:relative;
}
.about-section .author-info .content-column .content-inner h2{
position:relative;
color:#999999;
font-size:34px;
font-weight:700;
letter-spacing:1px;
line-height:1.4em;
padding-bottom:20px;
margin-bottom:25px;
text-transform:uppercase;
border-bottom:1px solid #ededed;
font-family: 'Montserrat', sans-serif;
}
.about-section .author-info .content-column .content-inner .text{
position:relative;
margin-bottom:30px;
}
.about-section .author-info .content-column .content-inner .text p{
position:relative;
color:#777777;
font-size:14px;
line-height:1.8em;
margin-bottom:20px;
}
.skill-section{
position:relative;
padding:90px 0px;
background-color:#f8f8f8;
}
.skill-section .text{
position:relative;
color:#777777;
font-size:14px;
line-height:1.7em;
}
/***
====================================================================
Progress Levels Style
====================================================================
***/
.skill-progress{
position:relative;
}
.skill-progress .progress-box{
position:relative;
margin-bottom:15px;
padding-bottom:3px;
overflow:hidden;
}
.skill-progress .progress-box{
margin-bottom:15px;
}
.skill-progress .progress-box:last-child{
margin-bottom:0px;
}
.skill-progress .progress-box .box-title{
position:relative;
font-size:13px;
color:#333333;
font-weight:400;
line-height:38px;
letter-spacing:1px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.skill-progress .progress-box .box-title span{
float:right;
color:#999999;
font-size:18px;
font-family: 'Montserrat', sans-serif;
}
.skill-progress .progress-box .bar{
position:relative;
height:6px;
}
.skill-progress .progress-box .bar .bar-innner{
position:relative;
left:0px;
top:0px;
width:100%;
height:6px;
background:#d9d9d9;
}
.skill-progress .progress-box .bar .bar-fill{
position:absolute;
left:-100%;
top:0px;
width:0px;
height:6px;
background:#e73f43;
border-radius:0px;
-moz-transition:all 2000ms ease 300ms;
-webkit-transition:all 2000ms ease 300ms;
-ms-transition:all 2000ms ease 300ms;
-o-transition:all 2000ms ease 300ms;
transition:all 2000ms ease 300ms;
}
.skill-progress .progress-box.animated .bar .bar-fill{
left:0px;
}
.about-content-section{
position:relative;
padding:100px 0px;
}
/***
====================================================================
Map Section Style
====================================================================
***/
.contact-section{
position:relative;
padding:100px 0px 80px;
}
.map-section{
padding-bottom:100px;
}
.map-data{
text-align:center;
font-size:14px;
font-weight:400;
line-height:1.8em;
}
.map-data h6{
font-size:16px;
font-weight:700;
text-align:center;
margin-bottom:5px;
color:#121212;
}
.map-canvas{
height:330px;
}
.contact-section .form-column{
position:relative;
margin-bottom:40px;
}
.contact-section .form-column .form-column{
position:relative;
}
.contact-section .form-column .sec-title{
margin-bottom:20px;
}
.contact-section .info-column .sec-title{
margin-bottom:40px;
}
.contact-section .info-column .inner-column{
padding-left:20px;
}
.contact-section .form-column .text{
position:relative;
color:#b1b1b1;
font-size:16px;
font-style:italic;
margin-bottom:20px;
}
/*Contact Form*/
.contact-form .form-group{
position: relative;
margin-bottom: 20px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="password"],
.contact-form select,
.contact-form textarea{
display:block;
width:100%;
line-height:22px;
height:50px;
font-size:16px;
padding:12px 20px;
background:#ffffff;
color:#333333;
border:2px solid #e0e0e0;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
border-color:#e73f43;
background:none;
}
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error{
border-color:#ff0000 !important;
}
.contact-form label.error{
display:block;
line-height:24px;
padding:5px 0px 0px;
margin:0px;
text-transform:uppercase;
font-size:11px;
color:#ff0000;
font-weight:500;
}
.contact-form textarea{
height:130px;
resize:none;
padding:10px 20px;
}
.contact-form .submit-btn{
color:#ffffff;
padding:10px 30px;
display:inline-block;
letter-spacing:1px;
font-size:13px;
text-transform:uppercase;
background-color:#a1a1a1;
}
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error{
border-color:#ff0000 !important;
}
.contact-form label.error{
display:block;
line-height:24px;
padding:5px 0px 0px;
margin:0px;
text-transform:uppercase;
font-size:11px;
color:#ff0000;
font-weight:500;
}
/*info list*/
.info-list{
position:relative;
margin-top:30px;
}
.info-list li{
position:relative;
color:#777777;
font-size:16px;
line-height:1.8em;
padding-bottom:18px;
margin-bottom:15px;
}
.info-list li:after{
position:absolute;
content:'';
left:0px;
bottom:0px;
width:65px;
height:1px;
background-color:#e0e0e0;
}
.info-list li:last-child{
margin-bottom:0px;
padding-bottom:0px;
}
.info-list li:last-child:after{
display:none;
}
/*News Block Nine*/
.news-block-nine{
position:relative;
margin-bottom:30px;
}
.news-block-nine .inner-box{
position:relative;
text-align:left;
}
.news-block-nine .inner-box .image{
position:relative;
}
.news-block-nine .inner-box .image img{
position:relative;
width:100%;
display:block;
}
.news-block-nine .inner-box .image .category{
position:absolute;
left:10px;
bottom:10px;
color:#ffffff;
padding:0px 8px;
display:inline-block;
letter-spacing:1px;
text-transform:uppercase;
background-color:#e73f43;
}
.news-block-nine .inner-box .image .category a{
color:#ffffff;
}
.news-block-nine .inner-box .lower-box{
position:relative;
padding-top:15px;
}
.news-block-nine .inner-box .lower-box h3{
position:relative;
line-height:1em;
margin-bottom:10px;
}
.news-block-nine .inner-box .lower-box h3 a{
position:relative;
color:#ffffff;
font-size:14px;
font-weight:400;
transition:all 500ms ease;
-webkit-transition:all 500ms ease;
-ms-transition:all 500ms ease;
-o-transition:all 500ms ease;
}
.news-block-nine .inner-box .lower-box h3 a:hover{
opacity:0.8;
}
.news-block-nine .inner-box .lower-box .post-date{
position:relative;
font-size:11px;
text-transform:uppercase;
color:rgba(255,255,255,0.50);
}
/***
====================================================================
Product Tabs Style
====================================================================
***/
.info-tabs .tab-btns{
position:relative;
z-index:1;
text-align:left;
padding-bottom:10px;
}
.info-tabs .all-cat{
position:relative;
display:block;
font-size:13px;
font-weight:400;
cursor:pointer;
line-height:1.6em;
color:#ffffff;
letter-spacing:1px;
margin-bottom:14px;
margin-top:20px;
text-align:left;
transition:all 500ms ease;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.info-tabs .tab-btns:after{
position:absolute;
content:'';
left:0px;
bottom:0px;
width:70px;
height:1px;
background-color:rgba(255,255,255,0.20);
}
.info-tabs .tab-btns .tab-btn{
position:relative;
display:block;
font-size:13px;
font-weight:400;
cursor:pointer;
line-height:1.6em;
color:#ffffff;
letter-spacing:1px;
margin-bottom:14px;
transition:all 500ms ease;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.info-tabs .tab-btns .tab-btn:hover,
.info-tabs .tab-btns .tab-btn.active-btn{
color:#e63f49;
}
.info-tabs .tabs-content{
position:relative;
}
.info-tabs .tabs-content .tab{
position:relative;
display:none;
}
.info-tabs .tabs-content .tab .content{
position:relative;
}
.info-tabs .tabs-content .tab .content .text{
position:relative;
font-size:18px;
line-height:1.7em;
color:rgba(0,0,10,0.65);
margin-bottom:25px;
}
.info-tabs .tabs-content .tab.active-tab{
display:block;
}
.cart-product{
position:relative;
margin-bottom:24px;
min-height:90px;
border-bottom:1px solid #e4e4e4;
}
.cart-product .inner{
position:relative;
padding-left:90px;
min-height:70px;
}
.cart-product .inner .cross-icon{
position:absolute;
right:0px;
top:-2px;
z-index:1;
color:#263120;
font-size:16px;
cursor:pointer;
}
.cart-product .inner .image{
position:absolute;
width:70px;
height:70px;
left:0px;
top:0px;
}
.cart-product .inner h3{
position:relative;
font-weight:600;
font-size:15px;
margin:0px;
text-transform:uppercase;
}
.cart-product .inner h3 a{
color:#222222;
}
.cart-product .inner .quantity-text{
position:relative;
font-weight:300;
color:#222222;
}
.cart-product .inner .price{
position:relative;
font-weight:600;
font-size:16px;
margin:0px;
color:#222222;
}
.color-palate .purchase-btn{
position:relative;
color:#ffffff;
padding:8px 10px;
display:block;
font-size:13px;
font-weight:400;
margin-left:28px;
margin-right:28px;
margin-bottom:25px;
text-transform:uppercase;
background-color:#333433;
font-family: 'Montserrat', sans-serif;
}
.main-footer .widgets-section .news-info .inner-box .image,
.main-footer .widgets-section .review-block .inner-box .image{
background-color:#181818;
}
.home-three-posts.heres,
.stoped-widget.stoped-here{
position:fixed;
top:80px;
max-width:340px;
z-index:99999;
background-color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
.home-three-posts.heres{
position:fixed;
top:55px;
max-width:340px;
z-index:99999;
padding-bottom:20px;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
}
/*Demo Banner*/
.demo-banner{
position:relative;
padding:145px 0px;
text-align:center;
background-attachment:fixed;
background-repeat:no-repeat;
background-size:cover;
background-position:center center;
}
.demo-banner .logo{
position:relative;
width:480px;
height:95px;
margin:0 auto;
margin-bottom:15px;
background:url(../images/banner-logo.png) no-repeat;
background-position:center center;
}
.demo-banner .logo a{
position:relative;
width:428px;
height:80px;
display:block;
}
.demo-banner .btns-box{
position:relative;
text-align:center;
}
.demo-banner .btns-box .demo-btn{
position:relative;
padding:12px 20px;
color:#737373;
font-weight:400;
max-width:300px;
width:100%;
font-size:16px;
letter-spacing:1px;
margin:10px 10px;
text-transform:uppercase;
display:inline-block;
background-color:#ffffff;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
font-family: 'Montserrat', sans-serif;
}
.demo-banner .btns-box .demo-btn:hover{
color:#ffffff;
background-color:#e83f44;
}
.demo-banner .btns-box .purchase-btn{
position:relative;
padding:12px 20px;
color:#ffffff;
max-width:300px;
font-weight:400;
width:100%;
margin:10px 10px;
font-size:16px;
letter-spacing:1px;
text-transform:uppercase;
display:inline-block;
background-color:#e83f44;
transition:all 0.3s ease;
-moz-transition:all 0.3s ease;
-webkit-transition:all 0.3s ease;
-ms-transition:all 0.3s ease;
-o-transition:all 0.3s ease;
font-family: 'Montserrat', sans-serif;
}
.demo-banner .btns-box .purchase-btn:hover{
background-color:#ffffff;
color:#e83f44;
}
.demo-banner .text{
position:relative;
color:#ffffff;
font-size:26px;
font-weight:400;
margin-bottom:30px;
text-transform:capitalize;
font-family: 'Montserrat', sans-serif;
}
/*Demos Section*/
.demos-section{
position:relative;
padding:80px 0px 45px;
background-color:#f6f6f6;
}
.demos-section h2{
position:relative;
color:#333333;
font-size:36px;
font-weight:700;
text-align:center;
margin-bottom:20px;
text-transform:uppercase;
}
.demos-section .text{
position:relative;
color:#777777;
font-size:18px;
text-align:center;
margin-bottom:70px;
}
.demo-block{
position:relative;
text-align:center;
margin-bottom:50px;
}
.demo-block .image{
position:relative;
transition:all 0.6s ease;
-moz-transition:all 0.6s ease;
-webkit-transition:all 0.6s ease;
-ms-transition:all 0.6s ease;
-o-transition:all 0.6s ease;
}
.demo-block .image:hover{
transform: translate3d(0,-10px,0);
-webkit-transform: translate3d(0,-10px,0);
box-shadow: 0 23px 40px rgba(0,0,0,0.2);
}
.demo-block .image img{
position:relative;
width:100%;
display:block;
}
.demo-block .inner-box .demo-number{
position:relative;
font-size:14px;
color:#777777;
font-weight:600;
margin-top:20px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
/*Plugin Section*/
.plugin-section{
position:relative;
padding:40px 0px;
text-align:center;
display:none;
}
.plugin-section .image{
position:relative;
margin:0px 40px;
display:inline-block;
}
/*Banner Footer*/
.banner-footer{
position:relative;
padding:115px 0px;
text-align:center;
}
.banner-footer .text{
position:relative;
color:#ffffff;
font-size:18px;
font-weight:500;
letter-spacing:1px;
margin-top:15px;
text-transform:uppercase;
font-family: 'Montserrat', sans-serif;
}
.banner-footer .text span{
color:#fd1e39;
}
.post-date1 {
position: absolute;
left: 0;
top: 0;
width: 50px;
background: #ff6600;
text-align: center;
padding: 8px 0 15px;
color: #fff;
-webkit-border-radius: 0 0 25px 25px;
-moz-border-radius: 0 0 25px 25px;
-ms-border-radius: 0 0 25px 25px;
border-radius: 0 0 25px 25px; }
.post-classic-new {
padding-left: 70px;
position: relative;
margin-bottom: 20px;
max-height: 115px;
overflow: hidden
}
.post-classic-new .post-date1 .month, .post-classic-new .post-date1 .day, .post-classic-new .post-date1 .year {
line-height: 1.2; }
.post-classic-new .post-date1 .year{
font-weight: 600;
font-size: 12px;
display: block; }
.post-classic-new .post-date1 .month{
font-weight: 600;
font-size: 12px;
display: block; }
.post-classic-new .post-date1 .day{
font-weight: 600;
font-size: 14px;
display: block;} | 0.160496 | 0.046573 |
.um-about-wrap * {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.um-about-wrap a.um-about-icon {
margin: 0 0 0 15px !important;
padding: 0 !important;
text-decoration: none !important;
color: #777 !important;
font-size: 22px !important;
}
.um-about-wrap a.um-about-icon:hover {color: #0085ba !important}
.um-badge {
color: #fff;
background: none !important;
background: #0085ba url(../img/logo_small.png) no-repeat center 0px !important;
}
.um-about-wrap .ultimatemember-actions a.button-primary,
.um-about-wrap .ultimatemember-actions a.button {
vertical-align: top;
margin: 0 5px 0 0;
}
.changelog a.button-primary {
height: 40px;
line-height: 38px;
}
.um-about-wrap a {text-decoration: none}
/*
- General
*/
body.um-admin-modal-open {
overflow: hidden;
}
.um-admin #major-publishing-actions{background-color: #fff !important;border-top:0}
.um-admin-hide {display: none}
.um-admin-field {
display: block;
width: 100%;
margin-top: 10px;
}
.um-admin-field a.button {
position: relative;
top: 1px;
height: 30px !important;
}
.um-admin-half {
float: left;
width: 48%;
}
.um-admin-tri {
float: left;
width: 33%;
}
.um-admin-left{float: left}
.um-admin-right {float: right}
.um-admin-clear {clear: both}
.um-admin a.um-admin-activebg,
.um-admin a.um-admin-activebg:hover{
/*background: #3ba1da;*/
background: #0085ba;
color: #fff;
}
.um-admin a.button i,
.um-admin a.button-primary i {
font-size: 15px !important;
height: 15px !important;
width: 15px !important;
text-align: center !important;
margin: 0 5px 0 0 !important;
display: inline-block;
}
.um-admin a.button i:before,
.um-admin a.button-primary i:before {
position: relative;
top: 1px;
}
/*
- Form Inputs
*/
.um-admin-metabox h3 {
padding-left: 0 !important;
}
.um-admin-metabox h4 {
font-size: 14px;
background: #f5f5f5;
padding: 8px 4px;
color: #333;
}
.um-admin-metabox p {margin: 10px 0 0 0}
.um-admin-metabox label{
display: block;
cursor: default;
margin: 0 0 8px 0 !important;
padding: 0!important;
font-size: 13px;
color: #666;
}
.um-admin-metabox input[type=text]:disabled{
opacity: 0.7 !important;
color: #aaa !important;
}
.um-admin-metabox input[type=text] {
height: auto !important;
}
.um-admin-metabox input[type=text],
.um-admin-metabox textarea {
width: 100%;
max-width: 100%;
display: block;
box-sizing: border-box !important;
font-size: 13px !important;
line-height: 1.4em !important;
padding: 4px 10px !important;
}
.um-admin-metabox textarea {
padding: 8px !important;
line-height: 1.6em;
color: #888 !important;
}
.um-admin-metabox input[type=text].um-admin-error,
.um-admin-metabox textarea.um-admin-error
{border-color: #C74A4A!important}
.um-admin-metabox input[type=text].small {width: 54px}
.um-admin-metabox textarea {min-height: 100px;height: 100px}
.um-admin-metabox textarea.tall {min-height: 200px;height: 200px}
.wp-picker-container input.wp-color-picker[type="text"] {
width: 68px !important;
float: left !important;
padding: 2px 4px !important;
border-width: 1px !important;
}
/*
- Error blocks
*/
.um-admin-error-block, .um-admin-success-block{
display: none;
width: 100%;
background: #C74A4A;
border-radius: 3px;
color: #fff;
box-sizing: border-box;
position: relative;
padding: 12px;
font-size: 13px;
line-height: 1em !important;
margin: 0 0 16px 0;
}
.um-admin-success-block {
background: #7ACF58;
}
/*
- Yes or NO UI
*/
p.disabled-on-off .um-admin-yesno {
opacity: 0.5!important;
cursor: default !important;
}
p.disabled-on-off .um-admin-yesno *{
cursor: default !important;
}
.um-admin-yesno {
width: 100px !important;
height: 26px;
display: block;
position: relative;
color: #fff;
}
.um-admin-yesno span.btn {
position: absolute;
left: 0;
top: -2px;
width: 50px;
height: 28px;
text-align: center;
background: #f9f9f9;
z-index: 999;
border-radius: 3px;
cursor: pointer;
border: solid 1px #D0D9DB;
margin: 0;
padding: 0 !important;
}
.um-admin-yesno span.btn.pos-1 {left: 48px}
.um-admin-yesno span.yes, .um-admin-yesno span.no {
width: 50px;
float: left;
line-height: 24px;
height: 26px;
cursor: default;
font-size: 14px;
color: #fff;
padding: 0 0 0 10px;
box-sizing: border-box;
}
.um-admin-yesno .yes {
background: #0085ba;
border-radius: 3px 0 0 3px;
border: 1px solid rgba(0,0,0,.2);
}
.um-admin-yesno .no {
padding: 0 10px 0 0 !important;
text-align: right;
float: right;
background: #fff;
color: #222 !important;
border-radius: 0 3px 3px 0;
border: 1px solid #ddd;
}
.um-admin.users-php .subsubsub li.subsep {
display: block;
visibility: hidden;
height: 0;
}
.um-admin-cur-condition-template {
display: none;
} | web/app/plugins/ultimate-member/includes/admin/assets/css/um-admin-misc.css | .um-about-wrap * {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.um-about-wrap a.um-about-icon {
margin: 0 0 0 15px !important;
padding: 0 !important;
text-decoration: none !important;
color: #777 !important;
font-size: 22px !important;
}
.um-about-wrap a.um-about-icon:hover {color: #0085ba !important}
.um-badge {
color: #fff;
background: none !important;
background: #0085ba url(../img/logo_small.png) no-repeat center 0px !important;
}
.um-about-wrap .ultimatemember-actions a.button-primary,
.um-about-wrap .ultimatemember-actions a.button {
vertical-align: top;
margin: 0 5px 0 0;
}
.changelog a.button-primary {
height: 40px;
line-height: 38px;
}
.um-about-wrap a {text-decoration: none}
/*
- General
*/
body.um-admin-modal-open {
overflow: hidden;
}
.um-admin #major-publishing-actions{background-color: #fff !important;border-top:0}
.um-admin-hide {display: none}
.um-admin-field {
display: block;
width: 100%;
margin-top: 10px;
}
.um-admin-field a.button {
position: relative;
top: 1px;
height: 30px !important;
}
.um-admin-half {
float: left;
width: 48%;
}
.um-admin-tri {
float: left;
width: 33%;
}
.um-admin-left{float: left}
.um-admin-right {float: right}
.um-admin-clear {clear: both}
.um-admin a.um-admin-activebg,
.um-admin a.um-admin-activebg:hover{
/*background: #3ba1da;*/
background: #0085ba;
color: #fff;
}
.um-admin a.button i,
.um-admin a.button-primary i {
font-size: 15px !important;
height: 15px !important;
width: 15px !important;
text-align: center !important;
margin: 0 5px 0 0 !important;
display: inline-block;
}
.um-admin a.button i:before,
.um-admin a.button-primary i:before {
position: relative;
top: 1px;
}
/*
- Form Inputs
*/
.um-admin-metabox h3 {
padding-left: 0 !important;
}
.um-admin-metabox h4 {
font-size: 14px;
background: #f5f5f5;
padding: 8px 4px;
color: #333;
}
.um-admin-metabox p {margin: 10px 0 0 0}
.um-admin-metabox label{
display: block;
cursor: default;
margin: 0 0 8px 0 !important;
padding: 0!important;
font-size: 13px;
color: #666;
}
.um-admin-metabox input[type=text]:disabled{
opacity: 0.7 !important;
color: #aaa !important;
}
.um-admin-metabox input[type=text] {
height: auto !important;
}
.um-admin-metabox input[type=text],
.um-admin-metabox textarea {
width: 100%;
max-width: 100%;
display: block;
box-sizing: border-box !important;
font-size: 13px !important;
line-height: 1.4em !important;
padding: 4px 10px !important;
}
.um-admin-metabox textarea {
padding: 8px !important;
line-height: 1.6em;
color: #888 !important;
}
.um-admin-metabox input[type=text].um-admin-error,
.um-admin-metabox textarea.um-admin-error
{border-color: #C74A4A!important}
.um-admin-metabox input[type=text].small {width: 54px}
.um-admin-metabox textarea {min-height: 100px;height: 100px}
.um-admin-metabox textarea.tall {min-height: 200px;height: 200px}
.wp-picker-container input.wp-color-picker[type="text"] {
width: 68px !important;
float: left !important;
padding: 2px 4px !important;
border-width: 1px !important;
}
/*
- Error blocks
*/
.um-admin-error-block, .um-admin-success-block{
display: none;
width: 100%;
background: #C74A4A;
border-radius: 3px;
color: #fff;
box-sizing: border-box;
position: relative;
padding: 12px;
font-size: 13px;
line-height: 1em !important;
margin: 0 0 16px 0;
}
.um-admin-success-block {
background: #7ACF58;
}
/*
- Yes or NO UI
*/
p.disabled-on-off .um-admin-yesno {
opacity: 0.5!important;
cursor: default !important;
}
p.disabled-on-off .um-admin-yesno *{
cursor: default !important;
}
.um-admin-yesno {
width: 100px !important;
height: 26px;
display: block;
position: relative;
color: #fff;
}
.um-admin-yesno span.btn {
position: absolute;
left: 0;
top: -2px;
width: 50px;
height: 28px;
text-align: center;
background: #f9f9f9;
z-index: 999;
border-radius: 3px;
cursor: pointer;
border: solid 1px #D0D9DB;
margin: 0;
padding: 0 !important;
}
.um-admin-yesno span.btn.pos-1 {left: 48px}
.um-admin-yesno span.yes, .um-admin-yesno span.no {
width: 50px;
float: left;
line-height: 24px;
height: 26px;
cursor: default;
font-size: 14px;
color: #fff;
padding: 0 0 0 10px;
box-sizing: border-box;
}
.um-admin-yesno .yes {
background: #0085ba;
border-radius: 3px 0 0 3px;
border: 1px solid rgba(0,0,0,.2);
}
.um-admin-yesno .no {
padding: 0 10px 0 0 !important;
text-align: right;
float: right;
background: #fff;
color: #222 !important;
border-radius: 0 3px 3px 0;
border: 1px solid #ddd;
}
.um-admin.users-php .subsubsub li.subsep {
display: block;
visibility: hidden;
height: 0;
}
.um-admin-cur-condition-template {
display: none;
} | 0.243193 | 0.039825 |
em,strong{font-style:normal;}
.t_l, .t_c, .t_r, .m_l, .m_r, .b_l, .b_c, .b_r {background:#000;opacity:0.2;filter:alpha(opacity=20);overflow:hidden;}
.t_l, .t_r, .b_l, .b_r {height:8px;width:8px;}
.t_c, .b_c {height:8px;}
.m_l, .m_r {width:8px;}
.t_l {-moz-border-radius:8px 0 0 0;}
.t_r {-moz-border-radius:0 8px 0 0;}
.b_l {-moz-border-radius:0 0 0 8px;}
.b_r {-moz-border-radius:0 0 8px 0;}
.m_c {background:#FFFFFF;}
.m_c .tb {margin:0 0 10px;padding:0 10px;}
.m_c .c {padding:0 10px 10px;}
.m_c .o {background: #F2F2F2;border-top:1px solid #CCCCCC;height:26px;padding:8px 10px;text-align:right;}
.m_c .el {width:420px;}
.m_c .el li {border:medium none;padding:0;}
.flb {height:20px;line-height:20px;padding:10px 10px 8px;}
.flb em {color:#336699;float:left;font-size:14px;font-weight:700;}
.flb em a {text-decoration:none;}
.flb .needverify {background:url("images/re_unsolved.gif") no-repeat scroll 0 0 transparent;color:#999999;float:left;font-size:12px;font-weight:400;height:21px;line-height:21px;margin-left:8px;padding-left:13px;width:45px;}
.flb .onerror, .flb .onright {font-size:12px;font-weight:400;height:auto;line-height:140%;padding-left:20px;white-space:nowrap;}
.flb .onerror {background:url("images/check_error.gif") no-repeat scroll 0 50% transparent;}
.flb .onright {background:url("images/check_right.gif") no-repeat scroll 0 50% transparent;color:#666666;}
.flb span {color:#999999;float:right;}
.flb span a, .flb strong {color:#333333;float:left;font-weight:400;margin-left:8px;text-decoration:none;}
.flb span a:hover {color:#999999;}
.blr {margin:20px auto 30px;width:760px;}
.blr .c {padding:0 10px 10px;}
.lgfm {border-right:1px solid #CCC;float:left;font:12px/1.5 Tahoma,Helvetica,SimSun,sans-serif,Hei;margin-bottom:10px;padding:20px 0;width:280px;}
.lgfm label, .lgfm p {clear:both;display:block;line-height:22px;margin:0 0 10px;zoom:1;}
.lpsw label {float:left;line-height:150%;padding-left:4px;width:60px;}
.lgfm em, .fsb em {float:left;width:60px;margin-right:10px;text-align:right;}
.lgfm em img{margin-top:4px;}
.lgfm .txt {border-color:#CCC #EEE #EEE #CCC;border-style:solid;border-width:1px;height:16px;padding:2px 4px;}
.lgfm .txt, .lgfm .pt {width:170px;}
.lgfm .ftid a, .lgfm .ftid a:hover {border-color:#FFF;}
.lgf {float:left;margin:47px 25px 10px 40px;overflow:visible;}
.lgf h4 {font-size:14px;font-weight:400;margin-bottom:10px;width:140px;}
.fsb {clear:both;margin-top:8px;padding:10px;}
.m_c .fsb {background:#F2F2F2;border-top:1px solid #CCC;}
.sipt {background-color:#FFF;border-color:#CCC #EEE #EEE #CCC;border-style:solid;border-width:1px;clear:left;float:none;height:20px;margin:0 0 10px;width:234px;}
.sipt .txt {background:#FFF;border:medium none;float:left;outline:medium none;width:154px;}
.sipt .txt:focus, .sipt .txtarea:focus {-moz-box-shadow:0 0 0 0;border-color:#6FB1DF;color:#333333;}
.sltp a, .sltp a:hover, .sltp a:focus {background-color:transparent;border-color:#EEEEEE;color:#069 !important;}
.regbox span{font-weight:normal;}
.regbox .lgfm{width:760px;border-right:none;padding:0;}
.fwinmask .regbox .lgfm{width:480px;}
.regbox .lgfm label{padding:10px 0;border-bottom:1px dotted #CDCDCD;margin:0;}
.regbox .lgfm label span{color:#FF0000;padding-left:10px;}
.regbox .lgfm label i{font-style:normal;padding-left:10px;}
.postbox{padding:10px;}
#floatlayout_mods .gateform{padding-left:0;}
.topicadminlog .txtarea {height:40px;margin:5px 0;width:96%;}
.showselect_menu {background:#FEFEFE none repeat scroll 0 0;border:1px solid #7FCAE2;margin-bottom:0.8em;padding:5px;text-align:left;}
.topicadminlog h4 {font-weight:400;}
.topicadminlow {height:auto!important;height:50px;min-height:50px;}
.topicadminhigh {height:240px;width:400px; overflow-y: auto;margin-bottom:10px;}
.topicadminhigh img{padding:3px;border:solid 1px #666;background-color:#fff;text-indent:0;background-color:#fff;}
.inlinelist li {float:left;width:33%;}
.inlinelist li.wide {width:49.5%;}
.tah_fixiesel {overflow:hidden;white-space:nowrap;width:217px;}
.tah_fixiesel select {width:160px;}
.floatwrap {overflow:hidden;zoom:1;}
.floatwrap table.list th, .floatwrap table.list td {border-bottom:1px dotted #E6E7E1;height:18px;line-height:18px;}
.floatwrap table.list thead td{font-weight:700;}
.ratelist {overflow:hidden;zoom:1;margin-bottom:3px;}
.rateopt {margin-bottom:10px;overflow:auto;}
.ratelist label {float:left;overflow:hidden;white-space:nowrap;width:120px;}
.ratelist .txt {width:45px;}
/*bonus*/
.topicadminhigh dl{border-bottom: 1px dashed #E6E7E1;padding:5px 1px;}
.topicadminhigh ul{float:right;margin-right:10px;}
.bonusli{float:left;width:16px;height:16px;line-height:16px;text-indent:-600px;background:url(images/bonusflag.gif);cursor:pointer;}
.valuable{background-position:0 -16px;}
.checkedbest{background-position:-16px 0;}
.checkedvaluable{background-position:-16px -16px;}
.topicadminhigh dt{height:22px;}
.topicadminhigh cite{padding-left:10px;display:none;float:right;}
.topicadminhigh cite input{width:25px;}
.bonusinfo{color:#aaa;float:right;}
/*end bonus*/
#modlayer {background:url(images/mdly.png) no-repeat 0 0;height:100px;line-height:30px;margin-top:-16px;overflow:hidden;padding:10px 25px;position:absolute;right:0;width:250px;}
.blocks_title{padding:8px 0;}
.blocks_title a{float:right;}
.detailopt { overflow: hidden; white-space: nowrap; }
.detailopt p .txt { width: 100px; }
.detailopt span .txt { width: 18px; border-right: none; }
.detailopt a { float: left; text-indent: -999px; margin-right: 3px; width: 22px; height: 20px; text-align: center; }
.detailopt_bold, .detailopt_italic, .detailopt_underline { border: 1px solid #F1F5FA; outline: none; }
.detailopt .current { border: 1px solid #999; background-color: #FFF; }
.hasdropdownbtn .txt { width:24px; border-right: none; }
.hasdropdownbtn{}
.hasdropdownbtn input{float:left;width:129px;}
.dropdownbtn{float:left;overflow:hidden;text-indent:-9999px;width:20px;height:20px;border-width:1px 1px 1px 0;border-style:solid;border-color:#999 #CCC #CCC #999;background:#FFF url(images/newarow.gif) no-repeat 0 0;}
.dropdownbtn:hover{background-position:0 -20px;}
.topicadminlog .dropdownbtn {border-left-width:1px;}
.color_menu{overflow:hidden;position:absolute;z-index:9999;left:16px\9;top:73px;width:83px;}
.color_menu a{display:block;overflow:hidden;margin:0 !important;width:20px !important;height:20px !important;}
#modcount { padding: 0 2px; font-size: 24px; font-weight: 400; color: #F60; }
#modlayer .collapse {height:32px;line-height:100px;overflow:hidden;position:absolute;right:10px;top:10px;width:35px;}
#modlayer.collapsed {background-position:0 -128px;border:medium none;height:32px;margin-right:-3px;margin-top:4px;padding:0;width:35px;}
#modlayer.collapsed h4 {padding-top:40px;}
#modlayer.collapsed #modcount {color:#F26C4F;cursor:pointer;display:block;height:32px;left:3px;margin:0;position:absolute;text-align:center;top:0;width:32px;z-index:999;}
#modlayer a {color:#369;}
#modlayer label {position:absolute;right:50px;top:10px;}
*html #modlayer label {position:absolute;right:50px;top:16px;}
.topicwindow{position:absolute;width:140px;border:1px solid #CCC;background:#FFF;text-indent:10px;padding:6px 0;}
.m_c {background:#FFF;}
.popupcredit {}
.pc_l, .pc_c, .pc_inner, .pc_r { width: 29px; height: 56px; line-height: 56px; background: url(images/popupcredit_bg.gif) no-repeat 0 0; }
.pc_c { width: 200px; background-position: 0 -56px; background-repeat: repeat-x; }
.pc_inner { white-space: nowrap; text-align: center; width: auto; background-position: 50% -112px; }
.pc_inner span { margin-right: 15px; color: #FFEA97; font-size: 14px; font-weight: 700; }
* html .pc_inner span { display: inline-block; }
.pc_inner span a { color: #FFEA97; text-decoration: underline; }
.pc_inner span em { color: #FFF; font-size: 18px; font-weight: 400; }
.pc_inner span em.desc { color: #930; }
.pc_btn img { opacity: 0.5; }
.pc_btn:hover img { opacity: 1; }
.pc_r { background-position: -30px 0; } | Web/templates/red/float.css | em,strong{font-style:normal;}
.t_l, .t_c, .t_r, .m_l, .m_r, .b_l, .b_c, .b_r {background:#000;opacity:0.2;filter:alpha(opacity=20);overflow:hidden;}
.t_l, .t_r, .b_l, .b_r {height:8px;width:8px;}
.t_c, .b_c {height:8px;}
.m_l, .m_r {width:8px;}
.t_l {-moz-border-radius:8px 0 0 0;}
.t_r {-moz-border-radius:0 8px 0 0;}
.b_l {-moz-border-radius:0 0 0 8px;}
.b_r {-moz-border-radius:0 0 8px 0;}
.m_c {background:#FFFFFF;}
.m_c .tb {margin:0 0 10px;padding:0 10px;}
.m_c .c {padding:0 10px 10px;}
.m_c .o {background: #F2F2F2;border-top:1px solid #CCCCCC;height:26px;padding:8px 10px;text-align:right;}
.m_c .el {width:420px;}
.m_c .el li {border:medium none;padding:0;}
.flb {height:20px;line-height:20px;padding:10px 10px 8px;}
.flb em {color:#336699;float:left;font-size:14px;font-weight:700;}
.flb em a {text-decoration:none;}
.flb .needverify {background:url("images/re_unsolved.gif") no-repeat scroll 0 0 transparent;color:#999999;float:left;font-size:12px;font-weight:400;height:21px;line-height:21px;margin-left:8px;padding-left:13px;width:45px;}
.flb .onerror, .flb .onright {font-size:12px;font-weight:400;height:auto;line-height:140%;padding-left:20px;white-space:nowrap;}
.flb .onerror {background:url("images/check_error.gif") no-repeat scroll 0 50% transparent;}
.flb .onright {background:url("images/check_right.gif") no-repeat scroll 0 50% transparent;color:#666666;}
.flb span {color:#999999;float:right;}
.flb span a, .flb strong {color:#333333;float:left;font-weight:400;margin-left:8px;text-decoration:none;}
.flb span a:hover {color:#999999;}
.blr {margin:20px auto 30px;width:760px;}
.blr .c {padding:0 10px 10px;}
.lgfm {border-right:1px solid #CCC;float:left;font:12px/1.5 Tahoma,Helvetica,SimSun,sans-serif,Hei;margin-bottom:10px;padding:20px 0;width:280px;}
.lgfm label, .lgfm p {clear:both;display:block;line-height:22px;margin:0 0 10px;zoom:1;}
.lpsw label {float:left;line-height:150%;padding-left:4px;width:60px;}
.lgfm em, .fsb em {float:left;width:60px;margin-right:10px;text-align:right;}
.lgfm em img{margin-top:4px;}
.lgfm .txt {border-color:#CCC #EEE #EEE #CCC;border-style:solid;border-width:1px;height:16px;padding:2px 4px;}
.lgfm .txt, .lgfm .pt {width:170px;}
.lgfm .ftid a, .lgfm .ftid a:hover {border-color:#FFF;}
.lgf {float:left;margin:47px 25px 10px 40px;overflow:visible;}
.lgf h4 {font-size:14px;font-weight:400;margin-bottom:10px;width:140px;}
.fsb {clear:both;margin-top:8px;padding:10px;}
.m_c .fsb {background:#F2F2F2;border-top:1px solid #CCC;}
.sipt {background-color:#FFF;border-color:#CCC #EEE #EEE #CCC;border-style:solid;border-width:1px;clear:left;float:none;height:20px;margin:0 0 10px;width:234px;}
.sipt .txt {background:#FFF;border:medium none;float:left;outline:medium none;width:154px;}
.sipt .txt:focus, .sipt .txtarea:focus {-moz-box-shadow:0 0 0 0;border-color:#6FB1DF;color:#333333;}
.sltp a, .sltp a:hover, .sltp a:focus {background-color:transparent;border-color:#EEEEEE;color:#069 !important;}
.regbox span{font-weight:normal;}
.regbox .lgfm{width:760px;border-right:none;padding:0;}
.fwinmask .regbox .lgfm{width:480px;}
.regbox .lgfm label{padding:10px 0;border-bottom:1px dotted #CDCDCD;margin:0;}
.regbox .lgfm label span{color:#FF0000;padding-left:10px;}
.regbox .lgfm label i{font-style:normal;padding-left:10px;}
.postbox{padding:10px;}
#floatlayout_mods .gateform{padding-left:0;}
.topicadminlog .txtarea {height:40px;margin:5px 0;width:96%;}
.showselect_menu {background:#FEFEFE none repeat scroll 0 0;border:1px solid #7FCAE2;margin-bottom:0.8em;padding:5px;text-align:left;}
.topicadminlog h4 {font-weight:400;}
.topicadminlow {height:auto!important;height:50px;min-height:50px;}
.topicadminhigh {height:240px;width:400px; overflow-y: auto;margin-bottom:10px;}
.topicadminhigh img{padding:3px;border:solid 1px #666;background-color:#fff;text-indent:0;background-color:#fff;}
.inlinelist li {float:left;width:33%;}
.inlinelist li.wide {width:49.5%;}
.tah_fixiesel {overflow:hidden;white-space:nowrap;width:217px;}
.tah_fixiesel select {width:160px;}
.floatwrap {overflow:hidden;zoom:1;}
.floatwrap table.list th, .floatwrap table.list td {border-bottom:1px dotted #E6E7E1;height:18px;line-height:18px;}
.floatwrap table.list thead td{font-weight:700;}
.ratelist {overflow:hidden;zoom:1;margin-bottom:3px;}
.rateopt {margin-bottom:10px;overflow:auto;}
.ratelist label {float:left;overflow:hidden;white-space:nowrap;width:120px;}
.ratelist .txt {width:45px;}
/*bonus*/
.topicadminhigh dl{border-bottom: 1px dashed #E6E7E1;padding:5px 1px;}
.topicadminhigh ul{float:right;margin-right:10px;}
.bonusli{float:left;width:16px;height:16px;line-height:16px;text-indent:-600px;background:url(images/bonusflag.gif);cursor:pointer;}
.valuable{background-position:0 -16px;}
.checkedbest{background-position:-16px 0;}
.checkedvaluable{background-position:-16px -16px;}
.topicadminhigh dt{height:22px;}
.topicadminhigh cite{padding-left:10px;display:none;float:right;}
.topicadminhigh cite input{width:25px;}
.bonusinfo{color:#aaa;float:right;}
/*end bonus*/
#modlayer {background:url(images/mdly.png) no-repeat 0 0;height:100px;line-height:30px;margin-top:-16px;overflow:hidden;padding:10px 25px;position:absolute;right:0;width:250px;}
.blocks_title{padding:8px 0;}
.blocks_title a{float:right;}
.detailopt { overflow: hidden; white-space: nowrap; }
.detailopt p .txt { width: 100px; }
.detailopt span .txt { width: 18px; border-right: none; }
.detailopt a { float: left; text-indent: -999px; margin-right: 3px; width: 22px; height: 20px; text-align: center; }
.detailopt_bold, .detailopt_italic, .detailopt_underline { border: 1px solid #F1F5FA; outline: none; }
.detailopt .current { border: 1px solid #999; background-color: #FFF; }
.hasdropdownbtn .txt { width:24px; border-right: none; }
.hasdropdownbtn{}
.hasdropdownbtn input{float:left;width:129px;}
.dropdownbtn{float:left;overflow:hidden;text-indent:-9999px;width:20px;height:20px;border-width:1px 1px 1px 0;border-style:solid;border-color:#999 #CCC #CCC #999;background:#FFF url(images/newarow.gif) no-repeat 0 0;}
.dropdownbtn:hover{background-position:0 -20px;}
.topicadminlog .dropdownbtn {border-left-width:1px;}
.color_menu{overflow:hidden;position:absolute;z-index:9999;left:16px\9;top:73px;width:83px;}
.color_menu a{display:block;overflow:hidden;margin:0 !important;width:20px !important;height:20px !important;}
#modcount { padding: 0 2px; font-size: 24px; font-weight: 400; color: #F60; }
#modlayer .collapse {height:32px;line-height:100px;overflow:hidden;position:absolute;right:10px;top:10px;width:35px;}
#modlayer.collapsed {background-position:0 -128px;border:medium none;height:32px;margin-right:-3px;margin-top:4px;padding:0;width:35px;}
#modlayer.collapsed h4 {padding-top:40px;}
#modlayer.collapsed #modcount {color:#F26C4F;cursor:pointer;display:block;height:32px;left:3px;margin:0;position:absolute;text-align:center;top:0;width:32px;z-index:999;}
#modlayer a {color:#369;}
#modlayer label {position:absolute;right:50px;top:10px;}
*html #modlayer label {position:absolute;right:50px;top:16px;}
.topicwindow{position:absolute;width:140px;border:1px solid #CCC;background:#FFF;text-indent:10px;padding:6px 0;}
.m_c {background:#FFF;}
.popupcredit {}
.pc_l, .pc_c, .pc_inner, .pc_r { width: 29px; height: 56px; line-height: 56px; background: url(images/popupcredit_bg.gif) no-repeat 0 0; }
.pc_c { width: 200px; background-position: 0 -56px; background-repeat: repeat-x; }
.pc_inner { white-space: nowrap; text-align: center; width: auto; background-position: 50% -112px; }
.pc_inner span { margin-right: 15px; color: #FFEA97; font-size: 14px; font-weight: 700; }
* html .pc_inner span { display: inline-block; }
.pc_inner span a { color: #FFEA97; text-decoration: underline; }
.pc_inner span em { color: #FFF; font-size: 18px; font-weight: 400; }
.pc_inner span em.desc { color: #930; }
.pc_btn img { opacity: 0.5; }
.pc_btn:hover img { opacity: 1; }
.pc_r { background-position: -30px 0; } | 0.210523 | 0.139895 |
.pace {
-webkit-pointer-events: none;
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.pace .pace-activity {
display: block;
position: fixed;
z-index: 20000;
top: 0;
right: 0;
width: 300px;
height: 300px;
background: #2299dd;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
-webkit-transform: translateX(100%) translateY(-100%) rotate(45deg);
transform: translateX(100%) translateY(-100%) rotate(45deg);
pointer-events: none;
}
.pace.pace-active .pace-activity {
-webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
transform: translateX(50%) translateY(-50%) rotate(45deg);
}
.pace .pace-activity::before,
.pace .pace-activity::after {
-moz-box-sizing: border-box;
box-sizing: border-box;
position: absolute;
bottom: 30px;
left: 50%;
display: block;
border: 5px solid #fff!important;
border-radius: 50%;
content: '';
}
.pace .pace-activity::before {
margin-left: -40px;
width: 80px;
height: 80px;
border-right-color: rgba(0, 0, 0, .2)!important;
border-left-color: rgba(0, 0, 0, .2)!important;
-webkit-animation: corner-indicator-spin 3s linear infinite;
animation: corner-indicator-spin 3s linear infinite;
}
.pace .pace-activity::after {
bottom: 50px;
margin-left: -20px;
width: 40px;
height: 40px;
border-top-color: rgba(0, 0, 0, .2)!important;
border-bottom-color: rgba(0, 0, 0, .2)!important;
-webkit-animation: corner-indicator-spin 1s linear infinite;
animation: corner-indicator-spin 1s linear infinite;
}
.pace .pace-progress-inner {
box-shadow:none!important;
}
.pace .pace-activity {
box-shadow:none!important;
}
@-webkit-keyframes corner-indicator-spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(359deg); }
}
@keyframes corner-indicator-spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(359deg); }
}
.pace .pace-progress {
position: fixed;
z-index: 20000;
top: 50%;
left:50%;
height: 50px;
width: 110px;
margin:-25px 0 0 -55px;
text-align:center;
background-color:transparent!important;
-webkit-transform: translate3d(0, 0, 0) !important;
-ms-transform: translate3d(0, 0, 0) !important;
transform: translate3d(0, 0, 0) !important;
}
.pace .pace-progress:after {
display: block;
position:absolute;
top:0px;
left:0;
right:0;
content: attr(data-progress-text);
font-weight: 100;
font-size: 30px;
line-height: 1;
text-align: center;
color: #2299dd;
opacity:0.5;
} | Portals/_default/Skins/20067-UnlimitedColorsPack-049/pacestyle/Corner-indicator.css | .pace {
-webkit-pointer-events: none;
pointer-events: none;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.pace .pace-activity {
display: block;
position: fixed;
z-index: 20000;
top: 0;
right: 0;
width: 300px;
height: 300px;
background: #2299dd;
-webkit-transition: -webkit-transform 0.3s;
transition: transform 0.3s;
-webkit-transform: translateX(100%) translateY(-100%) rotate(45deg);
transform: translateX(100%) translateY(-100%) rotate(45deg);
pointer-events: none;
}
.pace.pace-active .pace-activity {
-webkit-transform: translateX(50%) translateY(-50%) rotate(45deg);
transform: translateX(50%) translateY(-50%) rotate(45deg);
}
.pace .pace-activity::before,
.pace .pace-activity::after {
-moz-box-sizing: border-box;
box-sizing: border-box;
position: absolute;
bottom: 30px;
left: 50%;
display: block;
border: 5px solid #fff!important;
border-radius: 50%;
content: '';
}
.pace .pace-activity::before {
margin-left: -40px;
width: 80px;
height: 80px;
border-right-color: rgba(0, 0, 0, .2)!important;
border-left-color: rgba(0, 0, 0, .2)!important;
-webkit-animation: corner-indicator-spin 3s linear infinite;
animation: corner-indicator-spin 3s linear infinite;
}
.pace .pace-activity::after {
bottom: 50px;
margin-left: -20px;
width: 40px;
height: 40px;
border-top-color: rgba(0, 0, 0, .2)!important;
border-bottom-color: rgba(0, 0, 0, .2)!important;
-webkit-animation: corner-indicator-spin 1s linear infinite;
animation: corner-indicator-spin 1s linear infinite;
}
.pace .pace-progress-inner {
box-shadow:none!important;
}
.pace .pace-activity {
box-shadow:none!important;
}
@-webkit-keyframes corner-indicator-spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(359deg); }
}
@keyframes corner-indicator-spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(359deg); }
}
.pace .pace-progress {
position: fixed;
z-index: 20000;
top: 50%;
left:50%;
height: 50px;
width: 110px;
margin:-25px 0 0 -55px;
text-align:center;
background-color:transparent!important;
-webkit-transform: translate3d(0, 0, 0) !important;
-ms-transform: translate3d(0, 0, 0) !important;
transform: translate3d(0, 0, 0) !important;
}
.pace .pace-progress:after {
display: block;
position:absolute;
top:0px;
left:0;
right:0;
content: attr(data-progress-text);
font-weight: 100;
font-size: 30px;
line-height: 1;
text-align: center;
color: #2299dd;
opacity:0.5;
} | 0.444806 | 0.107157 |
*, *::before, *::after {
box-sizing: border-box;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body {
padding: 0;
display: flex;
flex-direction: column;
width: 100vw;
height: 100vh;
align-items: center;
}
.score-board {
display: flex;
flex-direction: row;
padding: 20px 10px;
width: 50vw;
height: 7vh;
justify-content: space-between;
}
.high-scores {
padding: 3px;
margin: 0;
height: 40px;
}
#high-scores {
background-color: white;
font-size: 20px;
height: 40px;
color: blue;
border: none;
font-weight: bold;
}
.timer {
padding: 3px;
text-align: right;
height: 40px;
}
.timer h1 {
font-size: 20px;
color: blue;
}
.question-card {
width: 800px;
max-width: 80%;
max-height: 50%;
}
#question {
font-size: 50px;
text-align: center;
flex-wrap: wrap;
}
.btn-grid {
display: grid;
grid-template-columns: repeat(2, auto);
gap: 10px;
margin: 20px 10px;
padding-top: 20px;
}
/* This modifies all of the clickable buttons so they are obvious and easy to find. */
.btn {
background-color: lightblue;
border: 2px solid blue;
border-radius: 5px;
padding: 5px, 10px;
color: black;
outline: none;
justify-content: center;
align-items: center;
cursor: pointer;
}
.btn text {
text-align: center;
font-size: 20px;
}
.answer {
padding-top: 30px;
text-align: center;
font-size: 20px;
}
.btn:hover {
border-color: red;
}
#answer-buttons {
height: 200px;
}
.start-btn {
font-size: 2rem;
font-weight: bold;
padding: 10px 20px;
}
p {
padding-top: 30px;
text-align: center;
font-size: 25px;
margin-top: 5px;
}
.controls {
display: flex;
justify-content: center;
align-items: center;
}
.hide {
display: none;
}
.score {
align-items: center;
}
.score h1 {
color: blue;
font-size: 30px;
font-weight: bold;
padding-bottom: 20px;
}
.score form {
align-items: center;
}
#leaderboard {
text-align: center;
justify-content: space-between;
}
#leaderboard h1 {
text-align: center;
font-size: 40px;
color: blue;
border-bottom: 5px solid gray;
padding-bottom: 10px;
}
#leaderboard button {
font-size: 20px;
height: 50px;
width: 200px;
height: 100px;
margin: 0 60px;
}
#leaders {
text-align: center;
font-size: 30px;
font-weight: bold;
margin: 15px;
padding-bottom: 30px;
} | Assets/css/style.css | *, *::before, *::after {
box-sizing: border-box;
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
body {
padding: 0;
display: flex;
flex-direction: column;
width: 100vw;
height: 100vh;
align-items: center;
}
.score-board {
display: flex;
flex-direction: row;
padding: 20px 10px;
width: 50vw;
height: 7vh;
justify-content: space-between;
}
.high-scores {
padding: 3px;
margin: 0;
height: 40px;
}
#high-scores {
background-color: white;
font-size: 20px;
height: 40px;
color: blue;
border: none;
font-weight: bold;
}
.timer {
padding: 3px;
text-align: right;
height: 40px;
}
.timer h1 {
font-size: 20px;
color: blue;
}
.question-card {
width: 800px;
max-width: 80%;
max-height: 50%;
}
#question {
font-size: 50px;
text-align: center;
flex-wrap: wrap;
}
.btn-grid {
display: grid;
grid-template-columns: repeat(2, auto);
gap: 10px;
margin: 20px 10px;
padding-top: 20px;
}
/* This modifies all of the clickable buttons so they are obvious and easy to find. */
.btn {
background-color: lightblue;
border: 2px solid blue;
border-radius: 5px;
padding: 5px, 10px;
color: black;
outline: none;
justify-content: center;
align-items: center;
cursor: pointer;
}
.btn text {
text-align: center;
font-size: 20px;
}
.answer {
padding-top: 30px;
text-align: center;
font-size: 20px;
}
.btn:hover {
border-color: red;
}
#answer-buttons {
height: 200px;
}
.start-btn {
font-size: 2rem;
font-weight: bold;
padding: 10px 20px;
}
p {
padding-top: 30px;
text-align: center;
font-size: 25px;
margin-top: 5px;
}
.controls {
display: flex;
justify-content: center;
align-items: center;
}
.hide {
display: none;
}
.score {
align-items: center;
}
.score h1 {
color: blue;
font-size: 30px;
font-weight: bold;
padding-bottom: 20px;
}
.score form {
align-items: center;
}
#leaderboard {
text-align: center;
justify-content: space-between;
}
#leaderboard h1 {
text-align: center;
font-size: 40px;
color: blue;
border-bottom: 5px solid gray;
padding-bottom: 10px;
}
#leaderboard button {
font-size: 20px;
height: 50px;
width: 200px;
height: 100px;
margin: 0 60px;
}
#leaders {
text-align: center;
font-size: 30px;
font-weight: bold;
margin: 15px;
padding-bottom: 30px;
} | 0.536799 | 0.083367 |
* Imports
*/
.woocommerce #reviews .product-rating .product-rating-summary,
.woocommerce #reviews .product-rating .product-rating-details,
.woocommerce-page #reviews .product-rating .product-rating-summary,
.woocommerce-page #reviews .product-rating .product-rating-details {
display: block;
width: 100%; }
.woocommerce #reviews .product-rating .product-rating-summary,
.woocommerce-page #reviews .product-rating .product-rating-summary {
text-align: right; }
.woocommerce #reviews .product-rating .product-rating-details table td,
.woocommerce-page #reviews .product-rating .product-rating-details table td {
padding: 0.202em 0.5407911001em; }
.woocommerce #reviews .product-rating .product-rating-details table td.rating-graph .bar,
.woocommerce-page #reviews .product-rating .product-rating-details table td.rating-graph .bar {
background-color: #43454b; }
.woocommerce #reviews .product-rating .product-rating-details table td.rating-count a,
.woocommerce-page #reviews .product-rating .product-rating-details table td.rating-count a {
text-decoration: none; }
.woocommerce #reviews .form-contribution,
.woocommerce-page #reviews .form-contribution {
border-color: rgba(0, 0, 0, 0.05);
padding: 1em; }
.woocommerce #reviews .form-contribution #review_rating_field fieldset,
.woocommerce-page #reviews .form-contribution #review_rating_field fieldset {
float: right; }
.woocommerce #reviews .form-contribution #review_rating_field fieldset label,
.woocommerce-page #reviews .form-contribution #review_rating_field fieldset label {
display: inline-block;
float: left; }
.woocommerce #reviews .form-contribution #review_rating_field fieldset label.checkbox::before,
.woocommerce-page #reviews .form-contribution #review_rating_field fieldset label.checkbox::before {
font-size: 0.875em; }
.woocommerce #reviews .form-contribution #review_rating_field fieldset .star-label,
.woocommerce-page #reviews .form-contribution #review_rating_field fieldset .star-label {
float: none;
margin-right: 0.6180469716em; }
.woocommerce #reviews .form-contribution .form-row,
.woocommerce-page #reviews .form-contribution .form-row {
clear: both; }
.woocommerce #reviews .contribution-karma,
.woocommerce-page #reviews .contribution-karma {
margin-right: 0; }
.woocommerce #reviews #comments ol.commentlist li,
.woocommerce-page #reviews #comments ol.commentlist li {
padding-top: 0; }
.woocommerce #reviews #comments ol.commentlist li img.avatar,
.woocommerce-page #reviews #comments ol.commentlist li img.avatar {
width: 2.617924em;
height: auto;
margin: 0;
float: left; }
.woocommerce #reviews #comments ol.commentlist li .description,
.woocommerce-page #reviews #comments ol.commentlist li .description {
padding-bottom: 0; }
.woocommerce #reviews #comments ol.commentlist li .comment-text,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text {
margin-right: 0; }
.woocommerce #reviews #comments ol.commentlist li .comment-text img,
.woocommerce #reviews #comments ol.commentlist li .comment-text iframe,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text img,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text iframe {
margin-bottom: 1.618em; }
.woocommerce #reviews #comments ol.commentlist li h3.contribution-title,
.woocommerce-page #reviews #comments ol.commentlist li h3.contribution-title {
margin: 0;
font-size: 1em; }
.woocommerce #reviews #comments ol.commentlist li .contribution-actions a,
.woocommerce-page #reviews #comments ol.commentlist li .contribution-actions a {
color: #2c2d33; }
.woocommerce #reviews #comments ol.commentlist li .contribution-actions a.done,
.woocommerce-page #reviews #comments ol.commentlist li .contribution-actions a.done {
opacity: 0.5; }
.woocommerce #reviews #comments ol.commentlist li ul.children li,
.woocommerce-page #reviews #comments ol.commentlist li ul.children li {
margin-bottom: 1.618em; }
.woocommerce #reviews #comments .form-contribution_comment,
.woocommerce-page #reviews #comments .form-contribution_comment {
width: 81.8181818182%;
float: left;
margin-left: 0;
margin-bottom: 3.706325903em;
padding-top: 1.618em; }
.woocommerce #reviews #comments ul.children + .form-contribution_comment,
.woocommerce-page #reviews #comments ul.children + .form-contribution_comment {
border-top: 0;
padding-top: 0; }
.woocommerce #reviews .contribution-flag-form,
.woocommerce-page #reviews .contribution-flag-form {
background-color: rgba(0, 0, 0, 0.1);
padding: 1.618em;
margin-bottom: 1.618em; }
.woocommerce .form-photo #photo_attachment_file,
.woocommerce-page .form-photo #photo_attachment_file {
color: inherit;
margin: 1em 0; }
.woocommerce .contribution-type-selector,
.woocommerce-page .contribution-type-selector {
margin: 0; }
.woocommerce .contribution-type-selector > a,
.woocommerce-page .contribution-type-selector > a {
display: inline-block;
margin-left: 1em;
padding: 0.5407911001em 0;
border-bottom: 0.202em solid rgba(0, 0, 0, 0.05); }
.woocommerce .contribution-type-selector > a.active,
.woocommerce-page .contribution-type-selector > a.active {
border-bottom-color: rgba(0, 0, 0, 0.05); }
.woocommerce .star-rating-selector fieldset,
.woocommerce-page .star-rating-selector fieldset {
float: none;
clear: both; }
.woocommerce .star-rating-selector > label:first-child,
.woocommerce-page .star-rating-selector > label:first-child {
display: block !important; }
.woocommerce .star-rating-selector:not(:checked) label.checkbox,
.woocommerce-page .star-rating-selector:not(:checked) label.checkbox {
float: none; }
.woocommerce #wc-product-reviews-pro-modal #customer_login .col-1,
.woocommerce #wc-product-reviews-pro-modal #customer_login .col-2,
.woocommerce-page #wc-product-reviews-pro-modal #customer_login .col-1,
.woocommerce-page #wc-product-reviews-pro-modal #customer_login .col-2 {
width: 100%; }
#tiptip_content,
.chart-tooltip {
font-size: 0.875em;
padding: 0.6180469716em 1em;
background-color: rgba(0, 0, 0, 0.8); }
#tiptip_holder.tip_bottom #tiptip_arrow_inner {
border-bottom-color: rgba(0, 0, 0, 0.8);
margin-top: -6px; } | backup/wp-content/themes/storefront/assets/css/woocommerce/extensions/product-reviews-pro-rtl.css | * Imports
*/
.woocommerce #reviews .product-rating .product-rating-summary,
.woocommerce #reviews .product-rating .product-rating-details,
.woocommerce-page #reviews .product-rating .product-rating-summary,
.woocommerce-page #reviews .product-rating .product-rating-details {
display: block;
width: 100%; }
.woocommerce #reviews .product-rating .product-rating-summary,
.woocommerce-page #reviews .product-rating .product-rating-summary {
text-align: right; }
.woocommerce #reviews .product-rating .product-rating-details table td,
.woocommerce-page #reviews .product-rating .product-rating-details table td {
padding: 0.202em 0.5407911001em; }
.woocommerce #reviews .product-rating .product-rating-details table td.rating-graph .bar,
.woocommerce-page #reviews .product-rating .product-rating-details table td.rating-graph .bar {
background-color: #43454b; }
.woocommerce #reviews .product-rating .product-rating-details table td.rating-count a,
.woocommerce-page #reviews .product-rating .product-rating-details table td.rating-count a {
text-decoration: none; }
.woocommerce #reviews .form-contribution,
.woocommerce-page #reviews .form-contribution {
border-color: rgba(0, 0, 0, 0.05);
padding: 1em; }
.woocommerce #reviews .form-contribution #review_rating_field fieldset,
.woocommerce-page #reviews .form-contribution #review_rating_field fieldset {
float: right; }
.woocommerce #reviews .form-contribution #review_rating_field fieldset label,
.woocommerce-page #reviews .form-contribution #review_rating_field fieldset label {
display: inline-block;
float: left; }
.woocommerce #reviews .form-contribution #review_rating_field fieldset label.checkbox::before,
.woocommerce-page #reviews .form-contribution #review_rating_field fieldset label.checkbox::before {
font-size: 0.875em; }
.woocommerce #reviews .form-contribution #review_rating_field fieldset .star-label,
.woocommerce-page #reviews .form-contribution #review_rating_field fieldset .star-label {
float: none;
margin-right: 0.6180469716em; }
.woocommerce #reviews .form-contribution .form-row,
.woocommerce-page #reviews .form-contribution .form-row {
clear: both; }
.woocommerce #reviews .contribution-karma,
.woocommerce-page #reviews .contribution-karma {
margin-right: 0; }
.woocommerce #reviews #comments ol.commentlist li,
.woocommerce-page #reviews #comments ol.commentlist li {
padding-top: 0; }
.woocommerce #reviews #comments ol.commentlist li img.avatar,
.woocommerce-page #reviews #comments ol.commentlist li img.avatar {
width: 2.617924em;
height: auto;
margin: 0;
float: left; }
.woocommerce #reviews #comments ol.commentlist li .description,
.woocommerce-page #reviews #comments ol.commentlist li .description {
padding-bottom: 0; }
.woocommerce #reviews #comments ol.commentlist li .comment-text,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text {
margin-right: 0; }
.woocommerce #reviews #comments ol.commentlist li .comment-text img,
.woocommerce #reviews #comments ol.commentlist li .comment-text iframe,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text img,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text iframe {
margin-bottom: 1.618em; }
.woocommerce #reviews #comments ol.commentlist li h3.contribution-title,
.woocommerce-page #reviews #comments ol.commentlist li h3.contribution-title {
margin: 0;
font-size: 1em; }
.woocommerce #reviews #comments ol.commentlist li .contribution-actions a,
.woocommerce-page #reviews #comments ol.commentlist li .contribution-actions a {
color: #2c2d33; }
.woocommerce #reviews #comments ol.commentlist li .contribution-actions a.done,
.woocommerce-page #reviews #comments ol.commentlist li .contribution-actions a.done {
opacity: 0.5; }
.woocommerce #reviews #comments ol.commentlist li ul.children li,
.woocommerce-page #reviews #comments ol.commentlist li ul.children li {
margin-bottom: 1.618em; }
.woocommerce #reviews #comments .form-contribution_comment,
.woocommerce-page #reviews #comments .form-contribution_comment {
width: 81.8181818182%;
float: left;
margin-left: 0;
margin-bottom: 3.706325903em;
padding-top: 1.618em; }
.woocommerce #reviews #comments ul.children + .form-contribution_comment,
.woocommerce-page #reviews #comments ul.children + .form-contribution_comment {
border-top: 0;
padding-top: 0; }
.woocommerce #reviews .contribution-flag-form,
.woocommerce-page #reviews .contribution-flag-form {
background-color: rgba(0, 0, 0, 0.1);
padding: 1.618em;
margin-bottom: 1.618em; }
.woocommerce .form-photo #photo_attachment_file,
.woocommerce-page .form-photo #photo_attachment_file {
color: inherit;
margin: 1em 0; }
.woocommerce .contribution-type-selector,
.woocommerce-page .contribution-type-selector {
margin: 0; }
.woocommerce .contribution-type-selector > a,
.woocommerce-page .contribution-type-selector > a {
display: inline-block;
margin-left: 1em;
padding: 0.5407911001em 0;
border-bottom: 0.202em solid rgba(0, 0, 0, 0.05); }
.woocommerce .contribution-type-selector > a.active,
.woocommerce-page .contribution-type-selector > a.active {
border-bottom-color: rgba(0, 0, 0, 0.05); }
.woocommerce .star-rating-selector fieldset,
.woocommerce-page .star-rating-selector fieldset {
float: none;
clear: both; }
.woocommerce .star-rating-selector > label:first-child,
.woocommerce-page .star-rating-selector > label:first-child {
display: block !important; }
.woocommerce .star-rating-selector:not(:checked) label.checkbox,
.woocommerce-page .star-rating-selector:not(:checked) label.checkbox {
float: none; }
.woocommerce #wc-product-reviews-pro-modal #customer_login .col-1,
.woocommerce #wc-product-reviews-pro-modal #customer_login .col-2,
.woocommerce-page #wc-product-reviews-pro-modal #customer_login .col-1,
.woocommerce-page #wc-product-reviews-pro-modal #customer_login .col-2 {
width: 100%; }
#tiptip_content,
.chart-tooltip {
font-size: 0.875em;
padding: 0.6180469716em 1em;
background-color: rgba(0, 0, 0, 0.8); }
#tiptip_holder.tip_bottom #tiptip_arrow_inner {
border-bottom-color: rgba(0, 0, 0, 0.8);
margin-top: -6px; } | 0.338842 | 0.042107 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system,
BlinkMacSystemFont,
"PingFang SC",
"Helvetica Neue",
STHeiti,
"Microsoft Yahei",
Tahoma,
Simsun,
sans-serif;
}
a {
text-decoration: none;
color: #666;
cursor: pointer;
}
body {
overflow-x: hidden;
}
img {
vertical-align: middle;
border: none;
}
li {
list-style: none;
}
.fl {
float: left;
}
.fr {
float: right;
}
.fn {
float: none;
}
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.t-c {
text-align: center;
}
.t-l {
text-align: left;
}
.t-r {
text-align: right;
}
.nowrap {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.o-h {
overflow: hidden;
}
.o-s {
overflow: scroll;
}
.o-v {
overflow: visible;
}
.t-c-v {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}
.f0 {
font-size: 0;
}
.f28 {
font-size: 0.28rem;
}
.f30 {
font-size: 0.3rem;
}
.f32 {
font-size: 0.32rem;
}
.f34 {
font-size: 0.34rem;
}
.f36 {
font-size: 0.36rem;
}
.f38 {
font-size: 0.38rem;
}
.f40 {
font-size: 0.4rem;
}
.f42 {
font-size: 0.42rem;
}
.f44 {
font-size: 0.44rem;
}
.f46 {
font-size: 0.46rem;
}
.f48 {
font-size: 0.48rem;
}
.f50 {
font-size: 0.5rem;
}
.f52 {
font-size: 0.52rem;
}
.f54 {
font-size: 0.54rem;
}
.f56 {
font-size: 0.56rem;
}
.f58 {
font-size: 0.58rem;
}
.f60 {
font-size: 0.6rem;
}
.color1 {
color: #e4393c;
}
.color2 {
color: #222;
}
.color3 {
color: #666;
}
.color4 {
color: #999;
}
.color5 {
color: #d7d7d7;
}
.color6 {
color: #f3f5f7;
}
.color7 {
color: #f8f8f8;
}
.color8 {
color: #fff;
}
.color-primary {
color: #1ab394;
}
.color-success {
color: #1c84c6;
}
.color-info {
color: #23c6c8;
}
.color-warning {
color: #f8ac59;
}
.color-danger {
color: #ed5565;
}
.bg-color1 {
background-color: #e4393c;
}
.bg-color2 {
background-color: #222;
}
.bg-color3 {
background-color: #666;
}
.bg-color4 {
background-color: #999;
}
.bg-color5 {
background-color: #d7d7d7;
}
.bg-color6 {
background-color: #f3f5f7;
}
.bg-color7 {
background-color: #f8f8f8;
}
.bg-color8 {
background-color: #fff;
}
.bg-color-primary {
background-color: #1ab394;
}
.bg-color-success {
background-color: #1c84c6;
}
.bg-color-info {
background-color: #23c6c8;
}
.bg-color-warning {
background-color: #f8ac59;
}
.bg-color-danger {
background-color: #ed5565;
}
hr {
border: none;
border-bottom: 0.01rem solid #d7d7d7;
}
hr.lg {
border-bottom: 0.03rem solid #d7d7d7;
}
.w1 {
width: 0.1rem;
}
.h1 {
height: 0.1rem;
}
.w2 {
width: 0.2rem;
}
.h2 {
height: 0.2rem;
}
.w3 {
width: 0.3rem;
}
.h3 {
height: 0.3rem;
}
.w4 {
width: 0.4rem;
}
.h4 {
height: 0.4rem;
}
.w5 {
width: 0.5rem;
}
.h5 {
height: 0.5rem;
}
.w6 {
width: 0.6rem;
}
.h6 {
height: 0.6rem;
}
.w7 {
width: 0.7rem;
}
.h7 {
height: 0.7rem;
}
.w8 {
width: 0.8rem;
}
.h8 {
height: 0.8rem;
}
.w9 {
width: 0.9rem;
}
.h9 {
height: 0.9rem;
}
.w10 {
width: 1rem;
}
.h10 {
height: 1rem;
}
.w11 {
width: 1.1rem;
}
.h11 {
height: 1.1rem;
}
.w12 {
width: 1.2rem;
}
.h12 {
height: 1.2rem;
}
.w13 {
width: 1.3rem;
}
.h13 {
height: 1.3rem;
}
.w14 {
width: 1.4rem;
}
.h14 {
height: 1.4rem;
}
.w15 {
width: 1.5rem;
}
.h15 {
height: 1.5rem;
}
.w16 {
width: 1.6rem;
}
.h16 {
height: 1.6rem;
}
.w17 {
width: 1.7rem;
}
.h17 {
height: 1.7rem;
}
.w18 {
width: 1.8rem;
}
.h18 {
height: 1.8rem;
}
.w19 {
width: 1.9rem;
}
.h19 {
height: 1.9rem;
}
.w20 {
width: 2rem;
}
.h20 {
height: 2rem;
}
.w21 {
width: 2.1rem;
}
.h21 {
height: 2.1rem;
}
.w22 {
width: 2.2rem;
}
.h22 {
height: 2.2rem;
}
.w23 {
width: 2.3rem;
}
.h23 {
height: 2.3rem;
}
.w24 {
width: 2.4rem;
}
.h24 {
height: 2.4rem;
}
.w25 {
width: 2.5rem;
}
.h25 {
height: 2.5rem;
}
.w26 {
width: 2.6rem;
}
.h26 {
height: 2.6rem;
}
.w27 {
width: 2.7rem;
}
.h27 {
height: 2.7rem;
}
.w28 {
width: 2.8rem;
}
.h28 {
height: 2.8rem;
}
.w29 {
width: 2.9rem;
}
.h29 {
height: 2.9rem;
}
.w30 {
width: 3rem;
}
.h30 {
height: 3rem;
}
.w31 {
width: 3.1rem;
}
.h31 {
height: 3.1rem;
}
.w32 {
width: 3.2rem;
}
.h32 {
height: 3.2rem;
}
.w33 {
width: 3.3rem;
}
.h33 {
height: 3.3rem;
}
.w34 {
width: 3.4rem;
}
.h34 {
height: 3.4rem;
}
.w35 {
width: 3.5rem;
}
.h35 {
height: 3.5rem;
}
.w36 {
width: 3.6rem;
}
.h36 {
height: 3.6rem;
}
.w37 {
width: 3.7rem;
}
.h37 {
height: 3.7rem;
}
.w38 {
width: 3.8rem;
}
.h38 {
height: 3.8rem;
}
.w39 {
width: 3.9rem;
}
.h39 {
height: 3.9rem;
}
.w40 {
width: 4rem;
}
.h40 {
height: 4rem;
}
.w41 {
width: 4.1rem;
}
.h41 {
height: 4.1rem;
}
.w42 {
width: 4.2rem;
}
.h42 {
height: 4.2rem;
}
.w43 {
width: 4.3rem;
}
.h43 {
height: 4.3rem;
}
.w44 {
width: 4.4rem;
}
.h44 {
height: 4.4rem;
}
.w45 {
width: 4.5rem;
}
.h45 {
height: 4.5rem;
}
.w46 {
width: 4.6rem;
}
.h46 {
height: 4.6rem;
}
.w47 {
width: 4.7rem;
}
.h47 {
height: 4.7rem;
}
.w48 {
width: 4.8rem;
}
.h48 {
height: 4.8rem;
}
.w49 {
width: 4.9rem;
}
.h49 {
height: 4.9rem;
}
.w50 {
width: 5rem;
}
.h50 {
height: 5rem;
}
.w51 {
width: 5.1rem;
}
.h51 {
height: 5.1rem;
}
.w52 {
width: 5.2rem;
}
.h52 {
height: 5.2rem;
}
.w53 {
width: 5.3rem;
}
.h53 {
height: 5.3rem;
}
.w54 {
width: 5.4rem;
}
.h54 {
height: 5.4rem;
}
.w55 {
width: 5.5rem;
}
.h55 {
height: 5.5rem;
}
.w56 {
width: 5.6rem;
}
.h56 {
height: 5.6rem;
}
.w57 {
width: 5.7rem;
}
.h57 {
height: 5.7rem;
}
.w58 {
width: 5.8rem;
}
.h58 {
height: 5.8rem;
}
.w59 {
width: 5.9rem;
}
.h59 {
height: 5.9rem;
}
.w60 {
width: 6rem;
}
.h60 {
height: 6rem;
}
.w61 {
width: 6.1rem;
}
.h61 {
height: 6.1rem;
}
.w62 {
width: 6.2rem;
}
.h62 {
height: 6.2rem;
}
.w63 {
width: 6.3rem;
}
.h63 {
height: 6.3rem;
}
.w64 {
width: 6.4rem;
}
.h64 {
height: 6.4rem;
}
.w65 {
width: 6.5rem;
}
.h65 {
height: 6.5rem;
}
.w66 {
width: 6.6rem;
}
.h66 {
height: 6.6rem;
}
.w67 {
width: 6.7rem;
}
.h67 {
height: 6.7rem;
}
.w68 {
width: 6.8rem;
}
.h68 {
height: 6.8rem;
}
.w69 {
width: 6.9rem;
}
.h69 {
height: 6.9rem;
}
.w70 {
width: 7rem;
}
.h70 {
height: 7rem;
}
.w71 {
width: 7.1rem;
}
.h71 {
height: 7.1rem;
}
.w72 {
width: 7.2rem;
}
.h72 {
height: 7.2rem;
}
.w73 {
width: 7.3rem;
}
.h73 {
height: 7.3rem;
}
.w74 {
width: 7.4rem;
}
.h74 {
height: 7.4rem;
}
.w75 {
width: 7.5rem;
}
.h75 {
height: 7.5rem;
}
.col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9 {
float: left;
display: inline-block;
}
.col-1 {
width: calc(8.33333333%);
}
.col-2 {
width: calc(16.66666667%);
}
.col-3 {
width: calc(25%);
}
.col-4 {
width: calc(33.33333333%);
}
.col-5 {
width: calc(41.66666667%);
}
.col-6 {
width: calc(50%);
}
.col-7 {
width: calc(58.33333333%);
}
.col-8 {
width: calc(66.66666667%);
}
.col-9 {
width: calc(75%);
}
.col-10 {
width: calc(83.33333333%);
}
.col-11 {
width: calc(91.66666667%);
}
.col-12 {
width: calc(100%);
}
.m1 {
margin: 0.1rem;
}
.p1 {
padding: 0.1rem;
}
.m2 {
margin: 0.2rem;
}
.p2 {
padding: 0.2rem;
}
.m3 {
margin: 0.3rem;
}
.p3 {
padding: 0.3rem;
}
.m4 {
margin: 0.4rem;
}
.p4 {
padding: 0.4rem;
}
.m5 {
margin: 0.5rem;
}
.p5 {
padding: 0.5rem;
}
.m6 {
margin: 0.6rem;
}
.p6 {
padding: 0.6rem;
}
.m7 {
margin: 0.7rem;
}
.p7 {
padding: 0.7rem;
}
.m8 {
margin: 0.8rem;
}
.p8 {
padding: 0.8rem;
}
.m9 {
margin: 0.9rem;
}
.p9 {
padding: 0.9rem;
}
.m10 {
margin: 1rem;
}
.p10 {
padding: 1rem;
}
.m11 {
margin: 1.1rem;
}
.p11 {
padding: 1.1rem;
}
.m12 {
margin: 1.2rem;
}
.p12 {
padding: 1.2rem;
}
.ml1 {
margin-left: 0.1rem;
}
.mr1 {
margin-right: 0.1rem;
}
.mt1 {
margin-top: 0.1rem;
}
.mb1 {
margin-bottom: 0.1rem;
}
.pl1 {
padding-left: 0.1rem;
}
.pr1 {
padding-right: 0.1rem;
}
.pt1 {
padding-top: 0.1rem;
}
.pb1 {
padding-bottom: 0.1rem;
}
.ml2 {
margin-left: 0.2rem;
}
.mr2 {
margin-right: 0.2rem;
}
.mt2 {
margin-top: 0.2rem;
}
.mb2 {
margin-bottom: 0.2rem;
}
.pl2 {
padding-left: 0.2rem;
}
.pr2 {
padding-right: 0.2rem;
}
.pt2 {
padding-top: 0.2rem;
}
.pb2 {
padding-bottom: 0.2rem;
}
.ml3 {
margin-left: 0.3rem;
}
.mr3 {
margin-right: 0.3rem;
}
.mt3 {
margin-top: 0.3rem;
}
.mb3 {
margin-bottom: 0.3rem;
}
.pl3 {
padding-left: 0.3rem;
}
.pr3 {
padding-right: 0.3rem;
}
.pt3 {
padding-top: 0.3rem;
}
.pb3 {
padding-bottom: 0.3rem;
}
.ml4 {
margin-left: 0.4rem;
}
.mr4 {
margin-right: 0.4rem;
}
.mt4 {
margin-top: 0.4rem;
}
.mb4 {
margin-bottom: 0.4rem;
}
.pl4 {
padding-left: 0.4rem;
}
.pr4 {
padding-right: 0.4rem;
}
.pt4 {
padding-top: 0.4rem;
}
.pb4 {
padding-bottom: 0.4rem;
}
.ml5 {
margin-left: 0.5rem;
}
.mr5 {
margin-right: 0.5rem;
}
.mt5 {
margin-top: 0.5rem;
}
.mb5 {
margin-bottom: 0.5rem;
}
.pl5 {
padding-left: 0.5rem;
}
.pr5 {
padding-right: 0.5rem;
}
.pt5 {
padding-top: 0.5rem;
}
.pb5 {
padding-bottom: 0.5rem;
}
.ml6 {
margin-left: 0.6rem;
}
.mr6 {
margin-right: 0.6rem;
}
.mt6 {
margin-top: 0.6rem;
}
.mb6 {
margin-bottom: 0.6rem;
}
.pl6 {
padding-left: 0.6rem;
}
.pr6 {
padding-right: 0.6rem;
}
.pt6 {
padding-top: 0.6rem;
}
.pb6 {
padding-bottom: 0.6rem;
}
.ml7 {
margin-left: 0.7rem;
}
.mr7 {
margin-right: 0.7rem;
}
.mt7 {
margin-top: 0.7rem;
}
.mb7 {
margin-bottom: 0.7rem;
}
.pl7 {
padding-left: 0.7rem;
}
.pr7 {
padding-right: 0.7rem;
}
.pt7 {
padding-top: 0.7rem;
}
.pb7 {
padding-bottom: 0.7rem;
}
.ml8 {
margin-left: 0.8rem;
}
.mr8 {
margin-right: 0.8rem;
}
.mt8 {
margin-top: 0.8rem;
}
.mb8 {
margin-bottom: 0.8rem;
}
.pl8 {
padding-left: 0.8rem;
}
.pr8 {
padding-right: 0.8rem;
}
.pt8 {
padding-top: 0.8rem;
}
.pb8 {
padding-bottom: 0.8rem;
}
.ml9 {
margin-left: 0.9rem;
}
.mr9 {
margin-right: 0.9rem;
}
.mt9 {
margin-top: 0.9rem;
}
.mb9 {
margin-bottom: 0.9rem;
}
.pl9 {
padding-left: 0.9rem;
}
.pr9 {
padding-right: 0.9rem;
}
.pt9 {
padding-top: 0.9rem;
}
.pb9 {
padding-bottom: 0.9rem;
}
.ml10 {
margin-left: 1rem;
}
.mr10 {
margin-right: 1rem;
}
.mt10 {
margin-top: 1rem;
}
.mb10 {
margin-bottom: 1rem;
}
.pl10 {
padding-left: 1rem;
}
.pr10 {
padding-right: 1rem;
}
.pt10 {
padding-top: 1rem;
}
.pb10 {
padding-bottom: 1rem;
}
.ml11 {
margin-left: 1.1rem;
}
.mr11 {
margin-right: 1.1rem;
}
.mt11 {
margin-top: 1.1rem;
}
.mb11 {
margin-bottom: 1.1rem;
}
.pl11 {
padding-left: 1.1rem;
}
.pr11 {
padding-right: 1.1rem;
}
.pt11 {
padding-top: 1.1rem;
}
.pb11 {
padding-bottom: 1.1rem;
}
.ml12 {
margin-left: 1.2rem;
}
.mr12 {
margin-right: 1.2rem;
}
.mt12 {
margin-top: 1.2rem;
}
.mb12 {
margin-bottom: 1.2rem;
}
.pl12 {
padding-left: 1.2rem;
}
.pr12 {
padding-right: 1.2rem;
}
.pt12 {
padding-top: 1.2rem;
}
.pb12 {
padding-bottom: 1.2rem;
}
.btn {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
background-color: #e4393c;
cursor: pointer;
color: #fff;
border: 1px solid #e4393c;
}
.btn:active, .btn:hover {
background-color: #ce1c1f;
border-color: #ce1c1f;
}
.btn.disable, .btn[disabled=disabled] {
background-color: #999 !important;
border-color: #999 !important;
cursor: default;
}
.btn-primary {
background-color: #1ab394;
border-color: #1ab394;
}
.btn-primary:active, .btn-primary:hover {
background-color: #14866f;
border-color: #14866f;
}
.btn-success {
background-color: #1c84c6;
border-color: #1c84c6;
}
.btn-success:active, .btn-success:hover {
background-color: #166699;
border-color: #166699;
}
.btn-info {
background-color: #23c6c8;
border-color: #23c6c8;
}
.btn-info:active, .btn-info:hover {
background-color: #1b9b9d;
border-color: #1b9b9d;
}
.btn-warning {
background-color: #f8ac59;
border-color: #f8ac59;
}
.btn-warning:active, .btn-warning:hover {
background-color: #f69428;
border-color: #f69428;
}
.btn-danger {
background-color: #ed5565;
border-color: #ed5565;
}
.btn-danger:active, .btn-danger:hover {
background-color: #e8273b;
border-color: #e8273b;
}
.btn-select {
position: relative;
border: none;
}
.btn-select .btn-select-list {
position: absolute;
left: 0;
top: 100%;
width: 100%;
line-height: 2.4em;
border-top: 1px solid #fff;
display: none;
}
.btn-select .btn-select-list li, .btn-select .btn-select-list li a {
color: #fff;
display: block;
width: 100%;
height: 100%;
cursor: pointer;
}
.btn-select .btn-select-list li a:hover, .btn-select .btn-select-list li:hover {
background: rgba(0, 0, 0, 0.1);
}
.tag {
background-color: #e4393c;
padding: 0.01rem 0.1rem;
border-radius: 0.05rem;
color: #fff;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.tag-primary {
background-color: #1ab394;
}
.tag-success {
background-color: #1c84c6;
}
.tag-info {
background-color: #23c6c8;
}
.tag-warning {
background-color: #f8ac59;
}
.tag-danger {
background-color: #ed5565;
}
.form-control {
border: 1px solid #d7d7d7;
resize: none;
padding: 0.1rem 0.2rem;
vertical-align: middle;
font: inherit;
font-size: inherit;
}
.form-control:focus {
border-color: #999;
}
.ui-checkbox, .ui-radio {
cursor: pointer;
width: 0.35rem;
height: 0.35rem;
display: inline-block;
vertical-align: middle;
border: 0.01rem solid #999;
margin-right: 0.05rem;
margin-top: -.05rem;
border-radius: 20%;
text-align: center;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}
.ui-checkbox.checked, .ui-radio.checked {
background-color: #e4393c;
border-color: #e4393c;
}
.ui-checkbox.checked:after, .ui-radio.checked:after {
content: '';
display: inline-block;
width: 20%;
height: 40%;
margin-top: -5%;
border-bottom: 2px solid #fff;
border-right: 2px solid #fff;
transform: rotate(30deg);
}
.ui-radio {
border-radius: 50%;
}
.ui-checkbox.disabled, .ui-radio.disabled {
opacity: 0.3;
cursor: default;
}
.check-primary.checked {
background-color: #1ab394;
border-color: #1ab394;
}
.check-success.checked {
background-color: #1c84c6;
border-color: #1c84c6;
}
.check-info.checked {
background-color: #23c6c8;
border-color: #23c6c8;
}
.check-warning.checked {
background-color: #f8ac59;
border-color: #f8ac59;
}
.check-danger.checked {
background-color: #ed5565;
border-color: #ed5565;
}
.ui-selectBox {
display: inline-block;
border: 1px solid #d7d7d7;
height: 0.62rem;
line-height: 0.6rem;
padding: 0;
position: relative;
overflow: hidden;
}
.ui-selectBox input {
float: left;
display: block;
position: absolute;
padding-left: 0.5em;
top: 0;
width: 100%;
height: 100%;
line-height: 0.6rem;
border: none;
}
.ui-selectBox i.icon {
float: right;
display: inline-block;
width: 1em;
position: absolute;
right: 0.5em;
top: 0;
}
.ui-selectBox .box {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
cursor: pointer;
}
blockquote {
padding: 0.1rem 0.2rem;
border-left: 0.05rem solid #e4393c;
color: #666;
}
.blockquote-primary {
border-color: #1ab394;
}
.blockquote-success {
border-color: #1c84c6;
}
.blockquote-info {
border-color: #23c6c8;
}
.blockquote-warning {
border-color: #f8ac59;
}
.blockquote-danger {
border-color: #ed5565;
}
blockquote.normal {
border-color: #999;
}
.radius0 {
border-radius: 0;
}
.radius5 {
border-radius: 0.05rem;
}
.radius10 {
border-radius: 0.1rem;
}
.radius15 {
border-radius: 0.15rem;
}
.radius20 {
border-radius: 0.2rem;
}
.radius-o {
border-radius: 50%;
}
table {
border-collapse: collapse;
border-spacing: 0;
border: 0 solid gray;
}
td, th {
border: 1px solid #ccc;
padding: 2px 15px;
}
th {
background: #f1f1f1;
}
.ui-title {
line-height: 1.8em;
border-bottom: 0.01rem solid #d7d7d7;
font-weight: 400;
}
.ui-header {
line-height: 0.8rem;
}
.ui-header-l, .ui-header-r {
cursor: pointer;
}
.ui-aside {
position: fixed;
top: -99999rem;
bottom: -99999rem;
z-index: 99;
}
.ui-aside-mask {
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 98;
background: rgba(0, 0, 0, 0.5);
opacity: 0;
}
.ui-btnlist .btn {
float: left;
}
.ui-btnlist .btn:first-child {
border-radius: 0.05rem 0 0 0.05rem;
}
.ui-btnlist .btn:last-child {
border-radius: 0 0.05rem 0.05rem 0;
}
.ui-progressBox {
overflow: hidden;
height: 20px;
background: #fff;
border: 1px solid #d7d7d7;
border-radius: 10px;
}
.ui-progressBox progress {
transform: translateX(120%);
}
.ui-progressBox .progress-content {
display: block;
height: 100%;
border: 2px solid #fff;
border-radius: 8px;
background-color: #e4393c;
min-width: 16px;
width: 0;
}
.ui-progressBox .progress-content.primary {
background-color: #1ab394;
}
.ui-progressBox .progress-content.success {
background-color: #1c84c6;
}
.ui-progressBox .progress-content.info {
background-color: #23c6c8;
}
.ui-progressBox .progress-content.warning {
background-color: #f8ac59;
}
.ui-progressBox .progress-content.danger {
background-color: #ed5565;
} | miniMobile/css/miniMobile.css | * {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: -apple-system,
BlinkMacSystemFont,
"PingFang SC",
"Helvetica Neue",
STHeiti,
"Microsoft Yahei",
Tahoma,
Simsun,
sans-serif;
}
a {
text-decoration: none;
color: #666;
cursor: pointer;
}
body {
overflow-x: hidden;
}
img {
vertical-align: middle;
border: none;
}
li {
list-style: none;
}
.fl {
float: left;
}
.fr {
float: right;
}
.fn {
float: none;
}
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.t-c {
text-align: center;
}
.t-l {
text-align: left;
}
.t-r {
text-align: right;
}
.nowrap {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.o-h {
overflow: hidden;
}
.o-s {
overflow: scroll;
}
.o-v {
overflow: visible;
}
.t-c-v {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}
.f0 {
font-size: 0;
}
.f28 {
font-size: 0.28rem;
}
.f30 {
font-size: 0.3rem;
}
.f32 {
font-size: 0.32rem;
}
.f34 {
font-size: 0.34rem;
}
.f36 {
font-size: 0.36rem;
}
.f38 {
font-size: 0.38rem;
}
.f40 {
font-size: 0.4rem;
}
.f42 {
font-size: 0.42rem;
}
.f44 {
font-size: 0.44rem;
}
.f46 {
font-size: 0.46rem;
}
.f48 {
font-size: 0.48rem;
}
.f50 {
font-size: 0.5rem;
}
.f52 {
font-size: 0.52rem;
}
.f54 {
font-size: 0.54rem;
}
.f56 {
font-size: 0.56rem;
}
.f58 {
font-size: 0.58rem;
}
.f60 {
font-size: 0.6rem;
}
.color1 {
color: #e4393c;
}
.color2 {
color: #222;
}
.color3 {
color: #666;
}
.color4 {
color: #999;
}
.color5 {
color: #d7d7d7;
}
.color6 {
color: #f3f5f7;
}
.color7 {
color: #f8f8f8;
}
.color8 {
color: #fff;
}
.color-primary {
color: #1ab394;
}
.color-success {
color: #1c84c6;
}
.color-info {
color: #23c6c8;
}
.color-warning {
color: #f8ac59;
}
.color-danger {
color: #ed5565;
}
.bg-color1 {
background-color: #e4393c;
}
.bg-color2 {
background-color: #222;
}
.bg-color3 {
background-color: #666;
}
.bg-color4 {
background-color: #999;
}
.bg-color5 {
background-color: #d7d7d7;
}
.bg-color6 {
background-color: #f3f5f7;
}
.bg-color7 {
background-color: #f8f8f8;
}
.bg-color8 {
background-color: #fff;
}
.bg-color-primary {
background-color: #1ab394;
}
.bg-color-success {
background-color: #1c84c6;
}
.bg-color-info {
background-color: #23c6c8;
}
.bg-color-warning {
background-color: #f8ac59;
}
.bg-color-danger {
background-color: #ed5565;
}
hr {
border: none;
border-bottom: 0.01rem solid #d7d7d7;
}
hr.lg {
border-bottom: 0.03rem solid #d7d7d7;
}
.w1 {
width: 0.1rem;
}
.h1 {
height: 0.1rem;
}
.w2 {
width: 0.2rem;
}
.h2 {
height: 0.2rem;
}
.w3 {
width: 0.3rem;
}
.h3 {
height: 0.3rem;
}
.w4 {
width: 0.4rem;
}
.h4 {
height: 0.4rem;
}
.w5 {
width: 0.5rem;
}
.h5 {
height: 0.5rem;
}
.w6 {
width: 0.6rem;
}
.h6 {
height: 0.6rem;
}
.w7 {
width: 0.7rem;
}
.h7 {
height: 0.7rem;
}
.w8 {
width: 0.8rem;
}
.h8 {
height: 0.8rem;
}
.w9 {
width: 0.9rem;
}
.h9 {
height: 0.9rem;
}
.w10 {
width: 1rem;
}
.h10 {
height: 1rem;
}
.w11 {
width: 1.1rem;
}
.h11 {
height: 1.1rem;
}
.w12 {
width: 1.2rem;
}
.h12 {
height: 1.2rem;
}
.w13 {
width: 1.3rem;
}
.h13 {
height: 1.3rem;
}
.w14 {
width: 1.4rem;
}
.h14 {
height: 1.4rem;
}
.w15 {
width: 1.5rem;
}
.h15 {
height: 1.5rem;
}
.w16 {
width: 1.6rem;
}
.h16 {
height: 1.6rem;
}
.w17 {
width: 1.7rem;
}
.h17 {
height: 1.7rem;
}
.w18 {
width: 1.8rem;
}
.h18 {
height: 1.8rem;
}
.w19 {
width: 1.9rem;
}
.h19 {
height: 1.9rem;
}
.w20 {
width: 2rem;
}
.h20 {
height: 2rem;
}
.w21 {
width: 2.1rem;
}
.h21 {
height: 2.1rem;
}
.w22 {
width: 2.2rem;
}
.h22 {
height: 2.2rem;
}
.w23 {
width: 2.3rem;
}
.h23 {
height: 2.3rem;
}
.w24 {
width: 2.4rem;
}
.h24 {
height: 2.4rem;
}
.w25 {
width: 2.5rem;
}
.h25 {
height: 2.5rem;
}
.w26 {
width: 2.6rem;
}
.h26 {
height: 2.6rem;
}
.w27 {
width: 2.7rem;
}
.h27 {
height: 2.7rem;
}
.w28 {
width: 2.8rem;
}
.h28 {
height: 2.8rem;
}
.w29 {
width: 2.9rem;
}
.h29 {
height: 2.9rem;
}
.w30 {
width: 3rem;
}
.h30 {
height: 3rem;
}
.w31 {
width: 3.1rem;
}
.h31 {
height: 3.1rem;
}
.w32 {
width: 3.2rem;
}
.h32 {
height: 3.2rem;
}
.w33 {
width: 3.3rem;
}
.h33 {
height: 3.3rem;
}
.w34 {
width: 3.4rem;
}
.h34 {
height: 3.4rem;
}
.w35 {
width: 3.5rem;
}
.h35 {
height: 3.5rem;
}
.w36 {
width: 3.6rem;
}
.h36 {
height: 3.6rem;
}
.w37 {
width: 3.7rem;
}
.h37 {
height: 3.7rem;
}
.w38 {
width: 3.8rem;
}
.h38 {
height: 3.8rem;
}
.w39 {
width: 3.9rem;
}
.h39 {
height: 3.9rem;
}
.w40 {
width: 4rem;
}
.h40 {
height: 4rem;
}
.w41 {
width: 4.1rem;
}
.h41 {
height: 4.1rem;
}
.w42 {
width: 4.2rem;
}
.h42 {
height: 4.2rem;
}
.w43 {
width: 4.3rem;
}
.h43 {
height: 4.3rem;
}
.w44 {
width: 4.4rem;
}
.h44 {
height: 4.4rem;
}
.w45 {
width: 4.5rem;
}
.h45 {
height: 4.5rem;
}
.w46 {
width: 4.6rem;
}
.h46 {
height: 4.6rem;
}
.w47 {
width: 4.7rem;
}
.h47 {
height: 4.7rem;
}
.w48 {
width: 4.8rem;
}
.h48 {
height: 4.8rem;
}
.w49 {
width: 4.9rem;
}
.h49 {
height: 4.9rem;
}
.w50 {
width: 5rem;
}
.h50 {
height: 5rem;
}
.w51 {
width: 5.1rem;
}
.h51 {
height: 5.1rem;
}
.w52 {
width: 5.2rem;
}
.h52 {
height: 5.2rem;
}
.w53 {
width: 5.3rem;
}
.h53 {
height: 5.3rem;
}
.w54 {
width: 5.4rem;
}
.h54 {
height: 5.4rem;
}
.w55 {
width: 5.5rem;
}
.h55 {
height: 5.5rem;
}
.w56 {
width: 5.6rem;
}
.h56 {
height: 5.6rem;
}
.w57 {
width: 5.7rem;
}
.h57 {
height: 5.7rem;
}
.w58 {
width: 5.8rem;
}
.h58 {
height: 5.8rem;
}
.w59 {
width: 5.9rem;
}
.h59 {
height: 5.9rem;
}
.w60 {
width: 6rem;
}
.h60 {
height: 6rem;
}
.w61 {
width: 6.1rem;
}
.h61 {
height: 6.1rem;
}
.w62 {
width: 6.2rem;
}
.h62 {
height: 6.2rem;
}
.w63 {
width: 6.3rem;
}
.h63 {
height: 6.3rem;
}
.w64 {
width: 6.4rem;
}
.h64 {
height: 6.4rem;
}
.w65 {
width: 6.5rem;
}
.h65 {
height: 6.5rem;
}
.w66 {
width: 6.6rem;
}
.h66 {
height: 6.6rem;
}
.w67 {
width: 6.7rem;
}
.h67 {
height: 6.7rem;
}
.w68 {
width: 6.8rem;
}
.h68 {
height: 6.8rem;
}
.w69 {
width: 6.9rem;
}
.h69 {
height: 6.9rem;
}
.w70 {
width: 7rem;
}
.h70 {
height: 7rem;
}
.w71 {
width: 7.1rem;
}
.h71 {
height: 7.1rem;
}
.w72 {
width: 7.2rem;
}
.h72 {
height: 7.2rem;
}
.w73 {
width: 7.3rem;
}
.h73 {
height: 7.3rem;
}
.w74 {
width: 7.4rem;
}
.h74 {
height: 7.4rem;
}
.w75 {
width: 7.5rem;
}
.h75 {
height: 7.5rem;
}
.col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9 {
float: left;
display: inline-block;
}
.col-1 {
width: calc(8.33333333%);
}
.col-2 {
width: calc(16.66666667%);
}
.col-3 {
width: calc(25%);
}
.col-4 {
width: calc(33.33333333%);
}
.col-5 {
width: calc(41.66666667%);
}
.col-6 {
width: calc(50%);
}
.col-7 {
width: calc(58.33333333%);
}
.col-8 {
width: calc(66.66666667%);
}
.col-9 {
width: calc(75%);
}
.col-10 {
width: calc(83.33333333%);
}
.col-11 {
width: calc(91.66666667%);
}
.col-12 {
width: calc(100%);
}
.m1 {
margin: 0.1rem;
}
.p1 {
padding: 0.1rem;
}
.m2 {
margin: 0.2rem;
}
.p2 {
padding: 0.2rem;
}
.m3 {
margin: 0.3rem;
}
.p3 {
padding: 0.3rem;
}
.m4 {
margin: 0.4rem;
}
.p4 {
padding: 0.4rem;
}
.m5 {
margin: 0.5rem;
}
.p5 {
padding: 0.5rem;
}
.m6 {
margin: 0.6rem;
}
.p6 {
padding: 0.6rem;
}
.m7 {
margin: 0.7rem;
}
.p7 {
padding: 0.7rem;
}
.m8 {
margin: 0.8rem;
}
.p8 {
padding: 0.8rem;
}
.m9 {
margin: 0.9rem;
}
.p9 {
padding: 0.9rem;
}
.m10 {
margin: 1rem;
}
.p10 {
padding: 1rem;
}
.m11 {
margin: 1.1rem;
}
.p11 {
padding: 1.1rem;
}
.m12 {
margin: 1.2rem;
}
.p12 {
padding: 1.2rem;
}
.ml1 {
margin-left: 0.1rem;
}
.mr1 {
margin-right: 0.1rem;
}
.mt1 {
margin-top: 0.1rem;
}
.mb1 {
margin-bottom: 0.1rem;
}
.pl1 {
padding-left: 0.1rem;
}
.pr1 {
padding-right: 0.1rem;
}
.pt1 {
padding-top: 0.1rem;
}
.pb1 {
padding-bottom: 0.1rem;
}
.ml2 {
margin-left: 0.2rem;
}
.mr2 {
margin-right: 0.2rem;
}
.mt2 {
margin-top: 0.2rem;
}
.mb2 {
margin-bottom: 0.2rem;
}
.pl2 {
padding-left: 0.2rem;
}
.pr2 {
padding-right: 0.2rem;
}
.pt2 {
padding-top: 0.2rem;
}
.pb2 {
padding-bottom: 0.2rem;
}
.ml3 {
margin-left: 0.3rem;
}
.mr3 {
margin-right: 0.3rem;
}
.mt3 {
margin-top: 0.3rem;
}
.mb3 {
margin-bottom: 0.3rem;
}
.pl3 {
padding-left: 0.3rem;
}
.pr3 {
padding-right: 0.3rem;
}
.pt3 {
padding-top: 0.3rem;
}
.pb3 {
padding-bottom: 0.3rem;
}
.ml4 {
margin-left: 0.4rem;
}
.mr4 {
margin-right: 0.4rem;
}
.mt4 {
margin-top: 0.4rem;
}
.mb4 {
margin-bottom: 0.4rem;
}
.pl4 {
padding-left: 0.4rem;
}
.pr4 {
padding-right: 0.4rem;
}
.pt4 {
padding-top: 0.4rem;
}
.pb4 {
padding-bottom: 0.4rem;
}
.ml5 {
margin-left: 0.5rem;
}
.mr5 {
margin-right: 0.5rem;
}
.mt5 {
margin-top: 0.5rem;
}
.mb5 {
margin-bottom: 0.5rem;
}
.pl5 {
padding-left: 0.5rem;
}
.pr5 {
padding-right: 0.5rem;
}
.pt5 {
padding-top: 0.5rem;
}
.pb5 {
padding-bottom: 0.5rem;
}
.ml6 {
margin-left: 0.6rem;
}
.mr6 {
margin-right: 0.6rem;
}
.mt6 {
margin-top: 0.6rem;
}
.mb6 {
margin-bottom: 0.6rem;
}
.pl6 {
padding-left: 0.6rem;
}
.pr6 {
padding-right: 0.6rem;
}
.pt6 {
padding-top: 0.6rem;
}
.pb6 {
padding-bottom: 0.6rem;
}
.ml7 {
margin-left: 0.7rem;
}
.mr7 {
margin-right: 0.7rem;
}
.mt7 {
margin-top: 0.7rem;
}
.mb7 {
margin-bottom: 0.7rem;
}
.pl7 {
padding-left: 0.7rem;
}
.pr7 {
padding-right: 0.7rem;
}
.pt7 {
padding-top: 0.7rem;
}
.pb7 {
padding-bottom: 0.7rem;
}
.ml8 {
margin-left: 0.8rem;
}
.mr8 {
margin-right: 0.8rem;
}
.mt8 {
margin-top: 0.8rem;
}
.mb8 {
margin-bottom: 0.8rem;
}
.pl8 {
padding-left: 0.8rem;
}
.pr8 {
padding-right: 0.8rem;
}
.pt8 {
padding-top: 0.8rem;
}
.pb8 {
padding-bottom: 0.8rem;
}
.ml9 {
margin-left: 0.9rem;
}
.mr9 {
margin-right: 0.9rem;
}
.mt9 {
margin-top: 0.9rem;
}
.mb9 {
margin-bottom: 0.9rem;
}
.pl9 {
padding-left: 0.9rem;
}
.pr9 {
padding-right: 0.9rem;
}
.pt9 {
padding-top: 0.9rem;
}
.pb9 {
padding-bottom: 0.9rem;
}
.ml10 {
margin-left: 1rem;
}
.mr10 {
margin-right: 1rem;
}
.mt10 {
margin-top: 1rem;
}
.mb10 {
margin-bottom: 1rem;
}
.pl10 {
padding-left: 1rem;
}
.pr10 {
padding-right: 1rem;
}
.pt10 {
padding-top: 1rem;
}
.pb10 {
padding-bottom: 1rem;
}
.ml11 {
margin-left: 1.1rem;
}
.mr11 {
margin-right: 1.1rem;
}
.mt11 {
margin-top: 1.1rem;
}
.mb11 {
margin-bottom: 1.1rem;
}
.pl11 {
padding-left: 1.1rem;
}
.pr11 {
padding-right: 1.1rem;
}
.pt11 {
padding-top: 1.1rem;
}
.pb11 {
padding-bottom: 1.1rem;
}
.ml12 {
margin-left: 1.2rem;
}
.mr12 {
margin-right: 1.2rem;
}
.mt12 {
margin-top: 1.2rem;
}
.mb12 {
margin-bottom: 1.2rem;
}
.pl12 {
padding-left: 1.2rem;
}
.pr12 {
padding-right: 1.2rem;
}
.pt12 {
padding-top: 1.2rem;
}
.pb12 {
padding-bottom: 1.2rem;
}
.btn {
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
background-color: #e4393c;
cursor: pointer;
color: #fff;
border: 1px solid #e4393c;
}
.btn:active, .btn:hover {
background-color: #ce1c1f;
border-color: #ce1c1f;
}
.btn.disable, .btn[disabled=disabled] {
background-color: #999 !important;
border-color: #999 !important;
cursor: default;
}
.btn-primary {
background-color: #1ab394;
border-color: #1ab394;
}
.btn-primary:active, .btn-primary:hover {
background-color: #14866f;
border-color: #14866f;
}
.btn-success {
background-color: #1c84c6;
border-color: #1c84c6;
}
.btn-success:active, .btn-success:hover {
background-color: #166699;
border-color: #166699;
}
.btn-info {
background-color: #23c6c8;
border-color: #23c6c8;
}
.btn-info:active, .btn-info:hover {
background-color: #1b9b9d;
border-color: #1b9b9d;
}
.btn-warning {
background-color: #f8ac59;
border-color: #f8ac59;
}
.btn-warning:active, .btn-warning:hover {
background-color: #f69428;
border-color: #f69428;
}
.btn-danger {
background-color: #ed5565;
border-color: #ed5565;
}
.btn-danger:active, .btn-danger:hover {
background-color: #e8273b;
border-color: #e8273b;
}
.btn-select {
position: relative;
border: none;
}
.btn-select .btn-select-list {
position: absolute;
left: 0;
top: 100%;
width: 100%;
line-height: 2.4em;
border-top: 1px solid #fff;
display: none;
}
.btn-select .btn-select-list li, .btn-select .btn-select-list li a {
color: #fff;
display: block;
width: 100%;
height: 100%;
cursor: pointer;
}
.btn-select .btn-select-list li a:hover, .btn-select .btn-select-list li:hover {
background: rgba(0, 0, 0, 0.1);
}
.tag {
background-color: #e4393c;
padding: 0.01rem 0.1rem;
border-radius: 0.05rem;
color: #fff;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.tag-primary {
background-color: #1ab394;
}
.tag-success {
background-color: #1c84c6;
}
.tag-info {
background-color: #23c6c8;
}
.tag-warning {
background-color: #f8ac59;
}
.tag-danger {
background-color: #ed5565;
}
.form-control {
border: 1px solid #d7d7d7;
resize: none;
padding: 0.1rem 0.2rem;
vertical-align: middle;
font: inherit;
font-size: inherit;
}
.form-control:focus {
border-color: #999;
}
.ui-checkbox, .ui-radio {
cursor: pointer;
width: 0.35rem;
height: 0.35rem;
display: inline-block;
vertical-align: middle;
border: 0.01rem solid #999;
margin-right: 0.05rem;
margin-top: -.05rem;
border-radius: 20%;
text-align: center;
display: -webkit-inline-box;
display: -ms-inline-flexbox;
display: -webkit-inline-flex;
display: inline-flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
-webkit-justify-content: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items: center;
}
.ui-checkbox.checked, .ui-radio.checked {
background-color: #e4393c;
border-color: #e4393c;
}
.ui-checkbox.checked:after, .ui-radio.checked:after {
content: '';
display: inline-block;
width: 20%;
height: 40%;
margin-top: -5%;
border-bottom: 2px solid #fff;
border-right: 2px solid #fff;
transform: rotate(30deg);
}
.ui-radio {
border-radius: 50%;
}
.ui-checkbox.disabled, .ui-radio.disabled {
opacity: 0.3;
cursor: default;
}
.check-primary.checked {
background-color: #1ab394;
border-color: #1ab394;
}
.check-success.checked {
background-color: #1c84c6;
border-color: #1c84c6;
}
.check-info.checked {
background-color: #23c6c8;
border-color: #23c6c8;
}
.check-warning.checked {
background-color: #f8ac59;
border-color: #f8ac59;
}
.check-danger.checked {
background-color: #ed5565;
border-color: #ed5565;
}
.ui-selectBox {
display: inline-block;
border: 1px solid #d7d7d7;
height: 0.62rem;
line-height: 0.6rem;
padding: 0;
position: relative;
overflow: hidden;
}
.ui-selectBox input {
float: left;
display: block;
position: absolute;
padding-left: 0.5em;
top: 0;
width: 100%;
height: 100%;
line-height: 0.6rem;
border: none;
}
.ui-selectBox i.icon {
float: right;
display: inline-block;
width: 1em;
position: absolute;
right: 0.5em;
top: 0;
}
.ui-selectBox .box {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
cursor: pointer;
}
blockquote {
padding: 0.1rem 0.2rem;
border-left: 0.05rem solid #e4393c;
color: #666;
}
.blockquote-primary {
border-color: #1ab394;
}
.blockquote-success {
border-color: #1c84c6;
}
.blockquote-info {
border-color: #23c6c8;
}
.blockquote-warning {
border-color: #f8ac59;
}
.blockquote-danger {
border-color: #ed5565;
}
blockquote.normal {
border-color: #999;
}
.radius0 {
border-radius: 0;
}
.radius5 {
border-radius: 0.05rem;
}
.radius10 {
border-radius: 0.1rem;
}
.radius15 {
border-radius: 0.15rem;
}
.radius20 {
border-radius: 0.2rem;
}
.radius-o {
border-radius: 50%;
}
table {
border-collapse: collapse;
border-spacing: 0;
border: 0 solid gray;
}
td, th {
border: 1px solid #ccc;
padding: 2px 15px;
}
th {
background: #f1f1f1;
}
.ui-title {
line-height: 1.8em;
border-bottom: 0.01rem solid #d7d7d7;
font-weight: 400;
}
.ui-header {
line-height: 0.8rem;
}
.ui-header-l, .ui-header-r {
cursor: pointer;
}
.ui-aside {
position: fixed;
top: -99999rem;
bottom: -99999rem;
z-index: 99;
}
.ui-aside-mask {
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 98;
background: rgba(0, 0, 0, 0.5);
opacity: 0;
}
.ui-btnlist .btn {
float: left;
}
.ui-btnlist .btn:first-child {
border-radius: 0.05rem 0 0 0.05rem;
}
.ui-btnlist .btn:last-child {
border-radius: 0 0.05rem 0.05rem 0;
}
.ui-progressBox {
overflow: hidden;
height: 20px;
background: #fff;
border: 1px solid #d7d7d7;
border-radius: 10px;
}
.ui-progressBox progress {
transform: translateX(120%);
}
.ui-progressBox .progress-content {
display: block;
height: 100%;
border: 2px solid #fff;
border-radius: 8px;
background-color: #e4393c;
min-width: 16px;
width: 0;
}
.ui-progressBox .progress-content.primary {
background-color: #1ab394;
}
.ui-progressBox .progress-content.success {
background-color: #1c84c6;
}
.ui-progressBox .progress-content.info {
background-color: #23c6c8;
}
.ui-progressBox .progress-content.warning {
background-color: #f8ac59;
}
.ui-progressBox .progress-content.danger {
background-color: #ed5565;
} | 0.472927 | 0.101189 |
html, body {
padding: 0;
margin: 0;
font-family: 'Segoe UI', OpenSans, Tahoma, Geneva, Verdana, sans-serif;
color:rgb(1, 30, 65);
background-color: rgb(241, 239, 239);
}
button {
border: 0;
border-radius: 6px;
padding: 10px 20px;
color: rgb(1, 30, 65);
border-color: rgb(1, 30, 65);
border-radius: 6px;
border-style: solid;
border-width: 1px;
}
button.primary {
background-color: rgb(1, 30, 65);
color: rgb(255, 255, 255);
font-weight: bold;
}
button:hover {
border-color: rgb(1, 30, 65);
background-color: rgb(255, 255, 255);
color: rgb(1, 30, 65);
}
a, a:visited {
color: #6788B1;
}
.hidden {
display: none;
}
label {
margin-bottom: 10px;
display: block;
}
header {
background-color: rgb(1, 30, 65);
color: #FFF;
padding: 5px;
}
header a, header a:visited {
color: #FFF;
}
p {
font-size: larger;
}
#public-content {
margin-top: 50px;
margin-left: 20px;
}
#gated-content {
background-color: rgba(255, 255, 255, 0.5);
border-radius: 7px;
box-shadow: 0 3px 6px rgba(0,0,0,0.12);
padding: 30px;
}
.error {
color: #E63519;
}
/* Additions for RDAMT-257 */
.title {
font-size: 23pt;
font-weight: bold;
}
input[type=file] {
display: none;
background: rgb(255, 255, 255);
margin: 20px;
}
.custom-file-upload {
background-color: transparent;
border-color: rgb(var(--button-border-color));
border-radius: 6px;
border-style: solid;
border-width: 1px;
color: rgb(var(--text-color));
cursor: pointer;
display: inline-block;
font-family: Segoe UI, OpenSans, sans-serif;
font-size: 14px;
letter-spacing: .5px;
padding: 10px 20px;
text-decoration: none;
white-space: nowrap;
}
.custom-file-upload:hover {
text-decoration: none;
border-color: rgb(var(--button-border-color-hover));
background-color: rgb(255, 255, 255);
color: rgb(1, 30, 65);
}
.component {
background-color: rgb(241, 239, 239);
border: 1px solid #ddd;
padding: 20px;
}
#resultImage {
margin-top: 20px;
max-width: 1024px;
background-color: rgb(255, 255, 255);
}
#inputText {
background-color: rgba(255,255,255,0.50);
border-radius: 6px;
border-width: 0;
box-shadow: 0 3px 6px rgba(0,0,0,0.16);
margin-bottom: 20px;
padding: 30px;
}
* {
box-sizing: border-box;
}
.row::after {
content: "";
clear: both;
display: table;
}
.version {
font-size: 70%;
}
[class*="col-"] {
float: left;
padding: 15px;
}
@media only screen and (max-width: 768px) {
/* For mobile phones: */
[class*="col-"] {
width: 100%;
}
}
@media only screen and (min-width: 600px) {
/* For tablets: */
.col-s-1 {width: 40%;}
.col-s-2 {width: 60%;}
}
/*@media only screen and (min-width: 768px) {
/* For desktop: *
.col-1 {width: 41.66%;}
.col-2 {width: 58.33%;}
}*/
/*@media only screen and (min-width: 900px) {
/* For desktop: *
.col-1 {width: 40%;}
.col-2 {width: 60%;}
}*/
@media only screen and (min-width: 1024px) {
/* For desktop: */
.col-1 {width: 50%;}
.col-2 {width: 50%;}
}
@media only screen and (min-width: 1200px) {
/* For desktop: */
.col-1 {width: 40%;}
.col-2 {width: 60%;}
} | Web/css/main.css | html, body {
padding: 0;
margin: 0;
font-family: 'Segoe UI', OpenSans, Tahoma, Geneva, Verdana, sans-serif;
color:rgb(1, 30, 65);
background-color: rgb(241, 239, 239);
}
button {
border: 0;
border-radius: 6px;
padding: 10px 20px;
color: rgb(1, 30, 65);
border-color: rgb(1, 30, 65);
border-radius: 6px;
border-style: solid;
border-width: 1px;
}
button.primary {
background-color: rgb(1, 30, 65);
color: rgb(255, 255, 255);
font-weight: bold;
}
button:hover {
border-color: rgb(1, 30, 65);
background-color: rgb(255, 255, 255);
color: rgb(1, 30, 65);
}
a, a:visited {
color: #6788B1;
}
.hidden {
display: none;
}
label {
margin-bottom: 10px;
display: block;
}
header {
background-color: rgb(1, 30, 65);
color: #FFF;
padding: 5px;
}
header a, header a:visited {
color: #FFF;
}
p {
font-size: larger;
}
#public-content {
margin-top: 50px;
margin-left: 20px;
}
#gated-content {
background-color: rgba(255, 255, 255, 0.5);
border-radius: 7px;
box-shadow: 0 3px 6px rgba(0,0,0,0.12);
padding: 30px;
}
.error {
color: #E63519;
}
/* Additions for RDAMT-257 */
.title {
font-size: 23pt;
font-weight: bold;
}
input[type=file] {
display: none;
background: rgb(255, 255, 255);
margin: 20px;
}
.custom-file-upload {
background-color: transparent;
border-color: rgb(var(--button-border-color));
border-radius: 6px;
border-style: solid;
border-width: 1px;
color: rgb(var(--text-color));
cursor: pointer;
display: inline-block;
font-family: Segoe UI, OpenSans, sans-serif;
font-size: 14px;
letter-spacing: .5px;
padding: 10px 20px;
text-decoration: none;
white-space: nowrap;
}
.custom-file-upload:hover {
text-decoration: none;
border-color: rgb(var(--button-border-color-hover));
background-color: rgb(255, 255, 255);
color: rgb(1, 30, 65);
}
.component {
background-color: rgb(241, 239, 239);
border: 1px solid #ddd;
padding: 20px;
}
#resultImage {
margin-top: 20px;
max-width: 1024px;
background-color: rgb(255, 255, 255);
}
#inputText {
background-color: rgba(255,255,255,0.50);
border-radius: 6px;
border-width: 0;
box-shadow: 0 3px 6px rgba(0,0,0,0.16);
margin-bottom: 20px;
padding: 30px;
}
* {
box-sizing: border-box;
}
.row::after {
content: "";
clear: both;
display: table;
}
.version {
font-size: 70%;
}
[class*="col-"] {
float: left;
padding: 15px;
}
@media only screen and (max-width: 768px) {
/* For mobile phones: */
[class*="col-"] {
width: 100%;
}
}
@media only screen and (min-width: 600px) {
/* For tablets: */
.col-s-1 {width: 40%;}
.col-s-2 {width: 60%;}
}
/*@media only screen and (min-width: 768px) {
/* For desktop: *
.col-1 {width: 41.66%;}
.col-2 {width: 58.33%;}
}*/
/*@media only screen and (min-width: 900px) {
/* For desktop: *
.col-1 {width: 40%;}
.col-2 {width: 60%;}
}*/
@media only screen and (min-width: 1024px) {
/* For desktop: */
.col-1 {width: 50%;}
.col-2 {width: 50%;}
}
@media only screen and (min-width: 1200px) {
/* For desktop: */
.col-1 {width: 40%;}
.col-2 {width: 60%;}
} | 0.500732 | 0.101545 |
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
html {
scrollbar-face-color: #646464;
scrollbar-base-color: #646464;
scrollbar-3dlight-color: #646464;
scrollbar-highlight-color: #646464;
scrollbar-track-color: #000;
scrollbar-arrow-color: #000;
scrollbar-shadow-color: #646464;
scrollbar-dark-shadow-color: #646464;
}
::-webkit-scrollbar { width: 8px; height: 3px;}
::-webkit-scrollbar-button { background-color: #666; }
::-webkit-scrollbar-track { background-color: #646464;}
::-webkit-scrollbar-track-piece { background-color: #000;}
::-webkit-scrollbar-thumb { height: 50px; background-color: #666; border-radius: 3px;}
::-webkit-scrollbar-corner { background-color: #646464;}
::-webkit-resizer { background-color: #666;}
.menu {
z-index: 9999999;
font-family: 'Poppins', sans-serif;
min-width: 320px;
color: #fff;
position: absolute;
text-transform: uppercase !important;
opacity: 0.9;
}
.menu.align-left {
left: 40;
top: 50%;
transform: translate(0, -50%);
}
.menu.align-top-left {
left: 40;
top: 40;
}
.menu.align-top {
left: 50%;
top: 40;
transform: translate(-50%, 0);
}
.menu.align-top-right {
right: 10;
top: 40;
}
.menu.align-right {
right: 40;
top: 50%;
transform: translate(0, -50%);
}
.menu.align-bottom-right {
right: 90;
bottom: 40;
}
.menu.align-bottom {
left: 50%;
bottom: 40;
transform: translate(-50%, 0);
}
.menu.align-bottom-left {
left: 40;
bottom: 40;
}
.menu.align-center {
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
input[type="text"]{
font-family: 'Poppins', sans-serif;
background-color: transparent;
border: none;
width: 27px;
font-size: 14px;
font-weight: 900;
text-align: center;
border-bottom: 1px solid #fff;
color: #fff;
}
input[type="text"]:focus{
outline: none;
}
.menu .head {
background-color: rgba(20, 20, 20, 0.85);
border-top-left-radius: 6px;
border-top-right-radius: 6px;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
color: #fff !important;
margin-bottom: 6px;
text-align: center;
height: 35px;
line-height: 35px;
z-index: 9999999;
font-size: 18px;
font-weight: 500;
}
.menu .menu-items {
font-weight: 500;
max-height: 500px;
overflow-y: hidden;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
background-color: rgba(20, 20, 20, 0.85);
}
.menu .menu-items .menu-item {
padding: 3px 0 3px 0;
margin: 6px 6px 6px 6px;
display: block;
height: 22px;
line-height: 22px;
color: #fff;
text-align: center;
font-size: 14px;
}
.menu .menu-items .menu-item.selected {
border-radius: 5px;
text-shadow: 0 0 10px #000000;
background: linear-gradient(to right, rgb(71, 118, 230), rgb(142, 84, 233));
} | esx_menu_default/html/css/app.css | @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');
html {
scrollbar-face-color: #646464;
scrollbar-base-color: #646464;
scrollbar-3dlight-color: #646464;
scrollbar-highlight-color: #646464;
scrollbar-track-color: #000;
scrollbar-arrow-color: #000;
scrollbar-shadow-color: #646464;
scrollbar-dark-shadow-color: #646464;
}
::-webkit-scrollbar { width: 8px; height: 3px;}
::-webkit-scrollbar-button { background-color: #666; }
::-webkit-scrollbar-track { background-color: #646464;}
::-webkit-scrollbar-track-piece { background-color: #000;}
::-webkit-scrollbar-thumb { height: 50px; background-color: #666; border-radius: 3px;}
::-webkit-scrollbar-corner { background-color: #646464;}
::-webkit-resizer { background-color: #666;}
.menu {
z-index: 9999999;
font-family: 'Poppins', sans-serif;
min-width: 320px;
color: #fff;
position: absolute;
text-transform: uppercase !important;
opacity: 0.9;
}
.menu.align-left {
left: 40;
top: 50%;
transform: translate(0, -50%);
}
.menu.align-top-left {
left: 40;
top: 40;
}
.menu.align-top {
left: 50%;
top: 40;
transform: translate(-50%, 0);
}
.menu.align-top-right {
right: 10;
top: 40;
}
.menu.align-right {
right: 40;
top: 50%;
transform: translate(0, -50%);
}
.menu.align-bottom-right {
right: 90;
bottom: 40;
}
.menu.align-bottom {
left: 50%;
bottom: 40;
transform: translate(-50%, 0);
}
.menu.align-bottom-left {
left: 40;
bottom: 40;
}
.menu.align-center {
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
}
input[type="text"]{
font-family: 'Poppins', sans-serif;
background-color: transparent;
border: none;
width: 27px;
font-size: 14px;
font-weight: 900;
text-align: center;
border-bottom: 1px solid #fff;
color: #fff;
}
input[type="text"]:focus{
outline: none;
}
.menu .head {
background-color: rgba(20, 20, 20, 0.85);
border-top-left-radius: 6px;
border-top-right-radius: 6px;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
color: #fff !important;
margin-bottom: 6px;
text-align: center;
height: 35px;
line-height: 35px;
z-index: 9999999;
font-size: 18px;
font-weight: 500;
}
.menu .menu-items {
font-weight: 500;
max-height: 500px;
overflow-y: hidden;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
background-color: rgba(20, 20, 20, 0.85);
}
.menu .menu-items .menu-item {
padding: 3px 0 3px 0;
margin: 6px 6px 6px 6px;
display: block;
height: 22px;
line-height: 22px;
color: #fff;
text-align: center;
font-size: 14px;
}
.menu .menu-items .menu-item.selected {
border-radius: 5px;
text-shadow: 0 0 10px #000000;
background: linear-gradient(to right, rgb(71, 118, 230), rgb(142, 84, 233));
} | 0.376279 | 0.061537 |
@font-face {
font-family: GalanoGrotesqueHeavy;
src: url('../font/GalanoGrotesqueHeavy.otf');
font-weight: bold;
}
@font-face {
font-family: GalanoGrotesqueBold;
src: url('../font/GalanoGrotesqueBold.otf');
font-weight: medium;
}
@font-face {
font-family: GalanoGrotesqueLight;
src: url('../font/GalanoGrotesqueLight.otf');
font-weight: lighter;
}
@font-face {
font-family: GalanoGrotesqueRegular;
src: url('../font/GalanoGrotesqueRegular.otf');
font-weight: regular;
}
.primaryboldfont{ font-family: "GalanoGrotesqueBold";}
.primaryheavyfont{ font-family: "GalanoGrotesqueHeavy" !important;}
.primarylightfont{ font-family: "GalanoGrotesqueLight";}
.home-price-sec .pricing-plan--bordered {
background: #e2e2e2;
padding: 1px;
}
p{
font-family: 'GalanoGrotesqueRegular';
}
section.section.home-price-sec .col-12 p {
font-family: Inter,sans-serif;
color: #414a53;
text-align: center;
max-width: 60%;
margin: 40px auto 0;
text-transform: capitalize;
}
section.section.bg--lgray.route-management span.heading__pre-title {
color: #a9aeb3;
}
section.section.bg--lgray.route-management h3.heading__title, section.section.bg--lgray.route-management h6.icon-item__title,
section.section.bg--lgray.route-management p.icon-item__text {
color: #414a53;
}
section.section.bg--lgray.route-management img.section--bg.t50.r0 {
filter: invert(1);
}
section.section.bg--lgray.route-management .layout--dgray {
-webkit-text-stroke-color: #dedede;
}
section.section.bg--lgray.route-management .icon-item__count span{
color: #003d90;
}
.video-left-part{
position: relative;
}
.video-left-part img{
width: 100%;
}
.video-left-text{
position: absolute;
bottom: 0;
left: 0;
width: 85%;
height: 75%;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
text-align: center;
}
.video-left-text h3{
font-size: 30px;
line-height: 40px;
margin-bottom: 10px;
color: #fff;
text-transform: uppercase;
}
.video-left-text h4{
font-size: 18px;
color: #fff;
margin: 0;
font-weight: normal;
}
.play-btn{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.play-btn a{
width: 140px;
height: 140px;
background-color: #fea142;
box-shadow: 0 20px 20px 0 rgb(0 0 0 / 10%);
color: #fff;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
}
.play-btn a svg{
width: 45px;
color: #fff;
}
.testimonials{
background:#31373f;
padding-bottom: 150px !important;
}
.testimonials-slider-new{
margin-top: 80px;
}
.testimonials-img{
max-width: 250px !important;
position: relative;
overflow: hidden;
border-radius: 100%;
margin: 0 auto;
width: 100%;
background: #fff;
}
.testimonials-img:before{
padding-top: 100%;
display: block;
content: '';
}
.testimonials-img img{
position: absolute;
top: 0;
left: 0;
width: 100%p;
height: 100%;
object-fit: cover;
}
.testimonials-slider__item{
text-align: center;
padding: 0 15px;
}
.testimonials-slider__author h6{
margin-bottom: 5px;
}
.testimonials-slider__author{
margin-bottom: 15px;
}
.testimonials-slider-new .slick-arrow{
position: absolute;
top: 50%;
background: #fff;
border-radius: 100%;
width: 40px;
height: 40px;
margin-top: -20px;
border: 0;
font-size: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 99;
}
.testimonials-slider-new .slick-arrow:focus{
outline: none;
border: 0;
}
.testimonials-slider-new .slick-arrow:hover{
opacity: 0.8;
}
.testimonials-slider-new .slick-arrow.slick-prev{
left: -40px;
}
.testimonials-slider-new .slick-arrow.slick-next{
right: -40px;
}
.testimonials-slider-new .slick-arrow.slick-prev:before{
background: url('../img/chevron-left-solid.svg') no-repeat 0 0;
content: '';
width: 11px;
height: 15px;
display: block;
}
.testimonials-slider-new .slick-arrow.slick-next:before{
background: url('../img/chevron-right-solid.svg') no-repeat 0 0;
content: '';
width: 11px;
height: 15px;
display: block;
}
.environment-section{
background: #f3f6f5;
text-align: center;
}
.section-environment-p{
margin: 40px auto 0;
max-width: 590px;
}
.environment-wrapper{
margin-top: 60px;
padding-top: 65px;
position: relative;
}
.environment-wrapper:before {
content: "";
height: 2px;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0;
width: 80px;
background-color: #e2e8f5;
}
.environment-numbers-list{
display: flex;
align-items: flex-end;
justify-content: space-between;
}
.environment-numbers-list .environment-numbers{
border-radius: 7px;
display: inline-block;
height: 110px;
margin-right: 10px;
position: relative;
width: 88px;
font-size: 3.625rem;
font-weight: 700;
line-height: 110px;
text-align: center;
color: #003d90;
border: 2px solid #FF9224;
}
.environment-numbers-list .environment-numbers-small{
margin-right: 40px;
}
.environment-numbers:after {
height: 50%!important;
}
.environment-unit-saved{
margin-top: 30px;
}
.environment-unit-saved .environment-unit {
font-size: 1.125rem;
}
.environment-logos {
margin-top: 60px;
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: center;
}
.environment-logos img{
margin-left: 30px;
}
.environment-logos img:first-child{
margin-left: 0;
}
.heading__title{
color: #FF9224;
}
.social a{
font-size: 2rem;
padding: 10px;
color: #999;
}
.language select{
background: transparent;
color: #bbb8b8;
padding: 2px 15px;
margin-left: 5px;
}
.secondarybg {
background: #FF9224;
}
.footer {
border-radius: 4rem 4rem 0rem 0rem;
border-top: 10px solid #FF9224;
}
.footer h1{
font-size: 2rem;
font-family: Inter,sans-serif;
}
.footer h1 span{
font-weight: 300;
}
.video-left-part .section-how-p {
color: #fff;
font-size: 1.5rem;
font-weight: 700;
margin: 30px 0 0;
white-space: nowrap;
}
.shiply-Works-box ol{
padding: 0;
max-width: 420px;
margin: 0 0;
list-style: none;
counter-reset: item;
}
.shiply-Works-box ol li{
counter-increment: item;
display: flex;
align-items: center;
font-size: 1.125rem;
line-height: 32px;
margin-top: 40px;
}
.shiply-Works-box ol li p{
margin: 0;
}
.shiply-Works-box ol li:before{
margin-right: 10px;
content: counter(item);
border-radius: 100%;
height: 50px;
margin-right: 50px;
width: 50px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
background-color: #e4e8f8;
color: #4f66c3;
font-size: 1.25rem;
line-height: 50px;
text-align: center;
flex-shrink: 0;
}
.topmenu .infoblock .biginfo a{
color: #fff;
}
.topmenu .infoblock .biginfo{
font-size: 20px;
}
.topmenu .infoblock a{
color: #fff;
}
.topmenu .infoblock a:hover{
color: #fff;
text-decoration: underline;
}
.topmenu .infoblock{
max-width: 430px;
padding: 15px 20px;
margin:12px 0;
border-radius: 2px;
}
section.section.my_sectionimg {
background: #fff;
overflow: hidden;
}
section.section.my_sectionimg ul.my_ul {
color: #000;
}
section.section.my_sectionimg:after {
content: '';
display: block;
position: absolute;
top: 50%;
right: 0;
z-index: -1;
width: 500px;
height: 100%;
border-top: 800px solid transparent;
border-right: 800px solid #ff9224;
border-bottom: 800px solid transparent;
transform: translate(0, -50%);
filter: drop-shadow(-20px 0px 0px #ffaf5d);
}
section.section.my_sectionimg .form-wrapper{
background: transparent;
}
section.section.my_icon_sec .icon-box {
width: 20%;
display: inline-block;
text-align: center;
background: #fff;
padding: 10px;
}
section.section.my_icon_sec .icon-box p.icon-item__text {
font-size: 15px;
margin-top: 0;
}
section.section.my_icon_sec .icon-box .icon-item__img {
justify-content: center;
background: #ff9224;
width: max-content;
display: block;
height: auto;
margin: auto;
padding: 23px;
border-radius: 50%;
transition: all .4s;
position: relative;
}
section.section.my_icon_sec .icon-box .icon-item__img img {
display: block;
width: 52px;
}
section.section.my_icon_sec .icon-box h6.icon-item__title {
margin-top: 15px;
}
section.section.my_icon_sec .icon-box .icon-item {
margin-bottom: 0;
padding: 35px 15px;
border-radius: 8px;
box-shadow: 0 6px 15px #5d85aa4a;
cursor: pointer;
}
section.section.my_icon_sec .icon-box .icon-item__img:after {
content: '';
display: block;
width: 111%;
height: 110%;
border: 2px solid #ff9224;
border-radius: 50%;
position: absolute;
top: -5px;
left: -5px;
transition: all .4s;
}
section.section.my_icon_sec .icon-box .icon-item:hover .icon-item__img {
background: #94bce1;
}
section.section.my_icon_sec .icon-box .icon-item:hover .icon-item__img:after{
border-color: #94bce1;
}
section.section.my_achieve_sec.bg--lgray .icon-item__count span {
color: #94bce1;
font-size: 60px;
}
section.section.my_achieve_sec.bg--lgray h6.icon-item__title {
color: #000;
text-transform: capitalize;
}
section.section.my_achieve_sec.bg--lgray .col-md-6.col-xl-3 {
text-align: center;
}
section.section.my_achieve_sec.bg--lgray .icon-item.icon-item--white {
text-align: center;
margin-bottom: 0;
display: inline-block;
}
section.section.my_achieve_sec.bg--lgray .icon-item .icon-item__count:after {
display: block;
content: '';
width: 50px;
height: 3px;
background: #ff9224;
margin: auto;
margin-top: 20px;
}
section.section.my_left_img_sec .container, section.section.my_right_img_sec .container {
width: 100%;
max-width: 100%;
padding: 0;
position: relative;
}
section.section.my_left_img_sec .container .col-lg-6.col-xl-6.offset-xl-1 {
padding-right: 16%;
}
section.section.my_right_img_sec .container .col-lg-6.col-xl-6.offset-xl-1 {
padding-left: 16%;
}
section.section.my_left_img_sec .container .col-lg-6.col-xl-6.offset-xl-1 {
padding-right: 16%;
margin-left: 0;
padding-left: 3%;
}
section.section.my_right_img_sec .container .col-lg-6.col-xl-6.offset-xl-1 {
padding-left: 16%;
margin-left: 0;
padding-right: 3%;
}
section.section.my_left_img_sec .container:after {
display: block;
content: '';
background: #ff9224;
width: 54%;
height: 110%;
position: absolute;
left: 0;
top: -49px;
z-index: -1;
transform: translateY(0%);
clip-path: polygon(0% 0%, 72% 0%, 100% 50%, 72% 100%, 0% 100%);
}
section.section.my_right_img_sec .container:after {
display: block;
content: '';
background: #ff9224;
width: 54%;
height: 110%;
position: absolute;
right: 0;
top: -49px;
z-index: -1;
transform: translateY(0%);
clip-path: polygon(28% 0%, 100% 0%, 100% 100%, 28% 100%, 0% 50%);
}
section.section.my_left_img_sec img.left-img {
clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
height: 88%;
object-fit: cover;
}
section.section.my_right_img_sec img.left-img {
clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
height: 88%;
object-fit: cover;
}
section.section.bg--lgray.my_sec.my_solidary_sec img.delivery-img {
border-radius: 0 70px 70px;
}
.hero .heroimgholder {
width: 65%;
padding: 15px;
}
.hero .heroimgholder img {
max-width: 100%;
}
.hero .herotextholder {
width: 35%;
margin-bottom: 50px;
}
.uppercase {
text-transform: uppercase !important;
}
.primaryheavyfont {
font-family: "GalanoGrotesqueHeavy" !important;
}
.secondarycolor {
color: #FF9224;
}
.hero .herotextholder hr {
width: 35%;
height: 4px;
opacity: 1;
margin-left: 0;
}
.hero .herotextholder h2 {
font-size: 30px;
line-height: 1.2;
}
.hero .herotextholder h3{
font-size: 26px;
font-weight: 100;
line-height: 1.2;
}
hr:not([size]) {
height: 1px;
}
.extrabg {
background: #5D9AD4;
}
.primarylightfont {
font-family: "GalanoGrotesqueLight";
}
.hero .herotextholder .quotebtn {
padding: 10px 15px;
border-radius: 1rem;
font-family: "GalanoGrotesqueBold";
color: white;
border: none;
margin-top: 1rem;
}
.bg-primary {
background-color: #0d6efd !important;
}
.hero .features {
margin-bottom: -35px;
}
.hero .feature {
width: 15%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px 0px;
box-shadow: 1px 1px 6px rgb(0 0 0 / 25%);
border-radius: 2.9rem;
color: #5D5D5D;
background: white;
}
.hero .feature .fas {
font-size: 3.6rem;
margin-bottom: 10px;
}
.hero .feature .fhead {
line-height: 0.9rem;
font-size: 18px;
color: #5D5D5D;
}
.hero .feature p{
font-size: 15px;
color: #5D5D5D;
}
.statholder {
padding-top: 8rem;
}
.statholder .statbox {
background: white;
width: 22%;
border-radius: 1rem 1rem 0rem 0rem;
padding: 30px 30px 0px 30px;
}
.statholder .statbox h1, .timeline .circle h1 {
margin-bottom: 0px;
line-height: 2rem;
font-size: 2.8rem;
}
.statholder .statbox p {
font-size: 15px;
}
.timeline {
margin-bottom: 6rem;
}
.timeline .headings {
margin: 3rem 0rem;
}
.timeline .headings h1 {
line-height: 2.3rem;
font-size: 37px;
color: #212529;
font-weight: 100;
}
.timeline .circle {
background: #FF9224;
width: 10rem;
height: 10rem;
border-radius: 10rem;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: white;
}
.statholder .statbox h1, .timeline .circle h1 {
margin-bottom: 0px;
line-height: 2rem;
font-size: 42px;
font-size: 2.8rem;
}
.statholder .statbox h1{
font-size: 42px;
}
.timeline .circle p{
font-size: 15px;
}
.timeline .circles .linethrough {
width: 90%;
position: absolute;
align-self: center;
height: 15px;
opacity: 1;
background: #5D9AD4;
z-index: -2;
}
.timeline .circles {
width: 100%;
}
.timeline .circle:nth-child(2n) {
background: #EEA052 !important;
}
.infobox {
padding: 0px;
}
.infobox .information {
margin-top: 5rem;
margin-bottom: 5rem;
}
.infobox .information h1{
font-size: 37px;
line-height: 1.2;
font-weight: 100;
}
.infobox .information p{
font-size: 15px;
}
.blackbtn {
padding: 10px 15px;
border-radius: 1rem;
font-family: "GalanoGrotesqueBold";
color: white;
border: none;
margin-top: 1rem;
background: #5D5D5D;
}
.text-white {
color: #fff !important;
}
.delivery .freedelivery {
width: 30%;
}
.delivery h1{
font-size: 37px;
line-height: 1.2;
font-weight: 100;
}
.delivery p{
font-size: 15px;
}
.infobox .information {
margin-top: 5rem;
margin-bottom: 5rem;
}
.promo-tabs .heading h3 {
font-family: 'GalanoGrotesqueHeavy';
font-size: 30px;
text-transform: uppercase;
line-height: 1.2;
}
.promo-tabs .heading h3 .color--green {
color: #414a53;
font-family: 'GalanoGrotesqueLight';
display: block;
}
.promo-tabs li.r-tabs-state-active a {
color: #ff9224;
width: 100%;
text-align: left;
}
.topmenu .quote-form__submit{
background: #0d6efd;
color: white;
font-size: 14px;
margin-left: 20px;
width: auto;
display: flex;
align-items: center;
min-width: 150px;
margin-top: 0px;
}
.topmenu .quote-form__submit:hover {
color: #fff;
background: #94bce1;
}
.topmenu .button--green span{
min-width: auto;
}
@media(min-width: 576px){
.offset-sm-1 {
margin-left: 8.3333333333%;
}
.col-sm-6 {
flex: 0 0 auto;
width: 50%;
}
.col-sm-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-sm-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
}
@media(min-width: 1400px){
.offset-xxl-2 {
margin-left: 16.6666666667%;
}
.col-xxl-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
}
@media only screen and (min-width: 1366px){
.page-header_3.page-header--fixed {
padding: 0px 0 0px 0px;
}
}
@media (max-width: 1399px){
.mb-5, .my-5 {
margin-bottom: 1rem!important;
}
.blackbtn{
margin-top: 0rem;
}
.mb-4, .my-4 {
margin-bottom: 1rem!important;
}
}
@media (max-width: 1400px){
.infobox .information{
margin-top: 1rem;
}
}
@media (max-width: 1199px) {
.environment-numbers-list .environment-numbers{
width: 66px;
}
.environment-numbers-list .environment-unit {
width: 100%;
margin-top: 40px;
}
.environment-numbers-list{
flex-wrap: wrap;
}
.environment-logos img{
margin-top: 10px;
}
.promo-tabs{
position: relative;
bottom: auto;
}
section.section.my_sec.top-form-sec {
padding: 00px 0 40px !important;
}
.hero .feature .fas{
font-size: 3rem;
}
.hero .feature .fhead{
font-size: 16px;
}
.hero .feature p{
font-size: 14px;
}
.statholder .statbox h1 {
font-size: 35px;
}
.hero .heroimgholder, .hero .herotextholder{
width: 100%;
}
section.section.my_sec.top-form-sec .col-xl-6.top-50.top-xl-0 {
order: 2;
}
section.section.my_sec.top-form-sec .col-xl-6.text-center.text-xl-left {
order: 1;
}
}
@media (max-width: 1023px){
.hero .feature{
width: 18%;
}
.hero .feature .fas {
font-size: 2.5rem;
}
.hero .feature .fhead {
font-size: 15px;
text-align: center;
}
.hero .feature p {
font-size: 12px;
}
.statholder .statbox h1 {
font-size: 30px;
}
.statholder .statbox{
padding: 20px 20px 0px 20px;
}
.statholder .statbox p {
font-size: 13px;
line-height: 1.2;
}
.timeline .headings h1, .infobox .information h1, .delivery h1{
font-size: 30px;
}
.timeline .circle{
width: 7rem;
height: 7rem;
}
.statholder .statbox h1, .timeline .circle h1{
font-size: 2rem;
}
.timeline .circle p {
font-size: 12px;
}
.timeline .headings {
margin: 2rem 0rem;
}
.blackbtn{
font-size: 14px;
}
.infobox .information {
margin-bottom: 2rem;
}
}
@media (max-width: 991px) {
.video-left-part{
margin-bottom: 0px;
}
.environment-numbers-list .environment-numbers{
margin-right: 5px;
}
.environment-numbers-list .environment-numbers-small {
margin-right: 20px;
}
.topmenu .infoblock{
margin-top: 0;
}
.topmenu .quote-form__submit{
min-width: 130px;
font-size: 14px;
margin-left: 10px;
}
.topmenu .infoblock .biginfo {
font-size: 14px;
}
section.section.my_sectionimg .form-wrapper{
padding: 34px 0px 50px 0px;
}
}
@media (max-width: 767px) {
.testimonials-slider-new {
margin-top:30px;
}
.testimonials {
padding-bottom: 80px !important;
}
.testimonials-slider-new .slick-arrow.slick-prev{
left: -0px;
}
.testimonials-slider-new .slick-arrow.slick-next{
right: -0px;
}
.environment-logos{
margin-top: 50px;
}
.environment-numbers-list .environment-numbers{
width: 46px;
height: 60px;
line-height: 60px;
font-size: 1.625rem;
margin-bottom: 10px;
}
.environment-wrapper {
margin-top: 40px;
padding-top: 45px;
}
.environment-numbers-list .environment-unit {
margin-top: 20px;
}
.environment-logos img {
margin-left: 20px;
}
.footer h1 {
font-size: 1.5rem;
}
.play-btn a{
width: 90px;
height: 90px;
margin-top: -50px;
}
.play-btn a svg{
width: 30px;
}
.shiply-Works-box h2{
font-size: 30px;
}
.shiply-Works-box ol li{
margin-top: 20px;
}
.shiply-Works-box ol li:before{
margin-right: 20px;
}
.topmenu .infoblock .biginfo {
font-size: 15px;
}
.promo-tabs .heading h3{
font-size: 28px;
}
.r-tabs .r-tabs-nav {
display: none;
}
.r-tabs .r-tabs-accordion-title {
display: none;
}
.features, .circles {
flex-direction: row !important;
justify-content: center !important;
flex-wrap: wrap;
}
.features .feature {
width: 29% !important;
margin: 10px;
}
.statholder .statbox {
border-radius: 2rem 2rem 2rem 0rem !important;
width: 49%;
margin-bottom: 20px;
padding: 30px 30px 21px 30px !important;
}
.timeline .circle {
width: 10rem;
height: 10rem;
margin: 10px;
}
.timeline .circles .linethrough{
display: none;
}
.infobox .information, .infobox .imageblock{
width: 100%;
max-width: 100%;
margin: 0;
padding: 15px 30px !important;
}
.infobox .imageblock{
order: 1;
}
.infobox .information{
order: 2;
}
.timeline {
margin-bottom: 3rem;
}
.infobox .imageblock img.w-100.mt-5 {
margin-top: 0 !important;
}
.container-fluid.infobox {
padding: 40px 0;
}
.page-header_3 .topmenu {
display: block !important;
}
.topmenu .quote-form__submit {
margin-left: 0;
margin-top: 10px !important;
}
.video-left-text h3{
font-size: 22px;
line-height: 30px;
}
.video-left-text h4 {
font-size: 16px;
}
}
@media (max-width: 575px) {
.environment-numbers-list .environment-numbers {
width: 26px;
height: 40px;
line-height: 40px;
font-size: 1rem;
margin-bottom: 10px;
margin-right: 5px;
}
.environment-numbers-list{
justify-content: center;
}
.environment-numbers-list .environment-numbers-small {
margin-right: 15px;
}
.topmenu .infoblock .biginfo{
font-size: 14px;
}
.topmenu .infoblock{
margin-top: 15px;
}
.container.hero .row, .timeline .row {
margin: 0;
padding: 15px;
}
.delivery .info.col-sm-7 {
padding: 0;
}
.delivery h1{
margin-top: 0 !important;
}
.delivery {
padding: 40px 15px;
}
.statholder {
padding-top: 1rem;
}
.timeline {
margin-bottom: 2rem;
}
.features .feature {
width: 36% !important;
margin: 10px;
}
.delivery .freedelivery {
width: 100%;
}
section.section.my_sec.top-form-sec {
padding: 00px 0 0px !important;
}
}
@media (max-width: 450px){
.promo-tabs .heading h3, .hero .herotextholder h3 {
font-size: 25px;
}
.timeline .headings h1, .infobox .information h1, .delivery h1 {
font-size: 25px;
}
.hero .herotextholder h2{
font-size: 24px;
}
.features .feature {
width: 43% !important;
margin: 10px;
}
.statholder .row.justify-content-between {
justify-content: center !important;
}
.statholder .statbox{
width: 75%;
}
.timeline .row{
padding: 0;
}
.timeline .circle {
width: 7rem;
height: 7em;
margin: 6px;
}
.container.hero .herotextholder p {
font-size: 14px;
}
.hero .herotextholder {
margin-bottom: 20px;
}
} | resources/js/assetnew/css/style.css | @font-face {
font-family: GalanoGrotesqueHeavy;
src: url('../font/GalanoGrotesqueHeavy.otf');
font-weight: bold;
}
@font-face {
font-family: GalanoGrotesqueBold;
src: url('../font/GalanoGrotesqueBold.otf');
font-weight: medium;
}
@font-face {
font-family: GalanoGrotesqueLight;
src: url('../font/GalanoGrotesqueLight.otf');
font-weight: lighter;
}
@font-face {
font-family: GalanoGrotesqueRegular;
src: url('../font/GalanoGrotesqueRegular.otf');
font-weight: regular;
}
.primaryboldfont{ font-family: "GalanoGrotesqueBold";}
.primaryheavyfont{ font-family: "GalanoGrotesqueHeavy" !important;}
.primarylightfont{ font-family: "GalanoGrotesqueLight";}
.home-price-sec .pricing-plan--bordered {
background: #e2e2e2;
padding: 1px;
}
p{
font-family: 'GalanoGrotesqueRegular';
}
section.section.home-price-sec .col-12 p {
font-family: Inter,sans-serif;
color: #414a53;
text-align: center;
max-width: 60%;
margin: 40px auto 0;
text-transform: capitalize;
}
section.section.bg--lgray.route-management span.heading__pre-title {
color: #a9aeb3;
}
section.section.bg--lgray.route-management h3.heading__title, section.section.bg--lgray.route-management h6.icon-item__title,
section.section.bg--lgray.route-management p.icon-item__text {
color: #414a53;
}
section.section.bg--lgray.route-management img.section--bg.t50.r0 {
filter: invert(1);
}
section.section.bg--lgray.route-management .layout--dgray {
-webkit-text-stroke-color: #dedede;
}
section.section.bg--lgray.route-management .icon-item__count span{
color: #003d90;
}
.video-left-part{
position: relative;
}
.video-left-part img{
width: 100%;
}
.video-left-text{
position: absolute;
bottom: 0;
left: 0;
width: 85%;
height: 75%;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
text-align: center;
}
.video-left-text h3{
font-size: 30px;
line-height: 40px;
margin-bottom: 10px;
color: #fff;
text-transform: uppercase;
}
.video-left-text h4{
font-size: 18px;
color: #fff;
margin: 0;
font-weight: normal;
}
.play-btn{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.play-btn a{
width: 140px;
height: 140px;
background-color: #fea142;
box-shadow: 0 20px 20px 0 rgb(0 0 0 / 10%);
color: #fff;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto;
}
.play-btn a svg{
width: 45px;
color: #fff;
}
.testimonials{
background:#31373f;
padding-bottom: 150px !important;
}
.testimonials-slider-new{
margin-top: 80px;
}
.testimonials-img{
max-width: 250px !important;
position: relative;
overflow: hidden;
border-radius: 100%;
margin: 0 auto;
width: 100%;
background: #fff;
}
.testimonials-img:before{
padding-top: 100%;
display: block;
content: '';
}
.testimonials-img img{
position: absolute;
top: 0;
left: 0;
width: 100%p;
height: 100%;
object-fit: cover;
}
.testimonials-slider__item{
text-align: center;
padding: 0 15px;
}
.testimonials-slider__author h6{
margin-bottom: 5px;
}
.testimonials-slider__author{
margin-bottom: 15px;
}
.testimonials-slider-new .slick-arrow{
position: absolute;
top: 50%;
background: #fff;
border-radius: 100%;
width: 40px;
height: 40px;
margin-top: -20px;
border: 0;
font-size: 0;
display: flex;
align-items: center;
justify-content: center;
z-index: 99;
}
.testimonials-slider-new .slick-arrow:focus{
outline: none;
border: 0;
}
.testimonials-slider-new .slick-arrow:hover{
opacity: 0.8;
}
.testimonials-slider-new .slick-arrow.slick-prev{
left: -40px;
}
.testimonials-slider-new .slick-arrow.slick-next{
right: -40px;
}
.testimonials-slider-new .slick-arrow.slick-prev:before{
background: url('../img/chevron-left-solid.svg') no-repeat 0 0;
content: '';
width: 11px;
height: 15px;
display: block;
}
.testimonials-slider-new .slick-arrow.slick-next:before{
background: url('../img/chevron-right-solid.svg') no-repeat 0 0;
content: '';
width: 11px;
height: 15px;
display: block;
}
.environment-section{
background: #f3f6f5;
text-align: center;
}
.section-environment-p{
margin: 40px auto 0;
max-width: 590px;
}
.environment-wrapper{
margin-top: 60px;
padding-top: 65px;
position: relative;
}
.environment-wrapper:before {
content: "";
height: 2px;
left: 0;
margin: auto;
position: absolute;
right: 0;
top: 0;
width: 80px;
background-color: #e2e8f5;
}
.environment-numbers-list{
display: flex;
align-items: flex-end;
justify-content: space-between;
}
.environment-numbers-list .environment-numbers{
border-radius: 7px;
display: inline-block;
height: 110px;
margin-right: 10px;
position: relative;
width: 88px;
font-size: 3.625rem;
font-weight: 700;
line-height: 110px;
text-align: center;
color: #003d90;
border: 2px solid #FF9224;
}
.environment-numbers-list .environment-numbers-small{
margin-right: 40px;
}
.environment-numbers:after {
height: 50%!important;
}
.environment-unit-saved{
margin-top: 30px;
}
.environment-unit-saved .environment-unit {
font-size: 1.125rem;
}
.environment-logos {
margin-top: 60px;
display: flex;
align-items: center;
flex-wrap: wrap;
justify-content: center;
}
.environment-logos img{
margin-left: 30px;
}
.environment-logos img:first-child{
margin-left: 0;
}
.heading__title{
color: #FF9224;
}
.social a{
font-size: 2rem;
padding: 10px;
color: #999;
}
.language select{
background: transparent;
color: #bbb8b8;
padding: 2px 15px;
margin-left: 5px;
}
.secondarybg {
background: #FF9224;
}
.footer {
border-radius: 4rem 4rem 0rem 0rem;
border-top: 10px solid #FF9224;
}
.footer h1{
font-size: 2rem;
font-family: Inter,sans-serif;
}
.footer h1 span{
font-weight: 300;
}
.video-left-part .section-how-p {
color: #fff;
font-size: 1.5rem;
font-weight: 700;
margin: 30px 0 0;
white-space: nowrap;
}
.shiply-Works-box ol{
padding: 0;
max-width: 420px;
margin: 0 0;
list-style: none;
counter-reset: item;
}
.shiply-Works-box ol li{
counter-increment: item;
display: flex;
align-items: center;
font-size: 1.125rem;
line-height: 32px;
margin-top: 40px;
}
.shiply-Works-box ol li p{
margin: 0;
}
.shiply-Works-box ol li:before{
margin-right: 10px;
content: counter(item);
border-radius: 100%;
height: 50px;
margin-right: 50px;
width: 50px;
text-align: center;
display: flex;
align-items: center;
justify-content: center;
background-color: #e4e8f8;
color: #4f66c3;
font-size: 1.25rem;
line-height: 50px;
text-align: center;
flex-shrink: 0;
}
.topmenu .infoblock .biginfo a{
color: #fff;
}
.topmenu .infoblock .biginfo{
font-size: 20px;
}
.topmenu .infoblock a{
color: #fff;
}
.topmenu .infoblock a:hover{
color: #fff;
text-decoration: underline;
}
.topmenu .infoblock{
max-width: 430px;
padding: 15px 20px;
margin:12px 0;
border-radius: 2px;
}
section.section.my_sectionimg {
background: #fff;
overflow: hidden;
}
section.section.my_sectionimg ul.my_ul {
color: #000;
}
section.section.my_sectionimg:after {
content: '';
display: block;
position: absolute;
top: 50%;
right: 0;
z-index: -1;
width: 500px;
height: 100%;
border-top: 800px solid transparent;
border-right: 800px solid #ff9224;
border-bottom: 800px solid transparent;
transform: translate(0, -50%);
filter: drop-shadow(-20px 0px 0px #ffaf5d);
}
section.section.my_sectionimg .form-wrapper{
background: transparent;
}
section.section.my_icon_sec .icon-box {
width: 20%;
display: inline-block;
text-align: center;
background: #fff;
padding: 10px;
}
section.section.my_icon_sec .icon-box p.icon-item__text {
font-size: 15px;
margin-top: 0;
}
section.section.my_icon_sec .icon-box .icon-item__img {
justify-content: center;
background: #ff9224;
width: max-content;
display: block;
height: auto;
margin: auto;
padding: 23px;
border-radius: 50%;
transition: all .4s;
position: relative;
}
section.section.my_icon_sec .icon-box .icon-item__img img {
display: block;
width: 52px;
}
section.section.my_icon_sec .icon-box h6.icon-item__title {
margin-top: 15px;
}
section.section.my_icon_sec .icon-box .icon-item {
margin-bottom: 0;
padding: 35px 15px;
border-radius: 8px;
box-shadow: 0 6px 15px #5d85aa4a;
cursor: pointer;
}
section.section.my_icon_sec .icon-box .icon-item__img:after {
content: '';
display: block;
width: 111%;
height: 110%;
border: 2px solid #ff9224;
border-radius: 50%;
position: absolute;
top: -5px;
left: -5px;
transition: all .4s;
}
section.section.my_icon_sec .icon-box .icon-item:hover .icon-item__img {
background: #94bce1;
}
section.section.my_icon_sec .icon-box .icon-item:hover .icon-item__img:after{
border-color: #94bce1;
}
section.section.my_achieve_sec.bg--lgray .icon-item__count span {
color: #94bce1;
font-size: 60px;
}
section.section.my_achieve_sec.bg--lgray h6.icon-item__title {
color: #000;
text-transform: capitalize;
}
section.section.my_achieve_sec.bg--lgray .col-md-6.col-xl-3 {
text-align: center;
}
section.section.my_achieve_sec.bg--lgray .icon-item.icon-item--white {
text-align: center;
margin-bottom: 0;
display: inline-block;
}
section.section.my_achieve_sec.bg--lgray .icon-item .icon-item__count:after {
display: block;
content: '';
width: 50px;
height: 3px;
background: #ff9224;
margin: auto;
margin-top: 20px;
}
section.section.my_left_img_sec .container, section.section.my_right_img_sec .container {
width: 100%;
max-width: 100%;
padding: 0;
position: relative;
}
section.section.my_left_img_sec .container .col-lg-6.col-xl-6.offset-xl-1 {
padding-right: 16%;
}
section.section.my_right_img_sec .container .col-lg-6.col-xl-6.offset-xl-1 {
padding-left: 16%;
}
section.section.my_left_img_sec .container .col-lg-6.col-xl-6.offset-xl-1 {
padding-right: 16%;
margin-left: 0;
padding-left: 3%;
}
section.section.my_right_img_sec .container .col-lg-6.col-xl-6.offset-xl-1 {
padding-left: 16%;
margin-left: 0;
padding-right: 3%;
}
section.section.my_left_img_sec .container:after {
display: block;
content: '';
background: #ff9224;
width: 54%;
height: 110%;
position: absolute;
left: 0;
top: -49px;
z-index: -1;
transform: translateY(0%);
clip-path: polygon(0% 0%, 72% 0%, 100% 50%, 72% 100%, 0% 100%);
}
section.section.my_right_img_sec .container:after {
display: block;
content: '';
background: #ff9224;
width: 54%;
height: 110%;
position: absolute;
right: 0;
top: -49px;
z-index: -1;
transform: translateY(0%);
clip-path: polygon(28% 0%, 100% 0%, 100% 100%, 28% 100%, 0% 50%);
}
section.section.my_left_img_sec img.left-img {
clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
height: 88%;
object-fit: cover;
}
section.section.my_right_img_sec img.left-img {
clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
height: 88%;
object-fit: cover;
}
section.section.bg--lgray.my_sec.my_solidary_sec img.delivery-img {
border-radius: 0 70px 70px;
}
.hero .heroimgholder {
width: 65%;
padding: 15px;
}
.hero .heroimgholder img {
max-width: 100%;
}
.hero .herotextholder {
width: 35%;
margin-bottom: 50px;
}
.uppercase {
text-transform: uppercase !important;
}
.primaryheavyfont {
font-family: "GalanoGrotesqueHeavy" !important;
}
.secondarycolor {
color: #FF9224;
}
.hero .herotextholder hr {
width: 35%;
height: 4px;
opacity: 1;
margin-left: 0;
}
.hero .herotextholder h2 {
font-size: 30px;
line-height: 1.2;
}
.hero .herotextholder h3{
font-size: 26px;
font-weight: 100;
line-height: 1.2;
}
hr:not([size]) {
height: 1px;
}
.extrabg {
background: #5D9AD4;
}
.primarylightfont {
font-family: "GalanoGrotesqueLight";
}
.hero .herotextholder .quotebtn {
padding: 10px 15px;
border-radius: 1rem;
font-family: "GalanoGrotesqueBold";
color: white;
border: none;
margin-top: 1rem;
}
.bg-primary {
background-color: #0d6efd !important;
}
.hero .features {
margin-bottom: -35px;
}
.hero .feature {
width: 15%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 20px 0px;
box-shadow: 1px 1px 6px rgb(0 0 0 / 25%);
border-radius: 2.9rem;
color: #5D5D5D;
background: white;
}
.hero .feature .fas {
font-size: 3.6rem;
margin-bottom: 10px;
}
.hero .feature .fhead {
line-height: 0.9rem;
font-size: 18px;
color: #5D5D5D;
}
.hero .feature p{
font-size: 15px;
color: #5D5D5D;
}
.statholder {
padding-top: 8rem;
}
.statholder .statbox {
background: white;
width: 22%;
border-radius: 1rem 1rem 0rem 0rem;
padding: 30px 30px 0px 30px;
}
.statholder .statbox h1, .timeline .circle h1 {
margin-bottom: 0px;
line-height: 2rem;
font-size: 2.8rem;
}
.statholder .statbox p {
font-size: 15px;
}
.timeline {
margin-bottom: 6rem;
}
.timeline .headings {
margin: 3rem 0rem;
}
.timeline .headings h1 {
line-height: 2.3rem;
font-size: 37px;
color: #212529;
font-weight: 100;
}
.timeline .circle {
background: #FF9224;
width: 10rem;
height: 10rem;
border-radius: 10rem;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
color: white;
}
.statholder .statbox h1, .timeline .circle h1 {
margin-bottom: 0px;
line-height: 2rem;
font-size: 42px;
font-size: 2.8rem;
}
.statholder .statbox h1{
font-size: 42px;
}
.timeline .circle p{
font-size: 15px;
}
.timeline .circles .linethrough {
width: 90%;
position: absolute;
align-self: center;
height: 15px;
opacity: 1;
background: #5D9AD4;
z-index: -2;
}
.timeline .circles {
width: 100%;
}
.timeline .circle:nth-child(2n) {
background: #EEA052 !important;
}
.infobox {
padding: 0px;
}
.infobox .information {
margin-top: 5rem;
margin-bottom: 5rem;
}
.infobox .information h1{
font-size: 37px;
line-height: 1.2;
font-weight: 100;
}
.infobox .information p{
font-size: 15px;
}
.blackbtn {
padding: 10px 15px;
border-radius: 1rem;
font-family: "GalanoGrotesqueBold";
color: white;
border: none;
margin-top: 1rem;
background: #5D5D5D;
}
.text-white {
color: #fff !important;
}
.delivery .freedelivery {
width: 30%;
}
.delivery h1{
font-size: 37px;
line-height: 1.2;
font-weight: 100;
}
.delivery p{
font-size: 15px;
}
.infobox .information {
margin-top: 5rem;
margin-bottom: 5rem;
}
.promo-tabs .heading h3 {
font-family: 'GalanoGrotesqueHeavy';
font-size: 30px;
text-transform: uppercase;
line-height: 1.2;
}
.promo-tabs .heading h3 .color--green {
color: #414a53;
font-family: 'GalanoGrotesqueLight';
display: block;
}
.promo-tabs li.r-tabs-state-active a {
color: #ff9224;
width: 100%;
text-align: left;
}
.topmenu .quote-form__submit{
background: #0d6efd;
color: white;
font-size: 14px;
margin-left: 20px;
width: auto;
display: flex;
align-items: center;
min-width: 150px;
margin-top: 0px;
}
.topmenu .quote-form__submit:hover {
color: #fff;
background: #94bce1;
}
.topmenu .button--green span{
min-width: auto;
}
@media(min-width: 576px){
.offset-sm-1 {
margin-left: 8.3333333333%;
}
.col-sm-6 {
flex: 0 0 auto;
width: 50%;
}
.col-sm-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
.col-sm-7 {
flex: 0 0 auto;
width: 58.3333333333%;
}
}
@media(min-width: 1400px){
.offset-xxl-2 {
margin-left: 16.6666666667%;
}
.col-xxl-5 {
flex: 0 0 auto;
width: 41.6666666667%;
}
}
@media only screen and (min-width: 1366px){
.page-header_3.page-header--fixed {
padding: 0px 0 0px 0px;
}
}
@media (max-width: 1399px){
.mb-5, .my-5 {
margin-bottom: 1rem!important;
}
.blackbtn{
margin-top: 0rem;
}
.mb-4, .my-4 {
margin-bottom: 1rem!important;
}
}
@media (max-width: 1400px){
.infobox .information{
margin-top: 1rem;
}
}
@media (max-width: 1199px) {
.environment-numbers-list .environment-numbers{
width: 66px;
}
.environment-numbers-list .environment-unit {
width: 100%;
margin-top: 40px;
}
.environment-numbers-list{
flex-wrap: wrap;
}
.environment-logos img{
margin-top: 10px;
}
.promo-tabs{
position: relative;
bottom: auto;
}
section.section.my_sec.top-form-sec {
padding: 00px 0 40px !important;
}
.hero .feature .fas{
font-size: 3rem;
}
.hero .feature .fhead{
font-size: 16px;
}
.hero .feature p{
font-size: 14px;
}
.statholder .statbox h1 {
font-size: 35px;
}
.hero .heroimgholder, .hero .herotextholder{
width: 100%;
}
section.section.my_sec.top-form-sec .col-xl-6.top-50.top-xl-0 {
order: 2;
}
section.section.my_sec.top-form-sec .col-xl-6.text-center.text-xl-left {
order: 1;
}
}
@media (max-width: 1023px){
.hero .feature{
width: 18%;
}
.hero .feature .fas {
font-size: 2.5rem;
}
.hero .feature .fhead {
font-size: 15px;
text-align: center;
}
.hero .feature p {
font-size: 12px;
}
.statholder .statbox h1 {
font-size: 30px;
}
.statholder .statbox{
padding: 20px 20px 0px 20px;
}
.statholder .statbox p {
font-size: 13px;
line-height: 1.2;
}
.timeline .headings h1, .infobox .information h1, .delivery h1{
font-size: 30px;
}
.timeline .circle{
width: 7rem;
height: 7rem;
}
.statholder .statbox h1, .timeline .circle h1{
font-size: 2rem;
}
.timeline .circle p {
font-size: 12px;
}
.timeline .headings {
margin: 2rem 0rem;
}
.blackbtn{
font-size: 14px;
}
.infobox .information {
margin-bottom: 2rem;
}
}
@media (max-width: 991px) {
.video-left-part{
margin-bottom: 0px;
}
.environment-numbers-list .environment-numbers{
margin-right: 5px;
}
.environment-numbers-list .environment-numbers-small {
margin-right: 20px;
}
.topmenu .infoblock{
margin-top: 0;
}
.topmenu .quote-form__submit{
min-width: 130px;
font-size: 14px;
margin-left: 10px;
}
.topmenu .infoblock .biginfo {
font-size: 14px;
}
section.section.my_sectionimg .form-wrapper{
padding: 34px 0px 50px 0px;
}
}
@media (max-width: 767px) {
.testimonials-slider-new {
margin-top:30px;
}
.testimonials {
padding-bottom: 80px !important;
}
.testimonials-slider-new .slick-arrow.slick-prev{
left: -0px;
}
.testimonials-slider-new .slick-arrow.slick-next{
right: -0px;
}
.environment-logos{
margin-top: 50px;
}
.environment-numbers-list .environment-numbers{
width: 46px;
height: 60px;
line-height: 60px;
font-size: 1.625rem;
margin-bottom: 10px;
}
.environment-wrapper {
margin-top: 40px;
padding-top: 45px;
}
.environment-numbers-list .environment-unit {
margin-top: 20px;
}
.environment-logos img {
margin-left: 20px;
}
.footer h1 {
font-size: 1.5rem;
}
.play-btn a{
width: 90px;
height: 90px;
margin-top: -50px;
}
.play-btn a svg{
width: 30px;
}
.shiply-Works-box h2{
font-size: 30px;
}
.shiply-Works-box ol li{
margin-top: 20px;
}
.shiply-Works-box ol li:before{
margin-right: 20px;
}
.topmenu .infoblock .biginfo {
font-size: 15px;
}
.promo-tabs .heading h3{
font-size: 28px;
}
.r-tabs .r-tabs-nav {
display: none;
}
.r-tabs .r-tabs-accordion-title {
display: none;
}
.features, .circles {
flex-direction: row !important;
justify-content: center !important;
flex-wrap: wrap;
}
.features .feature {
width: 29% !important;
margin: 10px;
}
.statholder .statbox {
border-radius: 2rem 2rem 2rem 0rem !important;
width: 49%;
margin-bottom: 20px;
padding: 30px 30px 21px 30px !important;
}
.timeline .circle {
width: 10rem;
height: 10rem;
margin: 10px;
}
.timeline .circles .linethrough{
display: none;
}
.infobox .information, .infobox .imageblock{
width: 100%;
max-width: 100%;
margin: 0;
padding: 15px 30px !important;
}
.infobox .imageblock{
order: 1;
}
.infobox .information{
order: 2;
}
.timeline {
margin-bottom: 3rem;
}
.infobox .imageblock img.w-100.mt-5 {
margin-top: 0 !important;
}
.container-fluid.infobox {
padding: 40px 0;
}
.page-header_3 .topmenu {
display: block !important;
}
.topmenu .quote-form__submit {
margin-left: 0;
margin-top: 10px !important;
}
.video-left-text h3{
font-size: 22px;
line-height: 30px;
}
.video-left-text h4 {
font-size: 16px;
}
}
@media (max-width: 575px) {
.environment-numbers-list .environment-numbers {
width: 26px;
height: 40px;
line-height: 40px;
font-size: 1rem;
margin-bottom: 10px;
margin-right: 5px;
}
.environment-numbers-list{
justify-content: center;
}
.environment-numbers-list .environment-numbers-small {
margin-right: 15px;
}
.topmenu .infoblock .biginfo{
font-size: 14px;
}
.topmenu .infoblock{
margin-top: 15px;
}
.container.hero .row, .timeline .row {
margin: 0;
padding: 15px;
}
.delivery .info.col-sm-7 {
padding: 0;
}
.delivery h1{
margin-top: 0 !important;
}
.delivery {
padding: 40px 15px;
}
.statholder {
padding-top: 1rem;
}
.timeline {
margin-bottom: 2rem;
}
.features .feature {
width: 36% !important;
margin: 10px;
}
.delivery .freedelivery {
width: 100%;
}
section.section.my_sec.top-form-sec {
padding: 00px 0 0px !important;
}
}
@media (max-width: 450px){
.promo-tabs .heading h3, .hero .herotextholder h3 {
font-size: 25px;
}
.timeline .headings h1, .infobox .information h1, .delivery h1 {
font-size: 25px;
}
.hero .herotextholder h2{
font-size: 24px;
}
.features .feature {
width: 43% !important;
margin: 10px;
}
.statholder .row.justify-content-between {
justify-content: center !important;
}
.statholder .statbox{
width: 75%;
}
.timeline .row{
padding: 0;
}
.timeline .circle {
width: 7rem;
height: 7em;
margin: 6px;
}
.container.hero .herotextholder p {
font-size: 14px;
}
.hero .herotextholder {
margin-bottom: 20px;
}
} | 0.389895 | 0.096153 |
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
height: 100vh;
}
.main-wrapper{
padding-top: 20px;
padding-left: 10px;
padding-right: 30px;
height: auto;
color: #fff;
}
.full-center {
float: left;
width: 25%;
height: 650px;
box-sizing: border-box;
background-color: rgba(0,0,0,0.5);
margin: 0 auto;
margin-top: 10px;
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
color:white;
}
.widget-block {
/*width: 770px;*/
width: 100%;
/*height: 480px;*/
height: 100%;
/*height: 80%;*/
position: relative;
-webkit-border-radius: 5px;
border-radius: 5px;
background: rgba(255,255,255,0.2);
}
.tmp{
position: absolute;
font-weight: 300;
font-size: 25px;
text-align: center;
width: 100%;
margin: 0;
top: 255px;
left: 0;
display: block;
}
.widg{
position: relative;
font-weight: 300;
font-size: 25px;
text-align: center;
width: 100%;
margin: 0;
top: 120px;
left: 0;
display: block;
}
div.img-area {
-webkit-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
position: relative;
height: 100%;
}
.img-area img {
width: 100%;
height: 100%;
-webkit-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
display: block;
}
.img-area .img-area-mask {
position: absolute;
width: 100%;
height: 100%;
background: #000;
-webkit-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
z-index: 2;
opacity: 0.5;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
}
.img-area .img-area-front {
z-index: 3;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.temperature {
text-align: center;
margin: 0;
font-size: 80px;
height: auto;
line-height: 200px;
position: relative;
font-weight: 100;
}
.temperature:before {
content: '';
left: 50px;
font-size: 60px;
position: relative;
top: -24px;
padding-right: 20px;
}
.temperature-feels {
font-size: 17px;
top: 20px;
position: absolute;
font-weight: 300;
text-align: center;
width: 100%;
margin: 0;
top: 15px;
left: 0;
}
.location,
.today {
position: absolute;
font-weight: 300;
font-size: 25px;
text-align: center;
width: 100%;
margin: 0;
top: 15px;
left: 0;
}
.today {
font-size: 14px;
top: 50px;
color: rgba(255,255,255,0.85);
}
.weather-desc {
position: absolute;
text-align: center;
/*bottom: 35px;*/
top: 220px;
width: 100%;
backface-visibility: hidden;
transform: translateZ(0);
}
.weather-desc > span {
display: inline-block;
padding: 5px 10px;
background: rgba(0,0,0,0.3);
-webkit-border-radius: 5px;
border-radius: 5px;
font-size: 20px;
font-weight: 300;
}
.wind_description{
margin-top: 170%;
margin-left: 0px;
font-size: 20px;
}
.dail_widget{
position: absolute;
}
.daily_description{
margin-top: 290px;
font-size: 20px;
text-align: left;
position: absolute;
display: block;
backface-visibility: hidden;
transform: translateZ(0);
}
.daily_temp{
position: relative;
top: 220px;
text-align: center;
display: block;
font-size: 50px;
backface-visibility: hidden;
transform: translateZ(0);
}
.M_widget{
font-weight: 300;
font-size: 25px;
text-align: center;
width: 100%;
margin: 0;
margin-top: 60%;
}
.daily_desc{
margin-top: 100%;
margin-left: 0px;
font-size: 20px;
}
.dailyWid{
position: relative;
font-weight: 300;
font-size: 25px;
text-align: center;
width: 100%;
margin: 0;
top: 120px;
left: 0;
display: block;
}
/*styling the carousel widget */
.today-widg{
position: relative;
top: 20%;
font-weight: 300;
font-size: 25px;
}
.time{
position: absolute;
margin-top: 280px;
width: 100%;
display: inline-block;
text-align: center;
font-size: 17px;
backface-visibility: hidden;
transform: translateZ(0);
}
.today-temperature{
margin: 0;
font-size: 70px;
top:290px;
text-align: center;
line-height: 200px;
position: relative;
font-weight: 100;
backface-visibility: hidden;
transform: translateZ(0);
}
.today-wind{
margin-top: 270px;
font-size: 20px;
text-align: left;
display: inline-block;
backface-visibility: hidden;
transform: translateZ(0);
}
.widget{
position: relative;
font-weight: 300;
font-size: 25px;
text-align: center;
width: 100%;
margin: 0;
top: 95px;
left: 0;
display: block;
}
.daily-column{
float: left;
width: 25%;
height: 500px;
margin-top: 10px;
margin-left: 0px;
color:white;
backface-visibility: hidden;
transform: translateZ(0);
} | assets/frameworks/adminlte/css/styles.css | * {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
height: 100vh;
}
.main-wrapper{
padding-top: 20px;
padding-left: 10px;
padding-right: 30px;
height: auto;
color: #fff;
}
.full-center {
float: left;
width: 25%;
height: 650px;
box-sizing: border-box;
background-color: rgba(0,0,0,0.5);
margin: 0 auto;
margin-top: 10px;
padding-top: 10px;
padding-left: 10px;
padding-right: 10px;
color:white;
}
.widget-block {
/*width: 770px;*/
width: 100%;
/*height: 480px;*/
height: 100%;
/*height: 80%;*/
position: relative;
-webkit-border-radius: 5px;
border-radius: 5px;
background: rgba(255,255,255,0.2);
}
.tmp{
position: absolute;
font-weight: 300;
font-size: 25px;
text-align: center;
width: 100%;
margin: 0;
top: 255px;
left: 0;
display: block;
}
.widg{
position: relative;
font-weight: 300;
font-size: 25px;
text-align: center;
width: 100%;
margin: 0;
top: 120px;
left: 0;
display: block;
}
div.img-area {
-webkit-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
position: relative;
height: 100%;
}
.img-area img {
width: 100%;
height: 100%;
-webkit-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
display: block;
}
.img-area .img-area-mask {
position: absolute;
width: 100%;
height: 100%;
background: #000;
-webkit-border-radius: 5px 5px 0 0;
border-radius: 5px 5px 0 0;
z-index: 2;
opacity: 0.5;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
}
.img-area .img-area-front {
z-index: 3;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
}
.temperature {
text-align: center;
margin: 0;
font-size: 80px;
height: auto;
line-height: 200px;
position: relative;
font-weight: 100;
}
.temperature:before {
content: '';
left: 50px;
font-size: 60px;
position: relative;
top: -24px;
padding-right: 20px;
}
.temperature-feels {
font-size: 17px;
top: 20px;
position: absolute;
font-weight: 300;
text-align: center;
width: 100%;
margin: 0;
top: 15px;
left: 0;
}
.location,
.today {
position: absolute;
font-weight: 300;
font-size: 25px;
text-align: center;
width: 100%;
margin: 0;
top: 15px;
left: 0;
}
.today {
font-size: 14px;
top: 50px;
color: rgba(255,255,255,0.85);
}
.weather-desc {
position: absolute;
text-align: center;
/*bottom: 35px;*/
top: 220px;
width: 100%;
backface-visibility: hidden;
transform: translateZ(0);
}
.weather-desc > span {
display: inline-block;
padding: 5px 10px;
background: rgba(0,0,0,0.3);
-webkit-border-radius: 5px;
border-radius: 5px;
font-size: 20px;
font-weight: 300;
}
.wind_description{
margin-top: 170%;
margin-left: 0px;
font-size: 20px;
}
.dail_widget{
position: absolute;
}
.daily_description{
margin-top: 290px;
font-size: 20px;
text-align: left;
position: absolute;
display: block;
backface-visibility: hidden;
transform: translateZ(0);
}
.daily_temp{
position: relative;
top: 220px;
text-align: center;
display: block;
font-size: 50px;
backface-visibility: hidden;
transform: translateZ(0);
}
.M_widget{
font-weight: 300;
font-size: 25px;
text-align: center;
width: 100%;
margin: 0;
margin-top: 60%;
}
.daily_desc{
margin-top: 100%;
margin-left: 0px;
font-size: 20px;
}
.dailyWid{
position: relative;
font-weight: 300;
font-size: 25px;
text-align: center;
width: 100%;
margin: 0;
top: 120px;
left: 0;
display: block;
}
/*styling the carousel widget */
.today-widg{
position: relative;
top: 20%;
font-weight: 300;
font-size: 25px;
}
.time{
position: absolute;
margin-top: 280px;
width: 100%;
display: inline-block;
text-align: center;
font-size: 17px;
backface-visibility: hidden;
transform: translateZ(0);
}
.today-temperature{
margin: 0;
font-size: 70px;
top:290px;
text-align: center;
line-height: 200px;
position: relative;
font-weight: 100;
backface-visibility: hidden;
transform: translateZ(0);
}
.today-wind{
margin-top: 270px;
font-size: 20px;
text-align: left;
display: inline-block;
backface-visibility: hidden;
transform: translateZ(0);
}
.widget{
position: relative;
font-weight: 300;
font-size: 25px;
text-align: center;
width: 100%;
margin: 0;
top: 95px;
left: 0;
display: block;
}
.daily-column{
float: left;
width: 25%;
height: 500px;
margin-top: 10px;
margin-left: 0px;
color:white;
backface-visibility: hidden;
transform: translateZ(0);
} | 0.455683 | 0.072538 |
.clearfix::after {
clear: both;
display: block;
content: "";
}
table td.fr-selected-cell,
table th.fr-selected-cell {
border: 1px double #1e88e5;
}
table tr {
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
table td,
table th {
user-select: text;
-o-user-select: text;
-moz-user-select: text;
-khtml-user-select: text;
-webkit-user-select: text;
-ms-user-select: text;
}
.fr-no-selection table td,
.fr-no-selection table th {
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
.fr-table-resizer {
cursor: col-resize;
position: fixed;
z-index: 3;
display: none;
}
.fr-table-resizer.fr-moving {
z-index: 2;
}
.fr-table-resizer div {
-webkit-opacity: 0;
-moz-opacity: 0;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
border-right: 1px solid #1e88e5;
}
.fr-no-selection {
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
.fr-popup .fr-table-size .fr-table-size-info {
text-align: center;
font-size: 14px;
padding: 8px;
}
.fr-popup .fr-table-size .fr-select-table-size {
line-height: 0;
padding: 0 5px 5px;
white-space: nowrap;
}
.fr-popup .fr-table-size .fr-select-table-size > span {
display: inline-block;
padding: 0px 4px 4px 0;
}
.fr-popup .fr-table-size .fr-select-table-size > span > span {
display: inline-block;
width: 18px;
height: 18px;
border: 1px solid #dddddd;
}
.fr-popup .fr-table-size .fr-select-table-size > span:hover,
.fr-popup .fr-table-size .fr-select-table-size > span.hover {
background: transparent;
}
.fr-popup .fr-table-size .fr-select-table-size > span:hover > span,
.fr-popup .fr-table-size .fr-select-table-size > span.hover > span {
background: rgba(30, 136, 229, 0.3);
border: solid 1px #1e88e5;
}
.fr-popup .fr-table-size .fr-select-table-size .new-line::after {
clear: both;
display: block;
content: "";
}
.fr-popup.fr-above .fr-table-size .fr-select-table-size > span {
display: inline-block !important;
}
.fr-popup .fr-table-colors-buttons {
margin-bottom: 5px;
}
.fr-popup .fr-table-colors {
line-height: 0;
display: block;
}
.fr-popup .fr-table-colors > span {
display: inline-block;
width: 32px;
height: 32px;
position: relative;
z-index: 1;
}
.fr-popup .fr-table-colors > span > i {
text-align: center;
line-height: 32px;
height: 32px;
width: 32px;
font-size: 13px;
position: absolute;
bottom: 0;
cursor: default;
left: 0;
}
.fr-popup .fr-table-colors > span.fr-selected-color::after {
color: #ffffff;
content: "\f00c";
font-family: FontAwesome;
font-size: 13px;
font-weight: 400;
line-height: 32px;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
text-align: center;
cursor: default;
}
.fr-popup .fr-table-colors > span:hover,
.fr-popup .fr-table-colors > span.fr-selected-color {
outline: 1px solid #222222;
z-index: 2;
}
.fr-popup.fr-desktop .fr-table-size .fr-select-table-size > span > span {
width: 12px;
height: 12px;
} | public/backend/plugins/bootstrap-wysiwyg-new/css/plugins/table.css | .clearfix::after {
clear: both;
display: block;
content: "";
}
table td.fr-selected-cell,
table th.fr-selected-cell {
border: 1px double #1e88e5;
}
table tr {
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
table td,
table th {
user-select: text;
-o-user-select: text;
-moz-user-select: text;
-khtml-user-select: text;
-webkit-user-select: text;
-ms-user-select: text;
}
.fr-no-selection table td,
.fr-no-selection table th {
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
.fr-table-resizer {
cursor: col-resize;
position: fixed;
z-index: 3;
display: none;
}
.fr-table-resizer.fr-moving {
z-index: 2;
}
.fr-table-resizer div {
-webkit-opacity: 0;
-moz-opacity: 0;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
border-right: 1px solid #1e88e5;
}
.fr-no-selection {
user-select: none;
-o-user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
}
.fr-popup .fr-table-size .fr-table-size-info {
text-align: center;
font-size: 14px;
padding: 8px;
}
.fr-popup .fr-table-size .fr-select-table-size {
line-height: 0;
padding: 0 5px 5px;
white-space: nowrap;
}
.fr-popup .fr-table-size .fr-select-table-size > span {
display: inline-block;
padding: 0px 4px 4px 0;
}
.fr-popup .fr-table-size .fr-select-table-size > span > span {
display: inline-block;
width: 18px;
height: 18px;
border: 1px solid #dddddd;
}
.fr-popup .fr-table-size .fr-select-table-size > span:hover,
.fr-popup .fr-table-size .fr-select-table-size > span.hover {
background: transparent;
}
.fr-popup .fr-table-size .fr-select-table-size > span:hover > span,
.fr-popup .fr-table-size .fr-select-table-size > span.hover > span {
background: rgba(30, 136, 229, 0.3);
border: solid 1px #1e88e5;
}
.fr-popup .fr-table-size .fr-select-table-size .new-line::after {
clear: both;
display: block;
content: "";
}
.fr-popup.fr-above .fr-table-size .fr-select-table-size > span {
display: inline-block !important;
}
.fr-popup .fr-table-colors-buttons {
margin-bottom: 5px;
}
.fr-popup .fr-table-colors {
line-height: 0;
display: block;
}
.fr-popup .fr-table-colors > span {
display: inline-block;
width: 32px;
height: 32px;
position: relative;
z-index: 1;
}
.fr-popup .fr-table-colors > span > i {
text-align: center;
line-height: 32px;
height: 32px;
width: 32px;
font-size: 13px;
position: absolute;
bottom: 0;
cursor: default;
left: 0;
}
.fr-popup .fr-table-colors > span.fr-selected-color::after {
color: #ffffff;
content: "\f00c";
font-family: FontAwesome;
font-size: 13px;
font-weight: 400;
line-height: 32px;
position: absolute;
top: 0;
bottom: 0;
right: 0;
left: 0;
text-align: center;
cursor: default;
}
.fr-popup .fr-table-colors > span:hover,
.fr-popup .fr-table-colors > span.fr-selected-color {
outline: 1px solid #222222;
z-index: 2;
}
.fr-popup.fr-desktop .fr-table-size .fr-select-table-size > span > span {
width: 12px;
height: 12px;
} | 0.278846 | 0.079854 |
@font-face {
font-family: texgyreadventor;
src: url("../fonts/texgyreadventor-regular.otf") format("opentype");
}
body {
font-family: texgyreadventor;
margin-top: 50px;
/* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
}
.header-image {
display: block;
width: 100%;
text-align: center;
background: #000;
height: 79vh;
}
.headline {
font-family: texgyreadventor;
overflow: hidden;
position: relative;
height: 100%;
}
.headline .headline-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
/* max-width: 1680px; */
}
.headline .headline-video video {
background: #000;
position: absolute;
left: 0;
top: 0;
width: 100%;
}
.headline .headline-video .video-overlay {
background: url(../images/videodots.png);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%
}
.headline .slogan {
position: relative;
height: 100%;
}
.headline h1 {
font-size: 130px;
color: #fff;
margin-top: 20px;
margin-top: 5%;
}
.headline h1 img {
width: 65%;
}
.headline h2 {
font-size: 77px;
color: #fff;
width: 100%;
}
.featurette-divider {
margin: 80px 0;
}
.featurette {
overflow: hidden;
padding: 3% 0;
}
.featurette .container {
border-radius: 6px
}
.featurette-image.pull-left {
margin-right: 40px;
}
.featurette-image.pull-right {
margin-left: 40px;
}
.featurette-heading {
font-size: 40px;
}
footer {
margin: 50px 0;
}
div#about {
background-image: url(../images/arcade/r1.jpg);
background-size: cover;
background-attachment: fixed;
/* border-top: 5px solid #222; */
color: #fff;
}
div#about .container {
background-color: rgba(0, 0, 0, 0.8)
}
div#about img {
width: 400px;
}
div#about h2 {
text-shadow: 1px 1px #090
}
div#services {
background-image: url(../images/arcade/r1.jpg);
background-size: cover;
background-attachment: fixed;
/* border-top: 5px solid #222; */
color: #000;
}
div#services .container {
background-color: rgba(255, 255, 255, 0.8);
padding: 20px;
}
div#services .container img {
height: 200px
}
div#contact {
background-image: url(../images/arcade/z1.jpg);
background-size: cover;
background-attachment: fixed;
/* border-top: 5px solid #222; */
color: #fff;
}
div#contact .container {
background-color: rgba(0, 0, 0, 0.8);
padding: 20px;
}
.featurette-heading {
font-size: 45px;
margin-bottom: 1%;
text-align: center;
}
div#services @media(max-width:1200px) {
.headline h1 {
font-size: 140px;
}
.headline h2 {
font-size: 63px;
}
.featurette-divider {
margin: 50px 0;
}
.featurette-image.pull-left {
margin-right: 20px;
}
.featurette-image.pull-right {
margin-left: 20px;
}
}
@media(max-width:991px) {
.headline {
/* height: 500px; */
}
.headline h1 {
font-size: 105px;
}
.headline h2 {
font-size: 50px;
}
.featurette-divider {
margin: 40px 0;
}
.featurette-image {
max-width: 50%;
}
.featurette-image.pull-left {
margin-right: 10px;
}
.featurette-image.pull-right {
margin-left: 10px;
}
.featurette-heading {
font-size: 30px;
}
}
@media(max-width:768px) {
.header-image {
height: 400px;
}
.container {
margin: 0 15px;
}
.featurette-divider {
margin: 40px 0;
}
.featurette-heading {
font-size: 25px;
}
}
@media(max-width:668px) {
.header-image {
height: 400px;
}
.headline h1 {
font-size: 70px;
}
.headline h2 {
font-size: 32px;
}
.featurette-divider {
margin: 30px 0;
}
}
@media(max-width:640px) {
.header-image {
height: 400px;
}
.headline {
padding: 75px 0 25px 0;
}
.headline h1 {
font-size: 60px;
}
.headline h2 {
font-size: 30px;
}
}
@media(max-width:414px) {
.header-image {
height: 300px;
}
.featurette-divider {
margin: 10px 0;
}
.featurette-image {
max-width: 100%;
}
.featurette-image.pull-left {
margin-right: 0;
margin-bottom: 10px;
}
.featurette-image.pull-right {
margin-bottom: 10px;
margin-left: 0;
}
} | css/one-page-wonder.css | @font-face {
font-family: texgyreadventor;
src: url("../fonts/texgyreadventor-regular.otf") format("opentype");
}
body {
font-family: texgyreadventor;
margin-top: 50px;
/* Required padding for .navbar-fixed-top. Remove if using .navbar-static-top. Change if height of navigation changes. */
}
.header-image {
display: block;
width: 100%;
text-align: center;
background: #000;
height: 79vh;
}
.headline {
font-family: texgyreadventor;
overflow: hidden;
position: relative;
height: 100%;
}
.headline .headline-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
/* max-width: 1680px; */
}
.headline .headline-video video {
background: #000;
position: absolute;
left: 0;
top: 0;
width: 100%;
}
.headline .headline-video .video-overlay {
background: url(../images/videodots.png);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%
}
.headline .slogan {
position: relative;
height: 100%;
}
.headline h1 {
font-size: 130px;
color: #fff;
margin-top: 20px;
margin-top: 5%;
}
.headline h1 img {
width: 65%;
}
.headline h2 {
font-size: 77px;
color: #fff;
width: 100%;
}
.featurette-divider {
margin: 80px 0;
}
.featurette {
overflow: hidden;
padding: 3% 0;
}
.featurette .container {
border-radius: 6px
}
.featurette-image.pull-left {
margin-right: 40px;
}
.featurette-image.pull-right {
margin-left: 40px;
}
.featurette-heading {
font-size: 40px;
}
footer {
margin: 50px 0;
}
div#about {
background-image: url(../images/arcade/r1.jpg);
background-size: cover;
background-attachment: fixed;
/* border-top: 5px solid #222; */
color: #fff;
}
div#about .container {
background-color: rgba(0, 0, 0, 0.8)
}
div#about img {
width: 400px;
}
div#about h2 {
text-shadow: 1px 1px #090
}
div#services {
background-image: url(../images/arcade/r1.jpg);
background-size: cover;
background-attachment: fixed;
/* border-top: 5px solid #222; */
color: #000;
}
div#services .container {
background-color: rgba(255, 255, 255, 0.8);
padding: 20px;
}
div#services .container img {
height: 200px
}
div#contact {
background-image: url(../images/arcade/z1.jpg);
background-size: cover;
background-attachment: fixed;
/* border-top: 5px solid #222; */
color: #fff;
}
div#contact .container {
background-color: rgba(0, 0, 0, 0.8);
padding: 20px;
}
.featurette-heading {
font-size: 45px;
margin-bottom: 1%;
text-align: center;
}
div#services @media(max-width:1200px) {
.headline h1 {
font-size: 140px;
}
.headline h2 {
font-size: 63px;
}
.featurette-divider {
margin: 50px 0;
}
.featurette-image.pull-left {
margin-right: 20px;
}
.featurette-image.pull-right {
margin-left: 20px;
}
}
@media(max-width:991px) {
.headline {
/* height: 500px; */
}
.headline h1 {
font-size: 105px;
}
.headline h2 {
font-size: 50px;
}
.featurette-divider {
margin: 40px 0;
}
.featurette-image {
max-width: 50%;
}
.featurette-image.pull-left {
margin-right: 10px;
}
.featurette-image.pull-right {
margin-left: 10px;
}
.featurette-heading {
font-size: 30px;
}
}
@media(max-width:768px) {
.header-image {
height: 400px;
}
.container {
margin: 0 15px;
}
.featurette-divider {
margin: 40px 0;
}
.featurette-heading {
font-size: 25px;
}
}
@media(max-width:668px) {
.header-image {
height: 400px;
}
.headline h1 {
font-size: 70px;
}
.headline h2 {
font-size: 32px;
}
.featurette-divider {
margin: 30px 0;
}
}
@media(max-width:640px) {
.header-image {
height: 400px;
}
.headline {
padding: 75px 0 25px 0;
}
.headline h1 {
font-size: 60px;
}
.headline h2 {
font-size: 30px;
}
}
@media(max-width:414px) {
.header-image {
height: 300px;
}
.featurette-divider {
margin: 10px 0;
}
.featurette-image {
max-width: 100%;
}
.featurette-image.pull-left {
margin-right: 0;
margin-bottom: 10px;
}
.featurette-image.pull-right {
margin-bottom: 10px;
margin-left: 0;
}
} | 0.403802 | 0.089933 |
.hx-spinner {
border: 3px solid #00ADA8;
border-right-color: transparent; }
.hx-spinner-wide::after {
background: #00ADA8; }
.hx-form-error {
color: #F7F7F9; }
.hx-form-error .hx-form-error-text-container .hx-form-error-text {
background: #4A4E4E; }
.hx-form-error .hx-form-error-text-container .hx-form-error-text:before {
border-bottom-color: #4A4E4E; }
.hx-modal-shade {
background: rgba(0, 0, 0, 0.5); }
.hx-modal {
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5); }
.hx-modal-title-container {
font-size: 1.17em;
background: #FFFFFF;
border-radius: 3px 3px 0 0;
color: #3D3D3D;
border-color: #D0D0D0; }
.hx-modal-content {
background: #FFFFFF;
border-radius: 0 0 3px 3px; }
.hx-modal-title-empty + .hx-modal-content {
border-radius: 3px; }
.hx-notification-container {
background: #f7f7f9;
border: solid 1px transparent;
border-top: none;
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.05); }
.hx-notification {
background-color: #FFFFFF;
color: #3D3D3D;
border-color: #D0D0D0; }
.hx-notification .hx-notification-icon {
color: #FFFFFF; }
.hx-notification.hx-positive .hx-notification-icon {
color: #92BF17; }
.hx-notification.hx-warning .hx-notification-icon {
color: #D69B24; }
.hx-notification.hx-negative .hx-notification-icon {
color: #EC3A65; }
.hx-notification.hx-info .hx-notification-icon {
color: #B36ABB; }
.hx-notification-close {
color: #939393; }
.hx-notification-close:hover {
color: #3D3D3D; }
.hx-notification-pin {
color: #939393; }
.hx-notification-pin:hover {
color: #3D3D3D; }
.hx-notification-pin-pinned {
color: #00ADA8; }
.hx-notification-pin-pinned:hover {
color: #037774; }
body, button, textarea,
input {
font-family: "Open Sans", sans-serif;
font-size: 14px; }
body {
background: #f7f7f9;
color: #3D3D3D; }
h1,
h2,
h3,
h4,
h5,
h6,
.hx-header-large,
.hx-header-medium,
.hx-header-small,
.hx-header {
font-family: "Open Sans", sans-serif;
color: #3D3D3D; }
textarea,
input {
background-color: white;
border-color: #DADADA;
color: #3D3D3D;
border-radius: 2px; }
textarea:focus,
input:focus {
border-color: #00ADA8; }
textarea:invalid,
input:invalid {
border-color: #DE1A4A; }
select {
border-color: #D8D8D8;
background: #FAFAFA;
color: #3D3D3D; }
select:focus {
border-color: #B5B5B5; }
::-moz-selection {
background: #B4B1B5; }
::selection {
background: #B4B1B5; }
a {
color: #00ADA8; }
hr {
border-color: #D0D0D0;
border-style: solid; }
.hx-btn {
background: #FFFFFF;
color: #3D3D3D;
border-color: #e6e6e6; }
.hx-btn:active, .hx-btn:hover {
background: #f2f2f2; }
.hx-btn:focus {
box-shadow: 0 0 0 1px #e6e6e6; }
.hx-btn.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-btn-invert:hover {
background: #F2F2F2;
color: #FFFFFF;
color: #3D3D3D; }
.hx-btn.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(230, 230, 230, 0.5); }
.hx-btn.hx-action {
background: #00ADA8;
color: #F3F3F3;
border-color: #007a76; }
.hx-btn.hx-action:active, .hx-btn.hx-action:hover {
background: #00e0da; }
.hx-btn.hx-action:focus {
box-shadow: 0 0 0 1px #007a76; }
.hx-btn.hx-action.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-action.hx-btn-invert:hover {
background: #F2F2F2;
color: #00ADA8; }
.hx-btn.hx-action.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(0, 122, 118, 0.5); }
.hx-btn.hx-positive {
background: #92BF17;
color: #F3F3F3;
border-color: #6f9112; }
.hx-btn.hx-positive:active, .hx-btn.hx-positive:hover {
background: #b1e524; }
.hx-btn.hx-positive:focus {
box-shadow: 0 0 0 1px #6f9112; }
.hx-btn.hx-positive.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-positive.hx-btn-invert:hover {
background: #F2F2F2;
color: #92BF17; }
.hx-btn.hx-positive.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(111, 145, 18, 0.5); }
.hx-btn.hx-negative {
background: #EC3A65;
color: #F3F3F3;
border-color: #de1546; }
.hx-btn.hx-negative:active, .hx-btn.hx-negative:hover {
background: #f06989; }
.hx-btn.hx-negative:focus {
box-shadow: 0 0 0 1px #de1546; }
.hx-btn.hx-negative.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-negative.hx-btn-invert:hover {
background: #F2F2F2;
color: #EC3A65; }
.hx-btn.hx-negative.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(222, 21, 70, 0.5); }
.hx-btn.hx-warning {
background: #D69B24;
color: #F3F3F3;
border-color: #aa7b1d; }
.hx-btn.hx-warning:active, .hx-btn.hx-warning:hover {
background: #e1b04c; }
.hx-btn.hx-warning:focus {
box-shadow: 0 0 0 1px #aa7b1d; }
.hx-btn.hx-warning.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-warning.hx-btn-invert:hover {
background: #F2F2F2;
color: #D69B24; }
.hx-btn.hx-warning.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(170, 123, 29, 0.5); }
.hx-btn.hx-info {
background: #B36ABB;
color: #F3F3F3;
border-color: #9d4ca6; }
.hx-btn.hx-info:active, .hx-btn.hx-info:hover {
background: #c58dcb; }
.hx-btn.hx-info:focus {
box-shadow: 0 0 0 1px #9d4ca6; }
.hx-btn.hx-info.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-info.hx-btn-invert:hover {
background: #F2F2F2;
color: #B36ABB; }
.hx-btn.hx-info.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(157, 76, 166, 0.5); }
.hx-btn.hx-complement {
background: #F7F7F9;
color: #3D3D3D;
border-color: #dadae3; }
.hx-btn.hx-complement:active, .hx-btn.hx-complement:hover {
background: #e8e8ee; }
.hx-btn.hx-complement:focus {
box-shadow: 0 0 0 1px #dadae3; }
.hx-btn.hx-complement.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-complement.hx-btn-invert:hover {
background: #F2F2F2;
color: #F7F7F9;
color: #3D3D3D; }
.hx-btn.hx-complement.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(218, 218, 227, 0.5); }
.hx-btn.hx-contrast {
background: #4A4E4E;
color: #F3F3F3;
border-color: #313434; }
.hx-btn.hx-contrast:active, .hx-btn.hx-contrast:hover {
background: #636868; }
.hx-btn.hx-contrast:focus {
box-shadow: 0 0 0 1px #313434; }
.hx-btn.hx-contrast.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-contrast.hx-btn-invert:hover {
background: #F2F2F2;
color: #4A4E4E; }
.hx-btn.hx-contrast.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(49, 52, 52, 0.5); }
.hx-btn.hx-btn-invisible {
color: #575757;
border: none;
background: transparent; }
.hx-btn.hx-btn-invisible:hover, .hx-btn.hx-btn-invisible:active {
background: transparent; }
.hx-btn:disabled, .hx-btn.hx-disabled, .hx-btn:disabled:hover, .hx-btn:disabled:active, .hx-btn.hx-disabled:hover, .hx-btn.hx-disabled:active {
background: #FAFAFA;
color: #939393;
border: 1px solid #e1e1e1; }
.hx-dropdown {
background: #FFFFFF;
box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.05);
border-color: #E7E7E7;
margin-top: 0px; }
.hx-collapsible-heading {
background: #FAFAFA;
color: #3D3D3D; }
.hx-collapsible-toggle:hover,
.hx-collapsible-heading:not(.hx-collapsible-heading-no-hover):hover {
background: #00ADA8;
color: white; }
.hx-collapsible-toggle {
background: #FFFFFF;
color: #3D3D3D; }
.hx-collapsible-content {
border-color: "";
background: #FFFFFF;
color: #3D3D3D; }
.hx-collapsible {
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-text-default {
color: #FFFFFF !important; }
.hx-background-default {
background-color: #FFFFFF !important;
color: #3D3D3D !important; }
.hx-background-default a, .hx-background-default .hx-background-text-color, .hx-background-default .hx-header {
color: #3D3D3D !important; }
.hx-border-default {
border-color: #FFFFFF !important; }
.hx-text-action {
color: #00ADA8 !important; }
.hx-background-action {
background-color: #00ADA8 !important;
color: #F3F3F3 !important; }
.hx-background-action a, .hx-background-action .hx-background-text-color, .hx-background-action .hx-header {
color: #F3F3F3 !important; }
.hx-border-action {
border-color: #00ADA8 !important; }
.hx-text-positive {
color: #92BF17 !important; }
.hx-background-positive {
background-color: #92BF17 !important;
color: #F3F3F3 !important; }
.hx-background-positive a, .hx-background-positive .hx-background-text-color, .hx-background-positive .hx-header {
color: #F3F3F3 !important; }
.hx-border-positive {
border-color: #92BF17 !important; }
.hx-text-warning {
color: #D69B24 !important; }
.hx-background-warning {
background-color: #D69B24 !important;
color: #F3F3F3 !important; }
.hx-background-warning a, .hx-background-warning .hx-background-text-color, .hx-background-warning .hx-header {
color: #F3F3F3 !important; }
.hx-border-warning {
border-color: #D69B24 !important; }
.hx-text-negative {
color: #EC3A65 !important; }
.hx-background-negative {
background-color: #EC3A65 !important;
color: #F3F3F3 !important; }
.hx-background-negative a, .hx-background-negative .hx-background-text-color, .hx-background-negative .hx-header {
color: #F3F3F3 !important; }
.hx-border-negative {
border-color: #EC3A65 !important; }
.hx-text-info {
color: #B36ABB !important; }
.hx-background-info {
background-color: #B36ABB !important;
color: #F3F3F3 !important; }
.hx-background-info a, .hx-background-info .hx-background-text-color, .hx-background-info .hx-header {
color: #F3F3F3 !important; }
.hx-border-info {
border-color: #B36ABB !important; }
.hx-text-complement {
color: #F7F7F9 !important; }
.hx-background-complement {
background-color: #F7F7F9 !important;
color: #3D3D3D !important; }
.hx-background-complement a, .hx-background-complement .hx-background-text-color, .hx-background-complement .hx-header {
color: #3D3D3D !important; }
.hx-border-complement {
border-color: #F7F7F9 !important; }
.hx-text-contrast {
color: #4A4E4E !important; }
.hx-background-contrast {
background-color: #4A4E4E !important;
color: #F3F3F3 !important; }
.hx-background-contrast a, .hx-background-contrast .hx-background-text-color, .hx-background-contrast .hx-header {
color: #F3F3F3 !important; }
.hx-border-contrast {
border-color: #4A4E4E !important; }
.hx-text-disabled {
color: #939393 !important; }
.hx-background-disabled {
background-color: #FAFAFA !important; }
.hx-border-disabled {
border-color: #FAFAFA !important; }
.hx-input-group > input {
border-color: #DADADA;
background-color: white; }
.hx-input-group > input:invalid {
border-color: #DE1A4A; }
.hx-input-group > input:focus {
border-color: #00ADA8; }
.hx-input-group > div, .hx-input-group > span, .hx-input-group > a {
border-color: #DADADA;
background: #FDFDFD; }
.hx-input-group > i {
border-color: #DADADA;
background: #F9F9F9; }
.hx-menu-item {
color: #3D3D3D;
background: #FFFFFF; }
.hx-menu-item > .hx-collapsible > .hx-menu-collapsible {
background: #FDFDFD;
color: #3D3D3D; }
.hx-menu-item.hx-menu-link:hover,
.hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #F9F9F9;
color: #3D3D3D;
border-color: transparent;
border-width: 2px; }
.hx-menu-item.hx-menu-item-disabled {
background: #FAFAFA;
color: #939393; }
.hx-menu-items:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu-items:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #F9F9F9;
border-color: transparent; }
.hx-menu.hx-action .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-action .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #00ADA8; }
.hx-menu.hx-action .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #68f7f3;
color: #3D3D3D; }
.hx-menu.hx-action:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-action:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #00ADA8; }
.hx-menu.hx-action:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #68f7f3;
color: #3D3D3D; }
.hx-menu.hx-positive .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-positive .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #92BF17; }
.hx-menu.hx-positive .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #d7ec9c;
color: #3D3D3D; }
.hx-menu.hx-positive:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-positive:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #92BF17; }
.hx-menu.hx-positive:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #d7ec9c;
color: #3D3D3D; }
.hx-menu.hx-negative .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-negative .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #EC3A65; }
.hx-menu.hx-negative .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #fadfe5;
color: #3D3D3D; }
.hx-menu.hx-negative:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-negative:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #EC3A65; }
.hx-menu.hx-negative:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #fadfe5;
color: #3D3D3D; }
.hx-menu.hx-warning .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-warning .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #D69B24; }
.hx-menu.hx-warning .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #efdfbd;
color: #3D3D3D; }
.hx-menu.hx-warning:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-warning:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #D69B24; }
.hx-menu.hx-warning:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #efdfbd;
color: #3D3D3D; }
.hx-menu.hx-info .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-info .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #B36ABB; }
.hx-menu.hx-info .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #f0e6f1;
color: #3D3D3D; }
.hx-menu.hx-info:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-info:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #B36ABB; }
.hx-menu.hx-info:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #f0e6f1;
color: #3D3D3D; }
.hx-menu.hx-complement .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-complement .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #F7F7F9; }
.hx-menu.hx-complement .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #d0d0d4;
color: #3D3D3D; }
.hx-menu.hx-complement:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-complement:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #F7F7F9; }
.hx-menu.hx-complement:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #d0d0d4;
color: #3D3D3D; }
.hx-menu.hx-contrast .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-contrast .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #4A4E4E; }
.hx-menu.hx-contrast .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #a5a5a5;
color: #3D3D3D; }
.hx-menu.hx-contrast:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-contrast:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #4A4E4E; }
.hx-menu.hx-contrast:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #a5a5a5;
color: #3D3D3D; }
.hx-date-picker {
background: white;
border-color: #DADADA; }
.hx-date-picker .hx-icon:not(.hx-date-to-icon) {
background: #00ADA8;
color: white; }
.hx-date-input.hx-date-error {
background: #FCBFBF;
outline-color: #DE1A4A; }
.hx-date-picker-calendar .hx-calendar-header {
color: #3D3D3D; }
.hx-date-picker-calendar .hx-calendar-header .hx-calendar-back,
.hx-date-picker-calendar .hx-calendar-header .hx-calendar-forward {
color: #939393; }
.hx-date-picker-calendar .hx-calendar-header .hx-calendar-back:hover,
.hx-date-picker-calendar .hx-calendar-header .hx-calendar-forward:hover {
color: #3D3D3D; }
.hx-date-picker-calendar .hx-grid-row.hx-grid-row-heading {
border-color: #D0D0D0; }
.hx-date-picker-calendar .hx-grid .hx-grid-text {
border-radius: 2px; }
.hx-date-picker-calendar .hx-grid:hover .hx-grid-text {
background: #00ADA8;
color: #F3F3F3; }
.hx-date-picker-calendar .hx-grid.hx-grid-today .hx-grid-text {
background: #FFFFFF;
color: #3D3D3D; }
.hx-date-picker-calendar .hx-grid.hx-grid-selected .hx-grid-text {
background: #00ADA8;
color: #F3F3F3; }
.hx-date-picker-calendar .hx-grid.hx-grid-selected-range .hx-grid-range-bg, .hx-date-picker-calendar .hx-grid.hx-grid-selected .hx-grid-range-bg {
background: #F9F9F9; }
.hx-date-picker-calendar .hx-grid.hx-grid-out-of-range {
color: #939393; }
.hx-date-picker-calendar .hx-grid.hx-grid-out-of-range:hover .hx-grid-text {
color: #939393; }
.hx-time-picker {
background: white;
border-color: #DADADA; }
.hx-time-picker .hx-icon {
background: #00ADA8;
color: white; }
.hx-time-picker.hx-time-error {
background: #FCBFBF;
outline: solid 1px #DE1A4A; }
.hx-drag-placeholder div {
border-color: #D0D0D0; }
.hx-content {
padding-left: 1em;
padding-right: 1em;
max-width: 1200px;
background: transparent; }
.hx-heading + .hx-content {
padding-top: 1em; }
.hx-layout {
margin: 0.3em; }
.hx-group > .hx-section {
margin: 0.3em; }
.hx-group > .hx-section.hx-btn {
margin: 0.3em; }
.hx-small,
.hx-medium,
.hx-large {
min-width: 250px; }
.hx-small {
-webkit-flex-basis: 21%;
-ms-flex-preferred-size: 21%;
flex-basis: 21%;
-webkit-flex-basis: calc(25% - (2 * 0.3em));
-ms-flex-preferred-size: calc(25% - (2 * 0.3em));
flex-basis: calc(25% - (2 * 0.3em)); }
.hx-medium {
-webkit-flex-basis: 40%;
-ms-flex-preferred-size: 40%;
flex-basis: 40%;
-webkit-flex-basis: calc(50% - (2 * 0.3em));
-ms-flex-preferred-size: calc(50% - (2 * 0.3em));
flex-basis: calc(50% - (2 * 0.3em)); }
.hx-large {
-webkit-flex-basis: 90%;
-ms-flex-preferred-size: 90%;
flex-basis: 90%;
-webkit-flex-basis: calc(100% - (2 * 0.3em));
-ms-flex-preferred-size: calc(100% - (2 * 0.3em));
flex-basis: calc(100% - (2 * 0.3em)); }
@media (max-width: 1300px) {
.hx-content {
max-width: 900px; } }
.hx-border {
border: solid 1px #D0D0D0; }
.hx-border-top {
border-top: solid 1px #D0D0D0; }
.hx-border-right {
border-right: solid 1px #D0D0D0; }
.hx-border-bottom {
border-bottom: solid 1px #D0D0D0; }
.hx-border-left {
border-left: solid 1px #D0D0D0; }
.hx-progress-bar {
border-color: none;
border-width: 0;
background-color: rgba(227, 227, 227, 0.3); }
.hx-progress-bar.hx-action .hx-progress-bar-inner {
background: #00ADA8; }
.hx-progress-bar.hx-positive .hx-progress-bar-inner {
background: #92BF17; }
.hx-progress-bar.hx-negative .hx-progress-bar-inner {
background: #EC3A65; }
.hx-progress-bar.hx-warning .hx-progress-bar-inner {
background: #D69B24; }
.hx-progress-bar.hx-info .hx-progress-bar-inner {
background: #B36ABB; }
.hx-progress-bar.hx-complement .hx-progress-bar-inner {
background: #F7F7F9; }
.hx-progress-bar.hx-contrast .hx-progress-bar-inner {
background: #4A4E4E; }
.hx-progress-bar .hx-progress-bar-inner {
background-color: #FFFFFF; }
.hx-progress-bar .hx-progress-bar-inner.hx-action {
background: #00ADA8; }
.hx-progress-bar .hx-progress-bar-inner.hx-positive {
background: #92BF17; }
.hx-progress-bar .hx-progress-bar-inner.hx-negative {
background: #EC3A65; }
.hx-progress-bar .hx-progress-bar-inner.hx-warning {
background: #D69B24; }
.hx-progress-bar .hx-progress-bar-inner.hx-info {
background: #B36ABB; }
.hx-progress-bar .hx-progress-bar-inner.hx-complement {
background: #F7F7F9; }
.hx-progress-bar .hx-progress-bar-inner.hx-contrast {
background: #4A4E4E; }
.hx-axis-line {
stroke: #D0D0D0; }
.hx-tick-line {
stroke: #D0D0D0; }
.hx-axis text {
font-size: 10px;
fill: #3D3D3D; }
.hx-legend-box {
fill: #FDFDFD;
stroke: #E7E7E7; }
.hx-legend-entry text {
fill: #3D3D3D; }
.hx-axis-title {
fill: #3D3D3D; }
.hx-vertical-grid-line, .hx-horizontal-grid-line {
stroke: #E7E7E7; }
.hx-pie-segment-text {
fill: rgba(255, 255, 255, 0.8);
font-size: 15px;
font-weight: bold; }
.hx-plot-text-warm {
color: #faa95b; }
.hx-plot-text-ambient {
color: #e2d440; }
.hx-plot-text-cold {
color: #5a9bd4; }
.hx-plot-text-positive {
color: #97c366; }
.hx-plot-text-warning {
color: #e2d440; }
.hx-plot-text-negative {
color: #f15a71; }
.hx-plot-background-warm {
color: white;
background: #faa95b; }
.hx-plot-background-ambient {
color: white;
background: #e2d440; }
.hx-plot-background-cold {
color: white;
background: #5a9bd4; }
.hx-plot-background-positive {
color: white;
background: #97c366; }
.hx-plot-background-warning {
color: white;
background: #e2d440; }
.hx-plot-background-negative {
color: white;
background: #f15a71; }
.hx-plot-label-details {
background: #FDFDFD;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25); }
.hx-plot-label-details-basic {
background: #FDFDFD;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25); }
.hx-plot-label-details-header {
background: #FFFFFF;
border-color: #D0D0D0; }
.hx-plot-label-marker {
border-color: #FDFDFD;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25); }
.hx-sticky-table-scroll-top,
.hx-sticky-table-scroll-right,
.hx-sticky-table-scroll-bottom,
.hx-sticky-table-scroll-left {
box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.5); }
.hx-table tr, .hx-table td, .hx-table th {
border-color: #E2E1E1; }
.hx-table th {
background: #FFFFFF;
color: #3D3D3D; }
.hx-table tbody tr {
background: #f7f7f9;
color: #3D3D3D; }
.hx-table tbody tr:nth-child(2n) {
background: #F3F3F3;
color: #3D3D3D; }
.hx-table tbody tr:hover {
background: #E4E4E4; }
.hx-toggle > .hx-toggle-box {
background: #D5D5D5; }
.hx-toggle > .hx-toggle-box:before {
background: #ABABAB; }
.hx-toggle > .hx-toggle-box.hx-toggle-box-on {
background: #D5D5D5; }
.hx-toggle > .hx-toggle-box.hx-toggle-box-on:before {
background: #B2BA32; }
.hx-tag-input {
border-color: #DADADA;
background: #FDFDFD; }
.hx-tag {
background: #FFFFFF;
color: #3D3D3D;
border-color: #e6e6e6; }
.hx-tag.hx-action {
background: #00ADA8;
color: #F3F3F3;
border-color: #007a76; }
.hx-tag.hx-positive {
background: #92BF17;
color: #F3F3F3;
border-color: #6f9112; }
.hx-tag.hx-warning {
background: #D69B24;
color: #F3F3F3;
border-color: #aa7b1d; }
.hx-tag.hx-negative {
background: #EC3A65;
color: #F3F3F3;
border-color: #de1546; }
.hx-tag.hx-info {
background: #B36ABB;
color: #F3F3F3;
border-color: #9d4ca6; }
.hx-tag.hx-complement {
background: #F7F7F9;
color: #3D3D3D;
border-color: #dadae3; }
.hx-tag.hx-contrast {
background: #4A4E4E;
color: #F3F3F3;
border-color: #313434; }
.hx-tag.hx-disabled {
background: #FAFAFA;
color: #939393; }
body.hx-heading-fixed .hx-heading + .hx-content,
body.hx-full-screen .hx-heading + .hx-content {
margin-top: 46px; }
body.hx-titlebar-link-padding .hx-heading + .hx-content {
margin-top: 86px; }
.hx-heading {
border-bottom-width: 0;
border-bottom-color: #D0D0D0;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05); }
.hx-titlebar {
background: #F8F8F8;
color: #3D3D3D;
font-weight: 100; }
.hx-titlebar-header {
max-height: 46px;
min-height: 46px; }
.hx-titlebar-title {
font-family: "Open Sans", sans-serif;
font-size: 1.7em;
line-height: 46px;
color: #00ADA8; }
.hx-titlebar-title a {
color: #3D3D3D; }
.hx-titlebar-subtitle {
font-family: "Open Sans", sans-serif; }
.hx-titlebar-subtitle a {
color: #3D3D3D; }
.hx-titlebar-menu-icon,
.hx-titlebar-menu-content {
color: rgba(0, 0, 0, 0.3); }
.hx-titlebar-menu-icon:hover {
color: rgba(0, 0, 0, 0.6); }
.hx-titlebar-icon {
background: transparent; }
.hx-titlebar-icon img {
max-height: 46px; }
.hx-titlebar-menu-icon-mobile {
font-size: 1.7em; }
.hx-titlebar-linkbar {
background: #FFFFFF; }
.hx-titlebar-link {
color: #3D3D3D; }
.hx-titlebar-link.hx-selected {
border-bottom-color: #D0DDEE; }
.hx-titlebar-link:hover {
border-bottom-color: #00ADA8;
color: #00ADA8; }
@media (min-width: 901px) {
.hx-titlebar-menu-content {
color: white; }
.hx-titlebar-menu-icon {
border-color: transparent; }
.hx-titlebar-menu-icon:hover span.hx-titlebar-menu-text {
background: #4A4E4E;
color: #F7F7F9; }
.hx-titlebar-menu-icon:hover span.hx-titlebar-menu-text:before {
border-bottom-color: #4A4E4E; } }
.hx-titlebar.hx-action {
background: #00ADA8; }
.hx-titlebar.hx-negative {
background: #EC3A65; }
.hx-titlebar.hx-positive {
background: #92BF17; }
.hx-titlebar.hx-warning {
background: #D69B24; }
.hx-titlebar.hx-info {
background: #B36ABB; }
.hx-titlebar.hx-action, .hx-titlebar.hx-negative, .hx-titlebar.hx-positive, .hx-titlebar.hx-warning, .hx-titlebar.hx-info {
color: #F3F3F3; }
.hx-titlebar.hx-action .hx-titlebar-icon, .hx-titlebar.hx-negative .hx-titlebar-icon, .hx-titlebar.hx-positive .hx-titlebar-icon, .hx-titlebar.hx-warning .hx-titlebar-icon, .hx-titlebar.hx-info .hx-titlebar-icon {
background: #FFFFFF; }
.hx-titlebar.hx-action .hx-titlebar-menu-icon, .hx-titlebar.hx-negative .hx-titlebar-menu-icon, .hx-titlebar.hx-positive .hx-titlebar-menu-icon, .hx-titlebar.hx-warning .hx-titlebar-menu-icon, .hx-titlebar.hx-info .hx-titlebar-menu-icon {
color: rgba(255, 255, 255, 0.5); }
.hx-titlebar.hx-action .hx-titlebar-menu-icon:hover, .hx-titlebar.hx-negative .hx-titlebar-menu-icon:hover, .hx-titlebar.hx-positive .hx-titlebar-menu-icon:hover, .hx-titlebar.hx-warning .hx-titlebar-menu-icon:hover, .hx-titlebar.hx-info .hx-titlebar-menu-icon:hover {
color: rgba(255, 255, 255, 0.85); }
.hx-titlebar.hx-action .hx-titlebar-title, .hx-titlebar.hx-negative .hx-titlebar-title, .hx-titlebar.hx-positive .hx-titlebar-title, .hx-titlebar.hx-warning .hx-titlebar-title, .hx-titlebar.hx-info .hx-titlebar-title {
color: #F3F3F3; }
@media (max-width: 900px) {
body.hx-titlebar-link-padding .hx-heading + .hx-content {
margin-top: 46px; }
.hx-titlebar .hx-titlebar-menu-icons {
background: white; }
.hx-titlebar .hx-titlebar-menu-icons .hx-titlebar-menu-icon {
color: #3D3D3D; }
.hx-titlebar .hx-titlebar-menu-icons .hx-titlebar-menu-icon:hover {
color: #3D3D3D; } }
.hx-slider-inner:before {
content: ' ';
top: 25%;
height: 50%;
background: #FDFDFD;
border-radius: 20px; }
.hx-slider-range {
top: 25%;
height: 50%;
background: #00ADA8;
border-radius: 20px; }
.hx-slider.hx-disabled .hx-slider-range {
background: #BBBBBB; }
.hx-slider-range:before, .hx-slider-range:after {
background: #DADADA;
border-radius: 20px; }
.hx-slider-double .hx-slider-range:before {
border-radius: 20px 0 0 20px; }
.hx-slider-double .hx-slider-range:after {
border-radius: 0 20px 20px 0; }
.hx-slider-value {
color: #F7F7F9;
background: #4A4E4E;
border-radius: 5px; }
.hx-slider-value:before {
border-top-color: #4A4E4E; }
.hx-slider-value.hx-slider-under:before {
border-top-color: transparent;
border-bottom-color: #4A4E4E; }
.hx-slider-point {
border-radius: 20px;
background: #E2E2E2;
height: 50%;
top: 25%; }
.hx-card {
border-color: #E7E7E7;
background: #FFFFFF;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05); }
.hx-card > .hx-card-group:not(.hx-card-joint),
.hx-card > .hx-card-section:not(.hx-card-joint) {
border-color: #E7E7E7; }
.hx-card-header {
color: #3D3D3D;
background: #FAFAFA; }
.hx-card-text {
color: #3D3D3D; }
.hx-card-section {
padding: 14px; }
.hx-card-section.hx-card-joint {
padding-right: 0; }
.hx-card-small.hx-card-section {
padding: 7px 14px; }
.hx-card-small.hx-card-section.hx-card-joint {
padding-right: 0; }
.hx-card-small .hx-card-section:not(.hx-card-small):not(.hx-card-normal) {
padding: 7px 14px; }
.hx-card-normal.hx-card-section {
padding: 14px 14px; }
.hx-card-normal.hx-card-section.hx-card-joint {
padding-right: 0; }
.hx-card-normal .hx-card-section:not(.hx-card-small):not(.hx-card-normal) {
padding: 14px 14px; }
.hx-card-group.hx-card-vertical > .hx-card-group:not(.hx-card-joint),
.hx-card-group.hx-card-vertical > .hx-card-section:not(.hx-card-joint) {
border-color: #E7E7E7; }
.hx-card-group:not(.hx-card-vertical) > .hx-card-group:not(.hx-card-joint),
.hx-card-group:not(.hx-card-vertical) > .hx-card-section:not(.hx-card-joint) {
border-color: #E7E7E7; }
.hx-card-action:hover {
background: #F3F3F3; }
.hx-card-icon {
color: #3D3D3D; }
.hx-background-action .hx-card-title,
.hx-background-positive .hx-card-title,
.hx-background-warning .hx-card-title,
.hx-background-negative .hx-card-title,
.hx-background-info .hx-card-title {
color: white; }
.hx-background-action .hx-card-icon,
.hx-background-positive .hx-card-icon,
.hx-background-warning .hx-card-icon,
.hx-background-negative .hx-card-icon,
.hx-background-info .hx-card-icon {
color: white; }
.hx-data-table .hx-data-table-row-no-data, .hx-data-table .hx-data-table-row-no-data:hover {
background: transparent;
color: #3D3D3D; }
.hx-data-table.hx-data-table-compact .hx-data-table-row,
.hx-data-table.hx-data-table-compact .hx-data-table-collapsible-content-row {
color: #3D3D3D;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-data-table.hx-data-table-compact .hx-data-table-row {
background: #FFFFFF;
color: #3D3D3D; }
.hx-data-table.hx-data-table-compact .hx-data-table-row:hover {
background: #FAFAFA;
color: #3D3D3D; }
.hx-data-table.hx-data-table-compact .hx-data-table-row.hx-data-table-row-selected {
background: #95d8f3; }
.hx-data-table .hx-data-table-table tr.hx-data-table-collapsible-content-row, .hx-data-table .hx-data-table-table tr.hx-data-table-collapsible-content-row:hover {
background: #FFFFFF;
color: #3D3D3D; }
.hx-data-table .hx-data-table-table tr.hx-data-table-row-disabled, .hx-data-table .hx-data-table-table tr.hx-data-table-row-disabled:hover {
background: #FAFAFA;
color: #939393; }
.hx-data-table .hx-data-table-table tr.hx-data-table-row-selected {
background: #95d8f3; }
.hx-data-table .hx-data-table-control-panel-bottom,
.hx-data-table .hx-data-table-control-panel-compact,
.hx-data-table .hx-data-table-control-panel {
background: #FFFFFF;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-data-table .hx-data-table-status-bar {
background: #00ADA8;
color: white; }
.hx-data-table .hx-data-table-loading {
background: rgba(255, 255, 255, 0.4); }
.hx-drawing-sidebar {
background: transparent;
color: #3D3D3D; }
.hx-drawing-sidebar .hx-drawing-sidebar-title {
background: #F9F9F9;
color: #3D3D3D; }
.hx-drawing-sidebar-t {
border-bottom: 1px solid #E7E7E7; }
.hx-drawing-sidebar-r {
border-left: 1px solid #E7E7E7; }
.hx-drawing-sidebar-b {
border-top: 1px solid #E7E7E7; }
.hx-drawing-sidebar-l {
border-right: 1px solid #E7E7E7; }
.hx-error-message {
background: #FFFFFF;
padding: 32px;
box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.05);
border-radius: 2px; }
.hx-error-message-heading {
font-size: 2em;
color: #00ADA8; }
.hx-label {
background: #FFFFFF;
color: #3D3D3D; }
.hx-label.hx-action {
background: #00ADA8;
color: #F3F3F3; }
.hx-label.hx-positive {
background: #92BF17;
color: #F3F3F3; }
.hx-label.hx-negative {
background: #EC3A65;
color: #F3F3F3; }
.hx-label.hx-warning {
background: #D69B24;
color: #F3F3F3; }
.hx-label.hx-info {
background: #B36ABB;
color: #F3F3F3; }
.hx-label.hx-complement {
background: #F7F7F9;
color: #3D3D3D; }
.hx-label.hx-contrast {
background: #4A4E4E;
color: #F3F3F3; }
.hx-notice {
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-notice > .hx-notice-head,
.hx-notice > .hx-notice-header {
background: #FAFAFA;
color: #3D3D3D; }
.hx-notice > .hx-notice-body {
background: #FFFFFF;
color: #3D3D3D; }
.hx-notice.hx-action > .hx-notice-head,
.hx-notice.hx-action > .hx-notice-header {
background: #00ADA8;
color: #F3F3F3; }
.hx-notice.hx-action > .hx-notice-body {
background: #0BBDB8;
color: #F3F3F3; }
.hx-notice.hx-positive > .hx-notice-head,
.hx-notice.hx-positive > .hx-notice-header {
background: #92BF17;
color: #F3F3F3; }
.hx-notice.hx-positive > .hx-notice-body {
background: #9ECA26;
color: #F3F3F3; }
.hx-notice.hx-negative > .hx-notice-head,
.hx-notice.hx-negative > .hx-notice-header {
background: #EC3A65;
color: #F3F3F3; }
.hx-notice.hx-negative > .hx-notice-body {
background: #EC426C;
color: #F3F3F3; }
.hx-notice.hx-warning > .hx-notice-head,
.hx-notice.hx-warning > .hx-notice-header {
background: #D69B24;
color: #F3F3F3; }
.hx-notice.hx-warning > .hx-notice-body {
background: #E4AE41;
color: #F3F3F3; }
.hx-notice.hx-info > .hx-notice-head,
.hx-notice.hx-info > .hx-notice-header {
background: #B36ABB;
color: #F3F3F3; }
.hx-notice.hx-info > .hx-notice-body {
background: #B674BD;
color: #F3F3F3; }
.hx-notice.hx-complement > .hx-notice-head,
.hx-notice.hx-complement > .hx-notice-header {
background: #F7F7F9;
color: #3D3D3D; }
.hx-notice.hx-complement > .hx-notice-body {
background: #FFFFFF;
color: #3D3D3D; }
.hx-notice.hx-contrast > .hx-notice-head,
.hx-notice.hx-contrast > .hx-notice-header {
background: #4A4E4E;
color: #F3F3F3; }
.hx-notice.hx-contrast > .hx-notice-body {
background: #3E4444;
color: #F3F3F3; }
.hx-side-collapsible-heading {
background: #FAFAFA;
color: #3D3D3D; }
.hx-side-collapsible-toggle:hover,
.hx-side-collapsible-heading:not(.hx-side-collapsible-heading-no-hover):hover {
background: #00ADA8;
color: white; }
.hx-side-collapsible-toggle {
background: #FFFFFF;
color: #3D3D3D; }
.hx-side-collapsible-content {
border-color: "";
background: #FFFFFF; }
.hx-side-collapsible {
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-sidebar {
background: #FFFFFF;
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-sidebar.hx-animate {
transition: opacity 0.15s, width 0.15s; }
.hx-sidebar .hx-sidebar-section:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar .hx-sidebar-indent > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar .hx-sidebar-indent > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar .hx-collapsible-content > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar .hx-collapsible-content > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar .hx-collapsible-heading:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent) {
color: #3D3D3D; }
.hx-sidebar .hx-sidebar-section:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar .hx-sidebar-indent > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar .hx-sidebar-indent > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar .hx-collapsible-content > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar .hx-collapsible-content > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar .hx-collapsible-heading:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected {
background: #00ADA8;
color: #F3F3F3; }
.hx-sidebar .hx-sidebar-section:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar .hx-sidebar-indent > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar .hx-sidebar-indent > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar .hx-collapsible-content > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar .hx-collapsible-content > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar .hx-collapsible-heading:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover {
background: #1DBFBB;
color: #F3F3F3; }
.hx-sidebar .hx-sidebar-indent > div,
.hx-sidebar .hx-sidebar-indent > a,
.hx-sidebar .hx-collapsible-content > div,
.hx-sidebar .hx-collapsible-content > a,
.hx-sidebar > .hx-collapsible > .hx-collapsible-content > .hx-collapsible {
border-left: solid 1px transparent; }
.hx-sidebar .hx-sidebar-title {
color: #3D3D3D;
font-family: "Open Sans", sans-serif;
background: #FAFAFA; }
.hx-sidebar-page .hx-titlebar-sidebar-button {
background: #F8F8F8;
color: rgba(0, 0, 0, 0.3); }
.hx-sidebar-page .hx-titlebar-sidebar-button:hover {
color: rgba(0, 0, 0, 0.6); }
.hx-sidebar-page .hx-content.hx-animate {
transition: left 0.15s; }
.hx-sidebar-page .hx-titlebar-icon {
background: #F8F8F8; }
.hx-tabs-content {
background: #FDFDFD;
color: #3D3D3D;
border-color: #9F9F9F;
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-tab {
background: #FDFDFD;
color: #3D3D3D;
opacity: 0.25;
border-color: #9F9F9F; }
.hx-tab.hx-tab-active {
opacity: 1; }
.hx-tab.hx-action {
border-color: #00ADA8; }
.hx-tab.hx-positive {
border-color: #92BF17; }
.hx-tab.hx-negative {
border-color: #EC3A65; }
.hx-tab.hx-warning {
border-color: #D69B24; }
.hx-tab.hx-info {
border-color: #B36ABB; }
.hx-tab.hx-complement {
border-color: #F7F7F9; }
.hx-tab.hx-contrast {
border-color: #4A4E4E; }
.hx-tree-node-parent,
.hx-tree-node-content {
background: #FFFFFF; }
.hx-tree-node-parent .hx-tree-node-parent-icon {
background: #00ADA8;
color: white; }
.hx-tree-node-parent .hx-tree-node-parent-icon:hover {
background: #1DBFBB;
color: white; }
.hx-tree-node-parent .hx-tree-node-parent-icon.hx-tree-node-parent-icon-disabled, .hx-tree-node-parent .hx-tree-node-parent-icon.hx-tree-node-parent-icon-disabled:hover {
background: #FAFAFA;
color: #F0F0F0; }
.hx-tree-node-children {
border-left-color: #00ADA8; }
.hx-tree-node-children > .hx-tree-node > .hx-tree-node-content,
.hx-tree-node-parent {
box-shadow: 1px 1px 1px rgba(128, 128, 128, 0.17); } | docs/resources/hexagon/1.9.0/hexagon.theme.css | .hx-spinner {
border: 3px solid #00ADA8;
border-right-color: transparent; }
.hx-spinner-wide::after {
background: #00ADA8; }
.hx-form-error {
color: #F7F7F9; }
.hx-form-error .hx-form-error-text-container .hx-form-error-text {
background: #4A4E4E; }
.hx-form-error .hx-form-error-text-container .hx-form-error-text:before {
border-bottom-color: #4A4E4E; }
.hx-modal-shade {
background: rgba(0, 0, 0, 0.5); }
.hx-modal {
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5); }
.hx-modal-title-container {
font-size: 1.17em;
background: #FFFFFF;
border-radius: 3px 3px 0 0;
color: #3D3D3D;
border-color: #D0D0D0; }
.hx-modal-content {
background: #FFFFFF;
border-radius: 0 0 3px 3px; }
.hx-modal-title-empty + .hx-modal-content {
border-radius: 3px; }
.hx-notification-container {
background: #f7f7f9;
border: solid 1px transparent;
border-top: none;
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.05); }
.hx-notification {
background-color: #FFFFFF;
color: #3D3D3D;
border-color: #D0D0D0; }
.hx-notification .hx-notification-icon {
color: #FFFFFF; }
.hx-notification.hx-positive .hx-notification-icon {
color: #92BF17; }
.hx-notification.hx-warning .hx-notification-icon {
color: #D69B24; }
.hx-notification.hx-negative .hx-notification-icon {
color: #EC3A65; }
.hx-notification.hx-info .hx-notification-icon {
color: #B36ABB; }
.hx-notification-close {
color: #939393; }
.hx-notification-close:hover {
color: #3D3D3D; }
.hx-notification-pin {
color: #939393; }
.hx-notification-pin:hover {
color: #3D3D3D; }
.hx-notification-pin-pinned {
color: #00ADA8; }
.hx-notification-pin-pinned:hover {
color: #037774; }
body, button, textarea,
input {
font-family: "Open Sans", sans-serif;
font-size: 14px; }
body {
background: #f7f7f9;
color: #3D3D3D; }
h1,
h2,
h3,
h4,
h5,
h6,
.hx-header-large,
.hx-header-medium,
.hx-header-small,
.hx-header {
font-family: "Open Sans", sans-serif;
color: #3D3D3D; }
textarea,
input {
background-color: white;
border-color: #DADADA;
color: #3D3D3D;
border-radius: 2px; }
textarea:focus,
input:focus {
border-color: #00ADA8; }
textarea:invalid,
input:invalid {
border-color: #DE1A4A; }
select {
border-color: #D8D8D8;
background: #FAFAFA;
color: #3D3D3D; }
select:focus {
border-color: #B5B5B5; }
::-moz-selection {
background: #B4B1B5; }
::selection {
background: #B4B1B5; }
a {
color: #00ADA8; }
hr {
border-color: #D0D0D0;
border-style: solid; }
.hx-btn {
background: #FFFFFF;
color: #3D3D3D;
border-color: #e6e6e6; }
.hx-btn:active, .hx-btn:hover {
background: #f2f2f2; }
.hx-btn:focus {
box-shadow: 0 0 0 1px #e6e6e6; }
.hx-btn.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-btn-invert:hover {
background: #F2F2F2;
color: #FFFFFF;
color: #3D3D3D; }
.hx-btn.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(230, 230, 230, 0.5); }
.hx-btn.hx-action {
background: #00ADA8;
color: #F3F3F3;
border-color: #007a76; }
.hx-btn.hx-action:active, .hx-btn.hx-action:hover {
background: #00e0da; }
.hx-btn.hx-action:focus {
box-shadow: 0 0 0 1px #007a76; }
.hx-btn.hx-action.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-action.hx-btn-invert:hover {
background: #F2F2F2;
color: #00ADA8; }
.hx-btn.hx-action.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(0, 122, 118, 0.5); }
.hx-btn.hx-positive {
background: #92BF17;
color: #F3F3F3;
border-color: #6f9112; }
.hx-btn.hx-positive:active, .hx-btn.hx-positive:hover {
background: #b1e524; }
.hx-btn.hx-positive:focus {
box-shadow: 0 0 0 1px #6f9112; }
.hx-btn.hx-positive.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-positive.hx-btn-invert:hover {
background: #F2F2F2;
color: #92BF17; }
.hx-btn.hx-positive.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(111, 145, 18, 0.5); }
.hx-btn.hx-negative {
background: #EC3A65;
color: #F3F3F3;
border-color: #de1546; }
.hx-btn.hx-negative:active, .hx-btn.hx-negative:hover {
background: #f06989; }
.hx-btn.hx-negative:focus {
box-shadow: 0 0 0 1px #de1546; }
.hx-btn.hx-negative.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-negative.hx-btn-invert:hover {
background: #F2F2F2;
color: #EC3A65; }
.hx-btn.hx-negative.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(222, 21, 70, 0.5); }
.hx-btn.hx-warning {
background: #D69B24;
color: #F3F3F3;
border-color: #aa7b1d; }
.hx-btn.hx-warning:active, .hx-btn.hx-warning:hover {
background: #e1b04c; }
.hx-btn.hx-warning:focus {
box-shadow: 0 0 0 1px #aa7b1d; }
.hx-btn.hx-warning.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-warning.hx-btn-invert:hover {
background: #F2F2F2;
color: #D69B24; }
.hx-btn.hx-warning.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(170, 123, 29, 0.5); }
.hx-btn.hx-info {
background: #B36ABB;
color: #F3F3F3;
border-color: #9d4ca6; }
.hx-btn.hx-info:active, .hx-btn.hx-info:hover {
background: #c58dcb; }
.hx-btn.hx-info:focus {
box-shadow: 0 0 0 1px #9d4ca6; }
.hx-btn.hx-info.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-info.hx-btn-invert:hover {
background: #F2F2F2;
color: #B36ABB; }
.hx-btn.hx-info.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(157, 76, 166, 0.5); }
.hx-btn.hx-complement {
background: #F7F7F9;
color: #3D3D3D;
border-color: #dadae3; }
.hx-btn.hx-complement:active, .hx-btn.hx-complement:hover {
background: #e8e8ee; }
.hx-btn.hx-complement:focus {
box-shadow: 0 0 0 1px #dadae3; }
.hx-btn.hx-complement.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-complement.hx-btn-invert:hover {
background: #F2F2F2;
color: #F7F7F9;
color: #3D3D3D; }
.hx-btn.hx-complement.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(218, 218, 227, 0.5); }
.hx-btn.hx-contrast {
background: #4A4E4E;
color: #F3F3F3;
border-color: #313434; }
.hx-btn.hx-contrast:active, .hx-btn.hx-contrast:hover {
background: #636868; }
.hx-btn.hx-contrast:focus {
box-shadow: 0 0 0 1px #313434; }
.hx-btn.hx-contrast.hx-btn-invert {
background: #FDFDFD;
color: gray;
border-color: #e4e4e4; }
.hx-btn.hx-contrast.hx-btn-invert:hover {
background: #F2F2F2;
color: #4A4E4E; }
.hx-btn.hx-contrast.hx-btn-invert:focus {
box-shadow: 0 0 0 1px rgba(49, 52, 52, 0.5); }
.hx-btn.hx-btn-invisible {
color: #575757;
border: none;
background: transparent; }
.hx-btn.hx-btn-invisible:hover, .hx-btn.hx-btn-invisible:active {
background: transparent; }
.hx-btn:disabled, .hx-btn.hx-disabled, .hx-btn:disabled:hover, .hx-btn:disabled:active, .hx-btn.hx-disabled:hover, .hx-btn.hx-disabled:active {
background: #FAFAFA;
color: #939393;
border: 1px solid #e1e1e1; }
.hx-dropdown {
background: #FFFFFF;
box-shadow: 0px 2px 2px 2px rgba(0, 0, 0, 0.05);
border-color: #E7E7E7;
margin-top: 0px; }
.hx-collapsible-heading {
background: #FAFAFA;
color: #3D3D3D; }
.hx-collapsible-toggle:hover,
.hx-collapsible-heading:not(.hx-collapsible-heading-no-hover):hover {
background: #00ADA8;
color: white; }
.hx-collapsible-toggle {
background: #FFFFFF;
color: #3D3D3D; }
.hx-collapsible-content {
border-color: "";
background: #FFFFFF;
color: #3D3D3D; }
.hx-collapsible {
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-text-default {
color: #FFFFFF !important; }
.hx-background-default {
background-color: #FFFFFF !important;
color: #3D3D3D !important; }
.hx-background-default a, .hx-background-default .hx-background-text-color, .hx-background-default .hx-header {
color: #3D3D3D !important; }
.hx-border-default {
border-color: #FFFFFF !important; }
.hx-text-action {
color: #00ADA8 !important; }
.hx-background-action {
background-color: #00ADA8 !important;
color: #F3F3F3 !important; }
.hx-background-action a, .hx-background-action .hx-background-text-color, .hx-background-action .hx-header {
color: #F3F3F3 !important; }
.hx-border-action {
border-color: #00ADA8 !important; }
.hx-text-positive {
color: #92BF17 !important; }
.hx-background-positive {
background-color: #92BF17 !important;
color: #F3F3F3 !important; }
.hx-background-positive a, .hx-background-positive .hx-background-text-color, .hx-background-positive .hx-header {
color: #F3F3F3 !important; }
.hx-border-positive {
border-color: #92BF17 !important; }
.hx-text-warning {
color: #D69B24 !important; }
.hx-background-warning {
background-color: #D69B24 !important;
color: #F3F3F3 !important; }
.hx-background-warning a, .hx-background-warning .hx-background-text-color, .hx-background-warning .hx-header {
color: #F3F3F3 !important; }
.hx-border-warning {
border-color: #D69B24 !important; }
.hx-text-negative {
color: #EC3A65 !important; }
.hx-background-negative {
background-color: #EC3A65 !important;
color: #F3F3F3 !important; }
.hx-background-negative a, .hx-background-negative .hx-background-text-color, .hx-background-negative .hx-header {
color: #F3F3F3 !important; }
.hx-border-negative {
border-color: #EC3A65 !important; }
.hx-text-info {
color: #B36ABB !important; }
.hx-background-info {
background-color: #B36ABB !important;
color: #F3F3F3 !important; }
.hx-background-info a, .hx-background-info .hx-background-text-color, .hx-background-info .hx-header {
color: #F3F3F3 !important; }
.hx-border-info {
border-color: #B36ABB !important; }
.hx-text-complement {
color: #F7F7F9 !important; }
.hx-background-complement {
background-color: #F7F7F9 !important;
color: #3D3D3D !important; }
.hx-background-complement a, .hx-background-complement .hx-background-text-color, .hx-background-complement .hx-header {
color: #3D3D3D !important; }
.hx-border-complement {
border-color: #F7F7F9 !important; }
.hx-text-contrast {
color: #4A4E4E !important; }
.hx-background-contrast {
background-color: #4A4E4E !important;
color: #F3F3F3 !important; }
.hx-background-contrast a, .hx-background-contrast .hx-background-text-color, .hx-background-contrast .hx-header {
color: #F3F3F3 !important; }
.hx-border-contrast {
border-color: #4A4E4E !important; }
.hx-text-disabled {
color: #939393 !important; }
.hx-background-disabled {
background-color: #FAFAFA !important; }
.hx-border-disabled {
border-color: #FAFAFA !important; }
.hx-input-group > input {
border-color: #DADADA;
background-color: white; }
.hx-input-group > input:invalid {
border-color: #DE1A4A; }
.hx-input-group > input:focus {
border-color: #00ADA8; }
.hx-input-group > div, .hx-input-group > span, .hx-input-group > a {
border-color: #DADADA;
background: #FDFDFD; }
.hx-input-group > i {
border-color: #DADADA;
background: #F9F9F9; }
.hx-menu-item {
color: #3D3D3D;
background: #FFFFFF; }
.hx-menu-item > .hx-collapsible > .hx-menu-collapsible {
background: #FDFDFD;
color: #3D3D3D; }
.hx-menu-item.hx-menu-link:hover,
.hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #F9F9F9;
color: #3D3D3D;
border-color: transparent;
border-width: 2px; }
.hx-menu-item.hx-menu-item-disabled {
background: #FAFAFA;
color: #939393; }
.hx-menu-items:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu-items:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #F9F9F9;
border-color: transparent; }
.hx-menu.hx-action .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-action .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #00ADA8; }
.hx-menu.hx-action .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #68f7f3;
color: #3D3D3D; }
.hx-menu.hx-action:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-action:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #00ADA8; }
.hx-menu.hx-action:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #68f7f3;
color: #3D3D3D; }
.hx-menu.hx-positive .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-positive .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #92BF17; }
.hx-menu.hx-positive .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #d7ec9c;
color: #3D3D3D; }
.hx-menu.hx-positive:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-positive:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #92BF17; }
.hx-menu.hx-positive:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #d7ec9c;
color: #3D3D3D; }
.hx-menu.hx-negative .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-negative .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #EC3A65; }
.hx-menu.hx-negative .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #fadfe5;
color: #3D3D3D; }
.hx-menu.hx-negative:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-negative:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #EC3A65; }
.hx-menu.hx-negative:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #fadfe5;
color: #3D3D3D; }
.hx-menu.hx-warning .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-warning .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #D69B24; }
.hx-menu.hx-warning .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #efdfbd;
color: #3D3D3D; }
.hx-menu.hx-warning:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-warning:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #D69B24; }
.hx-menu.hx-warning:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #efdfbd;
color: #3D3D3D; }
.hx-menu.hx-info .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-info .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #B36ABB; }
.hx-menu.hx-info .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #f0e6f1;
color: #3D3D3D; }
.hx-menu.hx-info:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-info:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #B36ABB; }
.hx-menu.hx-info:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #f0e6f1;
color: #3D3D3D; }
.hx-menu.hx-complement .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-complement .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #F7F7F9; }
.hx-menu.hx-complement .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #d0d0d4;
color: #3D3D3D; }
.hx-menu.hx-complement:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-complement:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #F7F7F9; }
.hx-menu.hx-complement:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #d0d0d4;
color: #3D3D3D; }
.hx-menu.hx-contrast .hx-menu-item.hx-menu-link:hover,
.hx-menu.hx-contrast .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
border-color: #4A4E4E; }
.hx-menu.hx-contrast .hx-menu-item > .hx-collapsible > .hx-menu-collapsible:hover {
background: #a5a5a5;
color: #3D3D3D; }
.hx-menu.hx-contrast:not(:hover) .hx-menu-active.hx-menu-link,
.hx-menu.hx-contrast:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
border-color: #4A4E4E; }
.hx-menu.hx-contrast:not(:hover) .hx-menu-active > .hx-collapsible > .hx-menu-collapsible {
background: #a5a5a5;
color: #3D3D3D; }
.hx-date-picker {
background: white;
border-color: #DADADA; }
.hx-date-picker .hx-icon:not(.hx-date-to-icon) {
background: #00ADA8;
color: white; }
.hx-date-input.hx-date-error {
background: #FCBFBF;
outline-color: #DE1A4A; }
.hx-date-picker-calendar .hx-calendar-header {
color: #3D3D3D; }
.hx-date-picker-calendar .hx-calendar-header .hx-calendar-back,
.hx-date-picker-calendar .hx-calendar-header .hx-calendar-forward {
color: #939393; }
.hx-date-picker-calendar .hx-calendar-header .hx-calendar-back:hover,
.hx-date-picker-calendar .hx-calendar-header .hx-calendar-forward:hover {
color: #3D3D3D; }
.hx-date-picker-calendar .hx-grid-row.hx-grid-row-heading {
border-color: #D0D0D0; }
.hx-date-picker-calendar .hx-grid .hx-grid-text {
border-radius: 2px; }
.hx-date-picker-calendar .hx-grid:hover .hx-grid-text {
background: #00ADA8;
color: #F3F3F3; }
.hx-date-picker-calendar .hx-grid.hx-grid-today .hx-grid-text {
background: #FFFFFF;
color: #3D3D3D; }
.hx-date-picker-calendar .hx-grid.hx-grid-selected .hx-grid-text {
background: #00ADA8;
color: #F3F3F3; }
.hx-date-picker-calendar .hx-grid.hx-grid-selected-range .hx-grid-range-bg, .hx-date-picker-calendar .hx-grid.hx-grid-selected .hx-grid-range-bg {
background: #F9F9F9; }
.hx-date-picker-calendar .hx-grid.hx-grid-out-of-range {
color: #939393; }
.hx-date-picker-calendar .hx-grid.hx-grid-out-of-range:hover .hx-grid-text {
color: #939393; }
.hx-time-picker {
background: white;
border-color: #DADADA; }
.hx-time-picker .hx-icon {
background: #00ADA8;
color: white; }
.hx-time-picker.hx-time-error {
background: #FCBFBF;
outline: solid 1px #DE1A4A; }
.hx-drag-placeholder div {
border-color: #D0D0D0; }
.hx-content {
padding-left: 1em;
padding-right: 1em;
max-width: 1200px;
background: transparent; }
.hx-heading + .hx-content {
padding-top: 1em; }
.hx-layout {
margin: 0.3em; }
.hx-group > .hx-section {
margin: 0.3em; }
.hx-group > .hx-section.hx-btn {
margin: 0.3em; }
.hx-small,
.hx-medium,
.hx-large {
min-width: 250px; }
.hx-small {
-webkit-flex-basis: 21%;
-ms-flex-preferred-size: 21%;
flex-basis: 21%;
-webkit-flex-basis: calc(25% - (2 * 0.3em));
-ms-flex-preferred-size: calc(25% - (2 * 0.3em));
flex-basis: calc(25% - (2 * 0.3em)); }
.hx-medium {
-webkit-flex-basis: 40%;
-ms-flex-preferred-size: 40%;
flex-basis: 40%;
-webkit-flex-basis: calc(50% - (2 * 0.3em));
-ms-flex-preferred-size: calc(50% - (2 * 0.3em));
flex-basis: calc(50% - (2 * 0.3em)); }
.hx-large {
-webkit-flex-basis: 90%;
-ms-flex-preferred-size: 90%;
flex-basis: 90%;
-webkit-flex-basis: calc(100% - (2 * 0.3em));
-ms-flex-preferred-size: calc(100% - (2 * 0.3em));
flex-basis: calc(100% - (2 * 0.3em)); }
@media (max-width: 1300px) {
.hx-content {
max-width: 900px; } }
.hx-border {
border: solid 1px #D0D0D0; }
.hx-border-top {
border-top: solid 1px #D0D0D0; }
.hx-border-right {
border-right: solid 1px #D0D0D0; }
.hx-border-bottom {
border-bottom: solid 1px #D0D0D0; }
.hx-border-left {
border-left: solid 1px #D0D0D0; }
.hx-progress-bar {
border-color: none;
border-width: 0;
background-color: rgba(227, 227, 227, 0.3); }
.hx-progress-bar.hx-action .hx-progress-bar-inner {
background: #00ADA8; }
.hx-progress-bar.hx-positive .hx-progress-bar-inner {
background: #92BF17; }
.hx-progress-bar.hx-negative .hx-progress-bar-inner {
background: #EC3A65; }
.hx-progress-bar.hx-warning .hx-progress-bar-inner {
background: #D69B24; }
.hx-progress-bar.hx-info .hx-progress-bar-inner {
background: #B36ABB; }
.hx-progress-bar.hx-complement .hx-progress-bar-inner {
background: #F7F7F9; }
.hx-progress-bar.hx-contrast .hx-progress-bar-inner {
background: #4A4E4E; }
.hx-progress-bar .hx-progress-bar-inner {
background-color: #FFFFFF; }
.hx-progress-bar .hx-progress-bar-inner.hx-action {
background: #00ADA8; }
.hx-progress-bar .hx-progress-bar-inner.hx-positive {
background: #92BF17; }
.hx-progress-bar .hx-progress-bar-inner.hx-negative {
background: #EC3A65; }
.hx-progress-bar .hx-progress-bar-inner.hx-warning {
background: #D69B24; }
.hx-progress-bar .hx-progress-bar-inner.hx-info {
background: #B36ABB; }
.hx-progress-bar .hx-progress-bar-inner.hx-complement {
background: #F7F7F9; }
.hx-progress-bar .hx-progress-bar-inner.hx-contrast {
background: #4A4E4E; }
.hx-axis-line {
stroke: #D0D0D0; }
.hx-tick-line {
stroke: #D0D0D0; }
.hx-axis text {
font-size: 10px;
fill: #3D3D3D; }
.hx-legend-box {
fill: #FDFDFD;
stroke: #E7E7E7; }
.hx-legend-entry text {
fill: #3D3D3D; }
.hx-axis-title {
fill: #3D3D3D; }
.hx-vertical-grid-line, .hx-horizontal-grid-line {
stroke: #E7E7E7; }
.hx-pie-segment-text {
fill: rgba(255, 255, 255, 0.8);
font-size: 15px;
font-weight: bold; }
.hx-plot-text-warm {
color: #faa95b; }
.hx-plot-text-ambient {
color: #e2d440; }
.hx-plot-text-cold {
color: #5a9bd4; }
.hx-plot-text-positive {
color: #97c366; }
.hx-plot-text-warning {
color: #e2d440; }
.hx-plot-text-negative {
color: #f15a71; }
.hx-plot-background-warm {
color: white;
background: #faa95b; }
.hx-plot-background-ambient {
color: white;
background: #e2d440; }
.hx-plot-background-cold {
color: white;
background: #5a9bd4; }
.hx-plot-background-positive {
color: white;
background: #97c366; }
.hx-plot-background-warning {
color: white;
background: #e2d440; }
.hx-plot-background-negative {
color: white;
background: #f15a71; }
.hx-plot-label-details {
background: #FDFDFD;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25); }
.hx-plot-label-details-basic {
background: #FDFDFD;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25); }
.hx-plot-label-details-header {
background: #FFFFFF;
border-color: #D0D0D0; }
.hx-plot-label-marker {
border-color: #FDFDFD;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25); }
.hx-sticky-table-scroll-top,
.hx-sticky-table-scroll-right,
.hx-sticky-table-scroll-bottom,
.hx-sticky-table-scroll-left {
box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.5); }
.hx-table tr, .hx-table td, .hx-table th {
border-color: #E2E1E1; }
.hx-table th {
background: #FFFFFF;
color: #3D3D3D; }
.hx-table tbody tr {
background: #f7f7f9;
color: #3D3D3D; }
.hx-table tbody tr:nth-child(2n) {
background: #F3F3F3;
color: #3D3D3D; }
.hx-table tbody tr:hover {
background: #E4E4E4; }
.hx-toggle > .hx-toggle-box {
background: #D5D5D5; }
.hx-toggle > .hx-toggle-box:before {
background: #ABABAB; }
.hx-toggle > .hx-toggle-box.hx-toggle-box-on {
background: #D5D5D5; }
.hx-toggle > .hx-toggle-box.hx-toggle-box-on:before {
background: #B2BA32; }
.hx-tag-input {
border-color: #DADADA;
background: #FDFDFD; }
.hx-tag {
background: #FFFFFF;
color: #3D3D3D;
border-color: #e6e6e6; }
.hx-tag.hx-action {
background: #00ADA8;
color: #F3F3F3;
border-color: #007a76; }
.hx-tag.hx-positive {
background: #92BF17;
color: #F3F3F3;
border-color: #6f9112; }
.hx-tag.hx-warning {
background: #D69B24;
color: #F3F3F3;
border-color: #aa7b1d; }
.hx-tag.hx-negative {
background: #EC3A65;
color: #F3F3F3;
border-color: #de1546; }
.hx-tag.hx-info {
background: #B36ABB;
color: #F3F3F3;
border-color: #9d4ca6; }
.hx-tag.hx-complement {
background: #F7F7F9;
color: #3D3D3D;
border-color: #dadae3; }
.hx-tag.hx-contrast {
background: #4A4E4E;
color: #F3F3F3;
border-color: #313434; }
.hx-tag.hx-disabled {
background: #FAFAFA;
color: #939393; }
body.hx-heading-fixed .hx-heading + .hx-content,
body.hx-full-screen .hx-heading + .hx-content {
margin-top: 46px; }
body.hx-titlebar-link-padding .hx-heading + .hx-content {
margin-top: 86px; }
.hx-heading {
border-bottom-width: 0;
border-bottom-color: #D0D0D0;
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.05); }
.hx-titlebar {
background: #F8F8F8;
color: #3D3D3D;
font-weight: 100; }
.hx-titlebar-header {
max-height: 46px;
min-height: 46px; }
.hx-titlebar-title {
font-family: "Open Sans", sans-serif;
font-size: 1.7em;
line-height: 46px;
color: #00ADA8; }
.hx-titlebar-title a {
color: #3D3D3D; }
.hx-titlebar-subtitle {
font-family: "Open Sans", sans-serif; }
.hx-titlebar-subtitle a {
color: #3D3D3D; }
.hx-titlebar-menu-icon,
.hx-titlebar-menu-content {
color: rgba(0, 0, 0, 0.3); }
.hx-titlebar-menu-icon:hover {
color: rgba(0, 0, 0, 0.6); }
.hx-titlebar-icon {
background: transparent; }
.hx-titlebar-icon img {
max-height: 46px; }
.hx-titlebar-menu-icon-mobile {
font-size: 1.7em; }
.hx-titlebar-linkbar {
background: #FFFFFF; }
.hx-titlebar-link {
color: #3D3D3D; }
.hx-titlebar-link.hx-selected {
border-bottom-color: #D0DDEE; }
.hx-titlebar-link:hover {
border-bottom-color: #00ADA8;
color: #00ADA8; }
@media (min-width: 901px) {
.hx-titlebar-menu-content {
color: white; }
.hx-titlebar-menu-icon {
border-color: transparent; }
.hx-titlebar-menu-icon:hover span.hx-titlebar-menu-text {
background: #4A4E4E;
color: #F7F7F9; }
.hx-titlebar-menu-icon:hover span.hx-titlebar-menu-text:before {
border-bottom-color: #4A4E4E; } }
.hx-titlebar.hx-action {
background: #00ADA8; }
.hx-titlebar.hx-negative {
background: #EC3A65; }
.hx-titlebar.hx-positive {
background: #92BF17; }
.hx-titlebar.hx-warning {
background: #D69B24; }
.hx-titlebar.hx-info {
background: #B36ABB; }
.hx-titlebar.hx-action, .hx-titlebar.hx-negative, .hx-titlebar.hx-positive, .hx-titlebar.hx-warning, .hx-titlebar.hx-info {
color: #F3F3F3; }
.hx-titlebar.hx-action .hx-titlebar-icon, .hx-titlebar.hx-negative .hx-titlebar-icon, .hx-titlebar.hx-positive .hx-titlebar-icon, .hx-titlebar.hx-warning .hx-titlebar-icon, .hx-titlebar.hx-info .hx-titlebar-icon {
background: #FFFFFF; }
.hx-titlebar.hx-action .hx-titlebar-menu-icon, .hx-titlebar.hx-negative .hx-titlebar-menu-icon, .hx-titlebar.hx-positive .hx-titlebar-menu-icon, .hx-titlebar.hx-warning .hx-titlebar-menu-icon, .hx-titlebar.hx-info .hx-titlebar-menu-icon {
color: rgba(255, 255, 255, 0.5); }
.hx-titlebar.hx-action .hx-titlebar-menu-icon:hover, .hx-titlebar.hx-negative .hx-titlebar-menu-icon:hover, .hx-titlebar.hx-positive .hx-titlebar-menu-icon:hover, .hx-titlebar.hx-warning .hx-titlebar-menu-icon:hover, .hx-titlebar.hx-info .hx-titlebar-menu-icon:hover {
color: rgba(255, 255, 255, 0.85); }
.hx-titlebar.hx-action .hx-titlebar-title, .hx-titlebar.hx-negative .hx-titlebar-title, .hx-titlebar.hx-positive .hx-titlebar-title, .hx-titlebar.hx-warning .hx-titlebar-title, .hx-titlebar.hx-info .hx-titlebar-title {
color: #F3F3F3; }
@media (max-width: 900px) {
body.hx-titlebar-link-padding .hx-heading + .hx-content {
margin-top: 46px; }
.hx-titlebar .hx-titlebar-menu-icons {
background: white; }
.hx-titlebar .hx-titlebar-menu-icons .hx-titlebar-menu-icon {
color: #3D3D3D; }
.hx-titlebar .hx-titlebar-menu-icons .hx-titlebar-menu-icon:hover {
color: #3D3D3D; } }
.hx-slider-inner:before {
content: ' ';
top: 25%;
height: 50%;
background: #FDFDFD;
border-radius: 20px; }
.hx-slider-range {
top: 25%;
height: 50%;
background: #00ADA8;
border-radius: 20px; }
.hx-slider.hx-disabled .hx-slider-range {
background: #BBBBBB; }
.hx-slider-range:before, .hx-slider-range:after {
background: #DADADA;
border-radius: 20px; }
.hx-slider-double .hx-slider-range:before {
border-radius: 20px 0 0 20px; }
.hx-slider-double .hx-slider-range:after {
border-radius: 0 20px 20px 0; }
.hx-slider-value {
color: #F7F7F9;
background: #4A4E4E;
border-radius: 5px; }
.hx-slider-value:before {
border-top-color: #4A4E4E; }
.hx-slider-value.hx-slider-under:before {
border-top-color: transparent;
border-bottom-color: #4A4E4E; }
.hx-slider-point {
border-radius: 20px;
background: #E2E2E2;
height: 50%;
top: 25%; }
.hx-card {
border-color: #E7E7E7;
background: #FFFFFF;
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05); }
.hx-card > .hx-card-group:not(.hx-card-joint),
.hx-card > .hx-card-section:not(.hx-card-joint) {
border-color: #E7E7E7; }
.hx-card-header {
color: #3D3D3D;
background: #FAFAFA; }
.hx-card-text {
color: #3D3D3D; }
.hx-card-section {
padding: 14px; }
.hx-card-section.hx-card-joint {
padding-right: 0; }
.hx-card-small.hx-card-section {
padding: 7px 14px; }
.hx-card-small.hx-card-section.hx-card-joint {
padding-right: 0; }
.hx-card-small .hx-card-section:not(.hx-card-small):not(.hx-card-normal) {
padding: 7px 14px; }
.hx-card-normal.hx-card-section {
padding: 14px 14px; }
.hx-card-normal.hx-card-section.hx-card-joint {
padding-right: 0; }
.hx-card-normal .hx-card-section:not(.hx-card-small):not(.hx-card-normal) {
padding: 14px 14px; }
.hx-card-group.hx-card-vertical > .hx-card-group:not(.hx-card-joint),
.hx-card-group.hx-card-vertical > .hx-card-section:not(.hx-card-joint) {
border-color: #E7E7E7; }
.hx-card-group:not(.hx-card-vertical) > .hx-card-group:not(.hx-card-joint),
.hx-card-group:not(.hx-card-vertical) > .hx-card-section:not(.hx-card-joint) {
border-color: #E7E7E7; }
.hx-card-action:hover {
background: #F3F3F3; }
.hx-card-icon {
color: #3D3D3D; }
.hx-background-action .hx-card-title,
.hx-background-positive .hx-card-title,
.hx-background-warning .hx-card-title,
.hx-background-negative .hx-card-title,
.hx-background-info .hx-card-title {
color: white; }
.hx-background-action .hx-card-icon,
.hx-background-positive .hx-card-icon,
.hx-background-warning .hx-card-icon,
.hx-background-negative .hx-card-icon,
.hx-background-info .hx-card-icon {
color: white; }
.hx-data-table .hx-data-table-row-no-data, .hx-data-table .hx-data-table-row-no-data:hover {
background: transparent;
color: #3D3D3D; }
.hx-data-table.hx-data-table-compact .hx-data-table-row,
.hx-data-table.hx-data-table-compact .hx-data-table-collapsible-content-row {
color: #3D3D3D;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-data-table.hx-data-table-compact .hx-data-table-row {
background: #FFFFFF;
color: #3D3D3D; }
.hx-data-table.hx-data-table-compact .hx-data-table-row:hover {
background: #FAFAFA;
color: #3D3D3D; }
.hx-data-table.hx-data-table-compact .hx-data-table-row.hx-data-table-row-selected {
background: #95d8f3; }
.hx-data-table .hx-data-table-table tr.hx-data-table-collapsible-content-row, .hx-data-table .hx-data-table-table tr.hx-data-table-collapsible-content-row:hover {
background: #FFFFFF;
color: #3D3D3D; }
.hx-data-table .hx-data-table-table tr.hx-data-table-row-disabled, .hx-data-table .hx-data-table-table tr.hx-data-table-row-disabled:hover {
background: #FAFAFA;
color: #939393; }
.hx-data-table .hx-data-table-table tr.hx-data-table-row-selected {
background: #95d8f3; }
.hx-data-table .hx-data-table-control-panel-bottom,
.hx-data-table .hx-data-table-control-panel-compact,
.hx-data-table .hx-data-table-control-panel {
background: #FFFFFF;
box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-data-table .hx-data-table-status-bar {
background: #00ADA8;
color: white; }
.hx-data-table .hx-data-table-loading {
background: rgba(255, 255, 255, 0.4); }
.hx-drawing-sidebar {
background: transparent;
color: #3D3D3D; }
.hx-drawing-sidebar .hx-drawing-sidebar-title {
background: #F9F9F9;
color: #3D3D3D; }
.hx-drawing-sidebar-t {
border-bottom: 1px solid #E7E7E7; }
.hx-drawing-sidebar-r {
border-left: 1px solid #E7E7E7; }
.hx-drawing-sidebar-b {
border-top: 1px solid #E7E7E7; }
.hx-drawing-sidebar-l {
border-right: 1px solid #E7E7E7; }
.hx-error-message {
background: #FFFFFF;
padding: 32px;
box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.05);
border-radius: 2px; }
.hx-error-message-heading {
font-size: 2em;
color: #00ADA8; }
.hx-label {
background: #FFFFFF;
color: #3D3D3D; }
.hx-label.hx-action {
background: #00ADA8;
color: #F3F3F3; }
.hx-label.hx-positive {
background: #92BF17;
color: #F3F3F3; }
.hx-label.hx-negative {
background: #EC3A65;
color: #F3F3F3; }
.hx-label.hx-warning {
background: #D69B24;
color: #F3F3F3; }
.hx-label.hx-info {
background: #B36ABB;
color: #F3F3F3; }
.hx-label.hx-complement {
background: #F7F7F9;
color: #3D3D3D; }
.hx-label.hx-contrast {
background: #4A4E4E;
color: #F3F3F3; }
.hx-notice {
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-notice > .hx-notice-head,
.hx-notice > .hx-notice-header {
background: #FAFAFA;
color: #3D3D3D; }
.hx-notice > .hx-notice-body {
background: #FFFFFF;
color: #3D3D3D; }
.hx-notice.hx-action > .hx-notice-head,
.hx-notice.hx-action > .hx-notice-header {
background: #00ADA8;
color: #F3F3F3; }
.hx-notice.hx-action > .hx-notice-body {
background: #0BBDB8;
color: #F3F3F3; }
.hx-notice.hx-positive > .hx-notice-head,
.hx-notice.hx-positive > .hx-notice-header {
background: #92BF17;
color: #F3F3F3; }
.hx-notice.hx-positive > .hx-notice-body {
background: #9ECA26;
color: #F3F3F3; }
.hx-notice.hx-negative > .hx-notice-head,
.hx-notice.hx-negative > .hx-notice-header {
background: #EC3A65;
color: #F3F3F3; }
.hx-notice.hx-negative > .hx-notice-body {
background: #EC426C;
color: #F3F3F3; }
.hx-notice.hx-warning > .hx-notice-head,
.hx-notice.hx-warning > .hx-notice-header {
background: #D69B24;
color: #F3F3F3; }
.hx-notice.hx-warning > .hx-notice-body {
background: #E4AE41;
color: #F3F3F3; }
.hx-notice.hx-info > .hx-notice-head,
.hx-notice.hx-info > .hx-notice-header {
background: #B36ABB;
color: #F3F3F3; }
.hx-notice.hx-info > .hx-notice-body {
background: #B674BD;
color: #F3F3F3; }
.hx-notice.hx-complement > .hx-notice-head,
.hx-notice.hx-complement > .hx-notice-header {
background: #F7F7F9;
color: #3D3D3D; }
.hx-notice.hx-complement > .hx-notice-body {
background: #FFFFFF;
color: #3D3D3D; }
.hx-notice.hx-contrast > .hx-notice-head,
.hx-notice.hx-contrast > .hx-notice-header {
background: #4A4E4E;
color: #F3F3F3; }
.hx-notice.hx-contrast > .hx-notice-body {
background: #3E4444;
color: #F3F3F3; }
.hx-side-collapsible-heading {
background: #FAFAFA;
color: #3D3D3D; }
.hx-side-collapsible-toggle:hover,
.hx-side-collapsible-heading:not(.hx-side-collapsible-heading-no-hover):hover {
background: #00ADA8;
color: white; }
.hx-side-collapsible-toggle {
background: #FFFFFF;
color: #3D3D3D; }
.hx-side-collapsible-content {
border-color: "";
background: #FFFFFF; }
.hx-side-collapsible {
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-sidebar {
background: #FFFFFF;
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-sidebar.hx-animate {
transition: opacity 0.15s, width 0.15s; }
.hx-sidebar .hx-sidebar-section:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar .hx-sidebar-indent > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar .hx-sidebar-indent > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar .hx-collapsible-content > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar .hx-collapsible-content > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent),
.hx-sidebar .hx-collapsible-heading:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent) {
color: #3D3D3D; }
.hx-sidebar .hx-sidebar-section:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar .hx-sidebar-indent > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar .hx-sidebar-indent > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar .hx-collapsible-content > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar .hx-collapsible-content > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected,
.hx-sidebar .hx-collapsible-heading:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent).hx-selected {
background: #00ADA8;
color: #F3F3F3; }
.hx-sidebar .hx-sidebar-section:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar .hx-sidebar-indent > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar .hx-sidebar-indent > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar .hx-collapsible-content > div:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar .hx-collapsible-content > a:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover,
.hx-sidebar .hx-collapsible-heading:not(.hx-sidebar-clear):not(.hx-collapsible):not(.hx-sidebar-title):not(.hx-sidebar-indent):hover {
background: #1DBFBB;
color: #F3F3F3; }
.hx-sidebar .hx-sidebar-indent > div,
.hx-sidebar .hx-sidebar-indent > a,
.hx-sidebar .hx-collapsible-content > div,
.hx-sidebar .hx-collapsible-content > a,
.hx-sidebar > .hx-collapsible > .hx-collapsible-content > .hx-collapsible {
border-left: solid 1px transparent; }
.hx-sidebar .hx-sidebar-title {
color: #3D3D3D;
font-family: "Open Sans", sans-serif;
background: #FAFAFA; }
.hx-sidebar-page .hx-titlebar-sidebar-button {
background: #F8F8F8;
color: rgba(0, 0, 0, 0.3); }
.hx-sidebar-page .hx-titlebar-sidebar-button:hover {
color: rgba(0, 0, 0, 0.6); }
.hx-sidebar-page .hx-content.hx-animate {
transition: left 0.15s; }
.hx-sidebar-page .hx-titlebar-icon {
background: #F8F8F8; }
.hx-tabs-content {
background: #FDFDFD;
color: #3D3D3D;
border-color: #9F9F9F;
box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.05); }
.hx-tab {
background: #FDFDFD;
color: #3D3D3D;
opacity: 0.25;
border-color: #9F9F9F; }
.hx-tab.hx-tab-active {
opacity: 1; }
.hx-tab.hx-action {
border-color: #00ADA8; }
.hx-tab.hx-positive {
border-color: #92BF17; }
.hx-tab.hx-negative {
border-color: #EC3A65; }
.hx-tab.hx-warning {
border-color: #D69B24; }
.hx-tab.hx-info {
border-color: #B36ABB; }
.hx-tab.hx-complement {
border-color: #F7F7F9; }
.hx-tab.hx-contrast {
border-color: #4A4E4E; }
.hx-tree-node-parent,
.hx-tree-node-content {
background: #FFFFFF; }
.hx-tree-node-parent .hx-tree-node-parent-icon {
background: #00ADA8;
color: white; }
.hx-tree-node-parent .hx-tree-node-parent-icon:hover {
background: #1DBFBB;
color: white; }
.hx-tree-node-parent .hx-tree-node-parent-icon.hx-tree-node-parent-icon-disabled, .hx-tree-node-parent .hx-tree-node-parent-icon.hx-tree-node-parent-icon-disabled:hover {
background: #FAFAFA;
color: #F0F0F0; }
.hx-tree-node-children {
border-left-color: #00ADA8; }
.hx-tree-node-children > .hx-tree-node > .hx-tree-node-content,
.hx-tree-node-parent {
box-shadow: 1px 1px 1px rgba(128, 128, 128, 0.17); } | 0.227985 | 0.106877 |
*{
margin: 0px;
padding: 0px;
list-style: none;
text-decoration: none;
scrollbar-color: rgb(71, 68, 68) transparent;
scrollbar-width: thin;
scroll-behavior: smooth;
}
input:focus{
outline: none;
}
textarea:focus{
outline: none;
}
.contenu{
width: 100%;
height: auto;
margin: 0;
padding: 0;
display: grid;
background-color:rgb(206, 202, 202);
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 0.3fr 6fr 2fr;
grid-template-areas:
"nav nav nav nav"
"droit gauche gauche"
"footer footer footer footer"
;
}
/*navigation*/
.navv{
grid-area: nav;
display: flex;
justify-content:space-around;
align-items: center;
background-color:white;
box-shadow: 3px 10px 8px #888888;
border-bottom:1px solid black;
z-index: 10;
position: fixed;
top:5px;
width: 100%;
height: 50px;
}
.logo{
display: flex;
}
.lo{
background-color: aqua;
display: flex;
align-items: center;
justify-content: space-around;
}
.logo img{
position: absolute;
height: 40px;
width: 40px;
border: none;
border-radius: 100%;
left: 10px;
top: 5px;
}
.logo input#recherche{
background: inherit;
border: none;
border-radius: 20px;
padding-left:15px ;
font-size: 11px;
color:black;
height: 30px;
background-color: rgb(133, 128, 128);
opacity:0.7;
width: 200px;
}
.logo input#recherche:hover{
opacity: 1;
}
.logo button#rech{
height: 30px;
width: 50px;
opacity: 0.8;
background: inherit;
font-size: 15px;
}
.logo button#rech:hover{
opacity: 1;
}
.reseau{
position:absolute;
justify-content: center;
align-items: center;
right:15px;
top:350px;
}
.reseau ul{
list-style-type: none;
}
.reseau a{
text-decoration: none;
color: white;
font-size: 13px;
font-weight: bolder;
opacity:0.8;
justify-content: center;
align-items: center;
}
.reseau li{
width:40px;
background-color: rgb(133, 128, 128);
height:40px;
border-radius:100%;
justify-content: center;
text-align:center;
align-items: center;
}
.reseau li :hover{
opacity:1;
color:white;
}
.droit{
grid-area: droit;
display: flex;
justify-content:space-around;
background-repeat: round;
height:100vh;
overflow-y: scroll;
margin-bottom: 0px;
}
.droit h2{
font-family: cursive;
color: saddlebrown;
text-align: center;
}
.droit p{
color: rgb(10, 10, 10);
font-weight: bolder;
margin: 2px;
}
/*contacte*/
.ligne{
padding-bottom: 5px;
border-bottom: 14px solid rgb(75, 78, 75);
}
.form1{
width: 100%;
background-repeat:round;
padding: 20px;
overflow-y: scroll;
scrollbar-color: rgb(51, 51, 51) transparent;
scrollbar-width: thin;
scroll-behavior: smooth;
scrollbar-width: 1;
font-size: 20px;
font-family: cursive;
}
.form1 .gr{
font-size: 30px;
}
@keyframes anim{
0%{
transform: translatey(500px);
}
0%{
transform: translatey(-500px);
}
}
.form1 input{
border: none;
width: 350px;
padding-left: 8px;
font-size: 11px;
color: black;
background-color: inherit;
}
.form1 button{
background-color: rgba(51, 54, 51, 0.9);
padding: 8px;
border-radius: 15px;
border: none;
color: rgb(255, 255, 255);
font-weight: bolder;
font-family: cursives;
opacity: 0.8;
width: 200px;
font-size: 20px;
}
.form1 button:hover{
opacity: 1;
color: white;
}
.centre{
text-align: center;
}
.form1 .com{
width: 96%;
border: 5px solid rgb(82, 85, 82);
padding: 10px;
background-color: inherit;
}
.gauche{
grid-area: gauche;
width: 100%;
background-repeat:round;
padding: 20px;
overflow-y: scroll;
scrollbar-color: rgb(51, 51, 51) transparent;
scrollbar-width: thin;
scroll-behavior: smooth;
scrollbar-width: 1;
font-size: 20px;
font-family: cursive;
height: 100vh;
}
.gauche img{
height: 70%;
width: 100%;
}
.gauche H3{
text-align:center ;
font-size: 15px;
color: coral;
font-family:cursive;
padding: 10px;
font-weight: bolder;
}
.gauche p{
text-align: center;
color: black;
font-family: cursive;
padding: 12PX;
}
.gauche .actualite{
border: 10px solid rgb(133, 128, 128);
background-color: rgb(133, 128, 128);
margin: 10px;
height: 40%;
}
.gauche .nouveaute{
border: 10px solid rgb(133, 128, 128);
background-color: rgb(133, 128, 128);
margin: 10px;
height: 40%;
}
.footer{
grid-area: footer;
padding: 10px;
align-items: center;
justify-content:space-around;
}
/*nav menu*/
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li{
float: left;
width: 150px;
height: 40px;
line-height: 40px;
text-align: center;
position: relative;
}
nav li a{
width: 100%;
height: 100%;
display: block;
color: rgb(68, 63, 63);
text-decoration: none;
opacity: 0.5;
font-family:Verdana, Geneva, Tahoma, sans-serif;
font-weight: bolder;
font-size: 12px;
}
nav li a:hover{
opacity: 1;
border-bottom:2px solid rgba(202, 209, 202, 0.9);
cursor: pointer;
text-decoration: none;
}
nav ul .sub{
position: absolute;
display: none;
}
nav ul .sub li{
width: 250px;
background: rgba(172, 179, 172, 0.9);
}
.sub li a{
font-size: 12px;
color: whitesmoke;
}
nav ul .sub li ul.sub{
top: 0;
left:150px
}
.tsipika{
position: absolute;
top :13px;
right: 13px;
font-size: 20px;
color: rgb(29, 23, 24);
opacity: 0.7;
}
@media screen and (max-width: 700px ){
.contenu{
display: grid;
grid-template-columns: 1fr ;
grid-template-rows: 0.4fr 0.1fr 6fr 2.5fr 2.5fr;
grid-template-areas:
"nav"
"slogon"
"droit"
"gauche"
"footer"
;
}
.navv{
padding: 5px;
height: auto;
align-items: center;
justify-content: center;
line-height: 0px;
}
.navv .menu{
display: none;
}
.navv .reseau{
display: none;
}
.navv .logo{
line-height: 1px;
text-align: center;
align-items: center;
justify-content: center;
display: inline;
margin-top: 55px;
margin: auto;
position: static;
width: 100%;
}
.navv img{
position: static;
width: 40px;
height: 40px;
border: none;
margin: 0;
}
.logo input#recherche{
width: 150px;
text-align: center;
margin: 0;
height: 25px;
}
.lo{
justify-content: center;
}
.logo button#rech{
width:25px;
height: 25px;
margin: 0;
}
.tsipika{
right: 20px;
}}
/*dropdown*/
.login{
position: absolute;
top: 34px;
right: 30px;
text-align: center;
display: none;
animation: anim 2s;
border-bottom-left-radius:15px ;
background-color: rgb(78, 82, 78);
}
@keyframes anim{
0%{
transform: translateX(150px);
}
100%{
transform: translateX(-1px);
}
}
.login li{
float: left;
width: 150px;
height: 40px;
line-height: 40px;
text-align: center;
}
#jo{
border-bottom: 1px solid green;
}
.login ul{
list-style: none;
margin: 0;
padding: 0;
}
.login a{
width: 100%;
height: 100%;
display: block;
color: whitesmoke;
text-decoration: none;
opacity: 0.5;
font-family:Verdana, Geneva, Tahoma, sans-serif;
font-weight: bolder;
font-size: 15px;
}
.login a:hover{
opacity: 1;
color: rgb(41, 36, 36);
}
.tsipika:hover{
color: rgb(255, 255, 255);
opacity: 1;
}
.active{
opacity: 1;
background: rgba(175, 184, 175, 0.9);
color: whitesmoke;
}
.logine{
width: 500px;
}
/*footer*/
.footer{
display: flex;
}
.bas,.l{
text-align: center;
}
.footer img{
width: 70px;
height: 70px;
border-radius: 100%;
}
.footer h1{
font-size: 15px;
color: chocolate;
font-family:fantasy;
margin: 10px 0px;
}
.footer hr{
width: 50%;
color: white;
margin-left: 25%;
margin-top: 10px;
margin-bottom: 10px;
}
/*next one*/
.nextone{
/* background-color: rgba(245, 236, 236, 0.5);
background: linear-gradient(120deg, rgb(104, 100, 100), rgb(176, 176, 182));*/
width: 100%;
background-repeat:round;
padding: 20px;
overflow-y: scroll;
scrollbar-color: rgb(51, 51, 51) transparent;
scrollbar-width: thin;
scroll-behavior: smooth;
scrollbar-width: 1;
font-size: 20px;
font-family: cursive;
}
.nextone h1{
color: chocolate;
font-family:unset;
}
.nextone p{
color: black;
text-align: left;
}
.p{
text-indent: 100px;
}
.couleur{
color: rgba(238, 73, 13, 0.616);
font-family: cursive;
text-decoration: underline;
}
.ti{
font-size: 25px;
color: black;
text-decoration: underline;
}
.couleure{
color: rgba(238, 73, 13, 0.616);
}
.s{
font-size: 30px;
color: rgba(220, 20, 60, 0.61);
font-family: cursive;
}
.savoir{
display: flex;
justify-content: space-between;
}
.cercle{
width: 300px;
height: 300px;
border-radius: 100%;
background: rgba(235, 102, 40, 0.555);
display: flex;
align-items: center;
justify-content:space-around;
padding: 10px;
}
.cercle P{
color: lemonchiffon;
text-align: center;
font-size: 20px;
}
.rect{
width: 300px;
height: 300px;
border-radius: 100%;
align-items: center;
padding-top: 70px;
}
.rect p{
border:2px solid rgb(56, 46, 46);
text-align: center;
height: 50px;
font-weight: bolder;
background-color: rgba(255, 99, 71, 0.342);
padding-top: 5px;
align-items: center;
}
.savoir img{
width: 210px;
height: 90px;
border: none;
border-radius: 15px;
}
.vert{
color: chartreuse;
background-color:chartreuse ;
}
.mavokely{
color: rgb(226, 52, 139);
background-color:rgb(226, 52, 139) ;
}
.red{
color: red;
background-color: red;
}
.violet{
color: rgb(136, 96, 177);
background-color: rgb(136, 96, 177);
}
.jaunne{
color:yellow;
background-color: yellow;
}
.bleu{
color: rgb(37, 225, 231);
background-color:rgb(37, 225, 231) ;
}
.carre{
width: 50px;
height: 40px;
}
.styl{
display: flex;
justify-content: space-between;
margin: 0px 50px;
padding: 50px;
}
/*qui somme-nous*/
.somme{
width: 100%;
background-repeat:round;
padding: 20px;
scrollbar-color: rgb(51, 51, 51) transparent;
scrollbar-width: thin;
scroll-behavior: smooth;
scrollbar-width: 1;
font-size: 20px;
font-family: cursive;
}
.somme h1{
color: chocolate;
font-family:unset;
}
.somme p{
color: black;
text-align: left;
}
.somme .ti{
font-size: 20px;
font-weight: bolder;
color: rgba(180, 163, 139, 0.822);
}
.somme .centre{
text-align: center;
position: relative;
}
.somme img{
width: 400px;
}
.somme .abso{
position: absolute;
width: 50px;
top:30%;
left: 50%;
color: rgb(228, 19, 19);
font-size: 20px;
font-family: cursive;
}
.somme .abso img{
width: 50px;
}
.somme .abs{
position: absolute;
width: 50px;
top:30%;
left: 50%;
color: coral;
}
.conclu{
display: flex;
}
.conclu .n{
padding-top: 0%;
font-size: 20px;
padding-left: 19px;
font-family: cursive;
}
.n p{
color: rgba(255, 2, 2, 0.651);
margin-bottom: 50px;
}
/*srvice et etous*/
.service{
width: 100%;
background-repeat:round;
padding: 20px;
overflow-y: scroll;
scrollbar-color: rgb(51, 51, 51) transparent;
scrollbar-width: thin;
scroll-behavior: smooth;
scrollbar-width: 1;
font-size: 20px;
font-family: cursive;
}
.service .p{
text-align: left;
}
.service .carre{
width: 40px;
height: 40px;
background-color: white;
color: white;
}
.service .rouge{
color: tomato;
}
.service .a{
display: flex;
justify-content: space-around;
}
.service .pad{
font-size: 30px;
color: rgb(243, 170, 33);
font-family: cursive;
}
.service .st{
font-size: 40px;
color: rgb(241, 136, 241);
}
.service .c{
font-size: 30px;
}
.service .c p{
color: rgb(243, 170, 33);
font-family:cursive;
}
.service .g{
font-size: 40px;
}
.service .carre2{
width: 40px;
height: 40px;
background-color:rgb(197, 147, 147);
color: rgb(197, 147, 147);
}
/*carosel*/
.carousel-inner img {
width: 100%;
height: 100%;
} | public/css/style.css | *{
margin: 0px;
padding: 0px;
list-style: none;
text-decoration: none;
scrollbar-color: rgb(71, 68, 68) transparent;
scrollbar-width: thin;
scroll-behavior: smooth;
}
input:focus{
outline: none;
}
textarea:focus{
outline: none;
}
.contenu{
width: 100%;
height: auto;
margin: 0;
padding: 0;
display: grid;
background-color:rgb(206, 202, 202);
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 0.3fr 6fr 2fr;
grid-template-areas:
"nav nav nav nav"
"droit gauche gauche"
"footer footer footer footer"
;
}
/*navigation*/
.navv{
grid-area: nav;
display: flex;
justify-content:space-around;
align-items: center;
background-color:white;
box-shadow: 3px 10px 8px #888888;
border-bottom:1px solid black;
z-index: 10;
position: fixed;
top:5px;
width: 100%;
height: 50px;
}
.logo{
display: flex;
}
.lo{
background-color: aqua;
display: flex;
align-items: center;
justify-content: space-around;
}
.logo img{
position: absolute;
height: 40px;
width: 40px;
border: none;
border-radius: 100%;
left: 10px;
top: 5px;
}
.logo input#recherche{
background: inherit;
border: none;
border-radius: 20px;
padding-left:15px ;
font-size: 11px;
color:black;
height: 30px;
background-color: rgb(133, 128, 128);
opacity:0.7;
width: 200px;
}
.logo input#recherche:hover{
opacity: 1;
}
.logo button#rech{
height: 30px;
width: 50px;
opacity: 0.8;
background: inherit;
font-size: 15px;
}
.logo button#rech:hover{
opacity: 1;
}
.reseau{
position:absolute;
justify-content: center;
align-items: center;
right:15px;
top:350px;
}
.reseau ul{
list-style-type: none;
}
.reseau a{
text-decoration: none;
color: white;
font-size: 13px;
font-weight: bolder;
opacity:0.8;
justify-content: center;
align-items: center;
}
.reseau li{
width:40px;
background-color: rgb(133, 128, 128);
height:40px;
border-radius:100%;
justify-content: center;
text-align:center;
align-items: center;
}
.reseau li :hover{
opacity:1;
color:white;
}
.droit{
grid-area: droit;
display: flex;
justify-content:space-around;
background-repeat: round;
height:100vh;
overflow-y: scroll;
margin-bottom: 0px;
}
.droit h2{
font-family: cursive;
color: saddlebrown;
text-align: center;
}
.droit p{
color: rgb(10, 10, 10);
font-weight: bolder;
margin: 2px;
}
/*contacte*/
.ligne{
padding-bottom: 5px;
border-bottom: 14px solid rgb(75, 78, 75);
}
.form1{
width: 100%;
background-repeat:round;
padding: 20px;
overflow-y: scroll;
scrollbar-color: rgb(51, 51, 51) transparent;
scrollbar-width: thin;
scroll-behavior: smooth;
scrollbar-width: 1;
font-size: 20px;
font-family: cursive;
}
.form1 .gr{
font-size: 30px;
}
@keyframes anim{
0%{
transform: translatey(500px);
}
0%{
transform: translatey(-500px);
}
}
.form1 input{
border: none;
width: 350px;
padding-left: 8px;
font-size: 11px;
color: black;
background-color: inherit;
}
.form1 button{
background-color: rgba(51, 54, 51, 0.9);
padding: 8px;
border-radius: 15px;
border: none;
color: rgb(255, 255, 255);
font-weight: bolder;
font-family: cursives;
opacity: 0.8;
width: 200px;
font-size: 20px;
}
.form1 button:hover{
opacity: 1;
color: white;
}
.centre{
text-align: center;
}
.form1 .com{
width: 96%;
border: 5px solid rgb(82, 85, 82);
padding: 10px;
background-color: inherit;
}
.gauche{
grid-area: gauche;
width: 100%;
background-repeat:round;
padding: 20px;
overflow-y: scroll;
scrollbar-color: rgb(51, 51, 51) transparent;
scrollbar-width: thin;
scroll-behavior: smooth;
scrollbar-width: 1;
font-size: 20px;
font-family: cursive;
height: 100vh;
}
.gauche img{
height: 70%;
width: 100%;
}
.gauche H3{
text-align:center ;
font-size: 15px;
color: coral;
font-family:cursive;
padding: 10px;
font-weight: bolder;
}
.gauche p{
text-align: center;
color: black;
font-family: cursive;
padding: 12PX;
}
.gauche .actualite{
border: 10px solid rgb(133, 128, 128);
background-color: rgb(133, 128, 128);
margin: 10px;
height: 40%;
}
.gauche .nouveaute{
border: 10px solid rgb(133, 128, 128);
background-color: rgb(133, 128, 128);
margin: 10px;
height: 40%;
}
.footer{
grid-area: footer;
padding: 10px;
align-items: center;
justify-content:space-around;
}
/*nav menu*/
nav ul {
list-style: none;
margin: 0;
padding: 0;
}
nav li{
float: left;
width: 150px;
height: 40px;
line-height: 40px;
text-align: center;
position: relative;
}
nav li a{
width: 100%;
height: 100%;
display: block;
color: rgb(68, 63, 63);
text-decoration: none;
opacity: 0.5;
font-family:Verdana, Geneva, Tahoma, sans-serif;
font-weight: bolder;
font-size: 12px;
}
nav li a:hover{
opacity: 1;
border-bottom:2px solid rgba(202, 209, 202, 0.9);
cursor: pointer;
text-decoration: none;
}
nav ul .sub{
position: absolute;
display: none;
}
nav ul .sub li{
width: 250px;
background: rgba(172, 179, 172, 0.9);
}
.sub li a{
font-size: 12px;
color: whitesmoke;
}
nav ul .sub li ul.sub{
top: 0;
left:150px
}
.tsipika{
position: absolute;
top :13px;
right: 13px;
font-size: 20px;
color: rgb(29, 23, 24);
opacity: 0.7;
}
@media screen and (max-width: 700px ){
.contenu{
display: grid;
grid-template-columns: 1fr ;
grid-template-rows: 0.4fr 0.1fr 6fr 2.5fr 2.5fr;
grid-template-areas:
"nav"
"slogon"
"droit"
"gauche"
"footer"
;
}
.navv{
padding: 5px;
height: auto;
align-items: center;
justify-content: center;
line-height: 0px;
}
.navv .menu{
display: none;
}
.navv .reseau{
display: none;
}
.navv .logo{
line-height: 1px;
text-align: center;
align-items: center;
justify-content: center;
display: inline;
margin-top: 55px;
margin: auto;
position: static;
width: 100%;
}
.navv img{
position: static;
width: 40px;
height: 40px;
border: none;
margin: 0;
}
.logo input#recherche{
width: 150px;
text-align: center;
margin: 0;
height: 25px;
}
.lo{
justify-content: center;
}
.logo button#rech{
width:25px;
height: 25px;
margin: 0;
}
.tsipika{
right: 20px;
}}
/*dropdown*/
.login{
position: absolute;
top: 34px;
right: 30px;
text-align: center;
display: none;
animation: anim 2s;
border-bottom-left-radius:15px ;
background-color: rgb(78, 82, 78);
}
@keyframes anim{
0%{
transform: translateX(150px);
}
100%{
transform: translateX(-1px);
}
}
.login li{
float: left;
width: 150px;
height: 40px;
line-height: 40px;
text-align: center;
}
#jo{
border-bottom: 1px solid green;
}
.login ul{
list-style: none;
margin: 0;
padding: 0;
}
.login a{
width: 100%;
height: 100%;
display: block;
color: whitesmoke;
text-decoration: none;
opacity: 0.5;
font-family:Verdana, Geneva, Tahoma, sans-serif;
font-weight: bolder;
font-size: 15px;
}
.login a:hover{
opacity: 1;
color: rgb(41, 36, 36);
}
.tsipika:hover{
color: rgb(255, 255, 255);
opacity: 1;
}
.active{
opacity: 1;
background: rgba(175, 184, 175, 0.9);
color: whitesmoke;
}
.logine{
width: 500px;
}
/*footer*/
.footer{
display: flex;
}
.bas,.l{
text-align: center;
}
.footer img{
width: 70px;
height: 70px;
border-radius: 100%;
}
.footer h1{
font-size: 15px;
color: chocolate;
font-family:fantasy;
margin: 10px 0px;
}
.footer hr{
width: 50%;
color: white;
margin-left: 25%;
margin-top: 10px;
margin-bottom: 10px;
}
/*next one*/
.nextone{
/* background-color: rgba(245, 236, 236, 0.5);
background: linear-gradient(120deg, rgb(104, 100, 100), rgb(176, 176, 182));*/
width: 100%;
background-repeat:round;
padding: 20px;
overflow-y: scroll;
scrollbar-color: rgb(51, 51, 51) transparent;
scrollbar-width: thin;
scroll-behavior: smooth;
scrollbar-width: 1;
font-size: 20px;
font-family: cursive;
}
.nextone h1{
color: chocolate;
font-family:unset;
}
.nextone p{
color: black;
text-align: left;
}
.p{
text-indent: 100px;
}
.couleur{
color: rgba(238, 73, 13, 0.616);
font-family: cursive;
text-decoration: underline;
}
.ti{
font-size: 25px;
color: black;
text-decoration: underline;
}
.couleure{
color: rgba(238, 73, 13, 0.616);
}
.s{
font-size: 30px;
color: rgba(220, 20, 60, 0.61);
font-family: cursive;
}
.savoir{
display: flex;
justify-content: space-between;
}
.cercle{
width: 300px;
height: 300px;
border-radius: 100%;
background: rgba(235, 102, 40, 0.555);
display: flex;
align-items: center;
justify-content:space-around;
padding: 10px;
}
.cercle P{
color: lemonchiffon;
text-align: center;
font-size: 20px;
}
.rect{
width: 300px;
height: 300px;
border-radius: 100%;
align-items: center;
padding-top: 70px;
}
.rect p{
border:2px solid rgb(56, 46, 46);
text-align: center;
height: 50px;
font-weight: bolder;
background-color: rgba(255, 99, 71, 0.342);
padding-top: 5px;
align-items: center;
}
.savoir img{
width: 210px;
height: 90px;
border: none;
border-radius: 15px;
}
.vert{
color: chartreuse;
background-color:chartreuse ;
}
.mavokely{
color: rgb(226, 52, 139);
background-color:rgb(226, 52, 139) ;
}
.red{
color: red;
background-color: red;
}
.violet{
color: rgb(136, 96, 177);
background-color: rgb(136, 96, 177);
}
.jaunne{
color:yellow;
background-color: yellow;
}
.bleu{
color: rgb(37, 225, 231);
background-color:rgb(37, 225, 231) ;
}
.carre{
width: 50px;
height: 40px;
}
.styl{
display: flex;
justify-content: space-between;
margin: 0px 50px;
padding: 50px;
}
/*qui somme-nous*/
.somme{
width: 100%;
background-repeat:round;
padding: 20px;
scrollbar-color: rgb(51, 51, 51) transparent;
scrollbar-width: thin;
scroll-behavior: smooth;
scrollbar-width: 1;
font-size: 20px;
font-family: cursive;
}
.somme h1{
color: chocolate;
font-family:unset;
}
.somme p{
color: black;
text-align: left;
}
.somme .ti{
font-size: 20px;
font-weight: bolder;
color: rgba(180, 163, 139, 0.822);
}
.somme .centre{
text-align: center;
position: relative;
}
.somme img{
width: 400px;
}
.somme .abso{
position: absolute;
width: 50px;
top:30%;
left: 50%;
color: rgb(228, 19, 19);
font-size: 20px;
font-family: cursive;
}
.somme .abso img{
width: 50px;
}
.somme .abs{
position: absolute;
width: 50px;
top:30%;
left: 50%;
color: coral;
}
.conclu{
display: flex;
}
.conclu .n{
padding-top: 0%;
font-size: 20px;
padding-left: 19px;
font-family: cursive;
}
.n p{
color: rgba(255, 2, 2, 0.651);
margin-bottom: 50px;
}
/*srvice et etous*/
.service{
width: 100%;
background-repeat:round;
padding: 20px;
overflow-y: scroll;
scrollbar-color: rgb(51, 51, 51) transparent;
scrollbar-width: thin;
scroll-behavior: smooth;
scrollbar-width: 1;
font-size: 20px;
font-family: cursive;
}
.service .p{
text-align: left;
}
.service .carre{
width: 40px;
height: 40px;
background-color: white;
color: white;
}
.service .rouge{
color: tomato;
}
.service .a{
display: flex;
justify-content: space-around;
}
.service .pad{
font-size: 30px;
color: rgb(243, 170, 33);
font-family: cursive;
}
.service .st{
font-size: 40px;
color: rgb(241, 136, 241);
}
.service .c{
font-size: 30px;
}
.service .c p{
color: rgb(243, 170, 33);
font-family:cursive;
}
.service .g{
font-size: 40px;
}
.service .carre2{
width: 40px;
height: 40px;
background-color:rgb(197, 147, 147);
color: rgb(197, 147, 147);
}
/*carosel*/
.carousel-inner img {
width: 100%;
height: 100%;
} | 0.251648 | 0.064095 |
body{
font-family: 'Open Sans', sans-serif;
}
.def-btn{
border: 1px solid #99c50a;
background-color: #99c50a;
color: white;
padding: 10px 20px;
border-radius: 8px;
transition: 0.4s ease-in-out;
}
.def-btn:hover{
background-color: white;
color: #99c50a;
}
p{
color: #969595;
}
/* Nav */
.navbar{
background-color: white;
padding: 16px;
}
.nav-link{
text-decoration: none;
font-size: 14px;
padding-left: 16px !important;
color: #969595;
}
.nav-link:hover{
color: #504f4f;
}
/* Header */
header{
background-image: url(../img/bg.jpg);
background-repeat: no-repeat;
background-size: cover;
margin-top: 45px;
padding: 200px 0px;
}
header h1{
margin-top: 40px;
}
header button{
margin-top: 20px;
}
/* About Section */
.about{
text-align: center !important;
}
.about img{
margin: 0 auto;
}
.about h3{
padding-top: 30px;
}
.about p{
padding-top: 30px;
color: #969595;
}
/* Service Section */
.service{
padding: 0px;
overflow: hidden;
}
.service-1{
background-color: #e2f8ff !important;
padding: 50px 0;
}
.service-1 button{
background-color: #26a6d1;
border: 1px solid #26a6d1;
transition: 0.4s ease-in-out;
}
.service-1 button:hover{
color: #26a6d1;
}
.service-2{
background-color: #f5f9eb !important;
padding: 50px 0;
}
/* Project Section */
.project{
padding-bottom: 20px;
}
.offer{
padding-top: 50px;
}
.offer-text{
padding-top: 20px;
}
.offer-text p{
margin-bottom: 2px;
}
.project hr{
margin-top: 5px;
}
.see{
color: #747272;
}
.see:hover{
cursor: pointer;
}
.project button{
background-color: transparent;
color: #747272;
border: 1px solid #747272;
transition: 0.4s ease-in-out;
}
.project button:hover{
background-color: #747272;
color: white;
border: 1px solid #747272;
}
footer hr{
margin-bottom: 0px;
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
/* Header */
header{
padding: 140px 0px;
}
header h1{
font-size: 28px;
}
header h4{
font-size: 20px;
}
.sofa{
text-align: center;
}
.service h5{
margin-top: 20px;
}
.service p{
padding: auto 30px;
}
.project{
text-align: center;
padding: 60px 30px;
}
.card{
margin-bottom: 40px;
}
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
/* Header */
header{
padding: 140px 0px;
}
header h1{
font-size: 28px;
}
header h4{
font-size: 20px;
}
.sofa{
text-align: center;
}
.service h5{
margin-top: 20px;
}
.service p{
padding: auto 30px;
}
.project{
text-align: center;
}
.card{
margin-bottom: 40px;
}
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
/* Header */
header{
padding: 160px 0px;
}
header h1{
font-size: 36px;
}
/* About Section */
.about p{
padding: 20px 50px;
}
.about br{
display: none;
}
/* Project Section */
.card-title{
font-size: 14px;
}
.card-text{
font-size: 12px;
}
.offer-text p{
font-size: 10px;
}
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
} | css/style.css | body{
font-family: 'Open Sans', sans-serif;
}
.def-btn{
border: 1px solid #99c50a;
background-color: #99c50a;
color: white;
padding: 10px 20px;
border-radius: 8px;
transition: 0.4s ease-in-out;
}
.def-btn:hover{
background-color: white;
color: #99c50a;
}
p{
color: #969595;
}
/* Nav */
.navbar{
background-color: white;
padding: 16px;
}
.nav-link{
text-decoration: none;
font-size: 14px;
padding-left: 16px !important;
color: #969595;
}
.nav-link:hover{
color: #504f4f;
}
/* Header */
header{
background-image: url(../img/bg.jpg);
background-repeat: no-repeat;
background-size: cover;
margin-top: 45px;
padding: 200px 0px;
}
header h1{
margin-top: 40px;
}
header button{
margin-top: 20px;
}
/* About Section */
.about{
text-align: center !important;
}
.about img{
margin: 0 auto;
}
.about h3{
padding-top: 30px;
}
.about p{
padding-top: 30px;
color: #969595;
}
/* Service Section */
.service{
padding: 0px;
overflow: hidden;
}
.service-1{
background-color: #e2f8ff !important;
padding: 50px 0;
}
.service-1 button{
background-color: #26a6d1;
border: 1px solid #26a6d1;
transition: 0.4s ease-in-out;
}
.service-1 button:hover{
color: #26a6d1;
}
.service-2{
background-color: #f5f9eb !important;
padding: 50px 0;
}
/* Project Section */
.project{
padding-bottom: 20px;
}
.offer{
padding-top: 50px;
}
.offer-text{
padding-top: 20px;
}
.offer-text p{
margin-bottom: 2px;
}
.project hr{
margin-top: 5px;
}
.see{
color: #747272;
}
.see:hover{
cursor: pointer;
}
.project button{
background-color: transparent;
color: #747272;
border: 1px solid #747272;
transition: 0.4s ease-in-out;
}
.project button:hover{
background-color: #747272;
color: white;
border: 1px solid #747272;
}
footer hr{
margin-bottom: 0px;
}
/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
/* Header */
header{
padding: 140px 0px;
}
header h1{
font-size: 28px;
}
header h4{
font-size: 20px;
}
.sofa{
text-align: center;
}
.service h5{
margin-top: 20px;
}
.service p{
padding: auto 30px;
}
.project{
text-align: center;
padding: 60px 30px;
}
.card{
margin-bottom: 40px;
}
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
/* Header */
header{
padding: 140px 0px;
}
header h1{
font-size: 28px;
}
header h4{
font-size: 20px;
}
.sofa{
text-align: center;
}
.service h5{
margin-top: 20px;
}
.service p{
padding: auto 30px;
}
.project{
text-align: center;
}
.card{
margin-bottom: 40px;
}
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
/* Header */
header{
padding: 160px 0px;
}
header h1{
font-size: 36px;
}
/* About Section */
.about p{
padding: 20px 50px;
}
.about br{
display: none;
}
/* Project Section */
.card-title{
font-size: 14px;
}
.card-text{
font-size: 12px;
}
.offer-text p{
font-size: 10px;
}
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
} | 0.225843 | 0.053453 |
because hex color codes are rendered by all email clients
consistently. Whereas HSL colors don't work with Hotmail. */
img {
border: none;
-ms-interpolation-mode: bicubic;
max-width: 100%;
vertical-align: bottom;
}
body {
background-color: #f5f9f8;
font-family: sans-serif;
font-size: 14px;
line-height: 1.4;
margin: 0;
padding: 0;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
table {
border-collapse: separate;
mso-table-lspace: 0;
mso-table-rspace: 0;
width: 100%;
}
table td {
font-family: sans-serif;
font-size: 14px;
vertical-align: top;
}
.body {
background-color: #f5f9f8;
width: 100%;
}
.container {
display: block;
margin: 0 auto !important;
max-width: 500px;
padding: 10px;
}
.container.wide-container {
max-width: 700px;
}
.content {
box-sizing: border-box;
display: block;
margin: 20px auto 0;
max-width: 580px;
padding: 10px;
}
.content.wide-content {
max-width: 780px;
}
.main {
background-color: #fff;
border-radius: 3px;
width: 100%;
}
.wrapper {
box-sizing: border-box;
padding: 0 20px 20px;
}
.footer {
clear: both;
padding-top: 10px;
text-align: center;
width: 100%;
margin-top: 20px;
}
.footer td,
.footer p,
.footer span,
.footer a {
color: #5f5ec7;
font-size: 12px;
text-align: center;
}
.footer .content-block p {
margin-top: 0;
}
h1,
h2,
h3,
h4 {
color: #4e4d4d !important;
font-family: sans-serif;
font-weight: 600;
line-height: 1.4;
margin-bottom: 30px;
}
h1 {
font-size: 35px;
font-weight: 300;
text-align: center;
text-transform: capitalize;
}
h2 {
font-size: 24px;
margin-top: 20px;
margin-bottom: 10px;
}
ul,
ol {
/* Override excessive indentation seen in Gmail. */
padding-left: 5px;
}
p,
ul,
ol {
font-family: sans-serif;
font-size: 14px;
font-weight: normal;
margin: 10px 0;
}
p li,
ul li,
ol li {
list-style-position: outside;
margin-left: 15px;
}
a {
color: #5f5ec7;
text-decoration: underline;
}
a:hover {
color: #434388;
}
.important {
border-bottom: 3px solid #d4e3e8;
}
.button {
display: block;
padding: 10px 0;
margin: 20px auto;
width: 200px;
color: #5f5ec7;
border: 2px solid #5f5ec7;
background-color: #fff;
border-radius: 4px;
font-size: 16px;
outline: none;
font-family: sans-serif;
text-decoration: none;
text-align: center;
text-shadow: none;
}
a.button:hover {
background-color: #5f5ec7;
color: #fff;
text-decoration: none;
}
.preheader {
color: transparent;
display: none;
height: 0;
max-height: 0;
max-width: 0;
opacity: 0;
overflow: hidden;
mso-hide: all;
visibility: hidden;
width: 0;
}
.illustration {
pointer-events: none;
cursor: default !important;
z-index: 100;
}
#private-messages {
width: 600px;
font-size: 12px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.recipient_block {
background-color: #f0f4f5;
border: 1px solid #000;
margin-bottom: 4px;
}
.recipient_header {
color: #e0dada;
background-color: #444;
border-bottom: 1px solid #000;
font-weight: bold;
padding: 2px;
}
.message_content {
background-color: #eff3f4;
margin-left: 1px;
margin-right: 2px;
}
.message_sender {
font-weight: bold;
padding-top: 1px;
}
.message_content_block {
padding-left: 6px;
font-weight: normal;
}
.messages {
width: 600px;
font-size: 12px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
overflow-y: auto;
}
.hot_convo_recipient_block {
border: 1px solid #000;
margin-bottom: 4px;
}
.hot_convo_recipient_header {
background-color: #9ec9ff;
border-bottom: 1px solid #000;
font-weight: bold;
padding: 2px;
}
.hot_convo_message_content {
margin-left: 1px;
margin-right: 2px;
}
.hot_convo_message_sender {
font-weight: bold;
padding-top: 1px;
}
.recipient_block_with_messages {
border: 1px solid #000;
margin-bottom: 4px;
}
.recipient_header_with_messages {
background-color: #9ecaff;
border-bottom: 1px solid #000;
font-weight: bold;
padding: 2px;
}
.message_content_with_messages {
margin-left: 1px;
margin-right: 2px;
}
.recipient_block_without_messages {
background-color: #f0f4f5;
border: 1px solid #000;
margin-bottom: 4px;
}
.recipient_header_without_messages {
color: #fff;
background-color: #444;
border-bottom: 1px solid #000;
font-weight: bold;
padding: 2px;
}
.message_content_without_messages {
background-color: #f0f4f5;
margin-left: 1px;
margin-right: 2px;
}
.hot_convo_message_content_block {
padding-left: 6px;
font-weight: normal;
}
.email-preferences {
color: #666;
}
.email-preferences a {
color: #15c;
}
.missed_message {
padding-bottom: 10px;
}
.missed_message_sender {
text-decoration: underline;
font-weight: bold;
}
.content_disabled_help_link {
color: #15c;
}
@media only screen and (max-width: 620px) {
table[class="body"] h1 {
font-size: 28px !important;
margin-bottom: 10px !important;
}
table[class="body"] p,
table[class="body"] ul,
table[class="body"] ol,
table[class="body"] td,
table[class="body"] span,
table[class="body"] a {
font-size: 16px !important;
}
table[class="body"] .wrapper {
padding: 0 10px 10px;
}
table[class="body"] .article {
padding: 10px !important;
}
table[class="body"] .content {
padding: 0 !important;
}
table[class="body"] .container {
padding: 0 !important;
width: 100% !important;
}
table[class="body"] .main {
border-left-width: 0 !important;
border-radius: 0 !important;
border-right-width: 0 !important;
}
table[class="body"] .btn table {
width: 100% !important;
}
table[class="body"] .btn a {
width: 100% !important;
}
table[class="body"] .img-responsive {
height: auto !important;
max-width: 100% !important;
width: auto !important;
}
}
@media all {
.ExternalClass {
width: 100%;
}
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass font,
.ExternalClass td,
.ExternalClass div {
line-height: 100%;
}
/* iOS converts addresses in emails to links automatically */
.apple-link a {
color: inherit !important;
font-family: inherit !important;
font-size: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
text-decoration: none !important;
}
}
.float-right-image {
float: right;
}
/* The 450px cutoff was determined by testing in Gmail as a point
where an image looks good in either state. Logically it makes senes
since then the text still has the majority of the space in the
side-by-side view. */
@media only screen and (min-width: 450px) {
.float-right-image {
max-width: 200px;
}
} | templates/zerver/emails/email.css | because hex color codes are rendered by all email clients
consistently. Whereas HSL colors don't work with Hotmail. */
img {
border: none;
-ms-interpolation-mode: bicubic;
max-width: 100%;
vertical-align: bottom;
}
body {
background-color: #f5f9f8;
font-family: sans-serif;
font-size: 14px;
line-height: 1.4;
margin: 0;
padding: 0;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
table {
border-collapse: separate;
mso-table-lspace: 0;
mso-table-rspace: 0;
width: 100%;
}
table td {
font-family: sans-serif;
font-size: 14px;
vertical-align: top;
}
.body {
background-color: #f5f9f8;
width: 100%;
}
.container {
display: block;
margin: 0 auto !important;
max-width: 500px;
padding: 10px;
}
.container.wide-container {
max-width: 700px;
}
.content {
box-sizing: border-box;
display: block;
margin: 20px auto 0;
max-width: 580px;
padding: 10px;
}
.content.wide-content {
max-width: 780px;
}
.main {
background-color: #fff;
border-radius: 3px;
width: 100%;
}
.wrapper {
box-sizing: border-box;
padding: 0 20px 20px;
}
.footer {
clear: both;
padding-top: 10px;
text-align: center;
width: 100%;
margin-top: 20px;
}
.footer td,
.footer p,
.footer span,
.footer a {
color: #5f5ec7;
font-size: 12px;
text-align: center;
}
.footer .content-block p {
margin-top: 0;
}
h1,
h2,
h3,
h4 {
color: #4e4d4d !important;
font-family: sans-serif;
font-weight: 600;
line-height: 1.4;
margin-bottom: 30px;
}
h1 {
font-size: 35px;
font-weight: 300;
text-align: center;
text-transform: capitalize;
}
h2 {
font-size: 24px;
margin-top: 20px;
margin-bottom: 10px;
}
ul,
ol {
/* Override excessive indentation seen in Gmail. */
padding-left: 5px;
}
p,
ul,
ol {
font-family: sans-serif;
font-size: 14px;
font-weight: normal;
margin: 10px 0;
}
p li,
ul li,
ol li {
list-style-position: outside;
margin-left: 15px;
}
a {
color: #5f5ec7;
text-decoration: underline;
}
a:hover {
color: #434388;
}
.important {
border-bottom: 3px solid #d4e3e8;
}
.button {
display: block;
padding: 10px 0;
margin: 20px auto;
width: 200px;
color: #5f5ec7;
border: 2px solid #5f5ec7;
background-color: #fff;
border-radius: 4px;
font-size: 16px;
outline: none;
font-family: sans-serif;
text-decoration: none;
text-align: center;
text-shadow: none;
}
a.button:hover {
background-color: #5f5ec7;
color: #fff;
text-decoration: none;
}
.preheader {
color: transparent;
display: none;
height: 0;
max-height: 0;
max-width: 0;
opacity: 0;
overflow: hidden;
mso-hide: all;
visibility: hidden;
width: 0;
}
.illustration {
pointer-events: none;
cursor: default !important;
z-index: 100;
}
#private-messages {
width: 600px;
font-size: 12px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.recipient_block {
background-color: #f0f4f5;
border: 1px solid #000;
margin-bottom: 4px;
}
.recipient_header {
color: #e0dada;
background-color: #444;
border-bottom: 1px solid #000;
font-weight: bold;
padding: 2px;
}
.message_content {
background-color: #eff3f4;
margin-left: 1px;
margin-right: 2px;
}
.message_sender {
font-weight: bold;
padding-top: 1px;
}
.message_content_block {
padding-left: 6px;
font-weight: normal;
}
.messages {
width: 600px;
font-size: 12px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
overflow-y: auto;
}
.hot_convo_recipient_block {
border: 1px solid #000;
margin-bottom: 4px;
}
.hot_convo_recipient_header {
background-color: #9ec9ff;
border-bottom: 1px solid #000;
font-weight: bold;
padding: 2px;
}
.hot_convo_message_content {
margin-left: 1px;
margin-right: 2px;
}
.hot_convo_message_sender {
font-weight: bold;
padding-top: 1px;
}
.recipient_block_with_messages {
border: 1px solid #000;
margin-bottom: 4px;
}
.recipient_header_with_messages {
background-color: #9ecaff;
border-bottom: 1px solid #000;
font-weight: bold;
padding: 2px;
}
.message_content_with_messages {
margin-left: 1px;
margin-right: 2px;
}
.recipient_block_without_messages {
background-color: #f0f4f5;
border: 1px solid #000;
margin-bottom: 4px;
}
.recipient_header_without_messages {
color: #fff;
background-color: #444;
border-bottom: 1px solid #000;
font-weight: bold;
padding: 2px;
}
.message_content_without_messages {
background-color: #f0f4f5;
margin-left: 1px;
margin-right: 2px;
}
.hot_convo_message_content_block {
padding-left: 6px;
font-weight: normal;
}
.email-preferences {
color: #666;
}
.email-preferences a {
color: #15c;
}
.missed_message {
padding-bottom: 10px;
}
.missed_message_sender {
text-decoration: underline;
font-weight: bold;
}
.content_disabled_help_link {
color: #15c;
}
@media only screen and (max-width: 620px) {
table[class="body"] h1 {
font-size: 28px !important;
margin-bottom: 10px !important;
}
table[class="body"] p,
table[class="body"] ul,
table[class="body"] ol,
table[class="body"] td,
table[class="body"] span,
table[class="body"] a {
font-size: 16px !important;
}
table[class="body"] .wrapper {
padding: 0 10px 10px;
}
table[class="body"] .article {
padding: 10px !important;
}
table[class="body"] .content {
padding: 0 !important;
}
table[class="body"] .container {
padding: 0 !important;
width: 100% !important;
}
table[class="body"] .main {
border-left-width: 0 !important;
border-radius: 0 !important;
border-right-width: 0 !important;
}
table[class="body"] .btn table {
width: 100% !important;
}
table[class="body"] .btn a {
width: 100% !important;
}
table[class="body"] .img-responsive {
height: auto !important;
max-width: 100% !important;
width: auto !important;
}
}
@media all {
.ExternalClass {
width: 100%;
}
.ExternalClass,
.ExternalClass p,
.ExternalClass span,
.ExternalClass font,
.ExternalClass td,
.ExternalClass div {
line-height: 100%;
}
/* iOS converts addresses in emails to links automatically */
.apple-link a {
color: inherit !important;
font-family: inherit !important;
font-size: inherit !important;
font-weight: inherit !important;
line-height: inherit !important;
text-decoration: none !important;
}
}
.float-right-image {
float: right;
}
/* The 450px cutoff was determined by testing in Gmail as a point
where an image looks good in either state. Logically it makes senes
since then the text still has the majority of the space in the
side-by-side view. */
@media only screen and (min-width: 450px) {
.float-right-image {
max-width: 200px;
}
} | 0.507812 | 0.08733 |
Component: Dotnav
========================================================================== */
/*
* 1. Remove default list style
* 2. Remove whitespace between child elements when using `inline-block`
*/
.uk-dotnav {
/* 1 */
padding: 0;
list-style: none;
/* 2 */
font-size: 0.001px;
}
/* Items
========================================================================== */
/*
* 1. Reset whitespace hack
* 2. Remove the gap at the bottom of it container
*/
.uk-dotnav > li {
display: inline-block;
/* 1 */
font-size: 1rem;
/* 2 */
vertical-align: top;
}
.uk-dotnav > li:nth-child(n+2) {
margin-left: 15px;
}
/*
* Items
* 1. Remove the gap at the bottom of it container
* 2. Hide text if present
*/
.uk-dotnav > li > a {
display: inline-block;
-moz-box-sizing: content-box;
box-sizing: content-box;
width: 20px;
height: 20px;
border-radius: 50%;
background: rgba(50, 50, 50, 0.1);
/* 1 */
vertical-align: top;
/* 2 */
text-indent: 100%;
overflow: hidden;
white-space: nowrap;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
/*
* Hover
* 1. Apply hover style also to focus state
* 2. Remove default focus style
*/
.uk-dotnav > li > a:hover,
.uk-dotnav > li > a:focus {
background: rgba(50, 50, 50, 0.4);
/* 2 */
outline: none;
}
/* OnClick */
.uk-dotnav > li > a:active {
background: rgba(50, 50, 50, 0.6);
}
/* Active */
.uk-dotnav > li.uk-active > a {
background: rgba(50, 50, 50, 0.4);
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
/* Modifier: `uk-dotnav-contrast`
========================================================================== */
.uk-dotnav-contrast > li > a {
background: rgba(255, 255, 255, 0.4);
}
/*
* Hover
* 1. Apply hover style also to focus state
*/
.uk-dotnav-contrast > li > a:hover,
.uk-dotnav-contrast > li > a:focus {
background: rgba(255, 255, 255, 0.7);
}
/* OnClick */
.uk-dotnav-contrast > li > a:active {
background: rgba(255, 255, 255, 0.9);
}
/* Active */
.uk-dotnav-contrast > li.uk-active > a {
background: rgba(255, 255, 255, 0.9);
}
/* Modifier: 'uk-dotnav-vertical'
========================================================================== */
.uk-dotnav-vertical > li {
display: block;
}
.uk-dotnav-vertical > li:nth-child(n+2) {
margin-left: 0;
margin-top: 15px;
} | css/components/dotnav.gradient.css | Component: Dotnav
========================================================================== */
/*
* 1. Remove default list style
* 2. Remove whitespace between child elements when using `inline-block`
*/
.uk-dotnav {
/* 1 */
padding: 0;
list-style: none;
/* 2 */
font-size: 0.001px;
}
/* Items
========================================================================== */
/*
* 1. Reset whitespace hack
* 2. Remove the gap at the bottom of it container
*/
.uk-dotnav > li {
display: inline-block;
/* 1 */
font-size: 1rem;
/* 2 */
vertical-align: top;
}
.uk-dotnav > li:nth-child(n+2) {
margin-left: 15px;
}
/*
* Items
* 1. Remove the gap at the bottom of it container
* 2. Hide text if present
*/
.uk-dotnav > li > a {
display: inline-block;
-moz-box-sizing: content-box;
box-sizing: content-box;
width: 20px;
height: 20px;
border-radius: 50%;
background: rgba(50, 50, 50, 0.1);
/* 1 */
vertical-align: top;
/* 2 */
text-indent: 100%;
overflow: hidden;
white-space: nowrap;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
/*
* Hover
* 1. Apply hover style also to focus state
* 2. Remove default focus style
*/
.uk-dotnav > li > a:hover,
.uk-dotnav > li > a:focus {
background: rgba(50, 50, 50, 0.4);
/* 2 */
outline: none;
}
/* OnClick */
.uk-dotnav > li > a:active {
background: rgba(50, 50, 50, 0.6);
}
/* Active */
.uk-dotnav > li.uk-active > a {
background: rgba(50, 50, 50, 0.4);
-webkit-transform: scale(1.3);
transform: scale(1.3);
}
/* Modifier: `uk-dotnav-contrast`
========================================================================== */
.uk-dotnav-contrast > li > a {
background: rgba(255, 255, 255, 0.4);
}
/*
* Hover
* 1. Apply hover style also to focus state
*/
.uk-dotnav-contrast > li > a:hover,
.uk-dotnav-contrast > li > a:focus {
background: rgba(255, 255, 255, 0.7);
}
/* OnClick */
.uk-dotnav-contrast > li > a:active {
background: rgba(255, 255, 255, 0.9);
}
/* Active */
.uk-dotnav-contrast > li.uk-active > a {
background: rgba(255, 255, 255, 0.9);
}
/* Modifier: 'uk-dotnav-vertical'
========================================================================== */
.uk-dotnav-vertical > li {
display: block;
}
.uk-dotnav-vertical > li:nth-child(n+2) {
margin-left: 0;
margin-top: 15px;
} | 0.581778 | 0.096621 |
body {
text-align:center;
font-family:Trebuchet MS, sans-serif;
font-size:12px;
color:#333;
background-color: #FFF !important;
}
/* wrapper */
.report-wrapper
{
background-color: white !important;
text-align:left;
width:1000px;
margin:30px auto;
}
.report-header {
float:left;
width:100%;
}
.report-date {
float:right;
}
.rowfirm_authority
{
border:1px solid #ccc;
margin-top:10px;
margin-right: 5px;
padding:0px 40px;
height:110px;
float: right;
}
.colsbottom
{
float: left;
width: 50%;
}
.rowfirm_responsible
{
border:1px solid #ccc;
margin-top:10px;
margin-left:5px;
padding:0px 15px;
height:110px;
float: right;
}
.cols
{
width: 25%;
float: left;
margin-left: 10px;
}
.print_table
{
width:100% !important;
font-size: 13px;
}
.header_row {
float:left;
width:100%;
}
.header_row .header_right
{
float:right;
}
.header_row .title
{
float:left;
font-weight:bold;
font-size:13px;
padding-top:3px;
padding-right:5px;
margin-left: 3px;
}
.header_row .name
{
float:left;
font-size:16px;
}
.header_row .course
{
float:left;
font-size:13px;
padding:3px;
width:20px;
}
.header_row .division
{
float:left;
font-size:13px;
padding:3px;
width:100px;
}
.header_row .school_year
{
float:left;
font-size:12px;
padding:3px;
width:92px;
}
.report-title
{
font-size: 12px;
font-weight: bold;
padding:5px;
text-transform: uppercase;
background:#f2f2f2;
border:1px solid #ccc !important;
margin: 4px;
}
.report-total
{
text-transform: uppercase;
padding:5px;
text-align: right;
border-bottom:1px solid #ccc;
}
.titletable {
font-size:12px;
font-weight:bold;
display:block;
padding:3px;
}
.report-notice {
float: left;
margin-left: 5px;
}
.print_sanctions {
float: left;
}
.colsright {
padding-top: 20px;
}
/***table***/
table.gridtable {
font-family:arial,sans-serif;
font-size:11px;
color:#333333;
border:none;
border-collapse: collapse;
width:100%;
text-align:center;
}
table.gridtable th {
padding: 3px;
border-bottom:1px solid #ccc;
font-size:12px;
}
.th-subject-name {
width:20%;
}
table.gridtable td {
padding: 3px;
border-bottom:1px solid #ccc;
background-color: #ffffff;
}
table.gridtable tr {
border-bottom:1px solid #ccc;
background-color: #ffffff;
}
.partial_average
{
text-align: left !important;
font-weight: bold;
font-size: 12px;
text-transform: uppercase;
} | flavors/lvm/web/css/assistanceAndSanction.css | body {
text-align:center;
font-family:Trebuchet MS, sans-serif;
font-size:12px;
color:#333;
background-color: #FFF !important;
}
/* wrapper */
.report-wrapper
{
background-color: white !important;
text-align:left;
width:1000px;
margin:30px auto;
}
.report-header {
float:left;
width:100%;
}
.report-date {
float:right;
}
.rowfirm_authority
{
border:1px solid #ccc;
margin-top:10px;
margin-right: 5px;
padding:0px 40px;
height:110px;
float: right;
}
.colsbottom
{
float: left;
width: 50%;
}
.rowfirm_responsible
{
border:1px solid #ccc;
margin-top:10px;
margin-left:5px;
padding:0px 15px;
height:110px;
float: right;
}
.cols
{
width: 25%;
float: left;
margin-left: 10px;
}
.print_table
{
width:100% !important;
font-size: 13px;
}
.header_row {
float:left;
width:100%;
}
.header_row .header_right
{
float:right;
}
.header_row .title
{
float:left;
font-weight:bold;
font-size:13px;
padding-top:3px;
padding-right:5px;
margin-left: 3px;
}
.header_row .name
{
float:left;
font-size:16px;
}
.header_row .course
{
float:left;
font-size:13px;
padding:3px;
width:20px;
}
.header_row .division
{
float:left;
font-size:13px;
padding:3px;
width:100px;
}
.header_row .school_year
{
float:left;
font-size:12px;
padding:3px;
width:92px;
}
.report-title
{
font-size: 12px;
font-weight: bold;
padding:5px;
text-transform: uppercase;
background:#f2f2f2;
border:1px solid #ccc !important;
margin: 4px;
}
.report-total
{
text-transform: uppercase;
padding:5px;
text-align: right;
border-bottom:1px solid #ccc;
}
.titletable {
font-size:12px;
font-weight:bold;
display:block;
padding:3px;
}
.report-notice {
float: left;
margin-left: 5px;
}
.print_sanctions {
float: left;
}
.colsright {
padding-top: 20px;
}
/***table***/
table.gridtable {
font-family:arial,sans-serif;
font-size:11px;
color:#333333;
border:none;
border-collapse: collapse;
width:100%;
text-align:center;
}
table.gridtable th {
padding: 3px;
border-bottom:1px solid #ccc;
font-size:12px;
}
.th-subject-name {
width:20%;
}
table.gridtable td {
padding: 3px;
border-bottom:1px solid #ccc;
background-color: #ffffff;
}
table.gridtable tr {
border-bottom:1px solid #ccc;
background-color: #ffffff;
}
.partial_average
{
text-align: left !important;
font-weight: bold;
font-size: 12px;
text-transform: uppercase;
} | 0.482185 | 0.095013 |
@import url(https://fonts.googleapis.com/css?family=Nunito:400,700);
body {
padding: 0;
margin: 0;
}
body .column {
background: #F6F792;
height: 100vh;
float: left;
width: 100%;
position: relative;
}
body .two {
background: #F6F792;
}
body .three {
background: #EA2E49;
}
body .four {
background: #333745;
}
body .search {
position: absolute;
left: 0;
right: 0;
margin: auto;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width: 100%;
text-align: center;
overflow: hidden;
}
body .search_bar {
width: 280px;
position: relative;
margin: 0 auto;
}
body .search_bar input[type="text"] {
width: 15px;
background: transparent;
-webkit-transition: border 0.3s 0s, width 0.2s 0.3s cubic-bezier(0.225, 0.01, 0.475, 1.01), text-indent 0.2s 0.3s;
transition: border 0.3s 0s, width 0.2s 0.3s cubic-bezier(0.225, 0.01, 0.475, 1.01), text-indent 0.2s 0.3s;
padding: 20px;
border-color: #448996;
text-indent: 30px;
outline: none;
border: 0px solid #448996;
font-size: 12px;
color: #A8A952;
border-radius: 5px;
font-family: 'Nunito', sans-serif;
}
body .search_bar ::-webkit-input-placeholder {
/* Safari, Chrome and Opera */
color: #448996;
font-weight: 400;
font-family: 'Nunito', sans-serif;
}
body .search_bar ::-moz-input-placeholder {
/* Safari, Chrome and Opera */
color: #448996;
font-weight: 400;
font-family: 'Nunito', sans-serif;
}
body .search_bar ::-o-input-placeholder {
/* Safari, Chrome and Opera */
color: #448996;
font-weight: 400;
font-family: 'Nunito', sans-serif;
}
body .search_bar input[type="checkbox"] {
display: none;
}
body .search_bar input[type="checkbox"]:checked + label + input {
width: 230px;
border: 5px solid #448996;
text-indent: 0px;
}
body .search_bar input[type="checkbox"]:checked + label i {
right: 0px;
-webkit-transform: translateY(-50%) translateX(50%) rotate(360deg) scale(0);
transform: translateY(-50%) translateX(50%) rotate(360deg) scale(0);
color: #448996;
}
body .search_bar input[type="checkbox"]:checked + label .last {
left: 220px;
-webkit-transform: translateY(-50%) rotate(360deg) scale(1);
transform: translateY(-50%) rotate(360deg) scale(1);
}
body .search_bar input[type="checkbox"]:checked + label p {
top: 50%;
-webkit-transition: all .3s .45s;
transition: all .3s .45s;
}
body .search_bar input[type="checkbox"]:not(checked) + label p {
top: -50%;
-webkit-transition: all .3s 0s;
transition: all .3s 0s;
}
body .search_bar .last {
-webkit-transform: translateY(-50%) rotate(0deg) scale(0);
transform: translateY(-50%) rotate(0deg) scale(0);
}
body .search_bar i {
position: absolute;
font-size: 30px;
top: 50%;
-webkit-transform: translateY(-50%) translateX(50%) rotate(0deg) scale(1);
transform: translateY(-50%) translateX(50%) rotate(0deg) scale(1);
cursor: pointer;
z-index: 2;
margin: auto;
border-radius: 4px;
width: 56px;
right: 50%;
height: 54px;
background: transparent;
-webkit-transition: right .3s .3s, color .3s, -webkit-transform .3s .3s;
transition: right .3s .3s, color .3s, -webkit-transform .3s .3s;
transition: right .3s .3s, transform .3s .3s, color .3s;
transition: right .3s .3s, transform .3s .3s, color .3s, -webkit-transform .3s .3s;
line-height: 60px;
color: #A8A952;
}
body .search_bar i:hover {
color: #448996;
}
body .search_bar p {
position: absolute;
margin: 0;
right: 52px;
color: #448996;
font-weight: 700;
font-size: 30px;
top: -50%;
-webkit-transform: translateY(-50%) rotate(0deg) scale(1);
transform: translateY(-50%) rotate(0deg) scale(1);
} | assets/css/style2.css | @import url(https://fonts.googleapis.com/css?family=Nunito:400,700);
body {
padding: 0;
margin: 0;
}
body .column {
background: #F6F792;
height: 100vh;
float: left;
width: 100%;
position: relative;
}
body .two {
background: #F6F792;
}
body .three {
background: #EA2E49;
}
body .four {
background: #333745;
}
body .search {
position: absolute;
left: 0;
right: 0;
margin: auto;
top: 50%;
-webkit-transform: translateY(-50%);
transform: translateY(-50%);
width: 100%;
text-align: center;
overflow: hidden;
}
body .search_bar {
width: 280px;
position: relative;
margin: 0 auto;
}
body .search_bar input[type="text"] {
width: 15px;
background: transparent;
-webkit-transition: border 0.3s 0s, width 0.2s 0.3s cubic-bezier(0.225, 0.01, 0.475, 1.01), text-indent 0.2s 0.3s;
transition: border 0.3s 0s, width 0.2s 0.3s cubic-bezier(0.225, 0.01, 0.475, 1.01), text-indent 0.2s 0.3s;
padding: 20px;
border-color: #448996;
text-indent: 30px;
outline: none;
border: 0px solid #448996;
font-size: 12px;
color: #A8A952;
border-radius: 5px;
font-family: 'Nunito', sans-serif;
}
body .search_bar ::-webkit-input-placeholder {
/* Safari, Chrome and Opera */
color: #448996;
font-weight: 400;
font-family: 'Nunito', sans-serif;
}
body .search_bar ::-moz-input-placeholder {
/* Safari, Chrome and Opera */
color: #448996;
font-weight: 400;
font-family: 'Nunito', sans-serif;
}
body .search_bar ::-o-input-placeholder {
/* Safari, Chrome and Opera */
color: #448996;
font-weight: 400;
font-family: 'Nunito', sans-serif;
}
body .search_bar input[type="checkbox"] {
display: none;
}
body .search_bar input[type="checkbox"]:checked + label + input {
width: 230px;
border: 5px solid #448996;
text-indent: 0px;
}
body .search_bar input[type="checkbox"]:checked + label i {
right: 0px;
-webkit-transform: translateY(-50%) translateX(50%) rotate(360deg) scale(0);
transform: translateY(-50%) translateX(50%) rotate(360deg) scale(0);
color: #448996;
}
body .search_bar input[type="checkbox"]:checked + label .last {
left: 220px;
-webkit-transform: translateY(-50%) rotate(360deg) scale(1);
transform: translateY(-50%) rotate(360deg) scale(1);
}
body .search_bar input[type="checkbox"]:checked + label p {
top: 50%;
-webkit-transition: all .3s .45s;
transition: all .3s .45s;
}
body .search_bar input[type="checkbox"]:not(checked) + label p {
top: -50%;
-webkit-transition: all .3s 0s;
transition: all .3s 0s;
}
body .search_bar .last {
-webkit-transform: translateY(-50%) rotate(0deg) scale(0);
transform: translateY(-50%) rotate(0deg) scale(0);
}
body .search_bar i {
position: absolute;
font-size: 30px;
top: 50%;
-webkit-transform: translateY(-50%) translateX(50%) rotate(0deg) scale(1);
transform: translateY(-50%) translateX(50%) rotate(0deg) scale(1);
cursor: pointer;
z-index: 2;
margin: auto;
border-radius: 4px;
width: 56px;
right: 50%;
height: 54px;
background: transparent;
-webkit-transition: right .3s .3s, color .3s, -webkit-transform .3s .3s;
transition: right .3s .3s, color .3s, -webkit-transform .3s .3s;
transition: right .3s .3s, transform .3s .3s, color .3s;
transition: right .3s .3s, transform .3s .3s, color .3s, -webkit-transform .3s .3s;
line-height: 60px;
color: #A8A952;
}
body .search_bar i:hover {
color: #448996;
}
body .search_bar p {
position: absolute;
margin: 0;
right: 52px;
color: #448996;
font-weight: 700;
font-size: 30px;
top: -50%;
-webkit-transform: translateY(-50%) rotate(0deg) scale(1);
transform: translateY(-50%) rotate(0deg) scale(1);
} | 0.435181 | 0.099339 |
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);
@font-face {
font-family: 'viper squadron';
src: url(VIPESSRG.TTF);
}
html{
background: rgba(129,141,166,1);
height:100%;
}
h1 {
font-family: 'viper squadron', sans-serif;
}
.home {
font-family: 'Open Sans', sans-serif;
}
.home h2{
font-size: 18px;
font-family: 'viper squadron', sans-serif;
font-weight: bold;
color: rgba(235,159,62,1);
text-shadow: 2px 2px 2px rgba(0,0,0,.8);
text-transform: uppercase;
margin: 25px 0;
}
.container {
max-width: 960px;
}
#feedback-page{
text-align:center;
}
#form-main{
width:100%;
float:left;
padding-top:0px;
}
#form-div {
background-color:rgba(72,72,72,0.4);
padding-left:35px;
padding-right:35px;
padding-top:35px;
padding-bottom:50px;
width: 450px;
float: left;
left: 50%;
position: absolute;
margin-top:30px;
margin-left: -260px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
}
.feedback-input {
color:#3c3c3c;
font-family: 'Open Sans', sans-serif;
font-weight:500;
font-size: 18px;
border-radius: 0;
line-height: 22px;
background-color: #fbfbfb;
padding: 13px 13px 13px 54px;
margin-bottom: 10px;
width:100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
border: 3px solid rgba(0,0,0,0);
}
.feedback-input:focus{
background: #fff;
box-shadow: 0;
border: 3px solid #3498db;
color: #3498db;
outline: none;
padding: 13px 13px 13px 54px;
}
.focused{
color:#30aed6;
border:#30aed6 solid 3px;
}
/* Icons ---------------------------------- */
#name{
background-image: url(http://rexkirby.com/kirbyandson/images/name.svg);
background-size: 30px 30px;
background-position: 11px 8px;
background-repeat: no-repeat;
}
#name:focus{
background-image: url(http://rexkirby.com/kirbyandson/images/name.svg);
background-size: 30px 30px;
background-position: 8px 5px;
background-position: 11px 8px;
background-repeat: no-repeat;
}
#email{
background-image: url(http://rexkirby.com/kirbyandson/images/email.svg);
background-size: 30px 30px;
background-position: 11px 8px;
background-repeat: no-repeat;
}
#email:focus{
background-image: url(http://rexkirby.com/kirbyandson/images/email.svg);
background-size: 30px 30px;
background-position: 11px 8px;
background-repeat: no-repeat;
}
#comment{
background-image: url(http://rexkirby.com/kirbyandson/images/comment.svg);
background-size: 30px 30px;
background-position: 11px 8px;
background-repeat: no-repeat;
}
textarea {
width: 100%;
height: 150px;
line-height: 150%;
resize:vertical;
}
input:hover, textarea:hover,
input:focus, textarea:focus {
background-color:;
}
#button-blue{
font-family:'Inconsolata', serif;
float:left;
width: 100%;
border: #fbfbfb solid 4px;
cursor:pointer;
background-color: ;
color:white;
font-size:24px;
padding-top:22px;
padding-bottom:22px;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
margin-top:-4px;
font-weight:700;
}
#button-blue:hover{
background-color: rgba(0,0,0,0);
color: #cdcdcd;
}
.submit:hover {
color: #3498db;
}
.ease {
width: 0px;
height: 74px;
background-color: #fbfbfb;
-webkit-transition: .3s ease;
-moz-transition: .3s ease;
-o-transition: .3s ease;
-ms-transition: .3s ease;
transition: .3s ease;
}
.submit:hover .ease{
width:100%;
background-color:white;
}
@media only screen and (max-width: 580px) {
#form-div{
left: 3%;
margin-right: 3%;
width: 88%;
margin-left: 0;
padding-left: 3%;
padding-right: 3%;
}
}
ul li {
list-style-type: none;
}
ul li a {
text-decoration: none;
}
.centerme {
text-align: center;
}
.home {
background: url('../img/upside-down-copy.jpg') center center fixed no-repeat;
background-size: cover;
font-family:'Inconsolata', serif;
color: rgba(0,0,0,1);
}
nav {
/*font-family: 'viper-squadron', sans-serif;*/
font-family: 'viper squadron', sans-serif;
margin-top: 0px;
margin-bottom: 10px;
padding-top: 10px;
}
nav a{
font-size: 25px;
color: rgba(240,242,242,1);
text-transform: uppercase;
padding-left: 20px
}
nav ul li {
float: left; /*change this for mediaquery*/
margin-left: auto;
margin-right: 20px;
}
}
.home a {
color: rgba( 0,0,0,1);
}
.home a:hover {
color:#5c595c;
}
.container {
max-width: 960px;
margin: 0 auto;
}
.aboutme {
width:400px;
height: 400px;
border: 3em;
}
.navcontainer {
width: 960px;
margin: 0 auto;
}
.bg-top{
background-color:rgba(0,0,0,1);
background-size: cover;
padding-bottom: 30px;
padding-top: 5px;
}
/* mobile style */
@media only screen and (max-width: 800px){
.container{
max-width: 500px;
}
h1{
padding-left: 0px;
}
nav{
height: 100%;
padding-top: 0;
}
nav a{
display: block;
}
nav ul li {
float: none; /*change this for mediaquery*/
margin-left: 0px;
margin-right: 80px;
}
img{
max-width: 100%;
}
}
@media only screen and (max-width: 485px){
.container{
max-width: 300px;
}
h1{
padding-left: 0px;
}
nav{
height: 100%;
padding-top: 0;
}
nav a{
display: block;
}
nav ul li {
float: none; /*change this for mediaquery*/
margin-left: 0px;
margin-right: 80px;
}
img{
max-width: 100%;
}
}/*end mobile style*/
/*/* mobile styles */
/*
@media only screen and (max-width:800px) {
nav li {
float:none;
align-items: center;
}
@media only screen and (max-width:500px) {
nav a {
display: block;
text-align: center;
width: 130px;
text-decoration: none;
}
nav {
width:500px;
margin: 0 auto;
list-style: none;
line-height: 20px;
}
nav li {
float:none;
align-items: center;
}*/
/*nav a {
font-size: 7px;
}*/
/*
@media only screen and (max-width:360px) {
nav a {
display: block;
text-align: center;
width: 130px;
text-decoration: none;
}
nav {
width:500px;
margin: 0 auto;
list-style: none;
}
nav li {
float:left;
}
*/*/ | Portfolio1/css/contact-style.css | @import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css);
@font-face {
font-family: 'viper squadron';
src: url(VIPESSRG.TTF);
}
html{
background: rgba(129,141,166,1);
height:100%;
}
h1 {
font-family: 'viper squadron', sans-serif;
}
.home {
font-family: 'Open Sans', sans-serif;
}
.home h2{
font-size: 18px;
font-family: 'viper squadron', sans-serif;
font-weight: bold;
color: rgba(235,159,62,1);
text-shadow: 2px 2px 2px rgba(0,0,0,.8);
text-transform: uppercase;
margin: 25px 0;
}
.container {
max-width: 960px;
}
#feedback-page{
text-align:center;
}
#form-main{
width:100%;
float:left;
padding-top:0px;
}
#form-div {
background-color:rgba(72,72,72,0.4);
padding-left:35px;
padding-right:35px;
padding-top:35px;
padding-bottom:50px;
width: 450px;
float: left;
left: 50%;
position: absolute;
margin-top:30px;
margin-left: -260px;
-moz-border-radius: 7px;
-webkit-border-radius: 7px;
}
.feedback-input {
color:#3c3c3c;
font-family: 'Open Sans', sans-serif;
font-weight:500;
font-size: 18px;
border-radius: 0;
line-height: 22px;
background-color: #fbfbfb;
padding: 13px 13px 13px 54px;
margin-bottom: 10px;
width:100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
border: 3px solid rgba(0,0,0,0);
}
.feedback-input:focus{
background: #fff;
box-shadow: 0;
border: 3px solid #3498db;
color: #3498db;
outline: none;
padding: 13px 13px 13px 54px;
}
.focused{
color:#30aed6;
border:#30aed6 solid 3px;
}
/* Icons ---------------------------------- */
#name{
background-image: url(http://rexkirby.com/kirbyandson/images/name.svg);
background-size: 30px 30px;
background-position: 11px 8px;
background-repeat: no-repeat;
}
#name:focus{
background-image: url(http://rexkirby.com/kirbyandson/images/name.svg);
background-size: 30px 30px;
background-position: 8px 5px;
background-position: 11px 8px;
background-repeat: no-repeat;
}
#email{
background-image: url(http://rexkirby.com/kirbyandson/images/email.svg);
background-size: 30px 30px;
background-position: 11px 8px;
background-repeat: no-repeat;
}
#email:focus{
background-image: url(http://rexkirby.com/kirbyandson/images/email.svg);
background-size: 30px 30px;
background-position: 11px 8px;
background-repeat: no-repeat;
}
#comment{
background-image: url(http://rexkirby.com/kirbyandson/images/comment.svg);
background-size: 30px 30px;
background-position: 11px 8px;
background-repeat: no-repeat;
}
textarea {
width: 100%;
height: 150px;
line-height: 150%;
resize:vertical;
}
input:hover, textarea:hover,
input:focus, textarea:focus {
background-color:;
}
#button-blue{
font-family:'Inconsolata', serif;
float:left;
width: 100%;
border: #fbfbfb solid 4px;
cursor:pointer;
background-color: ;
color:white;
font-size:24px;
padding-top:22px;
padding-bottom:22px;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
transition: all 0.3s;
margin-top:-4px;
font-weight:700;
}
#button-blue:hover{
background-color: rgba(0,0,0,0);
color: #cdcdcd;
}
.submit:hover {
color: #3498db;
}
.ease {
width: 0px;
height: 74px;
background-color: #fbfbfb;
-webkit-transition: .3s ease;
-moz-transition: .3s ease;
-o-transition: .3s ease;
-ms-transition: .3s ease;
transition: .3s ease;
}
.submit:hover .ease{
width:100%;
background-color:white;
}
@media only screen and (max-width: 580px) {
#form-div{
left: 3%;
margin-right: 3%;
width: 88%;
margin-left: 0;
padding-left: 3%;
padding-right: 3%;
}
}
ul li {
list-style-type: none;
}
ul li a {
text-decoration: none;
}
.centerme {
text-align: center;
}
.home {
background: url('../img/upside-down-copy.jpg') center center fixed no-repeat;
background-size: cover;
font-family:'Inconsolata', serif;
color: rgba(0,0,0,1);
}
nav {
/*font-family: 'viper-squadron', sans-serif;*/
font-family: 'viper squadron', sans-serif;
margin-top: 0px;
margin-bottom: 10px;
padding-top: 10px;
}
nav a{
font-size: 25px;
color: rgba(240,242,242,1);
text-transform: uppercase;
padding-left: 20px
}
nav ul li {
float: left; /*change this for mediaquery*/
margin-left: auto;
margin-right: 20px;
}
}
.home a {
color: rgba( 0,0,0,1);
}
.home a:hover {
color:#5c595c;
}
.container {
max-width: 960px;
margin: 0 auto;
}
.aboutme {
width:400px;
height: 400px;
border: 3em;
}
.navcontainer {
width: 960px;
margin: 0 auto;
}
.bg-top{
background-color:rgba(0,0,0,1);
background-size: cover;
padding-bottom: 30px;
padding-top: 5px;
}
/* mobile style */
@media only screen and (max-width: 800px){
.container{
max-width: 500px;
}
h1{
padding-left: 0px;
}
nav{
height: 100%;
padding-top: 0;
}
nav a{
display: block;
}
nav ul li {
float: none; /*change this for mediaquery*/
margin-left: 0px;
margin-right: 80px;
}
img{
max-width: 100%;
}
}
@media only screen and (max-width: 485px){
.container{
max-width: 300px;
}
h1{
padding-left: 0px;
}
nav{
height: 100%;
padding-top: 0;
}
nav a{
display: block;
}
nav ul li {
float: none; /*change this for mediaquery*/
margin-left: 0px;
margin-right: 80px;
}
img{
max-width: 100%;
}
}/*end mobile style*/
/*/* mobile styles */
/*
@media only screen and (max-width:800px) {
nav li {
float:none;
align-items: center;
}
@media only screen and (max-width:500px) {
nav a {
display: block;
text-align: center;
width: 130px;
text-decoration: none;
}
nav {
width:500px;
margin: 0 auto;
list-style: none;
line-height: 20px;
}
nav li {
float:none;
align-items: center;
}*/
/*nav a {
font-size: 7px;
}*/
/*
@media only screen and (max-width:360px) {
nav a {
display: block;
text-align: center;
width: 130px;
text-decoration: none;
}
nav {
width:500px;
margin: 0 auto;
list-style: none;
}
nav li {
float:left;
}
*/*/ | 0.226784 | 0.093554 |
@media print {
.cke_skin_office2003 .cke_toolbox {
display: none;
}
}
.cke_skin_office2003 .cke_browser_webkit .cke_toolbox,
.cke_skin_office2003 .cke_browser_webkit .cke_toolbox > span {
white-space: normal;
}
.cke_skin_office2003 .cke_toolbox {
clear: both;
/* Define the padding-bottom otherwise the collapser button will not be clickable #4932*/
padding-bottom: 1px;
}
.cke_skin_office2003 a.cke_toolbox_collapser,
.cke_skin_office2003 a:hover.cke_toolbox_collapser {
background-image: url(images/sprites.png);
_background-image: url(images/sprites_ie6.png);
background-position: 3px -1026px; /* +3px +4px */
background-repeat: no-repeat;
width: 11px;
height: 11px;
float: right;
border: outset 1px;
margin: 11px 2px 2px;
cursor: pointer;
}
.cke_skin_office2003 .cke_rtl a.cke_toolbox_collapser,
.cke_skin_office2003 .cke_rtl a:hover.cke_toolbox_collapser {
float: left;
}
.cke_skin_office2003 a.cke_toolbox_collapser span {
display: none;
}
.cke_skin_office2003 .cke_hc a.cke_toolbox_collapser span {
font-size: 10px;
font-weight: bold;
font-family: Arial;
display: inline;
}
.cke_skin_office2003 a.cke_toolbox_collapser_min,
.cke_skin_office2003 a:hover.cke_toolbox_collapser_min {
/* arrowleft.gif*/
background-image: url(images/sprites.png);
_background-image: url(images/sprites_ie6.png);
background-position: 4px -1047px; /* +4px +3px */
background-repeat: no-repeat;
margin: 2px;
}
.cke_skin_office2003 .cke_rtl a.cke_toolbox_collapser_min,
.cke_skin_office2003 .cke_rtl a:hover.cke_toolbox_collapser_min {
/* arrowright.gif*/
background-position: 4px -1068px; /* +2px +3px */
}
.cke_skin_office2003 .cke_toolbar {
background-color: #d6dff7;
background-image: url(images/sprites.png);
_background-image: url(images/sprites_ie6.png);
background-position: 0 -962px;
background-repeat: repeat-x;
display: inline-block;
float: left;
! height: 28px;
! line-height: 28px;
}
.cke_skin_office2003 .cke_rtl .cke_toolbar {
float: right;
}
.cke_skin_office2003 .cke_toolgroup {
display: inline-block;
float: left;
height: 28px;
}
.cke_skin_office2003 .cke_browser_ie .cke_toolgroup {
#float: none;
#display: inline;
}
.cke_skin_office2003 .cke_rtl .cke_toolgroup {
float: right;
}
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolgroup {
#float: none;
}
.cke_skin_office2003 .cke_separator {
display: inline-block;
float: left;
border-left: solid 1px #B2CBFF;
margin: 6px 2px;
height: 16px;
}
.cke_skin_office2003 .cke_browser_ie .cke_separator {
#float: none;
#display: inline;
}
.cke_skin_office2003 .cke_rtl .cke_separator {
float: right;
}
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_separator {
#float: none;
}
.cke_skin_office2003 .cke_break {
clear: left;
}
.cke_skin_office2003 .cke_rtl .cke_break {
clear: right;
}
.cke_skin_office2003 .cke_toolbar_start {
display: inline-block;
background-image: url(images/sprites.png);
_background-image: url(images/sprites_ie6.png);
background-repeat: no-repeat;
background-position: -27px -765px;
width: 10px;
height: 28px;
float: left;
}
.cke_skin_office2003 .cke_browser_ie .cke_toolbar_start {
#float: none;
#display: inline;
}
.cke_skin_office2003 .cke_rtl .cke_toolbar_start {
background-position: -27px -816px;
float: right;
}
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_start {
#float: none;
}
.cke_skin_office2003 .cke_toolbar_end {
display: inline-block;
background-image: url(images/sprites.png);
_background-image: url(images/sprites_ie6.png);
background-repeat: no-repeat;
background-position: -29px -861px;
width: 4px;
height: 28px;
float: left;
}
.cke_skin_office2003 .cke_browser_ie .cke_toolbar_end {
#float: none;
#display: inline;
}
.cke_skin_office2003 .cke_rtl .cke_toolbar_end {
background-position: -29px -907px;
float: right;
}
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_end {
#float: none;
}
/*#7181*/
.cke_skin_office2003 .cke_browser_ie9 .cke_rtl .cke_separator,
.cke_skin_office2003 .cke_browser_ie9 .cke_rtl .cke_toolbar_start,
.cke_skin_office2003 .cke_browser_ie9 .cke_rtl .cke_toolbar_end {
vertical-align: middle;
}
.cke_skin_office2003 .cke_button a,
.cke_skin_office2003 .cke_button a:hover,
.cke_skin_office2003 .cke_button a:focus,
.cke_skin_office2003 .cke_button a:active,
.cke_skin_office2003 .cke_button a.cke_off {
border: solid 1px transparent;
border-radius: 3px;
outline: none;
padding-top: 2px;
padding-left: 4px;
padding-right: 4px;
padding-bottom: 2px;
margin-top: 2px;
height: 18px;
vertical-align: top;
_border: none;
_margin: 3px 1px 1px 1px;
cursor: default;
display: inline-block;
}
.cke_skin_office2003 .cke_button a,
.cke_skin_office2003 .cke_button a.cke_off {
filter: alpha(opacity=70); /* IE */
opacity: 0.70; /* Safari, Opera and Mozilla */
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
.cke_skin_office2003 .cke_hc .cke_button a,
.cke_skin_office2003 .cke_hc .cke_button a.cke_off {
opacity: 1.0;
filter: alpha(opacity=100);
_border: 1px solid transparent;
}
.cke_skin_office2003 .cke_button a.cke_on {
border: solid 1px #316ac5;
background-color: #c1d2ee;
filter: alpha(opacity=100); /* IE */
opacity: 1; /* Safari, Opera and Mozilla */
_margin: 2px 0 0 0;
}
.cke_skin_office2003 .cke_hc .cke_button a:hover,
.cke_skin_office2003 .cke_hc .cke_button a:focus,
.cke_skin_office2003 .cke_hc .cke_button a:active /* IE */
{
padding: 0 2px !important;
border-width: 3px;
}
.cke_skin_office2003 .cke_button a.cke_disabled * {
filter: alpha(opacity=30); /* IE */
opacity: 0.3; /* Safari, Opera and Mozilla */
}
/* IE with zoom != 100% will distort the icons otherwise #4821 */
.cke_skin_office2003 .cke_browser_ie .cke_button a.cke_disabled *,
.cke_skin_office2003 .cke_browser_ie a:hover.cke_button .cke_disabled * {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=30);
}
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_button a.cke_disabled *,
.cke_skin_office2003 .cke_browser_ie .cke_rtl a:hover.cke_button .cke_disabled * {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=30);
}
.cke_skin_office2003 .cke_browser_ie6 .cke_button a.cke_disabled *,
.cke_skin_office2003 .cke_browser_ie6 a:hover.cke_button .cke_disabled *,
.cke_skin_office2003 .cke_browser_ie .cke_button.cke_noalphafix a.cke_disabled * {
filter: alpha(opacity=30);
}
.cke_skin_office2003 .cke_hc .cke_button a.cke_disabled *,
.cke_skin_office2003 .cke_browser_ie.cke_hc a:hover.cke_button .cke_disabled * {
filter: alpha(opacity=60);
opacity: 0.6;
}
.cke_skin_office2003 .cke_button a:hover,
.cke_skin_office2003 .cke_button a:focus,
.cke_skin_office2003 .cke_button a:active /* IE */
{
border: solid 1px #316ac5;
background-color: #dff1ff;
filter: alpha(opacity=100); /* IE */
opacity: 1; /* Safari, Opera and Mozilla */
vertical-align: top;
_margin: 2px 0 0 0;
padding: 2px 4px;
}
.cke_skin_office2003 .cke_button .cke_icon {
background-image: url(icons.png);
background-position: 100px;
background-repeat: no-repeat;
margin-top: 1px;
width: 16px;
height: 16px;
display: inline-block;
cursor: default;
}
.cke_skin_office2003 .cke_rtl .cke_button .cke_icon {
background-image: url(icons_rtl.png);
}
/* IE with zoom != 100% will distort the icons otherwise #4821 */
.cke_skin_office2003 .cke_browser_ie .cke_button .cke_icon {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
}
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_button .cke_icon {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
}
.cke_skin_office2003 .cke_browser_ie6 .cke_button .cke_icon,
.cke_skin_office2003 .cke_browser_ie6 .cke_rtl .cke_button .cke_icon,
.cke_skin_office2003 .cke_browser_ie .cke_button.cke_noalphafix .cke_icon,
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_button.cke_noalphafix .cke_icon {
filter:;
}
.cke_skin_office2003 .cke_button .cke_label {
display: none;
padding-left: 3px;
cursor: default;
vertical-align: middle;
_background-image: url(images/sprites_ie6.png);
_background-position: 0 -970px;
_background-repeat: repeat-x;
}
.cke_skin_office2003 .cke_button a:hover .cke_label {
_background-color: #dff1ff;
_background-image: none;
}
.cke_skin_office2003 .cke_button a.cke_on .cke_label {
_background-color: #c1d2ee;
_background-image: none;
}
.cke_skin_office2003 .cke_hc .cke_button .cke_label {
padding: 0;
display: inline-block;
}
.cke_skin_office2003 .cke_hc .cke_button .cke_icon {
display: none;
}
.cke_skin_office2003 .cke_accessibility {
position: absolute;
display: block;
width: 0;
height: 0;
overflow: hidden;
}
.cke_skin_office2003 .cke_button .cke_buttonarrow {
display: inline-block;
height: 18px;
width: 8px;
background-position: 2px -1004px;
background-image: url(images/sprites.png);
_background-image: url(images/sprites_ie6.png);
background-repeat: no-repeat;
cursor: default;
}
/* IE with zoom != 100% will distort the icons otherwise #4821 */
.cke_skin_office2003 .cke_browser_ie .cke_button .cke_buttonarrow {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
}
.cke_skin_office2003 .cke_browser_ie6 .cke_button .cke_buttonarrow {
filter:;
}
.cke_skin_office2003 .cke_rtl .cke_button .cke_buttonarrow {
background-position: 0 -1004px;
}
/*** Firefox 2 ***/
.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar,
.cke_skin_office2003 .cke_browser_gecko18 .cke_button a,
.cke_skin_office2003 .cke_browser_gecko18 .cke_button a.cke_off,
.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_icon,
.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_buttonarrow,
.cke_skin_office2003 .cke_browser_gecko18 .cke_separator,
.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar_start,
.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar_end {
display: block;
float: left;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_hc .cke_button .cke_icon {
display: none;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button a,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button a.cke_off,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_icon,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_buttonarrow,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_separator,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar_start,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar_end {
float: right;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_label,
.cke_skin_office2003 .cke_browser_gecko18 .cke_break {
float: left;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl span.cke_inline_label {
float: right;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_label,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_break {
float: right;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_separator {
margin-top: 4px;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_label {
padding-top: 3px;
}
/*** IE6 ***/
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolgroup,
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_separator,
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_start,
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_end {
float: none;
}
/*** IE8 ***/
.cke_skin_office2003 .cke_browser_ie8 .cke_toolbar,
.cke_skin_office2003 .cke_browser_ie8 .cke_toolgroup {
vertical-align: top;
}
.cke_skin_office2003 .cke_browser_iequirks.cke_browser_ie8 .cke_toolbar,
.cke_skin_office2003 .cke_browser_iequirks.cke_browser_ie8 .cke_toolgroup {
/* revert previous */
vertical-align: baseline;
}
/* Separator + Combo penetrate toolbar in IE quirks. (#4461) */
.cke_skin_office2003 .cke_browser_iequirks .cke_separator {
vertical-align: text-bottom;
}
/* Fix cursor shape consistency on toolbar combos (#4031) */
.cke_skin_office2003 .cke_browser_ie .cke_rcombo,
.cke_skin_office2003 .cke_browser_ie .cke_rcombo * {
cursor: default;
} | ckeditor/_source/skins/office2003/toolbar.css | @media print {
.cke_skin_office2003 .cke_toolbox {
display: none;
}
}
.cke_skin_office2003 .cke_browser_webkit .cke_toolbox,
.cke_skin_office2003 .cke_browser_webkit .cke_toolbox > span {
white-space: normal;
}
.cke_skin_office2003 .cke_toolbox {
clear: both;
/* Define the padding-bottom otherwise the collapser button will not be clickable #4932*/
padding-bottom: 1px;
}
.cke_skin_office2003 a.cke_toolbox_collapser,
.cke_skin_office2003 a:hover.cke_toolbox_collapser {
background-image: url(images/sprites.png);
_background-image: url(images/sprites_ie6.png);
background-position: 3px -1026px; /* +3px +4px */
background-repeat: no-repeat;
width: 11px;
height: 11px;
float: right;
border: outset 1px;
margin: 11px 2px 2px;
cursor: pointer;
}
.cke_skin_office2003 .cke_rtl a.cke_toolbox_collapser,
.cke_skin_office2003 .cke_rtl a:hover.cke_toolbox_collapser {
float: left;
}
.cke_skin_office2003 a.cke_toolbox_collapser span {
display: none;
}
.cke_skin_office2003 .cke_hc a.cke_toolbox_collapser span {
font-size: 10px;
font-weight: bold;
font-family: Arial;
display: inline;
}
.cke_skin_office2003 a.cke_toolbox_collapser_min,
.cke_skin_office2003 a:hover.cke_toolbox_collapser_min {
/* arrowleft.gif*/
background-image: url(images/sprites.png);
_background-image: url(images/sprites_ie6.png);
background-position: 4px -1047px; /* +4px +3px */
background-repeat: no-repeat;
margin: 2px;
}
.cke_skin_office2003 .cke_rtl a.cke_toolbox_collapser_min,
.cke_skin_office2003 .cke_rtl a:hover.cke_toolbox_collapser_min {
/* arrowright.gif*/
background-position: 4px -1068px; /* +2px +3px */
}
.cke_skin_office2003 .cke_toolbar {
background-color: #d6dff7;
background-image: url(images/sprites.png);
_background-image: url(images/sprites_ie6.png);
background-position: 0 -962px;
background-repeat: repeat-x;
display: inline-block;
float: left;
! height: 28px;
! line-height: 28px;
}
.cke_skin_office2003 .cke_rtl .cke_toolbar {
float: right;
}
.cke_skin_office2003 .cke_toolgroup {
display: inline-block;
float: left;
height: 28px;
}
.cke_skin_office2003 .cke_browser_ie .cke_toolgroup {
#float: none;
#display: inline;
}
.cke_skin_office2003 .cke_rtl .cke_toolgroup {
float: right;
}
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolgroup {
#float: none;
}
.cke_skin_office2003 .cke_separator {
display: inline-block;
float: left;
border-left: solid 1px #B2CBFF;
margin: 6px 2px;
height: 16px;
}
.cke_skin_office2003 .cke_browser_ie .cke_separator {
#float: none;
#display: inline;
}
.cke_skin_office2003 .cke_rtl .cke_separator {
float: right;
}
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_separator {
#float: none;
}
.cke_skin_office2003 .cke_break {
clear: left;
}
.cke_skin_office2003 .cke_rtl .cke_break {
clear: right;
}
.cke_skin_office2003 .cke_toolbar_start {
display: inline-block;
background-image: url(images/sprites.png);
_background-image: url(images/sprites_ie6.png);
background-repeat: no-repeat;
background-position: -27px -765px;
width: 10px;
height: 28px;
float: left;
}
.cke_skin_office2003 .cke_browser_ie .cke_toolbar_start {
#float: none;
#display: inline;
}
.cke_skin_office2003 .cke_rtl .cke_toolbar_start {
background-position: -27px -816px;
float: right;
}
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_start {
#float: none;
}
.cke_skin_office2003 .cke_toolbar_end {
display: inline-block;
background-image: url(images/sprites.png);
_background-image: url(images/sprites_ie6.png);
background-repeat: no-repeat;
background-position: -29px -861px;
width: 4px;
height: 28px;
float: left;
}
.cke_skin_office2003 .cke_browser_ie .cke_toolbar_end {
#float: none;
#display: inline;
}
.cke_skin_office2003 .cke_rtl .cke_toolbar_end {
background-position: -29px -907px;
float: right;
}
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_end {
#float: none;
}
/*#7181*/
.cke_skin_office2003 .cke_browser_ie9 .cke_rtl .cke_separator,
.cke_skin_office2003 .cke_browser_ie9 .cke_rtl .cke_toolbar_start,
.cke_skin_office2003 .cke_browser_ie9 .cke_rtl .cke_toolbar_end {
vertical-align: middle;
}
.cke_skin_office2003 .cke_button a,
.cke_skin_office2003 .cke_button a:hover,
.cke_skin_office2003 .cke_button a:focus,
.cke_skin_office2003 .cke_button a:active,
.cke_skin_office2003 .cke_button a.cke_off {
border: solid 1px transparent;
border-radius: 3px;
outline: none;
padding-top: 2px;
padding-left: 4px;
padding-right: 4px;
padding-bottom: 2px;
margin-top: 2px;
height: 18px;
vertical-align: top;
_border: none;
_margin: 3px 1px 1px 1px;
cursor: default;
display: inline-block;
}
.cke_skin_office2003 .cke_button a,
.cke_skin_office2003 .cke_button a.cke_off {
filter: alpha(opacity=70); /* IE */
opacity: 0.70; /* Safari, Opera and Mozilla */
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
}
.cke_skin_office2003 .cke_hc .cke_button a,
.cke_skin_office2003 .cke_hc .cke_button a.cke_off {
opacity: 1.0;
filter: alpha(opacity=100);
_border: 1px solid transparent;
}
.cke_skin_office2003 .cke_button a.cke_on {
border: solid 1px #316ac5;
background-color: #c1d2ee;
filter: alpha(opacity=100); /* IE */
opacity: 1; /* Safari, Opera and Mozilla */
_margin: 2px 0 0 0;
}
.cke_skin_office2003 .cke_hc .cke_button a:hover,
.cke_skin_office2003 .cke_hc .cke_button a:focus,
.cke_skin_office2003 .cke_hc .cke_button a:active /* IE */
{
padding: 0 2px !important;
border-width: 3px;
}
.cke_skin_office2003 .cke_button a.cke_disabled * {
filter: alpha(opacity=30); /* IE */
opacity: 0.3; /* Safari, Opera and Mozilla */
}
/* IE with zoom != 100% will distort the icons otherwise #4821 */
.cke_skin_office2003 .cke_browser_ie .cke_button a.cke_disabled *,
.cke_skin_office2003 .cke_browser_ie a:hover.cke_button .cke_disabled * {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=30);
}
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_button a.cke_disabled *,
.cke_skin_office2003 .cke_browser_ie .cke_rtl a:hover.cke_button .cke_disabled * {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale'), alpha(opacity=30);
}
.cke_skin_office2003 .cke_browser_ie6 .cke_button a.cke_disabled *,
.cke_skin_office2003 .cke_browser_ie6 a:hover.cke_button .cke_disabled *,
.cke_skin_office2003 .cke_browser_ie .cke_button.cke_noalphafix a.cke_disabled * {
filter: alpha(opacity=30);
}
.cke_skin_office2003 .cke_hc .cke_button a.cke_disabled *,
.cke_skin_office2003 .cke_browser_ie.cke_hc a:hover.cke_button .cke_disabled * {
filter: alpha(opacity=60);
opacity: 0.6;
}
.cke_skin_office2003 .cke_button a:hover,
.cke_skin_office2003 .cke_button a:focus,
.cke_skin_office2003 .cke_button a:active /* IE */
{
border: solid 1px #316ac5;
background-color: #dff1ff;
filter: alpha(opacity=100); /* IE */
opacity: 1; /* Safari, Opera and Mozilla */
vertical-align: top;
_margin: 2px 0 0 0;
padding: 2px 4px;
}
.cke_skin_office2003 .cke_button .cke_icon {
background-image: url(icons.png);
background-position: 100px;
background-repeat: no-repeat;
margin-top: 1px;
width: 16px;
height: 16px;
display: inline-block;
cursor: default;
}
.cke_skin_office2003 .cke_rtl .cke_button .cke_icon {
background-image: url(icons_rtl.png);
}
/* IE with zoom != 100% will distort the icons otherwise #4821 */
.cke_skin_office2003 .cke_browser_ie .cke_button .cke_icon {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
}
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_button .cke_icon {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
}
.cke_skin_office2003 .cke_browser_ie6 .cke_button .cke_icon,
.cke_skin_office2003 .cke_browser_ie6 .cke_rtl .cke_button .cke_icon,
.cke_skin_office2003 .cke_browser_ie .cke_button.cke_noalphafix .cke_icon,
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_button.cke_noalphafix .cke_icon {
filter:;
}
.cke_skin_office2003 .cke_button .cke_label {
display: none;
padding-left: 3px;
cursor: default;
vertical-align: middle;
_background-image: url(images/sprites_ie6.png);
_background-position: 0 -970px;
_background-repeat: repeat-x;
}
.cke_skin_office2003 .cke_button a:hover .cke_label {
_background-color: #dff1ff;
_background-image: none;
}
.cke_skin_office2003 .cke_button a.cke_on .cke_label {
_background-color: #c1d2ee;
_background-image: none;
}
.cke_skin_office2003 .cke_hc .cke_button .cke_label {
padding: 0;
display: inline-block;
}
.cke_skin_office2003 .cke_hc .cke_button .cke_icon {
display: none;
}
.cke_skin_office2003 .cke_accessibility {
position: absolute;
display: block;
width: 0;
height: 0;
overflow: hidden;
}
.cke_skin_office2003 .cke_button .cke_buttonarrow {
display: inline-block;
height: 18px;
width: 8px;
background-position: 2px -1004px;
background-image: url(images/sprites.png);
_background-image: url(images/sprites_ie6.png);
background-repeat: no-repeat;
cursor: default;
}
/* IE with zoom != 100% will distort the icons otherwise #4821 */
.cke_skin_office2003 .cke_browser_ie .cke_button .cke_buttonarrow {
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(sizingMethod='scale');
}
.cke_skin_office2003 .cke_browser_ie6 .cke_button .cke_buttonarrow {
filter:;
}
.cke_skin_office2003 .cke_rtl .cke_button .cke_buttonarrow {
background-position: 0 -1004px;
}
/*** Firefox 2 ***/
.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar,
.cke_skin_office2003 .cke_browser_gecko18 .cke_button a,
.cke_skin_office2003 .cke_browser_gecko18 .cke_button a.cke_off,
.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_icon,
.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_buttonarrow,
.cke_skin_office2003 .cke_browser_gecko18 .cke_separator,
.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar_start,
.cke_skin_office2003 .cke_browser_gecko18 .cke_toolbar_end {
display: block;
float: left;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_hc .cke_button .cke_icon {
display: none;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button a,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button a.cke_off,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_icon,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_buttonarrow,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_separator,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar_start,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_toolbar_end {
float: right;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_label,
.cke_skin_office2003 .cke_browser_gecko18 .cke_break {
float: left;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl span.cke_inline_label {
float: right;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_button .cke_label,
.cke_skin_office2003 .cke_browser_gecko18 .cke_rtl .cke_break {
float: right;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_separator {
margin-top: 4px;
}
.cke_skin_office2003 .cke_browser_gecko18 .cke_button .cke_label {
padding-top: 3px;
}
/*** IE6 ***/
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolgroup,
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_separator,
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_start,
.cke_skin_office2003 .cke_browser_ie .cke_rtl .cke_toolbar_end {
float: none;
}
/*** IE8 ***/
.cke_skin_office2003 .cke_browser_ie8 .cke_toolbar,
.cke_skin_office2003 .cke_browser_ie8 .cke_toolgroup {
vertical-align: top;
}
.cke_skin_office2003 .cke_browser_iequirks.cke_browser_ie8 .cke_toolbar,
.cke_skin_office2003 .cke_browser_iequirks.cke_browser_ie8 .cke_toolgroup {
/* revert previous */
vertical-align: baseline;
}
/* Separator + Combo penetrate toolbar in IE quirks. (#4461) */
.cke_skin_office2003 .cke_browser_iequirks .cke_separator {
vertical-align: text-bottom;
}
/* Fix cursor shape consistency on toolbar combos (#4031) */
.cke_skin_office2003 .cke_browser_ie .cke_rcombo,
.cke_skin_office2003 .cke_browser_ie .cke_rcombo * {
cursor: default;
} | 0.384565 | 0.058078 |
html {
height: auto;
font-size: 14px;
font-weight: 400;
line-height: 20px;
background-color: #c5dfeb;
box-sizing: border-box;
}
*::-moz-selection {
color: white;
background-color: rgba(185, 233, 212, 0.8);
}
*::selection {
color: white;
background-color: rgba(185, 233, 212, 0.8);
}
/*
this is a recommended box-sizing reset to insure the box models use the intuitive border-box box model,
while also allowing you to use content-box or padding-box on more specific selectors.
https://css-tricks.com/box-sizing/
*/
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
min-height: 100vh;
box-sizing: border-box;
display: flex;
position: relative;
flex-direction: column;
margin: 0;
color: #555;
padding: 0;
font-family: Roboto, Helvetica, sans-serif;
justify-content: space-between;
background-color: #c5dfeb;
background: linear-gradient(#c5dfeb 10%, #e2e7ea);
line-height: 1;
-webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: subpixel-antialiased;
}
p {
line-height: 24px;
font-size: 16px;
font-weight: 100;
}
section {
position: relative;
box-sizing: border-box;
}
.subtle-text {
color: rgba(255, 255, 255, 0.75);
}
.grid {
position: absolute;
right: -20%;
bottom: 0;
left: -20%;
height: 256px;
transform: rotateX(70deg);
transform-origin: center bottom;
animation: grid 1s linear infinite;
background-image: linear-gradient(#333 0px, #333 1px, transparent 2px),
linear-gradient(90deg, #333 0px, #333 1px, transparent 2px);
background-position: center 0;
background-size: 24px 24px;
}
.svg.epfl-logo {
padding: 3px;
width: 7em;
margin: 0;
transition: all 0.3s ease;
}
.call-to-action {
font-size: 1em;
background-size: 1px 100px;
}
.introducing {
background-color: #ffffff1f;
padding: 1em;
border-radius: 2px;
font-size: 16px;
width: auto;
display: inline-block;
color: white;
transition: all 150ms ease-out;
}
.introducing .new {
padding: 8px;
border-radius: 2px;
background-color: #c7eddd;
background-image: linear-gradient(45deg, #bfeeff 0%, #c7eddd 74%);
margin-right: 1em;
color: #1b75ba;
box-shadow: -2px 3px 1px #00000033;
text-shadow: -1px 1px 1px #00000033;
}
.introducing:hover {
background-color: transparent;
}
.buttons-container {
display: flex;
margin-top: 1em;
align-items: center;
}
.buttons-container .sdk-buttons {
padding: 0 1em;
}
.buttons-container .sdk-buttons button {
margin: 0 1em;
background-image: none;
background-color: transparent;
}
.buttons-container .sdk-buttons button:hover {
color: #555;
background-color: #c7eddd;
}
.not-subtle {
position: absolute;
top: 6%;
height: 500px;
width: 500px;
}
.not-subtle img {
width: 100%;
height: 100%;
}
.wrapper {
background-color: white;
margin: 0 auto;
max-width: 1366px;
overflow: hidden;
position: relative;
width: 100%;
}
.not-subtle {
margin: 4em;
}
h1 em {
font-weight: 400;
font-style: initial;
/* color: #bfeeff; */
}
.gradient {
background-image: radial-gradient(
ellipse at center -50%,
#18334f 0%,
#18334f 18%,
#192532 57%,
#192532 100%
);
color: white;
padding: 4em;
}
.gradient h1,
.gradient h2 {
color: white;
}
.links a {
color: #8de2ff;
}
a,
a:active,
a:focus {
text-decoration: none;
}
.links a:hover {
text-decoration: underline;
}
.container {
display: flex;
justify-content: space-between;
}
.container.center {
align-items: center;
}
.container .item {
margin: 0 0.5em;
}
.container .item:first-child {
margin-left: 0;
}
.container .item:last-child {
margin-right: 0;
}
.container.column {
flex-direction: column;
}
.container.justify-start {
justify-content: flex-start;
}
h1 {
font-size: 2.5em;
}
.intro h1 {
margin-top: 0;
}
h1,
h2,
strong,
b {
color: #333;
}
h1,
h2 {
font-weight: 100;
}
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: middle;
}
.regular-box {
margin: 1em 0;
padding: 1em;
background: #f7f9fa;
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
box-sizing: border-box;
border-radius: 2px;
display: flex;
justify-content: space-between;
}
.bordered-box {
position: relative;
background-color: #fff;
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
display: block;
padding: 24px;
}
p {
word-spacing: 0.05em;
}
article {
margin: 2em auto;
}
header {
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
height: 60px;
background-color: transparent;
position: absolute;
width: 100%;
/* show header above canvas */
z-index: 2;
padding: 0 2em;
}
.logo-block {
display: flex;
align-items: center;
}
.logo {
margin-right: 0.5em;
border-radius: 50%;
background-color: white;
padding: 0.5em;
}
header img {
height: 2em;
width: 2em;
}
.header-logo {
margin-right: 0.5em;
border-radius: 50%;
background-color: white;
padding: 0.5em;
}
header h1 {
font-size: 1.5em;
color: #8de2ff;
letter-spacing: 1px;
font-weight: 100;
}
.slant-top-reverse {
position: relative;
/* show blue slant above canvas */
z-index: 1;
}
.slant-top-reverse::before {
top: 0;
transform: skewY(-1.5deg);
transform-origin: 0 0;
}
.fold .angle {
background-color: #bfeeff;
position: absolute;
width: 100%;
height: 100%;
}
.slant-top-reverse::before {
background: inherit;
background-color: #bfeeff;
content: "";
display: block;
height: 50%;
left: 0;
position: absolute;
right: 0;
z-index: -1;
backface-visibility: hidden;
}
.slant-bottom {
clip-path: polygon(0 10%, 100% 0%, 100% 70%, 0 100%);
}
section {
padding: 2em;
}
.hero {
/* background-color: #f8ceec; */
background-color: #1f3957;
background-image: radial-gradient(
ellipse at center -50%,
#18334f 0%,
#18334f 18%,
#192532 57%,
#192532 100%
);
padding-bottom: 14rem;
padding-top: 10rem;
position: relative;
color: white;
}
.above-lines {
z-index: 100;
}
.face-off {
display: flex;
justify-content: flex-end;
}
.choose-sides {
padding: 3em;
}
.get-started {
width: 100%;
text-align: center;
}
#lines {
opacity: 0;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 1;
animation: fadeInAlmost 1s ease-in;
animation-fill-mode: forwards;
}
.hero #lines {
animation: fadeInBarely 1s ease-in;
animation-fill-mode: forwards;
}
.hero h1,
.hero h2 {
color: white;
line-height: 1.5em;
}
.hero h2 {
color: rgba(247, 249, 250, 0.75);
}
.hero .center {
width: 70%;
margin: 0 auto;
text-align: center;
}
header nav:first-child {
flex-grow: 1;
}
.menu-block {
position: relative;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.menu-block a {
/* #2d2f38f0 */
color: rgba(247, 249, 250, 0.75);
font-weight: lighter;
padding: 0 1em;
text-decoration: none;
transition: all 150ms ease-out;
}
.menu-block a:hover,
.menu-block a.active {
/* color: #44c7f4; */
color: white;
/* box-shadow: inset 0px -3px 0px #44c7f4; */
}
.menu-block a.apps:hover + a + ul.apps-list {
display: block;
}
.menu-block a:hover svg path {
transition: all 150ms ease-out;
}
.menu-block a:hover svg path:not(.epfl-link .svg path),
.menu-block a:active svg path:not(.epfl-link .svg path),
.menu-block a:hover .bluer,
.menu-block a:active .bluer {
fill: #44c7f4;
color: #44c7f4;
}
#app-links {
flex-grow: 1;
justify-content: flex-start;
margin-left: 2em;
}
section.nexus {
padding: 50px 0;
display: flex;
justify-content: center;
}
.social {
box-sizing: border-box;
display: inline-block;
position: relative;
margin: 1em 0;
margin-right: 20px;
padding: 0.75em 2em;
border-radius: 2em;
font-size: 1.05em;
font-weight: 600;
letter-spacing: 0.1em;
width: 8em;
text-align: center;
text-indent: 1.4em;
color: #2c3e50;
background-color: #f6f6f6;
text-decoration: none;
}
.social img {
position: absolute;
left: 0.4em;
top: 0.4em;
width: 2em;
}
article .dashboard {
flex-wrap: wrap;
flex-direction: row;
}
.apps h2 {
width: 100%;
color: #2c3e50;
font-size: 2em;
font-weight: 500;
text-align: center;
margin: 0;
padding: 30px 0;
}
.apps ul {
width: 500px;
padding: 10px;
max-width: 100%;
margin: 0px auto;
list-style: none;
}
.apps ul li {
margin: 10px;
list-style: none;
}
table {
width: 400px;
border: 1px solid #2c3e50;
border-collapse: collapse;
border-spacing: 7px 5px;
font-size: 1.2em;
text-align: center;
}
table td,
table th {
border: 1px solid #2c3e50;
padding: 10px;
}
.up {
color: #4caf50;
}
.down {
color: #ff6666bd;
}
figure {
text-align: center;
}
figure img {
margin-bottom: 20px;
}
.error {
color: #ff6666bd;
}
.property .value.error {
color: #ff6666bd;
}
figure b {
display: block;
}
.modal {
border-radius: 2px;
background-color: #f7f9fa;
}
.modal .modal-body {
display: flex;
justify-content: center;
align-items: center;
min-height: 20vh;
}
textarea {
border: none;
margin-top: 1em;
}
textarea:focus {
outline: none;
}
footer {
display: flex;
justify-content: center;
align-items: center;
color: gray;
background-color: #f7f9fa;
}
footer .bot-links {
padding: 4em 0 2em;
border-bottom: 1px solid #00000012;
}
.bot-links .title {
font-size: 12px;
font-weight: 600;
margin-top: 5px;
margin-bottom: 18px;
padding-bottom: 10px;
letter-spacing: 1px;
text-transform: uppercase;
color: #2a3039;
color: #254a787d;
border-bottom: 1px solid #dbe3e7;
display: block;
}
.bot-links .container {
justify-content: space-around;
}
.bot-links .container .container {
justify-content: unset;
}
footer nav {
width: 200px;
}
footer nav a {
height: initial;
font-size: 14px;
line-height: 1.8;
display: block;
transition: all 150ms ease-in;
}
footer nav a:hover {
text-decoration: underline;
color: #2d2f38d9;
}
footer a {
color: gray;
}
footer nav a:not([href]) {
color: #8080804d;
}
.legalese {
position: relative;
padding: 2em 1em 2.5em;
background-color: #eef2f4;
background-image: url("../img/blizzard.png");
}
.legalese .links {
align-self: flex-end;
}
.legalese .links a {
margin: 0 1em;
color: grey;
}
.full {
width: 100%;
}
#login {
padding: 0 2em;
transition: all 150ms ease-out;
background-color: #0000002b;
box-shadow: inset 2px -1px 2px rgba(0, 0, 0, 0.3);
}
#login:hover,
#login:active {
background-color: #4c5865;
box-shadow: none;
}
#login:hover a,
#login:active a {
color: white;
box-shadow: none;
}
#login a {
cursor: pointer;
}
nav img {
width: auto;
margin-top: 5px;
}
nav a {
align-items: inherit;
height: 100%;
vertical-align: middle;
display: flex;
justify-content: flex-start;
flex-direction: row;
text-align: center;
}
nav a span {
margin: 5px;
}
footer p {
width: 100%;
margin: 0;
margin-bottom: 10px;
font-size: 0.8 em;
}
footer a.gh {
width: 20px;
margin-right: 10px;
margin-top: 0px;
}
footer p > a {
font-weight: 500;
text-decoration: none;
}
img[alt="EPFL"] {
filter: invert(90%);
}
img[alt="blue Brain Project logo"] {
width: 10em;
margin-top: 2em;
}
.icon {
width: 20px;
}
section.config {
display: none;
position: absolute;
height: 200px;
width: 300px;
padding: 25px;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
.config div {
margin-bottom: 20px;
}
.config input:not([type="submit"]) {
height: 40px;
width: 150px;
font-size: 12px;
border: none;
background-color: #80808014;
border-radius: 5px;
padding: 4px 1em;
}
.config input[type="submit"] {
width: 100px;
height: 40px;
font-size: 16px;
display: block;
margin: 5px auto;
background: #274b76;
color: #ffffff;
border: none;
}
.config.opened {
display: block;
}
.overlay {
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1000;
padding: 1.2rem;
display: none;
position: fixed;
overflow-y: auto;
overflow-x: hidden;
background: rgba(0, 0, 0, 0.75);
align-items: flex-start;
justify-content: center;
}
.apps-list {
position: absolute;
right: 40px;
top: 20px;
display: none;
background-color: #2d2f38f0;
list-style: none;
padding: 0;
margin: 0;
padding-top: 20px;
}
.apps-list:hover {
display: block;
}
.apps-list li {
height: 40px;
}
.property {
padding: 0;
display: flex;
width: 100%;
}
.property .container {
padding: 0.5em;
display: flex;
padding-left: 0;
width: 100%;
justify-content: start;
flex-direction: row;
}
.property .caption {
text-align: center;
}
.property .container div:not(:first-child):not(:nth-child(2)) {
margin-left: 0.5em;
}
.property .category-icon {
font-size: 1.5em;
color: rgba(185, 233, 212, 0.8);
}
.handle {
width: 0.5em;
align-self: stretch;
margin: -1px;
margin-right: 1em;
background-color: rgba(185, 233, 212, 0.8);
}
.property .container .key {
color: #333;
font-weight: 500;
margin-left: 0.5em;
}
.property .value {
font-weight: lighter;
color: grey;
margin-left: 0.5em;
}
.property .value i {
margin: 0 0.5em;
}
.property .label {
font-weight: lighter;
color: grey;
margin-left: 0.5em;
font-style: italic;
}
.svg {
transition: all 500ms ease-in;
opacity: 0;
height: 2em;
width: 2em;
}
.svg.replaced-svg {
opacity: 1;
}
.dashboard svg.svg path {
fill: rgba(185, 233, 212, 0.8);
}
.property .value.ok {
color: #b9e9d4;
}
.property .status {
flex-grow: 1;
text-align: right;
font-size: 1.5em;
}
.statuses .handle {
background-color: #6eddff66;
}
.show-off {
height: 6em;
width: 6em;
}
.dev-links {
margin-top: 2em;
}
.text-center {
text-align: center;
}
footer form {
padding: 1em 0;
}
.input {
margin: 1em 0;
}
.input label {
display: block;
}
.input input {
padding: 1em;
margin-top: 1em;
border: none;
transition: all 100ms ease-in;
border-radius: 4px;
color: grey;
}
.input input:active,
.input input:focus {
outline: none;
background-color: #8de2ff57;
}
button {
cursor: pointer;
padding: 1em;
border: none;
border-radius: 2px;
color: grey;
transition: all 300ms ease-in;
background-color: #44c7f4;
background-image: linear-gradient(45deg, #1b75ba 0%, #44c7f4 74%);
background-size: 1px 50px;
color: white;
margin-top: 0;
}
button:active,
button:focus {
outline: none;
}
button:hover {
background-position: 50px;
}
.feature-description {
padding: 0 2em;
justify-content: flex-start;
width: 40%;
}
.feature .feature-description p {
flex-grow: 1;
}
.feature-list {
justify-content: flex-start;
}
.feature {
max-width: 250px;
margin: 0 0.5em;
justify-content: flex-start;
}
.feature h3 {
color: #555;
display: flex;
font-size: 1.2em;
line-height: 24px;
height: 2em;
margin-bottom: 0.2em;
}
.feature h3 svg {
margin-right: 0.5em;
}
.feature h3 svg path {
fill: #0000008a;
}
.feature h3 * {
align-self: center;
}
section * {
/* necessary to have text visible and create the slanting effect */
z-index: 1;
}
section .highlight {
margin: 4em;
padding: 4em;
position: relative;
/* color: white; */
background-color: #fafbfc;
}
.tab-menu {
margin-bottom: 2em;
}
ul.menu {
position: relative;
padding: 0;
display: flex;
width: 50%;
margin: 0 auto;
box-sizing: border-box;
justify-content: space-around;
}
.wee {
height: 2px;
width: 100%;
background-color: #002b75;
position: absolute;
left: 0;
bottom: 0;
transition: 0.5s;
}
.menu-item {
display: inline-block;
padding: 0.25rem 0.25rem 0.5rem 0.25rem;
margin: 0 0.25rem;
color: #232323;
font-size: 1.5rem;
transition: 0.5s;
}
.menu-item button {
font-size: 1rem;
background: #44c7f4;
}
.current-menu-item button {
background: #c5dfeb;
}
.fold {
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
background-color: #fafbfc;
clip-path: polygon(0 10%, 100% 0%, 100% 70%, 0 100%);
}
.tick {
height: 1em;
width: 1em;
display: inline-block;
background-image: linear-gradient(45deg, #1b75ba 0%, #44c7f4 74%);
clip-path: polygon(0 0, 30% 0, 100% 100%, 70% 100%);
}
.feature-description h2 {
border-bottom: 1px solid #dbe3e7;
}
.slide-in {
opacity: 0;
position: relative;
animation-name: slideIn;
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-iteration-count: 1;
animation-delay: 0.2s;
animation-duration: 0.7s;
animation-fill-mode: forwards;
}
.slide-in.first {
animation-delay: 0s;
}
.card {
margin: 2em;
max-width: 400px;
}
.card .bordered-box {
flex-grow: 1;
}
.card svg {
font-size: 1.2em;
margin-right: 1em;
}
.card ul {
text-align: left;
padding: 1em 2em 2em;
margin: 0;
line-height: 24px;
font-size: 16px;
font-weight: 100;
width: 230px;
}
.card ul li {
list-style: none;
margin-bottom: 0.5em;
}
.card ul li:before {
background-image: url("../img/check-circle.svg");
content: "";
background-position: center;
height: 24px;
width: 20px;
margin-left: -28px;
position: absolute;
background-size: 20px;
background-repeat: no-repeat;
}
.wrap {
flex-wrap: wrap;
}
.roles {
max-width: 60%;
margin: 0 auto;
}
.roles svg path,
.roles svg circle,
.roles svg rect {
fill: #b9e9d4;
}
.container.contained {
max-width: 1340px;
padding-left: 20px;
padding-right: 20px;
margin-left: auto;
margin-right: auto;
}
#what-about-it {
margin-top: -5em;
background-color: #2d2f38f0;
background-image: radial-gradient(
ellipse at center -70%,
#18334f 0%,
#18334f 18%,
#192532 57%,
#2d2f38f0 100%
);
color: white;
padding: 4em;
/* use z-index: 1 if we want the previous grey slant to be above or below this section, design choice */
z-index: 1;
}
#what-about-it .container:nth-child(2) {
width: 40%;
line-height: 2em;
}
#what-about-it .container {
margin: 0 2em;
justify-content: center;
}
#what-about-it .container p:first-child {
margin-top: 0;
}
#what-about-it h2 {
color: white;
margin-top: 0;
}
#roles {
padding-bottom: 8em;
}
.section-title {
color: #b3b8bd;
width: 600px;
line-height: 24px;
font-weight: 400;
text-align: center;
margin: 0 auto;
}
.section-title h2 {
font-size: 34px;
}
.section-title h3 {
font-weight: 400;
}
#features .regular-box {
padding: 2em;
}
.emph {
display: inline-block;
position: relative;
width: 200px;
text-align: left;
padding: 0 8px;
}
.emph.in::before {
transform: scale3d(1, 1, 1);
opacity: 0.5;
}
.emph::before {
background: #b9e9d4;
content: "";
position: absolute;
z-index: -1;
bottom: 0;
left: 0;
width: 80%;
height: 50%;
opacity: 0.3;
transform: scale3d(0, 1, 1);
transform-origin: 0% 50%;
transition: transform 0.5s;
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
@keyframes emphasis {
0% {
opacity: 0;
}
20% {
opacity: 1;
}
80% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeInAlmost {
0% {
opacity: 0;
}
100% {
opacity: 0.2;
}
}
@keyframes fadeInBarely {
0% {
opacity: 0;
}
100% {
opacity: 0.2;
}
}
@keyframes slideIn {
0% {
opacity: 0;
transform: translateY(40px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideIn1 {
0% {
opacity: 0;
transform: translateY(40px) rotateY(90deg);
}
100% {
opacity: 1;
transform: translateY(0) rotateY(0deg);
}
}
@media only screen and (max-width: 768px) {
.introducing .new {
display: none;
}
.emph {
width: auto;
}
.not-subtle {
position: relative;
width: 100%;
height: 200px;
width: 200px;
margin: 0 auto;
}
header {
padding: 0 1em;
}
header img {
height: 1.5em;
width: 1.5em;
}
header h1 {
font-size: 1em;
}
.menu-block a {
padding: 0;
}
.hero .center {
box-sizing: border-box;
width: 100%;
padding: 0 1rem;
}
.hero h1 {
font-size: 1.5em;
}
.hero h2 {
font-size: 1em;
}
.call-to-action {
font-size: 1em;
}
section {
padding: 0;
}
.container.contained {
max-width: initial;
width: 100%;
padding: 0;
margin: 0;
}
.section-title {
width: 100%;
padding: 1em;
box-sizing: border-box;
}
.section-title h2 {
font-size: 1.2em;
}
#features .regular-box {
padding: 0;
}
ul.menu {
margin-top: 0.5em;
}
.menu-item {
margin: 0;
}
.menu-item button {
font-size: 0.5em;
}
.tab-menu {
margin-bottom: 1em;
}
.container {
flex-wrap: wrap;
}
.feature-description {
width: 100%;
padding: 1em;
}
.feature-list {
padding: 1em;
}
.feature {
max-width: initial;
}
.container {
width: 100%;
max-width: initial;
}
.container.roles {
width: 100%;
max-width: initial;
}
.card {
width: 100%;
max-width: initial;
margin: 0;
padding: 1em;
}
.handle {
padding: 2px;
}
#what-about-it {
padding: 2em;
}
#what-about-it .container {
margin: 0;
}
#what-about-it .container:nth-child(2) {
width: 100%;
}
section .highlight {
margin: 2em;
padding: 2em;
}
.bot-links .container .container {
justify-content: center;
}
.show-off {
height: 4em;
width: 4em;
}
.bot-links .container.column {
padding-bottom: 2em;
}
footer nav {
width: 100%;
padding: 2em;
}
.subscribe {
padding: 2em;
}
.container.links {
padding: 2em 0 0;
}
} | docs/src/main/product-page-src/css/style.css | html {
height: auto;
font-size: 14px;
font-weight: 400;
line-height: 20px;
background-color: #c5dfeb;
box-sizing: border-box;
}
*::-moz-selection {
color: white;
background-color: rgba(185, 233, 212, 0.8);
}
*::selection {
color: white;
background-color: rgba(185, 233, 212, 0.8);
}
/*
this is a recommended box-sizing reset to insure the box models use the intuitive border-box box model,
while also allowing you to use content-box or padding-box on more specific selectors.
https://css-tricks.com/box-sizing/
*/
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
min-height: 100vh;
box-sizing: border-box;
display: flex;
position: relative;
flex-direction: column;
margin: 0;
color: #555;
padding: 0;
font-family: Roboto, Helvetica, sans-serif;
justify-content: space-between;
background-color: #c5dfeb;
background: linear-gradient(#c5dfeb 10%, #e2e7ea);
line-height: 1;
-webkit-font-smoothing: subpixel-antialiased;
-moz-osx-font-smoothing: subpixel-antialiased;
}
p {
line-height: 24px;
font-size: 16px;
font-weight: 100;
}
section {
position: relative;
box-sizing: border-box;
}
.subtle-text {
color: rgba(255, 255, 255, 0.75);
}
.grid {
position: absolute;
right: -20%;
bottom: 0;
left: -20%;
height: 256px;
transform: rotateX(70deg);
transform-origin: center bottom;
animation: grid 1s linear infinite;
background-image: linear-gradient(#333 0px, #333 1px, transparent 2px),
linear-gradient(90deg, #333 0px, #333 1px, transparent 2px);
background-position: center 0;
background-size: 24px 24px;
}
.svg.epfl-logo {
padding: 3px;
width: 7em;
margin: 0;
transition: all 0.3s ease;
}
.call-to-action {
font-size: 1em;
background-size: 1px 100px;
}
.introducing {
background-color: #ffffff1f;
padding: 1em;
border-radius: 2px;
font-size: 16px;
width: auto;
display: inline-block;
color: white;
transition: all 150ms ease-out;
}
.introducing .new {
padding: 8px;
border-radius: 2px;
background-color: #c7eddd;
background-image: linear-gradient(45deg, #bfeeff 0%, #c7eddd 74%);
margin-right: 1em;
color: #1b75ba;
box-shadow: -2px 3px 1px #00000033;
text-shadow: -1px 1px 1px #00000033;
}
.introducing:hover {
background-color: transparent;
}
.buttons-container {
display: flex;
margin-top: 1em;
align-items: center;
}
.buttons-container .sdk-buttons {
padding: 0 1em;
}
.buttons-container .sdk-buttons button {
margin: 0 1em;
background-image: none;
background-color: transparent;
}
.buttons-container .sdk-buttons button:hover {
color: #555;
background-color: #c7eddd;
}
.not-subtle {
position: absolute;
top: 6%;
height: 500px;
width: 500px;
}
.not-subtle img {
width: 100%;
height: 100%;
}
.wrapper {
background-color: white;
margin: 0 auto;
max-width: 1366px;
overflow: hidden;
position: relative;
width: 100%;
}
.not-subtle {
margin: 4em;
}
h1 em {
font-weight: 400;
font-style: initial;
/* color: #bfeeff; */
}
.gradient {
background-image: radial-gradient(
ellipse at center -50%,
#18334f 0%,
#18334f 18%,
#192532 57%,
#192532 100%
);
color: white;
padding: 4em;
}
.gradient h1,
.gradient h2 {
color: white;
}
.links a {
color: #8de2ff;
}
a,
a:active,
a:focus {
text-decoration: none;
}
.links a:hover {
text-decoration: underline;
}
.container {
display: flex;
justify-content: space-between;
}
.container.center {
align-items: center;
}
.container .item {
margin: 0 0.5em;
}
.container .item:first-child {
margin-left: 0;
}
.container .item:last-child {
margin-right: 0;
}
.container.column {
flex-direction: column;
}
.container.justify-start {
justify-content: flex-start;
}
h1 {
font-size: 2.5em;
}
.intro h1 {
margin-top: 0;
}
h1,
h2,
strong,
b {
color: #333;
}
h1,
h2 {
font-weight: 100;
}
audio,
canvas,
iframe,
img,
svg,
video {
vertical-align: middle;
}
.regular-box {
margin: 1em 0;
padding: 1em;
background: #f7f9fa;
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
box-sizing: border-box;
border-radius: 2px;
display: flex;
justify-content: space-between;
}
.bordered-box {
position: relative;
background-color: #fff;
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
display: block;
padding: 24px;
}
p {
word-spacing: 0.05em;
}
article {
margin: 2em auto;
}
header {
box-sizing: border-box;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
height: 60px;
background-color: transparent;
position: absolute;
width: 100%;
/* show header above canvas */
z-index: 2;
padding: 0 2em;
}
.logo-block {
display: flex;
align-items: center;
}
.logo {
margin-right: 0.5em;
border-radius: 50%;
background-color: white;
padding: 0.5em;
}
header img {
height: 2em;
width: 2em;
}
.header-logo {
margin-right: 0.5em;
border-radius: 50%;
background-color: white;
padding: 0.5em;
}
header h1 {
font-size: 1.5em;
color: #8de2ff;
letter-spacing: 1px;
font-weight: 100;
}
.slant-top-reverse {
position: relative;
/* show blue slant above canvas */
z-index: 1;
}
.slant-top-reverse::before {
top: 0;
transform: skewY(-1.5deg);
transform-origin: 0 0;
}
.fold .angle {
background-color: #bfeeff;
position: absolute;
width: 100%;
height: 100%;
}
.slant-top-reverse::before {
background: inherit;
background-color: #bfeeff;
content: "";
display: block;
height: 50%;
left: 0;
position: absolute;
right: 0;
z-index: -1;
backface-visibility: hidden;
}
.slant-bottom {
clip-path: polygon(0 10%, 100% 0%, 100% 70%, 0 100%);
}
section {
padding: 2em;
}
.hero {
/* background-color: #f8ceec; */
background-color: #1f3957;
background-image: radial-gradient(
ellipse at center -50%,
#18334f 0%,
#18334f 18%,
#192532 57%,
#192532 100%
);
padding-bottom: 14rem;
padding-top: 10rem;
position: relative;
color: white;
}
.above-lines {
z-index: 100;
}
.face-off {
display: flex;
justify-content: flex-end;
}
.choose-sides {
padding: 3em;
}
.get-started {
width: 100%;
text-align: center;
}
#lines {
opacity: 0;
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
z-index: 1;
animation: fadeInAlmost 1s ease-in;
animation-fill-mode: forwards;
}
.hero #lines {
animation: fadeInBarely 1s ease-in;
animation-fill-mode: forwards;
}
.hero h1,
.hero h2 {
color: white;
line-height: 1.5em;
}
.hero h2 {
color: rgba(247, 249, 250, 0.75);
}
.hero .center {
width: 70%;
margin: 0 auto;
text-align: center;
}
header nav:first-child {
flex-grow: 1;
}
.menu-block {
position: relative;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.menu-block a {
/* #2d2f38f0 */
color: rgba(247, 249, 250, 0.75);
font-weight: lighter;
padding: 0 1em;
text-decoration: none;
transition: all 150ms ease-out;
}
.menu-block a:hover,
.menu-block a.active {
/* color: #44c7f4; */
color: white;
/* box-shadow: inset 0px -3px 0px #44c7f4; */
}
.menu-block a.apps:hover + a + ul.apps-list {
display: block;
}
.menu-block a:hover svg path {
transition: all 150ms ease-out;
}
.menu-block a:hover svg path:not(.epfl-link .svg path),
.menu-block a:active svg path:not(.epfl-link .svg path),
.menu-block a:hover .bluer,
.menu-block a:active .bluer {
fill: #44c7f4;
color: #44c7f4;
}
#app-links {
flex-grow: 1;
justify-content: flex-start;
margin-left: 2em;
}
section.nexus {
padding: 50px 0;
display: flex;
justify-content: center;
}
.social {
box-sizing: border-box;
display: inline-block;
position: relative;
margin: 1em 0;
margin-right: 20px;
padding: 0.75em 2em;
border-radius: 2em;
font-size: 1.05em;
font-weight: 600;
letter-spacing: 0.1em;
width: 8em;
text-align: center;
text-indent: 1.4em;
color: #2c3e50;
background-color: #f6f6f6;
text-decoration: none;
}
.social img {
position: absolute;
left: 0.4em;
top: 0.4em;
width: 2em;
}
article .dashboard {
flex-wrap: wrap;
flex-direction: row;
}
.apps h2 {
width: 100%;
color: #2c3e50;
font-size: 2em;
font-weight: 500;
text-align: center;
margin: 0;
padding: 30px 0;
}
.apps ul {
width: 500px;
padding: 10px;
max-width: 100%;
margin: 0px auto;
list-style: none;
}
.apps ul li {
margin: 10px;
list-style: none;
}
table {
width: 400px;
border: 1px solid #2c3e50;
border-collapse: collapse;
border-spacing: 7px 5px;
font-size: 1.2em;
text-align: center;
}
table td,
table th {
border: 1px solid #2c3e50;
padding: 10px;
}
.up {
color: #4caf50;
}
.down {
color: #ff6666bd;
}
figure {
text-align: center;
}
figure img {
margin-bottom: 20px;
}
.error {
color: #ff6666bd;
}
.property .value.error {
color: #ff6666bd;
}
figure b {
display: block;
}
.modal {
border-radius: 2px;
background-color: #f7f9fa;
}
.modal .modal-body {
display: flex;
justify-content: center;
align-items: center;
min-height: 20vh;
}
textarea {
border: none;
margin-top: 1em;
}
textarea:focus {
outline: none;
}
footer {
display: flex;
justify-content: center;
align-items: center;
color: gray;
background-color: #f7f9fa;
}
footer .bot-links {
padding: 4em 0 2em;
border-bottom: 1px solid #00000012;
}
.bot-links .title {
font-size: 12px;
font-weight: 600;
margin-top: 5px;
margin-bottom: 18px;
padding-bottom: 10px;
letter-spacing: 1px;
text-transform: uppercase;
color: #2a3039;
color: #254a787d;
border-bottom: 1px solid #dbe3e7;
display: block;
}
.bot-links .container {
justify-content: space-around;
}
.bot-links .container .container {
justify-content: unset;
}
footer nav {
width: 200px;
}
footer nav a {
height: initial;
font-size: 14px;
line-height: 1.8;
display: block;
transition: all 150ms ease-in;
}
footer nav a:hover {
text-decoration: underline;
color: #2d2f38d9;
}
footer a {
color: gray;
}
footer nav a:not([href]) {
color: #8080804d;
}
.legalese {
position: relative;
padding: 2em 1em 2.5em;
background-color: #eef2f4;
background-image: url("../img/blizzard.png");
}
.legalese .links {
align-self: flex-end;
}
.legalese .links a {
margin: 0 1em;
color: grey;
}
.full {
width: 100%;
}
#login {
padding: 0 2em;
transition: all 150ms ease-out;
background-color: #0000002b;
box-shadow: inset 2px -1px 2px rgba(0, 0, 0, 0.3);
}
#login:hover,
#login:active {
background-color: #4c5865;
box-shadow: none;
}
#login:hover a,
#login:active a {
color: white;
box-shadow: none;
}
#login a {
cursor: pointer;
}
nav img {
width: auto;
margin-top: 5px;
}
nav a {
align-items: inherit;
height: 100%;
vertical-align: middle;
display: flex;
justify-content: flex-start;
flex-direction: row;
text-align: center;
}
nav a span {
margin: 5px;
}
footer p {
width: 100%;
margin: 0;
margin-bottom: 10px;
font-size: 0.8 em;
}
footer a.gh {
width: 20px;
margin-right: 10px;
margin-top: 0px;
}
footer p > a {
font-weight: 500;
text-decoration: none;
}
img[alt="EPFL"] {
filter: invert(90%);
}
img[alt="blue Brain Project logo"] {
width: 10em;
margin-top: 2em;
}
.icon {
width: 20px;
}
section.config {
display: none;
position: absolute;
height: 200px;
width: 300px;
padding: 25px;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
.config div {
margin-bottom: 20px;
}
.config input:not([type="submit"]) {
height: 40px;
width: 150px;
font-size: 12px;
border: none;
background-color: #80808014;
border-radius: 5px;
padding: 4px 1em;
}
.config input[type="submit"] {
width: 100px;
height: 40px;
font-size: 16px;
display: block;
margin: 5px auto;
background: #274b76;
color: #ffffff;
border: none;
}
.config.opened {
display: block;
}
.overlay {
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1000;
padding: 1.2rem;
display: none;
position: fixed;
overflow-y: auto;
overflow-x: hidden;
background: rgba(0, 0, 0, 0.75);
align-items: flex-start;
justify-content: center;
}
.apps-list {
position: absolute;
right: 40px;
top: 20px;
display: none;
background-color: #2d2f38f0;
list-style: none;
padding: 0;
margin: 0;
padding-top: 20px;
}
.apps-list:hover {
display: block;
}
.apps-list li {
height: 40px;
}
.property {
padding: 0;
display: flex;
width: 100%;
}
.property .container {
padding: 0.5em;
display: flex;
padding-left: 0;
width: 100%;
justify-content: start;
flex-direction: row;
}
.property .caption {
text-align: center;
}
.property .container div:not(:first-child):not(:nth-child(2)) {
margin-left: 0.5em;
}
.property .category-icon {
font-size: 1.5em;
color: rgba(185, 233, 212, 0.8);
}
.handle {
width: 0.5em;
align-self: stretch;
margin: -1px;
margin-right: 1em;
background-color: rgba(185, 233, 212, 0.8);
}
.property .container .key {
color: #333;
font-weight: 500;
margin-left: 0.5em;
}
.property .value {
font-weight: lighter;
color: grey;
margin-left: 0.5em;
}
.property .value i {
margin: 0 0.5em;
}
.property .label {
font-weight: lighter;
color: grey;
margin-left: 0.5em;
font-style: italic;
}
.svg {
transition: all 500ms ease-in;
opacity: 0;
height: 2em;
width: 2em;
}
.svg.replaced-svg {
opacity: 1;
}
.dashboard svg.svg path {
fill: rgba(185, 233, 212, 0.8);
}
.property .value.ok {
color: #b9e9d4;
}
.property .status {
flex-grow: 1;
text-align: right;
font-size: 1.5em;
}
.statuses .handle {
background-color: #6eddff66;
}
.show-off {
height: 6em;
width: 6em;
}
.dev-links {
margin-top: 2em;
}
.text-center {
text-align: center;
}
footer form {
padding: 1em 0;
}
.input {
margin: 1em 0;
}
.input label {
display: block;
}
.input input {
padding: 1em;
margin-top: 1em;
border: none;
transition: all 100ms ease-in;
border-radius: 4px;
color: grey;
}
.input input:active,
.input input:focus {
outline: none;
background-color: #8de2ff57;
}
button {
cursor: pointer;
padding: 1em;
border: none;
border-radius: 2px;
color: grey;
transition: all 300ms ease-in;
background-color: #44c7f4;
background-image: linear-gradient(45deg, #1b75ba 0%, #44c7f4 74%);
background-size: 1px 50px;
color: white;
margin-top: 0;
}
button:active,
button:focus {
outline: none;
}
button:hover {
background-position: 50px;
}
.feature-description {
padding: 0 2em;
justify-content: flex-start;
width: 40%;
}
.feature .feature-description p {
flex-grow: 1;
}
.feature-list {
justify-content: flex-start;
}
.feature {
max-width: 250px;
margin: 0 0.5em;
justify-content: flex-start;
}
.feature h3 {
color: #555;
display: flex;
font-size: 1.2em;
line-height: 24px;
height: 2em;
margin-bottom: 0.2em;
}
.feature h3 svg {
margin-right: 0.5em;
}
.feature h3 svg path {
fill: #0000008a;
}
.feature h3 * {
align-self: center;
}
section * {
/* necessary to have text visible and create the slanting effect */
z-index: 1;
}
section .highlight {
margin: 4em;
padding: 4em;
position: relative;
/* color: white; */
background-color: #fafbfc;
}
.tab-menu {
margin-bottom: 2em;
}
ul.menu {
position: relative;
padding: 0;
display: flex;
width: 50%;
margin: 0 auto;
box-sizing: border-box;
justify-content: space-around;
}
.wee {
height: 2px;
width: 100%;
background-color: #002b75;
position: absolute;
left: 0;
bottom: 0;
transition: 0.5s;
}
.menu-item {
display: inline-block;
padding: 0.25rem 0.25rem 0.5rem 0.25rem;
margin: 0 0.25rem;
color: #232323;
font-size: 1.5rem;
transition: 0.5s;
}
.menu-item button {
font-size: 1rem;
background: #44c7f4;
}
.current-menu-item button {
background: #c5dfeb;
}
.fold {
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
background-color: #fafbfc;
clip-path: polygon(0 10%, 100% 0%, 100% 70%, 0 100%);
}
.tick {
height: 1em;
width: 1em;
display: inline-block;
background-image: linear-gradient(45deg, #1b75ba 0%, #44c7f4 74%);
clip-path: polygon(0 0, 30% 0, 100% 100%, 70% 100%);
}
.feature-description h2 {
border-bottom: 1px solid #dbe3e7;
}
.slide-in {
opacity: 0;
position: relative;
animation-name: slideIn;
animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
animation-iteration-count: 1;
animation-delay: 0.2s;
animation-duration: 0.7s;
animation-fill-mode: forwards;
}
.slide-in.first {
animation-delay: 0s;
}
.card {
margin: 2em;
max-width: 400px;
}
.card .bordered-box {
flex-grow: 1;
}
.card svg {
font-size: 1.2em;
margin-right: 1em;
}
.card ul {
text-align: left;
padding: 1em 2em 2em;
margin: 0;
line-height: 24px;
font-size: 16px;
font-weight: 100;
width: 230px;
}
.card ul li {
list-style: none;
margin-bottom: 0.5em;
}
.card ul li:before {
background-image: url("../img/check-circle.svg");
content: "";
background-position: center;
height: 24px;
width: 20px;
margin-left: -28px;
position: absolute;
background-size: 20px;
background-repeat: no-repeat;
}
.wrap {
flex-wrap: wrap;
}
.roles {
max-width: 60%;
margin: 0 auto;
}
.roles svg path,
.roles svg circle,
.roles svg rect {
fill: #b9e9d4;
}
.container.contained {
max-width: 1340px;
padding-left: 20px;
padding-right: 20px;
margin-left: auto;
margin-right: auto;
}
#what-about-it {
margin-top: -5em;
background-color: #2d2f38f0;
background-image: radial-gradient(
ellipse at center -70%,
#18334f 0%,
#18334f 18%,
#192532 57%,
#2d2f38f0 100%
);
color: white;
padding: 4em;
/* use z-index: 1 if we want the previous grey slant to be above or below this section, design choice */
z-index: 1;
}
#what-about-it .container:nth-child(2) {
width: 40%;
line-height: 2em;
}
#what-about-it .container {
margin: 0 2em;
justify-content: center;
}
#what-about-it .container p:first-child {
margin-top: 0;
}
#what-about-it h2 {
color: white;
margin-top: 0;
}
#roles {
padding-bottom: 8em;
}
.section-title {
color: #b3b8bd;
width: 600px;
line-height: 24px;
font-weight: 400;
text-align: center;
margin: 0 auto;
}
.section-title h2 {
font-size: 34px;
}
.section-title h3 {
font-weight: 400;
}
#features .regular-box {
padding: 2em;
}
.emph {
display: inline-block;
position: relative;
width: 200px;
text-align: left;
padding: 0 8px;
}
.emph.in::before {
transform: scale3d(1, 1, 1);
opacity: 0.5;
}
.emph::before {
background: #b9e9d4;
content: "";
position: absolute;
z-index: -1;
bottom: 0;
left: 0;
width: 80%;
height: 50%;
opacity: 0.3;
transform: scale3d(0, 1, 1);
transform-origin: 0% 50%;
transition: transform 0.5s;
transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}
@keyframes emphasis {
0% {
opacity: 0;
}
20% {
opacity: 1;
}
80% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes fadeInAlmost {
0% {
opacity: 0;
}
100% {
opacity: 0.2;
}
}
@keyframes fadeInBarely {
0% {
opacity: 0;
}
100% {
opacity: 0.2;
}
}
@keyframes slideIn {
0% {
opacity: 0;
transform: translateY(40px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideIn1 {
0% {
opacity: 0;
transform: translateY(40px) rotateY(90deg);
}
100% {
opacity: 1;
transform: translateY(0) rotateY(0deg);
}
}
@media only screen and (max-width: 768px) {
.introducing .new {
display: none;
}
.emph {
width: auto;
}
.not-subtle {
position: relative;
width: 100%;
height: 200px;
width: 200px;
margin: 0 auto;
}
header {
padding: 0 1em;
}
header img {
height: 1.5em;
width: 1.5em;
}
header h1 {
font-size: 1em;
}
.menu-block a {
padding: 0;
}
.hero .center {
box-sizing: border-box;
width: 100%;
padding: 0 1rem;
}
.hero h1 {
font-size: 1.5em;
}
.hero h2 {
font-size: 1em;
}
.call-to-action {
font-size: 1em;
}
section {
padding: 0;
}
.container.contained {
max-width: initial;
width: 100%;
padding: 0;
margin: 0;
}
.section-title {
width: 100%;
padding: 1em;
box-sizing: border-box;
}
.section-title h2 {
font-size: 1.2em;
}
#features .regular-box {
padding: 0;
}
ul.menu {
margin-top: 0.5em;
}
.menu-item {
margin: 0;
}
.menu-item button {
font-size: 0.5em;
}
.tab-menu {
margin-bottom: 1em;
}
.container {
flex-wrap: wrap;
}
.feature-description {
width: 100%;
padding: 1em;
}
.feature-list {
padding: 1em;
}
.feature {
max-width: initial;
}
.container {
width: 100%;
max-width: initial;
}
.container.roles {
width: 100%;
max-width: initial;
}
.card {
width: 100%;
max-width: initial;
margin: 0;
padding: 1em;
}
.handle {
padding: 2px;
}
#what-about-it {
padding: 2em;
}
#what-about-it .container {
margin: 0;
}
#what-about-it .container:nth-child(2) {
width: 100%;
}
section .highlight {
margin: 2em;
padding: 2em;
}
.bot-links .container .container {
justify-content: center;
}
.show-off {
height: 4em;
width: 4em;
}
.bot-links .container.column {
padding-bottom: 2em;
}
footer nav {
width: 100%;
padding: 2em;
}
.subscribe {
padding: 2em;
}
.container.links {
padding: 2em 0 0;
}
} | 0.579995 | 0.123762 |
@font-face {
font-family: -apple-system;
}
@font-face {
font-family: -apple-system;
}
:root {
--background: #ffffff;
--color: #000000;
}
body {
margin: 0;
width: 96vw;
height: 96vh;
margin-top: 2vh;
margin-left: 2vw;
font-family: -apple-system;
color: var(--color);
background-color: var(--background);
}
.center {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
/***** CONTAINERS & BUTTONS *****/
.kumiko-reader {
z-index: 1;
height: 600px;
width: 600px;
cursor: pointer;
/* border: 1px dotted blue; */
padding: 1px; /* make sure to see panel borders even for pages with no margin (e.g. xkcd) */
overflow: hidden;
}
img {
color: var(--color);
background-color: var(--background);
}
.prev, .next {
z-index: 20;
padding: 0.1em 0.4em;
background-color: #34495e;
color: #ecf0f1;
font-weight: bold;
}
/* Comics */
.leftText {
position: absolute;
top: 0;
left: 10;
font-family: -apple-system;
font-weight: 700;
color: var(--color);
background-color: var(--background);
}
.rightText {
position: absolute;
top: 0;
right: 0;
font-family: -apple-system;
font-weight: 700;
color: var(--color);
background-color: var(--background);
}
.altText {
position: absolute;
bottom: 0;
font-family: -apple-system;
text-align: center;
color: var(--color);
background-color: var(--background);
}
/* What If */
.numdate {
font-family: -apple-system;
font-size: 60px;
font-weight: 700;
color: var(--color);
background-color: var(--background);
}
.question {
font-family: -apple-system;
font-size: 40px;
font-style: italic;
font-weight: 700;
color: var(--color);
background-color: var(--background);
}
.questioner, .answer {
font-family: -apple-system;
font-size: 40px;
color: var(--color);
background-color: var(--background);
}
/* Fading corner icons/infos */
.prev {
position: absolute;
top: 0;
left: 0;
font-size: 6vmin;
font-style: normal;
height: 100%;
}
.next {
position: absolute;
top: 0;
right: 0;
font-size: 6vmin;
font-style: normal;
height: 100%;
}
.prev, .next {
transition-property: opacity;
transition-duration: 2s;
opacity: 0.1;
}
.prev:active, .next:active {
transition-duration: 0s;
opacity: 1;
}
/***** PANELS *****/
.panel {
z-index: 10;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
}
/* Dark Theme */
@media (prefers-color-scheme: dark) {
:root {
--background: #000000;
--color: #ffffff;
}
body {
color: var(--color);
background-color: var(--background);
}
img {
color: var(--color);
background-color: var(--color);
}
.leftText {
color: var(--color);
background-color: var(--background);
}
.rightText {
color: var(--color);
background-color: var(--background);
}
.altText {
color: var(--color);
background-color: var(--background);
}
.question {
color: var(--color);
background-color: var(--background);
}
.questioner {
color: var(--color);
background-color: var(--background);
}
.answer {
color: var(--color);
background-color: var(--background);
}
} | dckx/resources/system.css | @font-face {
font-family: -apple-system;
}
@font-face {
font-family: -apple-system;
}
:root {
--background: #ffffff;
--color: #000000;
}
body {
margin: 0;
width: 96vw;
height: 96vh;
margin-top: 2vh;
margin-left: 2vw;
font-family: -apple-system;
color: var(--color);
background-color: var(--background);
}
.center {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
}
/***** CONTAINERS & BUTTONS *****/
.kumiko-reader {
z-index: 1;
height: 600px;
width: 600px;
cursor: pointer;
/* border: 1px dotted blue; */
padding: 1px; /* make sure to see panel borders even for pages with no margin (e.g. xkcd) */
overflow: hidden;
}
img {
color: var(--color);
background-color: var(--background);
}
.prev, .next {
z-index: 20;
padding: 0.1em 0.4em;
background-color: #34495e;
color: #ecf0f1;
font-weight: bold;
}
/* Comics */
.leftText {
position: absolute;
top: 0;
left: 10;
font-family: -apple-system;
font-weight: 700;
color: var(--color);
background-color: var(--background);
}
.rightText {
position: absolute;
top: 0;
right: 0;
font-family: -apple-system;
font-weight: 700;
color: var(--color);
background-color: var(--background);
}
.altText {
position: absolute;
bottom: 0;
font-family: -apple-system;
text-align: center;
color: var(--color);
background-color: var(--background);
}
/* What If */
.numdate {
font-family: -apple-system;
font-size: 60px;
font-weight: 700;
color: var(--color);
background-color: var(--background);
}
.question {
font-family: -apple-system;
font-size: 40px;
font-style: italic;
font-weight: 700;
color: var(--color);
background-color: var(--background);
}
.questioner, .answer {
font-family: -apple-system;
font-size: 40px;
color: var(--color);
background-color: var(--background);
}
/* Fading corner icons/infos */
.prev {
position: absolute;
top: 0;
left: 0;
font-size: 6vmin;
font-style: normal;
height: 100%;
}
.next {
position: absolute;
top: 0;
right: 0;
font-size: 6vmin;
font-style: normal;
height: 100%;
}
.prev, .next {
transition-property: opacity;
transition-duration: 2s;
opacity: 0.1;
}
.prev:active, .next:active {
transition-duration: 0s;
opacity: 1;
}
/***** PANELS *****/
.panel {
z-index: 10;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
}
/* Dark Theme */
@media (prefers-color-scheme: dark) {
:root {
--background: #000000;
--color: #ffffff;
}
body {
color: var(--color);
background-color: var(--background);
}
img {
color: var(--color);
background-color: var(--color);
}
.leftText {
color: var(--color);
background-color: var(--background);
}
.rightText {
color: var(--color);
background-color: var(--background);
}
.altText {
color: var(--color);
background-color: var(--background);
}
.question {
color: var(--color);
background-color: var(--background);
}
.questioner {
color: var(--color);
background-color: var(--background);
}
.answer {
color: var(--color);
background-color: var(--background);
}
} | 0.505859 | 0.103386 |
.footer {
background-color: #252525;
padding: 1.9em 0 3em 0;
box-sizing: border-box;
}
.footer .container {
width: 96%;
max-width: 1200px;
margin: auto;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.footer .container .company, .footer .container .contact, .footer .container .sosmed {
margin-top: 1.2em;
}
.footer .container .sosmed a:hover {
color: white;
}
.footer .container .sosmed div {
display: flex;
align-items: center;
}
.footer .container .sosmed div a, .footer .container .sosmed div p {
text-decoration: none;
color: #919191;
font-size: 0.9rem;
}
.footer .container .company {
width: 15%;
}
.footer .container .contact, .footer .container .sosmed {
width: 23%;
}
.footer .container .body {
margin: 0.8em 0;
}
.footer .container .body img {
margin-right: 7px;
}
.footer .container div .header {
margin: 0.9em 0;
}
.footer .container div .header p {
font-size: 1rem;
color: #b8b8b8;
font-weight: bold;
letter-spacing: 0.2px;
text-align: left;
}
.footer .container div .body p {
margin: 0.3em 0;
font-size: 0.9rem;
color: #919191;
}
.footer .container div a {
text-decoration: none;
font-size: 0.9rem;
}
.footer .container div a:hover p {
color: white;
}
.footer .container .logo {
width: 25%;
display: flex;
align-items: center;
flex-direction: column;
}
.footer .container .logo img {
margin: auto;
}
.footer .container .logo p {
color: #c5c5c5;
letter-spacing: 0.5px;
font-weight: bold;
font-size: 1.1rem;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
}
@media screen and (max-width: 1050px) {
html {
font-size: 15px !important;
}
.container .logo, .container .company, .container .contact, .container .sosmed {
width: 50% !important;
}
.container .company, .container .contact, .container .sosmed, .container .logo {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.container .company a, .container .company p, .container .contact a, .container .contact p, .container .sosmed a, .container .sosmed p, .container .logo a, .container .logo p {
text-align: center;
}
.container .logo img {
width: 20%;
}
.container div .header {
margin: 0.5em !important;
}
.container div .body {
margin: 0.2em !important;
}
}
@media screen and (max-width: 600px) {
html {
font-size: 10px !important;
}
.footer {
padding: 0.1em 0 1.5em 0;
}
.container .logo, .container .company, .container .contact, .container .sosmed {
width: 100% !important;
}
.container .logo img {
width: 25%;
}
.container div .header {
margin: 0.1em !important;
}
} | public/css/footer.css | .footer {
background-color: #252525;
padding: 1.9em 0 3em 0;
box-sizing: border-box;
}
.footer .container {
width: 96%;
max-width: 1200px;
margin: auto;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.footer .container .company, .footer .container .contact, .footer .container .sosmed {
margin-top: 1.2em;
}
.footer .container .sosmed a:hover {
color: white;
}
.footer .container .sosmed div {
display: flex;
align-items: center;
}
.footer .container .sosmed div a, .footer .container .sosmed div p {
text-decoration: none;
color: #919191;
font-size: 0.9rem;
}
.footer .container .company {
width: 15%;
}
.footer .container .contact, .footer .container .sosmed {
width: 23%;
}
.footer .container .body {
margin: 0.8em 0;
}
.footer .container .body img {
margin-right: 7px;
}
.footer .container div .header {
margin: 0.9em 0;
}
.footer .container div .header p {
font-size: 1rem;
color: #b8b8b8;
font-weight: bold;
letter-spacing: 0.2px;
text-align: left;
}
.footer .container div .body p {
margin: 0.3em 0;
font-size: 0.9rem;
color: #919191;
}
.footer .container div a {
text-decoration: none;
font-size: 0.9rem;
}
.footer .container div a:hover p {
color: white;
}
.footer .container .logo {
width: 25%;
display: flex;
align-items: center;
flex-direction: column;
}
.footer .container .logo img {
margin: auto;
}
.footer .container .logo p {
color: #c5c5c5;
letter-spacing: 0.5px;
font-weight: bold;
font-size: 1.1rem;
width: -webkit-fit-content;
width: -moz-fit-content;
width: fit-content;
}
@media screen and (max-width: 1050px) {
html {
font-size: 15px !important;
}
.container .logo, .container .company, .container .contact, .container .sosmed {
width: 50% !important;
}
.container .company, .container .contact, .container .sosmed, .container .logo {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.container .company a, .container .company p, .container .contact a, .container .contact p, .container .sosmed a, .container .sosmed p, .container .logo a, .container .logo p {
text-align: center;
}
.container .logo img {
width: 20%;
}
.container div .header {
margin: 0.5em !important;
}
.container div .body {
margin: 0.2em !important;
}
}
@media screen and (max-width: 600px) {
html {
font-size: 10px !important;
}
.footer {
padding: 0.1em 0 1.5em 0;
}
.container .logo, .container .company, .container .contact, .container .sosmed {
width: 100% !important;
}
.container .logo img {
width: 25%;
}
.container div .header {
margin: 0.1em !important;
}
} | 0.340924 | 0.068475 |
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;700;900&display=swap');
:root {
--clr-pale-blue: hsl(225, 100%, 94%);
--clr-bright-blue: hsl(245, 75%, 52%);
--clr-very-pale-blue: hsl(225, 100%, 98%);
--clr-desat-blue: hsl(224, 23%, 55%);
--clr-dark-blue: hsl(223, 47%, 23%);
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
}
body {
display: grid;
min-height: 100vh;
line-height: 1.6;
}
.container {
display: grid;
grid-template-rows: 8fr 1fr;
place-items: center;
height: 100%;
width: 100%;
background-image: url(./images/pattern-background-desktop.svg);
background-size: cover;
}
.order-summary {
text-align: center;
font-family: 'Red Hat Display', sans-serif;
background-color: white;
max-height: 95%;
max-width: 30%;
overflow: hidden;
border-radius: 15px;
}
.order-summary img {
height: 10%;
width: 100%;
}
.title {
margin-top: 5%;
font-size: 1.5rem;
font-weight: 900;
color: hsl(223, 47%, 23%);
}
.message {
margin-top: 3%;
margin-left: 10%;
margin-right: 10%;
font-size: 1rem;
font-weight: 400;
text-overflow: ellipsis;
color: var(--clr-desat-blue);
}
.plan-flex {
display: flex;
height: 4.5rem;
width: 80%;
margin: 10%;
margin-top: 5%;
border-radius: 10px;
background-color: hsl(225, 100%, 98%);
align-items: center;
}
.plan-flex img {
height: 35px;
width: 35px;
margin-left: 15px;
margin-right: 15px;
}
.subscription {
flex: 2;
}
.subscription h3 {
font-size: .75rem;
font-weight: 900;
color: hsl(223, 47%, 23%);
margin: 0;
padding: 5px;
}
.subscription p {
font-size: 12px;
color: var(--clr-desat-blue);
margin: 0;
}
.change-button {
flex: 2;
text-align: right;
font-size: .6rem;
font-weight: 700;
margin-right: 20px;
color: var(--clr-bright-blue);
}
.change-button:hover {
text-decoration: none;
filter: opacity(85%);
}
.buttons {
display: flex;
flex-direction: column;
height: 25%;
margin: 10%;
}
.proceed {
padding-top: 12px;
padding-bottom: 12px;
background-color: hsl(245, 75%, 52%);
border: none;
border-radius: 8px;
color: white;
font-size: 11px;
font-weight: 700;
box-shadow: 0px 8px 20px #b6bbce;
}
.proceed:hover {
filter: opacity(85%);
cursor: pointer;
}
.cancel {
margin: 15px;
text-decoration: none;
font-size: .7rem;
font-weight: 900;
color: var(--clr-desat-blue);
}
.cancel:hover {
color: var(--clr-dark-blue);
} | styles.css | @import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;700;900&display=swap');
:root {
--clr-pale-blue: hsl(225, 100%, 94%);
--clr-bright-blue: hsl(245, 75%, 52%);
--clr-very-pale-blue: hsl(225, 100%, 98%);
--clr-desat-blue: hsl(224, 23%, 55%);
--clr-dark-blue: hsl(223, 47%, 23%);
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
}
body {
display: grid;
min-height: 100vh;
line-height: 1.6;
}
.container {
display: grid;
grid-template-rows: 8fr 1fr;
place-items: center;
height: 100%;
width: 100%;
background-image: url(./images/pattern-background-desktop.svg);
background-size: cover;
}
.order-summary {
text-align: center;
font-family: 'Red Hat Display', sans-serif;
background-color: white;
max-height: 95%;
max-width: 30%;
overflow: hidden;
border-radius: 15px;
}
.order-summary img {
height: 10%;
width: 100%;
}
.title {
margin-top: 5%;
font-size: 1.5rem;
font-weight: 900;
color: hsl(223, 47%, 23%);
}
.message {
margin-top: 3%;
margin-left: 10%;
margin-right: 10%;
font-size: 1rem;
font-weight: 400;
text-overflow: ellipsis;
color: var(--clr-desat-blue);
}
.plan-flex {
display: flex;
height: 4.5rem;
width: 80%;
margin: 10%;
margin-top: 5%;
border-radius: 10px;
background-color: hsl(225, 100%, 98%);
align-items: center;
}
.plan-flex img {
height: 35px;
width: 35px;
margin-left: 15px;
margin-right: 15px;
}
.subscription {
flex: 2;
}
.subscription h3 {
font-size: .75rem;
font-weight: 900;
color: hsl(223, 47%, 23%);
margin: 0;
padding: 5px;
}
.subscription p {
font-size: 12px;
color: var(--clr-desat-blue);
margin: 0;
}
.change-button {
flex: 2;
text-align: right;
font-size: .6rem;
font-weight: 700;
margin-right: 20px;
color: var(--clr-bright-blue);
}
.change-button:hover {
text-decoration: none;
filter: opacity(85%);
}
.buttons {
display: flex;
flex-direction: column;
height: 25%;
margin: 10%;
}
.proceed {
padding-top: 12px;
padding-bottom: 12px;
background-color: hsl(245, 75%, 52%);
border: none;
border-radius: 8px;
color: white;
font-size: 11px;
font-weight: 700;
box-shadow: 0px 8px 20px #b6bbce;
}
.proceed:hover {
filter: opacity(85%);
cursor: pointer;
}
.cancel {
margin: 15px;
text-decoration: none;
font-size: .7rem;
font-weight: 900;
color: var(--clr-desat-blue);
}
.cancel:hover {
color: var(--clr-dark-blue);
} | 0.572245 | 0.12408 |
.clr:after { content: ''; display: block; height: 0; clear: both; visibility: hidden; zoom: 1; }
a:focus, .button, .wp-core-ui .button-link:focus,
.wp-core-ui .button-secondary:focus, .wp-core-ui .button.focus,
.wp-core-ui .button:focus { -webkit-box-shadow: none !important; box-shadow: none !important; }
body .button.owp-button { background-color: #13aff0; color: #fff; height: auto; font-size: 12px; line-height: 1; font-weight: 600; text-transform: uppercase; margin: 0; padding: 14px 20px; border: 0; cursor: pointer; text-align: center; letter-spacing: .1em; border-radius: 3px; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -o-transition: all .3s ease; -ms-transition: all .3s ease; transition: all .3s ease; }
body .button.owp-button:hover,
body .button.owp-button:focus,
body .button.owp-button:active { background-color: #0b7cac; color: #fff; }
body .button.owp-button:active { -webkit-transform: none; -ms-transform: none; transform: none; }
/* Settings Wrap */
.wrap.oceanwp-theme-panel { margin-right: 40px; }
.oceanwp-settings .left { float: left; width: 75%; margin-top: 20px; }
.oceanwp-settings .right { float: right; width: 23%; margin-top: 30px; }
.oceanwp-settings .oceanwp-title { font-size: 26px; line-height: 1.6; margin: 0 0 3px 8px; }
.oceanwp-settings .oceanwp-desc { margin: 0 0 30px 8px; font-size: 15px; }
.oceanwp-settings .divider { display: block; height: 1px; margin: 40px 0 33px; border-bottom: 1px solid #ccc; }
/* Customizer panels */
.oceanwp-panels .column-wrap { float: left; position: relative; width: 32.33%; margin: 0 0.5% 1% 0.5%; overflow: hidden; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.oceanwp-panels .column-name { display: block; background-color: #fff; border: 2px solid #eee; padding: 25px 25px 20px; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -o-transition: all .3s ease; -ms-transition: all .3s ease; transition: all .3s ease; }
.oceanwp-panels .column-name:hover { border-color: #ddd; }
.oceanwp-panels .column-name h3.title { float: left; display: block; position: relative; font-size: 18px; color: #333; margin: 0; z-index: 2; }
.oceanwp-panels .column-name .desc { display: block; position: relative; font-size: 17px; line-height: 1.6; font-weight: 400; color: #777; z-index: 2; }
.oceanwp-panels input[type=checkbox] { float: right; width: 22px; height: 22px; min-width: 22px; margin: 0; }
.oceanwp-panels input[type=checkbox]:checked:before { width: 22px; font-size: 27px; }
.oceanwp-panels p.submit { display: inline-block; width: 100%; margin: 10px 0 0 0.5%; padding: 0; clear: both; }
/* Customizer options */
.oceanwp-options .options-inner { display: -webkit-box; display: -ms-flexbox; display: flex; flex-wrap: wrap; margin-top: 30px; }
.oceanwp-options .column-wrap { display: -webkit-box; display: -ms-flexbox; display: flex; position: relative; background: #fff; border: 1px solid #ccc; width: 24%; min-height: 150px; margin: 0 0.5% 1% 0.5%; padding: 25px 25px 20px; overflow: hidden; box-sizing: border-box; }
.oceanwp-options .column-wrap.hidden { display: none !important; }
.oceanwp-options .column-inner { display: -webkit-box; display: -ms-flexbox; display: flex; flex-direction: column; }
.oceanwp-options .title { display: block; position: relative; font-size: 17px; color: #333; margin: 0 0 20px; padding-bottom: 20px; border-bottom: 1px solid #eaeaea; text-transform: capitalize; }
.oceanwp-options .desc { flex: 1 0 auto; display: block; margin: 0 0 20px; font-size: 14px; line-height: 1.6; font-weight: 400; color: #777; }
.oceanwp-options .bottom-column { padding: 20px 0 0; border-top: 1px solid #eaeaea; margin: 0; }
.oceanwp-options .bottom-column .option-link { font-size: 12px; font-weight: 600; line-height: 1.6; text-transform: uppercase; letter-spacing: .6px; text-decoration: none; }
/* Sidebar */
.oceanwp-bloc { display: inline-block; position: relative; width: 100%; background-color: #fff; margin: 0 auto 24px auto; border-radius: 3px; border: 1px solid #e5e5e5; -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.04); box-shadow: 0 1px 1px rgba(0,0,0,.04); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; overflow: hidden; }
.oceanwp-bloc h3 { display: block; font-size: 14px; font-weight: 600; padding: 12px 10px; background-color: #13aff0; color: #fff; text-transform: uppercase; letter-spacing: .4px; margin: 0 0 22px; text-align: center; }
.oceanwp-bloc .content-wrap { position: relative; padding: 0 30px 25px; z-index: 2; text-align: center; }
.oceanwp-bloc p.content { font-size: 14px; color: #5a5a5a; margin: 0; }
body .oceanwp-bloc .button.owp-button { margin: 22px 0 10px; }
.oceanwp-bloc p.bottom-text { color: #5a5a5a; font-size: 12px; font-weight: 600; font-style: italic; margin: 0; }
.oceanwp-bloc i { position: absolute; bottom: -30px; right: -26px; width: auto; height: auto; font-size: 120px; opacity: .07; z-index: 1; }
.oceanwp-youtube .yt-img { padding: 30px 30px 0; margin: 0 0 25px; text-align: center; }
.oceanwp-youtube .yt-img img { max-width: 110px; }
body .oceanwp-youtube .button.owp-button { background-color: #e62117; }
body .oceanwp-youtube .button.owp-button:hover { background-color: #b31217; }
#wpbody-content .oceanwp-doc { min-width: 100%; padding: 0; }
.oceanwp-doc a { text-decoration: none; }
body .postbox.oceanwp-doc .hndle { cursor: inherit; }
.oceanwp-doc .hndle a { float: right; font-size: 13px; }
.oceanwp-doc .inside { margin: 15px 0 3px; }
.oceanwp-doc .inside ul { list-style: disc; margin: 0 0 0 20px; }
.oceanwp-support p { font-size: 14px; line-height: 1.7; font-style: italic; margin-top: 0; }
.oceanwp-support .owp-button { float: right; margin: 15px 0 0; }
/* Licenses tab */
#oceanwp-license-form .form-table, #oceanwp-license-form thead, #oceanwp-license-form tbody, #oceanwp-license-form tfoot,
#oceanwp-license-form tr, #oceanwp-license-form td, #oceanwp-license-form th, #oceanwp-license-form caption { display: block; }
#oceanwp-license-form .form-table tr { float: left; margin: 0 15px 15px 0; background: #fff; border: 1px solid #ccc; width: 30.5%; max-width: 350px; padding: 14px; min-height: 220px; position: relative; box-sizing: border-box; }
#oceanwp-license-form .form-table th { background: #f9f9f9; padding: 14px; border-bottom: 1px solid #ccc; margin: -14px -14px 20px; width: 100%; }
#oceanwp-license-form .form-table td { padding: 0; }
#oceanwp-license-form td input.regular-text { margin: 0 0 8px; width: 100%; }
#oceanwp-license-form .oceanwp-license-data[class*="oceanwp-license-"] { position: absolute; background: #fafafa; padding: 14px; border-top: 1px solid #eee; margin: 20px -14px -14px; min-height: 67px; width: 100%; bottom: 14px; box-sizing: border-box; }
#oceanwp-license-form .oceanwp-license-data[class*="oceanwp-license-"] a { color: #444; }
#oceanwp-license-form .oceanwp-license-data[class*="oceanwp-license-"] a:hover { text-decoration: none; }
#oceanwp-license-form .oceanwp-license-data.license-expires-soon-notice { background-color: #00a0d2; color: #fff; border-color: #00a0d2; }
#oceanwp-license-form .oceanwp-license-data.oceanwp-license-expired-msg { background-color: #e24e4e; color: #fff; border-color: #e24e4e; }
#oceanwp-license-form .oceanwp-license-data.oceanwp-license-error-msg { background-color: #ffebcd; border-color: #ffebcd; }
#oceanwp-license-form .oceanwp-license-data p { font-size: 13px; margin-top: 0; }
#oceanwp-license-form .oceanwp-license-data.license-expires-soon-notice a,
#oceanwp-license-form .oceanwp-license-data.oceanwp-license-expired-msg a { color: #fff; }
#oceanwp-license-form .oceanwp-license-data.license-expires-soon-notice a:hover,
#oceanwp-license-form .oceanwp-license-data.oceanwp-license-expired-msg a:hover { text-decoration: none; }
#oceanwp-license-form p.submit { clear: both; }
#oceanwp-license-form .form-table.bundle-block tr { max-width: 500px; }
#oceanwp-license-form .form-table.bundle-block th { background-color: #13aff0; color: #fff; }
/* Push monkey tab */
.push-monkey-tab { position: relative; }
.push-monkey-tab:before { content: ''; display: block; background: url( '../img/push-monkey.png' ) no-repeat; background-size: 100% auto; position: absolute; right: 10px; top: -36px; width: 96px; height: 38px; }
.oceanwp-settings .pm-right { width: 42%; }
.oceanwp-settings .pm-left { width: 57%; }
.oceanwp-settings .push-monkey p { font-size: 15px; line-height: 1.8; margin: 0 0 20px 8px; }
.oceanwp-settings .push-monkey table { margin: 0 0 10px 8px; }
/* RTL */
body.rtl .wrap.oceanwp-theme-panel { margin-left: 40px; margin-right: 0; }
body.rtl .oceanwp-settings .left { float: right; }
body.rtl .oceanwp-settings .right { float: left; }
body.rtl .oceanwp-settings .oceanwp-title { margin: 0 8px 3px 0; }
body.rtl .oceanwp-settings .oceanwp-desc { margin: 0 8px 30px 0; }
body.rtl .oceanwp-panels .column-wrap { float: right; }
body.rtl .oceanwp-panels .column-name h3.title { float: right; }
body.rtl .oceanwp-panels input[type=checkbox] { float: left; }
body.rtl .oceanwp-panels p.submit { margin: 10px 0.5% 0 0; }
body.rtl .oceanwp-bloc i { left: -26px; right: auto; }
body.rtl .oceanwp-doc .hndle a { float: left; }
body.rtl .oceanwp-doc .inside ul { margin: 0 20px 0 0; }
body.rtl .oceanwp-support .owp-button { float: left; }
body.rtl #oceanwp-license-form .form-table tr { float: right; margin: 0 0 15px 15px; }
@media screen and ( max-width: 1280px ) {
.wrap.oceanwp-theme-panel { margin-right: 20px; }
.oceanwp-settings .left,
.oceanwp-settings .right { float: none; width: 100%; }
.oceanwp-options .column-wrap { width: 32.33%; }
.oceanwp-bloc,
.oceanwp-support { width: 49%; }
.oceanwp-review { float: left; }
.oceanwp-youtube,
.oceanwp-support { float: right; }
#wpbody-content .oceanwp-doc { float: left; min-width: 49%; clear: both; }
body.rtl .wrap.oceanwp-theme-panel { margin-left: 20px; margin-right: 0; }
body.rtl .oceanwp-support { float: right; }
body.rtl #wpbody-content .oceanwp-doc { float: left; }
}
@media screen and ( max-width: 1100px ) {
.oceanwp-panels .column-wrap,
.oceanwp-options .column-wrap { width: 49%; }
#oceanwp-license-form .form-table tr { width: 46%; max-width: none; min-height: 230px; }
}
@media screen and ( max-width: 600px ) {
.oceanwp-panels .column-wrap,
.oceanwp-options .column-wrap { width: 100%; }
#oceanwp-license-form .form-table tr { width: 100%; min-height: 230px; }
}
@media screen and ( max-width: 480px ) {
.oceanwp-support,
.oceanwp-bloc,
#wpbody-content .oceanwp-doc { float: none !important; width: 100%; min-width: 100%; }
} | wordpress/wp-content/plugins/ocean-extra/includes/panel/assets/css/panel.css | .clr:after { content: ''; display: block; height: 0; clear: both; visibility: hidden; zoom: 1; }
a:focus, .button, .wp-core-ui .button-link:focus,
.wp-core-ui .button-secondary:focus, .wp-core-ui .button.focus,
.wp-core-ui .button:focus { -webkit-box-shadow: none !important; box-shadow: none !important; }
body .button.owp-button { background-color: #13aff0; color: #fff; height: auto; font-size: 12px; line-height: 1; font-weight: 600; text-transform: uppercase; margin: 0; padding: 14px 20px; border: 0; cursor: pointer; text-align: center; letter-spacing: .1em; border-radius: 3px; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -o-transition: all .3s ease; -ms-transition: all .3s ease; transition: all .3s ease; }
body .button.owp-button:hover,
body .button.owp-button:focus,
body .button.owp-button:active { background-color: #0b7cac; color: #fff; }
body .button.owp-button:active { -webkit-transform: none; -ms-transform: none; transform: none; }
/* Settings Wrap */
.wrap.oceanwp-theme-panel { margin-right: 40px; }
.oceanwp-settings .left { float: left; width: 75%; margin-top: 20px; }
.oceanwp-settings .right { float: right; width: 23%; margin-top: 30px; }
.oceanwp-settings .oceanwp-title { font-size: 26px; line-height: 1.6; margin: 0 0 3px 8px; }
.oceanwp-settings .oceanwp-desc { margin: 0 0 30px 8px; font-size: 15px; }
.oceanwp-settings .divider { display: block; height: 1px; margin: 40px 0 33px; border-bottom: 1px solid #ccc; }
/* Customizer panels */
.oceanwp-panels .column-wrap { float: left; position: relative; width: 32.33%; margin: 0 0.5% 1% 0.5%; overflow: hidden; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
.oceanwp-panels .column-name { display: block; background-color: #fff; border: 2px solid #eee; padding: 25px 25px 20px; -webkit-transition: all .3s ease; -moz-transition: all .3s ease; -o-transition: all .3s ease; -ms-transition: all .3s ease; transition: all .3s ease; }
.oceanwp-panels .column-name:hover { border-color: #ddd; }
.oceanwp-panels .column-name h3.title { float: left; display: block; position: relative; font-size: 18px; color: #333; margin: 0; z-index: 2; }
.oceanwp-panels .column-name .desc { display: block; position: relative; font-size: 17px; line-height: 1.6; font-weight: 400; color: #777; z-index: 2; }
.oceanwp-panels input[type=checkbox] { float: right; width: 22px; height: 22px; min-width: 22px; margin: 0; }
.oceanwp-panels input[type=checkbox]:checked:before { width: 22px; font-size: 27px; }
.oceanwp-panels p.submit { display: inline-block; width: 100%; margin: 10px 0 0 0.5%; padding: 0; clear: both; }
/* Customizer options */
.oceanwp-options .options-inner { display: -webkit-box; display: -ms-flexbox; display: flex; flex-wrap: wrap; margin-top: 30px; }
.oceanwp-options .column-wrap { display: -webkit-box; display: -ms-flexbox; display: flex; position: relative; background: #fff; border: 1px solid #ccc; width: 24%; min-height: 150px; margin: 0 0.5% 1% 0.5%; padding: 25px 25px 20px; overflow: hidden; box-sizing: border-box; }
.oceanwp-options .column-wrap.hidden { display: none !important; }
.oceanwp-options .column-inner { display: -webkit-box; display: -ms-flexbox; display: flex; flex-direction: column; }
.oceanwp-options .title { display: block; position: relative; font-size: 17px; color: #333; margin: 0 0 20px; padding-bottom: 20px; border-bottom: 1px solid #eaeaea; text-transform: capitalize; }
.oceanwp-options .desc { flex: 1 0 auto; display: block; margin: 0 0 20px; font-size: 14px; line-height: 1.6; font-weight: 400; color: #777; }
.oceanwp-options .bottom-column { padding: 20px 0 0; border-top: 1px solid #eaeaea; margin: 0; }
.oceanwp-options .bottom-column .option-link { font-size: 12px; font-weight: 600; line-height: 1.6; text-transform: uppercase; letter-spacing: .6px; text-decoration: none; }
/* Sidebar */
.oceanwp-bloc { display: inline-block; position: relative; width: 100%; background-color: #fff; margin: 0 auto 24px auto; border-radius: 3px; border: 1px solid #e5e5e5; -webkit-box-shadow: 0 1px 1px rgba(0,0,0,.04); box-shadow: 0 1px 1px rgba(0,0,0,.04); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; overflow: hidden; }
.oceanwp-bloc h3 { display: block; font-size: 14px; font-weight: 600; padding: 12px 10px; background-color: #13aff0; color: #fff; text-transform: uppercase; letter-spacing: .4px; margin: 0 0 22px; text-align: center; }
.oceanwp-bloc .content-wrap { position: relative; padding: 0 30px 25px; z-index: 2; text-align: center; }
.oceanwp-bloc p.content { font-size: 14px; color: #5a5a5a; margin: 0; }
body .oceanwp-bloc .button.owp-button { margin: 22px 0 10px; }
.oceanwp-bloc p.bottom-text { color: #5a5a5a; font-size: 12px; font-weight: 600; font-style: italic; margin: 0; }
.oceanwp-bloc i { position: absolute; bottom: -30px; right: -26px; width: auto; height: auto; font-size: 120px; opacity: .07; z-index: 1; }
.oceanwp-youtube .yt-img { padding: 30px 30px 0; margin: 0 0 25px; text-align: center; }
.oceanwp-youtube .yt-img img { max-width: 110px; }
body .oceanwp-youtube .button.owp-button { background-color: #e62117; }
body .oceanwp-youtube .button.owp-button:hover { background-color: #b31217; }
#wpbody-content .oceanwp-doc { min-width: 100%; padding: 0; }
.oceanwp-doc a { text-decoration: none; }
body .postbox.oceanwp-doc .hndle { cursor: inherit; }
.oceanwp-doc .hndle a { float: right; font-size: 13px; }
.oceanwp-doc .inside { margin: 15px 0 3px; }
.oceanwp-doc .inside ul { list-style: disc; margin: 0 0 0 20px; }
.oceanwp-support p { font-size: 14px; line-height: 1.7; font-style: italic; margin-top: 0; }
.oceanwp-support .owp-button { float: right; margin: 15px 0 0; }
/* Licenses tab */
#oceanwp-license-form .form-table, #oceanwp-license-form thead, #oceanwp-license-form tbody, #oceanwp-license-form tfoot,
#oceanwp-license-form tr, #oceanwp-license-form td, #oceanwp-license-form th, #oceanwp-license-form caption { display: block; }
#oceanwp-license-form .form-table tr { float: left; margin: 0 15px 15px 0; background: #fff; border: 1px solid #ccc; width: 30.5%; max-width: 350px; padding: 14px; min-height: 220px; position: relative; box-sizing: border-box; }
#oceanwp-license-form .form-table th { background: #f9f9f9; padding: 14px; border-bottom: 1px solid #ccc; margin: -14px -14px 20px; width: 100%; }
#oceanwp-license-form .form-table td { padding: 0; }
#oceanwp-license-form td input.regular-text { margin: 0 0 8px; width: 100%; }
#oceanwp-license-form .oceanwp-license-data[class*="oceanwp-license-"] { position: absolute; background: #fafafa; padding: 14px; border-top: 1px solid #eee; margin: 20px -14px -14px; min-height: 67px; width: 100%; bottom: 14px; box-sizing: border-box; }
#oceanwp-license-form .oceanwp-license-data[class*="oceanwp-license-"] a { color: #444; }
#oceanwp-license-form .oceanwp-license-data[class*="oceanwp-license-"] a:hover { text-decoration: none; }
#oceanwp-license-form .oceanwp-license-data.license-expires-soon-notice { background-color: #00a0d2; color: #fff; border-color: #00a0d2; }
#oceanwp-license-form .oceanwp-license-data.oceanwp-license-expired-msg { background-color: #e24e4e; color: #fff; border-color: #e24e4e; }
#oceanwp-license-form .oceanwp-license-data.oceanwp-license-error-msg { background-color: #ffebcd; border-color: #ffebcd; }
#oceanwp-license-form .oceanwp-license-data p { font-size: 13px; margin-top: 0; }
#oceanwp-license-form .oceanwp-license-data.license-expires-soon-notice a,
#oceanwp-license-form .oceanwp-license-data.oceanwp-license-expired-msg a { color: #fff; }
#oceanwp-license-form .oceanwp-license-data.license-expires-soon-notice a:hover,
#oceanwp-license-form .oceanwp-license-data.oceanwp-license-expired-msg a:hover { text-decoration: none; }
#oceanwp-license-form p.submit { clear: both; }
#oceanwp-license-form .form-table.bundle-block tr { max-width: 500px; }
#oceanwp-license-form .form-table.bundle-block th { background-color: #13aff0; color: #fff; }
/* Push monkey tab */
.push-monkey-tab { position: relative; }
.push-monkey-tab:before { content: ''; display: block; background: url( '../img/push-monkey.png' ) no-repeat; background-size: 100% auto; position: absolute; right: 10px; top: -36px; width: 96px; height: 38px; }
.oceanwp-settings .pm-right { width: 42%; }
.oceanwp-settings .pm-left { width: 57%; }
.oceanwp-settings .push-monkey p { font-size: 15px; line-height: 1.8; margin: 0 0 20px 8px; }
.oceanwp-settings .push-monkey table { margin: 0 0 10px 8px; }
/* RTL */
body.rtl .wrap.oceanwp-theme-panel { margin-left: 40px; margin-right: 0; }
body.rtl .oceanwp-settings .left { float: right; }
body.rtl .oceanwp-settings .right { float: left; }
body.rtl .oceanwp-settings .oceanwp-title { margin: 0 8px 3px 0; }
body.rtl .oceanwp-settings .oceanwp-desc { margin: 0 8px 30px 0; }
body.rtl .oceanwp-panels .column-wrap { float: right; }
body.rtl .oceanwp-panels .column-name h3.title { float: right; }
body.rtl .oceanwp-panels input[type=checkbox] { float: left; }
body.rtl .oceanwp-panels p.submit { margin: 10px 0.5% 0 0; }
body.rtl .oceanwp-bloc i { left: -26px; right: auto; }
body.rtl .oceanwp-doc .hndle a { float: left; }
body.rtl .oceanwp-doc .inside ul { margin: 0 20px 0 0; }
body.rtl .oceanwp-support .owp-button { float: left; }
body.rtl #oceanwp-license-form .form-table tr { float: right; margin: 0 0 15px 15px; }
@media screen and ( max-width: 1280px ) {
.wrap.oceanwp-theme-panel { margin-right: 20px; }
.oceanwp-settings .left,
.oceanwp-settings .right { float: none; width: 100%; }
.oceanwp-options .column-wrap { width: 32.33%; }
.oceanwp-bloc,
.oceanwp-support { width: 49%; }
.oceanwp-review { float: left; }
.oceanwp-youtube,
.oceanwp-support { float: right; }
#wpbody-content .oceanwp-doc { float: left; min-width: 49%; clear: both; }
body.rtl .wrap.oceanwp-theme-panel { margin-left: 20px; margin-right: 0; }
body.rtl .oceanwp-support { float: right; }
body.rtl #wpbody-content .oceanwp-doc { float: left; }
}
@media screen and ( max-width: 1100px ) {
.oceanwp-panels .column-wrap,
.oceanwp-options .column-wrap { width: 49%; }
#oceanwp-license-form .form-table tr { width: 46%; max-width: none; min-height: 230px; }
}
@media screen and ( max-width: 600px ) {
.oceanwp-panels .column-wrap,
.oceanwp-options .column-wrap { width: 100%; }
#oceanwp-license-form .form-table tr { width: 100%; min-height: 230px; }
}
@media screen and ( max-width: 480px ) {
.oceanwp-support,
.oceanwp-bloc,
#wpbody-content .oceanwp-doc { float: none !important; width: 100%; min-width: 100%; }
} | 0.464173 | 0.094929 |
.anychart-ui-support {
border-style: hidden;
}
* [class^="anychart"] {
outline: none;
}
.anychart-inline-block {
position: relative;
display: -moz-inline-box;
display: inline-block;
}
* html .anychart-inline-block {
display: inline;
}
* :first-child + html .anychart-inline-block {
display: inline;
}
.anychart-hidden {
display: none;
}
.anychart-control-disabled {
color: #cccccc;
}
.anychart-label-input {
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
border: 1px solid #d9d9d9;
border-top: 1px solid silver;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
font-size: 13px;
height: 16px;
padding: 5px 4px;
}
.anychart-label-input:focus {
border-color: #4d90fe;
}
.anychart-label-input.anychart-label-input-label-disabled {
color: #cccccc;
}
.anychart-thumbnail {
display: block;
padding: 4px;
margin-bottom: 20px;
line-height: 1.42857143;
background-color: #ffffff;
border: 1px solid #dddddd;
border-radius: 2px;
-webkit-transition: border .2s ease-in-out;
transition: border .2s ease-in-out;
}
.anychart-thumbnail > img {
margin-right: auto;
margin-left: auto;
display: block;
max-width: 100%;
height: auto;
}
.anychart-thumbnail:hover,
.anychart-thumbnail:focus {
border-color: #cccccc;
box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.anychart-thumbnail:active {
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
border-color: #489adc;
}
.anychart-loader {
background-color: rgba(255,255,255,.5);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
}
.anychart-loader .anychart-loader-rotating-cover {
width: 70px;
height: 70px;
position: absolute;
top: 50%;
margin-top: -35px;
left: 50%;
margin-left: -35px;
}
.anychart-loader .anychart-loader-rotating-plane {
display: block;
width: 100%;
height: 100%;
border-radius: 20%;
border: 5px solid #1c75ba;
margin: 0 auto;
position: relative;
-webkit-animation: anychart-loader-rotate-plane 3s infinite;
animation: anychart-loader-rotate-plane 3s infinite;
}
.anychart-loader .anychart-loader-chart-row {
position: absolute;
top: 10px;
bottom: 0;
left: 10px;
right: 10px;
letter-spacing: -3px;
line-height: 0;
font-size: 0;
white-space: nowrap;
}
.anychart-loader .anychart-loader-chart-row .anychart-loader-chart-col {
display: inline-block;
width: 25%;
height: 90%;
background: #000000;
margin: 0 12.5% 0 0;
vertical-align: bottom;
}
.anychart-loader .anychart-loader-chart-row .anychart-loader-chart-col.anychart-loader-green {
background: #26a957;
height: 50%;
-webkit-animation: anychart-loader-blink-plane 1.5s infinite;
animation: anychart-loader-blink-plane 1.5s infinite;
}
.anychart-loader .anychart-loader-chart-row .anychart-loader-chart-col.anychart-loader-orange {
background: #ff8207;
height: 70%;
-webkit-animation: anychart-loader-blink-plane 1.5s infinite .15s;
animation: anychart-loader-blink-plane 1.5s infinite .25s;
}
.anychart-loader .anychart-loader-chart-row .anychart-loader-chart-col.anychart-loader-red {
background: #f0402e;
height: 90%;
-webkit-animation: anychart-loader-blink-plane 1.5s infinite .3s;
animation: anychart-loader-blink-plane 1.5s infinite .5s;
}
@keyframes anychart-loader-rotate-plane {
0% {
-webkit-transform: perspective(120px)rotateX(0deg)rotateY(0deg);
transform: perspective(120px)rotateX(0deg)rotateY(0deg);
opacity: 1;
}
25% {
-webkit-transform: perspective(120px)rotateX(-180.1deg)rotateY(0deg);
transform: perspective(120px)rotateX(-180.1deg)rotateY(0deg);
opacity: .3;
}
50% {
-webkit-transform: perspective(120px)rotateX(-180deg)rotateY(-179.9deg);
transform: perspective(120px)rotateX(-180deg)rotateY(-179.9deg);
opacity: 1;
}
75% {
-webkit-transform: perspective(120px)rotateX(0deg)rotateY(-180.1deg);
transform: perspective(120px)rotateX(0deg)rotateY(-180.1deg);
opacity: .3;
}
100% {
-webkit-transform: perspective(120px)rotateX(0deg)rotateY(0deg);
transform: perspective(120px)rotateX(0deg)rotateY(0deg);
opacity: 1;
}
}
@keyframes anychart-loader-blink-plane {
0% {
opacity: 1;
}
50% {
opacity: .01;
}
100% {
opacity: 1;
}
}
.anychart-custom-button {
margin: 2px;
border: 0;
padding: 0;
font-family: Arial, sans-serif;
color: #000000;
background: #dddddd url("//ssl.gstatic.com/editor/button-bg.png") repeat-x top left;
text-decoration: none;
list-style: none;
vertical-align: middle;
cursor: pointer;
outline: none;
}
.anychart-custom-button-outer-box,
.anychart-custom-button-inner-box {
border-style: solid;
border-color: #aaaaaa;
vertical-align: top;
}
.anychart-custom-button-outer-box {
margin: 0;
border-width: 1px 0;
padding: 0;
}
.anychart-custom-button-inner-box {
margin: 0 -1px;
border-width: 0 1px;
padding: 3px 4px;
white-space: nowrap;
}
* html .anychart-custom-button-inner-box {
left: -1px;
}
* html .anychart-custom-button-rtl .anychart-custom-button-outer-box {
left: -1px;
}
* html .anychart-custom-button-rtl .anychart-custom-button-inner-box {
right: auto;
}
* :first-child + html .anychart-custom-button-inner-box {
left: -1px;
}
* :first-child + html .anychart-custom-button-rtl .anychart-custom-button-inner-box {
left: 1px;
}
::root .anychart-custom-button,
::root .anychart-custom-button-outer-box {
line-height: 0;
}
::root .anychart-custom-button-inner-box {
line-height: normal;
}
.anychart-custom-button-disabled {
background-image: none !important;
opacity: 0.3;
-moz-opacity: 0.3;
filter: alpha(opacity=30);
cursor: default;
}
.anychart-custom-button-disabled .anychart-custom-button-outer-box,
.anychart-custom-button-disabled .anychart-custom-button-inner-box {
color: #333333 !important;
border-color: #999999 !important;
}
* html .anychart-custom-button-disabled {
margin: 2px 1px !important;
padding: 0 1px !important;
}
* :first-child + html .anychart-custom-button-disabled {
margin: 2px 1px !important;
padding: 0 1px !important;
}
.anychart-custom-button-hover .anychart-custom-button-outer-box,
.anychart-custom-button-hover .anychart-custom-button-inner-box {
border-color: #99ccff #6699ee #6699ee #77aaff !important;
}
.anychart-custom-button-active,
.anychart-custom-button-checked {
background-color: #bbbbbb;
background-position: bottom left;
}
.anychart-custom-button-focused .anychart-custom-button-outer-box,
.anychart-custom-button-focused .anychart-custom-button-inner-box {
border-color: orange;
}
.anychart-custom-button-collapse-right,
.anychart-custom-button-collapse-right .anychart-custom-button-outer-box,
.anychart-custom-button-collapse-right .anychart-custom-button-inner-box {
margin-right: 0;
}
.anychart-custom-button-collapse-left,
.anychart-custom-button-collapse-left .anychart-custom-button-outer-box,
.anychart-custom-button-collapse-left .anychart-custom-button-inner-box {
margin-left: 0;
}
.anychart-custom-button-collapse-left .anychart-custom-button-inner-box {
border-left: 1px solid #ffffff;
}
.anychart-custom-button-collapse-left.anychart-custom-button-checked.anychart-custom-button-inner-box {
border-left: 1px solid #dddddd;
}
* html .anychart-custom-button-collapse-left .anychart-custom-button-inner-box {
left: 0;
}
* :first-child + html .anychart-custom-button-collapse-left.anychart-custom-button-inner-box {
left: 0;
}
.anychart-button {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
border: 1px solid #dcdcdc;
border: 1px solid rgba(0,0,0,0.1);
color: #333333;
cursor: pointer;
text-align: center;
font-family: inherit;
font-size: 11px;
font-weight: bold;
height: 29px;
line-height: 27px;
margin-right: 16px;
min-width: 52px;
outline: 0;
padding: 0 8px;
white-space: nowrap;
}
.anychart-button:focus {
border-color: #4d90fe;
}
.anychart-button:hover {
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
box-shadow: 0 1px 1px rgba(0,0,0,.1);
}
.anychart-button:active {
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
}
.anychart-button i {
font-size: 11px;
}
.anychart-button.anychart-button-disabled:active {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
cursor: default;
}
.anychart-button-primary {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background-color: #4898e6;
background-image: -webkit-linear-gradient(to bottom,#4898e6,#4089d0);
background-image: -moz-linear-gradient(to bottom,#4898e6,#4089d0);
background-image: -ms-linear-gradient(to bottom,#4898e6,#4089d0);
background-image: -o-linear-gradient(to bottom,#4898e6,#4089d0);
background-image: linear-gradient(to bottom,#4898e6,#4089d0);
border: 1px solid #1976d2;
color: #ffffff;
cursor: pointer;
font-size: 11px;
font-weight: bold;
height: 26px;
line-height: 24px;
margin: 0 16px 0 0;
min-width: 70px;
outline: 0;
padding: 0 7px;
}
.anychart-button-primary:hover,
.anychart-button-primary:active {
background-color: #4898e6;
background-image: -webkit-linear-gradient(to bottom,#4898e6,#387ec3);
background-image: -moz-linear-gradient(to bottom,#4898e6,#387ec3);
background-image: -ms-linear-gradient(to bottom,#4898e6,#387ec3);
background-image: -o-linear-gradient(to bottom,#4898e6,#387ec3);
background-image: linear-gradient(to bottom,#4898e6,#387ec3);
border: 1px solid #1976d2;
color: #ffffff;
}
.anychart-button-primary:focus {
-webkit-box-shadow: inset 0 0 0 1px #ffffff;
-moz-box-shadow: inset 0 0 0 1px #ffffff;
box-shadow: inset 0 0 0 1px #ffffff;
outline: 0;
}
.anychart-button-primary:active {
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
}
.anychart-button-primary.anychart-button-disabled {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background: #4d90fe;
background-image: -webkit-linear-gradient(to bottom,#4d90fe,#4089d0);
background-image: -moz-linear-gradient(to bottom,#4d90fe,#4089d0);
background-image: -ms-linear-gradient(to bottom,#4d90fe,#4089d0);
background-image: -o-linear-gradient(to bottom,#4d90fe,#4089d0);
background-image: linear-gradient(to bottom,#4d90fe,#4089d0);
filter: alpha(opacity=50);
opacity: 0.5;
cursor: default;
}
.anychart-button-secondary {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
border: 1px solid #dcdcdc;
color: #333333;
cursor: pointer;
font-size: 11px;
font-weight: bold;
height: 26px;
line-height: 24px;
margin: 0 16px 0 0;
min-width: 70px;
outline: 0;
padding: 0 7px;
}
.anychart-button-secondary:hover,
.anychart-button-secondary:active {
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
background-color: #f8f8f8;
background-image: -webkit-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: linear-gradient(to bottom,#f8f8f8,#f1f1f1);
border: 1px solid #c6c6c6;
color: #111111;
}
.anychart-button-secondary:focus {
border: 1px solid #4d90fe;
}
.anychart-button-secondary:active {
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
.anychart-button-secondary.anychart-button-disabled {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
border: 1px solid #f3f3f3;
border: 1px solid rgba(0,0,0,0.05);
color: #b8b8b8;
cursor: default;
}
.anychart-button-standard {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
color: #333333;
border: 1px solid #dcdcdc;
border: 1px solid rgba(0,0,0,0.1);
}
.anychart-button-standard:hover {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background-color: #f8f8f8;
background-image: -webkit-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: linear-gradient(to bottom,#f8f8f8,#f1f1f1);
border: 1px solid #c6c6c6;
color: #111111;
}
.anychart-button-standard:active {
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
background: #f8f8f8;
color: #111111;
}
.anychart-button-standard.anychart-button-checked {
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
background-color: #eeeeee;
background-image: -webkit-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: -moz-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: -ms-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: -o-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: linear-gradient(to bottom,#eeeeee,#e0e0e0);
border: 1px solid #cccccc;
color: #333333;
}
.anychart-button-standard.anychart-button-disabled {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
border: 1px solid #f3f3f3;
border: 1px solid rgba(0,0,0,0.05);
color: #b8b8b8;
cursor: default;
}
.anychart-button-toggle {
height: 28px;
line-height: 24px;
padding: 0;
min-width: 27px;
margin: 0;
vertical-align: middle;
}
.anychart-button.anychart-button-toggle {
z-index: auto;
}
.anychart-button-collapse-left,
.anychart-button-collapse-right {
z-index: 1;
}
.anychart-button-collapse-left.anychart-button-checked,
.anychart-button-collapse-right.anychart-button-checked {
z-index: 2;
}
.anychart-button-collapse-left:hover,
.anychart-button-collapse-right:hover {
z-index: 3;
}
.anychart-button-collapse-left.anychart-button-disabled {
z-index: 0;
}
.anychart-button-collapse-right {
margin-right: 0;
-moz-border-radius-topright: 0;
-moz-border-radius-bottomright: 0;
-webkit-border-top-right-radius: 0;
-webkit-border-bottom-right-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.anychart-button-collapse-left {
margin-left: -1px;
-moz-border-radius-bottomleft: 0;
-moz-border-radius-topleft: 0;
-webkit-border-bottom-left-radius: 0;
-webkit-border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.anychart-menu {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
-moz-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
-webkit-transition: opacity 0.218s;
-moz-transition: opacity 0.218s;
-o-transition: opacity 0.218s;
transition: opacity 0.218s;
background: #ffffff;
border: 1px solid #cccccc;
border: 1px solid rgba(0,0,0,.2);
cursor: default;
font-size: 13px;
color: #222222;
font-family: Arial, sans-serif;
margin: 0;
outline: none;
padding: 6px 0;
position: absolute;
z-index: 1003;
line-height: normal;
}
.anychart-menuitem {
position: relative;
color: #333333;
cursor: pointer;
list-style: none;
margin: 0;
padding: 6px 1em 6px 30px;
white-space: nowrap;
}
.anychart-menuitem.anychart-menuitem-rtl {
padding-left: 7em;
padding-right: 28px;
}
.anychart-menu-nocheckbox .anychart-menuitem,
.anychart-menu-noicon .anychart-menuitem {
padding-left: 12px;
}
.anychart-menu-noaccel .anychart-menuitem {
padding-right: 20px;
}
.anychart-menuitem-disabled {
cursor: default;
}
.anychart-menuitem-disabled .anychart-menuitem-accel,
.anychart-menuitem-disabled .anychart-menuitem-content {
color: #cccccc !important;
}
.anychart-menuitem-disabled .anychart-menuitem-icon {
opacity: 0.3;
-moz-opacity: 0.3;
filter: alpha(opacity=30);
}
.anychart-menuitem-highlight,
.anychart-menuitem-hover {
background-color: #eeeeee;
border-color: #eeeeee;
border-style: dotted;
border-width: 1px 0;
padding-top: 5px;
padding-bottom: 5px;
}
.anychart-menuitem-checkbox,
.anychart-menuitem-icon {
background-repeat: no-repeat;
height: 21px;
left: 3px;
position: absolute;
right: auto;
top: 3px;
vertical-align: middle;
width: 21px;
}
.anychart-menuitem i {
position: absolute;
left: 9px;
}
.anychart-menuitem-link {
padding: 0;
}
.anychart-menuitem-link a {
text-decoration: none;
color: inherit;
display: inline-block;
padding: 6px 3em 6px 28px;
width: 100%;
box-sizing: border-box;
transition: none;
}
.anychart-menuitem-link i {
padding-top: 7px;
pointer-events: none;
}
.anychart-menuitem-link.anychart-menuitem-highlight a {
padding-bottom: 5px;
padding-top: 5px;
}
.anychart-menuitem-link.anychart-menuitem-highlight i {
padding-top: 6px;
}
.anychart-menuitem-rtl .anychart-menuitem-checkbox,
.anychart-menuitem-rtl .anychart-menuitem-icon {
left: auto;
right: 6px;
}
.anychart-menuitem-accel {
color: #777777;
direction: ltr;
left: auto;
float: right;
padding: 0 0 0 24px;
position: relative;
right: 0;
text-align: right;
}
.anychart-menuitem-rtl .anychart-menuitem-accel {
left: 0;
right: auto;
text-align: left;
}
.anychart-menuitem-mnemonic-hint {
text-decoration: underline;
}
.anychart-menuitem-mnemonic-separator {
color: #999999;
font-size: 12px;
padding-left: 4px;
}
.anychart-menuseparator {
border-top: 1px solid #ebebeb;
margin-top: 6px;
margin-bottom: 6px;
}
.anychart-submenu-arrow {
color: #000000;
-webkit-transition: all 0.218s;
-moz-transition: all 0.218s;
-o-transition: all 0.218s;
transition: all 0.218s;
opacity: .5;
filter: alpha(opacity=50);
position: absolute;
right: 0;
top: 2px;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 5px solid #000000;
font-size: 0;
}
.anychart-menuitem-content {
position: relative;
}
.anychart-menuitem-highlight .anychart-submenu-arrow,
.anychart-menuitem-hover .anychart-submenu-arrow {
-webkit-transition: none;
-moz-transition: none;
-o-transition: none;
transition: none;
border-left-color: #333333;
opacity: 1.0;
}
.anychart-menuitem-rtl .anychart-submenu-arrow {
text-align: left;
left: 0;
right: auto;
padding-left: 6px;
}
.anychart-menuitem-disabled .anychart-submenu-arrow {
border-left-color: #cccccc;
opacity: 1.0;
}
.anychart-menu-scrollable {
overflow-y: auto;
}
.anychart-menu.anychart-menu-horizontal {
padding-left: 4px;
padding-right: 4px;
}
.anychart-menu.anychart-menu-horizontal .anychart-menuitem {
display: inline-block;
padding: 2px 3px;
}
.anychart-menu.anychart-menu-horizontal .anychart-menuitem.anychart-menuitem-highlight,
.anychart-menu.anychart-menu-horizontal .anychart-menuitem .anychart-menuitem-hover {
padding-top: 1px;
padding-bottom: 1px;
}
.anychart-menuitem.anychart-option i {
position: relative;
left: 1px;
height: 23px;
padding-top: 1px;
width: 23px;
}
.anychart-menuitem.anychart-option i.ac-position-center {
top: -1px;
}
.anychart-menu-button {
background: #dddddd url("//ssl.gstatic.com/editor/button-bg.png") repeat-x top left;
border: 0;
color: #000000;
cursor: pointer;
list-style: none;
margin: 2px;
outline: none;
padding: 0;
text-decoration: none;
vertical-align: middle;
}
.anychart-menu-button-outer-box,
.anychart-menu-button-inner-box {
border-style: solid;
border-color: #aaaaaa;
vertical-align: top;
}
.anychart-menu-button-outer-box {
margin: 0;
border-width: 1px 0;
padding: 0;
}
.anychart-menu-button-inner-box {
margin: 0 -1px;
border-width: 0 1px;
padding: 3px 4px;
}
* html .anychart-menu-button-inner-box {
left: -1px;
}
* html .anychart-menu-button-rtl .anychart-menu-button-outer-box {
left: -1px;
right: auto;
}
* html .anychart-menu-button-rtl .anychart-menu-button-inner-box {
right: auto;
}
* :first-child + html .anychart-menu-button-inner-box {
left: -1px;
}
* :first-child + html .anychart-menu-button-rtl .anychart-menu-button-inner-box {
left: 1px;
right: auto;
}
::root .anychart-menu-button,
::root .anychart-menu-button-outer-box,
::root .anychart-menu-button-inner-box {
line-height: 0;
}
::root .anychart-menu-button-caption,
::root .anychart-menu-button-dropdown {
line-height: normal;
}
.anychart-menu-button-disabled {
background-image: none !important;
opacity: 0.3;
-moz-opacity: 0.3;
filter: alpha(opacity=30);
cursor: default;
}
.anychart-menu-button-disabled .anychart-menu-button-outer-box,
.anychart-menu-button-disabled .anychart-menu-button-inner-box,
.anychart-menu-button-disabled .anychart-menu-button-caption,
.anychart-menu-button-disabled .anychart-menu-button-dropdown {
color: #333333 !important;
border-color: #999999 !important;
}
* html .anychart-menu-button-disabled {
margin: 2px 1px !important;
padding: 0 1px !important;
}
* :first-child + html .anychart-menu-button-disabled {
margin: 2px 1px !important;
padding: 0 1px !important;
}
.anychart-menu-button-hover .anychart-menu-button-outer-box,
.anychart-menu-button-hover .anychart-menu-button-inner-box {
border-color: #99ccff #6699ee #6699ee #77aaff !important;
}
.anychart-menu-button-active,
.anychart-menu-button-open {
background-color: #bbbbbb;
background-position: bottom left;
}
.anychart-menu-button-focused .anychart-menu-button-outer-box,
.anychart-menu-button-focused .anychart-menu-button-inner-box {
border-color: orange;
}
.anychart-menu-button-caption {
padding: 0 4px 0 0;
vertical-align: top;
}
.anychart-menu-button-dropdown {
height: 15px;
width: 7px;
background: url("//ssl.gstatic.com/editor/editortoolbar.png") no-repeat -388px 0;
vertical-align: top;
}
.anychart-menu-button-collapse-right,
.anychart-menu-button-collapse-right .anychart-menu-button-outer-box,
.anychart-menu-button-collapse-right .anychart-menu-button-inner-box {
margin-right: 0;
}
.anychart-menu-button-collapse-left,
.anychart-menu-button-collapse-left .anychart-menu-button-outer-box,
.anychart-menu-button-collapse-left .anychart-menu-button-inner-box {
margin-left: 0;
}
.anychart-menu-button-collapse-left .anychart-menu-button-inner-box {
border-left: 1px solid #ffffff;
}
.anychart-menu-button-collapse-left.anychart-menu-button-checked.anychart-menu-button-inner-box {
border-left: 1px solid #dddddd;
}
.anychart-flat-menu-button {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
border: 1px solid #dcdcdc;
color: #333333;
cursor: pointer;
font-size: 11px;
font-weight: bold;
line-height: 27px;
list-style: none;
margin: 0 2px;
min-width: 46px;
outline: none;
padding: 0 18px 0 6px;
text-align: center;
text-decoration: none;
}
.anychart-flat-menu-button-disabled {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
border: 1px solid #f3f3f3;
border: 1px solid rgba(0,0,0,0.05);
color: #b8b8b8;
cursor: default;
}
.anychart-flat-menu-button-disabled .anychart-flat-menu-button-dropdown {
border-color: #b8b8b8 transparent;
}
.anychart-flat-menu-button-hover {
background-color: #f8f8f8;
background-image: -webkit-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: linear-gradient(to bottom,#f8f8f8,#f1f1f1);
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
box-shadow: 0 1px 1px rgba(0,0,0,.1);
border-color: #c6c6c6;
color: #111111;
}
.anychart-flat-menu-button.anychart-flat-menu-button-open,
.anychart-flat-menu-button.anychart-flat-menu-button-active {
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
background-color: #eeeeee;
background-image: -webkit-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: -moz-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: -ms-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: -o-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: linear-gradient(to bottom,#eeeeee,#e0e0e0);
border: 1px solid #cccccc;
color: #333333;
z-index: 2;
}
.anychart-flat-menu-button-focused {
border-color: #4d90fe;
}
.anychart-flat-menu-button-caption {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
white-space: nowrap;
padding-right: 20px;
text-overflow: ellipsis;
overflow: hidden;
width: 100%;
}
.anychart-flat-menu-button-dropdown {
border-color: #777777 transparent;
border-style: solid;
border-width: 4px 4px 0 4px;
height: 0;
width: 0;
position: absolute;
right: 5px;
top: 12px;
}
.anychart-flat-menu-button-active .anychart-flat-menu-button-dropdown,
.anychart-flat-menu-button-open .anychart-flat-menu-button-dropdown,
.anychart-flat-menu-button-selected .anychart-flat-menu-button-dropdown,
.anychart-flat-menu-button-hover .anychart-flat-menu-button-dropdown {
border-color: #595959 transparent;
}
.anychart-combobox {
background: 0;
background-color: whiteSmoke;
background-image: -webkit-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: -o-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: linear-gradient(to bottom,whiteSmoke,#f1f1f1);
border: 1px solid gainsboro;
border: 1px solid rgba(0,0,0,0.1);
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
font: normal small arial, sans-serif;
height: 24px;
color: #333333;
line-height: 24px;
list-style: none;
font-size: 11px;
font-weight: bold;
text-decoration: none;
vertical-align: middle;
cursor: pointer;
margin-left: 4px;
padding: 1px 0;
top: auto;
}
.anychart-combobox:hover {
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
box-shadow: 0 1px 1px rgba(0,0,0,.1);
background-color: #f8f8f8;
background-image: -webkit-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: linear-gradient(to bottom,#f8f8f8,#f1f1f1);
border-color: #c6c6c6;
color: #222222;
}
.anychart-combobox:hover input {
border-right-color: #d9d9d9;
}
.anychart-combobox.anychart-combobox-disabled {
background-color: whiteSmoke;
background-image: -webkit-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: -o-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: linear-gradient(to bottom,whiteSmoke,#f1f1f1);
border: 1px solid #f2f2f2;
opacity: 1;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
cursor: default;
}
.anychart-combobox.anychart-combobox-disabled input {
color: #b8b8b8;
border-right-color: transparent;
}
.anychart-combobox.anychart-combobox-disabled .anychart-combobox-button {
opacity: 0.4;
}
.anychart-combobox input {
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
background: transparent;
border: 1px solid transparent;
color: #333333;
font-family: Arial, sans-serif;
font-size: 11px;
font-weight: bold;
height: 20px;
overflow: hidden;
padding: 0 0 0 3px;
position: relative;
margin-right: 18px;
}
.anychart-combobox input:focus {
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
-webkit-user-select: text;
-moz-user-select: text;
background: #ffffff;
border: 1px solid #4d90fe;
height: 20px;
outline: none;
}
.anychart-combobox-button {
display: inline-block;
border-color: #777777 transparent;
border-style: solid;
border-width: 4px 4px 0 4px;
height: 0;
width: 0;
position: absolute;
right: 5px;
top: 12px;
}
.anychart-checkbox {
cursor: pointer;
display: inline-block;
margin: 2px 2px 2px 0;
overflow: hidden;
padding: 0;
position: relative;
white-space: nowrap;
vertical-align: middle;
}
.anychart-checkbox .anychart-checkbox-element {
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
background-color: rgba(255,255,255,.05);
border: 1px solid #c6c6c6;
border: 1px solid rgba(155,155,155,.57);
height: 11px;
margin: 0 4px 1px 1px;
outline: 0;
vertical-align: text-bottom;
width: 11px;
}
.anychart-checkbox-hover .anychart-checkbox-element {
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
border: 1px solid #b2b2b2;
}
.anychart-checkbox-focused .anychart-checkbox-element {
border: 1px solid #4d90fe;
}
.anychart-checkbox-checked {
background-color: #ffffff;
background-color: rgba(255,255,255,.65);
}
.anychart-checkbox-checked .anychart-checkbox-checkmark {
display: inline-block;
}
.anychart-checkbox-disabled {
cursor: default;
color: #b8b8b8;
}
.anychart-checkbox-disabled .anychart-checkbox-element {
background-color: #ffffff;
border: 1px solid #f1f1f1;
cursor: default;
}
.anychart-checkbox-checkmark {
display: none;
opacity: 0.6;
height: 15px;
outline: 0;
width: 15px;
left: 0;
position: relative;
top: -3px;
}
.anychart-palette {
cursor: default;
outline: none;
}
.anychart-palette-table {
empty-cells: show;
margin: 16px;
}
.anychart-palette-cell {
border: 1px solid transparent;
cursor: pointer;
margin: 0;
position: relative;
}
.anychart-palette-colorswatch {
border: none;
font-size: 14px;
height: 16px;
position: relative;
width: 16px;
display: block;
}
.anychart-palette-colorswatch:before {
display: none;
position: relative;
top: 1px;
left: 2px;
}
.anychart-palette-cell-hover {
border: 1px solid #000000;
}
.anychart-palette-cell-selected {
outline: 1px solid #000000;
}
.anychart-palette-cell-selected .anychart-palette-colorswatch:before {
display: inline-block;
}
.anychart-color-menu-button-indicator {
height: 14px;
margin-left: 4px;
outline: 1px solid #bbbbbb;
width: 14px;
}
.anychart-color-menu-button .anychart-menu-button-inner-box,
.anychart-toolbar-color-menu-button .anychart-toolbar-menu-button-inner-box {
padding-top: 2px !important;
padding-bottom: 2px !important;
}
.anychart-toolbar {
background-color: #fafafa;
background: linear-gradient(to bottom,#fafafa 0%,#f8f8f8 17%,#e5e5e5 100%);
background: -moz-linear-gradient(to bottom,#fafafa 0%,#f8f8f8 17%,#e5e5e5 100%);
background: -webkit-linear-gradient(to bottom,#fafafa 0%,#f8f8f8 17%,#e5e5e5 100%);
background: -o-linear-gradient(to bottom,#fafafa 0%,#f8f8f8 17%,#e5e5e5 100%);
background: -ms-linear-gradient(to bottom,#fafafa 0%,#f8f8f8 17%,#e5e5e5 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fafafa",endColorstr="#e5e5e5",GradientType=0);
border-bottom: 1px solid #d5d5d5;
cursor: default;
font: normal 12px Arial, sans-serif;
margin: 0;
outline: none;
padding: 2px;
position: relative;
zoom: 1;
}
.anychart-toolbar-button {
margin: 0 2px;
border: 0;
padding: 0;
font-family: Arial, sans-serif;
color: #333333;
text-decoration: none;
list-style: none;
vertical-align: middle;
cursor: default;
outline: none;
}
.anychart-toolbar-button-outer-box,
.anychart-toolbar-button-inner-box {
border: 0;
vertical-align: top;
}
.anychart-toolbar-button-outer-box {
margin: 0;
padding: 1px 0;
}
.anychart-toolbar-button-inner-box {
margin: 0 -1px;
padding: 3px 4px;
}
* html .anychart-toolbar-button-inner-box {
left: -1px;
}
* html .anychart-toolbar-button-rtl .anychart-toolbar-button-outer-box {
left: -1px;
}
* html .anychart-toolbar-button-rtl .anychart-toolbar-button-inner-box {
right: auto;
}
* :first-child + html .anychart-toolbar-button-inner-box {
left: -1px;
}
* :first-child + html .anychart-toolbar-button-rtl .anychart-toolbar-button-inner-box {
left: 1px;
right: auto;
}
::root .anychart-toolbar-button,
::root .anychart-toolbar-button-outer-box {
line-height: 0;
}
::root .anychart-toolbar-button-inner-box {
line-height: normal;
}
.anychart-toolbar-button-disabled {
opacity: 0.3;
-moz-opacity: 0.3;
filter: alpha(opacity=30);
}
.anychart-toolbar-button-disabled .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-disabled .anychart-toolbar-button-inner-box {
color: #333333 !important;
border-color: #999999 !important;
}
* html .anychart-toolbar-button-disabled {
background-color: #f0f0f0;
margin: 0 1px;
padding: 0 1px;
}
* :first-child + html .anychart-toolbar-button-disabled {
background-color: #f0f0f0;
margin: 0 1px;
padding: 0 1px;
}
.anychart-toolbar-button-hover .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-active .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-checked .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-selected .anychart-toolbar-button-outer-box {
border-width: 1px 0;
border-style: solid;
padding: 0;
}
.anychart-toolbar-button-hover .anychart-toolbar-button-inner-box,
.anychart-toolbar-button-active .anychart-toolbar-button-inner-box,
.anychart-toolbar-button-checked .anychart-toolbar-button-inner-box,
.anychart-toolbar-button-selected .anychart-toolbar-button-inner-box {
border-width: 0 1px;
border-style: solid;
padding: 3px;
}
.anychart-toolbar-button-hover .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-hover .anychart-toolbar-button-inner-box {
border-color: #a1badf !important;
}
.anychart-toolbar-button-active,
.anychart-toolbar-button-checked,
.anychart-toolbar-button-selected {
background-color: #dde1eb !important;
}
.anychart-toolbar-button-active .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-active .anychart-toolbar-button-inner-box,
.anychart-toolbar-button-checked .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-checked .anychart-toolbar-button-inner-box,
.anychart-toolbar-button-selected .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-selected .anychart-toolbar-button-inner-box {
border-color: #729bd1;
}
.anychart-toolbar-button-collapse-right,
.anychart-toolbar-button-collapse-right .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-collapse-right .anychart-toolbar-button-inner-box {
margin-right: 0;
}
.anychart-toolbar-button-collapse-left,
.anychart-toolbar-button-collapse-left .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-collapse-left .anychart-toolbar-button-inner-box {
margin-left: 0;
}
* html .anychart-toolbar-button-collapse-left .anychart-toolbar-button-inner-box {
left: 0;
}
* :first-child + html .anychart-toolbar-button-collapse-left.anychart-toolbar-button-inner-box {
left: 0;
}
.anychart-toolbar-menu-button {
margin: 0 2px;
border: 0;
padding: 0;
font-family: Arial, sans-serif;
color: #333333;
text-decoration: none;
list-style: none;
vertical-align: middle;
cursor: default;
outline: none;
}
.anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-inner-box {
border: 0;
vertical-align: top;
}
.anychart-toolbar-menu-button-outer-box {
margin: 0;
padding: 1px 0;
}
.anychart-toolbar-menu-button-inner-box {
margin: 0 -1px;
padding: 3px 4px;
}
* html .anychart-toolbar-menu-button-inner-box {
left: -1px;
}
* html .anychart-toolbar-menu-button-rtl .anychart-toolbar-menu-button-outer-box {
left: -1px;
}
* html .anychart-toolbar-menu-button-rtl .anychart-toolbar-menu-button-inner-box {
right: auto;
}
* :first-child + html .anychart-toolbar-menu-button-inner-box {
left: -1px;
}
* :first-child + html .anychart-toolbar-menu-button-rtl.anychart-toolbar-menu-button-inner-box {
left: 1px;
right: auto;
}
::root .anychart-toolbar-menu-button,
::root .anychart-toolbar-menu-button-outer-box,
::root .anychart-toolbar-menu-button-inner-box {
line-height: 0;
}
::root .anychart-toolbar-menu-button-caption,
::root .anychart-toolbar-menu-button-dropdown {
line-height: normal;
}
.anychart-toolbar-menu-button-disabled {
opacity: 0.3;
-moz-opacity: 0.3;
filter: alpha(opacity=30);
}
.anychart-toolbar-menu-button-disabled .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-disabled .anychart-toolbar-menu-button-inner-box {
color: #333333 !important;
border-color: #999999 !important;
}
* html .anychart-toolbar-menu-button-disabled {
background-color: #f0f0f0;
margin: 0 1px;
padding: 0 1px;
}
* :first-child + html .anychart-toolbar-menu-button-disabled {
background-color: #f0f0f0;
margin: 0 1px;
padding: 0 1px;
}
.anychart-toolbar-menu-button-hover .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-active .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-open .anychart-toolbar-menu-button-outer-box {
border-width: 1px 0;
border-style: solid;
padding: 0;
}
.anychart-toolbar-menu-button-hover .anychart-toolbar-menu-button-inner-box,
.anychart-toolbar-menu-button-active .anychart-toolbar-menu-button-inner-box,
.anychart-toolbar-menu-button-open .anychart-toolbar-menu-button-inner-box {
border-width: 0 1px;
border-style: solid;
padding: 3px;
}
.anychart-toolbar-menu-button-hover .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-hover .anychart-toolbar-menu-button-inner-box {
border-color: #a1badf !important;
}
.anychart-toolbar-menu-button-active,
.anychart-toolbar-menu-button-open {
background-color: #dde1eb !important;
}
.anychart-toolbar-menu-button-active .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-active .anychart-toolbar-menu-button-inner-box,
.anychart-toolbar-menu-button-open .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-open .anychart-toolbar-menu-button-inner-box {
border-color: #729bd1;
}
.anychart-toolbar-menu-button-caption {
padding: 0 4px 0 0;
vertical-align: middle;
}
.anychart-toolbar-menu-button-dropdown {
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 4px solid #000000;
vertical-align: middle;
}
.anychart-toolbar-separator {
margin: 0 2px;
border-left: 1px solid #d6d6d6;
border-right: 1px solid #f7f7f7;
padding: 0;
width: 0;
text-decoration: none;
list-style: none;
outline: none;
vertical-align: middle;
line-height: normal;
font-size: 120%;
overflow: hidden;
}
.anychart-toolbar-select .anychart-toolbar-menu-button-outer-box {
border-width: 1px 0;
border-style: solid;
padding: 0;
}
.anychart-toolbar-select .anychart-toolbar-menu-button-inner-box {
border-width: 0 1px;
border-style: solid;
padding: 3px;
}
.anychart-toolbar-select .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-select .anychart-toolbar-menu-button-inner-box {
border-color: #bfcbdf;
}
.anychart-range-picker {
font-family: Arial, sans-serif;
font-size: 11px;
color: #7c868e;
}
.anychart-range-picker.anychart-range-picker-inside {
position: absolute;
bottom: 27px;
left: 20px;
}
.anychart-range-picker .anychart-label-input {
font-size: 11px;
margin: 0 5px;
height: 13px;
padding: 3px 4px;
width: 90px;
font-weight: normal;
}
.anychart-range-picker .anychart-input-label {
margin-bottom: 0;
font-weight: normal;
}
.anychart-range-selector {
font-family: Arial, sans-serif;
font-size: 11px;
color: #7c868e;
}
.anychart-range-selector.anychart-range-selector-inside {
position: absolute;
bottom: 27px;
right: 25px;
}
.anychart-range-selector .anychart-input-label {
margin-right: 5px;
vertical-align: middle;
margin-bottom: 0;
font-weight: normal;
}
.anychart-range-selector .anychart-button {
height: 21px;
line-height: 19px;
padding: 0 5px;
}
.anychart-zoom {
position: absolute;
left: 10px;
top: 10px;
}
.anychart-zoom .anychart-button {
height: 21px;
width: 21px;
min-width: 21px;
padding: 0;
line-height: normal;
display: block;
margin: 5px 0;
}
.anychart-zoom .anychart-zoom-zoomIn {
margin: 2px 0;
}
.anychart-zoom .anychart-zoom-zoomOut {
margin: 2px 0;
}
.disable-selection {
-moz-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
.anychart-tooltip {
border-radius: 3px;
padding: 5px 10px;
background: rgba(33,33,33,0.7);
border: none;
display: inline-block;
box-sizing: border-box;
letter-spacing: normal;
color: #ffffff;
font-family: Verdana, Helvetica, Arial, 'sans-serif';
font-size: 12px;
position: absolute;
pointer-events: none;
margin: 10px 0px 10px 10px;
}
.anychart-tooltip-separator {
color: rgba(206,206,206,0.3);
border: none;
height: 1px;
margin: 5px 0;
}
.anychart-tooltip-title {
font-size: 14px;
} | assets/anyChart/css/anychart-ui.css | .anychart-ui-support {
border-style: hidden;
}
* [class^="anychart"] {
outline: none;
}
.anychart-inline-block {
position: relative;
display: -moz-inline-box;
display: inline-block;
}
* html .anychart-inline-block {
display: inline;
}
* :first-child + html .anychart-inline-block {
display: inline;
}
.anychart-hidden {
display: none;
}
.anychart-control-disabled {
color: #cccccc;
}
.anychart-label-input {
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
border: 1px solid #d9d9d9;
border-top: 1px solid silver;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
font-size: 13px;
height: 16px;
padding: 5px 4px;
}
.anychart-label-input:focus {
border-color: #4d90fe;
}
.anychart-label-input.anychart-label-input-label-disabled {
color: #cccccc;
}
.anychart-thumbnail {
display: block;
padding: 4px;
margin-bottom: 20px;
line-height: 1.42857143;
background-color: #ffffff;
border: 1px solid #dddddd;
border-radius: 2px;
-webkit-transition: border .2s ease-in-out;
transition: border .2s ease-in-out;
}
.anychart-thumbnail > img {
margin-right: auto;
margin-left: auto;
display: block;
max-width: 100%;
height: auto;
}
.anychart-thumbnail:hover,
.anychart-thumbnail:focus {
border-color: #cccccc;
box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.anychart-thumbnail:active {
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
border-color: #489adc;
}
.anychart-loader {
background-color: rgba(255,255,255,.5);
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
}
.anychart-loader .anychart-loader-rotating-cover {
width: 70px;
height: 70px;
position: absolute;
top: 50%;
margin-top: -35px;
left: 50%;
margin-left: -35px;
}
.anychart-loader .anychart-loader-rotating-plane {
display: block;
width: 100%;
height: 100%;
border-radius: 20%;
border: 5px solid #1c75ba;
margin: 0 auto;
position: relative;
-webkit-animation: anychart-loader-rotate-plane 3s infinite;
animation: anychart-loader-rotate-plane 3s infinite;
}
.anychart-loader .anychart-loader-chart-row {
position: absolute;
top: 10px;
bottom: 0;
left: 10px;
right: 10px;
letter-spacing: -3px;
line-height: 0;
font-size: 0;
white-space: nowrap;
}
.anychart-loader .anychart-loader-chart-row .anychart-loader-chart-col {
display: inline-block;
width: 25%;
height: 90%;
background: #000000;
margin: 0 12.5% 0 0;
vertical-align: bottom;
}
.anychart-loader .anychart-loader-chart-row .anychart-loader-chart-col.anychart-loader-green {
background: #26a957;
height: 50%;
-webkit-animation: anychart-loader-blink-plane 1.5s infinite;
animation: anychart-loader-blink-plane 1.5s infinite;
}
.anychart-loader .anychart-loader-chart-row .anychart-loader-chart-col.anychart-loader-orange {
background: #ff8207;
height: 70%;
-webkit-animation: anychart-loader-blink-plane 1.5s infinite .15s;
animation: anychart-loader-blink-plane 1.5s infinite .25s;
}
.anychart-loader .anychart-loader-chart-row .anychart-loader-chart-col.anychart-loader-red {
background: #f0402e;
height: 90%;
-webkit-animation: anychart-loader-blink-plane 1.5s infinite .3s;
animation: anychart-loader-blink-plane 1.5s infinite .5s;
}
@keyframes anychart-loader-rotate-plane {
0% {
-webkit-transform: perspective(120px)rotateX(0deg)rotateY(0deg);
transform: perspective(120px)rotateX(0deg)rotateY(0deg);
opacity: 1;
}
25% {
-webkit-transform: perspective(120px)rotateX(-180.1deg)rotateY(0deg);
transform: perspective(120px)rotateX(-180.1deg)rotateY(0deg);
opacity: .3;
}
50% {
-webkit-transform: perspective(120px)rotateX(-180deg)rotateY(-179.9deg);
transform: perspective(120px)rotateX(-180deg)rotateY(-179.9deg);
opacity: 1;
}
75% {
-webkit-transform: perspective(120px)rotateX(0deg)rotateY(-180.1deg);
transform: perspective(120px)rotateX(0deg)rotateY(-180.1deg);
opacity: .3;
}
100% {
-webkit-transform: perspective(120px)rotateX(0deg)rotateY(0deg);
transform: perspective(120px)rotateX(0deg)rotateY(0deg);
opacity: 1;
}
}
@keyframes anychart-loader-blink-plane {
0% {
opacity: 1;
}
50% {
opacity: .01;
}
100% {
opacity: 1;
}
}
.anychart-custom-button {
margin: 2px;
border: 0;
padding: 0;
font-family: Arial, sans-serif;
color: #000000;
background: #dddddd url("//ssl.gstatic.com/editor/button-bg.png") repeat-x top left;
text-decoration: none;
list-style: none;
vertical-align: middle;
cursor: pointer;
outline: none;
}
.anychart-custom-button-outer-box,
.anychart-custom-button-inner-box {
border-style: solid;
border-color: #aaaaaa;
vertical-align: top;
}
.anychart-custom-button-outer-box {
margin: 0;
border-width: 1px 0;
padding: 0;
}
.anychart-custom-button-inner-box {
margin: 0 -1px;
border-width: 0 1px;
padding: 3px 4px;
white-space: nowrap;
}
* html .anychart-custom-button-inner-box {
left: -1px;
}
* html .anychart-custom-button-rtl .anychart-custom-button-outer-box {
left: -1px;
}
* html .anychart-custom-button-rtl .anychart-custom-button-inner-box {
right: auto;
}
* :first-child + html .anychart-custom-button-inner-box {
left: -1px;
}
* :first-child + html .anychart-custom-button-rtl .anychart-custom-button-inner-box {
left: 1px;
}
::root .anychart-custom-button,
::root .anychart-custom-button-outer-box {
line-height: 0;
}
::root .anychart-custom-button-inner-box {
line-height: normal;
}
.anychart-custom-button-disabled {
background-image: none !important;
opacity: 0.3;
-moz-opacity: 0.3;
filter: alpha(opacity=30);
cursor: default;
}
.anychart-custom-button-disabled .anychart-custom-button-outer-box,
.anychart-custom-button-disabled .anychart-custom-button-inner-box {
color: #333333 !important;
border-color: #999999 !important;
}
* html .anychart-custom-button-disabled {
margin: 2px 1px !important;
padding: 0 1px !important;
}
* :first-child + html .anychart-custom-button-disabled {
margin: 2px 1px !important;
padding: 0 1px !important;
}
.anychart-custom-button-hover .anychart-custom-button-outer-box,
.anychart-custom-button-hover .anychart-custom-button-inner-box {
border-color: #99ccff #6699ee #6699ee #77aaff !important;
}
.anychart-custom-button-active,
.anychart-custom-button-checked {
background-color: #bbbbbb;
background-position: bottom left;
}
.anychart-custom-button-focused .anychart-custom-button-outer-box,
.anychart-custom-button-focused .anychart-custom-button-inner-box {
border-color: orange;
}
.anychart-custom-button-collapse-right,
.anychart-custom-button-collapse-right .anychart-custom-button-outer-box,
.anychart-custom-button-collapse-right .anychart-custom-button-inner-box {
margin-right: 0;
}
.anychart-custom-button-collapse-left,
.anychart-custom-button-collapse-left .anychart-custom-button-outer-box,
.anychart-custom-button-collapse-left .anychart-custom-button-inner-box {
margin-left: 0;
}
.anychart-custom-button-collapse-left .anychart-custom-button-inner-box {
border-left: 1px solid #ffffff;
}
.anychart-custom-button-collapse-left.anychart-custom-button-checked.anychart-custom-button-inner-box {
border-left: 1px solid #dddddd;
}
* html .anychart-custom-button-collapse-left .anychart-custom-button-inner-box {
left: 0;
}
* :first-child + html .anychart-custom-button-collapse-left.anychart-custom-button-inner-box {
left: 0;
}
.anychart-button {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
border: 1px solid #dcdcdc;
border: 1px solid rgba(0,0,0,0.1);
color: #333333;
cursor: pointer;
text-align: center;
font-family: inherit;
font-size: 11px;
font-weight: bold;
height: 29px;
line-height: 27px;
margin-right: 16px;
min-width: 52px;
outline: 0;
padding: 0 8px;
white-space: nowrap;
}
.anychart-button:focus {
border-color: #4d90fe;
}
.anychart-button:hover {
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
box-shadow: 0 1px 1px rgba(0,0,0,.1);
}
.anychart-button:active {
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
box-shadow: inset 0 1px 1px rgba(0,0,0,0.3);
}
.anychart-button i {
font-size: 11px;
}
.anychart-button.anychart-button-disabled:active {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
cursor: default;
}
.anychart-button-primary {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background-color: #4898e6;
background-image: -webkit-linear-gradient(to bottom,#4898e6,#4089d0);
background-image: -moz-linear-gradient(to bottom,#4898e6,#4089d0);
background-image: -ms-linear-gradient(to bottom,#4898e6,#4089d0);
background-image: -o-linear-gradient(to bottom,#4898e6,#4089d0);
background-image: linear-gradient(to bottom,#4898e6,#4089d0);
border: 1px solid #1976d2;
color: #ffffff;
cursor: pointer;
font-size: 11px;
font-weight: bold;
height: 26px;
line-height: 24px;
margin: 0 16px 0 0;
min-width: 70px;
outline: 0;
padding: 0 7px;
}
.anychart-button-primary:hover,
.anychart-button-primary:active {
background-color: #4898e6;
background-image: -webkit-linear-gradient(to bottom,#4898e6,#387ec3);
background-image: -moz-linear-gradient(to bottom,#4898e6,#387ec3);
background-image: -ms-linear-gradient(to bottom,#4898e6,#387ec3);
background-image: -o-linear-gradient(to bottom,#4898e6,#387ec3);
background-image: linear-gradient(to bottom,#4898e6,#387ec3);
border: 1px solid #1976d2;
color: #ffffff;
}
.anychart-button-primary:focus {
-webkit-box-shadow: inset 0 0 0 1px #ffffff;
-moz-box-shadow: inset 0 0 0 1px #ffffff;
box-shadow: inset 0 0 0 1px #ffffff;
outline: 0;
}
.anychart-button-primary:active {
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
}
.anychart-button-primary.anychart-button-disabled {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background: #4d90fe;
background-image: -webkit-linear-gradient(to bottom,#4d90fe,#4089d0);
background-image: -moz-linear-gradient(to bottom,#4d90fe,#4089d0);
background-image: -ms-linear-gradient(to bottom,#4d90fe,#4089d0);
background-image: -o-linear-gradient(to bottom,#4d90fe,#4089d0);
background-image: linear-gradient(to bottom,#4d90fe,#4089d0);
filter: alpha(opacity=50);
opacity: 0.5;
cursor: default;
}
.anychart-button-secondary {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
border: 1px solid #dcdcdc;
color: #333333;
cursor: pointer;
font-size: 11px;
font-weight: bold;
height: 26px;
line-height: 24px;
margin: 0 16px 0 0;
min-width: 70px;
outline: 0;
padding: 0 7px;
}
.anychart-button-secondary:hover,
.anychart-button-secondary:active {
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
box-shadow: 0 1px 1px rgba(0,0,0,0.1);
background-color: #f8f8f8;
background-image: -webkit-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: linear-gradient(to bottom,#f8f8f8,#f1f1f1);
border: 1px solid #c6c6c6;
color: #111111;
}
.anychart-button-secondary:focus {
border: 1px solid #4d90fe;
}
.anychart-button-secondary:active {
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}
.anychart-button-secondary.anychart-button-disabled {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
border: 1px solid #f3f3f3;
border: 1px solid rgba(0,0,0,0.05);
color: #b8b8b8;
cursor: default;
}
.anychart-button-standard {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
color: #333333;
border: 1px solid #dcdcdc;
border: 1px solid rgba(0,0,0,0.1);
}
.anychart-button-standard:hover {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background-color: #f8f8f8;
background-image: -webkit-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: linear-gradient(to bottom,#f8f8f8,#f1f1f1);
border: 1px solid #c6c6c6;
color: #111111;
}
.anychart-button-standard:active {
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
background: #f8f8f8;
color: #111111;
}
.anychart-button-standard.anychart-button-checked {
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
background-color: #eeeeee;
background-image: -webkit-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: -moz-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: -ms-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: -o-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: linear-gradient(to bottom,#eeeeee,#e0e0e0);
border: 1px solid #cccccc;
color: #333333;
}
.anychart-button-standard.anychart-button-disabled {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
border: 1px solid #f3f3f3;
border: 1px solid rgba(0,0,0,0.05);
color: #b8b8b8;
cursor: default;
}
.anychart-button-toggle {
height: 28px;
line-height: 24px;
padding: 0;
min-width: 27px;
margin: 0;
vertical-align: middle;
}
.anychart-button.anychart-button-toggle {
z-index: auto;
}
.anychart-button-collapse-left,
.anychart-button-collapse-right {
z-index: 1;
}
.anychart-button-collapse-left.anychart-button-checked,
.anychart-button-collapse-right.anychart-button-checked {
z-index: 2;
}
.anychart-button-collapse-left:hover,
.anychart-button-collapse-right:hover {
z-index: 3;
}
.anychart-button-collapse-left.anychart-button-disabled {
z-index: 0;
}
.anychart-button-collapse-right {
margin-right: 0;
-moz-border-radius-topright: 0;
-moz-border-radius-bottomright: 0;
-webkit-border-top-right-radius: 0;
-webkit-border-bottom-right-radius: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.anychart-button-collapse-left {
margin-left: -1px;
-moz-border-radius-bottomleft: 0;
-moz-border-radius-topleft: 0;
-webkit-border-bottom-left-radius: 0;
-webkit-border-top-left-radius: 0;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.anychart-menu {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
-moz-box-shadow: 0 2px 4px rgba(0,0,0,0.2);
box-shadow: 0 2px 4px rgba(0,0,0,0.2);
-webkit-transition: opacity 0.218s;
-moz-transition: opacity 0.218s;
-o-transition: opacity 0.218s;
transition: opacity 0.218s;
background: #ffffff;
border: 1px solid #cccccc;
border: 1px solid rgba(0,0,0,.2);
cursor: default;
font-size: 13px;
color: #222222;
font-family: Arial, sans-serif;
margin: 0;
outline: none;
padding: 6px 0;
position: absolute;
z-index: 1003;
line-height: normal;
}
.anychart-menuitem {
position: relative;
color: #333333;
cursor: pointer;
list-style: none;
margin: 0;
padding: 6px 1em 6px 30px;
white-space: nowrap;
}
.anychart-menuitem.anychart-menuitem-rtl {
padding-left: 7em;
padding-right: 28px;
}
.anychart-menu-nocheckbox .anychart-menuitem,
.anychart-menu-noicon .anychart-menuitem {
padding-left: 12px;
}
.anychart-menu-noaccel .anychart-menuitem {
padding-right: 20px;
}
.anychart-menuitem-disabled {
cursor: default;
}
.anychart-menuitem-disabled .anychart-menuitem-accel,
.anychart-menuitem-disabled .anychart-menuitem-content {
color: #cccccc !important;
}
.anychart-menuitem-disabled .anychart-menuitem-icon {
opacity: 0.3;
-moz-opacity: 0.3;
filter: alpha(opacity=30);
}
.anychart-menuitem-highlight,
.anychart-menuitem-hover {
background-color: #eeeeee;
border-color: #eeeeee;
border-style: dotted;
border-width: 1px 0;
padding-top: 5px;
padding-bottom: 5px;
}
.anychart-menuitem-checkbox,
.anychart-menuitem-icon {
background-repeat: no-repeat;
height: 21px;
left: 3px;
position: absolute;
right: auto;
top: 3px;
vertical-align: middle;
width: 21px;
}
.anychart-menuitem i {
position: absolute;
left: 9px;
}
.anychart-menuitem-link {
padding: 0;
}
.anychart-menuitem-link a {
text-decoration: none;
color: inherit;
display: inline-block;
padding: 6px 3em 6px 28px;
width: 100%;
box-sizing: border-box;
transition: none;
}
.anychart-menuitem-link i {
padding-top: 7px;
pointer-events: none;
}
.anychart-menuitem-link.anychart-menuitem-highlight a {
padding-bottom: 5px;
padding-top: 5px;
}
.anychart-menuitem-link.anychart-menuitem-highlight i {
padding-top: 6px;
}
.anychart-menuitem-rtl .anychart-menuitem-checkbox,
.anychart-menuitem-rtl .anychart-menuitem-icon {
left: auto;
right: 6px;
}
.anychart-menuitem-accel {
color: #777777;
direction: ltr;
left: auto;
float: right;
padding: 0 0 0 24px;
position: relative;
right: 0;
text-align: right;
}
.anychart-menuitem-rtl .anychart-menuitem-accel {
left: 0;
right: auto;
text-align: left;
}
.anychart-menuitem-mnemonic-hint {
text-decoration: underline;
}
.anychart-menuitem-mnemonic-separator {
color: #999999;
font-size: 12px;
padding-left: 4px;
}
.anychart-menuseparator {
border-top: 1px solid #ebebeb;
margin-top: 6px;
margin-bottom: 6px;
}
.anychart-submenu-arrow {
color: #000000;
-webkit-transition: all 0.218s;
-moz-transition: all 0.218s;
-o-transition: all 0.218s;
transition: all 0.218s;
opacity: .5;
filter: alpha(opacity=50);
position: absolute;
right: 0;
top: 2px;
border-top: 5px solid transparent;
border-bottom: 5px solid transparent;
border-left: 5px solid #000000;
font-size: 0;
}
.anychart-menuitem-content {
position: relative;
}
.anychart-menuitem-highlight .anychart-submenu-arrow,
.anychart-menuitem-hover .anychart-submenu-arrow {
-webkit-transition: none;
-moz-transition: none;
-o-transition: none;
transition: none;
border-left-color: #333333;
opacity: 1.0;
}
.anychart-menuitem-rtl .anychart-submenu-arrow {
text-align: left;
left: 0;
right: auto;
padding-left: 6px;
}
.anychart-menuitem-disabled .anychart-submenu-arrow {
border-left-color: #cccccc;
opacity: 1.0;
}
.anychart-menu-scrollable {
overflow-y: auto;
}
.anychart-menu.anychart-menu-horizontal {
padding-left: 4px;
padding-right: 4px;
}
.anychart-menu.anychart-menu-horizontal .anychart-menuitem {
display: inline-block;
padding: 2px 3px;
}
.anychart-menu.anychart-menu-horizontal .anychart-menuitem.anychart-menuitem-highlight,
.anychart-menu.anychart-menu-horizontal .anychart-menuitem .anychart-menuitem-hover {
padding-top: 1px;
padding-bottom: 1px;
}
.anychart-menuitem.anychart-option i {
position: relative;
left: 1px;
height: 23px;
padding-top: 1px;
width: 23px;
}
.anychart-menuitem.anychart-option i.ac-position-center {
top: -1px;
}
.anychart-menu-button {
background: #dddddd url("//ssl.gstatic.com/editor/button-bg.png") repeat-x top left;
border: 0;
color: #000000;
cursor: pointer;
list-style: none;
margin: 2px;
outline: none;
padding: 0;
text-decoration: none;
vertical-align: middle;
}
.anychart-menu-button-outer-box,
.anychart-menu-button-inner-box {
border-style: solid;
border-color: #aaaaaa;
vertical-align: top;
}
.anychart-menu-button-outer-box {
margin: 0;
border-width: 1px 0;
padding: 0;
}
.anychart-menu-button-inner-box {
margin: 0 -1px;
border-width: 0 1px;
padding: 3px 4px;
}
* html .anychart-menu-button-inner-box {
left: -1px;
}
* html .anychart-menu-button-rtl .anychart-menu-button-outer-box {
left: -1px;
right: auto;
}
* html .anychart-menu-button-rtl .anychart-menu-button-inner-box {
right: auto;
}
* :first-child + html .anychart-menu-button-inner-box {
left: -1px;
}
* :first-child + html .anychart-menu-button-rtl .anychart-menu-button-inner-box {
left: 1px;
right: auto;
}
::root .anychart-menu-button,
::root .anychart-menu-button-outer-box,
::root .anychart-menu-button-inner-box {
line-height: 0;
}
::root .anychart-menu-button-caption,
::root .anychart-menu-button-dropdown {
line-height: normal;
}
.anychart-menu-button-disabled {
background-image: none !important;
opacity: 0.3;
-moz-opacity: 0.3;
filter: alpha(opacity=30);
cursor: default;
}
.anychart-menu-button-disabled .anychart-menu-button-outer-box,
.anychart-menu-button-disabled .anychart-menu-button-inner-box,
.anychart-menu-button-disabled .anychart-menu-button-caption,
.anychart-menu-button-disabled .anychart-menu-button-dropdown {
color: #333333 !important;
border-color: #999999 !important;
}
* html .anychart-menu-button-disabled {
margin: 2px 1px !important;
padding: 0 1px !important;
}
* :first-child + html .anychart-menu-button-disabled {
margin: 2px 1px !important;
padding: 0 1px !important;
}
.anychart-menu-button-hover .anychart-menu-button-outer-box,
.anychart-menu-button-hover .anychart-menu-button-inner-box {
border-color: #99ccff #6699ee #6699ee #77aaff !important;
}
.anychart-menu-button-active,
.anychart-menu-button-open {
background-color: #bbbbbb;
background-position: bottom left;
}
.anychart-menu-button-focused .anychart-menu-button-outer-box,
.anychart-menu-button-focused .anychart-menu-button-inner-box {
border-color: orange;
}
.anychart-menu-button-caption {
padding: 0 4px 0 0;
vertical-align: top;
}
.anychart-menu-button-dropdown {
height: 15px;
width: 7px;
background: url("//ssl.gstatic.com/editor/editortoolbar.png") no-repeat -388px 0;
vertical-align: top;
}
.anychart-menu-button-collapse-right,
.anychart-menu-button-collapse-right .anychart-menu-button-outer-box,
.anychart-menu-button-collapse-right .anychart-menu-button-inner-box {
margin-right: 0;
}
.anychart-menu-button-collapse-left,
.anychart-menu-button-collapse-left .anychart-menu-button-outer-box,
.anychart-menu-button-collapse-left .anychart-menu-button-inner-box {
margin-left: 0;
}
.anychart-menu-button-collapse-left .anychart-menu-button-inner-box {
border-left: 1px solid #ffffff;
}
.anychart-menu-button-collapse-left.anychart-menu-button-checked.anychart-menu-button-inner-box {
border-left: 1px solid #dddddd;
}
.anychart-flat-menu-button {
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
border: 1px solid #dcdcdc;
color: #333333;
cursor: pointer;
font-size: 11px;
font-weight: bold;
line-height: 27px;
list-style: none;
margin: 0 2px;
min-width: 46px;
outline: none;
padding: 0 18px 0 6px;
text-align: center;
text-decoration: none;
}
.anychart-flat-menu-button-disabled {
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f5f5f5,#f1f1f1);
background-image: linear-gradient(to bottom,#f5f5f5,#f1f1f1);
border: 1px solid #f3f3f3;
border: 1px solid rgba(0,0,0,0.05);
color: #b8b8b8;
cursor: default;
}
.anychart-flat-menu-button-disabled .anychart-flat-menu-button-dropdown {
border-color: #b8b8b8 transparent;
}
.anychart-flat-menu-button-hover {
background-color: #f8f8f8;
background-image: -webkit-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: linear-gradient(to bottom,#f8f8f8,#f1f1f1);
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
box-shadow: 0 1px 1px rgba(0,0,0,.1);
border-color: #c6c6c6;
color: #111111;
}
.anychart-flat-menu-button.anychart-flat-menu-button-open,
.anychart-flat-menu-button.anychart-flat-menu-button-active {
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
background-color: #eeeeee;
background-image: -webkit-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: -moz-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: -ms-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: -o-linear-gradient(to bottom,#eeeeee,#e0e0e0);
background-image: linear-gradient(to bottom,#eeeeee,#e0e0e0);
border: 1px solid #cccccc;
color: #333333;
z-index: 2;
}
.anychart-flat-menu-button-focused {
border-color: #4d90fe;
}
.anychart-flat-menu-button-caption {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
white-space: nowrap;
padding-right: 20px;
text-overflow: ellipsis;
overflow: hidden;
width: 100%;
}
.anychart-flat-menu-button-dropdown {
border-color: #777777 transparent;
border-style: solid;
border-width: 4px 4px 0 4px;
height: 0;
width: 0;
position: absolute;
right: 5px;
top: 12px;
}
.anychart-flat-menu-button-active .anychart-flat-menu-button-dropdown,
.anychart-flat-menu-button-open .anychart-flat-menu-button-dropdown,
.anychart-flat-menu-button-selected .anychart-flat-menu-button-dropdown,
.anychart-flat-menu-button-hover .anychart-flat-menu-button-dropdown {
border-color: #595959 transparent;
}
.anychart-combobox {
background: 0;
background-color: whiteSmoke;
background-image: -webkit-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: -o-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: linear-gradient(to bottom,whiteSmoke,#f1f1f1);
border: 1px solid gainsboro;
border: 1px solid rgba(0,0,0,0.1);
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
font: normal small arial, sans-serif;
height: 24px;
color: #333333;
line-height: 24px;
list-style: none;
font-size: 11px;
font-weight: bold;
text-decoration: none;
vertical-align: middle;
cursor: pointer;
margin-left: 4px;
padding: 1px 0;
top: auto;
}
.anychart-combobox:hover {
-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.1);
-moz-box-shadow: 0 1px 1px rgba(0,0,0,.1);
box-shadow: 0 1px 1px rgba(0,0,0,.1);
background-color: #f8f8f8;
background-image: -webkit-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: -o-linear-gradient(to bottom,#f8f8f8,#f1f1f1);
background-image: linear-gradient(to bottom,#f8f8f8,#f1f1f1);
border-color: #c6c6c6;
color: #222222;
}
.anychart-combobox:hover input {
border-right-color: #d9d9d9;
}
.anychart-combobox.anychart-combobox-disabled {
background-color: whiteSmoke;
background-image: -webkit-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: -moz-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: -ms-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: -o-linear-gradient(to bottom,whiteSmoke,#f1f1f1);
background-image: linear-gradient(to bottom,whiteSmoke,#f1f1f1);
border: 1px solid #f2f2f2;
opacity: 1;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
cursor: default;
}
.anychart-combobox.anychart-combobox-disabled input {
color: #b8b8b8;
border-right-color: transparent;
}
.anychart-combobox.anychart-combobox-disabled .anychart-combobox-button {
opacity: 0.4;
}
.anychart-combobox input {
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
background: transparent;
border: 1px solid transparent;
color: #333333;
font-family: Arial, sans-serif;
font-size: 11px;
font-weight: bold;
height: 20px;
overflow: hidden;
padding: 0 0 0 3px;
position: relative;
margin-right: 18px;
}
.anychart-combobox input:focus {
-webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
-moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
-webkit-user-select: text;
-moz-user-select: text;
background: #ffffff;
border: 1px solid #4d90fe;
height: 20px;
outline: none;
}
.anychart-combobox-button {
display: inline-block;
border-color: #777777 transparent;
border-style: solid;
border-width: 4px 4px 0 4px;
height: 0;
width: 0;
position: absolute;
right: 5px;
top: 12px;
}
.anychart-checkbox {
cursor: pointer;
display: inline-block;
margin: 2px 2px 2px 0;
overflow: hidden;
padding: 0;
position: relative;
white-space: nowrap;
vertical-align: middle;
}
.anychart-checkbox .anychart-checkbox-element {
-webkit-border-radius: 1px;
-moz-border-radius: 1px;
border-radius: 1px;
-webkit-box-sizing: content-box;
-moz-box-sizing: content-box;
box-sizing: content-box;
background-color: rgba(255,255,255,.05);
border: 1px solid #c6c6c6;
border: 1px solid rgba(155,155,155,.57);
height: 11px;
margin: 0 4px 1px 1px;
outline: 0;
vertical-align: text-bottom;
width: 11px;
}
.anychart-checkbox-hover .anychart-checkbox-element {
-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
-moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
box-shadow: inset 0 1px 1px rgba(0,0,0,.1);
border: 1px solid #b2b2b2;
}
.anychart-checkbox-focused .anychart-checkbox-element {
border: 1px solid #4d90fe;
}
.anychart-checkbox-checked {
background-color: #ffffff;
background-color: rgba(255,255,255,.65);
}
.anychart-checkbox-checked .anychart-checkbox-checkmark {
display: inline-block;
}
.anychart-checkbox-disabled {
cursor: default;
color: #b8b8b8;
}
.anychart-checkbox-disabled .anychart-checkbox-element {
background-color: #ffffff;
border: 1px solid #f1f1f1;
cursor: default;
}
.anychart-checkbox-checkmark {
display: none;
opacity: 0.6;
height: 15px;
outline: 0;
width: 15px;
left: 0;
position: relative;
top: -3px;
}
.anychart-palette {
cursor: default;
outline: none;
}
.anychart-palette-table {
empty-cells: show;
margin: 16px;
}
.anychart-palette-cell {
border: 1px solid transparent;
cursor: pointer;
margin: 0;
position: relative;
}
.anychart-palette-colorswatch {
border: none;
font-size: 14px;
height: 16px;
position: relative;
width: 16px;
display: block;
}
.anychart-palette-colorswatch:before {
display: none;
position: relative;
top: 1px;
left: 2px;
}
.anychart-palette-cell-hover {
border: 1px solid #000000;
}
.anychart-palette-cell-selected {
outline: 1px solid #000000;
}
.anychart-palette-cell-selected .anychart-palette-colorswatch:before {
display: inline-block;
}
.anychart-color-menu-button-indicator {
height: 14px;
margin-left: 4px;
outline: 1px solid #bbbbbb;
width: 14px;
}
.anychart-color-menu-button .anychart-menu-button-inner-box,
.anychart-toolbar-color-menu-button .anychart-toolbar-menu-button-inner-box {
padding-top: 2px !important;
padding-bottom: 2px !important;
}
.anychart-toolbar {
background-color: #fafafa;
background: linear-gradient(to bottom,#fafafa 0%,#f8f8f8 17%,#e5e5e5 100%);
background: -moz-linear-gradient(to bottom,#fafafa 0%,#f8f8f8 17%,#e5e5e5 100%);
background: -webkit-linear-gradient(to bottom,#fafafa 0%,#f8f8f8 17%,#e5e5e5 100%);
background: -o-linear-gradient(to bottom,#fafafa 0%,#f8f8f8 17%,#e5e5e5 100%);
background: -ms-linear-gradient(to bottom,#fafafa 0%,#f8f8f8 17%,#e5e5e5 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fafafa",endColorstr="#e5e5e5",GradientType=0);
border-bottom: 1px solid #d5d5d5;
cursor: default;
font: normal 12px Arial, sans-serif;
margin: 0;
outline: none;
padding: 2px;
position: relative;
zoom: 1;
}
.anychart-toolbar-button {
margin: 0 2px;
border: 0;
padding: 0;
font-family: Arial, sans-serif;
color: #333333;
text-decoration: none;
list-style: none;
vertical-align: middle;
cursor: default;
outline: none;
}
.anychart-toolbar-button-outer-box,
.anychart-toolbar-button-inner-box {
border: 0;
vertical-align: top;
}
.anychart-toolbar-button-outer-box {
margin: 0;
padding: 1px 0;
}
.anychart-toolbar-button-inner-box {
margin: 0 -1px;
padding: 3px 4px;
}
* html .anychart-toolbar-button-inner-box {
left: -1px;
}
* html .anychart-toolbar-button-rtl .anychart-toolbar-button-outer-box {
left: -1px;
}
* html .anychart-toolbar-button-rtl .anychart-toolbar-button-inner-box {
right: auto;
}
* :first-child + html .anychart-toolbar-button-inner-box {
left: -1px;
}
* :first-child + html .anychart-toolbar-button-rtl .anychart-toolbar-button-inner-box {
left: 1px;
right: auto;
}
::root .anychart-toolbar-button,
::root .anychart-toolbar-button-outer-box {
line-height: 0;
}
::root .anychart-toolbar-button-inner-box {
line-height: normal;
}
.anychart-toolbar-button-disabled {
opacity: 0.3;
-moz-opacity: 0.3;
filter: alpha(opacity=30);
}
.anychart-toolbar-button-disabled .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-disabled .anychart-toolbar-button-inner-box {
color: #333333 !important;
border-color: #999999 !important;
}
* html .anychart-toolbar-button-disabled {
background-color: #f0f0f0;
margin: 0 1px;
padding: 0 1px;
}
* :first-child + html .anychart-toolbar-button-disabled {
background-color: #f0f0f0;
margin: 0 1px;
padding: 0 1px;
}
.anychart-toolbar-button-hover .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-active .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-checked .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-selected .anychart-toolbar-button-outer-box {
border-width: 1px 0;
border-style: solid;
padding: 0;
}
.anychart-toolbar-button-hover .anychart-toolbar-button-inner-box,
.anychart-toolbar-button-active .anychart-toolbar-button-inner-box,
.anychart-toolbar-button-checked .anychart-toolbar-button-inner-box,
.anychart-toolbar-button-selected .anychart-toolbar-button-inner-box {
border-width: 0 1px;
border-style: solid;
padding: 3px;
}
.anychart-toolbar-button-hover .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-hover .anychart-toolbar-button-inner-box {
border-color: #a1badf !important;
}
.anychart-toolbar-button-active,
.anychart-toolbar-button-checked,
.anychart-toolbar-button-selected {
background-color: #dde1eb !important;
}
.anychart-toolbar-button-active .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-active .anychart-toolbar-button-inner-box,
.anychart-toolbar-button-checked .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-checked .anychart-toolbar-button-inner-box,
.anychart-toolbar-button-selected .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-selected .anychart-toolbar-button-inner-box {
border-color: #729bd1;
}
.anychart-toolbar-button-collapse-right,
.anychart-toolbar-button-collapse-right .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-collapse-right .anychart-toolbar-button-inner-box {
margin-right: 0;
}
.anychart-toolbar-button-collapse-left,
.anychart-toolbar-button-collapse-left .anychart-toolbar-button-outer-box,
.anychart-toolbar-button-collapse-left .anychart-toolbar-button-inner-box {
margin-left: 0;
}
* html .anychart-toolbar-button-collapse-left .anychart-toolbar-button-inner-box {
left: 0;
}
* :first-child + html .anychart-toolbar-button-collapse-left.anychart-toolbar-button-inner-box {
left: 0;
}
.anychart-toolbar-menu-button {
margin: 0 2px;
border: 0;
padding: 0;
font-family: Arial, sans-serif;
color: #333333;
text-decoration: none;
list-style: none;
vertical-align: middle;
cursor: default;
outline: none;
}
.anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-inner-box {
border: 0;
vertical-align: top;
}
.anychart-toolbar-menu-button-outer-box {
margin: 0;
padding: 1px 0;
}
.anychart-toolbar-menu-button-inner-box {
margin: 0 -1px;
padding: 3px 4px;
}
* html .anychart-toolbar-menu-button-inner-box {
left: -1px;
}
* html .anychart-toolbar-menu-button-rtl .anychart-toolbar-menu-button-outer-box {
left: -1px;
}
* html .anychart-toolbar-menu-button-rtl .anychart-toolbar-menu-button-inner-box {
right: auto;
}
* :first-child + html .anychart-toolbar-menu-button-inner-box {
left: -1px;
}
* :first-child + html .anychart-toolbar-menu-button-rtl.anychart-toolbar-menu-button-inner-box {
left: 1px;
right: auto;
}
::root .anychart-toolbar-menu-button,
::root .anychart-toolbar-menu-button-outer-box,
::root .anychart-toolbar-menu-button-inner-box {
line-height: 0;
}
::root .anychart-toolbar-menu-button-caption,
::root .anychart-toolbar-menu-button-dropdown {
line-height: normal;
}
.anychart-toolbar-menu-button-disabled {
opacity: 0.3;
-moz-opacity: 0.3;
filter: alpha(opacity=30);
}
.anychart-toolbar-menu-button-disabled .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-disabled .anychart-toolbar-menu-button-inner-box {
color: #333333 !important;
border-color: #999999 !important;
}
* html .anychart-toolbar-menu-button-disabled {
background-color: #f0f0f0;
margin: 0 1px;
padding: 0 1px;
}
* :first-child + html .anychart-toolbar-menu-button-disabled {
background-color: #f0f0f0;
margin: 0 1px;
padding: 0 1px;
}
.anychart-toolbar-menu-button-hover .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-active .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-open .anychart-toolbar-menu-button-outer-box {
border-width: 1px 0;
border-style: solid;
padding: 0;
}
.anychart-toolbar-menu-button-hover .anychart-toolbar-menu-button-inner-box,
.anychart-toolbar-menu-button-active .anychart-toolbar-menu-button-inner-box,
.anychart-toolbar-menu-button-open .anychart-toolbar-menu-button-inner-box {
border-width: 0 1px;
border-style: solid;
padding: 3px;
}
.anychart-toolbar-menu-button-hover .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-hover .anychart-toolbar-menu-button-inner-box {
border-color: #a1badf !important;
}
.anychart-toolbar-menu-button-active,
.anychart-toolbar-menu-button-open {
background-color: #dde1eb !important;
}
.anychart-toolbar-menu-button-active .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-active .anychart-toolbar-menu-button-inner-box,
.anychart-toolbar-menu-button-open .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-menu-button-open .anychart-toolbar-menu-button-inner-box {
border-color: #729bd1;
}
.anychart-toolbar-menu-button-caption {
padding: 0 4px 0 0;
vertical-align: middle;
}
.anychart-toolbar-menu-button-dropdown {
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 4px solid #000000;
vertical-align: middle;
}
.anychart-toolbar-separator {
margin: 0 2px;
border-left: 1px solid #d6d6d6;
border-right: 1px solid #f7f7f7;
padding: 0;
width: 0;
text-decoration: none;
list-style: none;
outline: none;
vertical-align: middle;
line-height: normal;
font-size: 120%;
overflow: hidden;
}
.anychart-toolbar-select .anychart-toolbar-menu-button-outer-box {
border-width: 1px 0;
border-style: solid;
padding: 0;
}
.anychart-toolbar-select .anychart-toolbar-menu-button-inner-box {
border-width: 0 1px;
border-style: solid;
padding: 3px;
}
.anychart-toolbar-select .anychart-toolbar-menu-button-outer-box,
.anychart-toolbar-select .anychart-toolbar-menu-button-inner-box {
border-color: #bfcbdf;
}
.anychart-range-picker {
font-family: Arial, sans-serif;
font-size: 11px;
color: #7c868e;
}
.anychart-range-picker.anychart-range-picker-inside {
position: absolute;
bottom: 27px;
left: 20px;
}
.anychart-range-picker .anychart-label-input {
font-size: 11px;
margin: 0 5px;
height: 13px;
padding: 3px 4px;
width: 90px;
font-weight: normal;
}
.anychart-range-picker .anychart-input-label {
margin-bottom: 0;
font-weight: normal;
}
.anychart-range-selector {
font-family: Arial, sans-serif;
font-size: 11px;
color: #7c868e;
}
.anychart-range-selector.anychart-range-selector-inside {
position: absolute;
bottom: 27px;
right: 25px;
}
.anychart-range-selector .anychart-input-label {
margin-right: 5px;
vertical-align: middle;
margin-bottom: 0;
font-weight: normal;
}
.anychart-range-selector .anychart-button {
height: 21px;
line-height: 19px;
padding: 0 5px;
}
.anychart-zoom {
position: absolute;
left: 10px;
top: 10px;
}
.anychart-zoom .anychart-button {
height: 21px;
width: 21px;
min-width: 21px;
padding: 0;
line-height: normal;
display: block;
margin: 5px 0;
}
.anychart-zoom .anychart-zoom-zoomIn {
margin: 2px 0;
}
.anychart-zoom .anychart-zoom-zoomOut {
margin: 2px 0;
}
.disable-selection {
-moz-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-webkit-touch-callout: none;
}
.anychart-tooltip {
border-radius: 3px;
padding: 5px 10px;
background: rgba(33,33,33,0.7);
border: none;
display: inline-block;
box-sizing: border-box;
letter-spacing: normal;
color: #ffffff;
font-family: Verdana, Helvetica, Arial, 'sans-serif';
font-size: 12px;
position: absolute;
pointer-events: none;
margin: 10px 0px 10px 10px;
}
.anychart-tooltip-separator {
color: rgba(206,206,206,0.3);
border: none;
height: 1px;
margin: 5px 0;
}
.anychart-tooltip-title {
font-size: 14px;
} | 0.538741 | 0.123234 |
<%
var OPACITY_STEP = 0.25;
function hoverColor(colorStr) {
if (colorStr.indexOf('rgba(') == 0) {
var parts = colorStr.split(',');
var alpha = parseFloat(parts[3]);
alpha = (alpha > 0.5) ? alpha - OPACITY_STEP : alpha + OPACITY_STEP;
parts[3] = alpha + ')';
return parts.join(',');
} else if (colorStr.indexOf('rgb(') == 0) {
return colorStr.replace(/^rgb/, 'rgba').replace(/\)$/, ', ' + (1 - OPACITY_STEP) +')');
} else {
return colorStr + '; opacity:' + (1 - OPACITY_STEP);
}
}
%>
/* reset css inside */
.persoo--widget__content {
word-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
.persoo--widget__content *,
.persoo--widget__content p,
.persoo--widget__content a,
.persoo--widget__content strong,
.persoo--widget__content em,
.persoo--widget__content span,
.persoo--widget__content ul,
.persoo--widget__content li,
.persoo--widget__content input,
.persoo--widget__content button {
margin: 0;
padding: 0;
font-family: inherit;
}
.persoo--widget__content h1 {
font-size: 2em;
margin: 0.67em 0;
}
.persoo--widget__content h2 {
font-size: 1.5em;
margin: 0.83em 0;
}
.persoo--widget__content h3 {
font-size: 1.17em;
margin: 1em 0;
}
.persoo--widget__content h4 {
font-size: 1em;
margin: 1.33em 0;
}
.persoo--widget__content hr {
border: 0;
border-top: 1px solid .eee;
border-bottom: 1px solid .fff;
}
.persoo--widget__content input {
padding: 4px 6px;
margin-right: 0px;
}
.persoo--widget__content p {
margin-bottom: 10px;
}
.persoo--widget__content strong {
font-weight: bold;
}
.persoo--widget__content em {
font-style: italic;
font-family: inherit;
}
.persoo--widget__content input {
margin-right: 0;
}
.persoo--widget__content input[type="text"] {
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
transition: border linear 0.2s, box-shadow linear 0.2s;
display: inline-block;
float: none;
vertical-align: middle;
}
/* persoo block styles */
.persoo-block {
margin-bottom: 10px;
}
.persoo--widget__content > div:last-child {
margin-bottom: 0 !important;
}
.persoo--widget .persoo-block--separator {
position: relative;
margin-bottom: 10px;
}
.persoo--widget__content input[type="submit"],
.persoo--widget__content .persoo-block--collect-email__form__email,
.persoo--widget__content .persoo-block--collect-email__form__submit,
.persoo--widget__content .persoo-block--collect-email__form__thank-you,
.persoo--widget__content .persoo-block--cta__link,
.persoo--widget__content .persoo-block--cta__coupon {
float: none;
vertical-align: middle;
min-height: 22px;
line-height: 22px;
padding: 6px 12px;
margin: 5px 5px;
word-wrap: normal;
text-decoration: none;
zoom: 1;
}
#persoo--<%= offerID %> input[type="submit"],
#persoo--<%= offerID %> .persoo-block--collect-email__form__submit,
#persoo--<%= offerID %> .persoo-block--collect-email__form__thank-you,
#persoo--<%= offerID %> .persoo-block--cta__link,
#persoo--<%= offerID %> .persoo-block--cta__coupon {
border-radius: <%= buttonCorners %>px;
font: <%= ctaButtonTextFont %>;
border: <%= ctaBorderSize %>px solid <%= ctaBorderColor %>;
background-color: <%= (ctaStyle == 'outline') ? "transparent" : ctaButtonColor %>;
color: <%= ctaButtonTextColor %>;
}
#persoo--<%= offerID %> input[type="submit"]:hover,
#persoo--<%= offerID %> .persoo-block--collect-email__form__submit:hover,
#persoo--<%= offerID %> .persoo-block--collect-email__form__thank-you:hover,
#persoo--<%= offerID %> .persoo-block--cta__link:hover,
#persoo--<%= offerID %> .persoo-block--cta__coupon:hover {
border-color: <%= hoverColor(ctaBorderColor) %>;
background-color: <%= (ctaStyle == 'outline') ? "transparent" : hoverColor(ctaButtonColor) %>;
color: <%= hoverColor(ctaButtonTextColor) %>;
-webkit-transition: background-color 1000ms linear;
-ms-transition: background-color 1000ms linear;
transition: background-color 1000ms linear;
}
#persoo--<%= offerID %> input[type="text"],
#persoo--<%= offerID %> .persoo-block--collect-email__form__email {
border-radius: <%= buttonCorners %>px;
font: <%= ctaButtonTextFont %>;
border: <%= ctaBorderSize %>px solid <%= ctaBorderColor %>;
background-color: <%= ctaInputColor %>;
color: <%= ctaInputTextColor %>;
}
<% if (ctaStyle == "stacked") { %>
#persoo--<%= offerID %> input[type="text"],
#persoo--<%= offerID %> .persoo-block--collect-email__form__email {
margin-right: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
#persoo--<%= offerID %> .persoo-block--collect-email__form__submit {
margin-left: 0;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
<% } %>
<%
var inputPlaceholderColor = ctaInputTextColor;
var inputPlaceholderStyle = "opacity: 0.9; color: " + inputPlaceholderColor + ";";
%>
#persoo--<%= offerID %> input::-ms-input-placeholder { <%= inputPlaceholderStyle %> }
#persoo--<%= offerID %> input:-ms-input-placeholder { <%= inputPlaceholderStyle %> }
#persoo--<%= offerID %> input::-webkit-input-placeholder { <%= inputPlaceholderStyle %> }
#persoo--<%= offerID %> input::placeholder { <%= inputPlaceholderStyle %> }
.persoo--widget__content img:not(.persoo-block) {
max-width: 100%;
max-height: 100%;
} | templateParts/persooBlocksStyles/template.css | <%
var OPACITY_STEP = 0.25;
function hoverColor(colorStr) {
if (colorStr.indexOf('rgba(') == 0) {
var parts = colorStr.split(',');
var alpha = parseFloat(parts[3]);
alpha = (alpha > 0.5) ? alpha - OPACITY_STEP : alpha + OPACITY_STEP;
parts[3] = alpha + ')';
return parts.join(',');
} else if (colorStr.indexOf('rgb(') == 0) {
return colorStr.replace(/^rgb/, 'rgba').replace(/\)$/, ', ' + (1 - OPACITY_STEP) +')');
} else {
return colorStr + '; opacity:' + (1 - OPACITY_STEP);
}
}
%>
/* reset css inside */
.persoo--widget__content {
word-wrap: break-word;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
.persoo--widget__content *,
.persoo--widget__content p,
.persoo--widget__content a,
.persoo--widget__content strong,
.persoo--widget__content em,
.persoo--widget__content span,
.persoo--widget__content ul,
.persoo--widget__content li,
.persoo--widget__content input,
.persoo--widget__content button {
margin: 0;
padding: 0;
font-family: inherit;
}
.persoo--widget__content h1 {
font-size: 2em;
margin: 0.67em 0;
}
.persoo--widget__content h2 {
font-size: 1.5em;
margin: 0.83em 0;
}
.persoo--widget__content h3 {
font-size: 1.17em;
margin: 1em 0;
}
.persoo--widget__content h4 {
font-size: 1em;
margin: 1.33em 0;
}
.persoo--widget__content hr {
border: 0;
border-top: 1px solid .eee;
border-bottom: 1px solid .fff;
}
.persoo--widget__content input {
padding: 4px 6px;
margin-right: 0px;
}
.persoo--widget__content p {
margin-bottom: 10px;
}
.persoo--widget__content strong {
font-weight: bold;
}
.persoo--widget__content em {
font-style: italic;
font-family: inherit;
}
.persoo--widget__content input {
margin-right: 0;
}
.persoo--widget__content input[type="text"] {
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
-moz-transition: border linear 0.2s, box-shadow linear 0.2s;
-o-transition: border linear 0.2s, box-shadow linear 0.2s;
transition: border linear 0.2s, box-shadow linear 0.2s;
display: inline-block;
float: none;
vertical-align: middle;
}
/* persoo block styles */
.persoo-block {
margin-bottom: 10px;
}
.persoo--widget__content > div:last-child {
margin-bottom: 0 !important;
}
.persoo--widget .persoo-block--separator {
position: relative;
margin-bottom: 10px;
}
.persoo--widget__content input[type="submit"],
.persoo--widget__content .persoo-block--collect-email__form__email,
.persoo--widget__content .persoo-block--collect-email__form__submit,
.persoo--widget__content .persoo-block--collect-email__form__thank-you,
.persoo--widget__content .persoo-block--cta__link,
.persoo--widget__content .persoo-block--cta__coupon {
float: none;
vertical-align: middle;
min-height: 22px;
line-height: 22px;
padding: 6px 12px;
margin: 5px 5px;
word-wrap: normal;
text-decoration: none;
zoom: 1;
}
#persoo--<%= offerID %> input[type="submit"],
#persoo--<%= offerID %> .persoo-block--collect-email__form__submit,
#persoo--<%= offerID %> .persoo-block--collect-email__form__thank-you,
#persoo--<%= offerID %> .persoo-block--cta__link,
#persoo--<%= offerID %> .persoo-block--cta__coupon {
border-radius: <%= buttonCorners %>px;
font: <%= ctaButtonTextFont %>;
border: <%= ctaBorderSize %>px solid <%= ctaBorderColor %>;
background-color: <%= (ctaStyle == 'outline') ? "transparent" : ctaButtonColor %>;
color: <%= ctaButtonTextColor %>;
}
#persoo--<%= offerID %> input[type="submit"]:hover,
#persoo--<%= offerID %> .persoo-block--collect-email__form__submit:hover,
#persoo--<%= offerID %> .persoo-block--collect-email__form__thank-you:hover,
#persoo--<%= offerID %> .persoo-block--cta__link:hover,
#persoo--<%= offerID %> .persoo-block--cta__coupon:hover {
border-color: <%= hoverColor(ctaBorderColor) %>;
background-color: <%= (ctaStyle == 'outline') ? "transparent" : hoverColor(ctaButtonColor) %>;
color: <%= hoverColor(ctaButtonTextColor) %>;
-webkit-transition: background-color 1000ms linear;
-ms-transition: background-color 1000ms linear;
transition: background-color 1000ms linear;
}
#persoo--<%= offerID %> input[type="text"],
#persoo--<%= offerID %> .persoo-block--collect-email__form__email {
border-radius: <%= buttonCorners %>px;
font: <%= ctaButtonTextFont %>;
border: <%= ctaBorderSize %>px solid <%= ctaBorderColor %>;
background-color: <%= ctaInputColor %>;
color: <%= ctaInputTextColor %>;
}
<% if (ctaStyle == "stacked") { %>
#persoo--<%= offerID %> input[type="text"],
#persoo--<%= offerID %> .persoo-block--collect-email__form__email {
margin-right: 0;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
#persoo--<%= offerID %> .persoo-block--collect-email__form__submit {
margin-left: 0;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
<% } %>
<%
var inputPlaceholderColor = ctaInputTextColor;
var inputPlaceholderStyle = "opacity: 0.9; color: " + inputPlaceholderColor + ";";
%>
#persoo--<%= offerID %> input::-ms-input-placeholder { <%= inputPlaceholderStyle %> }
#persoo--<%= offerID %> input:-ms-input-placeholder { <%= inputPlaceholderStyle %> }
#persoo--<%= offerID %> input::-webkit-input-placeholder { <%= inputPlaceholderStyle %> }
#persoo--<%= offerID %> input::placeholder { <%= inputPlaceholderStyle %> }
.persoo--widget__content img:not(.persoo-block) {
max-width: 100%;
max-height: 100%;
} | 0.254231 | 0.126003 |
@charset "UTF-8";
@font-face {
font-family: nanumgothic;
src: url(../fonts/나눔고딕.ttf);
}
* { font-family: nanumgothic; }
img {
vertical-align:middle;
}
#wrap { display: inline-block; width: calc(100% - 303px); height: calc(100% - 0px); position: absolute; right: 0px;}
#wrap .buttons { position:absolute;top:0;left:0;z-index:1000;padding:5px; }
#wrap .buttons .control-btn { margin:0 5px 5px 0; }
#wrap.section { margin: 0px 0px 0px 0px; }
#lnb { display: inline-block; margin-top: 0px; height: calc(100% - 0px); border: solid black 0px; position: absolute;}
.ui.vertical.accordion.menu { width: 300px; }
.ui.one.cards { width: 200px; margin: auto;}
.section { padding: 0px; }
.ui.toggle.checkbox {
vertical-align: middle;
}
body { overflow:hidden; }
#mainContainer { padding: 1px; height: calc(100% - 70px); }
#cardContainer { overflow: auto; height: 300px; width: 100%; position: absolute; bottom: 0px; }
#map { width: calc(100% - 0px); height: calc(100% - 0px); }
.buttonGroup { margin-bottom: 0px; text-align: right; }
.accordionItem { margin-top: 5px; }
.ui.toggle.checkbox.floatR { float: right; }
.btn100px { width: 120px; text-align: center; }
.title.bold { font-weight: bold; }
.ui.blue.label { width: 100%; margin-top: 10px; padding: 12px 15px 12px 15px; }
#heaerContainer { height: 70px; line-height: 60px; vertical-align: middle; padding: 5px 15px 5px 15px; background-color: #558fed; }
#titleContainer { display: inline-block; float: left; }
#contents { height: 100%; position: relative;}
.ui.modal>.content>.image+.description { width: 100%; }
#cardContainer .ui.cards { margin: 0px; }
#cardContainer .ui.cards>.card>.content>.header:not(.ui) { font-size: 1.0em; }
#cardContainer .ui.cards>.card { margin: 2.5px 5px; }
.ui.icon.button { padding: 3px 3px 3px 3px; margin-left: 5px; }
.ui.medium.image { text-align: center; }
.mapImageIcon { background: white; border: solid black 1px; padding: 5px; border-radius: 50%; line-height: 10px; }
.mapImageIcon.emoji { /* background: #558fed; */ padding: 1px; border: solid black 1px; line-height: 28px; width: 28px; height: 28px; text-align: center; font-size: 16px; }
.cardImg { float: right; background-color: #FFFFFF; border-radius: 10%; width: 40px; height: 40px; line-height: 40px; font-size: 25px; text-align: center; border: solid #000000 1px;}
.cardImg img { background-color: white; margin-top: -5px; width: 30px; height: 30px; }
#infoEmoji { font-size: 45px; }
.circleBase {
border-radius: 50%;
behavior: url(PIE.htc); /* remove if you don't care about IE8 */
}
.accordionItem .ui.label { font-weight: normal; }
.ui.inverted.button { font-size: 13px; }
#toggleLnb {
background: #FFFFFF;
display: inline-block;
position: absolute;
z-index: 100;
top: 50%;
padding: 10px 2px 10px 2px;
cursor: pointer;
border-right: solid black 1px;
border-top: solid black 1px;
border-bottom: solid black 1px;
border-radius: 0% 15% 15% 0%;
}
#toggleLnb img { margin-top: -3px; transform: rotate(180deg); width: 10px; }
#latLonDiv {
display: inline-block;
background: white;
padding: 5px 10px;
border-radius: 5px;
width: 250px;
} | css/base.css | @charset "UTF-8";
@font-face {
font-family: nanumgothic;
src: url(../fonts/나눔고딕.ttf);
}
* { font-family: nanumgothic; }
img {
vertical-align:middle;
}
#wrap { display: inline-block; width: calc(100% - 303px); height: calc(100% - 0px); position: absolute; right: 0px;}
#wrap .buttons { position:absolute;top:0;left:0;z-index:1000;padding:5px; }
#wrap .buttons .control-btn { margin:0 5px 5px 0; }
#wrap.section { margin: 0px 0px 0px 0px; }
#lnb { display: inline-block; margin-top: 0px; height: calc(100% - 0px); border: solid black 0px; position: absolute;}
.ui.vertical.accordion.menu { width: 300px; }
.ui.one.cards { width: 200px; margin: auto;}
.section { padding: 0px; }
.ui.toggle.checkbox {
vertical-align: middle;
}
body { overflow:hidden; }
#mainContainer { padding: 1px; height: calc(100% - 70px); }
#cardContainer { overflow: auto; height: 300px; width: 100%; position: absolute; bottom: 0px; }
#map { width: calc(100% - 0px); height: calc(100% - 0px); }
.buttonGroup { margin-bottom: 0px; text-align: right; }
.accordionItem { margin-top: 5px; }
.ui.toggle.checkbox.floatR { float: right; }
.btn100px { width: 120px; text-align: center; }
.title.bold { font-weight: bold; }
.ui.blue.label { width: 100%; margin-top: 10px; padding: 12px 15px 12px 15px; }
#heaerContainer { height: 70px; line-height: 60px; vertical-align: middle; padding: 5px 15px 5px 15px; background-color: #558fed; }
#titleContainer { display: inline-block; float: left; }
#contents { height: 100%; position: relative;}
.ui.modal>.content>.image+.description { width: 100%; }
#cardContainer .ui.cards { margin: 0px; }
#cardContainer .ui.cards>.card>.content>.header:not(.ui) { font-size: 1.0em; }
#cardContainer .ui.cards>.card { margin: 2.5px 5px; }
.ui.icon.button { padding: 3px 3px 3px 3px; margin-left: 5px; }
.ui.medium.image { text-align: center; }
.mapImageIcon { background: white; border: solid black 1px; padding: 5px; border-radius: 50%; line-height: 10px; }
.mapImageIcon.emoji { /* background: #558fed; */ padding: 1px; border: solid black 1px; line-height: 28px; width: 28px; height: 28px; text-align: center; font-size: 16px; }
.cardImg { float: right; background-color: #FFFFFF; border-radius: 10%; width: 40px; height: 40px; line-height: 40px; font-size: 25px; text-align: center; border: solid #000000 1px;}
.cardImg img { background-color: white; margin-top: -5px; width: 30px; height: 30px; }
#infoEmoji { font-size: 45px; }
.circleBase {
border-radius: 50%;
behavior: url(PIE.htc); /* remove if you don't care about IE8 */
}
.accordionItem .ui.label { font-weight: normal; }
.ui.inverted.button { font-size: 13px; }
#toggleLnb {
background: #FFFFFF;
display: inline-block;
position: absolute;
z-index: 100;
top: 50%;
padding: 10px 2px 10px 2px;
cursor: pointer;
border-right: solid black 1px;
border-top: solid black 1px;
border-bottom: solid black 1px;
border-radius: 0% 15% 15% 0%;
}
#toggleLnb img { margin-top: -3px; transform: rotate(180deg); width: 10px; }
#latLonDiv {
display: inline-block;
background: white;
padding: 5px 10px;
border-radius: 5px;
width: 250px;
} | 0.296145 | 0.178956 |
@font-face {
font-family: 'MMP-logo-font';
src: url('../Md_Gothic11_0.eot');
src: url('../Md_Gothic11_0.eot?#iefix') format('embedded-opentype'),
url('../Md_Gothic11_0.ttf') format('truetype');
}
@font-face {
font-family: 'Corbel-local';
src: url('../CORBEL.eot') format('embedded-opentype');
src: url('../CORBEL.eot?#iefix') format('embedded-opentype'),
url('../CORBEL.ttf') format('truetype');
}
html {
font-size: 100%;
}
body {
font-family: "Corbel-local" !important;
margin: 0 auto;
padding: 0;
font-size: 0.8em !important;
}
h1 {
font-size: 350% !important;
}
html {
height: 100%;
box-sizing: border-box;
background-color: rgb(39, 88, 148);
/* IE9, iOS 3.2+ */
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0idnNnZyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMCUiIHkyPSIxMDAlIj48c3RvcCBzdG9wLWNvbG9yPSIjZmZmZmZmI<KEY>);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%,color-stop(0, rgb(255, 255, 255)),color-stop(0.30, rgb(255, 255, 255)),color-stop(0.6, rgb(132, 166, 203)),color-stop(0.8, rgb(69, 112, 166)),color-stop(0.9, rgb(39, 88, 148)));
/* Android 2.3 */
background-image: -webkit-linear-gradient(top,rgb(255, 255, 255) 0%,rgb(255, 255, 255) 30%,rgb(132, 166, 203) 60%,rgb(69, 112, 166) 80%,rgb(39, 88, 148) 90%);
/* IE10+ */
background-image: linear-gradient(to bottom,rgb(255, 255, 255) 0%,rgb(255, 255, 255) 30%,rgb(132, 166, 203) 60%,rgb(69, 112, 166) 80%,rgb(39, 88, 148) 90%);
background-image: -ms-linear-gradient(top,rgb(255, 255, 255) 0%,rgb(255, 255, 255) 30%,rgb(132, 166, 203) 60%,rgb(69, 112, 166) 80%,rgb(39, 88, 148) 90%);
background-repeat: no-repeat;
background-attachment: fixed;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
/*position: absolute;*/
position: relative;
background-color: rgba(0, 62, 149, 0);
min-height: 100%;
height: auto;
min-width: 110em;
}
.navbar {
background-color: rgb(39, 88, 148);
min-width: 45em;
/*min-height: 60px !important;*/
margin-bottom: 0;
border-radius: 0;
min-width: 74em;
}
.navbar-bottom {
/*min-height: 3.8em !important;
height: 4.5% !important;
max-height: 5em;*/
height: 4.5em !important;
width: 100%;
position: absolute;
bottom: 0 !important;
padding-bottom: 0;
}
.navbar-top {
/*min-height: 7.5em !important;*/
/*height: 7.5em !important;*/
}
.navbar-nav > li {
margin-top: 4em !important;
height: 3.5em;
}
.navbar-nav > li > a, .navbar-brand {
/*margin-top: 3.0em !important;*/
/*margin-bottom: 0.5em !important;*/
/*height: 35px;*/
}
.jumbotron {
background-color: rgba(255, 255, 255, 0);
margin: 0 auto;
margin-bottom: -40px;
}
#navbar-container {
width: 100%;
padding-left: 3%;
padding-right: 3%;
}
.container-text-muted {
position: absolute;
text-align: center;
font-size: 130%;
white-space: nowrap;
top: 0%;
height: 100%;
width: 90%;
}
.text-muted {
margin-top: 1em;
color: white !important;
width: 32em;
display: inline-block;
width: 60%;
min-width: 42em;
}
/* IE8- CSS hack */
@media \0screen\,screen\9 {
.gradient {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffffff",endColorstr="#ff003e95",GradientType=0);
}
}
/*Customization etc.*/
.logo {
height: 10em;
width: auto;
display: block;
margin: auto;
margin-top: -2em;
margin-bottom: 4em;
}
.logo-smaller {
height: auto;
width: 100%;
display: block;
margin-top: 5%;
margin-bottom: 10%;
}
.logo-notext-header {
height: auto;
width: 4.2em;
}
.logo-notext {
height: auto;
width: 3.9em;
margin-top: 8%;
margin-bottom: 10%;
}
.logo-navbar {
height: 5em;
padding: 0;
margin-top: 0.5em;
margin-bottom: 1em;
margin-left: 0em;
margin-right: 0em;
}
.logo-footer-left {
position: absolute;
bottom: 7%;
height: 3.8em;
left: 6%;
}
.logo-footer-right {
position: absolute;
bottom: 7%;
height: 3.8em;
right: 5%;
}
.collapse {
float: right;
}
#navbar-container a {
font-size: 115%;
height: 100%;
}
.navbar li.active a {
color: rgb(39, 88, 148) !important;
}
#navbar ul.dropdown-menu a {
color: black !important;
font-size: 110%;
}
#navbar ul a b {
color: white !important;
font-size: 110%;
}
#page {
padding: 0px 15px 0;
width: 80vw;
min-width: 105em;
max-width: 120em;
min-height: 40em;
margin: auto;
min-height: 100%;
height: auto !important;
}
#page-header {
min-width: 89em;
max-width: 96em;
width: 100%;
text-align: right;
margin-top: 110px;
margin-top: 9em;
margin-top: 3em;
margin-bottom: 2em;
margin-bottom: 2em;
/*background-color: rgba(255, 255, 255, 0.5);*/
/*background-color: rgba(0, 50, 255, 0.08);*/
border-radius: 0.4em;
padding-top: 1em;
padding-bottom: 1em;
padding-left: 2em;
display: block;
display: table;
position: relative;
}
#page-header .col-md-2 {
padding: 0;
margin: 0;
width: 15%;
}
#page-header .col-md-10 {
width: 85%;
vertical-align: middle;
display: table-cell;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 15%;
padding-right: 2em;
padding-left: 2em;
padding-bottom: 2em;
}
#page-header .col-md-8 {
width: 70%;
vertical-align: middle;
display: table-cell;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 15%;
padding-right: 2em;
padding-left: 2em;
padding-bottom: 2em;
}
#page-header .help {
width: 10%;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 3%;
padding-right: 2em;
padding-left: 2em;
}
#page-header h2 {
text-align: center;
font-size: 150% !important;
font-weight: bold;
padding: 0;
padding-top: 1em;
margin: 0;
margin-left: auto;
margin-right: auto;
width: 100%;
}
#page-header #text {
}
.logo-header-text {
white-space: normal;
padding-top: 0em;
padding-bottom: 0em;
width: 10em;
display: block;
margin: auto;
margin-top: -0.55em;
margin-bottom: 1em;
color: black;
font-family: "MMP-logo-font" !important;
font-size: 75%;
display: table-cell;
}
.logo-header-text>div {
font-size: 40%;
/*vertical-align: middle;*/
text-align: center;
}
.logo-header-text div img {
margin-bottom: 0.5em;
}
/*.logo-header-text div div h2 {
color: black;
font-family: "MMP-logo-font" !important;
text-align: left;
padding-top: 6em;
}*/
#menu>ul>li:hover>ul {
bottom:100%;
}
#container-columns {
margin: 0 auto;
padding-bottom: 6em;
padding-top: 1em;
padding-left: 3em;
padding-right: 0em;
margin-right: auto;
margin-left: auto;
margin-bottom: 3em;
overflow-x: auto;
overflow-y: hidden;
position: relative;
white-space: nowrap;
min-width: 89em;
max-width: 100em;
width: 100%;
}
#container-columns .col-md-4 {
display: inline-block;
text-align: center;
max-width: 28%;
min-width: 26em;
background-color: white;
border-radius: 2em;
margin-right: 2%;
margin-left: 2%;
padding-bottom: 0.5%;
padding-right: 3.5%;
padding-left: 3.5%;
font-size: 82%;
}
#container-columns .col-md-8, .col-md-12 {
background-color: white;
border-radius: 1em;
text-align: justify;
padding-right: 1%;
padding-left: 1%;
padding-top: 2%;
padding-bottom: 2%;
margin-bottom: 5%;
}
#container-columns .row {
width: 110%;
}
.container-column-header, .container-column-header a, .container-column-header a div {
white-space: normal;
padding-top: 3%;
padding-bottom: 3%;
margin-left: auto;
margin-right: auto;
display: table-cell;
vertical-align: middle;
height: 5em;
text-align: center;
color: black;
font-family: "MMP-logo-font" !important;
font-size: 125%;
padding-left: 0.2em;
}
.container-column-header a div div {
text-align: left;
width: 100%;
padding-left: 0.8em;
font-size: 95%;
}
.container-column-header .col-md-5, .col-md-7 {
margin: 0;
padding: 0;
}
.container-column-header .col-md-5 {
width: 3.5em;
}
.container-column-header .col-md-7 {
width: auto;
max-width: 6em;
}
.mar {
text-align: center;
}
.container-blast {
display:inline-block;
min-width: 100em;
white-space: nowrap;
background-color: white;
border-radius: 1.5em;
margin-bottom: 9em;
margin-top: 3em;
padding-bottom: 3em;
padding-top: 1.5em;
padding-left: 0.5em;
padding-right: 0.5em;
}
.container-blast h2 {
padding-bottom: 0.5em;
}
.iframe-blast {
width: 95%;
min-height: 53em;
}
.container-db {
display:inline-block;
text-align: left;
min-width: 65em;
white-space: nowrap;
margin-left: 6em;
margin-right: 6em;
margin-bottom: 8em;
margin-top: 2em;
padding-bottom: 2em;
padding-top: 2em;
padding-left: 3em;
padding-right: 2em;
background-color: white;
border-radius: 1.5em;
font-size: 110%;
}
#app .container-fluid {
text-align: center;
}
#app .container-fluid div {
text-align: left;
}
#app .container-fluid div .row {
min-width: 1650px;
width: 1650px;
}
#app .container-fluid .nav-pills li {
margin: auto;
float: none;
display: inline-block;
}
#app .container-fluid .page-header h1 {
font-size: 200% !important;
}
#app .container-fluid .container iframe {
margin-top: 1em;
margin-bottom: 1.5em;
}
#app .container-fluid .ant-input {
margin-bottom: 0.25em;
}
#app h2 {
text-align: center;
}
#app .panel p {
margin: 0 0 10px;
}
.container-db .panel-body, .container-db .btn-default, .container-db .container-fluid {
white-space: normal;
margin: 0;
}
.container-db .container-fluid {
white-space: normal;
width; 100%;
}
.container-db h5 {
margin-top: 1em;
}
#container-columns .container-column-text {
white-space: normal;
font-size: 160%;
padding-top: 3%;
padding-bottom: 3%;
height: 18em;
margin: -1%;
text-align: justify;
}
#container-columns .container-column-text p {
font-size: 103%;
height: 11em;
}
#container-columns .main-btn {
position: absolute;
bottom: 7%;
left: 5%;
width: 90%;
height: 2.3em;
box-shadow: 3px 5px 5px #888888;
background-color: rgb(39, 88, 148);
color: white;
border-radius: 0.6em;
font-weight: bold;
vertical-align: middle;
text-align: center;
font-size: 170%;
padding: 2%;
}
#container-columns .db-browse-btn {
position: absolute;
bottom: 21%;
left: 5%;
width: 90%;
height: 2.3em;
box-shadow: 3px 5px 5px #888888;
background-color: rgb(39, 88, 148);
color: white;
border-radius: 0.5em;
font-weight: bold;
vertical-align: middle;
text-align: center;
font-size: 170%;
padding: 2%;
}
.db-half-left-btn {
position: absolute;
bottom: 6%;
left: 5%;
width: 42.5%;
height: 2.3em;
box-shadow: 3px 5px 5px #888888;
background-color: rgb(39, 88, 148);
color: white;
border-radius: 0.5em;
font-weight: bold;
vertical-align: middle;
text-align: center;
font-size: 170%;
padding: 2%;
}
.db-half-right-btn {
position: absolute;
bottom: 6%;
right: 5%;
width: 42.5%;
height: 2.3em;
box-shadow: 3px 5px 5px #888888;
background-color: rgb(39, 88, 148);
color: white;
border-radius: 0.5em;
font-weight: bold;
vertical-align: middle;
text-align: center;
font-size: 170%;
padding: 2%;
}
#container-columns .btn h3 {
vertical-align: middle;
font-weight: bold;
}
#container-contact-text {
font-size: 190%;
min-width: 35em;
max-width: 95%;
margin-left: auto;
margin-right: auto;
margin-top: 3%;
margin-bottom: 4em;
}
#container-contact-text #text-wrapper {
width: 100%;
white-space: nowrap;
display: table;
border-spacing: 1em;
}
#container-contact-text .col-md-4, .col-md-6, .col-md-8 {
background-color: white;
border-radius: 1em;
padding-top: 1em;
padding-bottom: 1em;
margin-right: 1em;
margin-left: 1em;
}
#container-contact-text #contact-col-left {
display: table-cell;
width: 35%;
padding-left: 5%;
}
#container-contact-text #contact-col-right {
display: table-cell;
text-align: right;
width: 30%;
padding-right: 5%;
}
#container-contact-text #contact-col-center {
display: table-cell;
text-align: center;
width: 30%;
margin-top: 10px;
}
#container-contact-text .col-md-12, #container-contact-text .col-md-11 {
background-color: white;
border-radius: 1em;
padding-top: 1em;
padding-bottom: 0.5em;
white-space: normal;
font-size: 73%;
margin-left: auto;
margin-right: auto;
margin-bottom: 0;
}
#container-contact-text .row {
padding: 2%;
padding-left: 4%;
padding-right: 4%;
}
#container-contact-text #doc-container table {
width: 100%;
border: 1px solid black;
}
#container-contact-text #doc-container th,
#container-contact-text #doc-container td {
border: 1px solid black;
vertical-align: top;
padding-left: 0.35em;
padding-right: 0.35em;
min-width: 5em;
font-family: "Times New Roman", Times, serif;
font-size: 96%;
}
#container-contact-text img {
max-width: 100% !important;
display: block;
margin: 0 auto;
}
#container-contact-text td {
padding-right: 1.5em;
}
.google-maps {
width: 97%;
height: 25em;
min-height: 600px;
border:0;
margin-left: 1.5%;
margin-right: 1.5%;
margin-bottom: 1em;
}
.captcha {
width: 100%;
height: 3em;
margin-top: 0%;
margin-bottom: 0%;
}
#captchaImage {
width: 40%;
float: left;
height: 100%;
margin-left: 1em;
}
#captchaInput {
width: 35%;
margin-right: 0;
height: 100%;
font-size: 200%;
margin-left: 0.65em;
}
#captchaRequiredStar {
height: 100%;
font-size: 125%;
vertical-align: top;
margin-top: 0.15em;
margin-left: 0.1em;
}
#captchaAudio {
width: 30%;
float: right;
height: 100%;
}
#captchaAudioControls {
width: 13.5%;
float: right;
height: 100%;
background-color: #E9E9E9;
margin-right: 1em;
#text-align: center;
}
#captchaAudioPlayStop {
font-size: 22px;
border-right: 2px solid #BBBBBB;
margin-top: 0.325em;
margin-left: 0.35em;
padding-right: 0.275em;
float: left;
}
#captchaVolumeOnOff {
font-size: 24px;
margin-right: 0.26em;
margin-top: 0.27em;
float: right;
}
/*.captchaAudioControlButton {
#margin: 0%;
#margin-left: 10%;
#margin-top: -12%;
display: inline-block;
vertical-align: middle;
line-height: normal;
}*/
.captchaAudioIconSeparator {
border-left: 1px solid #BBBBBB;
border-right: 1px solid #BBBBBB;
font-size: 2em;
vertical-align: middle;
line-height: normal;
overflow: hide;
}
#formInfo {
height: 1.2em;
margin-bottom: -1.0em;
margin-top: -0.5em;
}
#formRequiredFields {
margin: 0;
float: left;
}
#captchaLoading {
color: blue;
margin: 0;
margin-bottom: -0.75em;
float: right;
}
#captchaProcessing {
color: green;
margin: 0;
margin-bottom: -0.75em;
float: right;
}
#captchaWrong, #captchaError, #captchaAudioErrorIeNeverUseIt {
color: red;
margin: 0;
margin-bottom: -0.75em;
float: right;
}
#form-buttons {
margin-top: 1.1em;
}
/*
.form hr {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
// https://stackoverflow.com/questions/4126708/is-it-possible-to-style-html5-audio-tag
// https://stackoverflow.com/questions/41115801/in-chrome-55-prevent-showing-download-button-for-html-5-video
audio::-webkit-media-controls-timeline {
display:none;
}
audio::-webkit-media-controls-timeline-container {
display:none;
}
audio::-webkit-media-controls-current-time-display {
display:none;
}
audio::-webkit-media-controls-time-remaining-display {
display:none;
}
audio::-webkit-media-controls-enclosure {
overflow:hidden !important;
}
audio::-webkit-media-controls-panel {
width: 115px; *//* Adjust as needed *//*
}
audio::-webkit-media-controls-volume-slider {
margin-left: 5%;
display: inline;
}
audio::-webkit-media-controls-play-button {
display:none;
}
*/
#container-columns-community {
margin: 0 auto;
padding-bottom: 6em;
padding-top: 0em;
padding-left: 3em;
padding-right: 0em;
margin-right: auto;
margin-left: auto;
margin-bottom: 2em;
overflow-x: auto;
overflow-y: hidden;
position: relative;
white-space: nowrap;
min-width: 89em;
max-width: 100em;
width: 100%;
}
.col-md-4-community {
display: inline-block;
position: relative;
vertical-align:top;
width: 30%;
background-color: white;
border-radius: 1.5em;
margin-right: 1%;
margin-left: 1%;
padding-bottom: 2%;
white-space: normal;
margin-bottom: 1em;
padding-top: 0;
}
.col-md-4-community .container-column-header {
font-size: 95%;
}
.col-md-4-community h3 {
font-size: 145%;
}
.col-md-4-community .column-text {
padding-left: 7%;
padding-right: 6%;
font-size: 120%;
}
.col-md-4-community .column-text p img {
width: 100%;
height: auto;
}
code {
font-size: 80%;
} | site/src/MMP3138336_files/style.css | @font-face {
font-family: 'MMP-logo-font';
src: url('../Md_Gothic11_0.eot');
src: url('../Md_Gothic11_0.eot?#iefix') format('embedded-opentype'),
url('../Md_Gothic11_0.ttf') format('truetype');
}
@font-face {
font-family: 'Corbel-local';
src: url('../CORBEL.eot') format('embedded-opentype');
src: url('../CORBEL.eot?#iefix') format('embedded-opentype'),
url('../CORBEL.ttf') format('truetype');
}
html {
font-size: 100%;
}
body {
font-family: "Corbel-local" !important;
margin: 0 auto;
padding: 0;
font-size: 0.8em !important;
}
h1 {
font-size: 350% !important;
}
html {
height: 100%;
box-sizing: border-box;
background-color: rgb(39, 88, 148);
/* IE9, iOS 3.2+ */
background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCAxIDEiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiPjxsaW5lYXJHcmFkaWVudCBpZD0idnNnZyIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiIHgxPSIwJSIgeTE9IjAlIiB4Mj0iMCUiIHkyPSIxMDAlIj48c3RvcCBzdG9wLWNvbG9yPSIjZmZmZmZmI<KEY>);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%,color-stop(0, rgb(255, 255, 255)),color-stop(0.30, rgb(255, 255, 255)),color-stop(0.6, rgb(132, 166, 203)),color-stop(0.8, rgb(69, 112, 166)),color-stop(0.9, rgb(39, 88, 148)));
/* Android 2.3 */
background-image: -webkit-linear-gradient(top,rgb(255, 255, 255) 0%,rgb(255, 255, 255) 30%,rgb(132, 166, 203) 60%,rgb(69, 112, 166) 80%,rgb(39, 88, 148) 90%);
/* IE10+ */
background-image: linear-gradient(to bottom,rgb(255, 255, 255) 0%,rgb(255, 255, 255) 30%,rgb(132, 166, 203) 60%,rgb(69, 112, 166) 80%,rgb(39, 88, 148) 90%);
background-image: -ms-linear-gradient(top,rgb(255, 255, 255) 0%,rgb(255, 255, 255) 30%,rgb(132, 166, 203) 60%,rgb(69, 112, 166) 80%,rgb(39, 88, 148) 90%);
background-repeat: no-repeat;
background-attachment: fixed;
}
*,
*:before,
*:after {
box-sizing: inherit;
}
body {
/*position: absolute;*/
position: relative;
background-color: rgba(0, 62, 149, 0);
min-height: 100%;
height: auto;
min-width: 110em;
}
.navbar {
background-color: rgb(39, 88, 148);
min-width: 45em;
/*min-height: 60px !important;*/
margin-bottom: 0;
border-radius: 0;
min-width: 74em;
}
.navbar-bottom {
/*min-height: 3.8em !important;
height: 4.5% !important;
max-height: 5em;*/
height: 4.5em !important;
width: 100%;
position: absolute;
bottom: 0 !important;
padding-bottom: 0;
}
.navbar-top {
/*min-height: 7.5em !important;*/
/*height: 7.5em !important;*/
}
.navbar-nav > li {
margin-top: 4em !important;
height: 3.5em;
}
.navbar-nav > li > a, .navbar-brand {
/*margin-top: 3.0em !important;*/
/*margin-bottom: 0.5em !important;*/
/*height: 35px;*/
}
.jumbotron {
background-color: rgba(255, 255, 255, 0);
margin: 0 auto;
margin-bottom: -40px;
}
#navbar-container {
width: 100%;
padding-left: 3%;
padding-right: 3%;
}
.container-text-muted {
position: absolute;
text-align: center;
font-size: 130%;
white-space: nowrap;
top: 0%;
height: 100%;
width: 90%;
}
.text-muted {
margin-top: 1em;
color: white !important;
width: 32em;
display: inline-block;
width: 60%;
min-width: 42em;
}
/* IE8- CSS hack */
@media \0screen\,screen\9 {
.gradient {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffffff",endColorstr="#ff003e95",GradientType=0);
}
}
/*Customization etc.*/
.logo {
height: 10em;
width: auto;
display: block;
margin: auto;
margin-top: -2em;
margin-bottom: 4em;
}
.logo-smaller {
height: auto;
width: 100%;
display: block;
margin-top: 5%;
margin-bottom: 10%;
}
.logo-notext-header {
height: auto;
width: 4.2em;
}
.logo-notext {
height: auto;
width: 3.9em;
margin-top: 8%;
margin-bottom: 10%;
}
.logo-navbar {
height: 5em;
padding: 0;
margin-top: 0.5em;
margin-bottom: 1em;
margin-left: 0em;
margin-right: 0em;
}
.logo-footer-left {
position: absolute;
bottom: 7%;
height: 3.8em;
left: 6%;
}
.logo-footer-right {
position: absolute;
bottom: 7%;
height: 3.8em;
right: 5%;
}
.collapse {
float: right;
}
#navbar-container a {
font-size: 115%;
height: 100%;
}
.navbar li.active a {
color: rgb(39, 88, 148) !important;
}
#navbar ul.dropdown-menu a {
color: black !important;
font-size: 110%;
}
#navbar ul a b {
color: white !important;
font-size: 110%;
}
#page {
padding: 0px 15px 0;
width: 80vw;
min-width: 105em;
max-width: 120em;
min-height: 40em;
margin: auto;
min-height: 100%;
height: auto !important;
}
#page-header {
min-width: 89em;
max-width: 96em;
width: 100%;
text-align: right;
margin-top: 110px;
margin-top: 9em;
margin-top: 3em;
margin-bottom: 2em;
margin-bottom: 2em;
/*background-color: rgba(255, 255, 255, 0.5);*/
/*background-color: rgba(0, 50, 255, 0.08);*/
border-radius: 0.4em;
padding-top: 1em;
padding-bottom: 1em;
padding-left: 2em;
display: block;
display: table;
position: relative;
}
#page-header .col-md-2 {
padding: 0;
margin: 0;
width: 15%;
}
#page-header .col-md-10 {
width: 85%;
vertical-align: middle;
display: table-cell;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 15%;
padding-right: 2em;
padding-left: 2em;
padding-bottom: 2em;
}
#page-header .col-md-8 {
width: 70%;
vertical-align: middle;
display: table-cell;
position: absolute;
top: 50%;
transform: translateY(-50%);
left: 15%;
padding-right: 2em;
padding-left: 2em;
padding-bottom: 2em;
}
#page-header .help {
width: 10%;
position: absolute;
top: 50%;
transform: translateY(-50%);
right: 3%;
padding-right: 2em;
padding-left: 2em;
}
#page-header h2 {
text-align: center;
font-size: 150% !important;
font-weight: bold;
padding: 0;
padding-top: 1em;
margin: 0;
margin-left: auto;
margin-right: auto;
width: 100%;
}
#page-header #text {
}
.logo-header-text {
white-space: normal;
padding-top: 0em;
padding-bottom: 0em;
width: 10em;
display: block;
margin: auto;
margin-top: -0.55em;
margin-bottom: 1em;
color: black;
font-family: "MMP-logo-font" !important;
font-size: 75%;
display: table-cell;
}
.logo-header-text>div {
font-size: 40%;
/*vertical-align: middle;*/
text-align: center;
}
.logo-header-text div img {
margin-bottom: 0.5em;
}
/*.logo-header-text div div h2 {
color: black;
font-family: "MMP-logo-font" !important;
text-align: left;
padding-top: 6em;
}*/
#menu>ul>li:hover>ul {
bottom:100%;
}
#container-columns {
margin: 0 auto;
padding-bottom: 6em;
padding-top: 1em;
padding-left: 3em;
padding-right: 0em;
margin-right: auto;
margin-left: auto;
margin-bottom: 3em;
overflow-x: auto;
overflow-y: hidden;
position: relative;
white-space: nowrap;
min-width: 89em;
max-width: 100em;
width: 100%;
}
#container-columns .col-md-4 {
display: inline-block;
text-align: center;
max-width: 28%;
min-width: 26em;
background-color: white;
border-radius: 2em;
margin-right: 2%;
margin-left: 2%;
padding-bottom: 0.5%;
padding-right: 3.5%;
padding-left: 3.5%;
font-size: 82%;
}
#container-columns .col-md-8, .col-md-12 {
background-color: white;
border-radius: 1em;
text-align: justify;
padding-right: 1%;
padding-left: 1%;
padding-top: 2%;
padding-bottom: 2%;
margin-bottom: 5%;
}
#container-columns .row {
width: 110%;
}
.container-column-header, .container-column-header a, .container-column-header a div {
white-space: normal;
padding-top: 3%;
padding-bottom: 3%;
margin-left: auto;
margin-right: auto;
display: table-cell;
vertical-align: middle;
height: 5em;
text-align: center;
color: black;
font-family: "MMP-logo-font" !important;
font-size: 125%;
padding-left: 0.2em;
}
.container-column-header a div div {
text-align: left;
width: 100%;
padding-left: 0.8em;
font-size: 95%;
}
.container-column-header .col-md-5, .col-md-7 {
margin: 0;
padding: 0;
}
.container-column-header .col-md-5 {
width: 3.5em;
}
.container-column-header .col-md-7 {
width: auto;
max-width: 6em;
}
.mar {
text-align: center;
}
.container-blast {
display:inline-block;
min-width: 100em;
white-space: nowrap;
background-color: white;
border-radius: 1.5em;
margin-bottom: 9em;
margin-top: 3em;
padding-bottom: 3em;
padding-top: 1.5em;
padding-left: 0.5em;
padding-right: 0.5em;
}
.container-blast h2 {
padding-bottom: 0.5em;
}
.iframe-blast {
width: 95%;
min-height: 53em;
}
.container-db {
display:inline-block;
text-align: left;
min-width: 65em;
white-space: nowrap;
margin-left: 6em;
margin-right: 6em;
margin-bottom: 8em;
margin-top: 2em;
padding-bottom: 2em;
padding-top: 2em;
padding-left: 3em;
padding-right: 2em;
background-color: white;
border-radius: 1.5em;
font-size: 110%;
}
#app .container-fluid {
text-align: center;
}
#app .container-fluid div {
text-align: left;
}
#app .container-fluid div .row {
min-width: 1650px;
width: 1650px;
}
#app .container-fluid .nav-pills li {
margin: auto;
float: none;
display: inline-block;
}
#app .container-fluid .page-header h1 {
font-size: 200% !important;
}
#app .container-fluid .container iframe {
margin-top: 1em;
margin-bottom: 1.5em;
}
#app .container-fluid .ant-input {
margin-bottom: 0.25em;
}
#app h2 {
text-align: center;
}
#app .panel p {
margin: 0 0 10px;
}
.container-db .panel-body, .container-db .btn-default, .container-db .container-fluid {
white-space: normal;
margin: 0;
}
.container-db .container-fluid {
white-space: normal;
width; 100%;
}
.container-db h5 {
margin-top: 1em;
}
#container-columns .container-column-text {
white-space: normal;
font-size: 160%;
padding-top: 3%;
padding-bottom: 3%;
height: 18em;
margin: -1%;
text-align: justify;
}
#container-columns .container-column-text p {
font-size: 103%;
height: 11em;
}
#container-columns .main-btn {
position: absolute;
bottom: 7%;
left: 5%;
width: 90%;
height: 2.3em;
box-shadow: 3px 5px 5px #888888;
background-color: rgb(39, 88, 148);
color: white;
border-radius: 0.6em;
font-weight: bold;
vertical-align: middle;
text-align: center;
font-size: 170%;
padding: 2%;
}
#container-columns .db-browse-btn {
position: absolute;
bottom: 21%;
left: 5%;
width: 90%;
height: 2.3em;
box-shadow: 3px 5px 5px #888888;
background-color: rgb(39, 88, 148);
color: white;
border-radius: 0.5em;
font-weight: bold;
vertical-align: middle;
text-align: center;
font-size: 170%;
padding: 2%;
}
.db-half-left-btn {
position: absolute;
bottom: 6%;
left: 5%;
width: 42.5%;
height: 2.3em;
box-shadow: 3px 5px 5px #888888;
background-color: rgb(39, 88, 148);
color: white;
border-radius: 0.5em;
font-weight: bold;
vertical-align: middle;
text-align: center;
font-size: 170%;
padding: 2%;
}
.db-half-right-btn {
position: absolute;
bottom: 6%;
right: 5%;
width: 42.5%;
height: 2.3em;
box-shadow: 3px 5px 5px #888888;
background-color: rgb(39, 88, 148);
color: white;
border-radius: 0.5em;
font-weight: bold;
vertical-align: middle;
text-align: center;
font-size: 170%;
padding: 2%;
}
#container-columns .btn h3 {
vertical-align: middle;
font-weight: bold;
}
#container-contact-text {
font-size: 190%;
min-width: 35em;
max-width: 95%;
margin-left: auto;
margin-right: auto;
margin-top: 3%;
margin-bottom: 4em;
}
#container-contact-text #text-wrapper {
width: 100%;
white-space: nowrap;
display: table;
border-spacing: 1em;
}
#container-contact-text .col-md-4, .col-md-6, .col-md-8 {
background-color: white;
border-radius: 1em;
padding-top: 1em;
padding-bottom: 1em;
margin-right: 1em;
margin-left: 1em;
}
#container-contact-text #contact-col-left {
display: table-cell;
width: 35%;
padding-left: 5%;
}
#container-contact-text #contact-col-right {
display: table-cell;
text-align: right;
width: 30%;
padding-right: 5%;
}
#container-contact-text #contact-col-center {
display: table-cell;
text-align: center;
width: 30%;
margin-top: 10px;
}
#container-contact-text .col-md-12, #container-contact-text .col-md-11 {
background-color: white;
border-radius: 1em;
padding-top: 1em;
padding-bottom: 0.5em;
white-space: normal;
font-size: 73%;
margin-left: auto;
margin-right: auto;
margin-bottom: 0;
}
#container-contact-text .row {
padding: 2%;
padding-left: 4%;
padding-right: 4%;
}
#container-contact-text #doc-container table {
width: 100%;
border: 1px solid black;
}
#container-contact-text #doc-container th,
#container-contact-text #doc-container td {
border: 1px solid black;
vertical-align: top;
padding-left: 0.35em;
padding-right: 0.35em;
min-width: 5em;
font-family: "Times New Roman", Times, serif;
font-size: 96%;
}
#container-contact-text img {
max-width: 100% !important;
display: block;
margin: 0 auto;
}
#container-contact-text td {
padding-right: 1.5em;
}
.google-maps {
width: 97%;
height: 25em;
min-height: 600px;
border:0;
margin-left: 1.5%;
margin-right: 1.5%;
margin-bottom: 1em;
}
.captcha {
width: 100%;
height: 3em;
margin-top: 0%;
margin-bottom: 0%;
}
#captchaImage {
width: 40%;
float: left;
height: 100%;
margin-left: 1em;
}
#captchaInput {
width: 35%;
margin-right: 0;
height: 100%;
font-size: 200%;
margin-left: 0.65em;
}
#captchaRequiredStar {
height: 100%;
font-size: 125%;
vertical-align: top;
margin-top: 0.15em;
margin-left: 0.1em;
}
#captchaAudio {
width: 30%;
float: right;
height: 100%;
}
#captchaAudioControls {
width: 13.5%;
float: right;
height: 100%;
background-color: #E9E9E9;
margin-right: 1em;
#text-align: center;
}
#captchaAudioPlayStop {
font-size: 22px;
border-right: 2px solid #BBBBBB;
margin-top: 0.325em;
margin-left: 0.35em;
padding-right: 0.275em;
float: left;
}
#captchaVolumeOnOff {
font-size: 24px;
margin-right: 0.26em;
margin-top: 0.27em;
float: right;
}
/*.captchaAudioControlButton {
#margin: 0%;
#margin-left: 10%;
#margin-top: -12%;
display: inline-block;
vertical-align: middle;
line-height: normal;
}*/
.captchaAudioIconSeparator {
border-left: 1px solid #BBBBBB;
border-right: 1px solid #BBBBBB;
font-size: 2em;
vertical-align: middle;
line-height: normal;
overflow: hide;
}
#formInfo {
height: 1.2em;
margin-bottom: -1.0em;
margin-top: -0.5em;
}
#formRequiredFields {
margin: 0;
float: left;
}
#captchaLoading {
color: blue;
margin: 0;
margin-bottom: -0.75em;
float: right;
}
#captchaProcessing {
color: green;
margin: 0;
margin-bottom: -0.75em;
float: right;
}
#captchaWrong, #captchaError, #captchaAudioErrorIeNeverUseIt {
color: red;
margin: 0;
margin-bottom: -0.75em;
float: right;
}
#form-buttons {
margin-top: 1.1em;
}
/*
.form hr {
margin-top: 1.5em;
margin-bottom: 1.5em;
}
// https://stackoverflow.com/questions/4126708/is-it-possible-to-style-html5-audio-tag
// https://stackoverflow.com/questions/41115801/in-chrome-55-prevent-showing-download-button-for-html-5-video
audio::-webkit-media-controls-timeline {
display:none;
}
audio::-webkit-media-controls-timeline-container {
display:none;
}
audio::-webkit-media-controls-current-time-display {
display:none;
}
audio::-webkit-media-controls-time-remaining-display {
display:none;
}
audio::-webkit-media-controls-enclosure {
overflow:hidden !important;
}
audio::-webkit-media-controls-panel {
width: 115px; *//* Adjust as needed *//*
}
audio::-webkit-media-controls-volume-slider {
margin-left: 5%;
display: inline;
}
audio::-webkit-media-controls-play-button {
display:none;
}
*/
#container-columns-community {
margin: 0 auto;
padding-bottom: 6em;
padding-top: 0em;
padding-left: 3em;
padding-right: 0em;
margin-right: auto;
margin-left: auto;
margin-bottom: 2em;
overflow-x: auto;
overflow-y: hidden;
position: relative;
white-space: nowrap;
min-width: 89em;
max-width: 100em;
width: 100%;
}
.col-md-4-community {
display: inline-block;
position: relative;
vertical-align:top;
width: 30%;
background-color: white;
border-radius: 1.5em;
margin-right: 1%;
margin-left: 1%;
padding-bottom: 2%;
white-space: normal;
margin-bottom: 1em;
padding-top: 0;
}
.col-md-4-community .container-column-header {
font-size: 95%;
}
.col-md-4-community h3 {
font-size: 145%;
}
.col-md-4-community .column-text {
padding-left: 7%;
padding-right: 6%;
font-size: 120%;
}
.col-md-4-community .column-text p img {
width: 100%;
height: auto;
}
code {
font-size: 80%;
} | 0.427516 | 0.102889 |
@charset "utf-8";
body {
display: flex;
flex-direction: column;
background-color: #feebb1;
margin-left: 10%;
margin-right: 10%;
justify-content: center;
}
.prompt {
padding-left: 5%;
padding-right: 5%;
background-color: white;
display: flex;
flex-direction: column;
height: 65vh;
}
#chooserlable {
align-self: flex-start;
border: none;
background-color: #e5e5e5;
font-family: Montserrat;
color: #142a50;
padding: 8px;
}
.prompt .next-button {
align-self: flex-end;
border: none;
border-radius: 5px;
background-color: #daab27;
width: 35%;
height: 7%;
font-family: montserrat;
font-weight: 700;
color: white;
position: relative;
margin-bottom: 2vh;
cursor: pointer;
margin-top: 3vh;
}
.prompt .textinput.bigtextbox {
height: 25vh;
margin-bottom: 1%;
}
.searchbar {
display: flex;
flex-direction: row;
justify-content: flex-end;
background-color: white;
height: 25px;
}
.searchbar button {
border: none;
width: 8%;
background-color: white;
color: #142a50;
}
.prompt .text {
font-family: Montserrat;
color: #142a50;
margin-top: 3%;
margin-bottom: 2%;
}
.prompt .textinput {
background-color: #e5e5e5;
border: none;
height: 20px;
}
.logo {
width: 30vw;
height: auto;
align-self: flex-end;
margin-top: 3vh;
cursor:pointer;
}
.title {
font-size: 5.5vw;
color: #142a50;
font-family: Montserrat;
font-weight: 700;
}
.timecontainer {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.time {
border: none;
background-color: #e5e5e5;
width: 48%;
height: 20px;
}
.date {
border: none;
background-color: #e5e5e5;
width: 48%;
height: 20px;
}
#prompt1 {
}
#prompt2 {
display: none;
}
#map {
width: 100%;
height: 40vh;
margin-top: 3%;
}
#coordinates {
display: none;
}
.upload input {
border: none;
display: none;
}
.title {
margin-top: 3%;
margin-bottom: 2%;
}
@media (min-width: 769px) {
.logo {
width: 20vw;
}
.title {
font-size: 3vw;
}
body {
margin-left: 15%;
margin-right: 15%;
}
.prompt{
height: 50vh;
}
.prompt .text {
font-family: Montserrat;
color: #142a50;
margin-top: 1.5%;
margin-bottom: 1%;
}
.textinput {
min-height: 25px;
}
} | public/style3.css | @charset "utf-8";
body {
display: flex;
flex-direction: column;
background-color: #feebb1;
margin-left: 10%;
margin-right: 10%;
justify-content: center;
}
.prompt {
padding-left: 5%;
padding-right: 5%;
background-color: white;
display: flex;
flex-direction: column;
height: 65vh;
}
#chooserlable {
align-self: flex-start;
border: none;
background-color: #e5e5e5;
font-family: Montserrat;
color: #142a50;
padding: 8px;
}
.prompt .next-button {
align-self: flex-end;
border: none;
border-radius: 5px;
background-color: #daab27;
width: 35%;
height: 7%;
font-family: montserrat;
font-weight: 700;
color: white;
position: relative;
margin-bottom: 2vh;
cursor: pointer;
margin-top: 3vh;
}
.prompt .textinput.bigtextbox {
height: 25vh;
margin-bottom: 1%;
}
.searchbar {
display: flex;
flex-direction: row;
justify-content: flex-end;
background-color: white;
height: 25px;
}
.searchbar button {
border: none;
width: 8%;
background-color: white;
color: #142a50;
}
.prompt .text {
font-family: Montserrat;
color: #142a50;
margin-top: 3%;
margin-bottom: 2%;
}
.prompt .textinput {
background-color: #e5e5e5;
border: none;
height: 20px;
}
.logo {
width: 30vw;
height: auto;
align-self: flex-end;
margin-top: 3vh;
cursor:pointer;
}
.title {
font-size: 5.5vw;
color: #142a50;
font-family: Montserrat;
font-weight: 700;
}
.timecontainer {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.time {
border: none;
background-color: #e5e5e5;
width: 48%;
height: 20px;
}
.date {
border: none;
background-color: #e5e5e5;
width: 48%;
height: 20px;
}
#prompt1 {
}
#prompt2 {
display: none;
}
#map {
width: 100%;
height: 40vh;
margin-top: 3%;
}
#coordinates {
display: none;
}
.upload input {
border: none;
display: none;
}
.title {
margin-top: 3%;
margin-bottom: 2%;
}
@media (min-width: 769px) {
.logo {
width: 20vw;
}
.title {
font-size: 3vw;
}
body {
margin-left: 15%;
margin-right: 15%;
}
.prompt{
height: 50vh;
}
.prompt .text {
font-family: Montserrat;
color: #142a50;
margin-top: 1.5%;
margin-bottom: 1%;
}
.textinput {
min-height: 25px;
}
} | 0.325413 | 0.068351 |
.event_title {
font-size: 16px;
font-weight: 700;
/* max-width: 150px; */
overflow: auto;
text-align: left;
line-height: 20px;
}
.eventsTime {
height: 540px;
}
.event_date {
font-size: 14px;
/* color: var(--gray-800); */
font-weight: bold;
}
.event {
width: 90%;
margin: auto;
padding: 10px 10px 25px 10px;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
/* box-shadow: #d1d9e6 2px 2px 5px; */
cursor: pointer;
}
/* .event:hover {
box-shadow: #d1d9e6 5px 5px 10px;
} */
.event_box_1 {
display: flex;
width: 70%;
overflow-wrap: break-word;
word-wrap: break-word;
}
.more_delete_btns {
display: flex;
justify-content: flex-end;
align-items: flex-end;
/* background-color: blueviolet; */
margin-top: 25px;
}
.icon_delete {
/* width: 20px; */
width: 25px;
margin-left: 5px;
fill: var(--gray-800);
cursor: pointer;
}
.icon_edit {
/* width: 20px; */
width: 25px;
margin-left: 25px;
fill: var(--gray-800);
cursor: pointer;
}
.icon_edit:hover {
fill: var(--primary);
}
.icon_delete:hover {
fill: var(--primary);
}
.event_box_2 {
display: flex;
flex-direction: column;
align-items: flex-end;
/* justify-content: space-between; */
width: 30%;
/* background-color: brown; */
}
.event_img {
width: 70px;
height: 70px;
object-fit: cover;
border-radius: 10%;
margin-right: 10px;
}
.more_info {
color: var(--white);
font-weight: 700;
padding: 3px 12px;
cursor: pointer;
border: none;
text-decoration: none;
color: var(--primary);
background-color: var(--white);
border-radius: 6px;
-webkit-appearance: none;
appearance: none;
outline: none;
font-size: 14px;
line-height: 20px;
height: 28px;
margin-top: 20px;
opacity: 0.7;
box-shadow: #d1d9e6 2px 2px 5px;
}
.more_info:hover {
color: var(--white);
background: var(--primary);
}
@media screen and (min-width: 750px) {
.events {
width: 500px;
margin: auto;
}
.event_title {
max-width: 300px;
}
}
@media screen and (min-width: 1000px) {
.eventsTime {
display: flex;
width: 100%;
justify-content: center;
}
.event_list_1 {
width: 100%;
margin-right: 0;
}
.event_list_2 {
/* background-color: green; */
width: 30%;
height: calc(100vh - 140px);
}
.events {
/* width: 65%; */
width: 50%;
margin: 0;
}
.event_img {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: 10%;
margin-right: 10px;
}
.event_title {
max-width: 300px;
font-size: 18px;
}
.event_date {
font-size: 16px;
}
.img-globe-box2 {
width: 100%;
height: 100%;
background-image: url("./img/globe.svg");
background-repeat: no-repeat;
background-position: center;
margin: 0 55px;
margin-left: 0;
}
} | ReactPlatzi/agenda-react-main/src/components/Events.css | .event_title {
font-size: 16px;
font-weight: 700;
/* max-width: 150px; */
overflow: auto;
text-align: left;
line-height: 20px;
}
.eventsTime {
height: 540px;
}
.event_date {
font-size: 14px;
/* color: var(--gray-800); */
font-weight: bold;
}
.event {
width: 90%;
margin: auto;
padding: 10px 10px 25px 10px;
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: flex-start;
/* box-shadow: #d1d9e6 2px 2px 5px; */
cursor: pointer;
}
/* .event:hover {
box-shadow: #d1d9e6 5px 5px 10px;
} */
.event_box_1 {
display: flex;
width: 70%;
overflow-wrap: break-word;
word-wrap: break-word;
}
.more_delete_btns {
display: flex;
justify-content: flex-end;
align-items: flex-end;
/* background-color: blueviolet; */
margin-top: 25px;
}
.icon_delete {
/* width: 20px; */
width: 25px;
margin-left: 5px;
fill: var(--gray-800);
cursor: pointer;
}
.icon_edit {
/* width: 20px; */
width: 25px;
margin-left: 25px;
fill: var(--gray-800);
cursor: pointer;
}
.icon_edit:hover {
fill: var(--primary);
}
.icon_delete:hover {
fill: var(--primary);
}
.event_box_2 {
display: flex;
flex-direction: column;
align-items: flex-end;
/* justify-content: space-between; */
width: 30%;
/* background-color: brown; */
}
.event_img {
width: 70px;
height: 70px;
object-fit: cover;
border-radius: 10%;
margin-right: 10px;
}
.more_info {
color: var(--white);
font-weight: 700;
padding: 3px 12px;
cursor: pointer;
border: none;
text-decoration: none;
color: var(--primary);
background-color: var(--white);
border-radius: 6px;
-webkit-appearance: none;
appearance: none;
outline: none;
font-size: 14px;
line-height: 20px;
height: 28px;
margin-top: 20px;
opacity: 0.7;
box-shadow: #d1d9e6 2px 2px 5px;
}
.more_info:hover {
color: var(--white);
background: var(--primary);
}
@media screen and (min-width: 750px) {
.events {
width: 500px;
margin: auto;
}
.event_title {
max-width: 300px;
}
}
@media screen and (min-width: 1000px) {
.eventsTime {
display: flex;
width: 100%;
justify-content: center;
}
.event_list_1 {
width: 100%;
margin-right: 0;
}
.event_list_2 {
/* background-color: green; */
width: 30%;
height: calc(100vh - 140px);
}
.events {
/* width: 65%; */
width: 50%;
margin: 0;
}
.event_img {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: 10%;
margin-right: 10px;
}
.event_title {
max-width: 300px;
font-size: 18px;
}
.event_date {
font-size: 16px;
}
.img-globe-box2 {
width: 100%;
height: 100%;
background-image: url("./img/globe.svg");
background-repeat: no-repeat;
background-position: center;
margin: 0 55px;
margin-left: 0;
}
} | 0.378804 | 0.076891 |
@-moz-document url-prefix("http://www.eldarya.pl"), url-prefix("http://www.eldarya.fr"), url-prefix("http://www.eldarya.com.br"), url-prefix("http://www.eldarya.com"), url-prefix("http://www.eldarya.de"), url-prefix("http://www.eldarya.es"), url-prefix("http://www.eldarya.fi"), url-prefix("http://www.eldarya.hu"), url-prefix("http://www.eldarya.it"), url-prefix("http://www.eldarya.ru"), regexp("http://(fa1|fa2|www)\\.eldarya\\.(dk|nl|ro|se|uk)\\/.*") {
/*
By default this style will hide most unwanted exploration clothes(mostly common ones) in your wardrobe. They will become invisible there.
Delete from style grups of items you want to see by deleting whole line. Every line starts with .appearance-item.group-id, followed by item names in french, english and polish(as i play those versions and can check them). ? means i didn't see those and am not sure about name in that language.
You can make only some colors visible using their id or hide only some, block items with their name only or use part of set name to do so.
For detailed instructions on customizing this style to make your wardrobe have only items you want there go to tumblr post(links will be in description), where i wrote all you need to know.
*/
/*eyes*/
.appearance-item.group-2418,/*<NAME>/<NAME>/<NAME>*/
/*hairstyles*/
.appearance-item.group-910,/*Victoria*/
.appearance-item.group-940,/*Lucia*/
.appearance-item.group-970,/*Naboo*/
.appearance-item.group-1032,/*Effie*/
.appearance-item.group-1152,/*Curtis*/
.appearance-item.group-1693,/*Lara*/
.appearance-item.group-1987,/*Lawrence*/
.appearance-item.group-2044,/*Jackson*/
.appearance-item.group-3357,/*Xianghua*/
.appearance-item.group-3362,/*Makoto*/
.appearance-item.group-3367,/*Hinoto*/
/*patchwork*/
.appearance-item.group-2633,/*Pantalon en patchwork/Patchwork Pants/Spodnie Patchwork*/
.appearance-item.group-2619,/*Sous-vêtements patchwork/Patchwork Lingerie/Bielizna Patchwork*/
.appearance-item.group-2935,/*Bracelets en patchwork/Patchwork Bracelets/Bransoletki Patchwork*/
/*garden flowers*/
.appearance-item.group-2629,/*Bracelet de pied en fleurs du jardin/Garden Flowers Ankle Bracelet/Bransoletka na nogę Kwiaty z ogrodu*/
.appearance-item.group-2972,/*Jarretière en fleurs du jardin/?/Podwiązka Kwiaty z ogrodu*/
.appearance-item.group-2624,/*Bracelet droit en fleurs du jardin/Garden Flowers Bracelet - Left Hand/Bransoletka prawa Kwiaty z ogrodu*/
.appearance-item.group-2635,/*Bracelet gauche en fleurs du jardin/Garden Flowers Bracelet - Right Hand/Bransoletka lewa Kwiaty z ogrodu*/
.appearance-item.group-2625,/*Barrettes en fleurs du jardin/Garden Flowers Barrettes/Spinki Kwiaty z ogrodu*/
/*second hand*/
.appearance-item.group-2630,/*Bottes usées/Worn Boots/Zniszczone buty*/
.appearance-item.group-2632,/*Gants usés/Worn Gloves/Zniszczone rękawiczki*/
.appearance-item.group-2925,/*Écharpe usée/Worn Scarf/Zniszczony szalik*/
.appearance-item.group-2634,/*Petite cape abîmée/Small Damaged Cape/Mała podziurawiona peleryna*/
/*spikes everywhere*/
.appearance-item.group-4536,/*Sous-vêtements à piques/Spike Lingerie?/Bielizna z ćwiekami?*/
.appearance-item.group-2973,/*Bottes à piques/Spike Boots/Buty z ćwiekami*/
.appearance-item.group-2637,/*Collier à piques/Spike Necklace/Naszyjnik z ćwiekami*/
.appearance-item.group-2638,/*Gant à piques/Spike Glove/Rękawiczki z ćwiekami*/
/*feathered*/
.appearance-item.group-4463,/*épaulière plumée/Feathered Shoulder Pad/Naramiennik z piórami*/
.appearance-item.group-4473,/*Gant à piques/Feathered Gloves/Rękawiczki z piórami*/
.appearance-item.group-2628,/*Petite ceinture à plumes/Small Feather Belt/Mały pasek z piórami*/
.appearance-item.group-2974,/*Pantalon uni à froufrous/Plain Ruffled Pants/Spodnie uni z falbankami*/
.appearance-item.group-2990,/*Mis chaussettes/Half Sock/Mis Skarpetki*/
.appearance-item.group-2626,/*Épée d'entrainement en bois/Wooden Training Sword/Drewniany miecz do ćwiczeń*/
.appearance-item.group-2631,/*Bague armure/Armored Ring/Pierścionek Pancerz*/
.appearance-item.group-2636,/*Bâton de marche/Walking Stick/Laska do chodzenia*/
.appearance-item.group-2641,/*Bracelet de force/Wristband/Bransoletka siły*/
.appearance-item.group-2986,/*Bracelets multiples gauche/Multiple Bracelets/Bransoletki multiple lewe*/
.appearance-item.group-2640,/*Top ouvert/Open Top/Otwarty Top*/
.appearance-item.group-2945,/*Haut bicolore/Two Color Top/Dwukolorowa bluzka*/
.appearance-item.group-4449,/*Corset ouvert/Open Corset/Otwarty gorset*/
.appearance-item.group-2642,/*Petites épaulières décoratives/Small Decorative Shoulder Pads/Małe dekoracyjne naramienniki*/
.appearance-item.group-2991,/*Collier plastron/Collier plastron/Naszyjnik plastron?*/
.appearance-item.group-4742,/*Gants Lorica/Gloves Lorica?/Rękawiczki Lorica*/
.appearance-item.group-2639,/*Bandeau gipsy/Roma Headband/Opaska Gipsy*/
.appearance-item.group-2956,/*Chapeau Robin/Rob<NAME>/<NAME>*/
.appearance-item.group-2623,/*Lunettes carrées/Rectangle Glasses/Prostokątne okulary*/
.appearance-item.group-2971,/*Vision masquée/Masked Vision/Zasłonięte oczy*/
.appearance-item.group-4498,/*Monocle étrange/Strange Monocle/Dziwny monokl*/
.appearance-item.group-2627,/*Petite ceinture de voyage/Small Travel Belt/Mały pasek podróżny*/
/*feel free to add more!*/
.appearance-item.group-,/**/
[data-rarity="legendary"].disabled, [data-rarity="common"].disabled/*clothes from other guards*/
.appearance-item.group-{ display:none;}
/*codes to use if you want to customize style more
to hide items by name(you can hide something on one version, but not the others without splitting style into sections)
[data-name="item name"]
{display:none;}
to hide whole sets
[data-name*="part of set name, like <NAME>"]
{display:none;}
to make only some colors hidden
#appearance-item-id
{display:none;}
to make only some colors visible
#appearance-item-numer
{display:block;}
*/
} | data/usercss/141462.user.css | @-moz-document url-prefix("http://www.eldarya.pl"), url-prefix("http://www.eldarya.fr"), url-prefix("http://www.eldarya.com.br"), url-prefix("http://www.eldarya.com"), url-prefix("http://www.eldarya.de"), url-prefix("http://www.eldarya.es"), url-prefix("http://www.eldarya.fi"), url-prefix("http://www.eldarya.hu"), url-prefix("http://www.eldarya.it"), url-prefix("http://www.eldarya.ru"), regexp("http://(fa1|fa2|www)\\.eldarya\\.(dk|nl|ro|se|uk)\\/.*") {
/*
By default this style will hide most unwanted exploration clothes(mostly common ones) in your wardrobe. They will become invisible there.
Delete from style grups of items you want to see by deleting whole line. Every line starts with .appearance-item.group-id, followed by item names in french, english and polish(as i play those versions and can check them). ? means i didn't see those and am not sure about name in that language.
You can make only some colors visible using their id or hide only some, block items with their name only or use part of set name to do so.
For detailed instructions on customizing this style to make your wardrobe have only items you want there go to tumblr post(links will be in description), where i wrote all you need to know.
*/
/*eyes*/
.appearance-item.group-2418,/*<NAME>/<NAME>/<NAME>*/
/*hairstyles*/
.appearance-item.group-910,/*Victoria*/
.appearance-item.group-940,/*Lucia*/
.appearance-item.group-970,/*Naboo*/
.appearance-item.group-1032,/*Effie*/
.appearance-item.group-1152,/*Curtis*/
.appearance-item.group-1693,/*Lara*/
.appearance-item.group-1987,/*Lawrence*/
.appearance-item.group-2044,/*Jackson*/
.appearance-item.group-3357,/*Xianghua*/
.appearance-item.group-3362,/*Makoto*/
.appearance-item.group-3367,/*Hinoto*/
/*patchwork*/
.appearance-item.group-2633,/*Pantalon en patchwork/Patchwork Pants/Spodnie Patchwork*/
.appearance-item.group-2619,/*Sous-vêtements patchwork/Patchwork Lingerie/Bielizna Patchwork*/
.appearance-item.group-2935,/*Bracelets en patchwork/Patchwork Bracelets/Bransoletki Patchwork*/
/*garden flowers*/
.appearance-item.group-2629,/*Bracelet de pied en fleurs du jardin/Garden Flowers Ankle Bracelet/Bransoletka na nogę Kwiaty z ogrodu*/
.appearance-item.group-2972,/*Jarretière en fleurs du jardin/?/Podwiązka Kwiaty z ogrodu*/
.appearance-item.group-2624,/*Bracelet droit en fleurs du jardin/Garden Flowers Bracelet - Left Hand/Bransoletka prawa Kwiaty z ogrodu*/
.appearance-item.group-2635,/*Bracelet gauche en fleurs du jardin/Garden Flowers Bracelet - Right Hand/Bransoletka lewa Kwiaty z ogrodu*/
.appearance-item.group-2625,/*Barrettes en fleurs du jardin/Garden Flowers Barrettes/Spinki Kwiaty z ogrodu*/
/*second hand*/
.appearance-item.group-2630,/*Bottes usées/Worn Boots/Zniszczone buty*/
.appearance-item.group-2632,/*Gants usés/Worn Gloves/Zniszczone rękawiczki*/
.appearance-item.group-2925,/*Écharpe usée/Worn Scarf/Zniszczony szalik*/
.appearance-item.group-2634,/*Petite cape abîmée/Small Damaged Cape/Mała podziurawiona peleryna*/
/*spikes everywhere*/
.appearance-item.group-4536,/*Sous-vêtements à piques/Spike Lingerie?/Bielizna z ćwiekami?*/
.appearance-item.group-2973,/*Bottes à piques/Spike Boots/Buty z ćwiekami*/
.appearance-item.group-2637,/*Collier à piques/Spike Necklace/Naszyjnik z ćwiekami*/
.appearance-item.group-2638,/*Gant à piques/Spike Glove/Rękawiczki z ćwiekami*/
/*feathered*/
.appearance-item.group-4463,/*épaulière plumée/Feathered Shoulder Pad/Naramiennik z piórami*/
.appearance-item.group-4473,/*Gant à piques/Feathered Gloves/Rękawiczki z piórami*/
.appearance-item.group-2628,/*Petite ceinture à plumes/Small Feather Belt/Mały pasek z piórami*/
.appearance-item.group-2974,/*Pantalon uni à froufrous/Plain Ruffled Pants/Spodnie uni z falbankami*/
.appearance-item.group-2990,/*Mis chaussettes/Half Sock/Mis Skarpetki*/
.appearance-item.group-2626,/*Épée d'entrainement en bois/Wooden Training Sword/Drewniany miecz do ćwiczeń*/
.appearance-item.group-2631,/*Bague armure/Armored Ring/Pierścionek Pancerz*/
.appearance-item.group-2636,/*Bâton de marche/Walking Stick/Laska do chodzenia*/
.appearance-item.group-2641,/*Bracelet de force/Wristband/Bransoletka siły*/
.appearance-item.group-2986,/*Bracelets multiples gauche/Multiple Bracelets/Bransoletki multiple lewe*/
.appearance-item.group-2640,/*Top ouvert/Open Top/Otwarty Top*/
.appearance-item.group-2945,/*Haut bicolore/Two Color Top/Dwukolorowa bluzka*/
.appearance-item.group-4449,/*Corset ouvert/Open Corset/Otwarty gorset*/
.appearance-item.group-2642,/*Petites épaulières décoratives/Small Decorative Shoulder Pads/Małe dekoracyjne naramienniki*/
.appearance-item.group-2991,/*Collier plastron/Collier plastron/Naszyjnik plastron?*/
.appearance-item.group-4742,/*Gants Lorica/Gloves Lorica?/Rękawiczki Lorica*/
.appearance-item.group-2639,/*Bandeau gipsy/Roma Headband/Opaska Gipsy*/
.appearance-item.group-2956,/*Chapeau Robin/Rob<NAME>/<NAME>*/
.appearance-item.group-2623,/*Lunettes carrées/Rectangle Glasses/Prostokątne okulary*/
.appearance-item.group-2971,/*Vision masquée/Masked Vision/Zasłonięte oczy*/
.appearance-item.group-4498,/*Monocle étrange/Strange Monocle/Dziwny monokl*/
.appearance-item.group-2627,/*Petite ceinture de voyage/Small Travel Belt/Mały pasek podróżny*/
/*feel free to add more!*/
.appearance-item.group-,/**/
[data-rarity="legendary"].disabled, [data-rarity="common"].disabled/*clothes from other guards*/
.appearance-item.group-{ display:none;}
/*codes to use if you want to customize style more
to hide items by name(you can hide something on one version, but not the others without splitting style into sections)
[data-name="item name"]
{display:none;}
to hide whole sets
[data-name*="part of set name, like <NAME>"]
{display:none;}
to make only some colors hidden
#appearance-item-id
{display:none;}
to make only some colors visible
#appearance-item-numer
{display:block;}
*/
} | 0.143158 | 0.133981 |
/* Material theme */
@import "~@angular/material/prebuilt-themes/deeppurple-amber.css";
/* Material fonts */
/*
This is not working, even if it works for the FDB.
Some solution might be : https://github.com/angular/angular-cli/issues/2662
Currently manually placing the content of the failed imports
*/
/* @import '~https://fonts.googleapis.com/icon?family=Material+Icons';
@import '~https://fonts.googleapis.com/icon?family=Roboto'; */
/* https://fonts.googleapis.com/icon?family=Material+Icons */
/* fallback */
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url(https://fonts.gstatic.com/s/materialicons/v36/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format('woff2');
}
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}
/* https://fonts.googleapis.com/icon?family=Roboto */
/* cyrillic-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu72xKKTU1Kvnz.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu5mxKKTU1Kvnz.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7mxKKTU1Kvnz.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4WxKKTU1Kvnz.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7WxKKTU1Kvnz.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7GxKKTU1Kvnz.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;
}
/* latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.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;
}
.padding{
padding: 2px;
}
.demo_sub_block{
border: 1px solid black;
padding: 3px;
}
.demo_block{
/*border: 2px solid red;*/
padding: 5px;
}
.badge {
display: inline-block;
font-size: small;
color: white;
padding: 0.8em 0.7em 0 0.7em;
background-color: #607D8B;
line-height: 1em;
position: relative;
left: -1px;
top: -4px;
height: 1.8em;
min-width: 16px;
text-align: right;
margin-right: .8em;
border-radius: 4px 0 0 4px;
}
.bordered_light{
padding: 2px;
border: 1px solid gray;
} | src/frontend/demos/rima/rima-colaboware/src/styles.css |
/* Material theme */
@import "~@angular/material/prebuilt-themes/deeppurple-amber.css";
/* Material fonts */
/*
This is not working, even if it works for the FDB.
Some solution might be : https://github.com/angular/angular-cli/issues/2662
Currently manually placing the content of the failed imports
*/
/* @import '~https://fonts.googleapis.com/icon?family=Material+Icons';
@import '~https://fonts.googleapis.com/icon?family=Roboto'; */
/* https://fonts.googleapis.com/icon?family=Material+Icons */
/* fallback */
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url(https://fonts.gstatic.com/s/materialicons/v36/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format('woff2');
}
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-smoothing: antialiased;
}
/* https://fonts.googleapis.com/icon?family=Roboto */
/* cyrillic-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu72xKKTU1Kvnz.woff2) format('woff2');
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu5mxKKTU1Kvnz.woff2) format('woff2');
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7mxKKTU1Kvnz.woff2) format('woff2');
unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4WxKKTU1Kvnz.woff2) format('woff2');
unicode-range: U+0370-03FF;
}
/* vietnamese */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7WxKKTU1Kvnz.woff2) format('woff2');
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7GxKKTU1Kvnz.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;
}
/* latin */
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxKKTU1Kg.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;
}
.padding{
padding: 2px;
}
.demo_sub_block{
border: 1px solid black;
padding: 3px;
}
.demo_block{
/*border: 2px solid red;*/
padding: 5px;
}
.badge {
display: inline-block;
font-size: small;
color: white;
padding: 0.8em 0.7em 0 0.7em;
background-color: #607D8B;
line-height: 1em;
position: relative;
left: -1px;
top: -4px;
height: 1.8em;
min-width: 16px;
text-align: right;
margin-right: .8em;
border-radius: 4px 0 0 4px;
}
.bordered_light{
padding: 2px;
border: 1px solid gray;
} | 0.434461 | 0.051296 |
MIXINS
*********************/
/*********************
GENERAL STYLES
*********************/
/* line 72, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* line 78, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
html {
margin-top: 0 !important;
}
/* line 83, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
body {
font-family: "Avenir LT W01_45 Book1475508", Arial, sans-serif;
font-size: 100%;
line-height: 1.5;
color: #171717;
background-color: #999;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin-top: -32px !important;
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/bg1.jpg") no-repeat !important;
background-position: center top !important;
background-size: cover !important;
background-attachment: fixed !important;
}
/********************
WORDPRESS BODY CLASSES
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
/* line 143, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
section {
width: 100%;
display: block;
margin: 0 auto;
box-sizing: border-box;
}
/* line 151, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.gridWrap {
width: 100%;
max-width: 930px;
position: relative;
display: block;
margin: 0 auto;
background: white;
box-sizing: border-box;
}
@media screen and (max-width: 930px) {
/* line 151, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.gridWrap {
width: 100%;
max-width: 100%;
}
}
/* line 165, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.gridWrap .featureImageWrap {
height: 450px;
background-size: cover;
background-position: bottom center;
position: relative;
overflow: hidden;
}
/* line 172, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.gridWrap .featureImageWrap h1 {
color: white;
font-weight: 600;
text-transform: uppercase;
vertical-align: bottom;
bottom: -3px;
font-size: 70px;
line-height: 50px;
position: absolute;
margin-left: 30px;
letter-spacing: -3.5px !important;
text-shadow: 1px 1px 0px #aaa;
}
@media screen and (max-width: 560px) {
/* line 172, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.gridWrap .featureImageWrap h1 {
font-size: 3em;
line-height: .7em;
}
}
/* line 192, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.gridWrap .featureImageWrap h1 br.respBr {
display: none !important;
}
/* line 200, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop {
width: 100%;
height: 140px;
position: relative;
display: inline-block;
padding-top: 0px;
}
@media screen and (max-width: 930px) {
/* line 200, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop {
height: 180px;
padding-top: 45px;
}
}
@media screen and (max-width: 768px) {
/* line 200, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop {
padding-top: 45px;
}
}
@media screen and (max-width: 560px) {
/* line 200, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop {
height: 250px;
}
}
/* line 221, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .gridWrap {
background: none;
padding: 15px 0 0 0;
text-align: center;
}
/* line 227, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap {
float: left;
width: 400px;
vertical-align: top;
}
/* line 232, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap svg {
width: 370px;
}
@media screen and (max-width: 768px) {
/* line 232, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap svg {
width: 315px;
}
}
@media screen and (max-width: 930px) {
/* line 227, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap {
width: 55%;
margin: 0 auto;
overflow: hidden;
}
}
@media screen and (max-width: 768px) {
/* line 227, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap {
width: 66%;
margin: 0 auto;
overflow: hidden;
}
}
@media screen and (max-width: 560px) {
/* line 227, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap {
width: 100%;
margin: 0 auto;
}
}
/* line 257, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap h1 {
display: inline-block;
width: 250px;
vertical-align: top;
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif;
text-transform: uppercase;
line-height: .85em;
font-size: 2.9em;
letter-spacing: -4px;
text-align: right;
}
@media screen and (max-width: 768px) {
/* line 257, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap h1 {
font-size: 2.3em;
width: auto;
}
}
/* line 273, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap h1 .headerEvent {
letter-spacing: 0px;
}
/* line 278, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap h1 .headerAcademy {
letter-spacing: -4px;
}
/* line 283, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap .logo {
display: inline-block;
width: 115px;
height: 115px;
border-radius: 75px;
background: #171717;
margin-left: 15px;
}
@media screen and (max-width: 768px) {
/* line 283, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap .logo {
width: 90px;
height: 90px;
margin-top: 0px;
}
}
/* line 298, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap h3 {
font-size: .9em;
float: right;
margin-top: -5px;
margin-right: 25px;
}
@media screen and (max-width: 930px) {
/* line 298, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap h3 {
display: none;
}
}
/* line 313, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails {
width: 290px;
position: relative;
display: inline-block;
float: left;
}
@media screen and (max-width: 768px) {
/* line 313, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails {
width: 33%;
float: right;
}
}
@media screen and (max-width: 560px) {
/* line 313, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails {
width: 100%;
margin: 0 auto;
float: none;
}
}
/* line 330, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails a {
text-decoration: none;
}
@media screen and (max-width: 560px) {
/* line 334, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails .brResp {
display: none;
}
}
/* line 341, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails h3 {
width: 90%;
margin: 0 auto;
text-align: center;
line-height: 1em;
font-size: 1em;
font-family: "Avenir LT W01_35 Light1475496", sans-serif;
padding-bottom: 12px;
padding-top: 15px;
text-transform: uppercase;
color: black !important;
}
@media screen and (max-width: 768px) {
/* line 341, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails h3 {
font-size: .8em;
line-height: 1.1em;
padding-top: 10px;
}
}
/* line 360, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails .topline {
border-top: 1px solid #171717;
}
/* line 364, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails .bolder {
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif;
font-size: 1.1em;
}
/* line 369, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails .highlight {
font-family: "Avenir LT W01_65 Medium1475532", sans-serif;
}
/* line 373, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails h5 {
font-weight: 900;
font-size: 1.2em;
line-height: .9em;
padding-bottom: 15px;
text-align: center;
letter-spacing: 0px;
margin-top: 10px;
color: black !important;
}
@media screen and (max-width: 930px) {
/* line 373, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails h5 {
padding-bottom: 10px;
}
}
@media screen and (max-width: 768px) {
/* line 373, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails h5 {
font-size: 1em;
line-height: .9em;
}
}
/* line 395, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .quickNav {
float: right;
position: relative;
display: inline-block;
width: 220px;
}
@media screen and (max-width: 930px) {
/* line 395, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .quickNav {
display: none !important;
}
}
@media screen and (max-width: 930px) {
/* line 406, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .quickNav ul {
text-align: center;
float: none;
margin: 0 auto;
}
}
/* line 414, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .quickNav ul li {
box-sizing: border-box;
display: inline-block;
float: right;
width: 48%;
height: 55px;
border: 1px solid #171717;
margin: 2px 2px;
padding: 10px 15px;
text-align: center;
text-transform: uppercase;
line-height: 1em;
font-size: .7em;
padding-top: 17px;
vertical-align: top;
color: black !important;
}
@media screen and (max-width: 930px) {
/* line 414, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .quickNav ul li {
width: 23%;
text-align: center;
float: none;
margin: 0 auto;
max-width: 185px;
}
}
@media screen and (max-width: 560px) {
/* line 414, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .quickNav ul li {
font-size: .5em;
padding-top: 10px;
}
}
/*********************
LINK STYLES
*********************/
/* line 457, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
a, a:visited {
color: #171717;
/* on hover */
/* on click */
/* mobile tap color */
}
/* line 461, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
a:hover, a:focus, a:visited:hover, a:visited:focus {
color: #171717;
}
/* line 471, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
a:link, a:visited:link {
/*
this highlights links on iPhones/iPads.
so it basically works like the :hover selector
for mobile devices.
*/
-webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
/* line 481, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
a.showlogin {
color: teal !important;
}
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 489, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
text-rendering: optimizelegibility;
font-weight: 500;
color: black;
/*
if you're going to use webfonts, be sure to check your weights
http://css-tricks.com/watch-your-font-weight/
*/
/* removing text decoration from all headline links */
}
/* line 499, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
text-decoration: none;
}
/* line 504, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h1, .h1 {
font-size: 2.5em;
line-height: 1.333em;
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif;
}
/* line 510, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h2, .h2 {
font-size: 1.75em;
line-height: 1.4em;
margin-bottom: 0.375em;
}
/* line 516, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h3, .h3 {
font-size: 1.125em;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif;
}
/* line 521, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h4, .h4 {
font-size: 1.1em;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif;
}
/* line 526, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h5, .h5 {
font-size: 0.846em;
line-height: 2.09em;
text-transform: uppercase;
letter-spacing: 2px;
}
/*********************
LANGUAGE SELECT STYLES
*********************/
/* line 542, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langs {
position: absolute;
top: 1px;
left: 5px;
}
@media screen and (max-width: 930px) {
/* line 542, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langs {
display: none;
}
}
/* line 555, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langs ul li a {
font-family: "Avenir LT W01_35 Light1475496", sans-serif !important;
font-size: .7em !important;
text-transform: uppercase;
transition: all .5s !important;
}
/* line 562, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langs ul li a:hover {
transition: all .3s !important;
}
/* line 571, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langsMobile {
display: none !important;
}
@media screen and (max-width: 930px) {
/* line 571, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langsMobile {
display: block;
color: white !important;
}
}
/* line 583, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langsMobile ul li a {
font-family: "Avenir LT W01_35 Light1475496", sans-serif !important;
font-size: .7em !important;
text-transform: uppercase;
transition: all .5s !important;
}
/* line 590, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langsMobile ul li a:hover {
transition: all .3s !important;
}
/* line 604, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wooWrap a .price {
margin-right: 15px !important;
}
/* line 611, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wooWrap nav {
text-align: right !important;
padding: 10px 10px 5px !important;
display: inline-block !important;
}
@media screen and (max-width: 930px) {
/* line 611, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wooWrap nav {
width: 15% !important;
min-width: 105px !important;
z-index: 5000 !important;
}
}
/* line 622, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wooWrap nav a {
font-family: "Avenir LT W01_35 Light1475496", sans-serif !important;
font-size: .7em !important;
text-transform: uppercase;
}
/* line 631, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
a.lang_sel_sel {
text-decoration: underline !important;
color: #ccc !important;
background: #333 !important;
}
/*********************
NAVIGATION STYLES
*********************/
/* line 643, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.nav .gridWrap {
background: black;
padding: 0 0 0 0;
}
/* line 650, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav {
width: 100%;
background: black;
padding: 0 0 0 0;
text-align: center;
}
@media screen and (max-width: 930px) {
/* line 650, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav {
position: fixed;
top: 0;
left: 0;
z-index: 1000;
}
}
@media screen and (max-width: 930px) {
/* line 663, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .respBr {
display: none;
}
}
/* line 669, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .mobileSpace {
display: none;
}
@media screen and (max-width: 930px) {
/* line 669, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .mobileSpace {
display: inline-block;
content: ' ';
position: relative;
font-size: .2em;
}
}
/* line 681, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .menuAdd {
display: none;
color: white;
font-weight: 900;
text-transform: uppercase;
padding: 10px 0;
cursor: pointer;
}
@media screen and (max-width: 930px) {
/* line 681, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .menuAdd {
display: inline-block;
float: left;
padding-left: 43%;
}
}
@media screen and (max-width: 485px) {
/* line 681, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .menuAdd {
padding-left: 31%;
}
}
/* line 702, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul {
position: relative;
width: 100%;
display: block;
margin: 0 auto;
}
@media screen and (max-width: 930px) {
/* line 702, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul {
height: 0;
overflow: hidden;
transition: all .6s;
}
}
/* line 714, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul li {
width: auto;
display: inline-block;
margin: 0;
text-transform: uppercase;
text-align: center;
line-height: .8em;
font-weight: 100;
}
@media screen and (max-width: 930px) {
/* line 714, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul li {
width: 100%;
margin: 0 auto;
text-align: center;
padding: 10px 15px;
}
}
/* line 732, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul li a {
width: auto;
min-width: 110px;
display: inline-block;
position: relative;
color: white !important;
text-decoration: none;
font-size: .75em !important;
line-height: 1em !important;
font-weight: 500 !important;
text-align: center;
padding: 10px 15px 7px;
}
@media screen and (max-width: 930px) {
/* line 732, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul li a {
width: 100%;
font-size: 18px;
}
}
/* line 751, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul li a:hover {
background: #333 !important;
color: #ccc !important;
transition: all 1s;
}
/* line 759, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .makeBlock {
height: 420px;
transition: all 1s;
}
/* line 764, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile {
display: none !important;
}
@media screen and (max-width: 930px) {
/* line 764, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile {
display: block !important;
color: white !important;
width: 30% !important;
min-width: 200px;
height: 30px !important;
z-index: 9000 !important;
overflow: hidden !important;
position: absolute !important;
right: 5px;
top: 16px;
}
}
/* line 781, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile #lang_sel_list {
color: white !important;
height: 30px !important;
margin: 0 !important;
position: relative !important;
}
/* line 787, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile #lang_sel_list ul {
color: white !important;
height: 30px !important;
}
/* line 791, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile #lang_sel_list ul li {
color: white !important;
height: 30px !important;
width: 30% !important;
}
/* line 798, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile #lang_sel_list ul li a.lang_sel_sel, nav .langsMobile #lang_sel_list ul li a.lang_sel_other {
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
font-size: .7em !important;
text-transform: uppercase;
transition: all .5s !important;
color: white !important;
line-height: 1em !important;
width: 100% !important;
padding: 2px 5px !important;
}
/* line 809, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile #lang_sel_list ul li a.lang_sel_sel:hover, nav .langsMobile #lang_sel_list ul li a.lang_sel_other:hover {
color: white !important;
background: black !important;
transition: all .3s !important;
}
/*********************
ECOMM STYLES
*********************/
/* line 831, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content {
width: 100% !important;
max-width: 930px !important;
margin: 0 auto !important;
background: white !important;
padding: 25px 30px;
}
/* line 840, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content .summary h1 {
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif !important;
font-size: 1.3em !important;
line-height: 1em !important;
text-transform: uppercase !important;
margin-bottom: 15px !important;
width: 100% !important;
max-width: 450px !important;
}
/* line 850, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content .summary p {
width: 100% !important;
max-width: 600px !important;
line-height: 1.4em !important;
margin-bottom: .8em !important;
}
/* line 856, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content .summary p a {
color: teal !important;
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif;
}
/* line 865, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content p.stock {
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif !important;
margin-top: 30px !important;
text-transform: uppercase !important;
}
/* line 871, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content ul.woocommerce-error, #content .woocommerce-mesasge, #content .woocommerce-info, #content .woocommerce_error, #content .woocommerce_mesasge, #content .woocommerce_info {
display: block !important;
margin: 15px 0 !important;
background: white !important;
border: 1px solid #ccc !important;
padding: 10px !important;
}
/* line 878, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content ul.woocommerce-error li, #content .woocommerce-mesasge li, #content .woocommerce-info li, #content .woocommerce_error li, #content .woocommerce_mesasge li, #content .woocommerce_info li {
list-style: none !important;
line-height: .9em !important;
}
/* line 882, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content ul.woocommerce-error li a, #content .woocommerce-mesasge li a, #content .woocommerce-info li a, #content .woocommerce_error li a, #content .woocommerce_mesasge li a, #content .woocommerce_info li a {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
padding: 5px 15px !important;
border-radius: 3px !important;
margin-left: 15px !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
font-size: .7em !important;
display: inline !important;
float: right !important;
margin-bottom: 15px !important;
}
/* line 899, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content ul.woocommerce-error li a:hover, #content .woocommerce-mesasge li a:hover, #content .woocommerce-info li a:hover, #content .woocommerce_error li a:hover, #content .woocommerce_mesasge li a:hover, #content .woocommerce_info li a:hover {
color: black !important;
background: white !important;
transition: all .5s !important;
}
/* line 908, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content .product_meta {
margin: 30px 0 !important;
text-transform: uppercase !important;
}
/* line 912, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content .product_meta .posted_in {
text-transform: uppercase !important;
}
/* line 915, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content .product_meta .posted_in a {
color: black !important;
font-size: .9em;
text-transform: uppercase !important;
}
/* line 927, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce-message {
display: block !important;
margin: 15px 0 !important;
background: white !important;
border: 1px solid #ccc !important;
padding: 10px !important;
color: black !important;
}
/* line 935, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce-message a {
color: red !important;
}
/* line 941, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce-message a.wc-forward {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
padding: 5px 15px !important;
border-radius: 3px !important;
margin-left: 15px !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
font-size: .7em !important;
display: inline !important;
float: right !important;
margin-bottom: 15px !important;
}
/* line 962, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.cart button.single_add_to_cart_button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
}
/* line 974, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.cart button.single_add_to_cart_button:hover {
color: black !important;
background: white !important;
transition: all .5s !important;
border: 1px solid black !important;
}
/* line 982, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce p {
color: black !important;
}
/* line 986, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.payments_methods li {
background: white !important;
}
/* line 992, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce a.button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
padding: 10px 20px !important;
width: auto !important;
margin-top: 30px !important;
margin-bottom: 30px !important;
display: inline-block !important;
}
/* line 1009, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce a.button:hover {
color: black !important;
background: white !important;
transition: all .5s !important;
border: 1px solid black !important;
}
/* line 1021, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .woocommerce-checkout-payment .form-row input.button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
}
/* line 1032, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .woocommerce-checkout-payment .form-row input.button:hover {
color: black !important;
background: white !important;
transition: all .5s !important;
border: 1px solid black !important;
}
/* line 1041, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .woocommerce-billing-fields p, .woocommerce .woocommerce-shipping-fields p {
color: black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
margin-bottom: 15px !important;
display: block !important;
}
/* line 1047, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .woocommerce-billing-fields p input.input-text, .woocommerce .woocommerce-shipping-fields p input.input-text {
margin-left: 15px;
}
/* line 1055, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce p.return-to-shop a.button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
padding: 10px 20px !important;
width: auto !important;
}
/* line 1069, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce p.return-to-shop a.button:hover {
color: black !important;
background: white !important;
transition: all .5s !important;
border: 1px solid black !important;
}
/* line 1078, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce table {
background: white !important;
}
/* line 1082, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce table thead th {
background: white !important;
color: #171717 !important;
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif !important;
text-transform: uppercase !important;
font-size: 1em !important;
border: none !important;
}
/* line 1091, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce table tbody tr td {
background: white !important;
color: #171717 !important;
font-family: "Avenir LT W01_35 Light1475496", sans-serif !important;
text-transform: uppercase !important;
font-size: .9em !important;
line-height: 1em !important;
}
/* line 1100, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce table tbody tr {
margin: 5px 0 !important;
}
/* line 1105, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce td.product-name a, .woocommerce td.product-remove a {
color: black !important;
}
/* line 1111, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce td.product-remove a.remove {
color: red !important;
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif !important;
font-size: 2em !important;
}
/* line 1122, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce td.product-thumbnail a img {
width: 120px !important;
height: 80px !important;
}
/* line 1130, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce table tbody tr td input.button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
padding: 5px 15px !important;
}
/* line 1143, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce td.product-name, .woocommerce td.product-remove, .woocommerce td.product-price, .woocommerce td.product-subtotal {
padding: 5px 15px !important;
}
/* line 1148, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .cart_totals h2 {
text-transform: uppercase;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif;
font-size: .9em;
}
/* line 1154, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .cart_totals table tbody tr th {
background: white !important;
color: black !important;
}
/* line 1159, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .cart_totals .wc-proceed-to-checkout {
margin-top: 30px;
}
/* line 1162, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
padding: 10px 25px !important;
width: auto !important;
}
/* line 1176, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
color: black !important;
background: white !important;
transition: all .5s !important;
border: 1px solid black !important;
}
/* line 1187, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
p.cart-empty {
color: black !important;
margin-bottom: 30px !important;
}
/* line 1192, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul li {
color: black !important;
}
/* line 1196, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.order-details li, ul.order-details li .amount, ul.order-details li .order, ul.order-details li .date {
color: black !important;
}
/* line 1200, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
table.shop_table_order_details tfoot tr th, table.shop_table_order_details tfoot tr td {
color: black;
}
/* line 1205, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.products li {
display: inline-block !important;
width: 45% !important;
list-style: none !important;
border: 1px solid #ccc !important;
margin: 15px;
padding: 25px 30px !important;
}
@media screen and (max-width: 768px) {
/* line 1205, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.products li {
width: 90% !important;
margin: 15px 0 !important;
}
}
/* line 1220, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.products li a.add_to_cart_button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
padding: 5px 15px !important;
}
/* line 1236, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.products li a img.attachment-shop_catalog {
width: 300px !important;
height: 200px !important;
}
/* line 1243, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.products li a .product-details h3 {
color: black !important;
text-transform: uppercase !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
line-height: .9em !important;
margin-bottom: .4em !important;
}
/* line 1252, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.products li a .product-details .price .amount {
color: black !important;
text-transform: uppercase;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
}
/*********************
HOMEPAGE STYLES
*********************/
/* line 1272, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap {
background: none !important;
padding-top: 30px;
}
/* line 1276, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul {
display: block;
}
/* line 1279, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeTwoThird {
width: 66.5%;
height: 450px;
}
@media screen and (max-width: 930px) {
/* line 1279, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeTwoThird {
width: 66%;
}
}
@media screen and (max-width: 768px) {
/* line 1279, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeTwoThird {
width: 100%;
}
}
@media screen and (max-width: 520px) {
/* line 1279, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeTwoThird {
height: auto;
}
}
/* line 1296, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeOneThird {
width: 30%;
height: 450px;
}
@media screen and (max-width: 768px) {
/* line 1296, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeOneThird {
width: 100%;
}
}
/* line 1305, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .introHomeMarch15 {
background: none;
text-align: center;
}
/* line 1314, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull {
width: 100%;
padding: 0 !important;
}
/* line 1318, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader {
width: 100%;
height: 60px;
background: black;
box-sizing: border-box;
padding: 16px;
vertical-align: top;
position: relative;
overflow: hidden;
}
@media screen and (max-width: 600px) {
/* line 1318, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader {
height: auto;
}
}
/* line 1332, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader h1 {
font-weight: 400;
text-transform: uppercase;
color: white;
font-size: 1.3em;
vertical-align: top;
line-height: 1em;
}
/* line 1341, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader h1 .bolder {
font-weight: 900;
}
/* line 1346, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader h3 {
color: white;
vertical-align: top;
line-height: 1em;
text-transform: uppercase;
font-size: .7em !important;
}
/* line 1354, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos {
position: absolute;
right: 2em;
top: 10px;
}
/* line 1359, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul {
text-align: center;
padding-top: 5px;
}
/* line 1363, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul a {
text-decoration: none;
border: none;
padding: 0;
margin-top: 0;
}
/* line 1370, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul a:hover {
background: none;
}
/* line 1375, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul li {
display: inline-block;
width: 35px;
height: 30px;
margin-left: .5em;
background: none;
color: white;
}
/* line 1384, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialInsta {
width: 20px;
color: white;
fill: white;
}
/* line 1389, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialInsta svg {
width: 30px;
}
/* line 1394, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialFacebook {
width: 25px;
fill: white;
margin-left: 15px;
}
/* line 1400, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialTwitter {
width: 25px;
fill: white;
padding-top: 4px;
transition: all .5s;
}
/* line 1407, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialTwitter:hover, .homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialInsta:hover, .homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialFacebook:hover {
fill: #aaa;
transition: all 1s;
}
/* line 1417, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .marginRight {
margin-right: 3%;
}
/* line 1422, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImg {
width: 55%;
height: 100%;
float: right;
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/homeSeminar.jpg") no-repeat;
background-size: cover;
background-position: right bottom;
}
@media screen and (max-width: 520px) {
/* line 1422, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImg {
width: 100%;
height: 200px;
}
}
/* line 1436, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImgCleanup {
width: 55%;
height: 100%;
float: right;
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/06/homeCleanup.jpg") no-repeat;
background-size: cover;
background-position: 20% bottom;
}
@media screen and (max-width: 520px) {
/* line 1436, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImgCleanup {
width: 100%;
height: 200px;
background-position: 20% bottom;
}
}
/* line 1451, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImgRunning {
width: 55%;
height: 100%;
float: right;
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/06/homeRunning.jpg") no-repeat;
background-size: cover;
background-position: center bottom;
}
@media screen and (max-width: 520px) {
/* line 1451, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImgRunning {
width: 100%;
height: 200px;
background-position: center center;
}
}
/* line 1466, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImgDayOne {
width: 55%;
height: 100%;
float: right;
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/06/aaThurs-8.jpg") no-repeat;
background-size: cover;
background-position: left bottom;
}
@media screen and (max-width: 520px) {
/* line 1466, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImgDayOne {
width: 100%;
height: 200px;
background-position: center center;
}
}
/* line 1481, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent {
width: 40%;
float: left;
}
@media screen and (max-width: 520px) {
/* line 1481, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent {
width: 100%;
}
}
/* line 1490, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent h1 {
margin-top: 5%;
color: black !important;
}
@media screen and (max-width: 520px) {
/* line 1490, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent h1 {
margin-top: 15px;
}
}
/* line 1499, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent p {
text-align: left;
line-height: 1em;
font-size: 1em;
margin-top: 1em;
}
/* line 1506, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent a {
display: inline-block;
text-decoration: none;
color: white;
background: black;
border: 1px solid #171717;
text-transform: uppercase;
font-size: .9em;
padding: 8px 18px;
margin-bottom: 40px;
margin-top: 30px;
border-radius: 3px;
transition: all .3s;
}
/* line 1522, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent a.inlineLink {
display: inline;
background: none;
padding: 0;
border: none;
color: teal !important;
text-transform: none;
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif;
}
/* line 1532, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent a.inlineLink:hover {
color: black;
}
/* line 1537, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent a:hover {
color: #171717;
background: white;
}
/* line 1545, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .homeImg {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_advalpinism.jpg") no-repeat;
background-size: cover;
width: 100%;
height: 45%;
}
/* line 1552, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .videoImg {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_advalpinism.jpg") no-repeat;
background-size: cover;
width: 100%;
height: 45%;
position: relative;
text-align: center;
}
@media screen and (max-width: 768px) {
/* line 1552, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .videoImg {
height: 300px;
}
}
@media screen and (max-width: 500px) {
/* line 1552, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .videoImg {
height: 55%;
}
}
/* line 1568, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .videoImg a.playButton {
width: 90px;
height: 65px;
border: none;
margin-top: 25%;
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/06/ytPlay.png") no-repeat;
background-size: cover;
}
/* line 1577, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .videoImg a.playButton:hover {
opacity: .85;
transition: all 1s;
}
/* line 1584, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .homeContent {
width: 100%;
}
/* line 1587, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .homeContent h1 {
margin-top: -8px;
color: black !important;
}
/* line 1592, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .homeContent p {
text-align: left;
line-height: 1em;
font-size: 1em;
margin-top: .7em;
}
/* line 1599, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .homeContent a {
display: inline-block;
text-decoration: none;
color: white;
background: black;
border: 1px solid #171717;
text-transform: uppercase;
font-size: .9em;
padding: 8px 18px;
margin-bottom: 40px;
margin-top: 15px;
border-radius: 3px;
transition: all .3s;
}
/* line 1615, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .homeContent a:hover {
color: #171717;
background: white;
}
/* line 1626, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .athleteCTA .homeImg {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_advalpinism.jpg") no-repeat;
background-size: cover;
width: 100%;
height: 45%;
}
/* line 1633, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .athleteCTA .homeContent {
width: 100%;
}
/* line 1639, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .filmCTA .homeImg {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_advalpinism.jpg") no-repeat;
background-size: cover;
width: 100%;
height: 45%;
}
/* line 1646, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .filmCTA .homeContent {
width: 100%;
}
/* line 1652, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .seminarCTA .homeImg {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_advalpinism.jpg") no-repeat;
background-size: cover;
width: 100%;
height: 45%;
}
/* line 1659, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .seminarCTA .homeContent {
width: 100%;
}
/* line 1665, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .trailer {
background: none !important;
}
/* line 1670, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li {
display: inline-block;
vertical-align: top;
background: white;
box-sizing: border-box;
margin-bottom: 30px;
}
/* line 1677, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li .homeImg {
display: inline-block;
}
/* line 1681, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li .homeContent {
display: inline-block;
padding: 20px;
text-align: center;
}
/* line 1687, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li h1 {
font-size: 1.4em;
font-weight: 900;
text-transform: uppercase;
line-height: 1em;
text-align: left;
}
/* line 1695, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li p {
text-align: left;
}
/* line 1699, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li a {
display: inline-block;
text-decoration: none;
padding: 10px 15px;
border-radius: 2px;
border: 1px solid #171717;
margin-top: 20px;
font-weight: 500;
text-align: center;
transition: all .6s;
}
/* line 1711, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li a:hover {
background: #171717;
color: white;
transition: all .8s;
}
/* line 1717, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li iframe {
width: 100%;
height: 480px;
}
/*********************
SOCIAL FEED STYLES
*********************/
/* line 1736, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialIntro {
display: block;
height: 120px;
padding: 15px;
}
/* line 1742, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed h1 {
font-size: 1.7em;
text-transform: uppercase;
}
/* line 1747, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .bolder {
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif;
}
/* line 1751, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed h3 {
font-size: 1em;
text-transform: uppercase;
width: 95%;
max-width: 550px;
line-height: 1.1em;
}
/* line 1759, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos {
position: absolute;
right: 2em;
top: 10px;
}
/* line 1764, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul {
text-align: center;
padding-top: 5px;
}
/* line 1768, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul a {
text-decoration: none;
border: none;
padding: 0;
margin-top: 0;
}
/* line 1775, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul a:hover {
background: none;
}
/* line 1780, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul li {
display: inline-block;
width: 35px;
height: 30px;
margin-left: .5em;
background: none;
color: white;
}
/* line 1789, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul .socialInsta {
width: 20px;
color: white;
fill: #171717;
}
/* line 1794, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul .socialInsta svg {
width: 30px;
}
/* line 1799, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul .socialFacebook {
width: 25px;
fill: #171717;
margin-left: 15px;
}
/* line 1805, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul .socialTwitter {
width: 25px;
fill: #171717;
padding-top: 4px;
transition: all .5s;
}
/* line 1812, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul .socialTwitter:hover, .socialEmbed .socialLogos ul .socialInsta:hover, .socialEmbed .socialLogos ul .socialFacebook:hover {
fill: #aaa;
transition: all 1s;
}
/* line 1819, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed iframe {
width: 100%;
height: 700px;
border: none;
}
/*********************
POSTS & CONTENT STYLES
*********************/
/* line 1832, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content {
margin-top: 1.5em;
}
/* line 1836, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry {
color: black !important;
}
/* line 1840, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry p {
color: black !important;
}
/* line 1844, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
table tbody th {
background: white !important;
}
/* line 1849, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.hentry {
background-color: #FFF;
}
/* line 1859, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.hentry footer p {
margin: 0;
}
/* end .hentry */
/* line 1866, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.single-title,
.page-title,
.entry-title {
margin: 0;
}
/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
/* line 1891, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.byline {
color: #ccc;
font-style: italic;
margin: 0;
}
/* entry content */
/* line 1901, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content {
padding: 1.5em 1.5em 0;
padding-bottom: 90px;
/* Clinic Page Layout */
/* Athlete Page Layout */
/* Seminar Page Layout */
/* Alpine Village Page Layout */
/* Seminar Schedule Page Layout */
/* Event Schedule Page Layout */
/* End Event Schedule Page Layout */
/* Venue Map Embed Code */
}
/* line 1905, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content header {
background: blue !important;
}
/* line 1910, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content h1 {
font-size: 1em;
padding: 0 0 0 1em;
font-weight: 900;
}
/* line 1916, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content h1.page-title {
font-weight: 700;
font-size: 2.5em;
padding: 0 0 0 .4em;
text-transform: uppercase;
color: #171717;
}
/* line 1924, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content h3 {
width: 90%;
max-width: 650px;
margin-left: 15px;
font-size: 1em;
font-weight: 900;
margin-bottom: 1em;
text-transform: uppercase;
line-height: 1em;
color: black !important;
}
@media screen and (max-width: 768px) {
/* line 1924, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content h3 {
width: 95%;
}
}
/* line 1940, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content p {
width: 95%;
max-width: 650px;
margin: 0 0 1.5em;
padding-left: 15px;
font-size: 1em;
}
@media screen and (max-width: 768px) {
/* line 1940, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content p {
width: 95%;
}
}
/* line 1952, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .finePrint {
font-size: .7em;
}
/* line 1956, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content a {
color: teal !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif;
}
/* line 1961, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content a.socialComingSoon {
text-transform: uppercase;
padding: 8px 18px;
background: #171717;
color: white !important;
transition: all .5s;
font-family: "Avenir LT W01_35 Light1475496", sans-serif;
font-size: .9em;
text-decoration: none;
border-radius: 3px;
margin-bottom: 5px !important;
display: inline-block;
border: 1px solid black;
}
/* line 1976, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content a.socialComingSoon:hover {
color: black !important;
background: white;
transition: all .3s;
}
/* line 1982, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content a.contestLink {
display: inline-block;
text-decoration: none;
color: #171717 !important;
border: 1px solid #171717;
text-transform: uppercase;
font-size: .9em;
padding: 8px 18px;
margin-bottom: 40px;
margin-top: 15px;
border-radius: 3px;
transition: all .3s;
}
/* line 1996, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content a.contestLink:hover {
color: white !important;
background: #171717;
}
/* line 2003, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap {
width: 100%;
position: relative;
display: block;
}
/* line 2008, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicBG {
width: 100%;
height: 250px;
margin: 0;
padding: 0;
background-size: cover !important;
}
@media screen and (max-width: 700px) {
/* line 2008, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicBG {
height: 350px;
}
}
@media screen and (max-width: 500px) {
/* line 2008, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicBG {
height: 300px;
}
}
/* line 2024, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicAcclimitization {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_acclimatization.jpg") no-repeat;
}
/* line 2028, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicGlacierPrep {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_glacierprep.jpg") no-repeat;
background-position: right;
}
/* line 2033, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicSuuntoNav {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_suuntonav.jpg") no-repeat;
}
/* line 2037, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicFirstAid {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_firstaid.jpg") no-repeat;
}
/* line 2041, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicBasicMountaineering {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_basicmountaineering.jpg") no-repeat;
}
/* line 2045, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicTechAlpinism {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_advalpinism.jpg") no-repeat;
background-position: center center !important;
}
/* line 2050, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicMultiPitch {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_multipitch.jpg") no-repeat;
}
/* line 2054, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicGlacierTour {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_glaciertour.jpg") no-repeat;
}
/* line 2058, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicMSROvernight {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_msrovernight.jpg") no-repeat;
}
/* line 2062, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicPhotography {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_alpinephotography.jpg") no-repeat;
background-position: right;
}
/* line 2067, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicTradClimbing {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_tradclimbing.jpg") no-repeat;
}
/* line 2071, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicMedicine {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_medicine.jpg") no-repeat;
}
/* line 2075, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicDryTooling {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_drytooling.jpg") no-repeat;
background-position: right bottom;
}
/* line 2080, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicIceClimbing {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_iceclimbing.jpg") no-repeat;
}
/* line 2084, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicRescue {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_rescue.jpg") no-repeat;
}
/* line 2088, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicGrade7 {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_grade7.jpg") no-repeat;
}
/* line 2092, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicIceClimbingWmn {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_iceclimbingwmn.jpg") no-repeat;
background-position: right;
}
/* line 2097, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicGlacierTourWmn {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_glacierwmn.jpg") no-repeat;
}
/* line 2101, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicBigWall {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_bigwall.jpg") no-repeat;
}
/* line 2105, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicSkiAlpinism {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_skialpinism.jpg") no-repeat;
}
/* line 2109, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicBouldering {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_bouldering.jpg") no-repeat;
background-position: right;
}
/* line 2114, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicSplitboarding {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_splitboarding.jpg") no-repeat;
}
/* line 2118, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicDinner {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2014/03/mauntain_dinner1.jpg") no-repeat;
}
/* line 2123, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap h1 {
margin-top: 15px;
text-transform: uppercase;
font-family: 'Avenir LT W01_85 Heavy1475544';
font-weight: 900;
}
/* line 2130, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap p {
margin: 0 auto;
width: 70%;
}
@media screen and (max-width: 700px) {
/* line 2130, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap p {
width: 90%;
text-align: left;
}
}
/* line 2140, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul {
display: block;
vertical-align: top;
}
/* line 2144, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li {
width: 42%;
margin: 30px 2%;
border: 1px solid #ccc;
padding: 15px;
text-align: left;
vertical-align: top;
list-style: none !important;
display: inline-block !important;
}
/* line 2154, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li h5 {
letter-spacing: 0px !important;
padding: 0 0 0 1em !important;
line-height: 1em !important;
}
/* line 2160, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li a {
color: white !important;
padding: 5px 10px;
background: black;
border-radius: 3px;
text-transform: uppercase;
transition: all .6s;
border: 1px solid black !important;
display: inline-block;
margin-top: -5px;
margin-bottom: 15px;
}
/* line 2173, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li a:hover {
color: #171717 !important;
background: white !important;
transition: all .3s !important;
border: 1px solid black !important;
}
@media screen and (max-width: 700px) {
/* line 2144, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li {
width: 90%;
}
}
/* line 2185, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li ul {
list-style: disc !important;
}
/* line 2188, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li ul li {
display: list-item !important;
width: 95% !important;
margin: 0;
padding: 0 0 .2em 0;
border: none;
list-style: disc !important;
font-size: .8em;
margin-left: 0px;
}
/* line 2201, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li h1 {
display: block;
font-size: 1.2em;
line-height: .9em;
}
/* line 2207, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li h3 {
font-size: .9em;
text-transform: uppercase;
color: #666;
display: none;
}
/* line 2214, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li p {
width: 100%;
font-weight: 100;
font-size: .9em;
margin: 10px 0;
}
/* line 2222, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul .fullWidth {
width: 90%;
}
/* line 2224, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul .fullWidth img {
float: right;
width: 45%;
padding-left: 30px;
padding-top: 30px;
}
@media screen and (max-width: 700px) {
/* line 2224, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul .fullWidth img {
width: 100%;
padding-bottom: 30px;
}
}
/* line 2235, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul .fullWidth p {
width: 90% !important;
}
/* line 2247, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap {
width: 100%;
position: relative;
display: block;
}
/* line 2252, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteBG {
width: 100%;
height: 250px;
margin: 0;
padding: 0;
background-size: cover !important;
}
@media screen and (max-width: 700px) {
/* line 2252, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteBG {
height: 350px;
}
}
@media screen and (max-width: 500px) {
/* line 2252, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteBG {
height: 300px;
}
}
/* line 2268, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteInes {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/ines.jpg");
background-size: cover;
background-position: center center;
}
/* line 2274, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteCaprez {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/nina.jpg");
background-size: cover;
background-position: center center;
}
/* line 2280, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteMina {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/mina.jpg");
background-size: cover;
background-position: center center;
}
/* line 2286, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athletePia {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/pia.jpg");
background-size: cover;
background-position: center top;
}
/* line 2292, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteStian {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/stian.jpg");
background-size: cover;
background-position: center center;
}
/* line 2298, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteWeldon {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/vikki.jpg");
background-size: cover;
background-position: center center;
}
/* line 2304, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteKaty {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/katy.jpg");
background-size: cover;
background-position: left center;
}
/* line 2310, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteSlot {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/slot.jpg");
background-size: cover;
background-position: center center;
}
/* line 2316, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteMaciej {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/maciek.jpg");
background-size: cover;
background-position: center center;
}
/* line 2322, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteScherer {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/scherer.jpg");
background-size: cover;
background-position: center center;
}
/* line 2328, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athletePaolo {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/paolo.jpg");
background-size: cover;
background-position: center center;
}
/* line 2334, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteSeb {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/seb.jpg");
background-size: cover;
background-position: center center;
}
/* line 2340, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteFlorian {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/florian.jpg");
background-size: cover;
background-position: center center;
}
/* line 2346, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteSchmitt {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/tanjaschmitt.jpg");
background-size: cover;
background-position: center center;
}
/* line 2352, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteHuey {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/huey.jpg");
background-size: cover;
background-position: center center;
}
/* line 2358, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteHeike {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/heikeschmitt.jpg");
background-size: cover;
background-position: center center;
}
/* line 2364, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteSantoire {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/isabellesantoire.jpg");
background-size: cover;
background-position: center center;
}
/* line 2370, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteTessa {
background-size: cover;
background-position: center center;
}
/* line 2376, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteSiegrest {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/siegrist.jpg");
background-size: cover;
background-position: center center;
}
/* line 2382, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteMcsorley {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/mcsorley.jpg");
background-size: cover;
background-position: center top;
}
/* line 2388, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteGadd {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/gadd.jpg");
background-size: cover;
background-position: center center;
}
/* line 2394, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteJohannes {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/johanneshoffmann.jpg");
background-size: cover;
background-position: center center;
}
/* line 2400, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteHoffman {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/michaelhoffman.jpg");
background-size: cover;
background-position: center center;
}
/* line 2408, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap h1 {
margin-top: 15px;
text-transform: uppercase;
font-family: 'Avenir LT W01_85 Heavy1475544';
font-weight: 900;
}
/* line 2415, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap p {
margin: 0 auto;
width: 70%;
}
@media screen and (max-width: 700px) {
/* line 2415, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap p {
width: 90%;
text-align: left;
}
}
/* line 2425, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul {
display: block;
vertical-align: top;
}
/* line 2429, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li {
width: 42%;
margin: 30px 2%;
border: 1px solid #ccc;
padding: 15px;
text-align: left;
vertical-align: top;
list-style: none !important;
display: inline-block !important;
}
/* line 2439, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li h5 {
letter-spacing: 0px !important;
padding: 0 0 0 1em !important;
line-height: 1em !important;
}
@media screen and (max-width: 700px) {
/* line 2429, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li {
width: 90%;
}
}
/* line 2450, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li ul {
list-style: disc !important;
}
/* line 2453, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li ul li {
display: list-item !important;
width: 95% !important;
margin: 0;
padding: 0 0 .2em 0;
border: none;
list-style: disc !important;
font-size: .8em;
margin-left: 0px;
}
/* line 2466, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li h1 {
display: block;
font-size: 1.2em;
line-height: .9em;
}
/* line 2472, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li h3 {
font-size: .9em;
text-transform: uppercase;
color: #666;
display: none;
}
/* line 2479, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li p {
width: 100%;
font-weight: 100;
font-size: .9em;
margin: 10px 0;
}
/* line 2487, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul .fullWidth {
width: 90%;
}
/* line 2489, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul .fullWidth img {
float: right;
width: 45%;
padding-left: 30px;
padding-top: 30px;
}
@media screen and (max-width: 700px) {
/* line 2489, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul .fullWidth img {
width: 100%;
padding-bottom: 30px;
}
}
/* line 2500, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul .fullWidth p {
width: 90% !important;
}
/* line 2513, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap {
width: 100%;
position: relative;
display: block;
}
/* line 2518, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarBG {
width: 100%;
height: 250px;
margin: 0;
padding: 0;
background-size: cover !important;
}
@media screen and (max-width: 700px) {
/* line 2518, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarBG {
height: 350px;
}
}
@media screen and (max-width: 500px) {
/* line 2518, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarBG {
height: 300px;
}
}
/* line 2534, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarRisk {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2015/05/s-01-1-e1463496529342.jpg");
background-size: cover;
background-position: center center;
}
/* line 2540, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarAccident {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/accident.jpg");
background-size: cover;
background-position: center center;
}
/* line 2546, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarHeadlamp {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2015/05/s-03-e1463496037793.jpg");
background-size: cover;
background-position: center center;
}
/* line 2552, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarAdventureVideo {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/videomaking.jpg");
background-size: cover;
background-position: center center;
}
/* line 2558, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarFuel {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/fuel.jpg");
background-size: cover;
background-position: center center;
}
/* line 2564, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarPlanning {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/planning.jpg");
background-size: cover;
background-position: center center;
}
/* line 2570, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarEvolution {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/evolutionexpedition.jpg");
background-size: cover;
background-position: center center;
}
/* line 2576, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarOpenQA {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/openqa.jpg");
background-size: cover;
background-position: center center;
}
/* line 2582, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarAltitude {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/highaltitude.jpg");
background-size: cover;
background-position: center center;
}
/* line 2588, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarWeather {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/weather.jpg");
background-size: cover;
background-position: center center;
}
/* line 2594, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarLightweight {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2015/05/s-11.jpg");
background-size: cover;
background-position: center center;
}
/* line 2600, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarGore {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/gorecare.jpg");
background-size: cover;
background-position: center center;
}
/* line 2606, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarGPS {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/gps.jpg");
background-size: cover;
background-position: center center;
}
/* line 2612, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarEmergency {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/emergency.jpg");
background-size: cover;
background-position: center center;
}
/* line 2623, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap h1 {
margin-top: 15px;
text-transform: uppercase;
font-family: 'Avenir LT W01_85 Heavy1475544';
font-weight: 900;
}
/* line 2630, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap p {
margin: 0 auto;
width: 70%;
}
@media screen and (max-width: 700px) {
/* line 2630, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap p {
width: 90%;
text-align: left;
}
}
/* line 2640, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul {
display: block;
vertical-align: top;
}
/* line 2644, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li {
width: 42%;
margin: 30px 2%;
border: 1px solid #ccc;
padding: 15px;
text-align: left;
vertical-align: top;
list-style: none !important;
display: inline-block !important;
}
/* line 2654, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li h5 {
letter-spacing: 0px !important;
padding: 0 0 0 1em !important;
line-height: 1em !important;
}
/* line 2660, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li a {
color: white !important;
padding: 5px 10px;
background: black;
border-radius: 3px;
text-transform: uppercase;
transition: all .6s;
border: 1px solid black !important;
display: inline-block;
margin-top: -5px;
margin-bottom: 15px;
text-decoration: none;
}
/* line 2675, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li a:hover {
color: #171717 !important;
background: white !important;
transition: all .3s !important;
border: 1px solid black !important;
}
@media screen and (max-width: 700px) {
/* line 2644, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li {
width: 90%;
}
}
/* line 2687, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li ul {
list-style: disc !important;
}
/* line 2690, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li ul li {
display: list-item !important;
width: 95% !important;
margin: 0;
padding: 0 0 .2em 0;
border: none;
list-style: disc !important;
font-size: .8em;
margin-left: 0px;
}
/* line 2703, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li h1 {
display: block;
font-size: 1.2em;
line-height: .9em;
}
/* line 2709, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li h3 {
font-size: .9em;
text-transform: uppercase;
color: #666;
display: none;
}
/* line 2716, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li p {
width: 100%;
font-weight: 100;
font-size: .9em;
margin: 10px 0;
}
/* line 2724, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul .fullWidth {
width: 90%;
}
/* line 2726, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul .fullWidth img {
float: right;
width: 45%;
padding-left: 30px;
padding-top: 30px;
}
@media screen and (max-width: 700px) {
/* line 2726, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul .fullWidth img {
width: 100%;
padding-bottom: 30px;
}
}
/* line 2737, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul .fullWidth p {
width: 90% !important;
}
/* line 2752, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap {
width: 100%;
position: relative;
display: block;
}
/* line 2757, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageBG {
width: 100%;
height: 250px;
margin: 0;
padding: 0;
background-size: cover !important;
}
@media screen and (max-width: 700px) {
/* line 2757, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageBG {
height: 350px;
}
}
@media screen and (max-width: 500px) {
/* line 2757, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageBG {
height: 300px;
}
}
/* line 2773, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageBouldering {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageBouldering.jpg");
background-size: cover;
background-position: center right;
}
/* line 2779, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageBigwall {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageBigwall.jpg");
background-size: cover;
background-position: center center;
}
/* line 2785, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageRoute {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageRoute.jpg");
background-size: cover;
background-position: center center;
}
/* line 2791, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageRunning {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageRunning.png");
background-size: cover;
background-position: center center;
}
/* line 2797, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageNutrition {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageNutrition.jpg");
background-size: cover;
background-position: center center;
}
/* line 2803, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageShelters {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageShelter.jpg");
background-size: cover;
background-position: center center;
}
/* line 2809, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villagePhoto {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villagePhoto.jpg");
background-size: cover;
background-position: center center;
}
/* line 2815, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageApparel {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageApparel.jpg");
background-size: cover;
background-position: center center;
}
/* line 2821, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap h1 {
margin-top: 15px;
text-transform: uppercase;
font-family: 'Avenir LT W01_85 Heavy1475544';
font-weight: 900;
}
/* line 2828, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap p {
margin: 0 auto;
width: 70%;
}
@media screen and (max-width: 700px) {
/* line 2828, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap p {
width: 90%;
text-align: left;
}
}
/* line 2838, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul {
display: block;
vertical-align: top;
}
/* line 2842, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li {
width: 42%;
margin: 30px 2%;
border: 1px solid #ccc;
padding: 15px;
text-align: left;
vertical-align: top;
list-style: none !important;
display: inline-block !important;
}
/* line 2852, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li h5 {
letter-spacing: 0px !important;
padding: 0 0 0 1em !important;
line-height: 1em !important;
}
/* line 2858, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li a {
color: white !important;
padding: 5px 10px;
background: black;
border-radius: 3px;
text-transform: uppercase;
transition: all .6s;
border: 1px solid black !important;
display: inline-block;
margin-top: -5px;
margin-bottom: 15px;
text-decoration: none;
display: none !important;
}
/* line 2874, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li a:hover {
color: #171717 !important;
background: white !important;
transition: all .3s !important;
border: 1px solid black !important;
}
@media screen and (max-width: 700px) {
/* line 2842, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li {
width: 90%;
}
}
/* line 2886, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li ul {
list-style: disc !important;
}
/* line 2889, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li ul li {
display: list-item !important;
width: 95% !important;
margin: 0;
padding: 0 0 .2em 0;
border: none;
list-style: disc !important;
font-size: .8em;
margin-left: 0px;
}
/* line 2902, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li h1 {
display: block;
font-size: 1.2em;
line-height: .9em;
}
/* line 2908, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li h3 {
font-size: .9em;
text-transform: uppercase;
color: #666;
display: none;
}
/* line 2915, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li p {
width: 100%;
font-weight: 100;
font-size: .9em;
margin: 10px 0;
}
/* line 2923, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul .fullWidth {
width: 90%;
}
/* line 2925, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul .fullWidth img {
float: right;
width: 45%;
padding-left: 30px;
padding-top: 30px;
}
@media screen and (max-width: 700px) {
/* line 2925, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul .fullWidth img {
width: 100%;
padding-bottom: 30px;
}
}
/* line 2936, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul .fullWidth p {
width: 90% !important;
}
/* line 2953, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap h1 {
text-transform: uppercase;
font-size: 2em;
padding: 0 0 30px 15px !important;
}
/* line 2960, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap {
position: relative;
display: block;
padding-left: 15px;
margin-bottom: 60px;
}
/* line 2967, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap h3 {
margin-left: 0px !important;
font-size: 1.5em;
margin-bottom: 0;
margin-top: 1.5em;
}
/* line 2974, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap h4 {
text-transform: uppercase;
margin-bottom: 5px;
display: none !important;
}
/* line 2980, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .topMargin {
margin-top: 30px;
}
/* line 2984, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .eventCategory {
font-weight: 900;
text-transform: uppercase;
}
/* line 2990, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem {
width: 98%;
position: relative;
display: block;
margin-bottom: 0;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 2990, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem {
border-bottom: 1px solid #ccc;
margin-bottom: 15px;
margin-top: 15px;
}
}
/* line 3003, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem .seminarTitle {
position: relative;
display: inline-block;
width: 65%;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 3003, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem .seminarTitle {
width: 100%;
max-width: 100%;
}
}
/* line 3017, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem .seminarTime {
position: relative;
display: inline-block;
width: 18%;
min-width: 170px;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 3017, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem .seminarTime {
width: 100%;
max-width: 100%;
}
}
/* line 3030, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem p {
display: none !important;
height: 1px !important;
}
/* line 3046, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap h1 {
text-transform: uppercase;
font-size: 3em;
padding: 0 0 30px 15px !important;
}
/* line 3053, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap {
position: relative;
display: block;
padding-left: 15px;
margin-bottom: 60px;
}
/* line 3060, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap h3 {
margin-left: 0px !important;
font-size: 1.5em;
margin-bottom: .5em;
margin-top: 1.5em;
}
/* line 3067, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap h4 {
text-transform: uppercase;
margin-bottom: 15px;
}
/* line 3072, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .topMargin {
margin-top: 30px;
}
/* line 3076, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventCategory {
font-weight: 900;
text-transform: uppercase;
}
/* line 3082, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem {
width: 98%;
position: relative;
display: block;
margin-bottom: 0;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 3082, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem {
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
margin-top: 10px;
}
}
/* line 3095, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem .eventTitle {
position: relative;
display: inline-block;
width: 45%;
max-width: 400px;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 3095, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem .eventTitle {
width: 100%;
max-width: 100%;
}
}
/* line 3108, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem .eventLocation {
position: relative;
display: inline-block;
width: 35%;
max-width: 300px;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 3108, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem .eventLocation {
width: 100%;
max-width: 100%;
}
}
/* line 3121, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem .eventTime {
position: relative;
display: inline-block;
width: 18%;
max-width: 170px;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 3121, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem .eventTime {
width: 100%;
max-width: 100%;
}
}
/* line 3134, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem p {
display: none !important;
height: 1px !important;
}
/* line 3151, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .newsContent h1.page-title {
text-align: center !important;
width: 100% !important;
}
/* line 3156, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .newsContent .page-title {
text-align: center !important;
}
/* line 3164, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .mapWrap {
width: 100%;
margin: 0 auto;
display: block;
position: relative;
text-align: center;
padding: 30px 0;
}
/* line 3172, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .mapWrap iframe {
width: 100%;
height: auto;
min-height: 600px;
}
@media screen and (max-width: 450px) {
/* line 3172, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .mapWrap iframe {
min-height: 450px;
}
}
/* line 3198, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content ul {
padding: 0 0 1.5em 3em;
}
/* line 3201, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content ul li {
font-size: .9em;
list-style: square;
}
/* line 3208, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content dl {
padding: 0 0 1.5em 3em;
}
/* line 3211, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content dl dt {
font-size: 1em;
font-weight: 900;
text-transform: uppercase;
}
/* line 3217, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content dl dd {
font-size: .9em;
font-weight: 100;
color: #171717;
width: 90%;
max-width: 650px;
}
/* line 3224, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content dl dd a {
padding: 3px 10px;
border: 1px solid #171717;
border-radius: 3px;
background: #171717;
color: white !important;
text-decoration: none !important;
text-transform: uppercase;
transition: all .3s;
font-size: .9em;
}
/* line 3236, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content dl dd a:hover {
padding: 3px 10px;
border: 1px solid #171717;
border-radius: 3px;
background: white;
color: #171717 !important;
text-decoration: none !important;
text-transform: uppercase;
transition: all .5s;
}
/* line 3255, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content table {
width: 100%;
border: 1px solid #999;
margin-bottom: 1.5em;
}
/* line 3260, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content table caption {
margin: 0 0 7px;
font-size: 0.75em;
color: #ccc;
text-transform: uppercase;
letter-spacing: 1px;
}
/* line 3269, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content tr {
border-bottom: 1px solid #999;
}
/* line 3272, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content tr:nth-child(even) {
background-color: #ccc;
}
/* line 3277, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content td {
padding: 7px;
border-right: 1px solid #999;
}
/* line 3281, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content td:last-child {
border-right: 0;
}
/* line 3286, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content th {
background-color: #ccc;
border-bottom: 1px solid #999;
border-right: 1px solid #999;
}
/* line 3291, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content th:last-child {
border-right: 0;
}
/* line 3296, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content blockquote {
margin: 0 0 1.5em 0.75em;
padding: 0 0 0 0.75em;
border-left: 3px solid teal;
font-style: italic;
color: #ccc;
}
/* line 3311, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content dd {
margin-left: 0;
font-size: 0.9em;
color: #787878;
margin-bottom: 1.5em;
}
/* line 3318, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content img {
margin: 0 0 1.5em 0;
max-width: 100%;
height: auto;
}
/* line 3328, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
max-width: 100%;
height: auto;
}
/* line 3337, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content pre {
background: #000;
color: #ccc;
font-size: 0.9em;
padding: 1.5em;
margin: 0 0 1.5em;
border-radius: 3px;
}
/* end .entry-content */
/* line 3348, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wp-caption {
max-width: 100%;
background: #eee;
padding: 5px;
/* images inside wp-caption */
}
/* line 3354, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wp-caption img {
max-width: 100%;
margin-bottom: 0;
width: 100%;
}
/* line 3360, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wp-caption p.wp-caption-text {
font-size: 0.85em;
margin: 4px 0 7px;
text-align: center;
}
/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/* line 3391, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.tags {
margin: 0;
}
/*********************
SIDEBARS & ASIDES
*********************/
/* line 3408, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.widget ul li {
/* deep nesting */
}
/* line 3425, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.no-widgets {
background-color: #FFF;
padding: 1.5em;
text-align: center;
border: 1px solid #333;
border-radius: 2px;
margin-bottom: 1.5em;
}
/*********************
FOOTER STYLES
*********************/
/* line 3438, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer {
text-transform: uppercase;
color: #ccc;
height: auto;
display: block;
}
/* line 3444, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .gridWrap {
background: black !important;
padding: 15px;
height: auto;
}
/* line 3450, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks {
float: right;
width: 100%;
position: relative;
display: inline-block;
}
/* line 3456, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails {
width: 30%;
height: 100%;
position: relative;
display: inline-block;
float: left;
}
/* line 3463, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails .logoWrap {
padding-top: 10px;
display: inline-block;
}
/* line 3467, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails .logoWrap svg {
width: 90%;
max-width: 250px;
}
/* line 3472, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails .logoWrap h1 {
display: inline-block;
vertical-align: top;
font-weight: 900;
text-transform: uppercase;
line-height: .85em;
font-size: 2em;
letter-spacing: -4px;
text-align: right;
color: white !important;
}
/* line 3483, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails .logoWrap h1 .headerEvent {
letter-spacing: 0px;
}
/* line 3488, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails .logoWrap h1 .headerAcademy {
letter-spacing: -4px;
}
/* line 3493, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails .logoWrap .logo {
display: inline-block;
width: 90px;
padding-left: 5px;
margin-top: -4px;
}
/* line 3501, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails h3 {
font-weight: 400;
color: white;
line-height: 1em;
font-size: .85em;
text-align: left;
margin-top: 0px;
}
/* line 3512, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks ul {
width: 65%;
float: right;
}
/* line 3516, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks ul a {
text-decoration: none;
color: white;
font-weight: 600;
font-size: .7em;
}
/* line 3523, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks ul li {
display: inline-block;
width: 190px;
}
/* line 3530, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap {
padding: 30px 0;
}
/* line 3533, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap h3 {
text-transform: uppercase;
font-weight: 100;
text-align: center;
font-size: .9em;
color: white !important;
}
/* line 3541, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul {
text-align: center;
}
/* line 3544, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul a {
display: inline-block;
width: 130px;
height: 150px;
padding: 35px 15px 0;
margin: .5em .5em;
}
/* line 3553, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul li {
width: 100%;
height: 100%;
list-style: none;
}
/* line 3559, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .arcteryx {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_arc.png") no-repeat;
background-position: center 0px;
background-size: 120px;
}
/* line 3565, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .montblanc {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_montblanc.png") no-repeat;
background-position: center 0px;
background-size: 110px;
}
/* line 3571, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .gore {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_gore.png") no-repeat;
background-position: center -10px;
background-size: 140px;
}
/* line 3577, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .petzl {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_petzl.png") no-repeat;
background-position: center 0px;
background-size: 110px;
}
/* line 3583, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .msr {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_msr.png") no-repeat;
background-position: center 0px;
background-size: 120px;
}
/* line 3589, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .lyo {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/sponsors_lyo.png") no-repeat;
background-position: center 0px;
background-size: 100px;
}
/* line 3595, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .peak {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/sponsors_peak.png") no-repeat;
background-position: center 0px;
background-size: 100px;
}
/* line 3601, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .suunto {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/sponsors_suunto.png") no-repeat;
background-position: center 0px;
background-size: 100px;
}
/* line 3607, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .nomadic {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/sponsors_nomadic.png") no-repeat;
background-position: center 0px;
background-size: 100px;
}
/* line 3613, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .mdo {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/sponsors_mdo.png") no-repeat;
background-position: center 0px;
background-size: 100px;
}
/* line 3620, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .eoca {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/sponsors_eoca.png") no-repeat;
background-position: center 0px;
background-size: 100px;
}
/* line 3626, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .msr {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_msr.png") no-repeat;
background-position: center 0px;
background-size: 120px;
}
/* line 3632, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .msr {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_msr.png") no-repeat;
background-position: center 0px;
background-size: 120px;
}
/* line 3638, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .msr {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_msr.png") no-repeat;
background-position: center 0px;
background-size: 120px;
}
/* line 3646, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer p {
font-weight: 900;
font-size: .8em;
}
/*# sourceMappingURL=../css/style.map */ | library/css/style.css | MIXINS
*********************/
/*********************
GENERAL STYLES
*********************/
/* line 72, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* line 78, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
html {
margin-top: 0 !important;
}
/* line 83, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
body {
font-family: "Avenir LT W01_45 Book1475508", Arial, sans-serif;
font-size: 100%;
line-height: 1.5;
color: #171717;
background-color: #999;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin-top: -32px !important;
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/bg1.jpg") no-repeat !important;
background-position: center top !important;
background-size: cover !important;
background-attachment: fixed !important;
}
/********************
WORDPRESS BODY CLASSES
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
/* line 143, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
section {
width: 100%;
display: block;
margin: 0 auto;
box-sizing: border-box;
}
/* line 151, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.gridWrap {
width: 100%;
max-width: 930px;
position: relative;
display: block;
margin: 0 auto;
background: white;
box-sizing: border-box;
}
@media screen and (max-width: 930px) {
/* line 151, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.gridWrap {
width: 100%;
max-width: 100%;
}
}
/* line 165, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.gridWrap .featureImageWrap {
height: 450px;
background-size: cover;
background-position: bottom center;
position: relative;
overflow: hidden;
}
/* line 172, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.gridWrap .featureImageWrap h1 {
color: white;
font-weight: 600;
text-transform: uppercase;
vertical-align: bottom;
bottom: -3px;
font-size: 70px;
line-height: 50px;
position: absolute;
margin-left: 30px;
letter-spacing: -3.5px !important;
text-shadow: 1px 1px 0px #aaa;
}
@media screen and (max-width: 560px) {
/* line 172, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.gridWrap .featureImageWrap h1 {
font-size: 3em;
line-height: .7em;
}
}
/* line 192, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.gridWrap .featureImageWrap h1 br.respBr {
display: none !important;
}
/* line 200, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop {
width: 100%;
height: 140px;
position: relative;
display: inline-block;
padding-top: 0px;
}
@media screen and (max-width: 930px) {
/* line 200, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop {
height: 180px;
padding-top: 45px;
}
}
@media screen and (max-width: 768px) {
/* line 200, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop {
padding-top: 45px;
}
}
@media screen and (max-width: 560px) {
/* line 200, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop {
height: 250px;
}
}
/* line 221, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .gridWrap {
background: none;
padding: 15px 0 0 0;
text-align: center;
}
/* line 227, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap {
float: left;
width: 400px;
vertical-align: top;
}
/* line 232, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap svg {
width: 370px;
}
@media screen and (max-width: 768px) {
/* line 232, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap svg {
width: 315px;
}
}
@media screen and (max-width: 930px) {
/* line 227, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap {
width: 55%;
margin: 0 auto;
overflow: hidden;
}
}
@media screen and (max-width: 768px) {
/* line 227, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap {
width: 66%;
margin: 0 auto;
overflow: hidden;
}
}
@media screen and (max-width: 560px) {
/* line 227, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap {
width: 100%;
margin: 0 auto;
}
}
/* line 257, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap h1 {
display: inline-block;
width: 250px;
vertical-align: top;
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif;
text-transform: uppercase;
line-height: .85em;
font-size: 2.9em;
letter-spacing: -4px;
text-align: right;
}
@media screen and (max-width: 768px) {
/* line 257, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap h1 {
font-size: 2.3em;
width: auto;
}
}
/* line 273, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap h1 .headerEvent {
letter-spacing: 0px;
}
/* line 278, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap h1 .headerAcademy {
letter-spacing: -4px;
}
/* line 283, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap .logo {
display: inline-block;
width: 115px;
height: 115px;
border-radius: 75px;
background: #171717;
margin-left: 15px;
}
@media screen and (max-width: 768px) {
/* line 283, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap .logo {
width: 90px;
height: 90px;
margin-top: 0px;
}
}
/* line 298, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap h3 {
font-size: .9em;
float: right;
margin-top: -5px;
margin-right: 25px;
}
@media screen and (max-width: 930px) {
/* line 298, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .logoWrap h3 {
display: none;
}
}
/* line 313, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails {
width: 290px;
position: relative;
display: inline-block;
float: left;
}
@media screen and (max-width: 768px) {
/* line 313, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails {
width: 33%;
float: right;
}
}
@media screen and (max-width: 560px) {
/* line 313, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails {
width: 100%;
margin: 0 auto;
float: none;
}
}
/* line 330, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails a {
text-decoration: none;
}
@media screen and (max-width: 560px) {
/* line 334, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails .brResp {
display: none;
}
}
/* line 341, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails h3 {
width: 90%;
margin: 0 auto;
text-align: center;
line-height: 1em;
font-size: 1em;
font-family: "Avenir LT W01_35 Light1475496", sans-serif;
padding-bottom: 12px;
padding-top: 15px;
text-transform: uppercase;
color: black !important;
}
@media screen and (max-width: 768px) {
/* line 341, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails h3 {
font-size: .8em;
line-height: 1.1em;
padding-top: 10px;
}
}
/* line 360, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails .topline {
border-top: 1px solid #171717;
}
/* line 364, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails .bolder {
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif;
font-size: 1.1em;
}
/* line 369, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails .highlight {
font-family: "Avenir LT W01_65 Medium1475532", sans-serif;
}
/* line 373, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails h5 {
font-weight: 900;
font-size: 1.2em;
line-height: .9em;
padding-bottom: 15px;
text-align: center;
letter-spacing: 0px;
margin-top: 10px;
color: black !important;
}
@media screen and (max-width: 930px) {
/* line 373, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails h5 {
padding-bottom: 10px;
}
}
@media screen and (max-width: 768px) {
/* line 373, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .eventDetails h5 {
font-size: 1em;
line-height: .9em;
}
}
/* line 395, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .quickNav {
float: right;
position: relative;
display: inline-block;
width: 220px;
}
@media screen and (max-width: 930px) {
/* line 395, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .quickNav {
display: none !important;
}
}
@media screen and (max-width: 930px) {
/* line 406, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .quickNav ul {
text-align: center;
float: none;
margin: 0 auto;
}
}
/* line 414, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .quickNav ul li {
box-sizing: border-box;
display: inline-block;
float: right;
width: 48%;
height: 55px;
border: 1px solid #171717;
margin: 2px 2px;
padding: 10px 15px;
text-align: center;
text-transform: uppercase;
line-height: 1em;
font-size: .7em;
padding-top: 17px;
vertical-align: top;
color: black !important;
}
@media screen and (max-width: 930px) {
/* line 414, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .quickNav ul li {
width: 23%;
text-align: center;
float: none;
margin: 0 auto;
max-width: 185px;
}
}
@media screen and (max-width: 560px) {
/* line 414, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.headerTop .quickNav ul li {
font-size: .5em;
padding-top: 10px;
}
}
/*********************
LINK STYLES
*********************/
/* line 457, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
a, a:visited {
color: #171717;
/* on hover */
/* on click */
/* mobile tap color */
}
/* line 461, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
a:hover, a:focus, a:visited:hover, a:visited:focus {
color: #171717;
}
/* line 471, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
a:link, a:visited:link {
/*
this highlights links on iPhones/iPads.
so it basically works like the :hover selector
for mobile devices.
*/
-webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}
/* line 481, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
a.showlogin {
color: teal !important;
}
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
/* line 489, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
text-rendering: optimizelegibility;
font-weight: 500;
color: black;
/*
if you're going to use webfonts, be sure to check your weights
http://css-tricks.com/watch-your-font-weight/
*/
/* removing text decoration from all headline links */
}
/* line 499, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
text-decoration: none;
}
/* line 504, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h1, .h1 {
font-size: 2.5em;
line-height: 1.333em;
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif;
}
/* line 510, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h2, .h2 {
font-size: 1.75em;
line-height: 1.4em;
margin-bottom: 0.375em;
}
/* line 516, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h3, .h3 {
font-size: 1.125em;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif;
}
/* line 521, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h4, .h4 {
font-size: 1.1em;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif;
}
/* line 526, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
h5, .h5 {
font-size: 0.846em;
line-height: 2.09em;
text-transform: uppercase;
letter-spacing: 2px;
}
/*********************
LANGUAGE SELECT STYLES
*********************/
/* line 542, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langs {
position: absolute;
top: 1px;
left: 5px;
}
@media screen and (max-width: 930px) {
/* line 542, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langs {
display: none;
}
}
/* line 555, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langs ul li a {
font-family: "Avenir LT W01_35 Light1475496", sans-serif !important;
font-size: .7em !important;
text-transform: uppercase;
transition: all .5s !important;
}
/* line 562, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langs ul li a:hover {
transition: all .3s !important;
}
/* line 571, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langsMobile {
display: none !important;
}
@media screen and (max-width: 930px) {
/* line 571, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langsMobile {
display: block;
color: white !important;
}
}
/* line 583, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langsMobile ul li a {
font-family: "Avenir LT W01_35 Light1475496", sans-serif !important;
font-size: .7em !important;
text-transform: uppercase;
transition: all .5s !important;
}
/* line 590, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.langsMobile ul li a:hover {
transition: all .3s !important;
}
/* line 604, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wooWrap a .price {
margin-right: 15px !important;
}
/* line 611, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wooWrap nav {
text-align: right !important;
padding: 10px 10px 5px !important;
display: inline-block !important;
}
@media screen and (max-width: 930px) {
/* line 611, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wooWrap nav {
width: 15% !important;
min-width: 105px !important;
z-index: 5000 !important;
}
}
/* line 622, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wooWrap nav a {
font-family: "Avenir LT W01_35 Light1475496", sans-serif !important;
font-size: .7em !important;
text-transform: uppercase;
}
/* line 631, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
a.lang_sel_sel {
text-decoration: underline !important;
color: #ccc !important;
background: #333 !important;
}
/*********************
NAVIGATION STYLES
*********************/
/* line 643, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.nav .gridWrap {
background: black;
padding: 0 0 0 0;
}
/* line 650, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav {
width: 100%;
background: black;
padding: 0 0 0 0;
text-align: center;
}
@media screen and (max-width: 930px) {
/* line 650, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav {
position: fixed;
top: 0;
left: 0;
z-index: 1000;
}
}
@media screen and (max-width: 930px) {
/* line 663, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .respBr {
display: none;
}
}
/* line 669, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .mobileSpace {
display: none;
}
@media screen and (max-width: 930px) {
/* line 669, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .mobileSpace {
display: inline-block;
content: ' ';
position: relative;
font-size: .2em;
}
}
/* line 681, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .menuAdd {
display: none;
color: white;
font-weight: 900;
text-transform: uppercase;
padding: 10px 0;
cursor: pointer;
}
@media screen and (max-width: 930px) {
/* line 681, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .menuAdd {
display: inline-block;
float: left;
padding-left: 43%;
}
}
@media screen and (max-width: 485px) {
/* line 681, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .menuAdd {
padding-left: 31%;
}
}
/* line 702, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul {
position: relative;
width: 100%;
display: block;
margin: 0 auto;
}
@media screen and (max-width: 930px) {
/* line 702, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul {
height: 0;
overflow: hidden;
transition: all .6s;
}
}
/* line 714, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul li {
width: auto;
display: inline-block;
margin: 0;
text-transform: uppercase;
text-align: center;
line-height: .8em;
font-weight: 100;
}
@media screen and (max-width: 930px) {
/* line 714, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul li {
width: 100%;
margin: 0 auto;
text-align: center;
padding: 10px 15px;
}
}
/* line 732, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul li a {
width: auto;
min-width: 110px;
display: inline-block;
position: relative;
color: white !important;
text-decoration: none;
font-size: .75em !important;
line-height: 1em !important;
font-weight: 500 !important;
text-align: center;
padding: 10px 15px 7px;
}
@media screen and (max-width: 930px) {
/* line 732, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul li a {
width: 100%;
font-size: 18px;
}
}
/* line 751, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav ul li a:hover {
background: #333 !important;
color: #ccc !important;
transition: all 1s;
}
/* line 759, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .makeBlock {
height: 420px;
transition: all 1s;
}
/* line 764, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile {
display: none !important;
}
@media screen and (max-width: 930px) {
/* line 764, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile {
display: block !important;
color: white !important;
width: 30% !important;
min-width: 200px;
height: 30px !important;
z-index: 9000 !important;
overflow: hidden !important;
position: absolute !important;
right: 5px;
top: 16px;
}
}
/* line 781, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile #lang_sel_list {
color: white !important;
height: 30px !important;
margin: 0 !important;
position: relative !important;
}
/* line 787, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile #lang_sel_list ul {
color: white !important;
height: 30px !important;
}
/* line 791, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile #lang_sel_list ul li {
color: white !important;
height: 30px !important;
width: 30% !important;
}
/* line 798, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile #lang_sel_list ul li a.lang_sel_sel, nav .langsMobile #lang_sel_list ul li a.lang_sel_other {
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
font-size: .7em !important;
text-transform: uppercase;
transition: all .5s !important;
color: white !important;
line-height: 1em !important;
width: 100% !important;
padding: 2px 5px !important;
}
/* line 809, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
nav .langsMobile #lang_sel_list ul li a.lang_sel_sel:hover, nav .langsMobile #lang_sel_list ul li a.lang_sel_other:hover {
color: white !important;
background: black !important;
transition: all .3s !important;
}
/*********************
ECOMM STYLES
*********************/
/* line 831, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content {
width: 100% !important;
max-width: 930px !important;
margin: 0 auto !important;
background: white !important;
padding: 25px 30px;
}
/* line 840, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content .summary h1 {
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif !important;
font-size: 1.3em !important;
line-height: 1em !important;
text-transform: uppercase !important;
margin-bottom: 15px !important;
width: 100% !important;
max-width: 450px !important;
}
/* line 850, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content .summary p {
width: 100% !important;
max-width: 600px !important;
line-height: 1.4em !important;
margin-bottom: .8em !important;
}
/* line 856, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content .summary p a {
color: teal !important;
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif;
}
/* line 865, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content p.stock {
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif !important;
margin-top: 30px !important;
text-transform: uppercase !important;
}
/* line 871, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content ul.woocommerce-error, #content .woocommerce-mesasge, #content .woocommerce-info, #content .woocommerce_error, #content .woocommerce_mesasge, #content .woocommerce_info {
display: block !important;
margin: 15px 0 !important;
background: white !important;
border: 1px solid #ccc !important;
padding: 10px !important;
}
/* line 878, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content ul.woocommerce-error li, #content .woocommerce-mesasge li, #content .woocommerce-info li, #content .woocommerce_error li, #content .woocommerce_mesasge li, #content .woocommerce_info li {
list-style: none !important;
line-height: .9em !important;
}
/* line 882, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content ul.woocommerce-error li a, #content .woocommerce-mesasge li a, #content .woocommerce-info li a, #content .woocommerce_error li a, #content .woocommerce_mesasge li a, #content .woocommerce_info li a {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
padding: 5px 15px !important;
border-radius: 3px !important;
margin-left: 15px !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
font-size: .7em !important;
display: inline !important;
float: right !important;
margin-bottom: 15px !important;
}
/* line 899, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content ul.woocommerce-error li a:hover, #content .woocommerce-mesasge li a:hover, #content .woocommerce-info li a:hover, #content .woocommerce_error li a:hover, #content .woocommerce_mesasge li a:hover, #content .woocommerce_info li a:hover {
color: black !important;
background: white !important;
transition: all .5s !important;
}
/* line 908, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content .product_meta {
margin: 30px 0 !important;
text-transform: uppercase !important;
}
/* line 912, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content .product_meta .posted_in {
text-transform: uppercase !important;
}
/* line 915, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content .product_meta .posted_in a {
color: black !important;
font-size: .9em;
text-transform: uppercase !important;
}
/* line 927, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce-message {
display: block !important;
margin: 15px 0 !important;
background: white !important;
border: 1px solid #ccc !important;
padding: 10px !important;
color: black !important;
}
/* line 935, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce-message a {
color: red !important;
}
/* line 941, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce-message a.wc-forward {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
padding: 5px 15px !important;
border-radius: 3px !important;
margin-left: 15px !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
font-size: .7em !important;
display: inline !important;
float: right !important;
margin-bottom: 15px !important;
}
/* line 962, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.cart button.single_add_to_cart_button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
}
/* line 974, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.cart button.single_add_to_cart_button:hover {
color: black !important;
background: white !important;
transition: all .5s !important;
border: 1px solid black !important;
}
/* line 982, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce p {
color: black !important;
}
/* line 986, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.payments_methods li {
background: white !important;
}
/* line 992, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce a.button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
padding: 10px 20px !important;
width: auto !important;
margin-top: 30px !important;
margin-bottom: 30px !important;
display: inline-block !important;
}
/* line 1009, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce a.button:hover {
color: black !important;
background: white !important;
transition: all .5s !important;
border: 1px solid black !important;
}
/* line 1021, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .woocommerce-checkout-payment .form-row input.button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
}
/* line 1032, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .woocommerce-checkout-payment .form-row input.button:hover {
color: black !important;
background: white !important;
transition: all .5s !important;
border: 1px solid black !important;
}
/* line 1041, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .woocommerce-billing-fields p, .woocommerce .woocommerce-shipping-fields p {
color: black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
margin-bottom: 15px !important;
display: block !important;
}
/* line 1047, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .woocommerce-billing-fields p input.input-text, .woocommerce .woocommerce-shipping-fields p input.input-text {
margin-left: 15px;
}
/* line 1055, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce p.return-to-shop a.button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
padding: 10px 20px !important;
width: auto !important;
}
/* line 1069, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce p.return-to-shop a.button:hover {
color: black !important;
background: white !important;
transition: all .5s !important;
border: 1px solid black !important;
}
/* line 1078, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce table {
background: white !important;
}
/* line 1082, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce table thead th {
background: white !important;
color: #171717 !important;
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif !important;
text-transform: uppercase !important;
font-size: 1em !important;
border: none !important;
}
/* line 1091, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce table tbody tr td {
background: white !important;
color: #171717 !important;
font-family: "Avenir LT W01_35 Light1475496", sans-serif !important;
text-transform: uppercase !important;
font-size: .9em !important;
line-height: 1em !important;
}
/* line 1100, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce table tbody tr {
margin: 5px 0 !important;
}
/* line 1105, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce td.product-name a, .woocommerce td.product-remove a {
color: black !important;
}
/* line 1111, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce td.product-remove a.remove {
color: red !important;
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif !important;
font-size: 2em !important;
}
/* line 1122, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce td.product-thumbnail a img {
width: 120px !important;
height: 80px !important;
}
/* line 1130, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce table tbody tr td input.button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
padding: 5px 15px !important;
}
/* line 1143, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce td.product-name, .woocommerce td.product-remove, .woocommerce td.product-price, .woocommerce td.product-subtotal {
padding: 5px 15px !important;
}
/* line 1148, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .cart_totals h2 {
text-transform: uppercase;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif;
font-size: .9em;
}
/* line 1154, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .cart_totals table tbody tr th {
background: white !important;
color: black !important;
}
/* line 1159, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .cart_totals .wc-proceed-to-checkout {
margin-top: 30px;
}
/* line 1162, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
padding: 10px 25px !important;
width: auto !important;
}
/* line 1176, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
color: black !important;
background: white !important;
transition: all .5s !important;
border: 1px solid black !important;
}
/* line 1187, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
p.cart-empty {
color: black !important;
margin-bottom: 30px !important;
}
/* line 1192, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul li {
color: black !important;
}
/* line 1196, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.order-details li, ul.order-details li .amount, ul.order-details li .order, ul.order-details li .date {
color: black !important;
}
/* line 1200, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
table.shop_table_order_details tfoot tr th, table.shop_table_order_details tfoot tr td {
color: black;
}
/* line 1205, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.products li {
display: inline-block !important;
width: 45% !important;
list-style: none !important;
border: 1px solid #ccc !important;
margin: 15px;
padding: 25px 30px !important;
}
@media screen and (max-width: 768px) {
/* line 1205, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.products li {
width: 90% !important;
margin: 15px 0 !important;
}
}
/* line 1220, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.products li a.add_to_cart_button {
color: white !important;
background: black !important;
text-transform: uppercase !important;
cursor: pointer !important;
border-radius: 3px !important;
margin-left: 0 !important;
transition: all .3s !important;
border: 1px solid black !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
padding: 5px 15px !important;
}
/* line 1236, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.products li a img.attachment-shop_catalog {
width: 300px !important;
height: 200px !important;
}
/* line 1243, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.products li a .product-details h3 {
color: black !important;
text-transform: uppercase !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
line-height: .9em !important;
margin-bottom: .4em !important;
}
/* line 1252, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
ul.products li a .product-details .price .amount {
color: black !important;
text-transform: uppercase;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif !important;
}
/*********************
HOMEPAGE STYLES
*********************/
/* line 1272, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap {
background: none !important;
padding-top: 30px;
}
/* line 1276, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul {
display: block;
}
/* line 1279, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeTwoThird {
width: 66.5%;
height: 450px;
}
@media screen and (max-width: 930px) {
/* line 1279, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeTwoThird {
width: 66%;
}
}
@media screen and (max-width: 768px) {
/* line 1279, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeTwoThird {
width: 100%;
}
}
@media screen and (max-width: 520px) {
/* line 1279, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeTwoThird {
height: auto;
}
}
/* line 1296, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeOneThird {
width: 30%;
height: 450px;
}
@media screen and (max-width: 768px) {
/* line 1296, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeOneThird {
width: 100%;
}
}
/* line 1305, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .introHomeMarch15 {
background: none;
text-align: center;
}
/* line 1314, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull {
width: 100%;
padding: 0 !important;
}
/* line 1318, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader {
width: 100%;
height: 60px;
background: black;
box-sizing: border-box;
padding: 16px;
vertical-align: top;
position: relative;
overflow: hidden;
}
@media screen and (max-width: 600px) {
/* line 1318, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader {
height: auto;
}
}
/* line 1332, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader h1 {
font-weight: 400;
text-transform: uppercase;
color: white;
font-size: 1.3em;
vertical-align: top;
line-height: 1em;
}
/* line 1341, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader h1 .bolder {
font-weight: 900;
}
/* line 1346, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader h3 {
color: white;
vertical-align: top;
line-height: 1em;
text-transform: uppercase;
font-size: .7em !important;
}
/* line 1354, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos {
position: absolute;
right: 2em;
top: 10px;
}
/* line 1359, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul {
text-align: center;
padding-top: 5px;
}
/* line 1363, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul a {
text-decoration: none;
border: none;
padding: 0;
margin-top: 0;
}
/* line 1370, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul a:hover {
background: none;
}
/* line 1375, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul li {
display: inline-block;
width: 35px;
height: 30px;
margin-left: .5em;
background: none;
color: white;
}
/* line 1384, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialInsta {
width: 20px;
color: white;
fill: white;
}
/* line 1389, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialInsta svg {
width: 30px;
}
/* line 1394, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialFacebook {
width: 25px;
fill: white;
margin-left: 15px;
}
/* line 1400, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialTwitter {
width: 25px;
fill: white;
padding-top: 4px;
transition: all .5s;
}
/* line 1407, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialTwitter:hover, .homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialInsta:hover, .homeMarch15 .gridWrap ul .homeFull .socialHeader .socialLogos ul .socialFacebook:hover {
fill: #aaa;
transition: all 1s;
}
/* line 1417, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .marginRight {
margin-right: 3%;
}
/* line 1422, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImg {
width: 55%;
height: 100%;
float: right;
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/homeSeminar.jpg") no-repeat;
background-size: cover;
background-position: right bottom;
}
@media screen and (max-width: 520px) {
/* line 1422, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImg {
width: 100%;
height: 200px;
}
}
/* line 1436, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImgCleanup {
width: 55%;
height: 100%;
float: right;
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/06/homeCleanup.jpg") no-repeat;
background-size: cover;
background-position: 20% bottom;
}
@media screen and (max-width: 520px) {
/* line 1436, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImgCleanup {
width: 100%;
height: 200px;
background-position: 20% bottom;
}
}
/* line 1451, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImgRunning {
width: 55%;
height: 100%;
float: right;
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/06/homeRunning.jpg") no-repeat;
background-size: cover;
background-position: center bottom;
}
@media screen and (max-width: 520px) {
/* line 1451, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImgRunning {
width: 100%;
height: 200px;
background-position: center center;
}
}
/* line 1466, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImgDayOne {
width: 55%;
height: 100%;
float: right;
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/06/aaThurs-8.jpg") no-repeat;
background-size: cover;
background-position: left bottom;
}
@media screen and (max-width: 520px) {
/* line 1466, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeImgDayOne {
width: 100%;
height: 200px;
background-position: center center;
}
}
/* line 1481, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent {
width: 40%;
float: left;
}
@media screen and (max-width: 520px) {
/* line 1481, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent {
width: 100%;
}
}
/* line 1490, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent h1 {
margin-top: 5%;
color: black !important;
}
@media screen and (max-width: 520px) {
/* line 1490, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent h1 {
margin-top: 15px;
}
}
/* line 1499, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent p {
text-align: left;
line-height: 1em;
font-size: 1em;
margin-top: 1em;
}
/* line 1506, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent a {
display: inline-block;
text-decoration: none;
color: white;
background: black;
border: 1px solid #171717;
text-transform: uppercase;
font-size: .9em;
padding: 8px 18px;
margin-bottom: 40px;
margin-top: 30px;
border-radius: 3px;
transition: all .3s;
}
/* line 1522, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent a.inlineLink {
display: inline;
background: none;
padding: 0;
border: none;
color: teal !important;
text-transform: none;
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif;
}
/* line 1532, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent a.inlineLink:hover {
color: black;
}
/* line 1537, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .clinicCTA .homeContent a:hover {
color: #171717;
background: white;
}
/* line 1545, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .homeImg {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_advalpinism.jpg") no-repeat;
background-size: cover;
width: 100%;
height: 45%;
}
/* line 1552, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .videoImg {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_advalpinism.jpg") no-repeat;
background-size: cover;
width: 100%;
height: 45%;
position: relative;
text-align: center;
}
@media screen and (max-width: 768px) {
/* line 1552, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .videoImg {
height: 300px;
}
}
@media screen and (max-width: 500px) {
/* line 1552, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .videoImg {
height: 55%;
}
}
/* line 1568, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .videoImg a.playButton {
width: 90px;
height: 65px;
border: none;
margin-top: 25%;
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/06/ytPlay.png") no-repeat;
background-size: cover;
}
/* line 1577, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .videoImg a.playButton:hover {
opacity: .85;
transition: all 1s;
}
/* line 1584, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .homeContent {
width: 100%;
}
/* line 1587, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .homeContent h1 {
margin-top: -8px;
color: black !important;
}
/* line 1592, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .homeContent p {
text-align: left;
line-height: 1em;
font-size: 1em;
margin-top: .7em;
}
/* line 1599, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .homeContent a {
display: inline-block;
text-decoration: none;
color: white;
background: black;
border: 1px solid #171717;
text-transform: uppercase;
font-size: .9em;
padding: 8px 18px;
margin-bottom: 40px;
margin-top: 15px;
border-radius: 3px;
transition: all .3s;
}
/* line 1615, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .contestCTA .homeContent a:hover {
color: #171717;
background: white;
}
/* line 1626, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .athleteCTA .homeImg {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_advalpinism.jpg") no-repeat;
background-size: cover;
width: 100%;
height: 45%;
}
/* line 1633, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .athleteCTA .homeContent {
width: 100%;
}
/* line 1639, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .filmCTA .homeImg {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_advalpinism.jpg") no-repeat;
background-size: cover;
width: 100%;
height: 45%;
}
/* line 1646, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .filmCTA .homeContent {
width: 100%;
}
/* line 1652, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .seminarCTA .homeImg {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_advalpinism.jpg") no-repeat;
background-size: cover;
width: 100%;
height: 45%;
}
/* line 1659, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .seminarCTA .homeContent {
width: 100%;
}
/* line 1665, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul .trailer {
background: none !important;
}
/* line 1670, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li {
display: inline-block;
vertical-align: top;
background: white;
box-sizing: border-box;
margin-bottom: 30px;
}
/* line 1677, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li .homeImg {
display: inline-block;
}
/* line 1681, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li .homeContent {
display: inline-block;
padding: 20px;
text-align: center;
}
/* line 1687, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li h1 {
font-size: 1.4em;
font-weight: 900;
text-transform: uppercase;
line-height: 1em;
text-align: left;
}
/* line 1695, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li p {
text-align: left;
}
/* line 1699, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li a {
display: inline-block;
text-decoration: none;
padding: 10px 15px;
border-radius: 2px;
border: 1px solid #171717;
margin-top: 20px;
font-weight: 500;
text-align: center;
transition: all .6s;
}
/* line 1711, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li a:hover {
background: #171717;
color: white;
transition: all .8s;
}
/* line 1717, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.homeMarch15 .gridWrap ul li iframe {
width: 100%;
height: 480px;
}
/*********************
SOCIAL FEED STYLES
*********************/
/* line 1736, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialIntro {
display: block;
height: 120px;
padding: 15px;
}
/* line 1742, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed h1 {
font-size: 1.7em;
text-transform: uppercase;
}
/* line 1747, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .bolder {
font-family: "Avenir LT W01_85 Heavy1475544", sans-serif;
}
/* line 1751, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed h3 {
font-size: 1em;
text-transform: uppercase;
width: 95%;
max-width: 550px;
line-height: 1.1em;
}
/* line 1759, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos {
position: absolute;
right: 2em;
top: 10px;
}
/* line 1764, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul {
text-align: center;
padding-top: 5px;
}
/* line 1768, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul a {
text-decoration: none;
border: none;
padding: 0;
margin-top: 0;
}
/* line 1775, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul a:hover {
background: none;
}
/* line 1780, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul li {
display: inline-block;
width: 35px;
height: 30px;
margin-left: .5em;
background: none;
color: white;
}
/* line 1789, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul .socialInsta {
width: 20px;
color: white;
fill: #171717;
}
/* line 1794, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul .socialInsta svg {
width: 30px;
}
/* line 1799, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul .socialFacebook {
width: 25px;
fill: #171717;
margin-left: 15px;
}
/* line 1805, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul .socialTwitter {
width: 25px;
fill: #171717;
padding-top: 4px;
transition: all .5s;
}
/* line 1812, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed .socialLogos ul .socialTwitter:hover, .socialEmbed .socialLogos ul .socialInsta:hover, .socialEmbed .socialLogos ul .socialFacebook:hover {
fill: #aaa;
transition: all 1s;
}
/* line 1819, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.socialEmbed iframe {
width: 100%;
height: 700px;
border: none;
}
/*********************
POSTS & CONTENT STYLES
*********************/
/* line 1832, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
#content {
margin-top: 1.5em;
}
/* line 1836, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry {
color: black !important;
}
/* line 1840, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry p {
color: black !important;
}
/* line 1844, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
table tbody th {
background: white !important;
}
/* line 1849, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.hentry {
background-color: #FFF;
}
/* line 1859, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.hentry footer p {
margin: 0;
}
/* end .hentry */
/* line 1866, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.single-title,
.page-title,
.entry-title {
margin: 0;
}
/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
/* line 1891, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.byline {
color: #ccc;
font-style: italic;
margin: 0;
}
/* entry content */
/* line 1901, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content {
padding: 1.5em 1.5em 0;
padding-bottom: 90px;
/* Clinic Page Layout */
/* Athlete Page Layout */
/* Seminar Page Layout */
/* Alpine Village Page Layout */
/* Seminar Schedule Page Layout */
/* Event Schedule Page Layout */
/* End Event Schedule Page Layout */
/* Venue Map Embed Code */
}
/* line 1905, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content header {
background: blue !important;
}
/* line 1910, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content h1 {
font-size: 1em;
padding: 0 0 0 1em;
font-weight: 900;
}
/* line 1916, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content h1.page-title {
font-weight: 700;
font-size: 2.5em;
padding: 0 0 0 .4em;
text-transform: uppercase;
color: #171717;
}
/* line 1924, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content h3 {
width: 90%;
max-width: 650px;
margin-left: 15px;
font-size: 1em;
font-weight: 900;
margin-bottom: 1em;
text-transform: uppercase;
line-height: 1em;
color: black !important;
}
@media screen and (max-width: 768px) {
/* line 1924, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content h3 {
width: 95%;
}
}
/* line 1940, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content p {
width: 95%;
max-width: 650px;
margin: 0 0 1.5em;
padding-left: 15px;
font-size: 1em;
}
@media screen and (max-width: 768px) {
/* line 1940, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content p {
width: 95%;
}
}
/* line 1952, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .finePrint {
font-size: .7em;
}
/* line 1956, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content a {
color: teal !important;
font-family: "Avenir LT W01_65 Medium1475532", sans-serif;
}
/* line 1961, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content a.socialComingSoon {
text-transform: uppercase;
padding: 8px 18px;
background: #171717;
color: white !important;
transition: all .5s;
font-family: "Avenir LT W01_35 Light1475496", sans-serif;
font-size: .9em;
text-decoration: none;
border-radius: 3px;
margin-bottom: 5px !important;
display: inline-block;
border: 1px solid black;
}
/* line 1976, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content a.socialComingSoon:hover {
color: black !important;
background: white;
transition: all .3s;
}
/* line 1982, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content a.contestLink {
display: inline-block;
text-decoration: none;
color: #171717 !important;
border: 1px solid #171717;
text-transform: uppercase;
font-size: .9em;
padding: 8px 18px;
margin-bottom: 40px;
margin-top: 15px;
border-radius: 3px;
transition: all .3s;
}
/* line 1996, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content a.contestLink:hover {
color: white !important;
background: #171717;
}
/* line 2003, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap {
width: 100%;
position: relative;
display: block;
}
/* line 2008, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicBG {
width: 100%;
height: 250px;
margin: 0;
padding: 0;
background-size: cover !important;
}
@media screen and (max-width: 700px) {
/* line 2008, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicBG {
height: 350px;
}
}
@media screen and (max-width: 500px) {
/* line 2008, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicBG {
height: 300px;
}
}
/* line 2024, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicAcclimitization {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_acclimatization.jpg") no-repeat;
}
/* line 2028, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicGlacierPrep {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_glacierprep.jpg") no-repeat;
background-position: right;
}
/* line 2033, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicSuuntoNav {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_suuntonav.jpg") no-repeat;
}
/* line 2037, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicFirstAid {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_firstaid.jpg") no-repeat;
}
/* line 2041, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicBasicMountaineering {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_basicmountaineering.jpg") no-repeat;
}
/* line 2045, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicTechAlpinism {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_advalpinism.jpg") no-repeat;
background-position: center center !important;
}
/* line 2050, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicMultiPitch {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_multipitch.jpg") no-repeat;
}
/* line 2054, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicGlacierTour {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_glaciertour.jpg") no-repeat;
}
/* line 2058, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicMSROvernight {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_msrovernight.jpg") no-repeat;
}
/* line 2062, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicPhotography {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_alpinephotography.jpg") no-repeat;
background-position: right;
}
/* line 2067, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicTradClimbing {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_tradclimbing.jpg") no-repeat;
}
/* line 2071, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicMedicine {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_medicine.jpg") no-repeat;
}
/* line 2075, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicDryTooling {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_drytooling.jpg") no-repeat;
background-position: right bottom;
}
/* line 2080, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicIceClimbing {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_iceclimbing.jpg") no-repeat;
}
/* line 2084, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicRescue {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_rescue.jpg") no-repeat;
}
/* line 2088, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicGrade7 {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_grade7.jpg") no-repeat;
}
/* line 2092, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicIceClimbingWmn {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_iceclimbingwmn.jpg") no-repeat;
background-position: right;
}
/* line 2097, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicGlacierTourWmn {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_glacierwmn.jpg") no-repeat;
}
/* line 2101, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicBigWall {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_bigwall.jpg") no-repeat;
}
/* line 2105, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicSkiAlpinism {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_skialpinism.jpg") no-repeat;
}
/* line 2109, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicBouldering {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_bouldering.jpg") no-repeat;
background-position: right;
}
/* line 2114, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicSplitboarding {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/clinic_splitboarding.jpg") no-repeat;
}
/* line 2118, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap .clinicDinner {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2014/03/mauntain_dinner1.jpg") no-repeat;
}
/* line 2123, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap h1 {
margin-top: 15px;
text-transform: uppercase;
font-family: 'Avenir LT W01_85 Heavy1475544';
font-weight: 900;
}
/* line 2130, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap p {
margin: 0 auto;
width: 70%;
}
@media screen and (max-width: 700px) {
/* line 2130, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap p {
width: 90%;
text-align: left;
}
}
/* line 2140, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul {
display: block;
vertical-align: top;
}
/* line 2144, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li {
width: 42%;
margin: 30px 2%;
border: 1px solid #ccc;
padding: 15px;
text-align: left;
vertical-align: top;
list-style: none !important;
display: inline-block !important;
}
/* line 2154, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li h5 {
letter-spacing: 0px !important;
padding: 0 0 0 1em !important;
line-height: 1em !important;
}
/* line 2160, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li a {
color: white !important;
padding: 5px 10px;
background: black;
border-radius: 3px;
text-transform: uppercase;
transition: all .6s;
border: 1px solid black !important;
display: inline-block;
margin-top: -5px;
margin-bottom: 15px;
}
/* line 2173, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li a:hover {
color: #171717 !important;
background: white !important;
transition: all .3s !important;
border: 1px solid black !important;
}
@media screen and (max-width: 700px) {
/* line 2144, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li {
width: 90%;
}
}
/* line 2185, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li ul {
list-style: disc !important;
}
/* line 2188, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li ul li {
display: list-item !important;
width: 95% !important;
margin: 0;
padding: 0 0 .2em 0;
border: none;
list-style: disc !important;
font-size: .8em;
margin-left: 0px;
}
/* line 2201, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li h1 {
display: block;
font-size: 1.2em;
line-height: .9em;
}
/* line 2207, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li h3 {
font-size: .9em;
text-transform: uppercase;
color: #666;
display: none;
}
/* line 2214, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul li p {
width: 100%;
font-weight: 100;
font-size: .9em;
margin: 10px 0;
}
/* line 2222, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul .fullWidth {
width: 90%;
}
/* line 2224, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul .fullWidth img {
float: right;
width: 45%;
padding-left: 30px;
padding-top: 30px;
}
@media screen and (max-width: 700px) {
/* line 2224, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul .fullWidth img {
width: 100%;
padding-bottom: 30px;
}
}
/* line 2235, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .clinicWrap ul .fullWidth p {
width: 90% !important;
}
/* line 2247, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap {
width: 100%;
position: relative;
display: block;
}
/* line 2252, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteBG {
width: 100%;
height: 250px;
margin: 0;
padding: 0;
background-size: cover !important;
}
@media screen and (max-width: 700px) {
/* line 2252, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteBG {
height: 350px;
}
}
@media screen and (max-width: 500px) {
/* line 2252, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteBG {
height: 300px;
}
}
/* line 2268, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteInes {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/ines.jpg");
background-size: cover;
background-position: center center;
}
/* line 2274, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteCaprez {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/nina.jpg");
background-size: cover;
background-position: center center;
}
/* line 2280, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteMina {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/mina.jpg");
background-size: cover;
background-position: center center;
}
/* line 2286, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athletePia {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/pia.jpg");
background-size: cover;
background-position: center top;
}
/* line 2292, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteStian {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/stian.jpg");
background-size: cover;
background-position: center center;
}
/* line 2298, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteWeldon {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/vikki.jpg");
background-size: cover;
background-position: center center;
}
/* line 2304, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteKaty {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/katy.jpg");
background-size: cover;
background-position: left center;
}
/* line 2310, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteSlot {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/slot.jpg");
background-size: cover;
background-position: center center;
}
/* line 2316, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteMaciej {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/maciek.jpg");
background-size: cover;
background-position: center center;
}
/* line 2322, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteScherer {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/scherer.jpg");
background-size: cover;
background-position: center center;
}
/* line 2328, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athletePaolo {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/paolo.jpg");
background-size: cover;
background-position: center center;
}
/* line 2334, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteSeb {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/seb.jpg");
background-size: cover;
background-position: center center;
}
/* line 2340, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteFlorian {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/florian.jpg");
background-size: cover;
background-position: center center;
}
/* line 2346, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteSchmitt {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/tanjaschmitt.jpg");
background-size: cover;
background-position: center center;
}
/* line 2352, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteHuey {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/huey.jpg");
background-size: cover;
background-position: center center;
}
/* line 2358, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteHeike {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/heikeschmitt.jpg");
background-size: cover;
background-position: center center;
}
/* line 2364, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteSantoire {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/isabellesantoire.jpg");
background-size: cover;
background-position: center center;
}
/* line 2370, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteTessa {
background-size: cover;
background-position: center center;
}
/* line 2376, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteSiegrest {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/siegrist.jpg");
background-size: cover;
background-position: center center;
}
/* line 2382, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteMcsorley {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/mcsorley.jpg");
background-size: cover;
background-position: center top;
}
/* line 2388, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteGadd {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/gadd.jpg");
background-size: cover;
background-position: center center;
}
/* line 2394, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteJohannes {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/johanneshoffmann.jpg");
background-size: cover;
background-position: center center;
}
/* line 2400, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap .athleteHoffman {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/michaelhoffman.jpg");
background-size: cover;
background-position: center center;
}
/* line 2408, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap h1 {
margin-top: 15px;
text-transform: uppercase;
font-family: 'Avenir LT W01_85 Heavy1475544';
font-weight: 900;
}
/* line 2415, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap p {
margin: 0 auto;
width: 70%;
}
@media screen and (max-width: 700px) {
/* line 2415, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap p {
width: 90%;
text-align: left;
}
}
/* line 2425, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul {
display: block;
vertical-align: top;
}
/* line 2429, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li {
width: 42%;
margin: 30px 2%;
border: 1px solid #ccc;
padding: 15px;
text-align: left;
vertical-align: top;
list-style: none !important;
display: inline-block !important;
}
/* line 2439, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li h5 {
letter-spacing: 0px !important;
padding: 0 0 0 1em !important;
line-height: 1em !important;
}
@media screen and (max-width: 700px) {
/* line 2429, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li {
width: 90%;
}
}
/* line 2450, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li ul {
list-style: disc !important;
}
/* line 2453, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li ul li {
display: list-item !important;
width: 95% !important;
margin: 0;
padding: 0 0 .2em 0;
border: none;
list-style: disc !important;
font-size: .8em;
margin-left: 0px;
}
/* line 2466, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li h1 {
display: block;
font-size: 1.2em;
line-height: .9em;
}
/* line 2472, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li h3 {
font-size: .9em;
text-transform: uppercase;
color: #666;
display: none;
}
/* line 2479, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul li p {
width: 100%;
font-weight: 100;
font-size: .9em;
margin: 10px 0;
}
/* line 2487, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul .fullWidth {
width: 90%;
}
/* line 2489, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul .fullWidth img {
float: right;
width: 45%;
padding-left: 30px;
padding-top: 30px;
}
@media screen and (max-width: 700px) {
/* line 2489, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul .fullWidth img {
width: 100%;
padding-bottom: 30px;
}
}
/* line 2500, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .athleteWrap ul .fullWidth p {
width: 90% !important;
}
/* line 2513, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap {
width: 100%;
position: relative;
display: block;
}
/* line 2518, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarBG {
width: 100%;
height: 250px;
margin: 0;
padding: 0;
background-size: cover !important;
}
@media screen and (max-width: 700px) {
/* line 2518, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarBG {
height: 350px;
}
}
@media screen and (max-width: 500px) {
/* line 2518, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarBG {
height: 300px;
}
}
/* line 2534, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarRisk {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2015/05/s-01-1-e1463496529342.jpg");
background-size: cover;
background-position: center center;
}
/* line 2540, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarAccident {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/accident.jpg");
background-size: cover;
background-position: center center;
}
/* line 2546, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarHeadlamp {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2015/05/s-03-e1463496037793.jpg");
background-size: cover;
background-position: center center;
}
/* line 2552, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarAdventureVideo {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/videomaking.jpg");
background-size: cover;
background-position: center center;
}
/* line 2558, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarFuel {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/fuel.jpg");
background-size: cover;
background-position: center center;
}
/* line 2564, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarPlanning {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/planning.jpg");
background-size: cover;
background-position: center center;
}
/* line 2570, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarEvolution {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/evolutionexpedition.jpg");
background-size: cover;
background-position: center center;
}
/* line 2576, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarOpenQA {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/openqa.jpg");
background-size: cover;
background-position: center center;
}
/* line 2582, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarAltitude {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/highaltitude.jpg");
background-size: cover;
background-position: center center;
}
/* line 2588, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarWeather {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/weather.jpg");
background-size: cover;
background-position: center center;
}
/* line 2594, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarLightweight {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2015/05/s-11.jpg");
background-size: cover;
background-position: center center;
}
/* line 2600, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarGore {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/gorecare.jpg");
background-size: cover;
background-position: center center;
}
/* line 2606, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarGPS {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/gps.jpg");
background-size: cover;
background-position: center center;
}
/* line 2612, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap .seminarEmergency {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/emergency.jpg");
background-size: cover;
background-position: center center;
}
/* line 2623, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap h1 {
margin-top: 15px;
text-transform: uppercase;
font-family: 'Avenir LT W01_85 Heavy1475544';
font-weight: 900;
}
/* line 2630, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap p {
margin: 0 auto;
width: 70%;
}
@media screen and (max-width: 700px) {
/* line 2630, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap p {
width: 90%;
text-align: left;
}
}
/* line 2640, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul {
display: block;
vertical-align: top;
}
/* line 2644, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li {
width: 42%;
margin: 30px 2%;
border: 1px solid #ccc;
padding: 15px;
text-align: left;
vertical-align: top;
list-style: none !important;
display: inline-block !important;
}
/* line 2654, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li h5 {
letter-spacing: 0px !important;
padding: 0 0 0 1em !important;
line-height: 1em !important;
}
/* line 2660, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li a {
color: white !important;
padding: 5px 10px;
background: black;
border-radius: 3px;
text-transform: uppercase;
transition: all .6s;
border: 1px solid black !important;
display: inline-block;
margin-top: -5px;
margin-bottom: 15px;
text-decoration: none;
}
/* line 2675, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li a:hover {
color: #171717 !important;
background: white !important;
transition: all .3s !important;
border: 1px solid black !important;
}
@media screen and (max-width: 700px) {
/* line 2644, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li {
width: 90%;
}
}
/* line 2687, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li ul {
list-style: disc !important;
}
/* line 2690, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li ul li {
display: list-item !important;
width: 95% !important;
margin: 0;
padding: 0 0 .2em 0;
border: none;
list-style: disc !important;
font-size: .8em;
margin-left: 0px;
}
/* line 2703, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li h1 {
display: block;
font-size: 1.2em;
line-height: .9em;
}
/* line 2709, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li h3 {
font-size: .9em;
text-transform: uppercase;
color: #666;
display: none;
}
/* line 2716, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul li p {
width: 100%;
font-weight: 100;
font-size: .9em;
margin: 10px 0;
}
/* line 2724, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul .fullWidth {
width: 90%;
}
/* line 2726, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul .fullWidth img {
float: right;
width: 45%;
padding-left: 30px;
padding-top: 30px;
}
@media screen and (max-width: 700px) {
/* line 2726, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul .fullWidth img {
width: 100%;
padding-bottom: 30px;
}
}
/* line 2737, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarWrap ul .fullWidth p {
width: 90% !important;
}
/* line 2752, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap {
width: 100%;
position: relative;
display: block;
}
/* line 2757, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageBG {
width: 100%;
height: 250px;
margin: 0;
padding: 0;
background-size: cover !important;
}
@media screen and (max-width: 700px) {
/* line 2757, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageBG {
height: 350px;
}
}
@media screen and (max-width: 500px) {
/* line 2757, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageBG {
height: 300px;
}
}
/* line 2773, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageBouldering {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageBouldering.jpg");
background-size: cover;
background-position: center right;
}
/* line 2779, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageBigwall {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageBigwall.jpg");
background-size: cover;
background-position: center center;
}
/* line 2785, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageRoute {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageRoute.jpg");
background-size: cover;
background-position: center center;
}
/* line 2791, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageRunning {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageRunning.png");
background-size: cover;
background-position: center center;
}
/* line 2797, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageNutrition {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageNutrition.jpg");
background-size: cover;
background-position: center center;
}
/* line 2803, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageShelters {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageShelter.jpg");
background-size: cover;
background-position: center center;
}
/* line 2809, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villagePhoto {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villagePhoto.jpg");
background-size: cover;
background-position: center center;
}
/* line 2815, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap .villageApparel {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/villageApparel.jpg");
background-size: cover;
background-position: center center;
}
/* line 2821, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap h1 {
margin-top: 15px;
text-transform: uppercase;
font-family: 'Avenir LT W01_85 Heavy1475544';
font-weight: 900;
}
/* line 2828, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap p {
margin: 0 auto;
width: 70%;
}
@media screen and (max-width: 700px) {
/* line 2828, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap p {
width: 90%;
text-align: left;
}
}
/* line 2838, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul {
display: block;
vertical-align: top;
}
/* line 2842, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li {
width: 42%;
margin: 30px 2%;
border: 1px solid #ccc;
padding: 15px;
text-align: left;
vertical-align: top;
list-style: none !important;
display: inline-block !important;
}
/* line 2852, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li h5 {
letter-spacing: 0px !important;
padding: 0 0 0 1em !important;
line-height: 1em !important;
}
/* line 2858, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li a {
color: white !important;
padding: 5px 10px;
background: black;
border-radius: 3px;
text-transform: uppercase;
transition: all .6s;
border: 1px solid black !important;
display: inline-block;
margin-top: -5px;
margin-bottom: 15px;
text-decoration: none;
display: none !important;
}
/* line 2874, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li a:hover {
color: #171717 !important;
background: white !important;
transition: all .3s !important;
border: 1px solid black !important;
}
@media screen and (max-width: 700px) {
/* line 2842, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li {
width: 90%;
}
}
/* line 2886, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li ul {
list-style: disc !important;
}
/* line 2889, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li ul li {
display: list-item !important;
width: 95% !important;
margin: 0;
padding: 0 0 .2em 0;
border: none;
list-style: disc !important;
font-size: .8em;
margin-left: 0px;
}
/* line 2902, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li h1 {
display: block;
font-size: 1.2em;
line-height: .9em;
}
/* line 2908, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li h3 {
font-size: .9em;
text-transform: uppercase;
color: #666;
display: none;
}
/* line 2915, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul li p {
width: 100%;
font-weight: 100;
font-size: .9em;
margin: 10px 0;
}
/* line 2923, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul .fullWidth {
width: 90%;
}
/* line 2925, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul .fullWidth img {
float: right;
width: 45%;
padding-left: 30px;
padding-top: 30px;
}
@media screen and (max-width: 700px) {
/* line 2925, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul .fullWidth img {
width: 100%;
padding-bottom: 30px;
}
}
/* line 2936, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .villageWrap ul .fullWidth p {
width: 90% !important;
}
/* line 2953, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap h1 {
text-transform: uppercase;
font-size: 2em;
padding: 0 0 30px 15px !important;
}
/* line 2960, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap {
position: relative;
display: block;
padding-left: 15px;
margin-bottom: 60px;
}
/* line 2967, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap h3 {
margin-left: 0px !important;
font-size: 1.5em;
margin-bottom: 0;
margin-top: 1.5em;
}
/* line 2974, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap h4 {
text-transform: uppercase;
margin-bottom: 5px;
display: none !important;
}
/* line 2980, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .topMargin {
margin-top: 30px;
}
/* line 2984, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .eventCategory {
font-weight: 900;
text-transform: uppercase;
}
/* line 2990, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem {
width: 98%;
position: relative;
display: block;
margin-bottom: 0;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 2990, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem {
border-bottom: 1px solid #ccc;
margin-bottom: 15px;
margin-top: 15px;
}
}
/* line 3003, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem .seminarTitle {
position: relative;
display: inline-block;
width: 65%;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 3003, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem .seminarTitle {
width: 100%;
max-width: 100%;
}
}
/* line 3017, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem .seminarTime {
position: relative;
display: inline-block;
width: 18%;
min-width: 170px;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 3017, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem .seminarTime {
width: 100%;
max-width: 100%;
}
}
/* line 3030, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .seminarScheduleWrap .seminarCatWrap .seminarItem p {
display: none !important;
height: 1px !important;
}
/* line 3046, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap h1 {
text-transform: uppercase;
font-size: 3em;
padding: 0 0 30px 15px !important;
}
/* line 3053, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap {
position: relative;
display: block;
padding-left: 15px;
margin-bottom: 60px;
}
/* line 3060, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap h3 {
margin-left: 0px !important;
font-size: 1.5em;
margin-bottom: .5em;
margin-top: 1.5em;
}
/* line 3067, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap h4 {
text-transform: uppercase;
margin-bottom: 15px;
}
/* line 3072, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .topMargin {
margin-top: 30px;
}
/* line 3076, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventCategory {
font-weight: 900;
text-transform: uppercase;
}
/* line 3082, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem {
width: 98%;
position: relative;
display: block;
margin-bottom: 0;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 3082, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem {
border-bottom: 1px solid #ccc;
margin-bottom: 10px;
margin-top: 10px;
}
}
/* line 3095, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem .eventTitle {
position: relative;
display: inline-block;
width: 45%;
max-width: 400px;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 3095, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem .eventTitle {
width: 100%;
max-width: 100%;
}
}
/* line 3108, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem .eventLocation {
position: relative;
display: inline-block;
width: 35%;
max-width: 300px;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 3108, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem .eventLocation {
width: 100%;
max-width: 100%;
}
}
/* line 3121, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem .eventTime {
position: relative;
display: inline-block;
width: 18%;
max-width: 170px;
vertical-align: top;
}
@media screen and (max-width: 600px) {
/* line 3121, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem .eventTime {
width: 100%;
max-width: 100%;
}
}
/* line 3134, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .scheduleWrap .dayWrap .eventItem p {
display: none !important;
height: 1px !important;
}
/* line 3151, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .newsContent h1.page-title {
text-align: center !important;
width: 100% !important;
}
/* line 3156, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .newsContent .page-title {
text-align: center !important;
}
/* line 3164, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .mapWrap {
width: 100%;
margin: 0 auto;
display: block;
position: relative;
text-align: center;
padding: 30px 0;
}
/* line 3172, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .mapWrap iframe {
width: 100%;
height: auto;
min-height: 600px;
}
@media screen and (max-width: 450px) {
/* line 3172, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .mapWrap iframe {
min-height: 450px;
}
}
/* line 3198, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content ul {
padding: 0 0 1.5em 3em;
}
/* line 3201, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content ul li {
font-size: .9em;
list-style: square;
}
/* line 3208, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content dl {
padding: 0 0 1.5em 3em;
}
/* line 3211, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content dl dt {
font-size: 1em;
font-weight: 900;
text-transform: uppercase;
}
/* line 3217, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content dl dd {
font-size: .9em;
font-weight: 100;
color: #171717;
width: 90%;
max-width: 650px;
}
/* line 3224, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content dl dd a {
padding: 3px 10px;
border: 1px solid #171717;
border-radius: 3px;
background: #171717;
color: white !important;
text-decoration: none !important;
text-transform: uppercase;
transition: all .3s;
font-size: .9em;
}
/* line 3236, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content dl dd a:hover {
padding: 3px 10px;
border: 1px solid #171717;
border-radius: 3px;
background: white;
color: #171717 !important;
text-decoration: none !important;
text-transform: uppercase;
transition: all .5s;
}
/* line 3255, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content table {
width: 100%;
border: 1px solid #999;
margin-bottom: 1.5em;
}
/* line 3260, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content table caption {
margin: 0 0 7px;
font-size: 0.75em;
color: #ccc;
text-transform: uppercase;
letter-spacing: 1px;
}
/* line 3269, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content tr {
border-bottom: 1px solid #999;
}
/* line 3272, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content tr:nth-child(even) {
background-color: #ccc;
}
/* line 3277, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content td {
padding: 7px;
border-right: 1px solid #999;
}
/* line 3281, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content td:last-child {
border-right: 0;
}
/* line 3286, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content th {
background-color: #ccc;
border-bottom: 1px solid #999;
border-right: 1px solid #999;
}
/* line 3291, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content th:last-child {
border-right: 0;
}
/* line 3296, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content blockquote {
margin: 0 0 1.5em 0.75em;
padding: 0 0 0 0.75em;
border-left: 3px solid teal;
font-style: italic;
color: #ccc;
}
/* line 3311, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content dd {
margin-left: 0;
font-size: 0.9em;
color: #787878;
margin-bottom: 1.5em;
}
/* line 3318, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content img {
margin: 0 0 1.5em 0;
max-width: 100%;
height: auto;
}
/* line 3328, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content .size-auto,
.entry-content .size-full,
.entry-content .size-large,
.entry-content .size-medium,
.entry-content .size-thumbnail {
max-width: 100%;
height: auto;
}
/* line 3337, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.entry-content pre {
background: #000;
color: #ccc;
font-size: 0.9em;
padding: 1.5em;
margin: 0 0 1.5em;
border-radius: 3px;
}
/* end .entry-content */
/* line 3348, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wp-caption {
max-width: 100%;
background: #eee;
padding: 5px;
/* images inside wp-caption */
}
/* line 3354, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wp-caption img {
max-width: 100%;
margin-bottom: 0;
width: 100%;
}
/* line 3360, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.wp-caption p.wp-caption-text {
font-size: 0.85em;
margin: 4px 0 7px;
text-align: center;
}
/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
/* line 3391, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.tags {
margin: 0;
}
/*********************
SIDEBARS & ASIDES
*********************/
/* line 3408, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.widget ul li {
/* deep nesting */
}
/* line 3425, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.no-widgets {
background-color: #FFF;
padding: 1.5em;
text-align: center;
border: 1px solid #333;
border-radius: 2px;
margin-bottom: 1.5em;
}
/*********************
FOOTER STYLES
*********************/
/* line 3438, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer {
text-transform: uppercase;
color: #ccc;
height: auto;
display: block;
}
/* line 3444, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .gridWrap {
background: black !important;
padding: 15px;
height: auto;
}
/* line 3450, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks {
float: right;
width: 100%;
position: relative;
display: inline-block;
}
/* line 3456, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails {
width: 30%;
height: 100%;
position: relative;
display: inline-block;
float: left;
}
/* line 3463, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails .logoWrap {
padding-top: 10px;
display: inline-block;
}
/* line 3467, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails .logoWrap svg {
width: 90%;
max-width: 250px;
}
/* line 3472, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails .logoWrap h1 {
display: inline-block;
vertical-align: top;
font-weight: 900;
text-transform: uppercase;
line-height: .85em;
font-size: 2em;
letter-spacing: -4px;
text-align: right;
color: white !important;
}
/* line 3483, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails .logoWrap h1 .headerEvent {
letter-spacing: 0px;
}
/* line 3488, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails .logoWrap h1 .headerAcademy {
letter-spacing: -4px;
}
/* line 3493, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails .logoWrap .logo {
display: inline-block;
width: 90px;
padding-left: 5px;
margin-top: -4px;
}
/* line 3501, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks .footerDetails h3 {
font-weight: 400;
color: white;
line-height: 1em;
font-size: .85em;
text-align: left;
margin-top: 0px;
}
/* line 3512, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks ul {
width: 65%;
float: right;
}
/* line 3516, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks ul a {
text-decoration: none;
color: white;
font-weight: 600;
font-size: .7em;
}
/* line 3523, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .footerLinks ul li {
display: inline-block;
width: 190px;
}
/* line 3530, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap {
padding: 30px 0;
}
/* line 3533, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap h3 {
text-transform: uppercase;
font-weight: 100;
text-align: center;
font-size: .9em;
color: white !important;
}
/* line 3541, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul {
text-align: center;
}
/* line 3544, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul a {
display: inline-block;
width: 130px;
height: 150px;
padding: 35px 15px 0;
margin: .5em .5em;
}
/* line 3553, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul li {
width: 100%;
height: 100%;
list-style: none;
}
/* line 3559, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .arcteryx {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_arc.png") no-repeat;
background-position: center 0px;
background-size: 120px;
}
/* line 3565, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .montblanc {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_montblanc.png") no-repeat;
background-position: center 0px;
background-size: 110px;
}
/* line 3571, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .gore {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_gore.png") no-repeat;
background-position: center -10px;
background-size: 140px;
}
/* line 3577, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .petzl {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_petzl.png") no-repeat;
background-position: center 0px;
background-size: 110px;
}
/* line 3583, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .msr {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_msr.png") no-repeat;
background-position: center 0px;
background-size: 120px;
}
/* line 3589, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .lyo {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/sponsors_lyo.png") no-repeat;
background-position: center 0px;
background-size: 100px;
}
/* line 3595, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .peak {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/sponsors_peak.png") no-repeat;
background-position: center 0px;
background-size: 100px;
}
/* line 3601, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .suunto {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/sponsors_suunto.png") no-repeat;
background-position: center 0px;
background-size: 100px;
}
/* line 3607, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .nomadic {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/sponsors_nomadic.png") no-repeat;
background-position: center 0px;
background-size: 100px;
}
/* line 3613, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .mdo {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/sponsors_mdo.png") no-repeat;
background-position: center 0px;
background-size: 100px;
}
/* line 3620, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .eoca {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/05/sponsors_eoca.png") no-repeat;
background-position: center 0px;
background-size: 100px;
}
/* line 3626, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .msr {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_msr.png") no-repeat;
background-position: center 0px;
background-size: 120px;
}
/* line 3632, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .msr {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_msr.png") no-repeat;
background-position: center 0px;
background-size: 120px;
}
/* line 3638, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer .sponsorWrap ul .msr {
background: url("http://chamonix.arcteryxacademy.com/wp-content/uploads/2016/01/sponsor_msr.png") no-repeat;
background-position: center 0px;
background-size: 120px;
}
/* line 3646, C:/xampp/htdocs/academywp/wp-content/themes/academy/library/scss/_base.scss */
.footer p {
font-weight: 900;
font-size: .8em;
}
/*# sourceMappingURL=../css/style.map */ | 0.162048 | 0.03962 |
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #64EAD1;
font-family: Arial, Helvetica, sans-serif;
font-family: Calibri;
font-weight: 400;
line-height: 1.3em;
max-width: 1000px;
margin: auto;
padding: 10px;
text-align: justify;
margin-bottom: 100px;
}
p {
margin: 15px;
}
h1 {
background-color: #CC0000;
text-shadow: 2px 2px black;
color: white;
padding: 20px;
text-transform: uppercase;
text-align: center;
line-height: 1.3em;
}
h2 {
background-color: #5DDDC5;
box-shadow: 0 0 1px black;
margin-top: 30px;
margin-bottom: 20px;
padding: 20px;
text-align: center;
text-transform: uppercase;
line-height: 1.3em;
}
h3 {
background-color: black;
color: white;
font-size: 1.2em;
line-height: 1em;
margin-top: 25px;
margin-bottom: 12px;
padding: 10px;
text-transform: uppercase;
text-align: left;
line-height: 1.3em;
}
h4 {
margin-left: 20px;
}
img {
width: 300px;
border-radius: 20px;
border: 1px solid white;
}
.imgAlign {
text-align: center;
}
legend {
text-align: center;
margin-bottom: 40px;
}
h4::selection {
background: rgb(50, 200, 250);
}
strong::selection,
a::selection,
p::selection,
li::selection {
background: red;
color: white;
}
h1::selection {
background: black;
color: white;
}
h2::selection {
background: black;
color: white;
}
h3::selection {
background: black;
color: white;
}
ul {
margin: 10px;
margin-left: 30px;
}
a {
color: #CC0000;
text-decoration: none;
}
a:hover {
color: #F6942A;
transition: .5s;
}
@media (max-width: 600px) {
body {
font-size: 13px;
line-height: 1.2em;
width: 100vw;
}
img {
max-width: 200px;
}
h3 {
text-align: center;
line-height: 1.5;
}
h4 {
margin-left: 15px;
}
ul {
margin: 10px;
margin-left: 15px;
}
.stickyResp {
position: sticky;
top: 0;
}
} | estilos/estilos.css | * {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background-color: #64EAD1;
font-family: Arial, Helvetica, sans-serif;
font-family: Calibri;
font-weight: 400;
line-height: 1.3em;
max-width: 1000px;
margin: auto;
padding: 10px;
text-align: justify;
margin-bottom: 100px;
}
p {
margin: 15px;
}
h1 {
background-color: #CC0000;
text-shadow: 2px 2px black;
color: white;
padding: 20px;
text-transform: uppercase;
text-align: center;
line-height: 1.3em;
}
h2 {
background-color: #5DDDC5;
box-shadow: 0 0 1px black;
margin-top: 30px;
margin-bottom: 20px;
padding: 20px;
text-align: center;
text-transform: uppercase;
line-height: 1.3em;
}
h3 {
background-color: black;
color: white;
font-size: 1.2em;
line-height: 1em;
margin-top: 25px;
margin-bottom: 12px;
padding: 10px;
text-transform: uppercase;
text-align: left;
line-height: 1.3em;
}
h4 {
margin-left: 20px;
}
img {
width: 300px;
border-radius: 20px;
border: 1px solid white;
}
.imgAlign {
text-align: center;
}
legend {
text-align: center;
margin-bottom: 40px;
}
h4::selection {
background: rgb(50, 200, 250);
}
strong::selection,
a::selection,
p::selection,
li::selection {
background: red;
color: white;
}
h1::selection {
background: black;
color: white;
}
h2::selection {
background: black;
color: white;
}
h3::selection {
background: black;
color: white;
}
ul {
margin: 10px;
margin-left: 30px;
}
a {
color: #CC0000;
text-decoration: none;
}
a:hover {
color: #F6942A;
transition: .5s;
}
@media (max-width: 600px) {
body {
font-size: 13px;
line-height: 1.2em;
width: 100vw;
}
img {
max-width: 200px;
}
h3 {
text-align: center;
line-height: 1.5;
}
h4 {
margin-left: 15px;
}
ul {
margin: 10px;
margin-left: 15px;
}
.stickyResp {
position: sticky;
top: 0;
}
} | 0.626353 | 0.152663 |
0.5
20-Nov-2017
*/
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("www.meneame.net") {
a {
color: #0065FF;
}
a:visited {
color: #3D72C3;
}
.comment-body .tooltip {
color: #ff6400;
}
#variable {
min-width: 900px !important;
background-color: #414141 !important;
}
#wrap {
background-color: #1D1D1D;
}
.news-summary {
background-color: #323232 !important;
margin-bottom: 2%;
border-radius: 3px 3px 3px 3px;
}
.news-content{
color: #fff !important;
}
.sidebox h5 a {
color: #fff !important;
}
.news-body h1 a, .news-body h2 a {
color: #FF6400 !important;
}
.header-top-wrapper {
background-color: #BD6135 !important;
}
.sidebox.brown .header {
background: #BD6135 !important;
}
.box {
color: #000;
}
.comment-body {
background: #575757 !important;
color: #FFF !important;
}
.votes {
background-color: #000 !important;
}
.news-details a.comments {
background-color: inherit !important;
}
.ads-interlinks {
display: none;
}
.topbox .title {
color: #000;
}
select.options-comments {
color: #000;
padding:0;
}
.news-details {
color: #c2c0c0;
}
.news-details span.sub-name a {
color: #C8C8C8;
}
fieldset {
background: #575757;
}
.sidebox .comments p {
color: #B9B9B9;
}
.sidebox .comments a {
color: #C8C8C8;
}
.pages {
background: inherit;
}
.pages span.nextprev {
border: 1px solid #FF7F00;
color: #FF7F00;
}
.section {
color: #FFF;
}
#toplink a.footer {
background-color: #CC611A;
}
.topbox {
background: #323232;
}
.threader.zero {
margin: 0% 1% 0% 1%;
}
#widget-official-subs-slider {
display: none;
}
.high {
background-color: red !important;
}
.user {
background-color: #23527c !important;
}
.votes-counter {
color:white !important;
}
.promoted-article .center-content {
background: #424242 !important;
}
.subname {
color:black !important;
}
.contents-layout {
background: #414141 !important;
}
.section-profile .contents-layout .contents-menu a {
color: #fff;
}
.section-profile .contents-layout .contents-menu a.selected, .section-profile .contents-layout .contents-menu a:hover {
background: #575757;
text-decoration: none;
}
.section-profile .contents-layout .contents-body {
flex: 1;
padding: 20px;
background: #575757;
overflow: hidden;
}
.news-summary .warn, .story-blog .warn {
background: #AE3232;
}
.sneaker
{
font-size: 17px !important;
}
.story-blog .main-content h1 a, .story-blog .main-content h1 a:visited {
color: #E35616;
}
.story-blog .main-content h1, .section.section-article-submit .input-title {
font-size: 35px;
}
.story-blog .main-content .text, .section.section-article-submit .input-editable {
font-size: 15px;
color: #EAEAEA;
}
.story-blog .best-comments .item .text {
font-size: 14px;
color: #e1e1e1;
letter-spacing: 0px;;
line-height: calc1;
margin-bottom: 15px;
}
.story-blog .best-comments .item .text .tooltip {
color: #e01d1d;
}
.story-blog .best-comments .item .author a, .story-blog .related .item .author a {
color: #e35614;
}
#widget-popular {
display: none;
}
} | data/usercss/136742.user.css | 0.5
20-Nov-2017
*/
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain("www.meneame.net") {
a {
color: #0065FF;
}
a:visited {
color: #3D72C3;
}
.comment-body .tooltip {
color: #ff6400;
}
#variable {
min-width: 900px !important;
background-color: #414141 !important;
}
#wrap {
background-color: #1D1D1D;
}
.news-summary {
background-color: #323232 !important;
margin-bottom: 2%;
border-radius: 3px 3px 3px 3px;
}
.news-content{
color: #fff !important;
}
.sidebox h5 a {
color: #fff !important;
}
.news-body h1 a, .news-body h2 a {
color: #FF6400 !important;
}
.header-top-wrapper {
background-color: #BD6135 !important;
}
.sidebox.brown .header {
background: #BD6135 !important;
}
.box {
color: #000;
}
.comment-body {
background: #575757 !important;
color: #FFF !important;
}
.votes {
background-color: #000 !important;
}
.news-details a.comments {
background-color: inherit !important;
}
.ads-interlinks {
display: none;
}
.topbox .title {
color: #000;
}
select.options-comments {
color: #000;
padding:0;
}
.news-details {
color: #c2c0c0;
}
.news-details span.sub-name a {
color: #C8C8C8;
}
fieldset {
background: #575757;
}
.sidebox .comments p {
color: #B9B9B9;
}
.sidebox .comments a {
color: #C8C8C8;
}
.pages {
background: inherit;
}
.pages span.nextprev {
border: 1px solid #FF7F00;
color: #FF7F00;
}
.section {
color: #FFF;
}
#toplink a.footer {
background-color: #CC611A;
}
.topbox {
background: #323232;
}
.threader.zero {
margin: 0% 1% 0% 1%;
}
#widget-official-subs-slider {
display: none;
}
.high {
background-color: red !important;
}
.user {
background-color: #23527c !important;
}
.votes-counter {
color:white !important;
}
.promoted-article .center-content {
background: #424242 !important;
}
.subname {
color:black !important;
}
.contents-layout {
background: #414141 !important;
}
.section-profile .contents-layout .contents-menu a {
color: #fff;
}
.section-profile .contents-layout .contents-menu a.selected, .section-profile .contents-layout .contents-menu a:hover {
background: #575757;
text-decoration: none;
}
.section-profile .contents-layout .contents-body {
flex: 1;
padding: 20px;
background: #575757;
overflow: hidden;
}
.news-summary .warn, .story-blog .warn {
background: #AE3232;
}
.sneaker
{
font-size: 17px !important;
}
.story-blog .main-content h1 a, .story-blog .main-content h1 a:visited {
color: #E35616;
}
.story-blog .main-content h1, .section.section-article-submit .input-title {
font-size: 35px;
}
.story-blog .main-content .text, .section.section-article-submit .input-editable {
font-size: 15px;
color: #EAEAEA;
}
.story-blog .best-comments .item .text {
font-size: 14px;
color: #e1e1e1;
letter-spacing: 0px;;
line-height: calc1;
margin-bottom: 15px;
}
.story-blog .best-comments .item .text .tooltip {
color: #e01d1d;
}
.story-blog .best-comments .item .author a, .story-blog .related .item .author a {
color: #e35614;
}
#widget-popular {
display: none;
}
} | 0.138491 | 0.066297 |
section.contentMe {
width:1200px;
height:110rem;
background:#333;
}
section.contentMe > h2.sectionHeading {
font-family : var(--fReg);
font-size : 4.5rem;
text-align:center ;
line-height:15rem;
text-transform: capitalize;
color:#00ccff;
}
section.contentMe > .mainDiv {
width:90%;
height:90rem;
margin:auto;
display:grid;
grid-template: 100% / 50% 50%;
}
section.contentMe > .mainDiv .form {
border:1px solid red;
display:grid;
place-items: center;
border-radius:1.5rem;
border-top-left-radius:5rem;
border-bottom-left-radius:5rem;
overflow:hidden;
background:#fff;
}
section.contentMe > .mainDiv .form > form.mainForm{
width:90%;
height:90%;
background:transparent;
}
input , textarea {
border:1.5px solid #00303c;
border-radius:1rem;
font-family:var(--fReg);
font-size:2.5rem;
padding-left:1rem;
outline:none;
}
input:focus ,textarea:focus {
outline:none;
border-color:#00ccff;
box-shadow:1px 1px 10px 1px #00ccff;
}
form.mainForm .nameGroup , form.mainForm .emailGroup , form.mainForm .textareaGroup {
width:100%;
padding:0 2rem;
}
input[id="fname"] , input[id="lname"] , input[id="email"]{
width:100%;
height:5rem;
margin-top:.5rem;
}
textarea {
width:100%;
height:25rem;
margin-top:.5rem;
padding-top:1rem;
padding-left:1rem;
}
label {
font-family:var(--fh);
font-size:3rem;
color:#000;
}
#nameErr , #emailErr , #textareaErr {
width:100%;
padding:1.5rem;
font-family:var(--fReg);
font-size:2rem;
font-style: italic;
font-weight: bold ;
padding-left:.5rem;
color:#ff004c;
display:block;
}
button[type='submit'] {
width:7rem;
height:7rem;
border-radius:50%;
display:grid;
place-items: center;
margin-top:1.5rem;
background: transparent;
border:1px solid #ff5c00;
}
button[type='submit'] i {
font-size:4rem;
color:#ff5c00;
}
button[type='submit']:hover {
background:#ff5c00;
}
button[type='submit']:hover .fa-paper-plane {
color:#fff
}
.fnameDiv , .lnameDiv , .textareaGroup{
position: relative;
}
form.mainForm .nameGroup i {
font-size:2.5rem;
position:absolute;
bottom:1.3rem;
right:1.5rem;
}
form.mainForm .emailGroup .wrapper {
width:100%;
position: relative;
}
form.mainForm .emailGroup .wrapper i {
font-size:2.5rem;
position:absolute;
bottom:1.3rem;
right:1.5rem;
}
form.mainForm i.fa-check-circle {
color:#03ca3d;
}
form.mainForm i.fa-times-circle {
color:#ff4c00
}
/* Success Design */
form.mainForm .nameGroup .fnameDiv.success input {
border-color:#03ca3d;
}
form.mainForm .nameGroup .lnameDiv.success input {
border-color:#03ca3d;
}
form.mainForm .emailGroup.success input {
border-color:#03ca3d;
}
form.mainForm .textareaGroup.success textarea{
border-color:#03ca3d;
}
/* Error Design */
form.mainForm .error input:focus , form.mainForm .error textarea:focus {
border-color:#ff4c00;
box-shadow:1px 1px 10px 1px #ff4c00;
}
form.mainForm .nameGroup .fnameDiv.error input {
border-color:#ff4c00;
}
form.mainForm .nameGroup .lnameDiv.error input {
border-color:#ff4c00;
}
form.mainForm .emailGroup.error input {
border-color:#ff4c00;
}
form.mainForm .textareaGroup.error textarea {
border-color:#ff4c00;
}
button:disabled {
border-color:#333;
pointer-events: none;
}
button:disabled i {
color:#333;
}
section.contentMe > .mainDiv .textBox {
border-radius:1.5rem;
border-top-right-radius:5rem;
border-bottom-right-radius:5rem;
display:grid;
place-items:center;
background:#000;
}
section.contentMe > .mainDiv .textBox .textWrapper {
width:90%;
margin:auto;
}
section.contentMe > .mainDiv .textBox .textWrapper p {
font-family:var(--fReg);
font-size:2.5rem;
padding:1rem;
color:#fff;
}
section.contentMe > .mainDiv .textBox .textWrapper p:first-child {
font-size:4rem;
color:#ff5c00;
font-weight:bold;
word-spacing:1.3rem;
}
section.contentMe > .mainDiv .textBox .textWrapper p:nth-child(3) {
font-size:3rem;
font-weight:bold;
color:#ff5c00;
}
section.contentMe > .mainDiv .textBox .textWrapper h3 {
margin-top:2rem;
font-family:var(--fSig);
font-size:4.2rem;
padding-left:1.5rem;
color:#d7d7d7;
} | css/form.css | section.contentMe {
width:1200px;
height:110rem;
background:#333;
}
section.contentMe > h2.sectionHeading {
font-family : var(--fReg);
font-size : 4.5rem;
text-align:center ;
line-height:15rem;
text-transform: capitalize;
color:#00ccff;
}
section.contentMe > .mainDiv {
width:90%;
height:90rem;
margin:auto;
display:grid;
grid-template: 100% / 50% 50%;
}
section.contentMe > .mainDiv .form {
border:1px solid red;
display:grid;
place-items: center;
border-radius:1.5rem;
border-top-left-radius:5rem;
border-bottom-left-radius:5rem;
overflow:hidden;
background:#fff;
}
section.contentMe > .mainDiv .form > form.mainForm{
width:90%;
height:90%;
background:transparent;
}
input , textarea {
border:1.5px solid #00303c;
border-radius:1rem;
font-family:var(--fReg);
font-size:2.5rem;
padding-left:1rem;
outline:none;
}
input:focus ,textarea:focus {
outline:none;
border-color:#00ccff;
box-shadow:1px 1px 10px 1px #00ccff;
}
form.mainForm .nameGroup , form.mainForm .emailGroup , form.mainForm .textareaGroup {
width:100%;
padding:0 2rem;
}
input[id="fname"] , input[id="lname"] , input[id="email"]{
width:100%;
height:5rem;
margin-top:.5rem;
}
textarea {
width:100%;
height:25rem;
margin-top:.5rem;
padding-top:1rem;
padding-left:1rem;
}
label {
font-family:var(--fh);
font-size:3rem;
color:#000;
}
#nameErr , #emailErr , #textareaErr {
width:100%;
padding:1.5rem;
font-family:var(--fReg);
font-size:2rem;
font-style: italic;
font-weight: bold ;
padding-left:.5rem;
color:#ff004c;
display:block;
}
button[type='submit'] {
width:7rem;
height:7rem;
border-radius:50%;
display:grid;
place-items: center;
margin-top:1.5rem;
background: transparent;
border:1px solid #ff5c00;
}
button[type='submit'] i {
font-size:4rem;
color:#ff5c00;
}
button[type='submit']:hover {
background:#ff5c00;
}
button[type='submit']:hover .fa-paper-plane {
color:#fff
}
.fnameDiv , .lnameDiv , .textareaGroup{
position: relative;
}
form.mainForm .nameGroup i {
font-size:2.5rem;
position:absolute;
bottom:1.3rem;
right:1.5rem;
}
form.mainForm .emailGroup .wrapper {
width:100%;
position: relative;
}
form.mainForm .emailGroup .wrapper i {
font-size:2.5rem;
position:absolute;
bottom:1.3rem;
right:1.5rem;
}
form.mainForm i.fa-check-circle {
color:#03ca3d;
}
form.mainForm i.fa-times-circle {
color:#ff4c00
}
/* Success Design */
form.mainForm .nameGroup .fnameDiv.success input {
border-color:#03ca3d;
}
form.mainForm .nameGroup .lnameDiv.success input {
border-color:#03ca3d;
}
form.mainForm .emailGroup.success input {
border-color:#03ca3d;
}
form.mainForm .textareaGroup.success textarea{
border-color:#03ca3d;
}
/* Error Design */
form.mainForm .error input:focus , form.mainForm .error textarea:focus {
border-color:#ff4c00;
box-shadow:1px 1px 10px 1px #ff4c00;
}
form.mainForm .nameGroup .fnameDiv.error input {
border-color:#ff4c00;
}
form.mainForm .nameGroup .lnameDiv.error input {
border-color:#ff4c00;
}
form.mainForm .emailGroup.error input {
border-color:#ff4c00;
}
form.mainForm .textareaGroup.error textarea {
border-color:#ff4c00;
}
button:disabled {
border-color:#333;
pointer-events: none;
}
button:disabled i {
color:#333;
}
section.contentMe > .mainDiv .textBox {
border-radius:1.5rem;
border-top-right-radius:5rem;
border-bottom-right-radius:5rem;
display:grid;
place-items:center;
background:#000;
}
section.contentMe > .mainDiv .textBox .textWrapper {
width:90%;
margin:auto;
}
section.contentMe > .mainDiv .textBox .textWrapper p {
font-family:var(--fReg);
font-size:2.5rem;
padding:1rem;
color:#fff;
}
section.contentMe > .mainDiv .textBox .textWrapper p:first-child {
font-size:4rem;
color:#ff5c00;
font-weight:bold;
word-spacing:1.3rem;
}
section.contentMe > .mainDiv .textBox .textWrapper p:nth-child(3) {
font-size:3rem;
font-weight:bold;
color:#ff5c00;
}
section.contentMe > .mainDiv .textBox .textWrapper h3 {
margin-top:2rem;
font-family:var(--fSig);
font-size:4.2rem;
padding-left:1.5rem;
color:#d7d7d7;
} | 0.293506 | 0.054601 |
.wf-header-img {
position: relative;
width: 100%;
height: 100%;
text-align: center;
background-image: url('../img/lady-with-bino.jpeg');
background-position: center center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
#support {
position: relative;
width: 100%;
height: auto;
text-align: center;
background-image: url('../img/support.jpg');
background-position: center center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
}
#support * {
color: #fff!important;
}
#jobOpportunities{
position: relative;
width: 100%;
height: auto;
background-image: url('../img/handshake.jpeg');
background-position: top center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
#jobOpportunities .img-overlay-inner, #flipAlumni, #faculty, #support .container {
padding: 150px 0;
}
#feature {
background: #f2f2f2;
padding-bottom: 40px;
}
.features{
padding: 0;
}
.feature-wrap {
margin-bottom: 35px;
overflow: hidden;
}
.feature-wrap h3{
margin-top: 10px;
}
.feature-wrap .pull-left {
margin-right: 25px;
}
.feature-wrap i:hover {
background: #006699;
color: #fff;
box-shadow: inset 0 0 0 5px #c52d2f;
-webkit-box-shadow: inset 0 0 0 5px #00cccc;
border: 3px solid #00cccc;
}
.feature-wrap > a i{
font-size: 48px;
height: 110px;
width: 110px;
margin: 3px;
border-radius: 100%;
line-height: 110px;
text-align:center;
background: #00cccc;
color: #fff;
border: 3px solid #ffffff;
box-shadow: inset 0 0 0 5px #f2f2f2;
-webkit-box-shadow: inset 0 0 0 5px #f2f2f2;
-webkit-transition: 500ms;
-moz-transition: 500ms;
-o-transition: 500ms;
transition: 500ms;
margin-right: 25px;
}
.padding-right-none {
padding-right: none;
}
/*carousel override*/
.carousel-caption {
bottom: 10%;
border-radius: 2px;
padding:30px;
}
.carousel-caption p {
font-size:32px;
text-shadow:none!important;
}
#whyFlipHome h1 {
margin-top: 50px;
} | css/why-flip.css | .wf-header-img {
position: relative;
width: 100%;
height: 100%;
text-align: center;
background-image: url('../img/lady-with-bino.jpeg');
background-position: center center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
#support {
position: relative;
width: 100%;
height: auto;
text-align: center;
background-image: url('../img/support.jpg');
background-position: center center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
background-repeat: no-repeat;
}
#support * {
color: #fff!important;
}
#jobOpportunities{
position: relative;
width: 100%;
height: auto;
background-image: url('../img/handshake.jpeg');
background-position: top center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
background-size: cover;
-o-background-size: cover;
}
#jobOpportunities .img-overlay-inner, #flipAlumni, #faculty, #support .container {
padding: 150px 0;
}
#feature {
background: #f2f2f2;
padding-bottom: 40px;
}
.features{
padding: 0;
}
.feature-wrap {
margin-bottom: 35px;
overflow: hidden;
}
.feature-wrap h3{
margin-top: 10px;
}
.feature-wrap .pull-left {
margin-right: 25px;
}
.feature-wrap i:hover {
background: #006699;
color: #fff;
box-shadow: inset 0 0 0 5px #c52d2f;
-webkit-box-shadow: inset 0 0 0 5px #00cccc;
border: 3px solid #00cccc;
}
.feature-wrap > a i{
font-size: 48px;
height: 110px;
width: 110px;
margin: 3px;
border-radius: 100%;
line-height: 110px;
text-align:center;
background: #00cccc;
color: #fff;
border: 3px solid #ffffff;
box-shadow: inset 0 0 0 5px #f2f2f2;
-webkit-box-shadow: inset 0 0 0 5px #f2f2f2;
-webkit-transition: 500ms;
-moz-transition: 500ms;
-o-transition: 500ms;
transition: 500ms;
margin-right: 25px;
}
.padding-right-none {
padding-right: none;
}
/*carousel override*/
.carousel-caption {
bottom: 10%;
border-radius: 2px;
padding:30px;
}
.carousel-caption p {
font-size:32px;
text-shadow:none!important;
}
#whyFlipHome h1 {
margin-top: 50px;
} | 0.365004 | 0.097048 |
#small-preloader, #occupations-preloader{
/* width: 200px;
height:200px;
margin: 0 auto;
padding: 50%;*/
}
.windows8 {
position: relative;
width: 100px;
height:100px;
margin: 10% auto;
}
.windows8 .wBall {
position: absolute;
width: 95px;
height: 95px;
opacity: 0;
transform: rotate(225deg);
-o-transform: rotate(225deg);
-ms-transform: rotate(225deg);
-webkit-transform: rotate(225deg);
-moz-transform: rotate(225deg);
animation: orbit 6.96s infinite;
-o-animation: orbit 6.96s infinite;
-ms-animation: orbit 6.96s infinite;
-webkit-animation: orbit 6.96s infinite;
-moz-animation: orbit 6.96s infinite;
}
.windows8 .wBall .wInnerBall{
position: absolute;
width: 13px;
height: 13px;
background: rgb(0,80,146);
left:0;
top:0;
border-radius: 13px;
}
.windows8 #wBall_1, .windows8 #wBall_1s, .windows8 #wBall_1o{
animation-delay: 1.52s;
-o-animation-delay: 1.52s;
-ms-animation-delay: 1.52s;
-webkit-animation-delay: 1.52s;
-moz-animation-delay: 1.52s;
}
.windows8 #wBall_2, .windows8 #wBall_2s, .windows8 #wBall_2o{
animation-delay: 0.3s;
-o-animation-delay: 0.3s;
-ms-animation-delay: 0.3s;
-webkit-animation-delay: 0.3s;
-moz-animation-delay: 0.3s;
}
.windows8 #wBall_3, .windows8 #wBall_3s, .windows8 #wBall_3o {
animation-delay: 0.61s;
-o-animation-delay: 0.61s;
-ms-animation-delay: 0.61s;
-webkit-animation-delay: 0.61s;
-moz-animation-delay: 0.61s;
}
.windows8 #wBall_4, .windows8 #wBall_4s, .windows8 #wBall_4o {
animation-delay: 0.91s;
-o-animation-delay: 0.91s;
-ms-animation-delay: 0.91s;
-webkit-animation-delay: 0.91s;
-moz-animation-delay: 0.91s;
}
.windows8 #wBall_5, .windows8 #wBall_5s, .windows8 #wBall_5o {
animation-delay: 1.22s;
-o-animation-delay: 1.22s;
-ms-animation-delay: 1.22s;
-webkit-animation-delay: 1.22s;
-moz-animation-delay: 1.22s;
}
@keyframes orbit {
0% {
opacity: 1;
z-index:99;
transform: rotate(180deg);
animation-timing-function: ease-out;
}
7% {
opacity: 1;
transform: rotate(300deg);
animation-timing-function: linear;
origin:0%;
}
30% {
opacity: 1;
transform:rotate(410deg);
animation-timing-function: ease-in-out;
origin:7%;
}
39% {
opacity: 1;
transform: rotate(645deg);
animation-timing-function: linear;
origin:30%;
}
70% {
opacity: 1;
transform: rotate(770deg);
animation-timing-function: ease-out;
origin:39%;
}
75% {
opacity: 1;
transform: rotate(900deg);
animation-timing-function: ease-out;
origin:70%;
}
76% {
opacity: 0;
transform:rotate(900deg);
}
100% {
opacity: 0;
transform: rotate(900deg);
}
}
@-o-keyframes orbit {
0% {
opacity: 1;
z-index:99;
-o-transform: rotate(180deg);
-o-animation-timing-function: ease-out;
}
7% {
opacity: 1;
-o-transform: rotate(300deg);
-o-animation-timing-function: linear;
-o-origin:0%;
}
30% {
opacity: 1;
-o-transform:rotate(410deg);
-o-animation-timing-function: ease-in-out;
-o-origin:7%;
}
39% {
opacity: 1;
-o-transform: rotate(645deg);
-o-animation-timing-function: linear;
-o-origin:30%;
}
70% {
opacity: 1;
-o-transform: rotate(770deg);
-o-animation-timing-function: ease-out;
-o-origin:39%;
}
75% {
opacity: 1;
-o-transform: rotate(900deg);
-o-animation-timing-function: ease-out;
-o-origin:70%;
}
76% {
opacity: 0;
-o-transform:rotate(900deg);
}
100% {
opacity: 0;
-o-transform: rotate(900deg);
}
}
@-ms-keyframes orbit {
0% {
opacity: 1;
z-index:99;
-ms-transform: rotate(180deg);
-ms-animation-timing-function: ease-out;
}
7% {
opacity: 1;
-ms-transform: rotate(300deg);
-ms-animation-timing-function: linear;
-ms-origin:0%;
}
30% {
opacity: 1;
-ms-transform:rotate(410deg);
-ms-animation-timing-function: ease-in-out;
-ms-origin:7%;
}
39% {
opacity: 1;
-ms-transform: rotate(645deg);
-ms-animation-timing-function: linear;
-ms-origin:30%;
}
70% {
opacity: 1;
-ms-transform: rotate(770deg);
-ms-animation-timing-function: ease-out;
-ms-origin:39%;
}
75% {
opacity: 1;
-ms-transform: rotate(900deg);
-ms-animation-timing-function: ease-out;
-ms-origin:70%;
}
76% {
opacity: 0;
-ms-transform:rotate(900deg);
}
100% {
opacity: 0;
-ms-transform: rotate(900deg);
}
}
@-webkit-keyframes orbit {
0% {
opacity: 1;
z-index:99;
-webkit-transform: rotate(180deg);
-webkit-animation-timing-function: ease-out;
}
7% {
opacity: 1;
-webkit-transform: rotate(300deg);
-webkit-animation-timing-function: linear;
-webkit-origin:0%;
}
30% {
opacity: 1;
-webkit-transform:rotate(410deg);
-webkit-animation-timing-function: ease-in-out;
-webkit-origin:7%;
}
39% {
opacity: 1;
-webkit-transform: rotate(645deg);
-webkit-animation-timing-function: linear;
-webkit-origin:30%;
}
70% {
opacity: 1;
-webkit-transform: rotate(770deg);
-webkit-animation-timing-function: ease-out;
-webkit-origin:39%;
}
75% {
opacity: 1;
-webkit-transform: rotate(900deg);
-webkit-animation-timing-function: ease-out;
-webkit-origin:70%;
}
76% {
opacity: 0;
-webkit-transform:rotate(900deg);
}
100% {
opacity: 0;
-webkit-transform: rotate(900deg);
}
}
@-moz-keyframes orbit {
0% {
opacity: 1;
z-index:99;
-moz-transform: rotate(180deg);
-moz-animation-timing-function: ease-out;
}
7% {
opacity: 1;
-moz-transform: rotate(300deg);
-moz-animation-timing-function: linear;
-moz-origin:0%;
}
30% {
opacity: 1;
-moz-transform:rotate(410deg);
-moz-animation-timing-function: ease-in-out;
-moz-origin:7%;
}
39% {
opacity: 1;
-moz-transform: rotate(645deg);
-moz-animation-timing-function: linear;
-moz-origin:30%;
}
70% {
opacity: 1;
-moz-transform: rotate(770deg);
-moz-animation-timing-function: ease-out;
-moz-origin:39%;
}
75% {
opacity: 1;
-moz-transform: rotate(900deg);
-moz-animation-timing-function: ease-out;
-moz-origin:70%;
}
76% {
opacity: 0;
-moz-transform:rotate(900deg);
}
100% {
opacity: 0;
-moz-transform: rotate(900deg);
}
} | modeus-php/public/css/preloader.css | #small-preloader, #occupations-preloader{
/* width: 200px;
height:200px;
margin: 0 auto;
padding: 50%;*/
}
.windows8 {
position: relative;
width: 100px;
height:100px;
margin: 10% auto;
}
.windows8 .wBall {
position: absolute;
width: 95px;
height: 95px;
opacity: 0;
transform: rotate(225deg);
-o-transform: rotate(225deg);
-ms-transform: rotate(225deg);
-webkit-transform: rotate(225deg);
-moz-transform: rotate(225deg);
animation: orbit 6.96s infinite;
-o-animation: orbit 6.96s infinite;
-ms-animation: orbit 6.96s infinite;
-webkit-animation: orbit 6.96s infinite;
-moz-animation: orbit 6.96s infinite;
}
.windows8 .wBall .wInnerBall{
position: absolute;
width: 13px;
height: 13px;
background: rgb(0,80,146);
left:0;
top:0;
border-radius: 13px;
}
.windows8 #wBall_1, .windows8 #wBall_1s, .windows8 #wBall_1o{
animation-delay: 1.52s;
-o-animation-delay: 1.52s;
-ms-animation-delay: 1.52s;
-webkit-animation-delay: 1.52s;
-moz-animation-delay: 1.52s;
}
.windows8 #wBall_2, .windows8 #wBall_2s, .windows8 #wBall_2o{
animation-delay: 0.3s;
-o-animation-delay: 0.3s;
-ms-animation-delay: 0.3s;
-webkit-animation-delay: 0.3s;
-moz-animation-delay: 0.3s;
}
.windows8 #wBall_3, .windows8 #wBall_3s, .windows8 #wBall_3o {
animation-delay: 0.61s;
-o-animation-delay: 0.61s;
-ms-animation-delay: 0.61s;
-webkit-animation-delay: 0.61s;
-moz-animation-delay: 0.61s;
}
.windows8 #wBall_4, .windows8 #wBall_4s, .windows8 #wBall_4o {
animation-delay: 0.91s;
-o-animation-delay: 0.91s;
-ms-animation-delay: 0.91s;
-webkit-animation-delay: 0.91s;
-moz-animation-delay: 0.91s;
}
.windows8 #wBall_5, .windows8 #wBall_5s, .windows8 #wBall_5o {
animation-delay: 1.22s;
-o-animation-delay: 1.22s;
-ms-animation-delay: 1.22s;
-webkit-animation-delay: 1.22s;
-moz-animation-delay: 1.22s;
}
@keyframes orbit {
0% {
opacity: 1;
z-index:99;
transform: rotate(180deg);
animation-timing-function: ease-out;
}
7% {
opacity: 1;
transform: rotate(300deg);
animation-timing-function: linear;
origin:0%;
}
30% {
opacity: 1;
transform:rotate(410deg);
animation-timing-function: ease-in-out;
origin:7%;
}
39% {
opacity: 1;
transform: rotate(645deg);
animation-timing-function: linear;
origin:30%;
}
70% {
opacity: 1;
transform: rotate(770deg);
animation-timing-function: ease-out;
origin:39%;
}
75% {
opacity: 1;
transform: rotate(900deg);
animation-timing-function: ease-out;
origin:70%;
}
76% {
opacity: 0;
transform:rotate(900deg);
}
100% {
opacity: 0;
transform: rotate(900deg);
}
}
@-o-keyframes orbit {
0% {
opacity: 1;
z-index:99;
-o-transform: rotate(180deg);
-o-animation-timing-function: ease-out;
}
7% {
opacity: 1;
-o-transform: rotate(300deg);
-o-animation-timing-function: linear;
-o-origin:0%;
}
30% {
opacity: 1;
-o-transform:rotate(410deg);
-o-animation-timing-function: ease-in-out;
-o-origin:7%;
}
39% {
opacity: 1;
-o-transform: rotate(645deg);
-o-animation-timing-function: linear;
-o-origin:30%;
}
70% {
opacity: 1;
-o-transform: rotate(770deg);
-o-animation-timing-function: ease-out;
-o-origin:39%;
}
75% {
opacity: 1;
-o-transform: rotate(900deg);
-o-animation-timing-function: ease-out;
-o-origin:70%;
}
76% {
opacity: 0;
-o-transform:rotate(900deg);
}
100% {
opacity: 0;
-o-transform: rotate(900deg);
}
}
@-ms-keyframes orbit {
0% {
opacity: 1;
z-index:99;
-ms-transform: rotate(180deg);
-ms-animation-timing-function: ease-out;
}
7% {
opacity: 1;
-ms-transform: rotate(300deg);
-ms-animation-timing-function: linear;
-ms-origin:0%;
}
30% {
opacity: 1;
-ms-transform:rotate(410deg);
-ms-animation-timing-function: ease-in-out;
-ms-origin:7%;
}
39% {
opacity: 1;
-ms-transform: rotate(645deg);
-ms-animation-timing-function: linear;
-ms-origin:30%;
}
70% {
opacity: 1;
-ms-transform: rotate(770deg);
-ms-animation-timing-function: ease-out;
-ms-origin:39%;
}
75% {
opacity: 1;
-ms-transform: rotate(900deg);
-ms-animation-timing-function: ease-out;
-ms-origin:70%;
}
76% {
opacity: 0;
-ms-transform:rotate(900deg);
}
100% {
opacity: 0;
-ms-transform: rotate(900deg);
}
}
@-webkit-keyframes orbit {
0% {
opacity: 1;
z-index:99;
-webkit-transform: rotate(180deg);
-webkit-animation-timing-function: ease-out;
}
7% {
opacity: 1;
-webkit-transform: rotate(300deg);
-webkit-animation-timing-function: linear;
-webkit-origin:0%;
}
30% {
opacity: 1;
-webkit-transform:rotate(410deg);
-webkit-animation-timing-function: ease-in-out;
-webkit-origin:7%;
}
39% {
opacity: 1;
-webkit-transform: rotate(645deg);
-webkit-animation-timing-function: linear;
-webkit-origin:30%;
}
70% {
opacity: 1;
-webkit-transform: rotate(770deg);
-webkit-animation-timing-function: ease-out;
-webkit-origin:39%;
}
75% {
opacity: 1;
-webkit-transform: rotate(900deg);
-webkit-animation-timing-function: ease-out;
-webkit-origin:70%;
}
76% {
opacity: 0;
-webkit-transform:rotate(900deg);
}
100% {
opacity: 0;
-webkit-transform: rotate(900deg);
}
}
@-moz-keyframes orbit {
0% {
opacity: 1;
z-index:99;
-moz-transform: rotate(180deg);
-moz-animation-timing-function: ease-out;
}
7% {
opacity: 1;
-moz-transform: rotate(300deg);
-moz-animation-timing-function: linear;
-moz-origin:0%;
}
30% {
opacity: 1;
-moz-transform:rotate(410deg);
-moz-animation-timing-function: ease-in-out;
-moz-origin:7%;
}
39% {
opacity: 1;
-moz-transform: rotate(645deg);
-moz-animation-timing-function: linear;
-moz-origin:30%;
}
70% {
opacity: 1;
-moz-transform: rotate(770deg);
-moz-animation-timing-function: ease-out;
-moz-origin:39%;
}
75% {
opacity: 1;
-moz-transform: rotate(900deg);
-moz-animation-timing-function: ease-out;
-moz-origin:70%;
}
76% {
opacity: 0;
-moz-transform:rotate(900deg);
}
100% {
opacity: 0;
-moz-transform: rotate(900deg);
}
} | 0.417034 | 0.077762 |
@tailwind utilities;
@variants responsive, hover {
.translate-r-2px {
transform: translateX(2px) !important;
}
.transition-fast {
transition: all 0.2s ease !important;
}
}
.scrollbar-none {
scrollbar-width: none;
&::-webkit-scrollbar {
display: none !important;
}
}
.scrollbar-w-2::-webkit-scrollbar {
@apply w-2 h-2 !important;
}
.scrollbar-track-gray-lighter::-webkit-scrollbar-track {
@apply bg-gray-300 !important;
}
.scrollbar-thumb-gray::-webkit-scrollbar-thumb {
@apply bg-gray-400 !important;
}
.scrollbar-thumb-rounded::-webkit-scrollbar-thumb {
@apply rounded !important;
}
@supports (position: sticky) {
@media (min-width: theme('screens.lg')) {
.sticky\?lg\:h-screen {
height: 100vh !important;
}
.sticky\?lg\:h-\(screen-16\) {
height: calc(100vh - 4rem) !important;
}
}
}
@media (prefers-reduced-motion: reduce) {
.motion-reduce\:transform-none:hover {
transform: none !important;
}
}
@media (prefers-reduced-motion: no-preference) {
.motion-safe\:hover\:-translate-y-1:hover {
--transform-translate-y: -0.25rem !important;
}
}
@media (prefers-reduced-motion: no-preference) {
.motion-safe\:hover\:scale-110:hover {
--transform-scale-x: 1.1 !important;
--transform-scale-y: 1.1 !important;
}
}
.focus\:bg-gray-600:focus {
@apply bg-gray-600 !important;
}
.focus\:text-white:focus {
@apply text-white !important;
}
.group:hover .group-hover\:text-white {
@apply text-white !important;
}
.focus-within\:border-teal-500:focus-within {
@apply border-teal-500 !important;
}
.focus-visible\:underline:focus-visible {
@apply underline !important;
}
.focus-visible\:underline.focus-visible {
@apply underline !important;
}
.active\:bg-blue-700:active {
@apply bg-blue-700 !important;
}
.checked\:bg-gray-900:checked {
@apply bg-gray-900 !important;
}
.checked\:border-transparent:checked {
@apply border-transparent !important;
}
.table-collapse {
border-collapse: collapse !important;
}
[v-cloak] .v-cloak-hidden {
display: none !important;
}
.appearance-none::-ms-expand {
display: none !important;
}
.bg-checkered {
background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23F0F0F0' d='M0 0h8v8H0zm8 8h8v8H8z'/%3E%3C/svg%3E");
background-size: 16px 16px;
}
.bg-wave {
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 190' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1440' height='190' fill='white'/%3E%3Cpath d='M1440 95.4893C790 245.489 650 -54.5107 0 95.4893V0H1440V95.4893Z' fill='%23F7FAFC'/%3E%3Cg stroke-width='2'%3E%3Cg stroke='%23EDF2F7'%3E%3Cpath d='M0 95.4893C650 -54.5107 790 245.489 1440 95.4893'/%3E%3Cpath d='M0 95.4893C650 15.4893 790 175.489 1440 95.4893'/%3E%3Cpath d='M0 95.4893C650 -214.511 790 405.489 1440 95.4893'/%3E%3C/g%3E%3Cpath d='M0 95.4893C650 -134.511 790 325.489 1440 95.4893' stroke='%234FD1C5'/%3E%3C/g%3E%3C/svg%3E");
}
.after\:hash::after {
content: '#';
} | new-site/app/css/utilities.css | @tailwind utilities;
@variants responsive, hover {
.translate-r-2px {
transform: translateX(2px) !important;
}
.transition-fast {
transition: all 0.2s ease !important;
}
}
.scrollbar-none {
scrollbar-width: none;
&::-webkit-scrollbar {
display: none !important;
}
}
.scrollbar-w-2::-webkit-scrollbar {
@apply w-2 h-2 !important;
}
.scrollbar-track-gray-lighter::-webkit-scrollbar-track {
@apply bg-gray-300 !important;
}
.scrollbar-thumb-gray::-webkit-scrollbar-thumb {
@apply bg-gray-400 !important;
}
.scrollbar-thumb-rounded::-webkit-scrollbar-thumb {
@apply rounded !important;
}
@supports (position: sticky) {
@media (min-width: theme('screens.lg')) {
.sticky\?lg\:h-screen {
height: 100vh !important;
}
.sticky\?lg\:h-\(screen-16\) {
height: calc(100vh - 4rem) !important;
}
}
}
@media (prefers-reduced-motion: reduce) {
.motion-reduce\:transform-none:hover {
transform: none !important;
}
}
@media (prefers-reduced-motion: no-preference) {
.motion-safe\:hover\:-translate-y-1:hover {
--transform-translate-y: -0.25rem !important;
}
}
@media (prefers-reduced-motion: no-preference) {
.motion-safe\:hover\:scale-110:hover {
--transform-scale-x: 1.1 !important;
--transform-scale-y: 1.1 !important;
}
}
.focus\:bg-gray-600:focus {
@apply bg-gray-600 !important;
}
.focus\:text-white:focus {
@apply text-white !important;
}
.group:hover .group-hover\:text-white {
@apply text-white !important;
}
.focus-within\:border-teal-500:focus-within {
@apply border-teal-500 !important;
}
.focus-visible\:underline:focus-visible {
@apply underline !important;
}
.focus-visible\:underline.focus-visible {
@apply underline !important;
}
.active\:bg-blue-700:active {
@apply bg-blue-700 !important;
}
.checked\:bg-gray-900:checked {
@apply bg-gray-900 !important;
}
.checked\:border-transparent:checked {
@apply border-transparent !important;
}
.table-collapse {
border-collapse: collapse !important;
}
[v-cloak] .v-cloak-hidden {
display: none !important;
}
.appearance-none::-ms-expand {
display: none !important;
}
.bg-checkered {
background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23F0F0F0' d='M0 0h8v8H0zm8 8h8v8H8z'/%3E%3C/svg%3E");
background-size: 16px 16px;
}
.bg-wave {
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 190' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='1440' height='190' fill='white'/%3E%3Cpath d='M1440 95.4893C790 245.489 650 -54.5107 0 95.4893V0H1440V95.4893Z' fill='%23F7FAFC'/%3E%3Cg stroke-width='2'%3E%3Cg stroke='%23EDF2F7'%3E%3Cpath d='M0 95.4893C650 -54.5107 790 245.489 1440 95.4893'/%3E%3Cpath d='M0 95.4893C650 15.4893 790 175.489 1440 95.4893'/%3E%3Cpath d='M0 95.4893C650 -214.511 790 405.489 1440 95.4893'/%3E%3C/g%3E%3Cpath d='M0 95.4893C650 -134.511 790 325.489 1440 95.4893' stroke='%234FD1C5'/%3E%3C/g%3E%3C/svg%3E");
}
.after\:hash::after {
content: '#';
} | 0.343342 | 0.066965 |
/* The sidebar menu */
.sidenav {
height: 100%; /* Full-height: remove this if you want "auto" height */
width: 360px; /* Set the width of the sidebar */
position: fixed; /* Fixed Sidebar (stay in place on scroll) */
z-index: 1; /* Stay on top */
top: 0; /* Stay at the top */
left: 0;
background-color: #111; /* Black */
overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 20px;
}
/* The navigation menu links */
.sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
color: #f1f1f1;
}
/* Style page content */
.main {
margin-left: 360px; /* Same as the width of the sidebar */
padding: 0px 0px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidenav {
padding-top: 15px;
}
.sidenav a {
font-size: 18px;
}
}
#displayTicket {
font-size: 93pt;
line-height: 1;
font-weight: bold;
}
#displayOffice {
font-size: 30pt;
text-transform: uppercase;
font-weight: bold;
line-height: 1;
}
span[id^='officeHistorico'] {
text-transform: uppercase;
}
/* Style clock */
.wrap {
width: 90%;
max-width: 1000px;
/*margin:auto;*/
}
.widget {
width: 100%;
/*margin:32px; */
}
.widget p {
display: inline-block;
line-height: 1;
margin-bottom: 0rem;
}
.fecha {
text-align: center;
font-size: 1.5em;
margin-bottom: 0.3125rem;
/*margin-bottom: 5px;*/
background: rgba(0,0,0,.5);
padding: 10px;
width: 100%;
}
.reloj {
width: 100%;
padding: 10px;
font-size: 4em;
text-align: center;
background: rgba(0,0,0,.5);
}
.reloj .caja-segundos {
display: inline-block;
}
.reloj .segundos,
.reloj .ampm {
font-size: 2rem;
display: block;
}
#btnSignOut {
position: fixed;
bottom: 20px;
left: 30px;
z-index: 1;
visibility: hidden;
opacity: 0;
transition: all .5s ease;
}
#btnSignOut.show {
opacity: 1;
visibility: visible;
} | src/Web/wwwroot/css/DisplayStyle.css | /* The sidebar menu */
.sidenav {
height: 100%; /* Full-height: remove this if you want "auto" height */
width: 360px; /* Set the width of the sidebar */
position: fixed; /* Fixed Sidebar (stay in place on scroll) */
z-index: 1; /* Stay on top */
top: 0; /* Stay at the top */
left: 0;
background-color: #111; /* Black */
overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 20px;
}
/* The navigation menu links */
.sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
color: #f1f1f1;
}
/* Style page content */
.main {
margin-left: 360px; /* Same as the width of the sidebar */
padding: 0px 0px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidenav {
padding-top: 15px;
}
.sidenav a {
font-size: 18px;
}
}
#displayTicket {
font-size: 93pt;
line-height: 1;
font-weight: bold;
}
#displayOffice {
font-size: 30pt;
text-transform: uppercase;
font-weight: bold;
line-height: 1;
}
span[id^='officeHistorico'] {
text-transform: uppercase;
}
/* Style clock */
.wrap {
width: 90%;
max-width: 1000px;
/*margin:auto;*/
}
.widget {
width: 100%;
/*margin:32px; */
}
.widget p {
display: inline-block;
line-height: 1;
margin-bottom: 0rem;
}
.fecha {
text-align: center;
font-size: 1.5em;
margin-bottom: 0.3125rem;
/*margin-bottom: 5px;*/
background: rgba(0,0,0,.5);
padding: 10px;
width: 100%;
}
.reloj {
width: 100%;
padding: 10px;
font-size: 4em;
text-align: center;
background: rgba(0,0,0,.5);
}
.reloj .caja-segundos {
display: inline-block;
}
.reloj .segundos,
.reloj .ampm {
font-size: 2rem;
display: block;
}
#btnSignOut {
position: fixed;
bottom: 20px;
left: 30px;
z-index: 1;
visibility: hidden;
opacity: 0;
transition: all .5s ease;
}
#btnSignOut.show {
opacity: 1;
visibility: visible;
} | 0.439747 | 0.09187 |
html {
font-family: Arimo, sans-serif;
}
:root {
--mainColor: #fbff00;
}
*{
list-style: none;
box-sizing: border-box;
}
body {
margin: 8px 7.5vw;
}
h1 {
font-size: 1.1rem;
margin: 0;
}
h4 {
font-size: 1rem;
margin: 0;
font-weight: bolder;
font-style: italic;
}
h5 {
font-size: 0.9rem;
font-weight: lighter;
}
a {
text-decoration: none;
color: inherit;
}
nav {
background: #ff6600;
height: 70px;
width: 100%;
overflow: hidden;
border-radius: 5px;
}
label.logo{
font-size: 18px;
line-height: 70px;
padding: 0 20px;
font-weight: bold;
}
nav ul{
float: right;
margin-right: 20px;
}
nav ul li {
display: inline-block;
line-height: 70px;
margin: 0 5px;
}
#check{
display: none;
}
.checkbtn{
font-size: 20px;
color: white;
float: right;
line-height: 70px;
margin-right: 20px;
display: none;
}
nav ul li a {
color: #000;
padding-left: 10px;
text-decoration: none;
font-size: 15px;
}
nav ul li a:hover {
background:
linear-gradient(
to right,
var(--mainColor) 0%,
var(--mainColor) 5px,
transparent
);
text-decoration: none;
}
label.logo:hover{
cursor:pointer;
background:
linear-gradient(
to right,
var(--mainColor) 0%,
var(--mainColor) 5px,
transparent
);
text-decoration: none;
}
.container {
display: flex;
flex-direction: column;
align-self: center;
background-color: #f6f6efd8;
border-radius: 5px;
margin-top: 5px;
}
.hidden {
display: none;
}
form {
display: flex;
text-align: center;
flex-direction: column;
margin: 8px 18px 0;
}
form > * {
margin: 10px 0;
}
form label {
font-size: 0.9rem;
font-weight: 700;
display: inline-block;
width: 3.5rem;
text-align: right;
margin-right: 5px;
}
form input {
font-size: 0.8rem;
border: none;
border-radius: 2px;
padding: 8px;
width: 300px;
box-shadow: 0 0 3px 1px #d3d3d3;
}
form input:focus {
outline: none;
box-shadow: 0 0 4px 1px darkgray;
}
form > button {
width: 4rem;
margin: 5px 0px 15px 65px;
border: none;
border-radius: 4px;
padding: 8px;
font-size: 0.85rem;
background-color: lightslategray;
color: white;
cursor: pointer;
transition: all 0.15s;
}
form > button:hover {
background-color: dimgray;
}
form > hr {
margin: 0;
border: 0.5px solid lightgray;
}
.login-input label {
width: 70px;
}
.account-form button {
width: 4rem;
margin-left: 80px;
}
#create-account-form button {
padding: 10px;
width: 8rem;
}
.articles-list {
margin: 20px 5px;
}
.articles-list > li {
color: gray;
font-size: 0.8rem;
margin: 10px 0;
cursor: pointer;
}
.star,
i.far.fa-trash-alt,
i.fas.fa-pencil-alt{
font-size: 0.9rem;
margin: 0 2px;
cursor: pointer;
}
i.far.fa-trash-alt:hover {
color: crimson;
}
i.fas.fa-pencil-alt:hover {
color: blueviolet;
}
.article-link > strong {
color: black;
font-size: 0.85rem;
font-weight: normal;
margin: 18px 0;
}
.article-link:hover {
text-decoration: none;
}
.article-hostname:hover {
text-decoration: underline;
}
.article-author {
margin-top: 5px;
margin-left: 25px;
}
.article-username {
display: block;
margin-top: 5px;
margin-left: 25px;
}
#favorited-articles,
#filtered-articles,
#my-articles {
list-style: none;
padding-left: 20px;
}
.account-forms-container {
padding-left: 20px;
}
#create-account-form button {
margin-bottom: 25px;
}
#user-profile {
padding: 10px 20px 20px;
font-size: 0.9rem;
}
#user-profile > * {
margin: 10px 0;
}
i.fas.fa-star{
font-size: 20px;
color: rgba(218, 206, 206, 0.856);
}
#nav-user-profile{
font-size: 0.5rem;
font-weight: bolder;
padding-right: 0rem;
font-style: oblique;
/* padding: .5rem; */
}
#nav-logout{
padding-left: 0rem;
}
@media screen and (max-width: 730px) {
/* ul#links {
display: none;
} */
body {
margin: 0;
}
.checkbtn{
display:block;
}
label.logo{
font-size: 15px;
padding-left: 50px;
}
nav-ul{
position: fixed;
}
nav ul li a{
font-size: 10px;
}
ul#links {
position: fixed;
width: 85%;
height: 100vh;
top: 80px;
left: -100%;
text-align: center;
background: #d3d3d3;
transition: all .5s;
margin-left: 7.5%;
}
nav ul li{
display: block;
margin: 50px 0;
line-height: 30px;
}
#check:checked ~ul{
left: 0;
}
section#user-profile{
text-align: center;
}
/* #user-profile button{
margin-left: 220px;
} */
form button{
margin-left: 220px;
}
form{
text-align: center;
}
}
@media screen and (min-width: 992px) {
body {
max-width: 900px;
margin: 8px auto;
}
}
button[type="submit"]{
display:inline-block;
margin: 0 auto;
margin-bottom: 10px;
} | style.css | html {
font-family: Arimo, sans-serif;
}
:root {
--mainColor: #fbff00;
}
*{
list-style: none;
box-sizing: border-box;
}
body {
margin: 8px 7.5vw;
}
h1 {
font-size: 1.1rem;
margin: 0;
}
h4 {
font-size: 1rem;
margin: 0;
font-weight: bolder;
font-style: italic;
}
h5 {
font-size: 0.9rem;
font-weight: lighter;
}
a {
text-decoration: none;
color: inherit;
}
nav {
background: #ff6600;
height: 70px;
width: 100%;
overflow: hidden;
border-radius: 5px;
}
label.logo{
font-size: 18px;
line-height: 70px;
padding: 0 20px;
font-weight: bold;
}
nav ul{
float: right;
margin-right: 20px;
}
nav ul li {
display: inline-block;
line-height: 70px;
margin: 0 5px;
}
#check{
display: none;
}
.checkbtn{
font-size: 20px;
color: white;
float: right;
line-height: 70px;
margin-right: 20px;
display: none;
}
nav ul li a {
color: #000;
padding-left: 10px;
text-decoration: none;
font-size: 15px;
}
nav ul li a:hover {
background:
linear-gradient(
to right,
var(--mainColor) 0%,
var(--mainColor) 5px,
transparent
);
text-decoration: none;
}
label.logo:hover{
cursor:pointer;
background:
linear-gradient(
to right,
var(--mainColor) 0%,
var(--mainColor) 5px,
transparent
);
text-decoration: none;
}
.container {
display: flex;
flex-direction: column;
align-self: center;
background-color: #f6f6efd8;
border-radius: 5px;
margin-top: 5px;
}
.hidden {
display: none;
}
form {
display: flex;
text-align: center;
flex-direction: column;
margin: 8px 18px 0;
}
form > * {
margin: 10px 0;
}
form label {
font-size: 0.9rem;
font-weight: 700;
display: inline-block;
width: 3.5rem;
text-align: right;
margin-right: 5px;
}
form input {
font-size: 0.8rem;
border: none;
border-radius: 2px;
padding: 8px;
width: 300px;
box-shadow: 0 0 3px 1px #d3d3d3;
}
form input:focus {
outline: none;
box-shadow: 0 0 4px 1px darkgray;
}
form > button {
width: 4rem;
margin: 5px 0px 15px 65px;
border: none;
border-radius: 4px;
padding: 8px;
font-size: 0.85rem;
background-color: lightslategray;
color: white;
cursor: pointer;
transition: all 0.15s;
}
form > button:hover {
background-color: dimgray;
}
form > hr {
margin: 0;
border: 0.5px solid lightgray;
}
.login-input label {
width: 70px;
}
.account-form button {
width: 4rem;
margin-left: 80px;
}
#create-account-form button {
padding: 10px;
width: 8rem;
}
.articles-list {
margin: 20px 5px;
}
.articles-list > li {
color: gray;
font-size: 0.8rem;
margin: 10px 0;
cursor: pointer;
}
.star,
i.far.fa-trash-alt,
i.fas.fa-pencil-alt{
font-size: 0.9rem;
margin: 0 2px;
cursor: pointer;
}
i.far.fa-trash-alt:hover {
color: crimson;
}
i.fas.fa-pencil-alt:hover {
color: blueviolet;
}
.article-link > strong {
color: black;
font-size: 0.85rem;
font-weight: normal;
margin: 18px 0;
}
.article-link:hover {
text-decoration: none;
}
.article-hostname:hover {
text-decoration: underline;
}
.article-author {
margin-top: 5px;
margin-left: 25px;
}
.article-username {
display: block;
margin-top: 5px;
margin-left: 25px;
}
#favorited-articles,
#filtered-articles,
#my-articles {
list-style: none;
padding-left: 20px;
}
.account-forms-container {
padding-left: 20px;
}
#create-account-form button {
margin-bottom: 25px;
}
#user-profile {
padding: 10px 20px 20px;
font-size: 0.9rem;
}
#user-profile > * {
margin: 10px 0;
}
i.fas.fa-star{
font-size: 20px;
color: rgba(218, 206, 206, 0.856);
}
#nav-user-profile{
font-size: 0.5rem;
font-weight: bolder;
padding-right: 0rem;
font-style: oblique;
/* padding: .5rem; */
}
#nav-logout{
padding-left: 0rem;
}
@media screen and (max-width: 730px) {
/* ul#links {
display: none;
} */
body {
margin: 0;
}
.checkbtn{
display:block;
}
label.logo{
font-size: 15px;
padding-left: 50px;
}
nav-ul{
position: fixed;
}
nav ul li a{
font-size: 10px;
}
ul#links {
position: fixed;
width: 85%;
height: 100vh;
top: 80px;
left: -100%;
text-align: center;
background: #d3d3d3;
transition: all .5s;
margin-left: 7.5%;
}
nav ul li{
display: block;
margin: 50px 0;
line-height: 30px;
}
#check:checked ~ul{
left: 0;
}
section#user-profile{
text-align: center;
}
/* #user-profile button{
margin-left: 220px;
} */
form button{
margin-left: 220px;
}
form{
text-align: center;
}
}
@media screen and (min-width: 992px) {
body {
max-width: 900px;
margin: 8px auto;
}
}
button[type="submit"]{
display:inline-block;
margin: 0 auto;
margin-bottom: 10px;
} | 0.430866 | 0.085786 |
.xcrud{
margin-bottom: 20px;
}
.xcrud-list{
min-width: 100%;
width: auto;
display: table !important;
margin-bottom: 3px;
/* table-layout: fixed;*/
}
.xcrud-list th, .xcrud-list td{
/*white-space:nowrap;*/
}
.xcrud-column:hover{
text-decoration: underline;
cursor: pointer;
}
.xcrud-header{
border-bottom: 1px solid #E5E5E5;
}
.xcrud-top-actions{
padding: 5px 0 15px;
}
.xcrud-container{
position: relative;
}
.xcrud-list-container{
overflow-x: auto;
clear: both;
}
.xcrud-nav{
padding: 15px 10px 5px;
}
.xcrud-nav > *{
vertical-align: top;
margin-top: 0;
margin-bottom: 0;
}
td.xcrud-actions{
text-align: right;
white-space:nowrap;
padding-bottom: 0;
}
.xcrud-actions a{
vertical-align: top;
}
.xcrud-actions .xcrud-action{
margin-top: 0;
margin-bottom: -1px;
}
.xcrud .xcrud-list .xcrud-row:hover td.xcrud-actions-fixed{
position: absolute;
right: 1px;
border-left: none;
margin-top: 0;
}
.xcrud-overlay{
/*display: none;*/
position: absolute;
top: 0;
left: 0;
bottom: 0;
background: #fff 50% 50% no-repeat url(loading.gif);
opacity: 0.5;
width: 100%;
}
.xcrud-num{
color: #bbb;
width: 10px;
}
.xcrud-benchmark{
margin: 5px;
font-size: 10px;
line-height: 1.2;
float: right;
color: #999;
}
.xcrud-benchmark span {
margin: 0 5px;
}
table.xcrud-details.table td input,table.xcrud-details.table td select,table.xcrud-details.table td textarea{
margin-bottom: 0;
}
.xcrud .tab-content{
padding: 8px;
border: 1px solid #DDDDDD;
border-top: 0;
}
/*.xcrud .xcrud-remove-file{
vertical-align: bottom;
margin-left: 5px;
}*/
.xcrud .xcrud-file-container.error{
border: 1px solid #E20101;
background-color: #FFE4E4;
padding-left: 5px;
}
.xcrud .xcrud-file-container{
font-size: 14px;
line-height: 30px;
}
.xcrud .xcrud-file-container img{
max-width: 99%;
vertical-align: bottom;
}
.xcrud-add-file{
/*margin-top: 5px;*/
position: relative;
overflow: hidden;
}
input.xcrud-upload{
cursor: pointer;
direction: ltr;
font-size: 100%;
margin: 0;
opacity: 0;
position: absolute;
right: 0;
top: 0;
transform: translate(-300px, 0px) scale(4);
-webkit-transform: translate(-300px, 0px) scale(4);
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}
.xcrud .xcrud-list td.xcrud-sum{
font-weight: bold;
}
/* column styles */
.xcrud-list td.align-left{
text-align: left
}
.xcrud-list td.align-right{
text-align: right;
}
.xcrud-list td.align-center{
text-align: center;
}
.xcrud-list td.font-bold{
font-weight: bold;
}
.xcrud-list td.font-italic{
font-style: italic;
}
.xcrud-list td.text-underline{
text-decoration: underline;
}
.xcrud .xcrud-list td .btn{
margin-top: -4px;
margin-bottom: -4px;
}
.xcrud-th th{
background: #efefef;
white-space: nowrap;
}
.xcrud .xcrud-daterange{
width: 80px;
}
.xcrud-googlemap img{
max-width: inherit;
}
.xcrud-search input,.xcrud-search select{
/*width: 10%;*/
margin: 0 5px 0 0;
vertical-align: top;
}
.xcrud .btn-group{
white-space: nowrap;
}
.xcrud .btn-group .btn{
float: none !important;
}
.xcrud-upload-container img{
display: block;
max-width: 700px;
clear: both;
margin-bottom: 5px;
}
ul.xcrud-map-dropdown{
list-style: none;
margin: 0;
padding: 0;
background: #fff;
border-radius: 2px;
box-shadow: 1px 2px 2px rgba(0,0,0,0.3);
position: absolute;
z-index: 5;
}
ul.xcrud-map-dropdown li{
margin: 0;
padding: 3px 10px;
cursor: pointer;
}
ul.xcrud-map-dropdown li:hover{
background: #f4f4f4;
}
input.xcrud-inline{
display: inline-block;
width: 40%;
margin-right: 10px;
}
.xcrud-map{
border: 1px solid #CCCCCC;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
margin: 10px 0;
}
/*.xcrud-radio-label,.xcrud-checkboxes-label{
display: block;
}
.xcrud-radio-label input,.xcrud-checkboxes-label input{
margin-right: 7px;
}*/
.xcrud .validation-error{
box-shadow: 0 0 1px red, 0 0 3px red !important;
background: #FFEBEB !important;
}
th.xcrud-actions{
width: 40px;
}
a.xcrud_modal{
text-decoration: none;
color: inherit;
}
/*.xcrud-view table tr td:first-child{
width: 30%;
}*/
/*td.details-label{
width: 30%;
}*/
/* messages */
.xcrud-message{
position: absolute;
top: 0;
left: 0;
right: 0;
font-size: 15px;
padding: 10px 20px;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05),inset 0 1px 0 rgba(0,0,0,0.05);
display: none;
text-shadow: 0 1px 0 rgba(0,0,0,0.4);
color: #fff;
color: rgba(255,255,255,0.90);
cursor: pointer;
z-index: 500;
}
.xcrud-message.success{
background: #5AB95F;
border-top: 1px solid #8A1414;
border-bottom: 1px solid #8A1414;
}
.xcrud-message.error{
background: #D05C5C;
border-top: 1px solid #931C1C;
border-bottom: 1px solid #931C1C;
}
.xcrud-message.info{
background: #6CC3C6;
border-top: 1px solid #127B7C;
border-bottom: 1px solid #127B7C;
}
.xcrud-message.note{
background: #DDB75D;
border-top: 1px solid #A66E13;
border-bottom: 1px solid #A66E13;
}
.xcrud-toggle-show{
float: right;
font-size: 13px;
font-weight: bold;
line-height: inherit;
margin: 2px;
cursor: pointer;
}
h2{
border-bottom: 1px solid #ddd;
}
.xcrud-main-tab{
border: 1px solid #ddd;
border-radius: 4px;
padding: 8px 15px 6px;
margin: 0 2px;
font-size: 20px;
}
/* RTL */
.xcrud.xcrud_rtl{
direction: rtl;
}
.xcrud.xcrud_rtl .xcrud-list .xcrud-row:hover td.xcrud-actions-fixed{
right: auto;
left: 1px;
}
.xcrud.xcrud_rtl .xcrud-toggle-show{
float: left;
}
.xcrud.xcrud_rtl .xcrud-button > i{
margin-right: auto;
margin-left: 4px;
}
.xcrud.xcrud_rtl .xcrud-details-table td:first-child {
text-align: left;
} | xcrud/themes/joomla32/xcrud.css | .xcrud{
margin-bottom: 20px;
}
.xcrud-list{
min-width: 100%;
width: auto;
display: table !important;
margin-bottom: 3px;
/* table-layout: fixed;*/
}
.xcrud-list th, .xcrud-list td{
/*white-space:nowrap;*/
}
.xcrud-column:hover{
text-decoration: underline;
cursor: pointer;
}
.xcrud-header{
border-bottom: 1px solid #E5E5E5;
}
.xcrud-top-actions{
padding: 5px 0 15px;
}
.xcrud-container{
position: relative;
}
.xcrud-list-container{
overflow-x: auto;
clear: both;
}
.xcrud-nav{
padding: 15px 10px 5px;
}
.xcrud-nav > *{
vertical-align: top;
margin-top: 0;
margin-bottom: 0;
}
td.xcrud-actions{
text-align: right;
white-space:nowrap;
padding-bottom: 0;
}
.xcrud-actions a{
vertical-align: top;
}
.xcrud-actions .xcrud-action{
margin-top: 0;
margin-bottom: -1px;
}
.xcrud .xcrud-list .xcrud-row:hover td.xcrud-actions-fixed{
position: absolute;
right: 1px;
border-left: none;
margin-top: 0;
}
.xcrud-overlay{
/*display: none;*/
position: absolute;
top: 0;
left: 0;
bottom: 0;
background: #fff 50% 50% no-repeat url(loading.gif);
opacity: 0.5;
width: 100%;
}
.xcrud-num{
color: #bbb;
width: 10px;
}
.xcrud-benchmark{
margin: 5px;
font-size: 10px;
line-height: 1.2;
float: right;
color: #999;
}
.xcrud-benchmark span {
margin: 0 5px;
}
table.xcrud-details.table td input,table.xcrud-details.table td select,table.xcrud-details.table td textarea{
margin-bottom: 0;
}
.xcrud .tab-content{
padding: 8px;
border: 1px solid #DDDDDD;
border-top: 0;
}
/*.xcrud .xcrud-remove-file{
vertical-align: bottom;
margin-left: 5px;
}*/
.xcrud .xcrud-file-container.error{
border: 1px solid #E20101;
background-color: #FFE4E4;
padding-left: 5px;
}
.xcrud .xcrud-file-container{
font-size: 14px;
line-height: 30px;
}
.xcrud .xcrud-file-container img{
max-width: 99%;
vertical-align: bottom;
}
.xcrud-add-file{
/*margin-top: 5px;*/
position: relative;
overflow: hidden;
}
input.xcrud-upload{
cursor: pointer;
direction: ltr;
font-size: 100%;
margin: 0;
opacity: 0;
position: absolute;
right: 0;
top: 0;
transform: translate(-300px, 0px) scale(4);
-webkit-transform: translate(-300px, 0px) scale(4);
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=0);
}
.xcrud .xcrud-list td.xcrud-sum{
font-weight: bold;
}
/* column styles */
.xcrud-list td.align-left{
text-align: left
}
.xcrud-list td.align-right{
text-align: right;
}
.xcrud-list td.align-center{
text-align: center;
}
.xcrud-list td.font-bold{
font-weight: bold;
}
.xcrud-list td.font-italic{
font-style: italic;
}
.xcrud-list td.text-underline{
text-decoration: underline;
}
.xcrud .xcrud-list td .btn{
margin-top: -4px;
margin-bottom: -4px;
}
.xcrud-th th{
background: #efefef;
white-space: nowrap;
}
.xcrud .xcrud-daterange{
width: 80px;
}
.xcrud-googlemap img{
max-width: inherit;
}
.xcrud-search input,.xcrud-search select{
/*width: 10%;*/
margin: 0 5px 0 0;
vertical-align: top;
}
.xcrud .btn-group{
white-space: nowrap;
}
.xcrud .btn-group .btn{
float: none !important;
}
.xcrud-upload-container img{
display: block;
max-width: 700px;
clear: both;
margin-bottom: 5px;
}
ul.xcrud-map-dropdown{
list-style: none;
margin: 0;
padding: 0;
background: #fff;
border-radius: 2px;
box-shadow: 1px 2px 2px rgba(0,0,0,0.3);
position: absolute;
z-index: 5;
}
ul.xcrud-map-dropdown li{
margin: 0;
padding: 3px 10px;
cursor: pointer;
}
ul.xcrud-map-dropdown li:hover{
background: #f4f4f4;
}
input.xcrud-inline{
display: inline-block;
width: 40%;
margin-right: 10px;
}
.xcrud-map{
border: 1px solid #CCCCCC;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
margin: 10px 0;
}
/*.xcrud-radio-label,.xcrud-checkboxes-label{
display: block;
}
.xcrud-radio-label input,.xcrud-checkboxes-label input{
margin-right: 7px;
}*/
.xcrud .validation-error{
box-shadow: 0 0 1px red, 0 0 3px red !important;
background: #FFEBEB !important;
}
th.xcrud-actions{
width: 40px;
}
a.xcrud_modal{
text-decoration: none;
color: inherit;
}
/*.xcrud-view table tr td:first-child{
width: 30%;
}*/
/*td.details-label{
width: 30%;
}*/
/* messages */
.xcrud-message{
position: absolute;
top: 0;
left: 0;
right: 0;
font-size: 15px;
padding: 10px 20px;
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05),inset 0 1px 0 rgba(0,0,0,0.05);
display: none;
text-shadow: 0 1px 0 rgba(0,0,0,0.4);
color: #fff;
color: rgba(255,255,255,0.90);
cursor: pointer;
z-index: 500;
}
.xcrud-message.success{
background: #5AB95F;
border-top: 1px solid #8A1414;
border-bottom: 1px solid #8A1414;
}
.xcrud-message.error{
background: #D05C5C;
border-top: 1px solid #931C1C;
border-bottom: 1px solid #931C1C;
}
.xcrud-message.info{
background: #6CC3C6;
border-top: 1px solid #127B7C;
border-bottom: 1px solid #127B7C;
}
.xcrud-message.note{
background: #DDB75D;
border-top: 1px solid #A66E13;
border-bottom: 1px solid #A66E13;
}
.xcrud-toggle-show{
float: right;
font-size: 13px;
font-weight: bold;
line-height: inherit;
margin: 2px;
cursor: pointer;
}
h2{
border-bottom: 1px solid #ddd;
}
.xcrud-main-tab{
border: 1px solid #ddd;
border-radius: 4px;
padding: 8px 15px 6px;
margin: 0 2px;
font-size: 20px;
}
/* RTL */
.xcrud.xcrud_rtl{
direction: rtl;
}
.xcrud.xcrud_rtl .xcrud-list .xcrud-row:hover td.xcrud-actions-fixed{
right: auto;
left: 1px;
}
.xcrud.xcrud_rtl .xcrud-toggle-show{
float: left;
}
.xcrud.xcrud_rtl .xcrud-button > i{
margin-right: auto;
margin-left: 4px;
}
.xcrud.xcrud_rtl .xcrud-details-table td:first-child {
text-align: left;
} | 0.311113 | 0.057256 |
.fullwidthcard{
width: 100%;
margin: 20px;
}
.boldtext{
font-weight: bold;
}
.grid-container {
margin: 20px;
/* margin-left: 220px; */
}
.marginleft20{
margin-left: 20px;
}
.content{
margin: 20px;
margin-left: 220px;
margin-top: 80px;
}
.dashboard-card {
position: absolute;
top: 15px;
left: 15px;
right: 15px;
bottom: 15px;
}
.more-button {
position: absolute;
top: 5px;
right: 10px;
}
.dashboard-card-content {
text-align: center;
}
/* .sidenav {
height: 100%;
width: 200px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #fafafa;
overflow-x: hidden;
-moz-box-shadow: -3px 0 5px 0 #555;
-webkit-box-shadow: -3px 0 5px 0 #555;
box-shadow: -3px 0 5px 0 #555;
margin-top: 63px;
} */
.sidenav{
width: 200px;
height: 100%;
}
.topbar{
height: 80px;
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 2;
background-color: rgb(255, 82, 82);
overflow-y: hidden;
-moz-box-shadow: -3px 0 5px 0 #555;
-webkit-box-shadow: -3px 0 5px 0 #555;
box-shadow: -3px 0 5px 0 #555;
min-height: 80px;
}
.navitem{
border-bottom: 1px grey solid;
padding: 20px;
cursor: pointer;
}
.navtext{
font-family: Roboto,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
position: absolute;
margin-top: 5px;
margin-left: 5px;
}
.smallimg{
height: 50px;
width: 50px;
margin: 0px 20px 0px 20px;
}
.flex{
display: flex;
flex-direction: column;
}
.inlineblock{
display: inline-block;
text-align: center;
}
.margintop20{
margin-top: 15px;
}
.fullscreen{
width: 100%;
height: 100%;
}
.maincontainer{
display: flex;
flex-direction: column;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
/* width: 100%;
height: 100%; */
}
.mobile-container .sidenav-container{
flex: 1 0 auto;
}
.mobile-container .toolbar{
position: fixed;
z-index: 2;
}
.sidenavcontainer{
flex: 1;
}
.sidenav-content-container{
position: relative;
}
.floatright{
float: right;
}
.spacer {
flex: 1 1 auto;
} | digitalCCR/src/app/dashboard/dashboard.component.css | .fullwidthcard{
width: 100%;
margin: 20px;
}
.boldtext{
font-weight: bold;
}
.grid-container {
margin: 20px;
/* margin-left: 220px; */
}
.marginleft20{
margin-left: 20px;
}
.content{
margin: 20px;
margin-left: 220px;
margin-top: 80px;
}
.dashboard-card {
position: absolute;
top: 15px;
left: 15px;
right: 15px;
bottom: 15px;
}
.more-button {
position: absolute;
top: 5px;
right: 10px;
}
.dashboard-card-content {
text-align: center;
}
/* .sidenav {
height: 100%;
width: 200px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #fafafa;
overflow-x: hidden;
-moz-box-shadow: -3px 0 5px 0 #555;
-webkit-box-shadow: -3px 0 5px 0 #555;
box-shadow: -3px 0 5px 0 #555;
margin-top: 63px;
} */
.sidenav{
width: 200px;
height: 100%;
}
.topbar{
height: 80px;
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 2;
background-color: rgb(255, 82, 82);
overflow-y: hidden;
-moz-box-shadow: -3px 0 5px 0 #555;
-webkit-box-shadow: -3px 0 5px 0 #555;
box-shadow: -3px 0 5px 0 #555;
min-height: 80px;
}
.navitem{
border-bottom: 1px grey solid;
padding: 20px;
cursor: pointer;
}
.navtext{
font-family: Roboto,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;
position: absolute;
margin-top: 5px;
margin-left: 5px;
}
.smallimg{
height: 50px;
width: 50px;
margin: 0px 20px 0px 20px;
}
.flex{
display: flex;
flex-direction: column;
}
.inlineblock{
display: inline-block;
text-align: center;
}
.margintop20{
margin-top: 15px;
}
.fullscreen{
width: 100%;
height: 100%;
}
.maincontainer{
display: flex;
flex-direction: column;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
/* width: 100%;
height: 100%; */
}
.mobile-container .sidenav-container{
flex: 1 0 auto;
}
.mobile-container .toolbar{
position: fixed;
z-index: 2;
}
.sidenavcontainer{
flex: 1;
}
.sidenav-content-container{
position: relative;
}
.floatright{
float: right;
}
.spacer {
flex: 1 1 auto;
} | 0.440229 | 0.081776 |
*{ margin: 0;
box-sizing: border-box;
}
body{ font-family: sans-serif;
}
.destino__img{
max-width: 85%;
}
.logo{
width: 155px;
height: 50px;
}
.contenedor{
margin: 100%;
margin: auto;
}
/*-----------------header---------------------------*/
.header{
background: #fff;
}
.header .contenedor{
display: flex;
justify-content: space-between;
}
.logo,.icon-menu{
margin: 5px;
color: skyblue;
}
.icon-menu{
display: block;
width: 30px;
height: 30px;
font-size: 20px;
text-align: center;
line-height: 35px;
border-radius: 5px;
cursor: pointer;
}
.nav{
position: absolute;
top: 60px;
left: -100%;
transition: all 0.5s;
width: 100%;
z-index: 100;
}
.menu{
list-style: none;
padding: 0;margin: 0;
}
.menu__link{
cursor: pointer; display: block;
padding: 15px;
background: #fff;
color: red;
height: 60px;
border-bottom: 1px solid red ;
font-weight: bold;
font-size: 20px;
}
.menu__link:hover{
background: skyblue ;
color: #FF0303;
}
.muestrate{
left: 0;
}
/*-----------------slider---------------------------*/
.banner img{
width: 100%;
}
.banner {
position: relative;
text-align: center;
}
#btn-prev,#btn-next{
color: #fff;
width: 40px;
height: 40px;
background: rgba(98, 199, 231, 0.5);
position: absolute;
top: 45%;
transform: translateY(-50%);
line-height: 40px;
font-size: 30px;
font-weight: bold;
text-align: center;
border-radius: 50%;
font-family: monospace;
cursor: pointer;
display: none;
}
#btn-prev:hover,#btn-next:hover{
background: rgba(98, 199, 231, 0.9);
}
#btn-prev{
left: 10px;
}
#btn-next{
right: 10px;
}
.banner__descripcion{
background: rgba(0,0,0,0.5);
color: #fff;
padding: 20px;
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
.banner__descripcion h1{
font-size:30px;
}
.banner__descripcion p{
font-size: 10px;
display: none;
}.slider__txt2 {
background: red;
width: 100%;
position: absolute;
bottom: 0;
padding: 10px;
color: white;
text-align: justify;
display: none;
}
/*-----------------estilos del destino--------------*/
.destino__titulo{
font-size: 40px;
text-align: center;
}
.destino__txt{
font-size: 20px;
text-align: justify;
padding: 15px;
}
.destino__img{
width: 100%;
border-radius: 100%;
margin: 25px;
}
.destino__columna{
position: relative;
}
.destino__columna h3{
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%)translateY(-50%);
color: #fff;
font-size: 32px;
font-weight:900;
}
.destino .contenedor{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.destino__columna:hover .destino__img {
box-shadow: 0 0 0 8px #FF0303 ,
0 25px 200px;
transform:scale(1.1);
}
/*-----------------estilos de especial--------------*/
.especial{
background: #FF0303;
text-align: center; color: #fff;
}
.programas__titulo{
font-size: 30px;
padding: 25px;
}
.especial__img{
width: 100%;
}
.informacion{
margin-top: -6px;
background: #fff;
color: #000;
}
.especial__titulo{
font-size: 25px;
padding: 5px;
}
.especial__txt{
padding: 25px;
text-align: justify;
}
.button{
padding: 15px;
margin: 15px;
font-size: 20px;
background: #FF0303 ;
border: 0;
cursor: pointer;
color: white;
font-weight: bold;
}
.button:hover {
box-shadow: 0 0px 15px 3px rgba(98, 199, 231, 0.9);
}
.especial__columna1,.especial__columna2,.especial__columna3{
margin: 15px;
}
.especial .contenedor{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
/*-----------------estilos de Ofertas--------------*/
.ofertas__titulo{
padding: 25px;
text-align: center;
font-size: 30px;
}
.ofertas__img{
width: 100%;
filter: brightness(60%);
}
.ofertas__columna{
position: relative;
}
.ofertas__columna h4{
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%)translateY(-50%);
color:#fff;
font-size: 30px;
}
.ofertas__columna:hover .ofertas__img{
filter: brightness(100%);
}
.ofertas .contenedor{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
/*-----------------estilos de Fondo--------------*/
.fondo__img{
width: 100%;
}
.info__fondo{
position: relative;
}
.fondo__titulo {
color: #fff;
position: absolute;
top: 30%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
font-size: 25px;
text-align: center;
}
.fondo__txt {
color: #fff;
position: absolute;
top: 60%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
font-size: 15px;
text-align: center;
}
/*----------Estilos del footer----------------------*/
footer{
background: #FF0303 ;
padding: 40px 0 10px 0;
margin: auto;
overflow: hidden;
}
.contenedor-footer{
display: flex;
width: 70%;
justify-content: space-evenly;
margin: auto;
padding-bottom: 40px;
border-bottom: 1px solid #ccc;
}
.content-foo{
text-align: center;
}
.content-foo h4{
color: #fff;
border-bottom: 3px solid #FFFFFF;
padding-bottom: 5px;
margin-bottom: 10px;
}
.content-foo p{
color: #FFFFFF;
}
.titulo-final{
text-align: center;
font-size: 24px;
margin: 20px 0 0 0;
color: #FFFFFF;
}
/*---------------Estilos Responsive------------------*/
@media(min-width:480px){
.banner__descripcion {
top: 32%;
width: 80%;
padding: 8px;
}
.banner__descripcion p{
display: block;
font-size: 17px;
}
.slider__txt2 {
display: block;
bottom: 3px;
font-size: 17px;
}
.destino__img{
width: 400px;
}
.especial__columna1,.especial__columna2,.especial__columna3{
width: 90%;
}
.ofertas__columna h4{
font-size: 40px;
}
.fondo__titulo{
font-size: 50px;
}
.fondo__txt{
font-size: 22px;
}
}
@media(min-width:768px){
#btn-prev,#btn-next
{
display: block;
}
.banner__descripcion {
top: 50%;
}
.banner__descripcion h1 {
font-size: 42px;
}
.banner__descripcion p {
font-size: 18px;
}
.slider__txt2 {
font-size: 25px;
padding: 20px;
}
.destino__columna{
width: 45%;
}
.especial__columna1,.especial__columna2{
width: 43%;
}
.ofertas__columna{
width: 49.6%;
margin-left: 3px;
}
.fondo__img{
padding:0px 0px 0px 5px;
}
.fondo__titulo{
font-size: 90px;
}
.fondo__txt{
font-size: 35px;
}
.sociales {
width: auto;
padding: 20px;
}
footer .contenedor {
justify-content: space-between;
}
.copy{
padding: 30px;
}
}
@media(min-width:1024px){
.contenedor{
width: 1000px;
}
.nav {
position: static;
width: auto;
}
.menu {
display: flex;
}
.icon-menu {
display: none;
}
.menu__link{
border: none;
}
.banner__descripcion .contenedor{
width: 90%;
}
#btn-prev,#btn-next{
width: 60px;
height: 60px;
transform: translateY(-50%);
line-height: 50px;
font-size: 60px;
}
.banner__descripcion h1 {
font-size: 68px;
}
.banner__descripcion p {
font-size: 28px;
}
.slider__txt2 {
font-size: 32px;
padding: 25px;
}
.destino__columna{
width: 25%;
}
/*.titulo__destino{
font-size: 60px;
}*/
.especial__columna1,.especial__columna2,.especial__columna3{
width: 30%;
}
.ofertas__columna{
width: 32%;
}
.fondo__img{
padding:0px 20px 0px 20px;
}
.fondo__titulo{
font-size: 80px;
}
.fondo__txt{
font-size: 42px;
}
}
@media(min-width:1280px){
.banner__descripcion {
padding: 50px;
width: 1200px;
}
.contenedor{
width: 1200px;
}
}
/*loader*/
#preloader{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #000;
z-index: 1000;
}
#loader{
width: 100px;
height: 100px;
position: absolute;
left: 50%;
top: 50%;
margin: -50px 0 0 -50px;
background: url(../img/loader.gif)no-repeat center 0;
} | static/vistas_manuel/css/estilos.css | *{ margin: 0;
box-sizing: border-box;
}
body{ font-family: sans-serif;
}
.destino__img{
max-width: 85%;
}
.logo{
width: 155px;
height: 50px;
}
.contenedor{
margin: 100%;
margin: auto;
}
/*-----------------header---------------------------*/
.header{
background: #fff;
}
.header .contenedor{
display: flex;
justify-content: space-between;
}
.logo,.icon-menu{
margin: 5px;
color: skyblue;
}
.icon-menu{
display: block;
width: 30px;
height: 30px;
font-size: 20px;
text-align: center;
line-height: 35px;
border-radius: 5px;
cursor: pointer;
}
.nav{
position: absolute;
top: 60px;
left: -100%;
transition: all 0.5s;
width: 100%;
z-index: 100;
}
.menu{
list-style: none;
padding: 0;margin: 0;
}
.menu__link{
cursor: pointer; display: block;
padding: 15px;
background: #fff;
color: red;
height: 60px;
border-bottom: 1px solid red ;
font-weight: bold;
font-size: 20px;
}
.menu__link:hover{
background: skyblue ;
color: #FF0303;
}
.muestrate{
left: 0;
}
/*-----------------slider---------------------------*/
.banner img{
width: 100%;
}
.banner {
position: relative;
text-align: center;
}
#btn-prev,#btn-next{
color: #fff;
width: 40px;
height: 40px;
background: rgba(98, 199, 231, 0.5);
position: absolute;
top: 45%;
transform: translateY(-50%);
line-height: 40px;
font-size: 30px;
font-weight: bold;
text-align: center;
border-radius: 50%;
font-family: monospace;
cursor: pointer;
display: none;
}
#btn-prev:hover,#btn-next:hover{
background: rgba(98, 199, 231, 0.9);
}
#btn-prev{
left: 10px;
}
#btn-next{
right: 10px;
}
.banner__descripcion{
background: rgba(0,0,0,0.5);
color: #fff;
padding: 20px;
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
.banner__descripcion h1{
font-size:30px;
}
.banner__descripcion p{
font-size: 10px;
display: none;
}.slider__txt2 {
background: red;
width: 100%;
position: absolute;
bottom: 0;
padding: 10px;
color: white;
text-align: justify;
display: none;
}
/*-----------------estilos del destino--------------*/
.destino__titulo{
font-size: 40px;
text-align: center;
}
.destino__txt{
font-size: 20px;
text-align: justify;
padding: 15px;
}
.destino__img{
width: 100%;
border-radius: 100%;
margin: 25px;
}
.destino__columna{
position: relative;
}
.destino__columna h3{
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%)translateY(-50%);
color: #fff;
font-size: 32px;
font-weight:900;
}
.destino .contenedor{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.destino__columna:hover .destino__img {
box-shadow: 0 0 0 8px #FF0303 ,
0 25px 200px;
transform:scale(1.1);
}
/*-----------------estilos de especial--------------*/
.especial{
background: #FF0303;
text-align: center; color: #fff;
}
.programas__titulo{
font-size: 30px;
padding: 25px;
}
.especial__img{
width: 100%;
}
.informacion{
margin-top: -6px;
background: #fff;
color: #000;
}
.especial__titulo{
font-size: 25px;
padding: 5px;
}
.especial__txt{
padding: 25px;
text-align: justify;
}
.button{
padding: 15px;
margin: 15px;
font-size: 20px;
background: #FF0303 ;
border: 0;
cursor: pointer;
color: white;
font-weight: bold;
}
.button:hover {
box-shadow: 0 0px 15px 3px rgba(98, 199, 231, 0.9);
}
.especial__columna1,.especial__columna2,.especial__columna3{
margin: 15px;
}
.especial .contenedor{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
/*-----------------estilos de Ofertas--------------*/
.ofertas__titulo{
padding: 25px;
text-align: center;
font-size: 30px;
}
.ofertas__img{
width: 100%;
filter: brightness(60%);
}
.ofertas__columna{
position: relative;
}
.ofertas__columna h4{
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%)translateY(-50%);
color:#fff;
font-size: 30px;
}
.ofertas__columna:hover .ofertas__img{
filter: brightness(100%);
}
.ofertas .contenedor{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
/*-----------------estilos de Fondo--------------*/
.fondo__img{
width: 100%;
}
.info__fondo{
position: relative;
}
.fondo__titulo {
color: #fff;
position: absolute;
top: 30%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
font-size: 25px;
text-align: center;
}
.fondo__txt {
color: #fff;
position: absolute;
top: 60%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
font-size: 15px;
text-align: center;
}
/*----------Estilos del footer----------------------*/
footer{
background: #FF0303 ;
padding: 40px 0 10px 0;
margin: auto;
overflow: hidden;
}
.contenedor-footer{
display: flex;
width: 70%;
justify-content: space-evenly;
margin: auto;
padding-bottom: 40px;
border-bottom: 1px solid #ccc;
}
.content-foo{
text-align: center;
}
.content-foo h4{
color: #fff;
border-bottom: 3px solid #FFFFFF;
padding-bottom: 5px;
margin-bottom: 10px;
}
.content-foo p{
color: #FFFFFF;
}
.titulo-final{
text-align: center;
font-size: 24px;
margin: 20px 0 0 0;
color: #FFFFFF;
}
/*---------------Estilos Responsive------------------*/
@media(min-width:480px){
.banner__descripcion {
top: 32%;
width: 80%;
padding: 8px;
}
.banner__descripcion p{
display: block;
font-size: 17px;
}
.slider__txt2 {
display: block;
bottom: 3px;
font-size: 17px;
}
.destino__img{
width: 400px;
}
.especial__columna1,.especial__columna2,.especial__columna3{
width: 90%;
}
.ofertas__columna h4{
font-size: 40px;
}
.fondo__titulo{
font-size: 50px;
}
.fondo__txt{
font-size: 22px;
}
}
@media(min-width:768px){
#btn-prev,#btn-next
{
display: block;
}
.banner__descripcion {
top: 50%;
}
.banner__descripcion h1 {
font-size: 42px;
}
.banner__descripcion p {
font-size: 18px;
}
.slider__txt2 {
font-size: 25px;
padding: 20px;
}
.destino__columna{
width: 45%;
}
.especial__columna1,.especial__columna2{
width: 43%;
}
.ofertas__columna{
width: 49.6%;
margin-left: 3px;
}
.fondo__img{
padding:0px 0px 0px 5px;
}
.fondo__titulo{
font-size: 90px;
}
.fondo__txt{
font-size: 35px;
}
.sociales {
width: auto;
padding: 20px;
}
footer .contenedor {
justify-content: space-between;
}
.copy{
padding: 30px;
}
}
@media(min-width:1024px){
.contenedor{
width: 1000px;
}
.nav {
position: static;
width: auto;
}
.menu {
display: flex;
}
.icon-menu {
display: none;
}
.menu__link{
border: none;
}
.banner__descripcion .contenedor{
width: 90%;
}
#btn-prev,#btn-next{
width: 60px;
height: 60px;
transform: translateY(-50%);
line-height: 50px;
font-size: 60px;
}
.banner__descripcion h1 {
font-size: 68px;
}
.banner__descripcion p {
font-size: 28px;
}
.slider__txt2 {
font-size: 32px;
padding: 25px;
}
.destino__columna{
width: 25%;
}
/*.titulo__destino{
font-size: 60px;
}*/
.especial__columna1,.especial__columna2,.especial__columna3{
width: 30%;
}
.ofertas__columna{
width: 32%;
}
.fondo__img{
padding:0px 20px 0px 20px;
}
.fondo__titulo{
font-size: 80px;
}
.fondo__txt{
font-size: 42px;
}
}
@media(min-width:1280px){
.banner__descripcion {
padding: 50px;
width: 1200px;
}
.contenedor{
width: 1200px;
}
}
/*loader*/
#preloader{
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: #000;
z-index: 1000;
}
#loader{
width: 100px;
height: 100px;
position: absolute;
left: 50%;
top: 50%;
margin: -50px 0 0 -50px;
background: url(../img/loader.gif)no-repeat center 0;
} | 0.505371 | 0.056966 |
* {
box-sizing: border-box;
}
body {
background-color: #E2E2E6;
margin: 0;
vertical-align: baseline;
}
/*======================== Header ========================*/
header {
width: 100%;
background-color: #FFC117;
display: flex;
align-items: center;
justify-content: flex-start;
padding: .5em;
box-shadow: 0 2px 0 0 rgba(7, 7, 33, .15);
}
header img {
max-width: 3.5em;
}
header a:nth-child(3) img {
max-width: 2.5em;
}
header a {
margin-right: auto;
}
header a:nth-child(3) {
margin-right: 0;
}
header form {
display: flex;
}
header a {
display: block;
}
/*===================== Header Formulier=====================*/
input[type=text] {
background-color: #FFFFFF;
color: #00337D;
padding: .5em .5em
}
input[type=button],
input[type=submit],
input[type=reset] {
background-color: #007BCC;
border: none;
color: white;
text-decoration: none;
cursor: pointer;
margin-left: 0.5em;
margin-right: 2em;
}
/*========================== HEADINGS ==========================*/
h1 {
font-family: 'Open Sans', sans-serif;
font-weight: 300;
color: #002B77;
font-size: 1.999em;
text-align: center;
}
h2 {
color: #002B77;
margin-left: 0.5em;
font-family: 'Open Sans', sans-serif;
font-weight: 300;
font-size: 1.414em;
}
/*========================== ARTICLES ==========================*/
section {
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: stretch;
justify-content: center;
}
section article {
background-color: #FFFFFF;
margin: .5em;
box-shadow: 0 2px 0 0 #C1C1C8;
display: flex;
flex-direction: column;
max-width: 30em;
justify-content: center;
}
@media (min-width: 40em) {
section article {
width: 45%;
width: calc(50% - 1em);
}
}
@media (min-width: 60em) {
section article {
width: 33%;
width: calc(33% - 1em);
}
}
article img {
height: auto;
width: 100%;
object-fit: cover;
min-height: 7em;
}
p {
color: #03071F;
font-family: 'Open Sans', sans-serif;
font-size: 1.0em;
line-height: 1.6em;
max-width: 25em;
margin: 1em;
}
footer {
background-color: #FFC117;
display: flex;
width: 100%;
margin-top: auto;
}
footer p {
color: #5F5F6F;
font-family: 'Open Sans', sans-serif;
font-size: .7em;
padding: 0.5em;
margin: 0em;
} | X-AVV01/styles/overzichtpagina-media.css |
* {
box-sizing: border-box;
}
body {
background-color: #E2E2E6;
margin: 0;
vertical-align: baseline;
}
/*======================== Header ========================*/
header {
width: 100%;
background-color: #FFC117;
display: flex;
align-items: center;
justify-content: flex-start;
padding: .5em;
box-shadow: 0 2px 0 0 rgba(7, 7, 33, .15);
}
header img {
max-width: 3.5em;
}
header a:nth-child(3) img {
max-width: 2.5em;
}
header a {
margin-right: auto;
}
header a:nth-child(3) {
margin-right: 0;
}
header form {
display: flex;
}
header a {
display: block;
}
/*===================== Header Formulier=====================*/
input[type=text] {
background-color: #FFFFFF;
color: #00337D;
padding: .5em .5em
}
input[type=button],
input[type=submit],
input[type=reset] {
background-color: #007BCC;
border: none;
color: white;
text-decoration: none;
cursor: pointer;
margin-left: 0.5em;
margin-right: 2em;
}
/*========================== HEADINGS ==========================*/
h1 {
font-family: 'Open Sans', sans-serif;
font-weight: 300;
color: #002B77;
font-size: 1.999em;
text-align: center;
}
h2 {
color: #002B77;
margin-left: 0.5em;
font-family: 'Open Sans', sans-serif;
font-weight: 300;
font-size: 1.414em;
}
/*========================== ARTICLES ==========================*/
section {
width: 100%;
height: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: stretch;
justify-content: center;
}
section article {
background-color: #FFFFFF;
margin: .5em;
box-shadow: 0 2px 0 0 #C1C1C8;
display: flex;
flex-direction: column;
max-width: 30em;
justify-content: center;
}
@media (min-width: 40em) {
section article {
width: 45%;
width: calc(50% - 1em);
}
}
@media (min-width: 60em) {
section article {
width: 33%;
width: calc(33% - 1em);
}
}
article img {
height: auto;
width: 100%;
object-fit: cover;
min-height: 7em;
}
p {
color: #03071F;
font-family: 'Open Sans', sans-serif;
font-size: 1.0em;
line-height: 1.6em;
max-width: 25em;
margin: 1em;
}
footer {
background-color: #FFC117;
display: flex;
width: 100%;
margin-top: auto;
}
footer p {
color: #5F5F6F;
font-family: 'Open Sans', sans-serif;
font-size: .7em;
padding: 0.5em;
margin: 0em;
} | 0.601711 | 0.112942 |
a,
p a,
p a:hover,
a:hover,
a:focus,
a:active,
.tg-stars span:after,
.tg-usermessage span a:hover,
.tg-deleteproduct .fa,
.tg-dropdownmenu li.tg-total,
.tg-singup h2,
.tg-footernav ul li a:hover,
.tg-bgdark .tg-btn,
.tg-post:hover .tg-postheading h2 a,
.tg-calltoaction h2,
.tg-calltoaction .tg-btn,
.tg-btnsearch i:hover,
.tg-sliderversionthree .tg-slidecontent h1 span,
.tg-producticons li:hover a i,
.tg-btnaddtocart:hover i,
.tg-discountonproduct li h4 a:hover,
.tg-discountonproduct li h4 a span,
.tg-fcol ul li a:hover,
.tg-widgetsignup button,
.tg-headerfive .tg-navigation ul li a:hover,
.tg-bloggridv2 .tg-post:hover .tg-postheading h2 a,
.tg-authorinfo .tg-socialicons li a:hover i,
.tg-comment li .tg-commenter:hover .tg-commenterinfo .tg-borderheading h2 a,
.tg-comment li .tg-commenter:hover .tg-commenterinfo .tg-btnreply,
.tg-comment li .tg-commenter:hover .tg-commenterinfo .tg-btnreply i,
.tg-wework h3 span,
.tg-counter h2,
.tg-comming-sooncounter .timer_box:first-child h1,
.tg-comming-sooncounter .timer_box:first-child p,
.tg-commingsoonarea-v2 h2,
.tg-complainttime h2,
.tg-callus span,
.tg-footer.tg-footereight .tg-fcol ul li a:hover,
.tg-footer.tg-footereight .tg-fcol ul li a:hover:before,
.tg-odd .tg-slidecontent h1,
.tg-odd .tg-producttitle h3 a,
.tg-odd .tg-productprice,
.tg-even .tg-productcontent .tg-btnaddtocart:hover i,
.tg-shopingcart table tbody tr td a:hover i,
.tg-shopingcart table tbody tr td a:hover strong,
.tg-total span + span,
.tg-paymenttype .tg-radio:hover h3,
.tg-portfoliotitle a,
.tg-socialarea .tg-socialicons li a:hover i,
.tg-promocontent h3,
.tg-search .tg-btn,
.tg-closenav:hover i{color: #0e7;}
/*=============================================
Theme Background Color
=============================================*/
.tg-navigation > ul > li > a:before,
.tg-sectiontitle h2:before,
.tg-sectiontitle h2 em,
.tg-discounttag,
.tg-discounttag:before,
.tg-bordertitle:before,
.tg-postprev:hover,
.tg-postnext:hover,
.tg-featuresproductnav li a:hover,
.tg-featuresproductnav li.active a,
.tg-btnroundprev:hover,
.tg-btnroundnext:hover,
.tg-bordertitletop:before,
.tg-tag:hover,
.tg-tag.tg-active,
.tg-dropdown > a:hover .tg-badge,
.tg-fcol .tg-socialicons li a:hover,
.tg-bordertitletop h2 em,
.tg-btnaddtocompare:hover,
.tg-fcol .tg-customerphotos li figure,
.tg-contactinfo,
.th-btncategory,
.tg-productview li.tg-active a,
.tg-productview li a:hover,
.tg-panel h4:hover,
.tg-panel h4.active,
.tg-pagination ul li,
.tg-pagination ul li.tg-nextpage:hover a,
.tg-pagination ul li.tg-prevpage:hover a,
.tg-widget.tg-widgetcatagories ul li:hover,
.tg-tags-social .tg-btn:hover,
.tg-counter:before,
a.tg-btnprev:hover i,
a.tg-btnnext:hover i,
.countSeconds,
.digit,
.tg-complaintissue .tg-radio label:hover,
.tg-complaintissue .tg-radio input[type=radio]:checked + label,
.tg-footercolumntitle:before,
.tg-odd .tg-productcontent .tg-btnaddtocart:hover,
.tg-shopingcart table tbody tr:hover td span,
.tg-finaltotal,
.tg-paymenttype .tg-radio input[type=radio]:checked + label:before,
.tg-productcontent .tg-producticons li:hover a,
.tg-bordertitletop h1 em,
.tg-portfoliohover > a,
.tg-portfoliofreestyle figure figcaption a,
.tg-portfoliofreestyle:hover .tg-date,
.tg-catagories li:hover,
.tg-productsize .tg-checkbox input[type=checkbox]:checked + label,
.tg-navtabs li:hover a,
.tg-navtabs li.active a,
.ui-widget-header,
.tg-btnnav--htx.is-active{background:#0e7;}
/*=============================================
Theme Border Color
=============================================*/
.tg-navigation > ul > li > .tg-dropdownmenu,
.tg-dropdown .tg-dropdownmenu,
.tg-sectionimg,
.tg-bgdark .tg-btn:before,
.tg-bgdark .tg-btn:after,
.tg-bgdark .tg-btn span:before,
.tg-bgdark .tg-btn span:after,
.tg-discounttag:after,
.tg-post:hover .tg-featuredimg,
.tg-postprev:hover,
.tg-postnext:hover,
.tg-calltoaction .tg-btn:after,
.tg-calltoaction .tg-btn:before,
.tg-calltoaction .tg-btn span:after,
.tg-calltoaction .tg-btn span:before,
.tg-featuresproductnav li a:hover,
.tg-featuresproductnav li.active a,
.tg-featuredimg,
.tg-btnroundprev:hover,
.tg-btnroundnext:hover,
.tg-sliderthumbs .owl-item.tg-active .item,
.tg-tag:hover,
.tg-tag.tg-active,
.tg-fcol .tg-socialicons li a:hover,
.tg-searchbybrandsslider .item figure:hover,
.tg-btnaddtocompare:hover,
.tg-contactinfo,
.tg-productview li.tg-active a,
.tg-productview li a:hover,
.tg-bloggridv2 .tg-post:hover .tg-postheading,
.tg-bloglistv2 .tg-post:hover .tg-postheading,
.tg-tags-social .tg-btn:hover,
.tg-member:hover .tg-memberimg:after,
.tg-memberdetail .tg-memberimg:hover:after,
a.tg-prevmember:hover i,
a.tg-nextmember:hover i,
.tg-odd .tg-productcontent .tg-btnaddtocart:hover,
.tg-paymenttype .tg-radio input[type=radio]:checked + label:before,
.mega-menu,
.tg-closenav:hover,
a.tg-btnprev:hover i,
a.tg-btnnext:hover i,
.tg-productshadow:hover figure,
.tg-widgetlatestproducts .item:hover figure,
.tg-productcontent .tg-producticons li:hover a,
.tg-portfolioslider.owl-theme .owl-next .tg-btnroundnext:hover,
.tg-portfolioslider.owl-theme .owl-prev .tg-btnroundprev:hover,
.tg-productdetailslider .item figure,
.tg-checkbox input[type=checkbox]:checked + label:before,
.tg-productsize .tg-checkbox input[type=checkbox]:checked + label,
.tg-navtabs,
.tg-navtabs li:hover a,
.tg-navtabs li.active a,
.tg-search .tg-btn:before,
.tg-search .tg-btn:after,
.tg-search .tg-btn span:after,
.tg-search .tg-btn span:before{border-color: #0e7;} | public/css/color.css | a,
p a,
p a:hover,
a:hover,
a:focus,
a:active,
.tg-stars span:after,
.tg-usermessage span a:hover,
.tg-deleteproduct .fa,
.tg-dropdownmenu li.tg-total,
.tg-singup h2,
.tg-footernav ul li a:hover,
.tg-bgdark .tg-btn,
.tg-post:hover .tg-postheading h2 a,
.tg-calltoaction h2,
.tg-calltoaction .tg-btn,
.tg-btnsearch i:hover,
.tg-sliderversionthree .tg-slidecontent h1 span,
.tg-producticons li:hover a i,
.tg-btnaddtocart:hover i,
.tg-discountonproduct li h4 a:hover,
.tg-discountonproduct li h4 a span,
.tg-fcol ul li a:hover,
.tg-widgetsignup button,
.tg-headerfive .tg-navigation ul li a:hover,
.tg-bloggridv2 .tg-post:hover .tg-postheading h2 a,
.tg-authorinfo .tg-socialicons li a:hover i,
.tg-comment li .tg-commenter:hover .tg-commenterinfo .tg-borderheading h2 a,
.tg-comment li .tg-commenter:hover .tg-commenterinfo .tg-btnreply,
.tg-comment li .tg-commenter:hover .tg-commenterinfo .tg-btnreply i,
.tg-wework h3 span,
.tg-counter h2,
.tg-comming-sooncounter .timer_box:first-child h1,
.tg-comming-sooncounter .timer_box:first-child p,
.tg-commingsoonarea-v2 h2,
.tg-complainttime h2,
.tg-callus span,
.tg-footer.tg-footereight .tg-fcol ul li a:hover,
.tg-footer.tg-footereight .tg-fcol ul li a:hover:before,
.tg-odd .tg-slidecontent h1,
.tg-odd .tg-producttitle h3 a,
.tg-odd .tg-productprice,
.tg-even .tg-productcontent .tg-btnaddtocart:hover i,
.tg-shopingcart table tbody tr td a:hover i,
.tg-shopingcart table tbody tr td a:hover strong,
.tg-total span + span,
.tg-paymenttype .tg-radio:hover h3,
.tg-portfoliotitle a,
.tg-socialarea .tg-socialicons li a:hover i,
.tg-promocontent h3,
.tg-search .tg-btn,
.tg-closenav:hover i{color: #0e7;}
/*=============================================
Theme Background Color
=============================================*/
.tg-navigation > ul > li > a:before,
.tg-sectiontitle h2:before,
.tg-sectiontitle h2 em,
.tg-discounttag,
.tg-discounttag:before,
.tg-bordertitle:before,
.tg-postprev:hover,
.tg-postnext:hover,
.tg-featuresproductnav li a:hover,
.tg-featuresproductnav li.active a,
.tg-btnroundprev:hover,
.tg-btnroundnext:hover,
.tg-bordertitletop:before,
.tg-tag:hover,
.tg-tag.tg-active,
.tg-dropdown > a:hover .tg-badge,
.tg-fcol .tg-socialicons li a:hover,
.tg-bordertitletop h2 em,
.tg-btnaddtocompare:hover,
.tg-fcol .tg-customerphotos li figure,
.tg-contactinfo,
.th-btncategory,
.tg-productview li.tg-active a,
.tg-productview li a:hover,
.tg-panel h4:hover,
.tg-panel h4.active,
.tg-pagination ul li,
.tg-pagination ul li.tg-nextpage:hover a,
.tg-pagination ul li.tg-prevpage:hover a,
.tg-widget.tg-widgetcatagories ul li:hover,
.tg-tags-social .tg-btn:hover,
.tg-counter:before,
a.tg-btnprev:hover i,
a.tg-btnnext:hover i,
.countSeconds,
.digit,
.tg-complaintissue .tg-radio label:hover,
.tg-complaintissue .tg-radio input[type=radio]:checked + label,
.tg-footercolumntitle:before,
.tg-odd .tg-productcontent .tg-btnaddtocart:hover,
.tg-shopingcart table tbody tr:hover td span,
.tg-finaltotal,
.tg-paymenttype .tg-radio input[type=radio]:checked + label:before,
.tg-productcontent .tg-producticons li:hover a,
.tg-bordertitletop h1 em,
.tg-portfoliohover > a,
.tg-portfoliofreestyle figure figcaption a,
.tg-portfoliofreestyle:hover .tg-date,
.tg-catagories li:hover,
.tg-productsize .tg-checkbox input[type=checkbox]:checked + label,
.tg-navtabs li:hover a,
.tg-navtabs li.active a,
.ui-widget-header,
.tg-btnnav--htx.is-active{background:#0e7;}
/*=============================================
Theme Border Color
=============================================*/
.tg-navigation > ul > li > .tg-dropdownmenu,
.tg-dropdown .tg-dropdownmenu,
.tg-sectionimg,
.tg-bgdark .tg-btn:before,
.tg-bgdark .tg-btn:after,
.tg-bgdark .tg-btn span:before,
.tg-bgdark .tg-btn span:after,
.tg-discounttag:after,
.tg-post:hover .tg-featuredimg,
.tg-postprev:hover,
.tg-postnext:hover,
.tg-calltoaction .tg-btn:after,
.tg-calltoaction .tg-btn:before,
.tg-calltoaction .tg-btn span:after,
.tg-calltoaction .tg-btn span:before,
.tg-featuresproductnav li a:hover,
.tg-featuresproductnav li.active a,
.tg-featuredimg,
.tg-btnroundprev:hover,
.tg-btnroundnext:hover,
.tg-sliderthumbs .owl-item.tg-active .item,
.tg-tag:hover,
.tg-tag.tg-active,
.tg-fcol .tg-socialicons li a:hover,
.tg-searchbybrandsslider .item figure:hover,
.tg-btnaddtocompare:hover,
.tg-contactinfo,
.tg-productview li.tg-active a,
.tg-productview li a:hover,
.tg-bloggridv2 .tg-post:hover .tg-postheading,
.tg-bloglistv2 .tg-post:hover .tg-postheading,
.tg-tags-social .tg-btn:hover,
.tg-member:hover .tg-memberimg:after,
.tg-memberdetail .tg-memberimg:hover:after,
a.tg-prevmember:hover i,
a.tg-nextmember:hover i,
.tg-odd .tg-productcontent .tg-btnaddtocart:hover,
.tg-paymenttype .tg-radio input[type=radio]:checked + label:before,
.mega-menu,
.tg-closenav:hover,
a.tg-btnprev:hover i,
a.tg-btnnext:hover i,
.tg-productshadow:hover figure,
.tg-widgetlatestproducts .item:hover figure,
.tg-productcontent .tg-producticons li:hover a,
.tg-portfolioslider.owl-theme .owl-next .tg-btnroundnext:hover,
.tg-portfolioslider.owl-theme .owl-prev .tg-btnroundprev:hover,
.tg-productdetailslider .item figure,
.tg-checkbox input[type=checkbox]:checked + label:before,
.tg-productsize .tg-checkbox input[type=checkbox]:checked + label,
.tg-navtabs,
.tg-navtabs li:hover a,
.tg-navtabs li.active a,
.tg-search .tg-btn:before,
.tg-search .tg-btn:after,
.tg-search .tg-btn span:after,
.tg-search .tg-btn span:before{border-color: #0e7;} | 0.439507 | 0.120335 |
html {
overflow: hidden;
height: 100%;
}
body {
overflow: auto;
height: 100%;
padding-top: 0px !important;
overflow-x: hidden;
}
.vent {
opacity: 1;
/* margin-top: 4em; */
}
.monster {
transform: scale(1);
opacity: 1;
}
.hero {
animation: none !important;
background-image: linear-gradient(rgba(0, 5, 23, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%), url(../static/bagr.jpg) !important;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center top;
background-size: 100% 100%;
}
body,
.bgr {
background-image: linear-gradient(180deg, #161A25 0%, #0F0F0F 100%) !important;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.floatingNav {
background-color: #111521;
box-shadow: 0px 6px 3px #101218;
}
.main-header .navbar {
padding: 1em 5em 1em 5em;
}
@-webkit-keyframes ventGrow {
from {
transform: scale(1);
}
to {
transform: scale(1.1);
}
}
@keyframes ventGrow {
from {
transform: scale(1);
}
to {
transform: scale(1.1);
}
}
@-webkit-keyframes pulse {
0% {
opacity: 0;
/* padding-top: 2em; */
}
50% {
/* padding-top: 1em; */
opacity: 0.5;
}
100% {
/* padding-top: 0em; */
opacity: 1;
}
}
@keyframes pulse {
0% {
opacity: 0;
/* padding-top: 2em; */
}
50% {
/* padding-top: 1em; */
opacity: 0.5;
}
100% {
/* padding-top: 0em; */
opacity: 1;
}
}
[data-target="#mainMenu"] {
position: relative;
z-index: 999;
}
h1 {
font-family: "Playfair Display", serif;
color: #fff;
}
p {
font-family: "Montserrat", sans-serif;
color: #fff;
}
.form-group {
color: #fff;
font-family: Montserrat;
font-style: normal;
font-weight: bold;
-webkit-animation: pulse 3s ease-in;
animation: pulse 3s ease-in;
}
.form-group .form-control {
background-color: transparent;
opacity: 1;
border: 0.8px solid #ffffff67;
padding: 1.5em 1em;
box-sizing: border-box;
border-radius: 10px;
}
header .banner {
margin: 0 5em;
}
header {
padding-bottom: 30vh;
-webkit-animation: pulse 1.5s ease-in;
animation: pulse 1.5s ease-in;
}
/* Footer Section Starts */
footer {
/* margin-top: 15em; */
padding: 2em 6em;
color: #000;
background-color: #fff;
font-family: "Montserrat", sans-serif;
}
footer .footer-heading {
font-weight: 600;
}
footer p {
color: #434343;
font-size: 16px;
}
footer .footer-top {
display: flex;
align-items: center;
align-self: start;
justify-content: space-between;
}
footer .footer-top img {
width: 100%;
padding: 0 4.5em;
}
footer .footer-links {
display: flex;
align-items: center;
justify-content: space-between;
}
footer .part-three {
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-content: flex-end;
}
footer .footer-cta {
zoom: 0.7;
}
footer .footer-cta .btn-one {
font-family: "Montserrat", sans-serif;
padding: 2em 1em 2em 1em;
color: #00012b;
background-color: #fff;
border: 1px solid #12131738;
border-radius: 8px;
}
footer .footer-cta .btn-two {
border-radius: 8px;
padding: 0 2em;
background-color: #000;
}
footer .footer-cta .btn-two img {
zoom: 1.5;
}
footer .footer-social {
display: flex;
justify-content: center;
}
footer .social {
margin-right: 1.5em;
margin-left: 1.5em;
border: 1px solid #12131738;
border-radius: 100%;
cursor: pointer;
}
footer .social svg {
width: 15px;
height: 15px;
}
footer .social:hover {
background-color: rgba(179, 179, 179, 0.136);
cursor: pointer;
transform: scale(1.2);
}
footer .footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5em 0 0em 0;
}
footer .footer-mail a {
cursor: pointer;
color: #000000;
}
.mail a {
cursor: pointer;
color: #FFF;
}
footer .footer-bottom .footer-copyright {
font-family: Montserrat;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 20px;
/* identical to box height */
text-align: right;
color: #000000;
}
footer .footer-bottom-index {
display: flex;
justify-content: center;
padding: 0.5em 0 0em 0;
}
/* Footer Section Ends */
/* Hero Section Starts */
.hero-section {
display: flex;
flex-direction: column;
align-self: center;
align-items: center;
margin: 8em 0 0em 0;
}
.hero-section #content-part {
display: flex;
flex-direction: column;
align-items: center;
align-self: center;
width: 50%;
justify-content: center;
}
.hero-section #content-part h1 {
line-height: 1.3em;
font-size: 3.2em;
}
.hero-section #content-part p {
margin-top: 1.5em;
line-height: 30px;
}
/* Hero Section Ends */
/* About Section Starts */
.about-section {
color: #fff;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.about-section .container {
padding: 6em 12em 1em 12em;
}
.about-section #content-part h1 {
line-height: 50px;
}
.about-section #content-part h2 {
font-size: 1.6em;
font-family: serif;
padding-top: 1.3em;
font-weight: 400;
}
.about-section #content-part .sub-head {
font-size: 1.4em;
padding-top: 1.3em;
}
.about-section #content-part p {
/* padding-top: 1em; */
line-height: 30px;
}
.about-section #image-part {
display: flex;
justify-content: end;
}
/* About Section Ends */
/* Portfolio Section Starts */
.portfolio-section {
color: #fff;
}
.portfolio-section .container {
padding: 2em 12em;
}
.portfolio-section #content-part {
margin-top: 6em;
}
.portfolio-section #content-part h1 {
font-family: 'Times New Roman', Times, serif;
line-height: 50px;
font-size: 36px;
font-weight: 600;
}
.portfolio-section #content-part h5 {
font-family: "Playfair Display", serif;
font-size: 16px;
font-weight: 400;
}
.portfolio-section #content-part p {
margin-top: 2em;
line-height: 30px;
}
.portfolio-section #image-part {
display: flex;
justify-content: end;
}
.portfolio-section #icons-part .vent {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.portfolio-section #icons-part .vent:hover {
background-color: #121218;
border-radius: 10px;
cursor: pointer;
-webkit-animation: ventGrow 0.8s forwards;
animation: ventGrow 0.8s forwards;
}
.portfolio-section #icons-part .icon {
height: 100px;
width: 10em;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.portfolio-section #icons-part p {
padding: 2em 0;
}
/* Portfolio Section Ends */
/* Contact Section Starts */
.contact-section {
color: #fff;
padding: 0 15em;
margin-top: 7em;
}
.contact-section #contact-content {
display: flex;
align-items: center;
}
.contact-section #contact-content .header {
font-size: 20px;
font-weight: 600;
}
.contact-section #contact-content p {
font-family: Montserrat;
font-size: 14px;
line-height: 17px;
margin: 0;
}
.contact-section #contact-content .content p {
width: 70%;
margin-bottom: 3em;
}
.contact-section #contact-content .info {
display: flex;
margin-top: 2em;
}
.contact-section #contact-content .info img {
margin: 0 1em 0 0;
}
.contact-section #contact-content .info p {
margin: 0;
}
.contact-section #contact-content .contact-social .social {
zoom: 0.9;
margin-right: 1em;
border: 1px solid #ffffff38;
border-radius: 100%;
cursor: pointer;
}
.contact-section #contact-content .contact-social .social svg,
.contact-section #contact-content .contact-social .social img {
width: 15px;
height: 15px;
}
.contact-section #contact-content .contact-social .social:hover {
background-color: rgba(179, 179, 179, 0.336);
cursor: pointer;
zoom: 1.2;
}
.contact-section #contact-content .contact-social .social:hover svg {
zoom: 1.2;
}
.contact-section #contact-content .contact-form {
width: 60%;
}
.contact-section #contact-content .contact-form .form-control {
font-weight: 600;
color: #fff;
background-color: #000000;
}
.contact-section #contact-content .contact-form ::-moz-placeholder {
font-weight: 300;
color: rgba(255, 255, 255, 0.479);
}
.contact-section #contact-content .contact-form :-ms-input-placeholder {
font-weight: 300;
color: rgba(255, 255, 255, 0.479);
}
.contact-section #contact-content .contact-form ::placeholder {
font-weight: 300;
color: rgba(255, 255, 255, 0.479);
}
.contact-section #contact-content .contact-form h2 {
font-weight: 700;
}
.contact-section #contact-content .contact-form p {
font-size: 0.7em;
}
.contact-section #contact-content .contact-form button {
width: 100%;
padding: 1em 0;
border-radius: 8px;
font-family: Montserrat;
font-style: normal;
font-weight: 600;
margin: 2em 0em;
}
.contact-section #contact-location {
display: flex;
align-items: center;
justify-content: space-between;
}
.contact-section #contact-location #contact-mails {
display: flex;
order: 0;
justify-content: space-between;
}
.contact-section #contact-location #contact-mails .header {
font-size: 1.2em;
font-weight: 600;
width: 15em;
}
.contact-section #contact-location #contact-mails p {
width: 15em;
margin: 0;
}
.contact-section #contact-location #contact-mails .part-three,
.contact-section #contact-location #contact-mails .part-one,
.contact-section #contact-location #contact-mails .part-two {
padding: 3em 0 0;
}
.contact-section #contact-location .map img {
margin: 5em 0 2em 0;
width: 35em;
height: 35em;
border-radius: 8px;
}
.contact-section #contact-location #map {
margin: 5em 0 2em 0;
width: 65em;
height: 35em;
border-radius: 8px;
}
/* Contact Section Ends */
#mainMenu li>a {
font-family: "Montserrat", sans-serif;
font-size: 10px;
letter-spacing: 1px;
color: rgba(255, 255, 255, 0.596);
font-weight: 400;
position: relative;
z-index: 1;
text-decoration: none;
}
#mainMenu li>a:hover {
color: white;
}
.main-header.fixed-nav #mainMenu li>a {
color: #fff;
text-decoration: none;
}
#mainMenu li {
text-align: center;
}
#mainMenu li {
margin: 0 15px 0 15px;
}
#mainMenu li>a::before {
position: absolute;
content: "";
width: calc(100% - 1px);
height: 1px;
background: #fff;
bottom: -6px;
left: 0;
transform: scale(0, 1);
transform-origin: right center;
z-index: -1;
transition: transform 0.5s ease;
}
#mainMenu li>a.active {
color: white;
}
#mainMenu li>a:hover::before,
#mainMenu li>a.active::before {
transform: scale(1, 1);
transform-origin: left center;
}
.main-header.fixed-nav #mainMenu li>a::before {
background: #000;
}
.main-header {
top: 25px;
left: 0;
z-index: 99;
width: 100%;
transition: all 0.4s ease;
}
.main-header.fixed-nav {
top: 0;
background: #fff;
box-shadow: 0 8px 12px -8px rgba(0, 0, 0, 0.09);
transition: all 0.4s ease;
}
.main-header.fixed-nav .navbar-brand>img:last-of-type {
display: block;
}
.main-header.fixed-nav .navbar-brand>img:first-of-type {
display: none;
}
.navbar-brand {
color: #fff;
margin: 0;
padding: 0;
}
.navbar-brand img {
max-width: 20% !important;
}
.main-header .navbar-brand img {
max-width: 40px;
-webkit-animation: fadeInLeft 0.4s both 0.4s;
animation: fadeInLeft 0.4s both 0.4s;
}
/* main-header end */
@media (max-width: 991px) {
html {
overflow: hidden;
height: 100%;
}
body {
overflow: auto;
height: 100%;
}
/*header starts*/
header {
zoom: 1;
}
header .banner {
margin: 0 3em;
}
header nav {
display: flex;
justify-content: space-between;
}
.hero {
animation: none !important;
background-image: linear-gradient(rgba(0, 5, 23, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%), url(../static/bagr.jpg) !important;
background-repeat: no-repeat;
background-attachment: scroll;
background-position: center top;
background-size: 300% 100%;
}
.hero-section #image-part {
display: none;
}
.hero-section #content-part {
width: 80%;
}
.hero-section #content-part h1 {
line-height: 1.4em;
font-size: 2.5em;
}
.custom-modal {
zoom: 1.5;
}
/* Portfolio Section Starts */
.portfolio-section {
margin-top: 3em;
color: #fff;
}
.portfolio-section .container {
padding: 5em 2em 0em 2em;
}
.portfolio-section #content-part {
margin-top: 1em;
}
.portfolio-section #image-part {
display: flex;
justify-content: end;
}
.about-section {
color: #fff;
}
.about-section .container {
padding: 5em 3em 0em 3em;
}
.about-section #image-part {
display: flex;
justify-content: end;
}
/* Portfolio Section Ends */
/* Contact Section Starts */
.contact-section {
color: #fff;
padding: 0 1em;
margin: 4em 2em;
}
.contact-section #contact-content {
flex-direction: column;
align-items: center;
}
.contact-section #contact-content .map img {
width: 30em;
height: 30em;
border-radius: 4px;
}
.contact-section #contact-content .contact-form {
width: 100%;
margin-top: 2em;
}
.contact-section #contact-content .contact-form h2,
.contact-section #contact-content .contact-form p {
text-align: center;
}
.contact-section #contact-content .info p {
margin: 0;
}
.contact-section #contact-content .content {
margin-top: 2em;
order: 2;
}
.contact-section #contact-content .content h2 {
font-size: 2em;
}
.contact-section #contact-content .content p {
width: 100%;
}
.contact-section #contact-location {
flex-direction: column;
}
.contact-section #contact-location #contact-mails {
flex-direction: column;
justify-content: space-between;
}
.contact-section #contact-location #contact-mails .container {
transform: scale(1.4);
margin: 0;
}
.contact-section #contact-location #contact-mails .header {
font-size: 1.2em;
font-weight: 600;
margin-top: 1em;
}
.contact-section #contact-location #contact-mails p {
width: 15em;
margin: 0;
}
.contact-section #contact-location #contact-mails .part-three,
.contact-section #contact-location #contact-mails .part-one,
.contact-section #contact-location #contact-mails .part-two {
margin: 2em 0 0 1em;
transform: scale(1.1);
}
.contact-section #contact-location .map img {
margin: 4em 0 1em 0;
height: 25em;
width: 25em;
}
.contact-section #contact-location #map {
margin: 4em 0 1em 0;
height: 25em;
width: 25em;
}
footer {
padding: 0;
zoom: 0.9;
}
footer .footer-top img {
width: 100%;
padding: 0 5em;
/* display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center; */
}
footer .footer-top {
flex-direction: column;
margin: 0 0em;
}
footer .part-one,
footer .part-two,
footer .part-three {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 2em;
align-content: center;
}
footer .part-two {
order: 3;
}
footer .footer-links {
display: flex;
align-items: center;
}
footer .footer-links div {
display: flex;
justify-content: space-between;
margin: 0;
}
footer .footer-links div p {
margin-right: 2em;
}
footer .footer-bottom {
flex-direction: column;
justify-content: center;
align-items: center;
bottom: 0;
}
footer .footer-bottom .footer-social {
justify-content: center;
margin-bottom: 2em;
}
footer .footer-bottom .footer-copyright {
padding-bottom: 1.2em;
}
footer .footer-bottom-index {
padding: 0.5em 0 1.4em 0;
}
#mainMenu li {
margin-right: 0px;
}
#mainMenu ul {
padding-bottom: 1em;
}
#mainMenu .navbar-nav {
display: flex;
background-color: #161A25;
}
#mainMenu li>a {
font-size: 15px;
}
.collapse.in {
display: block !important;
padding: 0;
clear: both;
}
.navbar-toggler {
margin: 0;
padding: 0;
width: 40px;
height: 40px;
position: absolute;
top: 37px;
right: 0;
border: none;
margin-right: 1em;
border-radius: 0;
outline: none !important;
}
.navbar-brand {
display: flex !important;
padding-left: 1em;
}
.navbar-brand img {
max-width: 40% !important;
left: 0;
}
.main-header .navbar {
float: none;
width: 100%;
padding-left: 0em;
padding-right: 0em;
text-align: center;
font-size: 2em;
}
.main-header .navbar-nav {
padding-top: 40px;
}
.main-header .navbar-nav li .nav-link {
text-align: center;
padding: 20px 15px;
border-radius: 0px;
}
/**/
.main-header .navbar-toggler .icon-bar {
background-color: #fff;
margin: 0 auto 6px;
border-radius: 0;
width: 30px;
height: 3px;
position: absolute;
right: 0;
transition: all 0.2s ease;
}
.main-header .navbar .navbar-toggler .icon-bar:first-child {
margin-top: 3px;
}
.main-header .navbar-toggler .icon-bar-1 {
width: 20px;
top: 0px;
}
.main-header .navbar-toggler .icon-bar-2 {
width: 14px;
top: 12px;
}
.main-header .navbar-toggler .icon-bar-3 {
width: 20px;
top: 21px;
}
.main-header .current .icon-bar {
margin-bottom: 5px;
border-radius: 0;
display: block;
}
.main-header .current .icon-bar-1 {
width: 18px;
}
.main-header .current .icon-bar-2 {
width: 30px;
}
.main-header .current .icon-bar-3 {
width: 10px;
}
.main-header .navbar-toggler:hover .icon-bar {
background-color: #fff;
}
.main-header .navbar-toggler:focus .icon-bar {
background-color: #fff;
}
}
.succes {
background-color: #161A25;
}
.succes-animation {
-webkit-animation: succes-pulse 2s infinite;
animation: succes-pulse 2s infinite;
}
.custom-modal {
position: relative;
width: 20em;
min-height: 5em;
background-color: #fff;
border-radius: 10px;
margin: 40px 10px;
}
.custom-modal .content {
position: absolute;
width: 100%;
text-align: center;
}
.custom-modal .content .message-type {
font-size: 24px;
font-weight: 600;
font-family: "Montserrat", sans-serif;
color: #161A25;
}
.custom-modal .border-bottom {
position: absolute;
width: 300px;
height: 20px;
border-radius: 0 0 10px 10px;
bottom: -20px;
margin: 0 25px;
}
.custom-modal .icon-top {
position: absolute;
width: 100px;
height: 100px;
border-radius: 50%;
top: -30px;
margin: 0 125px;
font-size: 30px;
color: #fff;
line-height: 100px;
text-align: center;
}
@-webkit-keyframes succes-pulse {
0% {
box-shadow: 0px 0px 30px 20px rgba(75, 181, 67, 0.2);
}
50% {
box-shadow: 0px 0px 30px 20px rgba(75, 181, 67, 0.4);
}
100% {
box-shadow: 0px 0px 30px 20px rgba(75, 181, 67, 0.2);
}
}
@keyframes succes-pulse {
0% {
box-shadow: 0px 0px 30px 20px rgba(75, 181, 67, 0.2);
}
50% {
box-shadow: 0px 0px 30px 20px rgba(75, 181, 67, 0.4);
}
100% {
box-shadow: 0px 0px 30px 20px rgba(75, 181, 67, 0.2);
}
}
.page-wrapper {
display: flex;
align-items: center;
justify-content: center;
padding: 80px 0;
}
/* @media only screen and (max-width: 800px) {
.page-wrapper {
flex-direction: column;
}
} */
/*# sourceMappingURL=style.css.map */ | src/style.css |
html {
overflow: hidden;
height: 100%;
}
body {
overflow: auto;
height: 100%;
padding-top: 0px !important;
overflow-x: hidden;
}
.vent {
opacity: 1;
/* margin-top: 4em; */
}
.monster {
transform: scale(1);
opacity: 1;
}
.hero {
animation: none !important;
background-image: linear-gradient(rgba(0, 5, 23, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%), url(../static/bagr.jpg) !important;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center top;
background-size: 100% 100%;
}
body,
.bgr {
background-image: linear-gradient(180deg, #161A25 0%, #0F0F0F 100%) !important;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.floatingNav {
background-color: #111521;
box-shadow: 0px 6px 3px #101218;
}
.main-header .navbar {
padding: 1em 5em 1em 5em;
}
@-webkit-keyframes ventGrow {
from {
transform: scale(1);
}
to {
transform: scale(1.1);
}
}
@keyframes ventGrow {
from {
transform: scale(1);
}
to {
transform: scale(1.1);
}
}
@-webkit-keyframes pulse {
0% {
opacity: 0;
/* padding-top: 2em; */
}
50% {
/* padding-top: 1em; */
opacity: 0.5;
}
100% {
/* padding-top: 0em; */
opacity: 1;
}
}
@keyframes pulse {
0% {
opacity: 0;
/* padding-top: 2em; */
}
50% {
/* padding-top: 1em; */
opacity: 0.5;
}
100% {
/* padding-top: 0em; */
opacity: 1;
}
}
[data-target="#mainMenu"] {
position: relative;
z-index: 999;
}
h1 {
font-family: "Playfair Display", serif;
color: #fff;
}
p {
font-family: "Montserrat", sans-serif;
color: #fff;
}
.form-group {
color: #fff;
font-family: Montserrat;
font-style: normal;
font-weight: bold;
-webkit-animation: pulse 3s ease-in;
animation: pulse 3s ease-in;
}
.form-group .form-control {
background-color: transparent;
opacity: 1;
border: 0.8px solid #ffffff67;
padding: 1.5em 1em;
box-sizing: border-box;
border-radius: 10px;
}
header .banner {
margin: 0 5em;
}
header {
padding-bottom: 30vh;
-webkit-animation: pulse 1.5s ease-in;
animation: pulse 1.5s ease-in;
}
/* Footer Section Starts */
footer {
/* margin-top: 15em; */
padding: 2em 6em;
color: #000;
background-color: #fff;
font-family: "Montserrat", sans-serif;
}
footer .footer-heading {
font-weight: 600;
}
footer p {
color: #434343;
font-size: 16px;
}
footer .footer-top {
display: flex;
align-items: center;
align-self: start;
justify-content: space-between;
}
footer .footer-top img {
width: 100%;
padding: 0 4.5em;
}
footer .footer-links {
display: flex;
align-items: center;
justify-content: space-between;
}
footer .part-three {
display: flex;
flex-wrap: wrap;
flex-direction: column;
align-content: flex-end;
}
footer .footer-cta {
zoom: 0.7;
}
footer .footer-cta .btn-one {
font-family: "Montserrat", sans-serif;
padding: 2em 1em 2em 1em;
color: #00012b;
background-color: #fff;
border: 1px solid #12131738;
border-radius: 8px;
}
footer .footer-cta .btn-two {
border-radius: 8px;
padding: 0 2em;
background-color: #000;
}
footer .footer-cta .btn-two img {
zoom: 1.5;
}
footer .footer-social {
display: flex;
justify-content: center;
}
footer .social {
margin-right: 1.5em;
margin-left: 1.5em;
border: 1px solid #12131738;
border-radius: 100%;
cursor: pointer;
}
footer .social svg {
width: 15px;
height: 15px;
}
footer .social:hover {
background-color: rgba(179, 179, 179, 0.136);
cursor: pointer;
transform: scale(1.2);
}
footer .footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.5em 0 0em 0;
}
footer .footer-mail a {
cursor: pointer;
color: #000000;
}
.mail a {
cursor: pointer;
color: #FFF;
}
footer .footer-bottom .footer-copyright {
font-family: Montserrat;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 20px;
/* identical to box height */
text-align: right;
color: #000000;
}
footer .footer-bottom-index {
display: flex;
justify-content: center;
padding: 0.5em 0 0em 0;
}
/* Footer Section Ends */
/* Hero Section Starts */
.hero-section {
display: flex;
flex-direction: column;
align-self: center;
align-items: center;
margin: 8em 0 0em 0;
}
.hero-section #content-part {
display: flex;
flex-direction: column;
align-items: center;
align-self: center;
width: 50%;
justify-content: center;
}
.hero-section #content-part h1 {
line-height: 1.3em;
font-size: 3.2em;
}
.hero-section #content-part p {
margin-top: 1.5em;
line-height: 30px;
}
/* Hero Section Ends */
/* About Section Starts */
.about-section {
color: #fff;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.about-section .container {
padding: 6em 12em 1em 12em;
}
.about-section #content-part h1 {
line-height: 50px;
}
.about-section #content-part h2 {
font-size: 1.6em;
font-family: serif;
padding-top: 1.3em;
font-weight: 400;
}
.about-section #content-part .sub-head {
font-size: 1.4em;
padding-top: 1.3em;
}
.about-section #content-part p {
/* padding-top: 1em; */
line-height: 30px;
}
.about-section #image-part {
display: flex;
justify-content: end;
}
/* About Section Ends */
/* Portfolio Section Starts */
.portfolio-section {
color: #fff;
}
.portfolio-section .container {
padding: 2em 12em;
}
.portfolio-section #content-part {
margin-top: 6em;
}
.portfolio-section #content-part h1 {
font-family: 'Times New Roman', Times, serif;
line-height: 50px;
font-size: 36px;
font-weight: 600;
}
.portfolio-section #content-part h5 {
font-family: "Playfair Display", serif;
font-size: 16px;
font-weight: 400;
}
.portfolio-section #content-part p {
margin-top: 2em;
line-height: 30px;
}
.portfolio-section #image-part {
display: flex;
justify-content: end;
}
.portfolio-section #icons-part .vent {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.portfolio-section #icons-part .vent:hover {
background-color: #121218;
border-radius: 10px;
cursor: pointer;
-webkit-animation: ventGrow 0.8s forwards;
animation: ventGrow 0.8s forwards;
}
.portfolio-section #icons-part .icon {
height: 100px;
width: 10em;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.portfolio-section #icons-part p {
padding: 2em 0;
}
/* Portfolio Section Ends */
/* Contact Section Starts */
.contact-section {
color: #fff;
padding: 0 15em;
margin-top: 7em;
}
.contact-section #contact-content {
display: flex;
align-items: center;
}
.contact-section #contact-content .header {
font-size: 20px;
font-weight: 600;
}
.contact-section #contact-content p {
font-family: Montserrat;
font-size: 14px;
line-height: 17px;
margin: 0;
}
.contact-section #contact-content .content p {
width: 70%;
margin-bottom: 3em;
}
.contact-section #contact-content .info {
display: flex;
margin-top: 2em;
}
.contact-section #contact-content .info img {
margin: 0 1em 0 0;
}
.contact-section #contact-content .info p {
margin: 0;
}
.contact-section #contact-content .contact-social .social {
zoom: 0.9;
margin-right: 1em;
border: 1px solid #ffffff38;
border-radius: 100%;
cursor: pointer;
}
.contact-section #contact-content .contact-social .social svg,
.contact-section #contact-content .contact-social .social img {
width: 15px;
height: 15px;
}
.contact-section #contact-content .contact-social .social:hover {
background-color: rgba(179, 179, 179, 0.336);
cursor: pointer;
zoom: 1.2;
}
.contact-section #contact-content .contact-social .social:hover svg {
zoom: 1.2;
}
.contact-section #contact-content .contact-form {
width: 60%;
}
.contact-section #contact-content .contact-form .form-control {
font-weight: 600;
color: #fff;
background-color: #000000;
}
.contact-section #contact-content .contact-form ::-moz-placeholder {
font-weight: 300;
color: rgba(255, 255, 255, 0.479);
}
.contact-section #contact-content .contact-form :-ms-input-placeholder {
font-weight: 300;
color: rgba(255, 255, 255, 0.479);
}
.contact-section #contact-content .contact-form ::placeholder {
font-weight: 300;
color: rgba(255, 255, 255, 0.479);
}
.contact-section #contact-content .contact-form h2 {
font-weight: 700;
}
.contact-section #contact-content .contact-form p {
font-size: 0.7em;
}
.contact-section #contact-content .contact-form button {
width: 100%;
padding: 1em 0;
border-radius: 8px;
font-family: Montserrat;
font-style: normal;
font-weight: 600;
margin: 2em 0em;
}
.contact-section #contact-location {
display: flex;
align-items: center;
justify-content: space-between;
}
.contact-section #contact-location #contact-mails {
display: flex;
order: 0;
justify-content: space-between;
}
.contact-section #contact-location #contact-mails .header {
font-size: 1.2em;
font-weight: 600;
width: 15em;
}
.contact-section #contact-location #contact-mails p {
width: 15em;
margin: 0;
}
.contact-section #contact-location #contact-mails .part-three,
.contact-section #contact-location #contact-mails .part-one,
.contact-section #contact-location #contact-mails .part-two {
padding: 3em 0 0;
}
.contact-section #contact-location .map img {
margin: 5em 0 2em 0;
width: 35em;
height: 35em;
border-radius: 8px;
}
.contact-section #contact-location #map {
margin: 5em 0 2em 0;
width: 65em;
height: 35em;
border-radius: 8px;
}
/* Contact Section Ends */
#mainMenu li>a {
font-family: "Montserrat", sans-serif;
font-size: 10px;
letter-spacing: 1px;
color: rgba(255, 255, 255, 0.596);
font-weight: 400;
position: relative;
z-index: 1;
text-decoration: none;
}
#mainMenu li>a:hover {
color: white;
}
.main-header.fixed-nav #mainMenu li>a {
color: #fff;
text-decoration: none;
}
#mainMenu li {
text-align: center;
}
#mainMenu li {
margin: 0 15px 0 15px;
}
#mainMenu li>a::before {
position: absolute;
content: "";
width: calc(100% - 1px);
height: 1px;
background: #fff;
bottom: -6px;
left: 0;
transform: scale(0, 1);
transform-origin: right center;
z-index: -1;
transition: transform 0.5s ease;
}
#mainMenu li>a.active {
color: white;
}
#mainMenu li>a:hover::before,
#mainMenu li>a.active::before {
transform: scale(1, 1);
transform-origin: left center;
}
.main-header.fixed-nav #mainMenu li>a::before {
background: #000;
}
.main-header {
top: 25px;
left: 0;
z-index: 99;
width: 100%;
transition: all 0.4s ease;
}
.main-header.fixed-nav {
top: 0;
background: #fff;
box-shadow: 0 8px 12px -8px rgba(0, 0, 0, 0.09);
transition: all 0.4s ease;
}
.main-header.fixed-nav .navbar-brand>img:last-of-type {
display: block;
}
.main-header.fixed-nav .navbar-brand>img:first-of-type {
display: none;
}
.navbar-brand {
color: #fff;
margin: 0;
padding: 0;
}
.navbar-brand img {
max-width: 20% !important;
}
.main-header .navbar-brand img {
max-width: 40px;
-webkit-animation: fadeInLeft 0.4s both 0.4s;
animation: fadeInLeft 0.4s both 0.4s;
}
/* main-header end */
@media (max-width: 991px) {
html {
overflow: hidden;
height: 100%;
}
body {
overflow: auto;
height: 100%;
}
/*header starts*/
header {
zoom: 1;
}
header .banner {
margin: 0 3em;
}
header nav {
display: flex;
justify-content: space-between;
}
.hero {
animation: none !important;
background-image: linear-gradient(rgba(0, 5, 23, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%), url(../static/bagr.jpg) !important;
background-repeat: no-repeat;
background-attachment: scroll;
background-position: center top;
background-size: 300% 100%;
}
.hero-section #image-part {
display: none;
}
.hero-section #content-part {
width: 80%;
}
.hero-section #content-part h1 {
line-height: 1.4em;
font-size: 2.5em;
}
.custom-modal {
zoom: 1.5;
}
/* Portfolio Section Starts */
.portfolio-section {
margin-top: 3em;
color: #fff;
}
.portfolio-section .container {
padding: 5em 2em 0em 2em;
}
.portfolio-section #content-part {
margin-top: 1em;
}
.portfolio-section #image-part {
display: flex;
justify-content: end;
}
.about-section {
color: #fff;
}
.about-section .container {
padding: 5em 3em 0em 3em;
}
.about-section #image-part {
display: flex;
justify-content: end;
}
/* Portfolio Section Ends */
/* Contact Section Starts */
.contact-section {
color: #fff;
padding: 0 1em;
margin: 4em 2em;
}
.contact-section #contact-content {
flex-direction: column;
align-items: center;
}
.contact-section #contact-content .map img {
width: 30em;
height: 30em;
border-radius: 4px;
}
.contact-section #contact-content .contact-form {
width: 100%;
margin-top: 2em;
}
.contact-section #contact-content .contact-form h2,
.contact-section #contact-content .contact-form p {
text-align: center;
}
.contact-section #contact-content .info p {
margin: 0;
}
.contact-section #contact-content .content {
margin-top: 2em;
order: 2;
}
.contact-section #contact-content .content h2 {
font-size: 2em;
}
.contact-section #contact-content .content p {
width: 100%;
}
.contact-section #contact-location {
flex-direction: column;
}
.contact-section #contact-location #contact-mails {
flex-direction: column;
justify-content: space-between;
}
.contact-section #contact-location #contact-mails .container {
transform: scale(1.4);
margin: 0;
}
.contact-section #contact-location #contact-mails .header {
font-size: 1.2em;
font-weight: 600;
margin-top: 1em;
}
.contact-section #contact-location #contact-mails p {
width: 15em;
margin: 0;
}
.contact-section #contact-location #contact-mails .part-three,
.contact-section #contact-location #contact-mails .part-one,
.contact-section #contact-location #contact-mails .part-two {
margin: 2em 0 0 1em;
transform: scale(1.1);
}
.contact-section #contact-location .map img {
margin: 4em 0 1em 0;
height: 25em;
width: 25em;
}
.contact-section #contact-location #map {
margin: 4em 0 1em 0;
height: 25em;
width: 25em;
}
footer {
padding: 0;
zoom: 0.9;
}
footer .footer-top img {
width: 100%;
padding: 0 5em;
/* display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center; */
}
footer .footer-top {
flex-direction: column;
margin: 0 0em;
}
footer .part-one,
footer .part-two,
footer .part-three {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 2em;
align-content: center;
}
footer .part-two {
order: 3;
}
footer .footer-links {
display: flex;
align-items: center;
}
footer .footer-links div {
display: flex;
justify-content: space-between;
margin: 0;
}
footer .footer-links div p {
margin-right: 2em;
}
footer .footer-bottom {
flex-direction: column;
justify-content: center;
align-items: center;
bottom: 0;
}
footer .footer-bottom .footer-social {
justify-content: center;
margin-bottom: 2em;
}
footer .footer-bottom .footer-copyright {
padding-bottom: 1.2em;
}
footer .footer-bottom-index {
padding: 0.5em 0 1.4em 0;
}
#mainMenu li {
margin-right: 0px;
}
#mainMenu ul {
padding-bottom: 1em;
}
#mainMenu .navbar-nav {
display: flex;
background-color: #161A25;
}
#mainMenu li>a {
font-size: 15px;
}
.collapse.in {
display: block !important;
padding: 0;
clear: both;
}
.navbar-toggler {
margin: 0;
padding: 0;
width: 40px;
height: 40px;
position: absolute;
top: 37px;
right: 0;
border: none;
margin-right: 1em;
border-radius: 0;
outline: none !important;
}
.navbar-brand {
display: flex !important;
padding-left: 1em;
}
.navbar-brand img {
max-width: 40% !important;
left: 0;
}
.main-header .navbar {
float: none;
width: 100%;
padding-left: 0em;
padding-right: 0em;
text-align: center;
font-size: 2em;
}
.main-header .navbar-nav {
padding-top: 40px;
}
.main-header .navbar-nav li .nav-link {
text-align: center;
padding: 20px 15px;
border-radius: 0px;
}
/**/
.main-header .navbar-toggler .icon-bar {
background-color: #fff;
margin: 0 auto 6px;
border-radius: 0;
width: 30px;
height: 3px;
position: absolute;
right: 0;
transition: all 0.2s ease;
}
.main-header .navbar .navbar-toggler .icon-bar:first-child {
margin-top: 3px;
}
.main-header .navbar-toggler .icon-bar-1 {
width: 20px;
top: 0px;
}
.main-header .navbar-toggler .icon-bar-2 {
width: 14px;
top: 12px;
}
.main-header .navbar-toggler .icon-bar-3 {
width: 20px;
top: 21px;
}
.main-header .current .icon-bar {
margin-bottom: 5px;
border-radius: 0;
display: block;
}
.main-header .current .icon-bar-1 {
width: 18px;
}
.main-header .current .icon-bar-2 {
width: 30px;
}
.main-header .current .icon-bar-3 {
width: 10px;
}
.main-header .navbar-toggler:hover .icon-bar {
background-color: #fff;
}
.main-header .navbar-toggler:focus .icon-bar {
background-color: #fff;
}
}
.succes {
background-color: #161A25;
}
.succes-animation {
-webkit-animation: succes-pulse 2s infinite;
animation: succes-pulse 2s infinite;
}
.custom-modal {
position: relative;
width: 20em;
min-height: 5em;
background-color: #fff;
border-radius: 10px;
margin: 40px 10px;
}
.custom-modal .content {
position: absolute;
width: 100%;
text-align: center;
}
.custom-modal .content .message-type {
font-size: 24px;
font-weight: 600;
font-family: "Montserrat", sans-serif;
color: #161A25;
}
.custom-modal .border-bottom {
position: absolute;
width: 300px;
height: 20px;
border-radius: 0 0 10px 10px;
bottom: -20px;
margin: 0 25px;
}
.custom-modal .icon-top {
position: absolute;
width: 100px;
height: 100px;
border-radius: 50%;
top: -30px;
margin: 0 125px;
font-size: 30px;
color: #fff;
line-height: 100px;
text-align: center;
}
@-webkit-keyframes succes-pulse {
0% {
box-shadow: 0px 0px 30px 20px rgba(75, 181, 67, 0.2);
}
50% {
box-shadow: 0px 0px 30px 20px rgba(75, 181, 67, 0.4);
}
100% {
box-shadow: 0px 0px 30px 20px rgba(75, 181, 67, 0.2);
}
}
@keyframes succes-pulse {
0% {
box-shadow: 0px 0px 30px 20px rgba(75, 181, 67, 0.2);
}
50% {
box-shadow: 0px 0px 30px 20px rgba(75, 181, 67, 0.4);
}
100% {
box-shadow: 0px 0px 30px 20px rgba(75, 181, 67, 0.2);
}
}
.page-wrapper {
display: flex;
align-items: center;
justify-content: center;
padding: 80px 0;
}
/* @media only screen and (max-width: 800px) {
.page-wrapper {
flex-direction: column;
}
} */
/*# sourceMappingURL=style.css.map */ | 0.506103 | 0.13243 |
html { overflow-y: scroll;}
body{ color:#color:#525252; border-top:solid 5px #56A4DB; background:#fff url(../img/pattern1.png);} /*background:#fff url(../img/pattern1.png);*/
/* ====== media ====== */
.media {margin:12px 0 12px 0; clear: both;}
.media, .bd {overflow:hidden; _overflow:visible; zoom:1;}
a .bd {font-size: 10px; text-decoration: none;}
.media .img {float:left; margin-right: 12px;}
.media .img img{display:block;}
.regLink { float: right; margin-right: 20px; margin-top: 3px;font-weight: bold; font-family: inherit;text-shadow: 0 1px 1px rgb(85, 85, 85); color: #fff; }
.regLink:hover { text-shadow: 0 3px 3px rgb(85, 85, 85); color: #fff; }
#login .cont, #login-collapse {width:990px;padding: 0 30px; margin:0 auto;}
.cf:before, .cf:after {content:"";display:table;}
.cf:after {clear:both;}
.cf {zoom:1;}
#login {padding-top:14px; padding-bottom: 10px;background:#56A4DB;color:#fff;text-shadow:0 0 0;font-size:13px;}
#login a {color:#0E4466;border-bottom:1px solid}
#login a:hover {color: white;}
#login p {float:left;font-size:12px;font-weight:500;padding-top: 9px;}
.ie7 #login p {display: block; float: none; width: 100%; margin-left: 380px;}
#login form {padding-top:6px;float:right; width: 600px; margin-right: 110px; }
.ie7 #login form {float: none;}
#login label {margin:0 5px 0 0; color: #0E4466; display: inline;}
#login input {margin:0 16px 0 0;padding:4px 8px; display: inline;}
#login input {background: white; text-align: left; font-size: 14px; border-width: 1px; border-style: solid; border-color: #226EB5; -moz-border-radius:4px ;-webkit-border-radius:4px; border-radius: 4px; outline: none;}
/*
#login input[type="submit"] {border:2px solid #fff;margin:0 0 0 20px;background:#45bcd2;color:#fff;text-transform:uppercase;font-size:13px;letter-spacing:1px;padding:2px 6px;}
.ie7 #login input[type="submit"] {text-align: center;padding: 2px 0 0; letter-spacing: 0;}
#login input[type="submit"]:hover {background:#0E5D86;color:#fff;}
*/
#login input[type=text], #login input[type=password] {width:150px;}
#login input.error {background-color: #FFADAD;border-color: #f40;border-width: 2px;}
#login p.sysInfo {padding-top: 4px; font-size: 14px;}
#login-collapse {text-align:center;text-shadow:0 0 0; }
#login-collapse a {position:relative;top:-4px;float:right;background:#56A4DB;color:#fff;padding:8px 20px;display:block;margin-right:225px;
-webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px;}
#login-collapse a span {border-bottom:1px solid rgba(255,255,255,.3); border-bottom: 0;}
#login-collapse a:hover span {border-color:rgba(255,255,255,.8);}
#header{margin-top:45px; margin-bottom:60px; text-align:center;}
#header a{ display:block; width:182px; height:50px; background:url(../img/logo-fulltext.png) no-repeat center; text-indent:-9999px; margin:0 auto;}
#intro {
background: #1373B9;
height: 522px;
position: relative;
overflow: hidden;
}
#intro .background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 100;
background-size: 100%;
background-image: url('../../assets-home/img/nana.jpg');
background-repeat: no-repeat;
background-position:center;
/* opacity: 1; */
}
#intro .wrapper {
position: relative;
z-index: 101;
}
#intro .wrapper {
}
.wrapper {
width: 920px;
margin: auto;
}
#intro .page-title-wrapper {padding-top: 100px; padding-left: 450px;}
#intro .customer-card {
position: absolute;
bottom: 18px;
left: 50%;
z-index: 102;
margin-left: 330px;
border-right: solid 1px rgba(255, 255, 255, 0.5);
padding: 0px 18px;
color: #BBB;
font-family: "proxima-nova", sans-serif;
line-height: 14px;
/* opacity: 0; */
text-align: right;
}
#intro .customer-card h2 {
line-height: 16px;
}
#intro .customer-card h2 a {
font-size: 11px;
margin: 0;
padding: 0;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
color: #EEE;
}
#intro .customer-card p { padding-bottom: 0; margin-bottom: 0;}
#intro .customer-card p a{
font-size: 11px;
margin: 0;
color:#fff;
}
#intro .customer-card a:hover { color: #005580; text-decoration: none;}
.logo {position:absolute; z-index: 106;padding-top: 40px;}
.page-title h1 { font-size:34px; font-family: 'Droid Serif', serif; font-weight: 400; margin-bottom:10px; line-height: 55px; color: #56A4DB; text-align: right;}
.page-title h1 .title-wrap {
background-color: white;
padding: 3px 6px;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
filter: alpha(opacity=90);
-moz-opacity: 0.9;
-khtml-opacity: 0.9;
opacity: 0.9;
}
#catchycontent p{ font-size:16px; font-family: 'Droid Serif', serif; line-height:26px; font-weight:400; font-style:italic;}
#subscribe{text-align:center; margin-top:40px;}
.input-large{ padding:9px 14px; }
.btn-success {
background-color: #d23828;
*background-color: #d23828;
background-image: -ms-linear-gradient(top, #d23828, #c11503);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#d23828), to(#c11503));
background-image: -webkit-linear-gradient(top, #d23828, #c11503);
background-image: -o-linear-gradient(top, #d23828, #c11503);
background-image: -moz-linear-gradient(top, #d23828, #c11503);
background-image: linear-gradient(top, #d23828, #c11503);
background-repeat: repeat-x;
border-color: #a61304 #a61304 #a61304;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#d23828', endColorstr='#c11503', GradientType=0);
filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
background-color: #c11503;
*background-color: #c11503;
}
.btn-success:active,
.btn-success.active {
background-color: #c11503 \9;
}
.btn-large {
padding: 9px 20px;
font-size: 16px;
line-height: normal;
font-weight:700;font-family: 'Droid Serif', serif; font-style:italic;
margin-left:10px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
input:focus,
textarea:focus {
border-color: rgba(82, 82, 82, 0.8);
outline: 0;
outline: thin dotted \9;
/* IE6-9 */
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 82, 82, 0.6);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 82, 82, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 82, 82, 0.6);
}
#features {margin-top:40px; text-align:center;}
.featureicon{ color:#d23828; font-size:36px; margin-bottom:15px; padding:0 20px 0 0;}
h2{ font-family: 'Droid Serif', serif; text-align:left;}
h3{ font-size:16px; font-family: 'Droid Serif', serif; line-height:26px; font-weight:700; padding:0 20px 0 0;}
#features p {font-size:12px; font-family: 'Droid Serif', serif; line-height:20px; font-weight:400;padding:0 20px 0 0;}
.divider{background:url(../img/divider.png) repeat-y right;}
.dividerHoriTop {margin-top:10px; background:url(../img/footer-divider.png) repeat-x top; padding-top:40px;}
.dividerHoriBot {margin-top:10px; background:url(../img/footer-divider.png) repeat-x bottom; padding-bottom:40px; margin-bottom: 10px;}
#footer{margin-top:20px; text-align:left; background: url(../img/footer-divider.png) repeat-x top; padding-top:40px;}
#footer h4{ margin:0 0 20px;font-size:14px; font-family: 'Droid Serif', serif; line-height:24px; font-weight:400;}
.footericon{ color:#d23828; font-size:36px; margin-bottom:15px;margin-top: 7px;}
.footericon a{ color:#d23828;}
.footericon a:hover{ color:#a61304; text-decoration:none;}
#footer p{ font-size:10px; font-family: 'Droid Serif', serif;font-weight:400;}
#footer .media {margin-top: 0;}
.error { color: rgb(214, 18, 12); }
/* MEDIA QUERIES CUSTOM */
@media (max-width: 480px) {
#intro {
height: 180px;
}
#intro .page-title-wrapper {
padding-top: 40px;
padding-left: 0px;
}
#login form { width: 400px; margin-right: 0px; }
#login .cont, #login-collapse {
width: 400px;
}
#login input[type=text], #login input[type=password] {width:120px;}
}
@media (max-width: 767px) {
#intro {
height: 300px;
}
.wrapper {
width: 580px;
}
#intro .page-title-wrapper {
padding-top: 40px;
padding-left: 200px;
}
#intro .page-title-wrapper h1 {
font-size: 24px;
line-height: 38px;
}
#login form { width: 600px; margin-right: 0px; }
#login .cont, #login-collapse {
width: 500px;
}
#intro .customer-card {margin-left: 230px;}
#login input[type=text], #login input[type=password] {width:120px;}
}
@media (min-width: 768px) and (max-width: 979px) {
#intro {
height: 430px;
}
.wrapper {
width: 658px;
}
#intro .page-title-wrapper {
padding-top: 90px;
padding-left: 250px;
}
#intro .page-title-wrapper h1 {
font-size: 28px;
line-height: 46px;
}
#login form { width: 600px; margin-right: 0px; }
#login .cont, #login-collapse {
width: 753px;
}
#intro .customer-card {margin-left: 254px;}
#login input[type=text], #login input[type=password] {width:150px;}
input.span3, textarea.span3, .uneditable-input.span3 {width: 103px;}
}
@media (min-width: 1200px) {
.wrapper {
width: 1000px;
}
#login form { width: 750px; margin-right: 110px; }
#intro .customer-card {margin-left: 380px;}
#login input[type=text], #login input[type=password] {width:220px;}
}
@media (min-width: 1400px) {
.logo { padding-top: 0; top:18px; }
}
@media (min-width: 1600px) {
.logo { top:116px; left:-50px;}
} | fluxtream-web/src/main/webapp/assets-home/css/style.css | html { overflow-y: scroll;}
body{ color:#color:#525252; border-top:solid 5px #56A4DB; background:#fff url(../img/pattern1.png);} /*background:#fff url(../img/pattern1.png);*/
/* ====== media ====== */
.media {margin:12px 0 12px 0; clear: both;}
.media, .bd {overflow:hidden; _overflow:visible; zoom:1;}
a .bd {font-size: 10px; text-decoration: none;}
.media .img {float:left; margin-right: 12px;}
.media .img img{display:block;}
.regLink { float: right; margin-right: 20px; margin-top: 3px;font-weight: bold; font-family: inherit;text-shadow: 0 1px 1px rgb(85, 85, 85); color: #fff; }
.regLink:hover { text-shadow: 0 3px 3px rgb(85, 85, 85); color: #fff; }
#login .cont, #login-collapse {width:990px;padding: 0 30px; margin:0 auto;}
.cf:before, .cf:after {content:"";display:table;}
.cf:after {clear:both;}
.cf {zoom:1;}
#login {padding-top:14px; padding-bottom: 10px;background:#56A4DB;color:#fff;text-shadow:0 0 0;font-size:13px;}
#login a {color:#0E4466;border-bottom:1px solid}
#login a:hover {color: white;}
#login p {float:left;font-size:12px;font-weight:500;padding-top: 9px;}
.ie7 #login p {display: block; float: none; width: 100%; margin-left: 380px;}
#login form {padding-top:6px;float:right; width: 600px; margin-right: 110px; }
.ie7 #login form {float: none;}
#login label {margin:0 5px 0 0; color: #0E4466; display: inline;}
#login input {margin:0 16px 0 0;padding:4px 8px; display: inline;}
#login input {background: white; text-align: left; font-size: 14px; border-width: 1px; border-style: solid; border-color: #226EB5; -moz-border-radius:4px ;-webkit-border-radius:4px; border-radius: 4px; outline: none;}
/*
#login input[type="submit"] {border:2px solid #fff;margin:0 0 0 20px;background:#45bcd2;color:#fff;text-transform:uppercase;font-size:13px;letter-spacing:1px;padding:2px 6px;}
.ie7 #login input[type="submit"] {text-align: center;padding: 2px 0 0; letter-spacing: 0;}
#login input[type="submit"]:hover {background:#0E5D86;color:#fff;}
*/
#login input[type=text], #login input[type=password] {width:150px;}
#login input.error {background-color: #FFADAD;border-color: #f40;border-width: 2px;}
#login p.sysInfo {padding-top: 4px; font-size: 14px;}
#login-collapse {text-align:center;text-shadow:0 0 0; }
#login-collapse a {position:relative;top:-4px;float:right;background:#56A4DB;color:#fff;padding:8px 20px;display:block;margin-right:225px;
-webkit-border-radius:4px; -moz-border-radius:4px; border-radius:4px;}
#login-collapse a span {border-bottom:1px solid rgba(255,255,255,.3); border-bottom: 0;}
#login-collapse a:hover span {border-color:rgba(255,255,255,.8);}
#header{margin-top:45px; margin-bottom:60px; text-align:center;}
#header a{ display:block; width:182px; height:50px; background:url(../img/logo-fulltext.png) no-repeat center; text-indent:-9999px; margin:0 auto;}
#intro {
background: #1373B9;
height: 522px;
position: relative;
overflow: hidden;
}
#intro .background {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 100;
background-size: 100%;
background-image: url('../../assets-home/img/nana.jpg');
background-repeat: no-repeat;
background-position:center;
/* opacity: 1; */
}
#intro .wrapper {
position: relative;
z-index: 101;
}
#intro .wrapper {
}
.wrapper {
width: 920px;
margin: auto;
}
#intro .page-title-wrapper {padding-top: 100px; padding-left: 450px;}
#intro .customer-card {
position: absolute;
bottom: 18px;
left: 50%;
z-index: 102;
margin-left: 330px;
border-right: solid 1px rgba(255, 255, 255, 0.5);
padding: 0px 18px;
color: #BBB;
font-family: "proxima-nova", sans-serif;
line-height: 14px;
/* opacity: 0; */
text-align: right;
}
#intro .customer-card h2 {
line-height: 16px;
}
#intro .customer-card h2 a {
font-size: 11px;
margin: 0;
padding: 0;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
color: #EEE;
}
#intro .customer-card p { padding-bottom: 0; margin-bottom: 0;}
#intro .customer-card p a{
font-size: 11px;
margin: 0;
color:#fff;
}
#intro .customer-card a:hover { color: #005580; text-decoration: none;}
.logo {position:absolute; z-index: 106;padding-top: 40px;}
.page-title h1 { font-size:34px; font-family: 'Droid Serif', serif; font-weight: 400; margin-bottom:10px; line-height: 55px; color: #56A4DB; text-align: right;}
.page-title h1 .title-wrap {
background-color: white;
padding: 3px 6px;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
filter: alpha(opacity=90);
-moz-opacity: 0.9;
-khtml-opacity: 0.9;
opacity: 0.9;
}
#catchycontent p{ font-size:16px; font-family: 'Droid Serif', serif; line-height:26px; font-weight:400; font-style:italic;}
#subscribe{text-align:center; margin-top:40px;}
.input-large{ padding:9px 14px; }
.btn-success {
background-color: #d23828;
*background-color: #d23828;
background-image: -ms-linear-gradient(top, #d23828, #c11503);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#d23828), to(#c11503));
background-image: -webkit-linear-gradient(top, #d23828, #c11503);
background-image: -o-linear-gradient(top, #d23828, #c11503);
background-image: -moz-linear-gradient(top, #d23828, #c11503);
background-image: linear-gradient(top, #d23828, #c11503);
background-repeat: repeat-x;
border-color: #a61304 #a61304 #a61304;
border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
filter: progid:dximagetransform.microsoft.gradient(startColorstr='#d23828', endColorstr='#c11503', GradientType=0);
filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
background-color: #c11503;
*background-color: #c11503;
}
.btn-success:active,
.btn-success.active {
background-color: #c11503 \9;
}
.btn-large {
padding: 9px 20px;
font-size: 16px;
line-height: normal;
font-weight:700;font-family: 'Droid Serif', serif; font-style:italic;
margin-left:10px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
input:focus,
textarea:focus {
border-color: rgba(82, 82, 82, 0.8);
outline: 0;
outline: thin dotted \9;
/* IE6-9 */
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 82, 82, 0.6);
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 82, 82, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 82, 82, 0.6);
}
#features {margin-top:40px; text-align:center;}
.featureicon{ color:#d23828; font-size:36px; margin-bottom:15px; padding:0 20px 0 0;}
h2{ font-family: 'Droid Serif', serif; text-align:left;}
h3{ font-size:16px; font-family: 'Droid Serif', serif; line-height:26px; font-weight:700; padding:0 20px 0 0;}
#features p {font-size:12px; font-family: 'Droid Serif', serif; line-height:20px; font-weight:400;padding:0 20px 0 0;}
.divider{background:url(../img/divider.png) repeat-y right;}
.dividerHoriTop {margin-top:10px; background:url(../img/footer-divider.png) repeat-x top; padding-top:40px;}
.dividerHoriBot {margin-top:10px; background:url(../img/footer-divider.png) repeat-x bottom; padding-bottom:40px; margin-bottom: 10px;}
#footer{margin-top:20px; text-align:left; background: url(../img/footer-divider.png) repeat-x top; padding-top:40px;}
#footer h4{ margin:0 0 20px;font-size:14px; font-family: 'Droid Serif', serif; line-height:24px; font-weight:400;}
.footericon{ color:#d23828; font-size:36px; margin-bottom:15px;margin-top: 7px;}
.footericon a{ color:#d23828;}
.footericon a:hover{ color:#a61304; text-decoration:none;}
#footer p{ font-size:10px; font-family: 'Droid Serif', serif;font-weight:400;}
#footer .media {margin-top: 0;}
.error { color: rgb(214, 18, 12); }
/* MEDIA QUERIES CUSTOM */
@media (max-width: 480px) {
#intro {
height: 180px;
}
#intro .page-title-wrapper {
padding-top: 40px;
padding-left: 0px;
}
#login form { width: 400px; margin-right: 0px; }
#login .cont, #login-collapse {
width: 400px;
}
#login input[type=text], #login input[type=password] {width:120px;}
}
@media (max-width: 767px) {
#intro {
height: 300px;
}
.wrapper {
width: 580px;
}
#intro .page-title-wrapper {
padding-top: 40px;
padding-left: 200px;
}
#intro .page-title-wrapper h1 {
font-size: 24px;
line-height: 38px;
}
#login form { width: 600px; margin-right: 0px; }
#login .cont, #login-collapse {
width: 500px;
}
#intro .customer-card {margin-left: 230px;}
#login input[type=text], #login input[type=password] {width:120px;}
}
@media (min-width: 768px) and (max-width: 979px) {
#intro {
height: 430px;
}
.wrapper {
width: 658px;
}
#intro .page-title-wrapper {
padding-top: 90px;
padding-left: 250px;
}
#intro .page-title-wrapper h1 {
font-size: 28px;
line-height: 46px;
}
#login form { width: 600px; margin-right: 0px; }
#login .cont, #login-collapse {
width: 753px;
}
#intro .customer-card {margin-left: 254px;}
#login input[type=text], #login input[type=password] {width:150px;}
input.span3, textarea.span3, .uneditable-input.span3 {width: 103px;}
}
@media (min-width: 1200px) {
.wrapper {
width: 1000px;
}
#login form { width: 750px; margin-right: 110px; }
#intro .customer-card {margin-left: 380px;}
#login input[type=text], #login input[type=password] {width:220px;}
}
@media (min-width: 1400px) {
.logo { padding-top: 0; top:18px; }
}
@media (min-width: 1600px) {
.logo { top:116px; left:-50px;}
} | 0.360602 | 0.068944 |
.center { text-align: center; }
.left-height-full {
height: 100%;
float: left;
}
.lh30 {
line-height: 30px;
}
.black-title {
color: #000;
font-weight: bold;
font-size: 18px;
}
.fa-10x {
font-size: 10em !important;
}
.text-muted { color: #999; }
.monospace { font-family: Monospace, sans-serif; }
.no-padding { padding: 0 !important; }
.no-margin { margin: 0 !important; }
.paddingt10 { padding: 10px 0 !important; }
.padding10 { padding: 10px !important; }
.margint10 { margin-top: 10px !important; }
.marginl10 { margin-left: 10px !important; }
.marginb10 { margin-bottom: 10px !important; }
.selectable {
cursor:pointer;
}
.module-useraccount-menu > .sidebar {
left: 0;
top: 40px;
}
.module-useraccount-menu .sidebar .navigation-left-title:hover {
background-color: #3f5167;
}
.module-useraccount-menu .sidebar .extended-accordion-in {
height: auto;
visibility: visible;
}
.module-useraccount-menu .sidebar .navigation-left-title .fa-chevron-left {
opacity: .6;
font-size: 10px;
width: 8px;
height: 8px;
margin: 15px 0 0 15px;
}
.module-useraccount-menu .sidebar .navigation-left-title.not-expandable {
margin-left: 0;
padding-left: 23px;
}
.module-useraccount-menu > .sidebar .navigation-left.module-useraccount-menu-back {
padding: 20px 0 10px 0;
}
.module-useraccount-menu > .sidebar .navigation-left-title > span {
margin: 7px 10px 0 18px;
}
.module-useraccount-menu > .sidebar .navigation-left-list-container.active {
border-left-color: #00a2bf;
}
.module-useraccount-menu > .sidebar .navigation-left-list-container > li.active {
background-color: #00a2bf !important;
}
.module-useraccount-menu > .sidebar .navigation-left-list-container > li:hover {
background-color: rgba(255, 255, 255, 0.15);
}
.module-useraccount-menu > .sidebar .navigation-left-list-container > li a.navigation-left-item:hover,
.module-useraccount-menu > .sidebar .navigation-left-list-container > li a.navigation-left-item:focus {
background-color: transparent;
}
.module-useraccount-menu .sidebar .navigation-left-list-container > li a.navigation-left-item.active {
background-color: #00a2bf !important;
color: #122844;
}
.module-useraccount-menu >.sidebar .navigation-left-title .module-useraccount-menu-small {
display: block;
font-weight: lighter;
font-size: 85%;
margin-top: 0;
padding-bottom: 12px;
line-height: 8px;
}
/*******************
SECTIONS
*******************/
.module-useraccount-sections-container {
background: none repeat scroll 0 0 #FFFFFF;
// margin-right: 10px;
// padding: 0 40px;
width: auto;
max-width: 1610px;
color: #737373;
line-height: 20px;
}
.module-useraccount-sections-wrapped {
background: none repeat scroll 0 0 #FFFFFF;
margin-left: 305px;
max-width: 1610px;
padding: 0 40px;
line-height: 20px;
}
/*.module-useraccount-sections-subscriptions-container,*/
/*.module-useraccount-sections-ssh-container {*/
/*border: solid 1px #DDDDDD;*/
/*padding: 5px 19px 20px;*/
/*border-radius: 4px;*/
/*min-height: 100px;*/
/*}*/
/*******************
/SECTIONS
*******************/
/*********************************************************
ICONS STUFF
*********************************************************/
// .module-useraccount-container i.icon-glass,
// .module-useraccount-container i.icon-trash,
// .module-useraccount-container i.icon-ssh-default-on,
// .module-useraccount-container i.icon-ssh-default-off {
// display: inline-block;
// width: 16px;
// height: 20px;
// margin: 0;
// background-color: transparent;
// background-repeat: no-repeat;
// background-position: 0 0;
// }
// .module-useraccount-container table i { cursor: pointer; }
// .module-useraccount-container i.icon-glass { background: transparent url('../../images/user-account/icn/icn_glass.png') no-repeat 0 0; }
// .module-useraccount-container i.icon-trash { background: transparent url('../../images/user-account/icn/icn_trash.png') no-repeat 0 0; }
// .module-useraccount-container i.icon-ssh-default-on,
// .module-useraccount-container table i.icon-ssh-default-off:hover { background: transparent url('../../images/user-account/icn/icn_ssh_default.png') no-repeat 0 2px; }
// .module-useraccount-container i.icon-ssh-default-off,
// .module-useraccount-container table i.icon-ssh-default-on:hover { background: transparent url('../../images/user-account/icn/icn_ssh_default.png') no-repeat 0 -18px; }
/*********************************************************
!ICONS STUFF
*********************************************************/
/*********************************************************
SSH
*********************************************************/
.module-useraccount-container #sshAddKeyLabel {
max-width: 510px;
min-width: 220px;
min-height: 80px;
margin-bottom: 0;
}
/*********************************************************
/SSH
*********************************************************/
/*********************************************************
USER INFO
**********************************************************/
.module-useraccount-container .module-useraccount-sections-infos-container label {
color: #333333;
font-weight: 700;
}
.module-useraccount-container .module-useraccount-sections-infos-container .top-space-5 {
margin-top: 5px;
}
.module-useraccount-container .module-useraccount-sections-infos-container .form-horizontal .control-group {
margin-bottom: 10px;
}
/*********************************************************
!USER INFO
**********************************************************/
/*********************************************************
SECURITY
**********************************************************/
.module-useraccount-container .fs-green {
color: #45ae6e !important;
}
.module-useraccount-container .fs-red {
color: #E85E5E !important;
}
// .module-useraccount-container h1 {
// font-size: 24px;
// }
// .module-useraccount-container h2 {
// font-size: 18px;
// }
// .module-useraccount-container h3 {
// font-size: 16px;
// }
.module-useraccount-sections-container .button,
.module-useraccount-sections-container a[role=button]{
color: #fff;
background: #7f8aaf;
border: 0;
padding: 10px;
margin: 10px 0;
/*min-width: 213px;*/
border-radius: 0;
}
.module-useraccount-sections-container .button[disabled],
.module-useraccount-sections-container a[role=button][disabled]{
opacity: .5;
}
.module-useraccount-container .btn-prev-step {
width: 140px;
position: relative;
margin-left: 20px;
}
.module-useraccount-container .btn-prev-step::after {
content: '';
position: absolute;
top: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 20px;
border-color: transparent transparent transparent #7f8aaf;
left: -40px;
transform: rotate(180deg);
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
}
.module-useraccount-container .btn-next-step {
position: relative;
margin-right: 15px;
width: 190px;
}
.module-useraccount-container .btn-next-step.big {
margin-right: 25px;
}
.module-useraccount-container .btn-next-step::after {
content: '';
position: absolute;
top: 0;
width: 0;
height: 0;
border-style: solid;
right: -40px;
border-width: 20px;
border-color: transparent transparent transparent #7f8aaf;
}
.module-useraccount-container .btn-next-step.big::after {
right: -60px;
border-width: 30px;
}
/*********************************************************
!Agreements
**********************************************************/
.module-useraccount-sections-agreements-container .contract {
word-wrap: break-word;
word-break: keep-all;
text-align: justify;
max-height: 400px;
}
.module-useraccount-sections-agreements-container .backButton {
margin-right: 2em;
margin-top: 1.2em;
}
/* Contacts */
.module-useraccount-sections-contacts-container .tab-content {
overflow: inherit !important;
}
.module-useraccount-sections-contacts-container td .btn.btn-icon:hover,
.module-useraccount-sections-contacts-container td .btn.btn-icon:focus,
.module-useraccount-sections-contacts-container td .btn.btn-icon:active {
padding: 0 10px !important;
}
.module-useraccount-sections-emails-container pre {
word-break: normal;
word-wrap: normal;
}
.module-useraccount-container .popover .popover-content .popover-menu .btn-link:hover {
color: #ffffff;
background-color: #54a89b;
text-decoration: none;
font-weight: bold;
}
.module-useraccount-container .popover .popover-content .popover-menu a:hover span {
background-color: inherit;
}
.module-useraccount-container .popover .popover-content .popover-menu .btn-link:hover span {
background-color: inherit;
} | packages/manager/apps/dedicated/client/app/css/user-account/main.css | .center { text-align: center; }
.left-height-full {
height: 100%;
float: left;
}
.lh30 {
line-height: 30px;
}
.black-title {
color: #000;
font-weight: bold;
font-size: 18px;
}
.fa-10x {
font-size: 10em !important;
}
.text-muted { color: #999; }
.monospace { font-family: Monospace, sans-serif; }
.no-padding { padding: 0 !important; }
.no-margin { margin: 0 !important; }
.paddingt10 { padding: 10px 0 !important; }
.padding10 { padding: 10px !important; }
.margint10 { margin-top: 10px !important; }
.marginl10 { margin-left: 10px !important; }
.marginb10 { margin-bottom: 10px !important; }
.selectable {
cursor:pointer;
}
.module-useraccount-menu > .sidebar {
left: 0;
top: 40px;
}
.module-useraccount-menu .sidebar .navigation-left-title:hover {
background-color: #3f5167;
}
.module-useraccount-menu .sidebar .extended-accordion-in {
height: auto;
visibility: visible;
}
.module-useraccount-menu .sidebar .navigation-left-title .fa-chevron-left {
opacity: .6;
font-size: 10px;
width: 8px;
height: 8px;
margin: 15px 0 0 15px;
}
.module-useraccount-menu .sidebar .navigation-left-title.not-expandable {
margin-left: 0;
padding-left: 23px;
}
.module-useraccount-menu > .sidebar .navigation-left.module-useraccount-menu-back {
padding: 20px 0 10px 0;
}
.module-useraccount-menu > .sidebar .navigation-left-title > span {
margin: 7px 10px 0 18px;
}
.module-useraccount-menu > .sidebar .navigation-left-list-container.active {
border-left-color: #00a2bf;
}
.module-useraccount-menu > .sidebar .navigation-left-list-container > li.active {
background-color: #00a2bf !important;
}
.module-useraccount-menu > .sidebar .navigation-left-list-container > li:hover {
background-color: rgba(255, 255, 255, 0.15);
}
.module-useraccount-menu > .sidebar .navigation-left-list-container > li a.navigation-left-item:hover,
.module-useraccount-menu > .sidebar .navigation-left-list-container > li a.navigation-left-item:focus {
background-color: transparent;
}
.module-useraccount-menu .sidebar .navigation-left-list-container > li a.navigation-left-item.active {
background-color: #00a2bf !important;
color: #122844;
}
.module-useraccount-menu >.sidebar .navigation-left-title .module-useraccount-menu-small {
display: block;
font-weight: lighter;
font-size: 85%;
margin-top: 0;
padding-bottom: 12px;
line-height: 8px;
}
/*******************
SECTIONS
*******************/
.module-useraccount-sections-container {
background: none repeat scroll 0 0 #FFFFFF;
// margin-right: 10px;
// padding: 0 40px;
width: auto;
max-width: 1610px;
color: #737373;
line-height: 20px;
}
.module-useraccount-sections-wrapped {
background: none repeat scroll 0 0 #FFFFFF;
margin-left: 305px;
max-width: 1610px;
padding: 0 40px;
line-height: 20px;
}
/*.module-useraccount-sections-subscriptions-container,*/
/*.module-useraccount-sections-ssh-container {*/
/*border: solid 1px #DDDDDD;*/
/*padding: 5px 19px 20px;*/
/*border-radius: 4px;*/
/*min-height: 100px;*/
/*}*/
/*******************
/SECTIONS
*******************/
/*********************************************************
ICONS STUFF
*********************************************************/
// .module-useraccount-container i.icon-glass,
// .module-useraccount-container i.icon-trash,
// .module-useraccount-container i.icon-ssh-default-on,
// .module-useraccount-container i.icon-ssh-default-off {
// display: inline-block;
// width: 16px;
// height: 20px;
// margin: 0;
// background-color: transparent;
// background-repeat: no-repeat;
// background-position: 0 0;
// }
// .module-useraccount-container table i { cursor: pointer; }
// .module-useraccount-container i.icon-glass { background: transparent url('../../images/user-account/icn/icn_glass.png') no-repeat 0 0; }
// .module-useraccount-container i.icon-trash { background: transparent url('../../images/user-account/icn/icn_trash.png') no-repeat 0 0; }
// .module-useraccount-container i.icon-ssh-default-on,
// .module-useraccount-container table i.icon-ssh-default-off:hover { background: transparent url('../../images/user-account/icn/icn_ssh_default.png') no-repeat 0 2px; }
// .module-useraccount-container i.icon-ssh-default-off,
// .module-useraccount-container table i.icon-ssh-default-on:hover { background: transparent url('../../images/user-account/icn/icn_ssh_default.png') no-repeat 0 -18px; }
/*********************************************************
!ICONS STUFF
*********************************************************/
/*********************************************************
SSH
*********************************************************/
.module-useraccount-container #sshAddKeyLabel {
max-width: 510px;
min-width: 220px;
min-height: 80px;
margin-bottom: 0;
}
/*********************************************************
/SSH
*********************************************************/
/*********************************************************
USER INFO
**********************************************************/
.module-useraccount-container .module-useraccount-sections-infos-container label {
color: #333333;
font-weight: 700;
}
.module-useraccount-container .module-useraccount-sections-infos-container .top-space-5 {
margin-top: 5px;
}
.module-useraccount-container .module-useraccount-sections-infos-container .form-horizontal .control-group {
margin-bottom: 10px;
}
/*********************************************************
!USER INFO
**********************************************************/
/*********************************************************
SECURITY
**********************************************************/
.module-useraccount-container .fs-green {
color: #45ae6e !important;
}
.module-useraccount-container .fs-red {
color: #E85E5E !important;
}
// .module-useraccount-container h1 {
// font-size: 24px;
// }
// .module-useraccount-container h2 {
// font-size: 18px;
// }
// .module-useraccount-container h3 {
// font-size: 16px;
// }
.module-useraccount-sections-container .button,
.module-useraccount-sections-container a[role=button]{
color: #fff;
background: #7f8aaf;
border: 0;
padding: 10px;
margin: 10px 0;
/*min-width: 213px;*/
border-radius: 0;
}
.module-useraccount-sections-container .button[disabled],
.module-useraccount-sections-container a[role=button][disabled]{
opacity: .5;
}
.module-useraccount-container .btn-prev-step {
width: 140px;
position: relative;
margin-left: 20px;
}
.module-useraccount-container .btn-prev-step::after {
content: '';
position: absolute;
top: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 20px;
border-color: transparent transparent transparent #7f8aaf;
left: -40px;
transform: rotate(180deg);
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
}
.module-useraccount-container .btn-next-step {
position: relative;
margin-right: 15px;
width: 190px;
}
.module-useraccount-container .btn-next-step.big {
margin-right: 25px;
}
.module-useraccount-container .btn-next-step::after {
content: '';
position: absolute;
top: 0;
width: 0;
height: 0;
border-style: solid;
right: -40px;
border-width: 20px;
border-color: transparent transparent transparent #7f8aaf;
}
.module-useraccount-container .btn-next-step.big::after {
right: -60px;
border-width: 30px;
}
/*********************************************************
!Agreements
**********************************************************/
.module-useraccount-sections-agreements-container .contract {
word-wrap: break-word;
word-break: keep-all;
text-align: justify;
max-height: 400px;
}
.module-useraccount-sections-agreements-container .backButton {
margin-right: 2em;
margin-top: 1.2em;
}
/* Contacts */
.module-useraccount-sections-contacts-container .tab-content {
overflow: inherit !important;
}
.module-useraccount-sections-contacts-container td .btn.btn-icon:hover,
.module-useraccount-sections-contacts-container td .btn.btn-icon:focus,
.module-useraccount-sections-contacts-container td .btn.btn-icon:active {
padding: 0 10px !important;
}
.module-useraccount-sections-emails-container pre {
word-break: normal;
word-wrap: normal;
}
.module-useraccount-container .popover .popover-content .popover-menu .btn-link:hover {
color: #ffffff;
background-color: #54a89b;
text-decoration: none;
font-weight: bold;
}
.module-useraccount-container .popover .popover-content .popover-menu a:hover span {
background-color: inherit;
}
.module-useraccount-container .popover .popover-content .popover-menu .btn-link:hover span {
background-color: inherit;
} | 0.253584 | 0.119871 |
.navbar-item.is-mega {
position: static; }
.navbar-item.is-mega .is-mega-menu-title {
margin-bottom: 0;
padding: .375rem 1rem; }
.hero-body {
background-color: lightgray;
}
.hero-body h1 {
font-size: 4.1rem;
font-family: 'IBM Plex Sans';
margin: 4px 0 15px 2px;
text-align: left; }
.hero-body h2 {
font-family: 'IBM Plex Sans';}
body {
display: flex;
flex-direction: column; }
section {
background-color: whitesmoke; }
textarea {
box-sizing: border-box;
margin: 5px;
height: 90%;
width: 49%; }
label {
box-sizing: border-box;
display: flex;
padding: 5px 5px 15px 0; }
input {
box-sizing: border-box;
display: flex;
padding: 9px;
font-size: 1.25rem;
width: 60%; }
.input {
padding: 10px; }
.visual {
box-sizing: border-box;
height: 50%;
/*overflow: auto;*/ }
.item {
transition: background .1s;
padding: 1rem;
box-shadow: 2px 2px 3px lightgray;
background-color: white;
margin-bottom: 1rem;
}
.item .header {
height: 60px;
/*display: flex;*/
cursor: pointer; }
.item .header .title {
/*flex: 1 1 auto;*/
margin-bottom: 0rem; }
.item .header i {
font-size: 1.5rem;
margin-right: 5px; }
.item .header .title:hover {
color: orange; }
.item.show-card {
border-radius: 24px;
border: 1px solid #dbdbdb;
background-color: white;
margin-bottom: 1rem; }
.item.show-card i.rotate {
transform: rotate(90deg); }
.button_formula {
height: 30px;
width: 75px;
background-color: #FFFFFF; }
.item .button_hover {
display: none;
background-color: white ;
border: 1px solid black;
border-color: lightgray;
border-radius: 4px;
cursor: pointer}
.item:hover button {
display: inline-flex; }
@media only screen and (max-device-width: 500px) {
.item:hover button {display: none;}
}
.formula :hover {
transition: background .05s; }
.visual h2 {
font-weight: 400;
font-family: 'IBM Plex Sans';
font-size: 16pt; }
.visual h5 {
font-weight: 100;
font-family: 'IBM Plex Sans';
font-size: 1.17rem;
margin: 4px 0 15px 2px;
text-align: left; }
.visual h5.link {
font-family: 'IBM Plex Sans';
font-weight: lighter;
font-size: 12pt; }
.visual h5.link a {
margin-left: 5px;
font-family: 'IBM Plex Sans';
font-weight: normal;
color: orange; }
.visual .formula {
display: inline-box;
align-self: left;
font-size: 1.7rem;
line-height: 1.7rem;
font-size: 14pt; }
/* a {
text-decoration: none;
color: black;
}
.input {
border-left: orange 15px solid;
margin-bottom: 10px; }
*/
.about {
font-size: 0.75rem;
text-align: center;
letter-spacing: 1px; }
.divider {
width: 10px;
height: auto;
display: inline-block; }
.results {
padding: 0.5rem 0; }
.container-with-background {
padding: 3vh;
background: #fafafa;
border-radius: 24px; }
.container-with-background hr {
background-color: #d4d9dc;
height: 1px;
margin: 1rem 0; }
.container-with-background .item hr {
margin-bottom: 0;
margin-top: 0.5rem; }
.navbar-menu.is-active .button {
height: 80%; }
.navbar-menu a.navbar-item {
margin: 0.5rem 0rem;
margin-right: 1rem; }
.navbar-menu.is-active a.navbar-item {
margin: 0.5rem 1rem; }
.navbar-menu {
animation: navAnimOpen .2s ease-in-out; }
@keyframes navAnimOpen {
0% {
display: none;
opacity: 0;
max-height: 0; }
1% {
display: block;
opacity: 0; }
100% {
opacity: 1;
max-height: 396px; } }
.cookie-consent-banner {
position: fixed;
bottom: 0;
left: 0;
z-index: 2147483645;
box-sizing: border-box;
width: 100%;
padding:1.5rem;
background-color: #F1F6F4;
}
.cookie-consent-banner__inner {
max-width: 960px;
margin: 0 auto;
}
.cookie-consent-banner__copy {
margin-bottom: 16px;
}
.cookie-consent-banner__actions {
}
.cookie-consent-banner__header {
margin-bottom: 8px;
font-family: "CeraPRO-Bold", sans-serif, arial;
font-weight: normal;
font-size: 16px;
line-height: 24px;
}
.cookie-consent-banner__description {
font-family: "CeraPRO-Regular", sans-serif, arial;
font-weight: normal;
color: #838F93;
font-size: 16px;
line-height: 24px;
}
.cookie-consent-banner__cta {
box-sizing: border-box;
display: inline-block;
min-width: 164px;
padding: 11px 13px;
border-radius: 2px;
background-color: orange;
color: #FFF;
text-decoration: none;
text-align: center;
font-family: "CeraPRO-Regular", sans-serif, arial;
font-weight: normal;
font-size: 16px;
line-height: 20px;
}
.cookie-consent-banner__cta--secondary {
padding: 9px 13px;
border: 2px solid #3A4649;
background-color: transparent;
color: orange;
}
.cookie-consent-banner__cta:hover {
background-color: orange;
}
.cookie-consent-banner__cta--secondary:hover {
border-color: #838F93;
background-color: transparent;
color: orange;
}
.cookie-consent-banner__cta:last-child {
margin-left: 16px;
}
@media only screen and (max-device-width: 500px) {
.page-title.title {
font-size: 1.25rem;
color: black !important;
}
.page-title.title .big-letter {
font-size:2rem;
margin-right: -5px;
}
.page-title.title .orange {
font-size: 1rem;
}
input.is-large::placeholder{
font-size: 1rem;
}
.subtitle {
font-size: 0.75rem;
}
.control.has-icons-left .icon, .control.has-icons-right .icon {
height: 1.6rem;
}
.icon.is-medium .fa {
font-size: 24px;
height: 1.2rem;
}
.hero-body {
padding: 1rem 1rem;
}
.control {
font-size: 0.75rem;
text-align: left;
}
.input{
height: 2rem;
}
.visual .formula svg,
.modal-content .formula svg {
font-size: 1rem;
width: 100%
}
.cookie-consent-banner {
position: fixed;
bottom: 0;
left: 0;
z-index: 2147483645;
box-sizing: border-box;
width: 100%;
background-color: #F1F6F4;
}
.cookie-consent-banner__inner {
padding:0;
}
.cookie-consent-banner__header {
margin-bottom: 2px;
font-size: 0.75rem;
line-height: 24px;
}
.cookie-consent-banner__description {
font-family: "CeraPRO-Regular", sans-serif, arial;
font-weight: normal;
color: #838F93;
font-size: 0.75rem;
line-height: 24px;
}
.cookie-consent-banner__cta {
box-sizing: border-box;
display: inline-block;
min-width: 16px;
border-radius: 2px;
background-color: orange;
color: #FFF;
text-decoration: none;
text-align: center;
font-family: "CeraPRO-Regular", sans-serif, arial;
font-weight: normal;
font-size: 0.75rem;
line-height: 20px;
}
}
.modal-content {
width: 100% !important;
max-width: 840px !important; }
.modal-content .close-button {
float: right; }
.modal-content .formula {
border-bottom: 1px solid lightgrey;
font-size: 16pt;}
.modal-content .modal-content-description {
font-size: .8rem;
margin-top: 10px; }
.modal-content .modal-content-description .description-title {
font-weight: bold;
margin-bottom: 5px; }
.modal-content .modal-content-description .description {
margin-bottom: 20px; }
.modal-content .modal-content-description .categories .category {
text-decoration: underline; }
.modal-content .buttons {
margin: 5px 0px; }
.modal-content .buttons .button {
margin: 5px 0px;
background-color: rgba(255, 165, 0, 0.5);
border-radius: 0px; }
.modal-content .buttons .button:hover {
background-color: orange;
border-color: orange; }
.modal-content .buttons .button span {
font-weight: bold;
font-size: .8rem; }
@media only screen and (min-width: 800px){
.item {
margin-left: 10rem;
margin-right: 10rem;
}
}
.page-title {
font-size: 3rem;
color: black !important;
}
.page-title .orange {
color: orange;
}
.page-title .big-letter {
font-size: 3.9rem;
margin-right: -10px;
}
/*# sourceMappingURL=styles.css.map */
/*# sourceMappingURL=style.css.map */ | dist/style.css | .navbar-item.is-mega {
position: static; }
.navbar-item.is-mega .is-mega-menu-title {
margin-bottom: 0;
padding: .375rem 1rem; }
.hero-body {
background-color: lightgray;
}
.hero-body h1 {
font-size: 4.1rem;
font-family: 'IBM Plex Sans';
margin: 4px 0 15px 2px;
text-align: left; }
.hero-body h2 {
font-family: 'IBM Plex Sans';}
body {
display: flex;
flex-direction: column; }
section {
background-color: whitesmoke; }
textarea {
box-sizing: border-box;
margin: 5px;
height: 90%;
width: 49%; }
label {
box-sizing: border-box;
display: flex;
padding: 5px 5px 15px 0; }
input {
box-sizing: border-box;
display: flex;
padding: 9px;
font-size: 1.25rem;
width: 60%; }
.input {
padding: 10px; }
.visual {
box-sizing: border-box;
height: 50%;
/*overflow: auto;*/ }
.item {
transition: background .1s;
padding: 1rem;
box-shadow: 2px 2px 3px lightgray;
background-color: white;
margin-bottom: 1rem;
}
.item .header {
height: 60px;
/*display: flex;*/
cursor: pointer; }
.item .header .title {
/*flex: 1 1 auto;*/
margin-bottom: 0rem; }
.item .header i {
font-size: 1.5rem;
margin-right: 5px; }
.item .header .title:hover {
color: orange; }
.item.show-card {
border-radius: 24px;
border: 1px solid #dbdbdb;
background-color: white;
margin-bottom: 1rem; }
.item.show-card i.rotate {
transform: rotate(90deg); }
.button_formula {
height: 30px;
width: 75px;
background-color: #FFFFFF; }
.item .button_hover {
display: none;
background-color: white ;
border: 1px solid black;
border-color: lightgray;
border-radius: 4px;
cursor: pointer}
.item:hover button {
display: inline-flex; }
@media only screen and (max-device-width: 500px) {
.item:hover button {display: none;}
}
.formula :hover {
transition: background .05s; }
.visual h2 {
font-weight: 400;
font-family: 'IBM Plex Sans';
font-size: 16pt; }
.visual h5 {
font-weight: 100;
font-family: 'IBM Plex Sans';
font-size: 1.17rem;
margin: 4px 0 15px 2px;
text-align: left; }
.visual h5.link {
font-family: 'IBM Plex Sans';
font-weight: lighter;
font-size: 12pt; }
.visual h5.link a {
margin-left: 5px;
font-family: 'IBM Plex Sans';
font-weight: normal;
color: orange; }
.visual .formula {
display: inline-box;
align-self: left;
font-size: 1.7rem;
line-height: 1.7rem;
font-size: 14pt; }
/* a {
text-decoration: none;
color: black;
}
.input {
border-left: orange 15px solid;
margin-bottom: 10px; }
*/
.about {
font-size: 0.75rem;
text-align: center;
letter-spacing: 1px; }
.divider {
width: 10px;
height: auto;
display: inline-block; }
.results {
padding: 0.5rem 0; }
.container-with-background {
padding: 3vh;
background: #fafafa;
border-radius: 24px; }
.container-with-background hr {
background-color: #d4d9dc;
height: 1px;
margin: 1rem 0; }
.container-with-background .item hr {
margin-bottom: 0;
margin-top: 0.5rem; }
.navbar-menu.is-active .button {
height: 80%; }
.navbar-menu a.navbar-item {
margin: 0.5rem 0rem;
margin-right: 1rem; }
.navbar-menu.is-active a.navbar-item {
margin: 0.5rem 1rem; }
.navbar-menu {
animation: navAnimOpen .2s ease-in-out; }
@keyframes navAnimOpen {
0% {
display: none;
opacity: 0;
max-height: 0; }
1% {
display: block;
opacity: 0; }
100% {
opacity: 1;
max-height: 396px; } }
.cookie-consent-banner {
position: fixed;
bottom: 0;
left: 0;
z-index: 2147483645;
box-sizing: border-box;
width: 100%;
padding:1.5rem;
background-color: #F1F6F4;
}
.cookie-consent-banner__inner {
max-width: 960px;
margin: 0 auto;
}
.cookie-consent-banner__copy {
margin-bottom: 16px;
}
.cookie-consent-banner__actions {
}
.cookie-consent-banner__header {
margin-bottom: 8px;
font-family: "CeraPRO-Bold", sans-serif, arial;
font-weight: normal;
font-size: 16px;
line-height: 24px;
}
.cookie-consent-banner__description {
font-family: "CeraPRO-Regular", sans-serif, arial;
font-weight: normal;
color: #838F93;
font-size: 16px;
line-height: 24px;
}
.cookie-consent-banner__cta {
box-sizing: border-box;
display: inline-block;
min-width: 164px;
padding: 11px 13px;
border-radius: 2px;
background-color: orange;
color: #FFF;
text-decoration: none;
text-align: center;
font-family: "CeraPRO-Regular", sans-serif, arial;
font-weight: normal;
font-size: 16px;
line-height: 20px;
}
.cookie-consent-banner__cta--secondary {
padding: 9px 13px;
border: 2px solid #3A4649;
background-color: transparent;
color: orange;
}
.cookie-consent-banner__cta:hover {
background-color: orange;
}
.cookie-consent-banner__cta--secondary:hover {
border-color: #838F93;
background-color: transparent;
color: orange;
}
.cookie-consent-banner__cta:last-child {
margin-left: 16px;
}
@media only screen and (max-device-width: 500px) {
.page-title.title {
font-size: 1.25rem;
color: black !important;
}
.page-title.title .big-letter {
font-size:2rem;
margin-right: -5px;
}
.page-title.title .orange {
font-size: 1rem;
}
input.is-large::placeholder{
font-size: 1rem;
}
.subtitle {
font-size: 0.75rem;
}
.control.has-icons-left .icon, .control.has-icons-right .icon {
height: 1.6rem;
}
.icon.is-medium .fa {
font-size: 24px;
height: 1.2rem;
}
.hero-body {
padding: 1rem 1rem;
}
.control {
font-size: 0.75rem;
text-align: left;
}
.input{
height: 2rem;
}
.visual .formula svg,
.modal-content .formula svg {
font-size: 1rem;
width: 100%
}
.cookie-consent-banner {
position: fixed;
bottom: 0;
left: 0;
z-index: 2147483645;
box-sizing: border-box;
width: 100%;
background-color: #F1F6F4;
}
.cookie-consent-banner__inner {
padding:0;
}
.cookie-consent-banner__header {
margin-bottom: 2px;
font-size: 0.75rem;
line-height: 24px;
}
.cookie-consent-banner__description {
font-family: "CeraPRO-Regular", sans-serif, arial;
font-weight: normal;
color: #838F93;
font-size: 0.75rem;
line-height: 24px;
}
.cookie-consent-banner__cta {
box-sizing: border-box;
display: inline-block;
min-width: 16px;
border-radius: 2px;
background-color: orange;
color: #FFF;
text-decoration: none;
text-align: center;
font-family: "CeraPRO-Regular", sans-serif, arial;
font-weight: normal;
font-size: 0.75rem;
line-height: 20px;
}
}
.modal-content {
width: 100% !important;
max-width: 840px !important; }
.modal-content .close-button {
float: right; }
.modal-content .formula {
border-bottom: 1px solid lightgrey;
font-size: 16pt;}
.modal-content .modal-content-description {
font-size: .8rem;
margin-top: 10px; }
.modal-content .modal-content-description .description-title {
font-weight: bold;
margin-bottom: 5px; }
.modal-content .modal-content-description .description {
margin-bottom: 20px; }
.modal-content .modal-content-description .categories .category {
text-decoration: underline; }
.modal-content .buttons {
margin: 5px 0px; }
.modal-content .buttons .button {
margin: 5px 0px;
background-color: rgba(255, 165, 0, 0.5);
border-radius: 0px; }
.modal-content .buttons .button:hover {
background-color: orange;
border-color: orange; }
.modal-content .buttons .button span {
font-weight: bold;
font-size: .8rem; }
@media only screen and (min-width: 800px){
.item {
margin-left: 10rem;
margin-right: 10rem;
}
}
.page-title {
font-size: 3rem;
color: black !important;
}
.page-title .orange {
color: orange;
}
.page-title .big-letter {
font-size: 3.9rem;
margin-right: -10px;
}
/*# sourceMappingURL=styles.css.map */
/*# sourceMappingURL=style.css.map */ | 0.390708 | 0.074703 |
* Datepicker for Foundation - less stylesheet, just version customized to foundation
*
* Copyright 2013 <NAME>, <EMAIL>, @benopeter
* project website http://foundation-datepicker.peterbeno.com
*
* Original project https://github.com/eternicode/bootstrap-datepicker
* Original author 2012 <NAME>
* Improvements by <NAME>
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*/
.datepicker.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
float: left;
display: none;
min-width: 160px;
list-style: none;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, .2);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
*border-right-width: 2px;
*border-bottom-width: 2px;
color: #333;
font-family: "Open Sans", sans-serif;
font-size: 13px;
line-height: 18px
}
.datepicker.dropdown-menu th, .datepicker.dropdown-menu td {
padding: 4px 5px
}
.datepicker {
display: none;
position: absolute;
padding: 4px;
margin-top: 1px;
direction: ltr
}
.datepicker-inline {
width: 220px
}
.datepicker-rtl {
direction: rtl
}
.datepicker-rtl table tr td span {
float: right
}
.datepicker-dropdown {
top: 0;
left: 0
}
.datepicker-dropdown:before {
content: '';
display: inline-block;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid #ccc;
border-bottom-color: rgba(0, 0, 0, .2);
position: absolute;
top: -7px;
left: 6px
}
.datepicker-dropdown:after {
content: '';
display: inline-block;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #fff;
position: absolute;
top: -6px;
left: 7px
}
.datepicker > div {
display: none
}
.datepicker.days div.datepicker-days {
display: block
}
.datepicker.months div.datepicker-months {
display: block
}
.datepicker.years div.datepicker-years {
display: block
}
.datepicker table {
border: 0;
margin: 0
}
.datepicker td, .datepicker th {
text-align: center;
width: 20px;
height: 20px;
border: 0;
font-size: 12px;
padding: 4px 8px;
background: #fff;
cursor: pointer
}
.datepicker td.active.day, .datepicker th.active.day {
background: #2ba6cb
}
.datepicker td.active.year, .datepicker th.active.year {
background: #2ba6cb
}
.datepicker td span.active, .datepicker th span.active {
background: #2ba6cb
}
.table-striped .datepicker table tr td, .table-striped .datepicker table tr th {
background-color: transparent
}
.datepicker table tr td span {
display: block;
width: 23%;
height: 54px;
line-height: 54px;
float: left;
margin: 1%;
cursor: pointer
}
.datepicker th.date-switch {
width: 145px
}
.datepicker thead tr:first-child th, .datepicker tfoot tr:first-child th {
cursor: pointer
}
.datepicker .cw {
font-size: 10px;
width: 12px;
padding: 0 2px 0 5px;
vertical-align: middle
}
.datepicker thead tr:first-child th.cw {
cursor: default;
background-color: transparent
}
.datepicker-dropdown::before, .datepicker-dropdown::after {
display: none
}
.datepicker-close {
position: absolute;
top: -30px;
right: 0;
width: 15px;
height: 30px;
padding: 0;
display: none
}
.datepicker td.old, .datepicker td.new {
color: #999
}
.datepicker td.day.disabled {
color: #eee
}
/* This beautiful CSS-File has been crafted with LESS (lesscss.org) and compiled by simpLESS (wearekiss.com/simpless) */ | mockup/css/foundation-datepicker.css | * Datepicker for Foundation - less stylesheet, just version customized to foundation
*
* Copyright 2013 <NAME>, <EMAIL>, @benopeter
* project website http://foundation-datepicker.peterbeno.com
*
* Original project https://github.com/eternicode/bootstrap-datepicker
* Original author 2012 <NAME>
* Improvements by <NAME>
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*/
.datepicker.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
z-index: 1000;
float: left;
display: none;
min-width: 160px;
list-style: none;
background-color: #fff;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, .2);
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
-moz-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
-webkit-background-clip: padding-box;
-moz-background-clip: padding;
background-clip: padding-box;
*border-right-width: 2px;
*border-bottom-width: 2px;
color: #333;
font-family: "Open Sans", sans-serif;
font-size: 13px;
line-height: 18px
}
.datepicker.dropdown-menu th, .datepicker.dropdown-menu td {
padding: 4px 5px
}
.datepicker {
display: none;
position: absolute;
padding: 4px;
margin-top: 1px;
direction: ltr
}
.datepicker-inline {
width: 220px
}
.datepicker-rtl {
direction: rtl
}
.datepicker-rtl table tr td span {
float: right
}
.datepicker-dropdown {
top: 0;
left: 0
}
.datepicker-dropdown:before {
content: '';
display: inline-block;
border-left: 7px solid transparent;
border-right: 7px solid transparent;
border-bottom: 7px solid #ccc;
border-bottom-color: rgba(0, 0, 0, .2);
position: absolute;
top: -7px;
left: 6px
}
.datepicker-dropdown:after {
content: '';
display: inline-block;
border-left: 6px solid transparent;
border-right: 6px solid transparent;
border-bottom: 6px solid #fff;
position: absolute;
top: -6px;
left: 7px
}
.datepicker > div {
display: none
}
.datepicker.days div.datepicker-days {
display: block
}
.datepicker.months div.datepicker-months {
display: block
}
.datepicker.years div.datepicker-years {
display: block
}
.datepicker table {
border: 0;
margin: 0
}
.datepicker td, .datepicker th {
text-align: center;
width: 20px;
height: 20px;
border: 0;
font-size: 12px;
padding: 4px 8px;
background: #fff;
cursor: pointer
}
.datepicker td.active.day, .datepicker th.active.day {
background: #2ba6cb
}
.datepicker td.active.year, .datepicker th.active.year {
background: #2ba6cb
}
.datepicker td span.active, .datepicker th span.active {
background: #2ba6cb
}
.table-striped .datepicker table tr td, .table-striped .datepicker table tr th {
background-color: transparent
}
.datepicker table tr td span {
display: block;
width: 23%;
height: 54px;
line-height: 54px;
float: left;
margin: 1%;
cursor: pointer
}
.datepicker th.date-switch {
width: 145px
}
.datepicker thead tr:first-child th, .datepicker tfoot tr:first-child th {
cursor: pointer
}
.datepicker .cw {
font-size: 10px;
width: 12px;
padding: 0 2px 0 5px;
vertical-align: middle
}
.datepicker thead tr:first-child th.cw {
cursor: default;
background-color: transparent
}
.datepicker-dropdown::before, .datepicker-dropdown::after {
display: none
}
.datepicker-close {
position: absolute;
top: -30px;
right: 0;
width: 15px;
height: 30px;
padding: 0;
display: none
}
.datepicker td.old, .datepicker td.new {
color: #999
}
.datepicker td.day.disabled {
color: #eee
}
/* This beautiful CSS-File has been crafted with LESS (lesscss.org) and compiled by simpLESS (wearekiss.com/simpless) */ | 0.414425 | 0.050658 |
html,body{
height:100%;
}
.page-header-fixed .page-container{
margin-top: 0;
}
.page-content-wrapper .page-content{
margin-left: 0;
}
/*.form-wizard .steps>li>a.step>.number{*/
/*display: block;*/
/*margin: auto;*/
/*padding: 11px 10px 13px;*/
/*}*/
.portlet.light .portlet-body{
padding-bottom: 20px;
}
.car-list .table-hover>tbody>tr{
width: 100%;
}
.car-list .table-hover>tbody>tr:hover{
background-color: transparent;
}
.car-list .list-group .list-group-item .item-check-icon{
float: right;
display: none;
}
.car-list .list-group .list-group-item{
border: none;
margin: 5px 0;
}
.car-list .list-group .list-group-item:hover{
box-shadow: 0 2px 3px 2px rgba(0,0,0,.03);
}
.car-list .list-group .list-group-item:hover .item-check-icon,
.car-list .list-group .list-group-item:active .item-check-icon
.car-list .list-group .list-group-item:focus .item-check-icon{
display: inline-block;
}
.services-box .main-tab .nav-tabs{
margin-bottom: 0;
border: none;
}
.services-box .main-tab .nav-tabs>li{
width: 50%;
text-align: center;
border: none;
}
.services-box .main-tab .search-input{
margin-left: 0;
margin-right: 0;
margin-bottom: 0;
background-color: #F7F7F7;
}
.services-box .main-tab .search-input div{
width: 80%;
margin: 20px auto;
}
.services-box .main-tab .search-input .input-icon>i{
margin: 15px 2px 4px 10px;
}
.services-box .main-tab .search-input div input{
width: 100% !important;
}
.services-box .main-tab .nav-tabs>li.active>a,
.services-box .main-tab .nav-tabs>li>a,
.services-box .main-tab .nav-tabs>li>a:hover{
padding: 20px 0;
color: black;
border: none;
margin-right:0;
}
.services-box .main-tab .nav-tabs>li.active>a,
.services-box .main-tab .nav-tabs>li.active>a:focus,
.services-box .main-tab .nav-tabs>li.active>a:hover{
background-color: #F7F7F7;
color:black;
border: none;
padding: 20px 0;
}
.tab-services{
margin-left: 0;
margin-right: 0;
}
.tab-services .tab-services-side-menu-list{
background-color: #F7F7F7;
border-top: 1px solid #e7ebeb;
border-right: 1px solid #e7ebeb;
}
.tab-services .tab-services-side-menu-list ul{
list-style: none;
padding-left: 0;
margin-bottom: 0;
padding-bottom: 10px;
}
.tab-services .tab-services-side-menu-list li{
margin: 10px 0;
}
.tab-services .tab-services-side-menu-list li a{
text-decoration: none;
color: rgba(0, 0, 0, 0.33);
}
.tab-services .tab-services-side-menu-list li a:hover{
color: black;
}
.tab-services .tab-services-side-menu-list li.active>a,
.tab-services .tab-services-side-menu-list li.active>a:focus,
.tab-services .tab-services-side-menu-list li.active>a:hover{
color: black;
font-weight: bold;
}
.tab-services-side-list{
padding: 0;
max-height: 400px;
overflow-x: hidden;
overflow-y: scroll;
}
.tab-services-side-list p{
border: 1px solid #e7ebeb;
margin-bottom: 0;
padding: 5px 20px;
}
.tab-services-side-list .list-group{
margin-bottom: 0;
}
.tab-services-side-list .list-group .list-group-item{
border-left: none;
border-right: none;
border-radius: 0;
}
.tab-services-side-list .list-group .list-group-item .fa{
padding-right: 10px;
font-size: 20px;
vertical-align: middle;
color: #A4C5FF;
}
.tab-services-side-list .list-group .list-group-item span{
float: right;
}
/*sub-question*/
.sub-question{
}
.sub-question .timeline:before{
margin-left: 13px;
}
.sub-question .timeline .timeline-badge{
top: 12px;
}
.sub-question .timeline .timeline-badge-userpic{
width: 30px;
height: 30px;
background-color: white;
}
.sub-question .timeline .timeline-body{
margin-left: 50px;
}
.sub-question .timeline .timeline-body-arrow{
top: 15px;
}
.sub-question .timeline-body .timeline-body-content{
margin-top: 0;
}
.sub-question .timeline-body .heading h4{
width: 80%;
display: inline-block;
}
.sub-question .timeline-body .heading span{
float: right;
}
/*end sub-question*/
/*shoping-cart*/
.shoping-cart{
position: fixed;
right: 0;
}
.shoping-cart .portlet.light {
padding: 0;
}
.shoping-cart .portlet.light>.portlet-title{
padding: 15px;
background-color: #218be7;
color: white;
}
.shoping-cart .portlet.light>.portlet-body{
padding: 15px;
}
.shoping-cart .price-title{
font-size: 10px;
}
.shoping-cart .price{
font-size: 25px;
}
.shoping-cart .portlet.light>.portlet-body h3{
margin-top: 0;
}
.shoping-cart .portlet.light>.portlet-body a{
color: black;
}
.shoping-cart .portlet.light>.portlet-body .list-group .list-group-item,
.shoping-cart .portlet.light>.portlet-body .list-group .list-group-item:hover{
border: none;
background-color: transparent;
}
.shoping-cart .portlet.light>.portlet-body .list-group .list-group-item .md-checkbox{
display: inline;
}
.shoping-cart .portlet.light>.portlet-body .list-group .list-group-item button{
display: inline;
top: -6px;
}
.shoping-cart .portlet.light>.footer{
background-color: #F7F7F7;
padding: 15px;
}
.shoping-cart .portlet.light>.footer a{
display: block;
color: #6d7579;
}
.shoping-cart .portlet.light>.footer a:hover{
color: black;
text-decoration: none;
}
@media (max-width: 767px){
.tab-services .tab-services-side-menu-list{
border-right: none;
}
.tab-services .tab-services-side-menu-list li{
display: inline-block;
margin-left: 15px;
margin-right: 15px;
}
.shoping-cart{
position: relative;
}
} | public/css/appointment/my_book.css | html,body{
height:100%;
}
.page-header-fixed .page-container{
margin-top: 0;
}
.page-content-wrapper .page-content{
margin-left: 0;
}
/*.form-wizard .steps>li>a.step>.number{*/
/*display: block;*/
/*margin: auto;*/
/*padding: 11px 10px 13px;*/
/*}*/
.portlet.light .portlet-body{
padding-bottom: 20px;
}
.car-list .table-hover>tbody>tr{
width: 100%;
}
.car-list .table-hover>tbody>tr:hover{
background-color: transparent;
}
.car-list .list-group .list-group-item .item-check-icon{
float: right;
display: none;
}
.car-list .list-group .list-group-item{
border: none;
margin: 5px 0;
}
.car-list .list-group .list-group-item:hover{
box-shadow: 0 2px 3px 2px rgba(0,0,0,.03);
}
.car-list .list-group .list-group-item:hover .item-check-icon,
.car-list .list-group .list-group-item:active .item-check-icon
.car-list .list-group .list-group-item:focus .item-check-icon{
display: inline-block;
}
.services-box .main-tab .nav-tabs{
margin-bottom: 0;
border: none;
}
.services-box .main-tab .nav-tabs>li{
width: 50%;
text-align: center;
border: none;
}
.services-box .main-tab .search-input{
margin-left: 0;
margin-right: 0;
margin-bottom: 0;
background-color: #F7F7F7;
}
.services-box .main-tab .search-input div{
width: 80%;
margin: 20px auto;
}
.services-box .main-tab .search-input .input-icon>i{
margin: 15px 2px 4px 10px;
}
.services-box .main-tab .search-input div input{
width: 100% !important;
}
.services-box .main-tab .nav-tabs>li.active>a,
.services-box .main-tab .nav-tabs>li>a,
.services-box .main-tab .nav-tabs>li>a:hover{
padding: 20px 0;
color: black;
border: none;
margin-right:0;
}
.services-box .main-tab .nav-tabs>li.active>a,
.services-box .main-tab .nav-tabs>li.active>a:focus,
.services-box .main-tab .nav-tabs>li.active>a:hover{
background-color: #F7F7F7;
color:black;
border: none;
padding: 20px 0;
}
.tab-services{
margin-left: 0;
margin-right: 0;
}
.tab-services .tab-services-side-menu-list{
background-color: #F7F7F7;
border-top: 1px solid #e7ebeb;
border-right: 1px solid #e7ebeb;
}
.tab-services .tab-services-side-menu-list ul{
list-style: none;
padding-left: 0;
margin-bottom: 0;
padding-bottom: 10px;
}
.tab-services .tab-services-side-menu-list li{
margin: 10px 0;
}
.tab-services .tab-services-side-menu-list li a{
text-decoration: none;
color: rgba(0, 0, 0, 0.33);
}
.tab-services .tab-services-side-menu-list li a:hover{
color: black;
}
.tab-services .tab-services-side-menu-list li.active>a,
.tab-services .tab-services-side-menu-list li.active>a:focus,
.tab-services .tab-services-side-menu-list li.active>a:hover{
color: black;
font-weight: bold;
}
.tab-services-side-list{
padding: 0;
max-height: 400px;
overflow-x: hidden;
overflow-y: scroll;
}
.tab-services-side-list p{
border: 1px solid #e7ebeb;
margin-bottom: 0;
padding: 5px 20px;
}
.tab-services-side-list .list-group{
margin-bottom: 0;
}
.tab-services-side-list .list-group .list-group-item{
border-left: none;
border-right: none;
border-radius: 0;
}
.tab-services-side-list .list-group .list-group-item .fa{
padding-right: 10px;
font-size: 20px;
vertical-align: middle;
color: #A4C5FF;
}
.tab-services-side-list .list-group .list-group-item span{
float: right;
}
/*sub-question*/
.sub-question{
}
.sub-question .timeline:before{
margin-left: 13px;
}
.sub-question .timeline .timeline-badge{
top: 12px;
}
.sub-question .timeline .timeline-badge-userpic{
width: 30px;
height: 30px;
background-color: white;
}
.sub-question .timeline .timeline-body{
margin-left: 50px;
}
.sub-question .timeline .timeline-body-arrow{
top: 15px;
}
.sub-question .timeline-body .timeline-body-content{
margin-top: 0;
}
.sub-question .timeline-body .heading h4{
width: 80%;
display: inline-block;
}
.sub-question .timeline-body .heading span{
float: right;
}
/*end sub-question*/
/*shoping-cart*/
.shoping-cart{
position: fixed;
right: 0;
}
.shoping-cart .portlet.light {
padding: 0;
}
.shoping-cart .portlet.light>.portlet-title{
padding: 15px;
background-color: #218be7;
color: white;
}
.shoping-cart .portlet.light>.portlet-body{
padding: 15px;
}
.shoping-cart .price-title{
font-size: 10px;
}
.shoping-cart .price{
font-size: 25px;
}
.shoping-cart .portlet.light>.portlet-body h3{
margin-top: 0;
}
.shoping-cart .portlet.light>.portlet-body a{
color: black;
}
.shoping-cart .portlet.light>.portlet-body .list-group .list-group-item,
.shoping-cart .portlet.light>.portlet-body .list-group .list-group-item:hover{
border: none;
background-color: transparent;
}
.shoping-cart .portlet.light>.portlet-body .list-group .list-group-item .md-checkbox{
display: inline;
}
.shoping-cart .portlet.light>.portlet-body .list-group .list-group-item button{
display: inline;
top: -6px;
}
.shoping-cart .portlet.light>.footer{
background-color: #F7F7F7;
padding: 15px;
}
.shoping-cart .portlet.light>.footer a{
display: block;
color: #6d7579;
}
.shoping-cart .portlet.light>.footer a:hover{
color: black;
text-decoration: none;
}
@media (max-width: 767px){
.tab-services .tab-services-side-menu-list{
border-right: none;
}
.tab-services .tab-services-side-menu-list li{
display: inline-block;
margin-left: 15px;
margin-right: 15px;
}
.shoping-cart{
position: relative;
}
} | 0.29209 | 0.063106 |
@import url("https://fonts.googleapis.com/css?family=Alata|Raleway&display=swap");
.mb-container {
min-height: 100vh;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
z-index: 0;
}
.mb-container .container {
/* margin-top: 5em;
margin-bottom: 3em; */
z-index: 10;
}
.mb-container .mb-content h1 {
font-family: "Alata", sans-serif;
}
.mb-container .mb-content .mb-description .mb-link {
background: linear-gradient(
90deg,
rgba(158, 61, 100, 1) 0%,
rgba(254, 94, 81, 1) 50%,
rgba(255, 181, 84, 1) 100%
);
border-color: tomato;
color: white;
}
.mb-container .mb-content .mb-description .mb-link:hover {
background: linear-gradient(
90deg,
rgba(255, 181, 84, 1) 0%,
rgba(254, 94, 81, 1) 50%,
rgba(158, 61, 100, 1) 100%
);
border-color: tomato;
color: white;
}
/* subtitle */
.mb-subtitle div {
display: inline-block;
overflow: hidden;
font-family: "Raleway", sans-serif;
/* white-space: nowrap; */
margin-right: 5px;
}
.mb-subtitle .slide-title {
animation: showup 7s infinite;
}
.mb-subtitle .slide-1 {
width: 0px;
animation: reveal-1 7s infinite;
}
.mb-subtitle .slide-1 span {
margin-left: -250px;
animation: slidein-1 7s infinite;
color: rgba(255, 255, 255, 0.664);
}
@keyframes showup {
0% {
opacity: 0;
}
20% {
opacity: 1;
}
80% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes slidein-1 {
0% {
margin-left: -800px;
}
20% {
margin-left: -800px;
}
35% {
margin-left: 0px;
}
100% {
margin-left: 0px;
}
}
@keyframes reveal-1 {
0% {
opacity: 0;
width: 0px;
}
20% {
opacity: 1;
width: 0px;
}
30% {
width: auto;
}
80% {
opacity: 1;
}
100% {
opacity: 0;
width: auto;
}
}
/* // Extra small devices (portrait phones, less than 576px) */
@media (max-width: 767.98px) {
.mb-container .mb-content h1 {
font-size: 8em;
margin-bottom: 50px;
}
.mb-subtitle div {
font-size: 0.77autoem;
}
}
/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
.mb-container .mb-content h1 {
font-size: 15em;
margin-bottom: 50px;
}
.mb-subtitle div {
font-size: 1.3em;
}
}
/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
.mb-container .mb-content h1 {
font-size: 15em;
margin-bottom: 50px;
}
.mb-subtitle div {
font-size: 1.3em;
}
}
/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
.mb-container .mb-content h1 {
font-size: 15em;
}
.mb-subtitle div {
font-size: 1.3em;
}
} | src/app/components/movie-background/movie-background.component.css | @import url("https://fonts.googleapis.com/css?family=Alata|Raleway&display=swap");
.mb-container {
min-height: 100vh;
background-position: center center;
background-size: cover;
background-repeat: no-repeat;
z-index: 0;
}
.mb-container .container {
/* margin-top: 5em;
margin-bottom: 3em; */
z-index: 10;
}
.mb-container .mb-content h1 {
font-family: "Alata", sans-serif;
}
.mb-container .mb-content .mb-description .mb-link {
background: linear-gradient(
90deg,
rgba(158, 61, 100, 1) 0%,
rgba(254, 94, 81, 1) 50%,
rgba(255, 181, 84, 1) 100%
);
border-color: tomato;
color: white;
}
.mb-container .mb-content .mb-description .mb-link:hover {
background: linear-gradient(
90deg,
rgba(255, 181, 84, 1) 0%,
rgba(254, 94, 81, 1) 50%,
rgba(158, 61, 100, 1) 100%
);
border-color: tomato;
color: white;
}
/* subtitle */
.mb-subtitle div {
display: inline-block;
overflow: hidden;
font-family: "Raleway", sans-serif;
/* white-space: nowrap; */
margin-right: 5px;
}
.mb-subtitle .slide-title {
animation: showup 7s infinite;
}
.mb-subtitle .slide-1 {
width: 0px;
animation: reveal-1 7s infinite;
}
.mb-subtitle .slide-1 span {
margin-left: -250px;
animation: slidein-1 7s infinite;
color: rgba(255, 255, 255, 0.664);
}
@keyframes showup {
0% {
opacity: 0;
}
20% {
opacity: 1;
}
80% {
opacity: 1;
}
100% {
opacity: 0;
}
}
@keyframes slidein-1 {
0% {
margin-left: -800px;
}
20% {
margin-left: -800px;
}
35% {
margin-left: 0px;
}
100% {
margin-left: 0px;
}
}
@keyframes reveal-1 {
0% {
opacity: 0;
width: 0px;
}
20% {
opacity: 1;
width: 0px;
}
30% {
width: auto;
}
80% {
opacity: 1;
}
100% {
opacity: 0;
width: auto;
}
}
/* // Extra small devices (portrait phones, less than 576px) */
@media (max-width: 767.98px) {
.mb-container .mb-content h1 {
font-size: 8em;
margin-bottom: 50px;
}
.mb-subtitle div {
font-size: 0.77autoem;
}
}
/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
.mb-container .mb-content h1 {
font-size: 15em;
margin-bottom: 50px;
}
.mb-subtitle div {
font-size: 1.3em;
}
}
/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
.mb-container .mb-content h1 {
font-size: 15em;
margin-bottom: 50px;
}
.mb-subtitle div {
font-size: 1.3em;
}
}
/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
.mb-container .mb-content h1 {
font-size: 15em;
}
.mb-subtitle div {
font-size: 1.3em;
}
} | 0.453504 | 0.104798 |
a,
a:hover, a:focus, a.active,
.typo-dark h1 a:hover, .typo-dark h1 a:focus, .typo-dark h1 a.active,
.typo-dark h2 a:hover, .typo-dark h2 a:focus, .typo-dark h2 a.active,
.typo-dark h3 a:hover, .typo-dark h3 a:focus, .typo-dark h3 a.active,
.typo-dark h4 a:hover, .typo-dark h4 a:focus, .typo-dark h4 a.active,
.typo-dark h5 a:hover, .typo-dark h5 a:focus, .typo-dark h5 a.active,
.typo-dark h6 a:hover, .typo-dark h6 a:focus, .typo-dark h6 a.active,
.typo-light h1 a:hover, .typo-light h1 a:focus, .typo-light h1 a.active,
.typo-light h2 a:hover, .typo-light h2 a:focus, .typo-light h2 a.active,
.typo-light h3 a:hover, .typo-light h3 a:focus, .typo-light h3 a.active,
.typo-light h4 a:hover, .typo-light h4 a:focus, .typo-light h4 a.active,
.typo-light h5 a:hover, .typo-light h5 a:focus, .typo-light h5 a.active,
.typo-light h6 a:hover, .typo-light h6 a:focus, .typo-light h6 a.active
{
color: #3271ff;
}
.btn,.btn.dark:hover{
background-color: #3271ff;
}
/* Color */
.color{
color: #3271ff;
}
/* Background Color */
.bg-color{
background-color: #3271ff !important;
}
/* Bg Gradient */
.bg-gradient{
background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(68, 138, 255, 0.8) 0%, rgba(35, 35, 35, 0.8) 100%) repeat scroll 0 0;
}
/* Overlay */
.overlay.bg-color:after{
background-color: #3271ff;
}
/* Background Video */
.video-controls a{
background-color: #3271ff;
}
/* Title */
.title-container.color *,
.title-container .dot-separator.color{
color: #3271ff;
}
.title-container.color .title-wrap .separator.line-separator,
.title-container.color .title-wrap .separator.line-separator:after{
background-color: #3271ff;
}
.title-bg-line > .title a{
background-color: #3271ff;
}
.title-bg-line{
border-color: #3271ff;
}
/*====================
Bootstrap
====================== */
/* Accordion */
.panel-group .panel{
border-left-color: #3271ff;
}
/* Tab */
.nav-tabs > li > a:hover,.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover{
color: #3271ff;
border-bottom-color: #3271ff;
}
/* Progress */
.progress-bar{
background-color: #3271ff;
}
/* List Types */
.list-icon li:hover:before{
color: #3271ff;
}
/* Pagination */
.pagination > li > a.active, .pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover,
.pager li > a:focus, .pager li > a:hover{
background-color: #3271ff;
}
/* Back to top */
.cd-top:hover, .cd-top:focus {
background-color: #3271ff;
}
/* Tooltip */
.tooltip-color .tooltip-inner{
background-color: #3271ff;
}
.tooltip-color .tooltip.top .tooltip-arrow{
border-top-color:#3271ff;
}
.tooltip-color .tooltip.bottom .tooltip-arrow{
border-bottom-color:#3271ff;
}
.tooltip-color .tooltip.left .tooltip-arrow{
border-left-color:#3271ff;
}
.tooltip-color .tooltip.right .tooltip-arrow{
border-right-color:#3271ff;
}
/* Content box */
.content-box i{
color:#3271ff;
}
.content-box.icon-box .icon-wrap i{
background-color: #3271ff;
}
/* Cat */
.cat{
background-color: #3271ff;
}
/* Team */
.color-border .member-wrap{
border-color: #3271ff;
}
.team-list .member-detail-wrap .position {
color: #3271ff;
}
/*====================
Course
====================== */
.course-banner-wrap > h6 {
background-color: #3271ff;
}
.course-wrapper h5 span{
color: #3271ff;
}
/*====================
Timeline
====================== */
.universh-timeline-img{
background-color: #3271ff;
}
/*====================
Events
====================== */
.events-meta li i, .event-widget p i{
color: #3271ff;
}
/* Testimonial */
.quote-footer span{
color: #3271ff;
}
.quote-wrap.color > blockquote{
background-color: #3271ff;
}
/* Page Header */
.page-header .breadcrumb li, .page-header .breadcrumb li a:hover, .page-header .breadcrumb li a:focus{
color: #3271ff;
}
.page-header .title::after,
.page-header .title::before{
background-color: #3271ff;
}
/* Related Block */
.related-content a{
background-color: #3271ff;
}
/*====================
Widgets
====================== */
.widget-title span{
background-color: #3271ff;
}
.widget li a:hover, .widget li a:focus, .widget li a.active,
.widgets-dark.typo-light .widget li a:hover, .widgets-dark.typo-light .widget li a:focus, .widgets-dark.typo-light .widget li a.active{
color: #3271ff;
}
/* Tag Widget */
.tag-widget li a:hover, .tag-widget li a:focus, .tag-widget li a.active{
background-color: #3271ff;
border-color: #3271ff;
}
.widgets-dark.typo-light .tag-widget li a:hover, .widgets-dark.typo-light .tag-widget li a:focus, .widgets-dark.typo-light .tag-widget li a.active{
color: #fff;
}
/* Go widget */
.go-widget li a:hover .badge, .accordion-widget .panel-default > .panel-heading a:hover .badge{
background-color: #3271ff;
}
.widgets-dark.typo-light .widget .accordion-widget .panel-default > .panel-heading:hover .badge{
background-color: #3271ff;
}
.widgets-dark.typo-light .widget.no-box .accordion-widget .panel-default > .panel-heading:hover .badge{
background-color: #3271ff;
}
/* Thumbanil Widget */
.thumbnail-widget span.color{
color: #3271ff;
}
/*====================
Owl Carousel
====================== */
.owl-theme .owl-nav > div:hover {
background-color:#3271ff;
}
.owl-theme .owl-dots .owl-dot:hover span, .owl-theme .owl-dots .owl-dot.active span{
background-color:#3271ff;
}
/* Gallery */
.accordion.gallery-accordion .panel-title a.collapsed{
background:rgba(33, 150, 243, 0.9);
}
.isotope-filters .nav-pills li a.active, .isotope-filters .nav-pills li a:hover, .isotope-filters .nav-pills li a:focus{
background-color:#3271ff;
}
/* News */
.news-cat{
background-color:#3271ff;
}
/* Shop */
.product-label, .product-details .option-btn, .shop-meta li a:hover, .shop-meta li a:focus{
background-color:#3271ff;
}
.liked-members a:hover,.liked-members a:focus{
background-color:#3271ff;
}
/* Footer */
.footer-copyright nav ul li a:hover, .footer-copyright nav ul li a:focus{
color: #3271ff;
}
/*====================
Header color
====================== */
#header nav ul.nav-main li.dropdown.open .dropdown-toggle,
#header nav ul.nav-main li.active a,
#header nav ul.nav-main li > a:hover,
#header nav ul.nav-main li.dropdown:hover a,
#header.flat-menu nav ul.nav-main li.active > a {
background-color: #3271ff;
}
#header nav ul.nav-main ul.dropdown-menu {
border-color: #3271ff;
}
#header nav ul.nav-main li.dropdown:hover ul.dropdown-menu li > a:hover {
background: #3271ff ;
}
#header .tip{
background: #3271ff;
}
#header .tip:before{
border-right-color: #3271ff;
}
@media (min-width: 992px) {
#header.single-menu nav ul.nav-main li.active > a {
border-top: 5px solid #3271ff;
}
#header.darken-top-border {
border-color: #3271ff;
}
#header.colored .header-top {
background-color: #3271ff;
}
#header.colored .header-top ul.nav-top li a:hover {
background-color: #3271ff;
}
/*#header.flat-menu nav ul.nav-main li.active > a {
color: #3271ff;
}*/
#header.flat-menu nav ul.nav-main li > a:hover,
#header.flat-menu nav ul.nav-main li.dropdown:hover a {
background-color: #3271ff;
}
#header nav.mega-menu ul.nav-main li.mega-menu-item ul.dropdown-menu {
border-top-color: #3271ff;
}
} | themes/default/css/skins/default.css | a,
a:hover, a:focus, a.active,
.typo-dark h1 a:hover, .typo-dark h1 a:focus, .typo-dark h1 a.active,
.typo-dark h2 a:hover, .typo-dark h2 a:focus, .typo-dark h2 a.active,
.typo-dark h3 a:hover, .typo-dark h3 a:focus, .typo-dark h3 a.active,
.typo-dark h4 a:hover, .typo-dark h4 a:focus, .typo-dark h4 a.active,
.typo-dark h5 a:hover, .typo-dark h5 a:focus, .typo-dark h5 a.active,
.typo-dark h6 a:hover, .typo-dark h6 a:focus, .typo-dark h6 a.active,
.typo-light h1 a:hover, .typo-light h1 a:focus, .typo-light h1 a.active,
.typo-light h2 a:hover, .typo-light h2 a:focus, .typo-light h2 a.active,
.typo-light h3 a:hover, .typo-light h3 a:focus, .typo-light h3 a.active,
.typo-light h4 a:hover, .typo-light h4 a:focus, .typo-light h4 a.active,
.typo-light h5 a:hover, .typo-light h5 a:focus, .typo-light h5 a.active,
.typo-light h6 a:hover, .typo-light h6 a:focus, .typo-light h6 a.active
{
color: #3271ff;
}
.btn,.btn.dark:hover{
background-color: #3271ff;
}
/* Color */
.color{
color: #3271ff;
}
/* Background Color */
.bg-color{
background-color: #3271ff !important;
}
/* Bg Gradient */
.bg-gradient{
background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(68, 138, 255, 0.8) 0%, rgba(35, 35, 35, 0.8) 100%) repeat scroll 0 0;
}
/* Overlay */
.overlay.bg-color:after{
background-color: #3271ff;
}
/* Background Video */
.video-controls a{
background-color: #3271ff;
}
/* Title */
.title-container.color *,
.title-container .dot-separator.color{
color: #3271ff;
}
.title-container.color .title-wrap .separator.line-separator,
.title-container.color .title-wrap .separator.line-separator:after{
background-color: #3271ff;
}
.title-bg-line > .title a{
background-color: #3271ff;
}
.title-bg-line{
border-color: #3271ff;
}
/*====================
Bootstrap
====================== */
/* Accordion */
.panel-group .panel{
border-left-color: #3271ff;
}
/* Tab */
.nav-tabs > li > a:hover,.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover{
color: #3271ff;
border-bottom-color: #3271ff;
}
/* Progress */
.progress-bar{
background-color: #3271ff;
}
/* List Types */
.list-icon li:hover:before{
color: #3271ff;
}
/* Pagination */
.pagination > li > a.active, .pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover,
.pager li > a:focus, .pager li > a:hover{
background-color: #3271ff;
}
/* Back to top */
.cd-top:hover, .cd-top:focus {
background-color: #3271ff;
}
/* Tooltip */
.tooltip-color .tooltip-inner{
background-color: #3271ff;
}
.tooltip-color .tooltip.top .tooltip-arrow{
border-top-color:#3271ff;
}
.tooltip-color .tooltip.bottom .tooltip-arrow{
border-bottom-color:#3271ff;
}
.tooltip-color .tooltip.left .tooltip-arrow{
border-left-color:#3271ff;
}
.tooltip-color .tooltip.right .tooltip-arrow{
border-right-color:#3271ff;
}
/* Content box */
.content-box i{
color:#3271ff;
}
.content-box.icon-box .icon-wrap i{
background-color: #3271ff;
}
/* Cat */
.cat{
background-color: #3271ff;
}
/* Team */
.color-border .member-wrap{
border-color: #3271ff;
}
.team-list .member-detail-wrap .position {
color: #3271ff;
}
/*====================
Course
====================== */
.course-banner-wrap > h6 {
background-color: #3271ff;
}
.course-wrapper h5 span{
color: #3271ff;
}
/*====================
Timeline
====================== */
.universh-timeline-img{
background-color: #3271ff;
}
/*====================
Events
====================== */
.events-meta li i, .event-widget p i{
color: #3271ff;
}
/* Testimonial */
.quote-footer span{
color: #3271ff;
}
.quote-wrap.color > blockquote{
background-color: #3271ff;
}
/* Page Header */
.page-header .breadcrumb li, .page-header .breadcrumb li a:hover, .page-header .breadcrumb li a:focus{
color: #3271ff;
}
.page-header .title::after,
.page-header .title::before{
background-color: #3271ff;
}
/* Related Block */
.related-content a{
background-color: #3271ff;
}
/*====================
Widgets
====================== */
.widget-title span{
background-color: #3271ff;
}
.widget li a:hover, .widget li a:focus, .widget li a.active,
.widgets-dark.typo-light .widget li a:hover, .widgets-dark.typo-light .widget li a:focus, .widgets-dark.typo-light .widget li a.active{
color: #3271ff;
}
/* Tag Widget */
.tag-widget li a:hover, .tag-widget li a:focus, .tag-widget li a.active{
background-color: #3271ff;
border-color: #3271ff;
}
.widgets-dark.typo-light .tag-widget li a:hover, .widgets-dark.typo-light .tag-widget li a:focus, .widgets-dark.typo-light .tag-widget li a.active{
color: #fff;
}
/* Go widget */
.go-widget li a:hover .badge, .accordion-widget .panel-default > .panel-heading a:hover .badge{
background-color: #3271ff;
}
.widgets-dark.typo-light .widget .accordion-widget .panel-default > .panel-heading:hover .badge{
background-color: #3271ff;
}
.widgets-dark.typo-light .widget.no-box .accordion-widget .panel-default > .panel-heading:hover .badge{
background-color: #3271ff;
}
/* Thumbanil Widget */
.thumbnail-widget span.color{
color: #3271ff;
}
/*====================
Owl Carousel
====================== */
.owl-theme .owl-nav > div:hover {
background-color:#3271ff;
}
.owl-theme .owl-dots .owl-dot:hover span, .owl-theme .owl-dots .owl-dot.active span{
background-color:#3271ff;
}
/* Gallery */
.accordion.gallery-accordion .panel-title a.collapsed{
background:rgba(33, 150, 243, 0.9);
}
.isotope-filters .nav-pills li a.active, .isotope-filters .nav-pills li a:hover, .isotope-filters .nav-pills li a:focus{
background-color:#3271ff;
}
/* News */
.news-cat{
background-color:#3271ff;
}
/* Shop */
.product-label, .product-details .option-btn, .shop-meta li a:hover, .shop-meta li a:focus{
background-color:#3271ff;
}
.liked-members a:hover,.liked-members a:focus{
background-color:#3271ff;
}
/* Footer */
.footer-copyright nav ul li a:hover, .footer-copyright nav ul li a:focus{
color: #3271ff;
}
/*====================
Header color
====================== */
#header nav ul.nav-main li.dropdown.open .dropdown-toggle,
#header nav ul.nav-main li.active a,
#header nav ul.nav-main li > a:hover,
#header nav ul.nav-main li.dropdown:hover a,
#header.flat-menu nav ul.nav-main li.active > a {
background-color: #3271ff;
}
#header nav ul.nav-main ul.dropdown-menu {
border-color: #3271ff;
}
#header nav ul.nav-main li.dropdown:hover ul.dropdown-menu li > a:hover {
background: #3271ff ;
}
#header .tip{
background: #3271ff;
}
#header .tip:before{
border-right-color: #3271ff;
}
@media (min-width: 992px) {
#header.single-menu nav ul.nav-main li.active > a {
border-top: 5px solid #3271ff;
}
#header.darken-top-border {
border-color: #3271ff;
}
#header.colored .header-top {
background-color: #3271ff;
}
#header.colored .header-top ul.nav-top li a:hover {
background-color: #3271ff;
}
/*#header.flat-menu nav ul.nav-main li.active > a {
color: #3271ff;
}*/
#header.flat-menu nav ul.nav-main li > a:hover,
#header.flat-menu nav ul.nav-main li.dropdown:hover a {
background-color: #3271ff;
}
#header nav.mega-menu ul.nav-main li.mega-menu-item ul.dropdown-menu {
border-top-color: #3271ff;
}
} | 0.345989 | 0.1982 |
@charset "UTF-8";
body {
font: 16px/1.5 'Open Sans', Helvetica, Helvetica Neue, Arial, sans-serif;
color: rgba(0, 0, 0, 0.9); }
html, body {
height: 100%;
margin: 0; }
h1 {
padding: 20% 0 0 0;
margin: 0;
text-align: center;
font-size: 36px;
color: rgba(0, 0, 0, 0.9);
position: relative; }
h1:before {
content: '❤';
display: block;
position: absolute;
bottom: 50px;
left: 50%;
text-align: center;
width: 100px;
margin-left: -50px;
color: #ff466a;
font-size: 30px; }
p {
text-align: center;
color: rgba(0, 0, 0, 0.5); }
strong {
color: rgba(0, 0, 0, 0.9); }
section {
height: 100%;
position: relative;
text-align: center; }
/* Center aligned first section */
section .inner {
margin: 0 auto;
max-width: 85%; }
/* Content of the following sections aligned next to the iphone */
section .innerText {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-100px, -50%);
text-align: left; }
/* iPhone/Card positioned to the left - this is a default position */
.iphone {
width: 290px;
height: 600px;
border-radius: 10px;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-150%, -50%);
background-color: #3757D0;
background-image: -webkit-radial-gradient(#81bcff, #5d7fce);
background-image: radial-gradient(#81bcff, #5d7fce); }
/* Centered content of the ScrollMagic card */
.iphone p {
font-size: 140px;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: rgba(255, 255, 255, 0.9); }
/* Letters hidden by default */
.iphone p.screenA, .iphone p.screenB, .iphone p.screenC {
opacity: 0;
visibility: hidden; }
/* ScrollMagic hat on top of letters */
.iphone p.screenHat {
z-index: 2; }
.iphone p.screenHat img {
max-width: 130px; }
/* Bullet list */
.features {
list-style: none;
margin: 0;
padding: 0;
color: rgba(0, 0, 0, 0.6); }
.features li {
position: relative;
padding-left: 17px; }
/* A heart instead of a bullet */
.features li:before {
content: '❤';
font-size: 11px;
position: absolute;
left: 0;
top: 5px;
display: block;
color: #ff466a; } | css/style.css | @charset "UTF-8";
body {
font: 16px/1.5 'Open Sans', Helvetica, Helvetica Neue, Arial, sans-serif;
color: rgba(0, 0, 0, 0.9); }
html, body {
height: 100%;
margin: 0; }
h1 {
padding: 20% 0 0 0;
margin: 0;
text-align: center;
font-size: 36px;
color: rgba(0, 0, 0, 0.9);
position: relative; }
h1:before {
content: '❤';
display: block;
position: absolute;
bottom: 50px;
left: 50%;
text-align: center;
width: 100px;
margin-left: -50px;
color: #ff466a;
font-size: 30px; }
p {
text-align: center;
color: rgba(0, 0, 0, 0.5); }
strong {
color: rgba(0, 0, 0, 0.9); }
section {
height: 100%;
position: relative;
text-align: center; }
/* Center aligned first section */
section .inner {
margin: 0 auto;
max-width: 85%; }
/* Content of the following sections aligned next to the iphone */
section .innerText {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-100px, -50%);
text-align: left; }
/* iPhone/Card positioned to the left - this is a default position */
.iphone {
width: 290px;
height: 600px;
border-radius: 10px;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-150%, -50%);
background-color: #3757D0;
background-image: -webkit-radial-gradient(#81bcff, #5d7fce);
background-image: radial-gradient(#81bcff, #5d7fce); }
/* Centered content of the ScrollMagic card */
.iphone p {
font-size: 140px;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: rgba(255, 255, 255, 0.9); }
/* Letters hidden by default */
.iphone p.screenA, .iphone p.screenB, .iphone p.screenC {
opacity: 0;
visibility: hidden; }
/* ScrollMagic hat on top of letters */
.iphone p.screenHat {
z-index: 2; }
.iphone p.screenHat img {
max-width: 130px; }
/* Bullet list */
.features {
list-style: none;
margin: 0;
padding: 0;
color: rgba(0, 0, 0, 0.6); }
.features li {
position: relative;
padding-left: 17px; }
/* A heart instead of a bullet */
.features li:before {
content: '❤';
font-size: 11px;
position: absolute;
left: 0;
top: 5px;
display: block;
color: #ff466a; } | 0.379723 | 0.068631 |
a,
a:focus,
a:hover {
color: #727272;
}
/* Custom default button */
.btn-default {
height: 38px;
width: 100px;
border: 1px solid #fff;
margin: 10px auto 0 auto;
font-family: 'Arial', sans-serif;
font-size:18px;
color: #ffffff;
border: solid 1px #009688;
background: #009688;
display: inline-block;
outline: none;
cursor: pointer;
text-align: center;
text-decoration: none;
text-shadow: 0 1px 1px rgba(0,0,0,.4);
-webkit-border-radius: .15em;
-moz-border-radius: .15em;
border-radius: .15em;
}
/*
* Base structure
*/
body{
background-image: url("../images/loginbackground.jpg");
}
html,
body {
height: 100%;
/*background-color: #999;*/
}
/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
display: table;
width: 100%;
height: 100%; /* For at least Firefox */
min-height: 100%;
-webkit-box-shadow: inset 0 0 100px rgba(0,0,0,.5);
box-shadow: inset 0 0 100px rgba(0,0,0,.5);
}
.site-wrapper-inner {
display: table-cell;
vertical-align: top;
}
.cover-container {
margin-right: auto;
margin-left: auto;
}
/* Padding for spacing */
.inner {
padding: 30px;
}
/*
*login section
*/
.loginsection{
margin-left: auto;
margin-right: auto;
width: 500px;
font-weight:bold;
box-shadow: 10px 10px 26px 0px #181818;
}
.logintitle{
padding-top: 30px;
padding-bottom: 35px;
text-align: center;
font-size: 36px;
background-color: rgba(0,121,107,.6);
color: #fff;
}
.loginform{
background-color: rgba(255,255,255,.95);
font-size: 20px;
}
#loginform{
padding-top: 30px;
padding-bottom: 40px;
margin-left: auto;
margin-right: auto;
width: 380px;
}
.logininput{
margin-bottom: 10px;
width: 380px;
height: 36px;
border: 2px solid #009688;
border-radius: 4px;
box-shadow: inset 0 0 1.5px #000000;
}
.registerlink{
background-color: rgba(255,255,255,.95);
padding-bottom: 50px;
}
#registerlink{
width:380px;
margin-left: auto;
margin-right: auto;
}
/*
* Footer
*/
.mastfoot {
text-align: center;
color: #999; /* IE8 proofing */
color: rgba(255,255,255,.5);
}
/*
* Affix and center
*/
@media (min-width: 768px) {
/* Pull out the header and footer */
.mastfoot {
position: fixed;
bottom: 0;
}
/* Start the vertical centering */
.site-wrapper-inner {
vertical-align: middle;
}
/* Handle the widths */
.mastfoot,
.cover-container {
width: 100%; /* Must be percentage or pixels for horizontal alignment */
}
}
@media (min-width: 992px) {
.mastfoot,
.cover-container {
width: 700px;
}
} | wwwroot/css/login.css | a,
a:focus,
a:hover {
color: #727272;
}
/* Custom default button */
.btn-default {
height: 38px;
width: 100px;
border: 1px solid #fff;
margin: 10px auto 0 auto;
font-family: 'Arial', sans-serif;
font-size:18px;
color: #ffffff;
border: solid 1px #009688;
background: #009688;
display: inline-block;
outline: none;
cursor: pointer;
text-align: center;
text-decoration: none;
text-shadow: 0 1px 1px rgba(0,0,0,.4);
-webkit-border-radius: .15em;
-moz-border-radius: .15em;
border-radius: .15em;
}
/*
* Base structure
*/
body{
background-image: url("../images/loginbackground.jpg");
}
html,
body {
height: 100%;
/*background-color: #999;*/
}
/* Extra markup and styles for table-esque vertical and horizontal centering */
.site-wrapper {
display: table;
width: 100%;
height: 100%; /* For at least Firefox */
min-height: 100%;
-webkit-box-shadow: inset 0 0 100px rgba(0,0,0,.5);
box-shadow: inset 0 0 100px rgba(0,0,0,.5);
}
.site-wrapper-inner {
display: table-cell;
vertical-align: top;
}
.cover-container {
margin-right: auto;
margin-left: auto;
}
/* Padding for spacing */
.inner {
padding: 30px;
}
/*
*login section
*/
.loginsection{
margin-left: auto;
margin-right: auto;
width: 500px;
font-weight:bold;
box-shadow: 10px 10px 26px 0px #181818;
}
.logintitle{
padding-top: 30px;
padding-bottom: 35px;
text-align: center;
font-size: 36px;
background-color: rgba(0,121,107,.6);
color: #fff;
}
.loginform{
background-color: rgba(255,255,255,.95);
font-size: 20px;
}
#loginform{
padding-top: 30px;
padding-bottom: 40px;
margin-left: auto;
margin-right: auto;
width: 380px;
}
.logininput{
margin-bottom: 10px;
width: 380px;
height: 36px;
border: 2px solid #009688;
border-radius: 4px;
box-shadow: inset 0 0 1.5px #000000;
}
.registerlink{
background-color: rgba(255,255,255,.95);
padding-bottom: 50px;
}
#registerlink{
width:380px;
margin-left: auto;
margin-right: auto;
}
/*
* Footer
*/
.mastfoot {
text-align: center;
color: #999; /* IE8 proofing */
color: rgba(255,255,255,.5);
}
/*
* Affix and center
*/
@media (min-width: 768px) {
/* Pull out the header and footer */
.mastfoot {
position: fixed;
bottom: 0;
}
/* Start the vertical centering */
.site-wrapper-inner {
vertical-align: middle;
}
/* Handle the widths */
.mastfoot,
.cover-container {
width: 100%; /* Must be percentage or pixels for horizontal alignment */
}
}
@media (min-width: 992px) {
.mastfoot,
.cover-container {
width: 700px;
}
} | 0.342242 | 0.073696 |
min-height:200px;
}
#BigPrice{
color: red;
font-size:30px;
}
#DetailProductContainer{
min-height:110px;
}
.testing{
max-height:170px;
}
@-webkit-keyframes rightToLeft {
0% {
-webkit-transform: translateX(800px);
opacity: 0;
}
100% {
-webkit-transform: translateX(0);
opacity: 1;
}
}
.animtedComponentShortDetail-1{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 0.5s;
}
.animtedComponentShortDetail-2{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 1s;
}
.animtedComponentShortDetail-3{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 1.5s;
}
.animtedComponentShortDetail-4{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 0.5s;
-webkit-animation-delay: 0.8s;
-webkit-animation-fill-mode: forwards;
opacity:0;
}
.animtedComponentShortDetail-5{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 1s;
-webkit-animation-delay: 0.8s;
-webkit-animation-fill-mode: forwards;
opacity:0;
}
.animtedComponentShortDetail-6{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 1.5s;
-webkit-animation-delay: 0.8s;
-webkit-animation-fill-mode: forwards;
opacity:0;
}
.animtedComponentShortDetail-7{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 0.5s;
-webkit-animation-delay: 1.6s;
-webkit-animation-fill-mode: forwards;
opacity:0;
}
.animtedComponentShortDetail-8{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 1s;
-webkit-animation-delay: 1.6s;
-webkit-animation-fill-mode: forwards;
opacity:0;
}
.animtedComponentShortDetail-9{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 1.5s;
-webkit-animation-delay: 1.6s;
-webkit-animation-fill-mode: forwards;
opacity:0;
} | src/client/app/shared/product-list/product-list.component.css | min-height:200px;
}
#BigPrice{
color: red;
font-size:30px;
}
#DetailProductContainer{
min-height:110px;
}
.testing{
max-height:170px;
}
@-webkit-keyframes rightToLeft {
0% {
-webkit-transform: translateX(800px);
opacity: 0;
}
100% {
-webkit-transform: translateX(0);
opacity: 1;
}
}
.animtedComponentShortDetail-1{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 0.5s;
}
.animtedComponentShortDetail-2{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 1s;
}
.animtedComponentShortDetail-3{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 1.5s;
}
.animtedComponentShortDetail-4{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 0.5s;
-webkit-animation-delay: 0.8s;
-webkit-animation-fill-mode: forwards;
opacity:0;
}
.animtedComponentShortDetail-5{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 1s;
-webkit-animation-delay: 0.8s;
-webkit-animation-fill-mode: forwards;
opacity:0;
}
.animtedComponentShortDetail-6{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 1.5s;
-webkit-animation-delay: 0.8s;
-webkit-animation-fill-mode: forwards;
opacity:0;
}
.animtedComponentShortDetail-7{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 0.5s;
-webkit-animation-delay: 1.6s;
-webkit-animation-fill-mode: forwards;
opacity:0;
}
.animtedComponentShortDetail-8{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 1s;
-webkit-animation-delay: 1.6s;
-webkit-animation-fill-mode: forwards;
opacity:0;
}
.animtedComponentShortDetail-9{
-webkit-animation-name: rightToLeft;
-webkit-animation-iteration-count: 1;
-webkit-animation-duration: 1.5s;
-webkit-animation-delay: 1.6s;
-webkit-animation-fill-mode: forwards;
opacity:0;
} | 0.305076 | 0.041269 |
.weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon, .weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon>i, .weui-tabbar__item.weui-bar__item_on .weui-tabbar__label {
color: #F56617;
}
.weui-loadmore_line{border-top:1px solid #FF822E;}
.weui-loadmore_line .weui-loadmore__tips{color:#FF822E;background-color:#f8f8f8;}
.weui-btn{border-radius:40px;}
.weui-switch-cp__input:checked~.weui-switch-cp__box, .weui-switch:checked{border-color: #ec4f02;background-color: #ec4f02;}
/*
* common
*/
.weui-cells_none{background-color:inherit;}
.weui-cells_none:after, .weui-cells_none:before {content: none;}
/*基础色*/
.text-base_light{color:#FF822E}
.text-base_mid{color:#F56617}
.text-base_dark{color:#EC4F02}
.text-black{color:black;}
.text-primary{color:#1aad19;}
.text-danger{color:#E64340;}
.text-warn{color:#FFBE00;}
.text-blue{color:#1E89E0;}
.text-mute{color:#c7c7c7;}
.text-muted{color:#999;}
.text-white{color:#fff;}
/*order status*/
.text-new{color:#3F51BB}
.text-unpaid{color:#E51C23}
.text-processing{color:#3CA63A}
.text-success{color:#085C06}
.text-cancelled{color:#A7A8A7}
.text-delete{color:#999}
/*基础背景色*/
.bg-base_light{background-color:#FF822E;}
.bg-base_mid{background-color:#F56617;}
.bg-base_dark{background-color:#EC4F02;}
.bg-base_dl{background: linear-gradient(to right,#EC4F02,#FF822E);}
.bg-base_ld{background: linear-gradient(to right,#FF822E,#EC4F02);}
.weui-btn_base{background: linear-gradient(to right,#FF822E,#EC4F02);}
.weui-btn_base_dl{background: linear-gradient(to right,#EC4F02,#FF822E);}
.weui-btn_plain-base{color: #F56617;border: 1px solid #F56617;}
/*fonnt-size*/
.f_08{font-size:0.8em !important;}
.f_1{font-size:1em}
.f_13{font-size:1.3em}
.f_15{font-size:1.5em}
.f_2{font-size:2em}
/*margin*/
.margin-top_50{margin-top:50%;}
.margin-t-b-40{margin:40px auto;}
.weui-cell.padding-t{padding:50px 10px}
/*text-align*/
.text-center{text-align:center;}
.text-right{text-align:right;}
.text-left{text-align:left;}
/*display*/
.hide{display:none;}
.show{display:block;}
.center-block{display:block;margin:0px auto}
.weui-cell__bd{padding-left:10px}
.weui-cells_top0{margin-top:0em}
/*main.blade.php*/
.bottom-main{position: fixed;bottom:0px}
/*
*Home
*/
.merchant-list-top .item-food-type{margin:5px;padding:5px 10px;border:1px solid #999;display:inline-block;border-radius:7px;color:#999}
.merchant-list-top .item-search{width:70%;margin:5px;padding:5px 10px;border:1px solid #999;display:inline-block;color:#999}
.merchant-list-top .item-search i{position:absolute;right:15px;top:15px}
.merchant-list::before{content:none}
.merchant-list-top::after{content:none}
.merchant-list .weui-flex{margin:8px auto}
.merchant-list .weui-loadmore_line .weui-loadmore__tips {background-color:#fff;}
/*
* Mercahnt mercahnt menu
*/
.shopping-cart{position: fixed;width: 40px;height:40px;border:1px solid #586c94;border-radius:40px;bottom:125px;right:2px;}
.shopping-cart .fa{position: absolute;top: 8px;left: 6px;color:#586c94;font-size:1.6em}
.shopping-cart .weui-badge{position: absolute;top: -0.5em;right:-0.2em;}
.back-to-top{position: fixed;width: 50px;height:50px;bottom:125px;left:0px;font-size:3em;color:#FF822E;z-index:999;}
.list-items{padding:10px}
.list-items .weui-flex__item{margin:10px 5px;background-color:#fff;box-shadow:0 0 10px #c0bfc4}
.list-items .weui-flex__item.item_none{margin:10px;background-color:transparent;box-shadow:none}
.list-items .list-item{padding:10px 15px}
.list-items .item-favourite{font-size:1.5em}
.list-item .item-name{font-size:1.2em;overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
word-break: break-all;}
.list-item .item-desc{font-size:0.8em;color:#ccc;overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
word-break: break-all;}
.list-item .item-cart div:nth-child(1){display:inline-block;width:48%;font-size:1.3em;}
.list-item .item-cart div:nth-child(2){display:inline-block;width:48%;font-size:1.5em;}
/*
* Mercahnt mercahnt _main
*/
.bottom-merchant-main .weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon,.bottom-merchant-main .weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon>i,.bottom-merchant-main .weui-tabbar__item.weui-bar__item_on .weui-tabbar__label {
color: #FFF;
}
.bottom-merchant-main .weui-tabbar__icon>i,.bottom-merchant-main i.weui-tabbar__icon,.bottom-merchant-main .weui-tabbar__label{
color:#d5d5d6;
}
/*
* Merchant merchant seat
*/
.merchant-seat .seat-time .weui-cell{padding:40px 15px;font-size: 1.3em}
.merchant-seat .seat-time span{border: 1px solid #ccc;padding: 0px 10px;}
.merchant-seat .seat-show .weui-cell{padding:0px 15px 40px 15px}
/*
* Merchant merchant about
*/
.merchant-about-img .arror-left{font-size:2em;color:#fff;position: absolute;width: 15px;top: 63px;left: 15px;}
.merchant-about-img .arror-right{font-size:2em;color:#fff;position: absolute;width: 15px;top: 63px;right: 15px;}
.merchant-about-favorite{padding:10px 0px;font-size:2em}
/*
* Merchant Details
*/
.item-details{background-color:#fff;padding-top:20px;box-sizing: border-box;height: 100%;padding-bottom: 150px;overflow: auto;-webkit-overflow-scrolling: touch;}
.item-details-mid{border:1px solid #ccc;border-radius:10px;box-shadow:0 0 20px #ccc}
.item-details-mid .item-img{border-bottom:1px solid #ccc}
.item-details-mid .item-img #img_box{padding:40px}
.item-details-mid .img-dot{position:relative;width:100%;bottom:23px;text-align:center;font-size:0.5em}
.item-details-mid .item_prev{position:absolute;left:0px;top:126px;color:#F56617;font-size:2em}
.item-details-mid .item_next{position:absolute;right:0px;top:126px;color:#F56617;font-size:2em}
.item-details-mid .item-name{font-size:1.3em;text-align:center;margin:5px}
.item-details-mid .item-desc{font-size:1em;text-align:center;margin:5px}
.item-details-mid .item-price{font-size:1.5em;text-align:center;margin:5px;font-weight:700}
.item-details-bot{padding:10px 0px;position:fixed;width:100%;bottom:0px;background-color:#fff;z-index:99999}
.item-details-bot .weui-cells::before,.item-details-bot .weui-cells::after{content:none}
.item-details-bot .item-favourite .weui-cell{height:46px;font-size:1.2em;}
.item-details-bot .item-favourite .weui-cell div{width:45px;height:45px;border-radius:50px;border:1px solid #F56617;}
.item-details-bot .item-favourite i{position:absolute;top:26px;left:28px;color:#F56617}
.item-details-bot .item-share .weui-cell div{width:45px;height:45px;border-radius:50px;border:1px solid #F56617;}
.item-details-bot .item-share .weui-cell{height:46px;font-size:1.2em;}
.item-details-bot .item-share i{position:absolute;top:26px;right:28px;color:#F56617}
.item-details-bot .item-cart .weui-btn{padding-left:24px;padding-right:24px;}
/*
*Merchant combo
*/
.list-combo .list-item{border-radius: 15px;box-shadow: 0 0 15px #ccc;}
.list-combo .subtotal{border-radius: 15px;border:2px dashed #ccc;}
.list-combo .list-item-price{padding: 0 20px 0px 15px;}
.list-combo .list-item-price>span{display:inline-block;width:80px;}
.list-combo .list-item-num span{ font-size:1em;display:inline-block;border:1px solid #ddd;width:35px;border-radius:7px;text-align:center;}
.list-combo .list-item-num i{ font-size:1.3em;margin:0px 5px;color:#F56617;position:relative;top:2px}
.package_order{position:fixed;bottom:60px;width:92%;z-index:999;}
.combo_hide_height{height:70px}
/*
*Order Lists
*/
.order-list-top{padding-left:15px;padding-right:3px}
.order-list-top::after{content:none;}
.order-lists::before{content:none;}
.order-lists p{margin:5px auto;}
.order-list-top .item-top-status{margin:5px;padding:5px 10px;border:1px solid #999;display:inline-block;border-radius:7px;color:#999}
/*.order-list-top .item-top-date{margin:5px;padding:5px 10px;border:1px solid #999;display:inline-block;border-radius:7px;color:#999}*/
.order-list-top .item-top-date{margin:5px;padding:5px 10px;display:inline-block;border-radius:7px;color:#999}
/*
*Order Details
*/
.order-details-container{box-sizing: border-box;height: 100%;padding-bottom: 100px;overflow: auto;-webkit-overflow-scrolling: touch;}
.order-details{border-radius: 15px;border:1px dashed #ccc;box-shadow: 0 0 15px #ccc;}
.order-details .weui-cell__ft span{display:inline-block;width:75px;}
.order-details .order-note{word-break:break-word;text-indent:2em}
.order-details .item_qrcode svg{display:block;margin:0px auto;}
.order-details .weui-cell::before{border-top:none}
.want-tip{width:95%;position: fixed;bottom: 5px;left:2.5%;z-index:999}
.order-details .item_last::after{
content: " ";
position: absolute;
left: 5px;
bottom: 0;
right: 5px;
height: 1px;
border-bottom: 1px dashed red;
color: #e5e5e5;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transform: scaleY(.5);
transform: scaleY(.5);
z-index: 2;
}
.order-details .item_total{font-weight:900}
.order-details .item_total::after,.order-details .note-order::after{
content: " ";
position: absolute;
left: 0px;
bottom: 0;
right: 0px;
height: 1px;
border-bottom: 1px solid black;
color: #e5e5e5;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transform: scaleY(.5);
transform: scaleY(.5);
z-index: 2;
}
/*
* user
*/
.user-info .weui-cell_access .weui-cell__ft::after{border-color:#fff}
/*
*wallet
*/
.user-wallet{box-sizing: border-box;height: 100%;overflow: auto;-webkit-overflow-scrolling: touch;padding-bottom: 50px}
.user-wallet .weui-cells::before,.user-wallet .weui-cells::after{content:none}
.user-wallet .user-card{width:100%;border-radius:10px;}
.user-wallet .card-list{padding:0px 15px}
.user-wallet .card-list i{position:absolute;top:14px;right:8%;font-size:1.5em}
.user-wallet .user-card img{width:100%}
.user-wallet .user-card .card_num{position:absolute;top:45%;left:70%;font-size:0.8em;color:#fff}
.user-wallet .card-add{margin:0px 6px;height:140px;line-height:140px;width:100%;border-radius:10px;background-color:#F3F3F3}
.user-wallet .card-add i{font-size:2em;position:relative;top:4px}
/*
*user wallet_add
*/
.user-wallet-add{box-sizing: border-box;height: 100%;overflow: auto;-webkit-overflow-scrolling: touch;}
.user-wallet-add .weui-cells::before,.user-wallet-add .weui-cells::after{content:none}
.user-wallet-add-inputs .weui-cells__title{margin-top:1.77em}
.user-wallet-add-inputs .weui-cells{box-shadow:0px 4px 5px #ccc}
.user-wallet-add-inputs .add-card{margin-top:3em}
/*
*shopping cart
*/
.dine-take{margin-top:1.17647059em}
.dine-take .weui-flex__item:nth-child(2){margin-left:10%;}
/*左滑动删除css*/
.slidelefts {height: 100%;padding:0px;border-bottom: 1px solid #eee;}
.slidelefts>.weui-cell__bd {height: auto;overflow: hidden;position: relative;z-index: 10;background-color: #fff;padding: 10px 15px;}
.weui-cell>.weui-cell__bd.animated {-webkit-transition: -webkit-transform .2s ease-out;transition: transform .2s ease-out;}
.weui-cell .slideleft {height: 100%;display: -webkit-box;-webkit-box-pack: center;-webkit-box-align: center;position: absolute;top: 0;right: 0;z-index: 0;}
.weui-cell .slideleft span {height: 100%;padding: 0 10px;display: -webkit-box;-webkit-box-pack: center;-webkit-box-align: center;}
.slidelefts>.weui-cell__bd .weui-cell__bd{padding-left:0px}
.slidelefts .weui-cell{padding:0px} | public/css/weui3.css | .weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon, .weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon>i, .weui-tabbar__item.weui-bar__item_on .weui-tabbar__label {
color: #F56617;
}
.weui-loadmore_line{border-top:1px solid #FF822E;}
.weui-loadmore_line .weui-loadmore__tips{color:#FF822E;background-color:#f8f8f8;}
.weui-btn{border-radius:40px;}
.weui-switch-cp__input:checked~.weui-switch-cp__box, .weui-switch:checked{border-color: #ec4f02;background-color: #ec4f02;}
/*
* common
*/
.weui-cells_none{background-color:inherit;}
.weui-cells_none:after, .weui-cells_none:before {content: none;}
/*基础色*/
.text-base_light{color:#FF822E}
.text-base_mid{color:#F56617}
.text-base_dark{color:#EC4F02}
.text-black{color:black;}
.text-primary{color:#1aad19;}
.text-danger{color:#E64340;}
.text-warn{color:#FFBE00;}
.text-blue{color:#1E89E0;}
.text-mute{color:#c7c7c7;}
.text-muted{color:#999;}
.text-white{color:#fff;}
/*order status*/
.text-new{color:#3F51BB}
.text-unpaid{color:#E51C23}
.text-processing{color:#3CA63A}
.text-success{color:#085C06}
.text-cancelled{color:#A7A8A7}
.text-delete{color:#999}
/*基础背景色*/
.bg-base_light{background-color:#FF822E;}
.bg-base_mid{background-color:#F56617;}
.bg-base_dark{background-color:#EC4F02;}
.bg-base_dl{background: linear-gradient(to right,#EC4F02,#FF822E);}
.bg-base_ld{background: linear-gradient(to right,#FF822E,#EC4F02);}
.weui-btn_base{background: linear-gradient(to right,#FF822E,#EC4F02);}
.weui-btn_base_dl{background: linear-gradient(to right,#EC4F02,#FF822E);}
.weui-btn_plain-base{color: #F56617;border: 1px solid #F56617;}
/*fonnt-size*/
.f_08{font-size:0.8em !important;}
.f_1{font-size:1em}
.f_13{font-size:1.3em}
.f_15{font-size:1.5em}
.f_2{font-size:2em}
/*margin*/
.margin-top_50{margin-top:50%;}
.margin-t-b-40{margin:40px auto;}
.weui-cell.padding-t{padding:50px 10px}
/*text-align*/
.text-center{text-align:center;}
.text-right{text-align:right;}
.text-left{text-align:left;}
/*display*/
.hide{display:none;}
.show{display:block;}
.center-block{display:block;margin:0px auto}
.weui-cell__bd{padding-left:10px}
.weui-cells_top0{margin-top:0em}
/*main.blade.php*/
.bottom-main{position: fixed;bottom:0px}
/*
*Home
*/
.merchant-list-top .item-food-type{margin:5px;padding:5px 10px;border:1px solid #999;display:inline-block;border-radius:7px;color:#999}
.merchant-list-top .item-search{width:70%;margin:5px;padding:5px 10px;border:1px solid #999;display:inline-block;color:#999}
.merchant-list-top .item-search i{position:absolute;right:15px;top:15px}
.merchant-list::before{content:none}
.merchant-list-top::after{content:none}
.merchant-list .weui-flex{margin:8px auto}
.merchant-list .weui-loadmore_line .weui-loadmore__tips {background-color:#fff;}
/*
* Mercahnt mercahnt menu
*/
.shopping-cart{position: fixed;width: 40px;height:40px;border:1px solid #586c94;border-radius:40px;bottom:125px;right:2px;}
.shopping-cart .fa{position: absolute;top: 8px;left: 6px;color:#586c94;font-size:1.6em}
.shopping-cart .weui-badge{position: absolute;top: -0.5em;right:-0.2em;}
.back-to-top{position: fixed;width: 50px;height:50px;bottom:125px;left:0px;font-size:3em;color:#FF822E;z-index:999;}
.list-items{padding:10px}
.list-items .weui-flex__item{margin:10px 5px;background-color:#fff;box-shadow:0 0 10px #c0bfc4}
.list-items .weui-flex__item.item_none{margin:10px;background-color:transparent;box-shadow:none}
.list-items .list-item{padding:10px 15px}
.list-items .item-favourite{font-size:1.5em}
.list-item .item-name{font-size:1.2em;overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 1;
-webkit-box-orient: vertical;
word-break: break-all;}
.list-item .item-desc{font-size:0.8em;color:#ccc;overflow : hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
word-break: break-all;}
.list-item .item-cart div:nth-child(1){display:inline-block;width:48%;font-size:1.3em;}
.list-item .item-cart div:nth-child(2){display:inline-block;width:48%;font-size:1.5em;}
/*
* Mercahnt mercahnt _main
*/
.bottom-merchant-main .weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon,.bottom-merchant-main .weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon>i,.bottom-merchant-main .weui-tabbar__item.weui-bar__item_on .weui-tabbar__label {
color: #FFF;
}
.bottom-merchant-main .weui-tabbar__icon>i,.bottom-merchant-main i.weui-tabbar__icon,.bottom-merchant-main .weui-tabbar__label{
color:#d5d5d6;
}
/*
* Merchant merchant seat
*/
.merchant-seat .seat-time .weui-cell{padding:40px 15px;font-size: 1.3em}
.merchant-seat .seat-time span{border: 1px solid #ccc;padding: 0px 10px;}
.merchant-seat .seat-show .weui-cell{padding:0px 15px 40px 15px}
/*
* Merchant merchant about
*/
.merchant-about-img .arror-left{font-size:2em;color:#fff;position: absolute;width: 15px;top: 63px;left: 15px;}
.merchant-about-img .arror-right{font-size:2em;color:#fff;position: absolute;width: 15px;top: 63px;right: 15px;}
.merchant-about-favorite{padding:10px 0px;font-size:2em}
/*
* Merchant Details
*/
.item-details{background-color:#fff;padding-top:20px;box-sizing: border-box;height: 100%;padding-bottom: 150px;overflow: auto;-webkit-overflow-scrolling: touch;}
.item-details-mid{border:1px solid #ccc;border-radius:10px;box-shadow:0 0 20px #ccc}
.item-details-mid .item-img{border-bottom:1px solid #ccc}
.item-details-mid .item-img #img_box{padding:40px}
.item-details-mid .img-dot{position:relative;width:100%;bottom:23px;text-align:center;font-size:0.5em}
.item-details-mid .item_prev{position:absolute;left:0px;top:126px;color:#F56617;font-size:2em}
.item-details-mid .item_next{position:absolute;right:0px;top:126px;color:#F56617;font-size:2em}
.item-details-mid .item-name{font-size:1.3em;text-align:center;margin:5px}
.item-details-mid .item-desc{font-size:1em;text-align:center;margin:5px}
.item-details-mid .item-price{font-size:1.5em;text-align:center;margin:5px;font-weight:700}
.item-details-bot{padding:10px 0px;position:fixed;width:100%;bottom:0px;background-color:#fff;z-index:99999}
.item-details-bot .weui-cells::before,.item-details-bot .weui-cells::after{content:none}
.item-details-bot .item-favourite .weui-cell{height:46px;font-size:1.2em;}
.item-details-bot .item-favourite .weui-cell div{width:45px;height:45px;border-radius:50px;border:1px solid #F56617;}
.item-details-bot .item-favourite i{position:absolute;top:26px;left:28px;color:#F56617}
.item-details-bot .item-share .weui-cell div{width:45px;height:45px;border-radius:50px;border:1px solid #F56617;}
.item-details-bot .item-share .weui-cell{height:46px;font-size:1.2em;}
.item-details-bot .item-share i{position:absolute;top:26px;right:28px;color:#F56617}
.item-details-bot .item-cart .weui-btn{padding-left:24px;padding-right:24px;}
/*
*Merchant combo
*/
.list-combo .list-item{border-radius: 15px;box-shadow: 0 0 15px #ccc;}
.list-combo .subtotal{border-radius: 15px;border:2px dashed #ccc;}
.list-combo .list-item-price{padding: 0 20px 0px 15px;}
.list-combo .list-item-price>span{display:inline-block;width:80px;}
.list-combo .list-item-num span{ font-size:1em;display:inline-block;border:1px solid #ddd;width:35px;border-radius:7px;text-align:center;}
.list-combo .list-item-num i{ font-size:1.3em;margin:0px 5px;color:#F56617;position:relative;top:2px}
.package_order{position:fixed;bottom:60px;width:92%;z-index:999;}
.combo_hide_height{height:70px}
/*
*Order Lists
*/
.order-list-top{padding-left:15px;padding-right:3px}
.order-list-top::after{content:none;}
.order-lists::before{content:none;}
.order-lists p{margin:5px auto;}
.order-list-top .item-top-status{margin:5px;padding:5px 10px;border:1px solid #999;display:inline-block;border-radius:7px;color:#999}
/*.order-list-top .item-top-date{margin:5px;padding:5px 10px;border:1px solid #999;display:inline-block;border-radius:7px;color:#999}*/
.order-list-top .item-top-date{margin:5px;padding:5px 10px;display:inline-block;border-radius:7px;color:#999}
/*
*Order Details
*/
.order-details-container{box-sizing: border-box;height: 100%;padding-bottom: 100px;overflow: auto;-webkit-overflow-scrolling: touch;}
.order-details{border-radius: 15px;border:1px dashed #ccc;box-shadow: 0 0 15px #ccc;}
.order-details .weui-cell__ft span{display:inline-block;width:75px;}
.order-details .order-note{word-break:break-word;text-indent:2em}
.order-details .item_qrcode svg{display:block;margin:0px auto;}
.order-details .weui-cell::before{border-top:none}
.want-tip{width:95%;position: fixed;bottom: 5px;left:2.5%;z-index:999}
.order-details .item_last::after{
content: " ";
position: absolute;
left: 5px;
bottom: 0;
right: 5px;
height: 1px;
border-bottom: 1px dashed red;
color: #e5e5e5;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transform: scaleY(.5);
transform: scaleY(.5);
z-index: 2;
}
.order-details .item_total{font-weight:900}
.order-details .item_total::after,.order-details .note-order::after{
content: " ";
position: absolute;
left: 0px;
bottom: 0;
right: 0px;
height: 1px;
border-bottom: 1px solid black;
color: #e5e5e5;
-webkit-transform-origin: 0 0;
transform-origin: 0 0;
-webkit-transform: scaleY(.5);
transform: scaleY(.5);
z-index: 2;
}
/*
* user
*/
.user-info .weui-cell_access .weui-cell__ft::after{border-color:#fff}
/*
*wallet
*/
.user-wallet{box-sizing: border-box;height: 100%;overflow: auto;-webkit-overflow-scrolling: touch;padding-bottom: 50px}
.user-wallet .weui-cells::before,.user-wallet .weui-cells::after{content:none}
.user-wallet .user-card{width:100%;border-radius:10px;}
.user-wallet .card-list{padding:0px 15px}
.user-wallet .card-list i{position:absolute;top:14px;right:8%;font-size:1.5em}
.user-wallet .user-card img{width:100%}
.user-wallet .user-card .card_num{position:absolute;top:45%;left:70%;font-size:0.8em;color:#fff}
.user-wallet .card-add{margin:0px 6px;height:140px;line-height:140px;width:100%;border-radius:10px;background-color:#F3F3F3}
.user-wallet .card-add i{font-size:2em;position:relative;top:4px}
/*
*user wallet_add
*/
.user-wallet-add{box-sizing: border-box;height: 100%;overflow: auto;-webkit-overflow-scrolling: touch;}
.user-wallet-add .weui-cells::before,.user-wallet-add .weui-cells::after{content:none}
.user-wallet-add-inputs .weui-cells__title{margin-top:1.77em}
.user-wallet-add-inputs .weui-cells{box-shadow:0px 4px 5px #ccc}
.user-wallet-add-inputs .add-card{margin-top:3em}
/*
*shopping cart
*/
.dine-take{margin-top:1.17647059em}
.dine-take .weui-flex__item:nth-child(2){margin-left:10%;}
/*左滑动删除css*/
.slidelefts {height: 100%;padding:0px;border-bottom: 1px solid #eee;}
.slidelefts>.weui-cell__bd {height: auto;overflow: hidden;position: relative;z-index: 10;background-color: #fff;padding: 10px 15px;}
.weui-cell>.weui-cell__bd.animated {-webkit-transition: -webkit-transform .2s ease-out;transition: transform .2s ease-out;}
.weui-cell .slideleft {height: 100%;display: -webkit-box;-webkit-box-pack: center;-webkit-box-align: center;position: absolute;top: 0;right: 0;z-index: 0;}
.weui-cell .slideleft span {height: 100%;padding: 0 10px;display: -webkit-box;-webkit-box-pack: center;-webkit-box-align: center;}
.slidelefts>.weui-cell__bd .weui-cell__bd{padding-left:0px}
.slidelefts .weui-cell{padding:0px} | 0.185615 | 0.033495 |
@import url(http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,700,500italic,900,700italic,900italic);
* {
font-family: 'Roboto', sans-serif;
line-height: 1.2;
vertical-align: middle;
outline: none;
}
body {
background: #222;
}
main {
display: block;
position: relative;
width: 30rem;
margin: 3vh auto;
padding: 1.5rem 0 0;
background: #d5d5d5;
outlineborder-radius: .25rem;
overflow: hidden;
transform: scale(0.75);
transform-origin: center 3rem;
transition: transform .3s;
}
body:hover main {
transform: scale(1);
}
header {
position: absolute;
z-index: 0;
top: 0;
left: 0;
right: 0;
height: 10rem;
transition: transform .5s, opacity .3s;
background: url(http://www.droid-life.com/wp-content/uploads/2013/01/googlenownewyork.png) center center;
background-size: cover;
}
input,
.card {
position: relative;
z-index: 2;
cursor: pointer;
}
.card {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.swipable {
z-index: 999;
background-color: red;
height: 99px;
width: 50px;
}
input.google {
display: block;
width: 26rem;
margin: 4.5rem 1rem 2rem;
border: 0;
font-size: 1.2rem;
padding: .75rem 1rem;
border-radius: 3px;
box-shadow: 0 1px 2px #aaa;
transition: 0.5s, margin-bottom 0.15s;
}
input[type="checkbox"] {
margin-left: 0px;
font-size: 20px;
}
input.todo:focus {
margin: 0 1rem 1rem;
outline: 0;
}
input.google:focus {
margin: 0 1rem 1rem;
outline: 0;
}
input.google:focus + header {
transform: translate3d(0, -10rem, 0);
opacity: 0;
}
.card {
padding: 1.5rem;
box-shadow: 0 1px 2px #aaa;
background: white;
margin: 0 1rem 1rem;
border-radius: 3px;
user-select: none;
animation: fly-in-from-left 0.5s 1s ease both;
transform-origin: top left;
}
.card:nth-child(even) {
animation-name: fly-in-from-right;
animation-delay: 1.1s;
transform-origin: top right;
}
@keyframes fly-in-from-left {
from {
transform: translateY(15rem) rotate(15deg);
opacity: 0;
}
}
@keyframes fly-in-from-right {
from {
transform: translateY(15rem) rotate(-15deg);
opacity: 0;
}
}
.card:after {
position: absolute;
font-size: .9rem;
top: 1.5rem;
right: 1rem;
/*content:"i";*/
border: thin solid gray;
color: gray;
width: 1rem;
line-height: 1rem;
text-align: center;
border-radius: 50%;
pointer-events: none;
}
h1 {
font-size: 2rem;
font-weight: 200;
}
strong {
font-weight: 300;
color: #539D00;
}
.hidden {
display: none;
}
h2 {
font-size: .9rem;
line-height: 2.5;
color: gray;
font-weight: 400;
}
.map {
height: 12rem;
background: whitesmoke;
margin: 0.5rem 0 0 -1.5rem;
width: 28rem;
}
.swiped {
display: none;
}
div.portfoliocard div.coverphoto {
width: 100%;
height: 220px;
background: url('http://farm8.staticflickr.com/7149/6484148411_baf8d2e934_z.jpg');
background-position: center center;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: inset 0px 3px 20px rgba(255, 255, 255, 0.3), 1px 0px 2px rgba(255, 255, 255, 0.7);
z-index: 99;
}
div.portfoliocard {
position: relative;
height: 500px;
width: 360px;
background: #ffffff;
border: 1px solid rgba(0, 0, 0, 0.7);
box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.1), 0px 2px 6px rgba(0, 0, 0, 0.5);
border-radius: 6px;
/* margin: 10% auto; */
text-align: left;
overflow: hidden;
z-index: 100;
display: inline-block;
margin: 5% 0px 10% 30px;
}
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.spec {
background-image: url('http://urbanfragment.files.wordpress.com/2012/10/mount-fuji-highest-mountain-in-japan-osx-lion-wallpaper.jpg');
}
.icon {
width: 32px;
height: 32px;
fill: #ccc;
}
.icon.is-check {
fill: #FE4365;
}
.icon.is-outlined {
stroke: #FE4365;
stroke-width: 2px;
fill: transparent;
}
.icon.is-x2 {
width: 64px;
height: 64px;
}
.icon.is-hoverable:hover {
fill: #FE4365;
cursor: pointer;
}
.icon.is-activeable:active {
transform: scale(1.25);
cursor: pointer;
}
.icon.is-pink--onhover:hover {
fill: pink;
}
.icon.is-transit {
-webkit-transition: all 0.35s ease-out;
-moz-transition: all 0.35s ease-out;
-ms-transition: all 0.35s ease-out;
-o-transition: all 0.35s ease-out;
transition: all 0.35s ease-out;
}
.icon {
font-family: monospace;
color: #0099CC;
}
.hearts {
position: relative;
left: 70%;
}
progress[value] {
/* Reset the default appearance */
-webkit-appearance: none;
appearance: none;
width: 250px;
height: 20px;
}
.progress-value {
display: -webkit-inline-box;
margin-left: 10px;
font-weight: 300;
}
/*
progress[value]::-webkit-progress-bar {
background-color: #eee;
border-radius: 2px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}
progress[value]::-webkit-progress-value {
background-image:
-webkit-linear-gradient(-45deg,
transparent 33%, rgba(0, 0, 0, .1) 33%,
rgba(0,0, 0, .1) 66%, transparent 66%),
-webkit-linear-gradient(top,
rgba(255, 255, 255, .25),
rgba(0, 0, 0, .25)),
-webkit-linear-gradient(left, #09c, #f44);
border-radius: 2px;
background-size: 35px 20px, 100% 100%, 100% 100%;
}
progress[value]::-webkit-progress-value::before {
content: '80%';
position: absolute;
right: 0;
top: -125%;
}
*/ | ui/style.css | @import url(http://fonts.googleapis.com/css?family=Roboto:400,100,100italic,300,300italic,400italic,500,700,500italic,900,700italic,900italic);
* {
font-family: 'Roboto', sans-serif;
line-height: 1.2;
vertical-align: middle;
outline: none;
}
body {
background: #222;
}
main {
display: block;
position: relative;
width: 30rem;
margin: 3vh auto;
padding: 1.5rem 0 0;
background: #d5d5d5;
outlineborder-radius: .25rem;
overflow: hidden;
transform: scale(0.75);
transform-origin: center 3rem;
transition: transform .3s;
}
body:hover main {
transform: scale(1);
}
header {
position: absolute;
z-index: 0;
top: 0;
left: 0;
right: 0;
height: 10rem;
transition: transform .5s, opacity .3s;
background: url(http://www.droid-life.com/wp-content/uploads/2013/01/googlenownewyork.png) center center;
background-size: cover;
}
input,
.card {
position: relative;
z-index: 2;
cursor: pointer;
}
.card {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.swipable {
z-index: 999;
background-color: red;
height: 99px;
width: 50px;
}
input.google {
display: block;
width: 26rem;
margin: 4.5rem 1rem 2rem;
border: 0;
font-size: 1.2rem;
padding: .75rem 1rem;
border-radius: 3px;
box-shadow: 0 1px 2px #aaa;
transition: 0.5s, margin-bottom 0.15s;
}
input[type="checkbox"] {
margin-left: 0px;
font-size: 20px;
}
input.todo:focus {
margin: 0 1rem 1rem;
outline: 0;
}
input.google:focus {
margin: 0 1rem 1rem;
outline: 0;
}
input.google:focus + header {
transform: translate3d(0, -10rem, 0);
opacity: 0;
}
.card {
padding: 1.5rem;
box-shadow: 0 1px 2px #aaa;
background: white;
margin: 0 1rem 1rem;
border-radius: 3px;
user-select: none;
animation: fly-in-from-left 0.5s 1s ease both;
transform-origin: top left;
}
.card:nth-child(even) {
animation-name: fly-in-from-right;
animation-delay: 1.1s;
transform-origin: top right;
}
@keyframes fly-in-from-left {
from {
transform: translateY(15rem) rotate(15deg);
opacity: 0;
}
}
@keyframes fly-in-from-right {
from {
transform: translateY(15rem) rotate(-15deg);
opacity: 0;
}
}
.card:after {
position: absolute;
font-size: .9rem;
top: 1.5rem;
right: 1rem;
/*content:"i";*/
border: thin solid gray;
color: gray;
width: 1rem;
line-height: 1rem;
text-align: center;
border-radius: 50%;
pointer-events: none;
}
h1 {
font-size: 2rem;
font-weight: 200;
}
strong {
font-weight: 300;
color: #539D00;
}
.hidden {
display: none;
}
h2 {
font-size: .9rem;
line-height: 2.5;
color: gray;
font-weight: 400;
}
.map {
height: 12rem;
background: whitesmoke;
margin: 0.5rem 0 0 -1.5rem;
width: 28rem;
}
.swiped {
display: none;
}
div.portfoliocard div.coverphoto {
width: 100%;
height: 220px;
background: url('http://farm8.staticflickr.com/7149/6484148411_baf8d2e934_z.jpg');
background-position: center center;
border-top-right-radius: 5px;
border-top-left-radius: 5px;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
box-shadow: inset 0px 3px 20px rgba(255, 255, 255, 0.3), 1px 0px 2px rgba(255, 255, 255, 0.7);
z-index: 99;
}
div.portfoliocard {
position: relative;
height: 500px;
width: 360px;
background: #ffffff;
border: 1px solid rgba(0, 0, 0, 0.7);
box-shadow: 0px -1px 3px rgba(0, 0, 0, 0.1), 0px 2px 6px rgba(0, 0, 0, 0.5);
border-radius: 6px;
/* margin: 10% auto; */
text-align: left;
overflow: hidden;
z-index: 100;
display: inline-block;
margin: 5% 0px 10% 30px;
}
.noselect {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.spec {
background-image: url('http://urbanfragment.files.wordpress.com/2012/10/mount-fuji-highest-mountain-in-japan-osx-lion-wallpaper.jpg');
}
.icon {
width: 32px;
height: 32px;
fill: #ccc;
}
.icon.is-check {
fill: #FE4365;
}
.icon.is-outlined {
stroke: #FE4365;
stroke-width: 2px;
fill: transparent;
}
.icon.is-x2 {
width: 64px;
height: 64px;
}
.icon.is-hoverable:hover {
fill: #FE4365;
cursor: pointer;
}
.icon.is-activeable:active {
transform: scale(1.25);
cursor: pointer;
}
.icon.is-pink--onhover:hover {
fill: pink;
}
.icon.is-transit {
-webkit-transition: all 0.35s ease-out;
-moz-transition: all 0.35s ease-out;
-ms-transition: all 0.35s ease-out;
-o-transition: all 0.35s ease-out;
transition: all 0.35s ease-out;
}
.icon {
font-family: monospace;
color: #0099CC;
}
.hearts {
position: relative;
left: 70%;
}
progress[value] {
/* Reset the default appearance */
-webkit-appearance: none;
appearance: none;
width: 250px;
height: 20px;
}
.progress-value {
display: -webkit-inline-box;
margin-left: 10px;
font-weight: 300;
}
/*
progress[value]::-webkit-progress-bar {
background-color: #eee;
border-radius: 2px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}
progress[value]::-webkit-progress-value {
background-image:
-webkit-linear-gradient(-45deg,
transparent 33%, rgba(0, 0, 0, .1) 33%,
rgba(0,0, 0, .1) 66%, transparent 66%),
-webkit-linear-gradient(top,
rgba(255, 255, 255, .25),
rgba(0, 0, 0, .25)),
-webkit-linear-gradient(left, #09c, #f44);
border-radius: 2px;
background-size: 35px 20px, 100% 100%, 100% 100%;
}
progress[value]::-webkit-progress-value::before {
content: '80%';
position: absolute;
right: 0;
top: -125%;
}
*/ | 0.368292 | 0.085824 |
body {
position: relative;
margin: 0;
}
.td-clock
{
width: 156px;
height: 156px;
border-radius: 100%;
margin: 0 auto;
text-align: center;
line-height: 156px;
position: absolute;
font-family: Arial, sans-serif;
outline: none;
display: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
color: #39D;
font-size: 16px;
text-shadow: 0 0 5px #369;
background-color: #123;
box-shadow: 0 0 0 1px #0AF,0 0 8px 3px rgba(0,127,255,0.5);
}
.td-clock:before
{
position: absolute;
content: "";
top: -10px;
margin-left: -10px;
left: 50%;
width: 20px;
height: 20px;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
background: #123;
border-left: 1px solid #0AF;
border-top: 1px solid #0AF;
border-top-left-radius: 4px;
}
.td-clock.drop-up:before
{
transform: rotate(225deg);
-webkit-transform: rotate(225deg);
top: auto;
bottom: -10px;
}
.td-clock.nodrop:before
{
display: none;
}
.td-clock.td-show
{
display: block;
}
.td-clock.inline
{
display: inline-block;
position: relative;
margin: 8px;
}
.td-clock,
.td-clock *
{
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-clock-wrap
{
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
}
.td-clock svg
{
stroke: #0CF;
}
.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-medirian
{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.td-medirian span
{
width: 80px;
height: 40px;
border-radius: 100%;
line-height: 40px;
text-align: center;
margin: 0;
position: absolute;
z-index: 1;
margin-left: -40px;
font-size: 1em;
opacity: 0;
font-weight: bold;
color: silver;
cursor: pointer;
}
.td-medirian .td-am,
.td-medirian .td-pm
{
top: 18%;
}
.td-medirian .td-am
{
left: 40%;
}
.td-medirian .td-pm
{
left: 60%;
}
.td-medirian .td-am.td-on,
.td-medirian .td-pm.td-on
{
left: 50%;
opacity: 0.8;
}
.td-medirian .td-now
{
font-size: 0.7em;
left: 50%;
bottom: 10%;
z-index: -1;
}
.td-medirian .td-now.td-on
{
bottom: 18%;
opacity: 0.3;
z-index: 2;
}
.td-medirian .td-on
{
z-index: 2;
}
.td-medirian .td-on:hover
{
opacity: 1;
text-shadow: 0 0 16px #9AD;
}
.td-dail
{
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
}
.td-dail.active
{
opacity: 0.8;
animation: td-pulse 4s ease-in-out infinite;
-webkit-animation: td-pulse 4s ease-in-out infinite;
}
.td-dail svg
{
position: absolute;
top: 0;
left: 0;
right: 0;
height: 32px;
}
.td-dail.active svg
{
cursor: pointer;
}
.td-dail .td-handle
{
position: absolute;
top: 4px;
left: 32px;
right: 32px;
bottom: 22px;
}
.td-dail .td-handle:after
{
position: absolute;
background: #234;
width: 24px;
height: 24px;
box-shadow: 0 0 10px #08C,inset 3px -5px 25px 1px #0DF;
border-radius: 100%;
top: 0;
left: 50%;
margin-left: -12px;
border-bottom-left-radius: 0;
content: "";
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
z-index: -1;
}
.td-clock .td-time
{
font-weight: bold;
position: relative;
}
.td-clock .td-time span
{
vertical-align: middle;
text-align: center;
margin: 5px;
position: relative;
z-index: 2;
cursor: pointer;
font-size: 2em;
opacity: 0.8;
}
.td-clock .td-time span:hover{
opacity: 1;
text-shadow: 0 0 24px #6AF;
}
.td-clock .td-time span.td-on
{
color: #8CF;
text-shadow: 0 0 5px #257;
animation: td-blink 1.5s linear infinite;
-webkit-animation: td-blink 1.5s linear infinite;
}
.td-clock .td-time span.td-on:hover{
opacity: 1;
text-shadow: 0 0 24px #ACE;
}
.td-n
{
-webkit-transition: all 0.5s cubic-bezier(.7,0,.175,1) 0s;
-moz-transition: all 0.5s cubic-bezier(.7,0,.175,1) 0s;
-ms-transition: all 0.5s cubic-bezier(.7,0,.175,1) 0s;
transition: all 0.5s cubic-bezier(.7,0,.175,1) 0s;
}
.td-n2
{
-webkit-transition: all 0.25s linear 0s;
-moz-transition: all 0.25s linear 0s;
-ms-transition: all 0.25s linear 0s;
transition: all 0.25s linear 0s;
}
/* effects */
@-webkit-keyframes td-bounce
{
10%
{
-webkit-transform: scale3d(1.1,0.9,1);
}
30%
{
-webkit-transform: scale3d(0.93,1.07,1);
}
50%
{
-webkit-transform: scale3d(1.05,0.95,1);
}
70%
{
-webkit-transform: scale3d(.97,1.03,1);
}
90%
{
-webkit-transform: scale3d(1.01,.99,1);
}
100%
{
-webkit-transform: scale3d(1,1,1);
}
}
@keyframes td-bounce
{
10%
{
transform: scale3d(1.1,0.9,1);
}
30%
{
transform: scale3d(0.93,1.07,1);
}
50%
{
transform: scale3d(1.05,0.95,1);
}
70%
{
transform: scale3d(.97,1.03,1);
}
90%
{
transform: scale3d(1.01,.99,1);
}
100%
{
transform: scale3d(1,1,1);
}
}
.td-drag
{
-webkit-transform: scale3d(0.93,1.07,1);
transform: scale3d(0.93,1.07,1);
}
.td-bounce
{
-webkit-animation: td-bounce .3s;
animation: td-bounce .3s;
}
@-webkit-keyframes td-alert
{
0%
{
-webkit-transform: scale3d(1,1,1);
}
10%,
20%
{
-webkit-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);
}
40%,
60%,
80%
{
-webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
}
100%
{
-webkit-transform: scale3d(1,1,1);
}
}
@keyframes td-alert
{
0%
{
transform: scale3d(1,1,1);
}
10%,
20%
{
transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
}
30%,
50%,
70%,
90%
{
transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
}
40%,
60%,
80%
{
transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
}
100%
{
transform: scale3d(1,1,1);
}
}
.td-alert
{
-webkit-animation: td-alert .8s both;
animation: td-alert .8s both;
}
@-webkit-keyframes td-fadein
{
0%
{
opacity: 0;
}
100%
{
opacity: 1;
}
}
@keyframes td-fadein
{
0%
{
opacity: 0;
}
100%
{
opacity: 1;
}
}
.td-fadein
{
-webkit-animation: td-fadein .3s;
animation: td-fadein .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-dropin
{
0%
{
opacity: 0;
-webkit-transform: perspective(200px) rotateX(60deg) translate3d(0,-48px,-64px);
}
50%
{
opacity: 0.5;
-webkit-transform: perspective(350px) rotateX(30deg) translate3d(0,-18px,-32px);
}
75%
{
opacity: 0.5;
-webkit-transform: perspective(425px) rotateX(15deg) translate3d(0,-6px,-16px);
}
100%
{
opacity: 1;
-webkit-transform: none;
}
}
@keyframes td-dropin
{
0%
{
opacity: 0;
transform: perspective(200px) rotateX(60deg) translate3d(0,-64px,-64px);
}
50%
{
opacity: 0.5;
transform: perspective(350px) rotateX(30deg) translate3d(0,-18px,-32px);
}
75%
{
opacity: 0.5;
transform: perspective(425px) rotateX(15deg) translate3d(0,-6px,-16px);
}
100%
{
opacity: 1;
transform: none;
}
}
.td-dropin
{
-webkit-animation: td-dropin 0.3s linear;
animation: td-dropin 0.3s linear;
-webkit-transform-origin: 50% ;
transform-origin: 50% 0;
}
.td-dropin.drop-up
{
-webkit-animation: td-dropin 0.3s linear;
animation: td-dropin 0.3s linear;
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
}
@-webkit-keyframes td-dropout
{
0%
{
opacity: 1;
-webkit-transform: none;
}
100%
{
opacity: 0;
-webkit-transform: perspective(200px) rotateX(-45deg) translate3d(0,32px,-48px);
}
}
@keyframes td-dropout
{
0%
{
opacity: 1;
transform: none;
}
100%
{
opacity: 0;
transform: perspective(200px) rotateX(-45deg) translate3d(0,32px,-48px);
}
}
.td-dropout
{
-webkit-animation: td-dropout .3s forwards;
animation: td-dropout .3s forwards;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
@-webkit-keyframes td-dropout-up
{
0%
{
opacity: 1;
-webkit-transform: none;
}
100%
{
opacity: 0;
-webkit-transform: perspective(200px) rotateX(45deg) translate3d(0,-32px,-48px);
}
}
@keyframes td-dropout-up
{
0%
{
opacity: 1;
transform: none;
}
100%
{
opacity: 0;
transform: perspective(200px) rotateX(45deg) translate3d(0,-32px,-48px);
}
}
.td-dropout.drop-up
{
-webkit-animation: td-dropout-up .3s forwards;
animation: td-dropout-up .3s forwards;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
@-webkit-keyframes td-blink
{
50%
{
opacity: 0.25;
}
}
@keyframes td-blink
{
50%
{
opacity: 0.25;
}
}
@-webkit-keyframes td-pulse
{
0%,
100%
{
opacity: 0.8;
}
50%
{
opacity: 0.5;
}
}
@keyframes td-pulse
{
0%,
100%
{
opacity: 0.8;
}
50%
{
opacity: 0.5;
}
}
.td-lancette
{
border: 2px solid #7AC;
border-radius: 100%;
margin: 8px;
opacity: 0.5;
box-shadow: 0 0 6px #39C,inset 0 0 32px 12px #003,inset 0 0 64px 16px #026;
}
.td-lancette,
.td-lancette div.td-pointer
{
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.td-lancette div.td-tick
{
position: absolute;
border: 1px solid #369;
box-shadow: 0 0 9px 1px #69C;
}
.td-lancette div.td-tick.td-rotate-0,
.td-lancette div.td-tick.td-rotate-30 ,
.td-lancette div.td-tick.td-rotate-60 ,
.td-lancette div.td-tick.td-rotate-180 ,
.td-lancette div.td-tick.td-rotate-210 ,
.td-lancette div.td-tick.td-rotate-240
{
height: 3px;
width: 0;
}
.td-lancette div.td-tick.td-rotate-0,
.td-lancette div.td-tick.td-rotate-180
{
height: 6px;
}
.td-lancette div.td-tick.td-rotate-90,
.td-lancette div.td-tick.td-rotate-120 ,
.td-lancette div.td-tick.td-rotate-150 ,
.td-lancette div.td-tick.td-rotate-270 ,
.td-lancette div.td-tick.td-rotate-300 ,
.td-lancette div.td-tick.td-rotate-330
{
height: 0;
width: 3px;
}
.td-lancette div.td-tick.td-rotate-90,
.td-lancette div.td-tick.td-rotate-270
{
width: 6px;
}
.td-lancette div.td-tick.td-rotate-0,
.td-lancette div.td-tick.td-rotate-90,
.td-lancette div.td-tick.td-rotate-180,
.td-lancette div.td-tick.td-rotate-270
{
border-color: #69C;
}
.td-lancette div.td-tick.td-rotate-30,
.td-lancette div.td-tick.td-rotate-120,
.td-lancette div.td-tick.td-rotate-210,
.td-lancette div.td-tick.td-rotate-300
{
transform: rotate(30deg);
-webkit-transform: rotate(30deg);
}
.td-lancette div.td-tick.td-rotate-60,
.td-lancette div.td-tick.td-rotate-150,
.td-lancette div.td-tick.td-rotate-240,
.td-lancette div.td-tick.td-rotate-330
{
transform: rotate(60deg);
-webkit-transform: rotate(60deg);
}
.td-lancette div.td-tick.td-rotate-0
{
top: 0;
left: 50%;
}
.td-lancette div.td-tick.td-rotate-30
{
right: 25%;
top: 6.3%;
}
.td-lancette div.td-tick.td-rotate-60
{
right: 6.9%;
top: 25%;
}
.td-lancette div.td-tick.td-rotate-90
{
right: 0;
top: 50%;
}
.td-lancette div.td-tick.td-rotate-120
{
right: 6.3%;
bottom: 25%;
}
.td-lancette div.td-tick.td-rotate-150
{
right: 25%;
bottom: 6.9%;
}
.td-lancette div.td-tick.td-rotate-180
{
bottom: 0;
left: 50%;
}
.td-lancette div.td-tick.td-rotate-210
{
left: 25%;
bottom: 6.3%;
}
.td-lancette div.td-tick.td-rotate-240
{
left: 6.9%;
bottom: 25%;
}
.td-lancette div.td-tick.td-rotate-270
{
left: 0;
top: 50%;
}
.td-lancette div.td-tick.td-rotate-300
{
left: 6.3%;
top: 25%;
}
.td-lancette div.td-tick.td-rotate-330
{
left: 25%;
top: 6.9%;
}
.td-lancette div.td-pointer:after
{
position: absolute;
top: 20px;
left: 50%;
margin-left: -1px;
width: 2px;
bottom: 50%;
border-radius: 100%;
background: #7AE;
content: "";
}
.td-lancette div.td-pointer.td-hr:after
{
top: 36px;
margin-left: -2px;
width: 4px;
}
.td-lancette div.td-pointer.td-on:after
{
background: #9FD;
animation: td-blink 1.5s linear infinite;
-webkit-animation: td-blink 1.5s linear infinite;
} | src/timedropper.slate.css | body {
position: relative;
margin: 0;
}
.td-clock
{
width: 156px;
height: 156px;
border-radius: 100%;
margin: 0 auto;
text-align: center;
line-height: 156px;
position: absolute;
font-family: Arial, sans-serif;
outline: none;
display: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
-o-user-select: none;
user-select: none;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
color: #39D;
font-size: 16px;
text-shadow: 0 0 5px #369;
background-color: #123;
box-shadow: 0 0 0 1px #0AF,0 0 8px 3px rgba(0,127,255,0.5);
}
.td-clock:before
{
position: absolute;
content: "";
top: -10px;
margin-left: -10px;
left: 50%;
width: 20px;
height: 20px;
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
background: #123;
border-left: 1px solid #0AF;
border-top: 1px solid #0AF;
border-top-left-radius: 4px;
}
.td-clock.drop-up:before
{
transform: rotate(225deg);
-webkit-transform: rotate(225deg);
top: auto;
bottom: -10px;
}
.td-clock.nodrop:before
{
display: none;
}
.td-clock.td-show
{
display: block;
}
.td-clock.inline
{
display: inline-block;
position: relative;
margin: 8px;
}
.td-clock,
.td-clock *
{
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-clock-wrap
{
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
overflow: hidden;
}
.td-clock svg
{
stroke: #0CF;
}
.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-medirian
{
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.td-medirian span
{
width: 80px;
height: 40px;
border-radius: 100%;
line-height: 40px;
text-align: center;
margin: 0;
position: absolute;
z-index: 1;
margin-left: -40px;
font-size: 1em;
opacity: 0;
font-weight: bold;
color: silver;
cursor: pointer;
}
.td-medirian .td-am,
.td-medirian .td-pm
{
top: 18%;
}
.td-medirian .td-am
{
left: 40%;
}
.td-medirian .td-pm
{
left: 60%;
}
.td-medirian .td-am.td-on,
.td-medirian .td-pm.td-on
{
left: 50%;
opacity: 0.8;
}
.td-medirian .td-now
{
font-size: 0.7em;
left: 50%;
bottom: 10%;
z-index: -1;
}
.td-medirian .td-now.td-on
{
bottom: 18%;
opacity: 0.3;
z-index: 2;
}
.td-medirian .td-on
{
z-index: 2;
}
.td-medirian .td-on:hover
{
opacity: 1;
text-shadow: 0 0 16px #9AD;
}
.td-dail
{
position: absolute;
z-index: 1;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
}
.td-dail.active
{
opacity: 0.8;
animation: td-pulse 4s ease-in-out infinite;
-webkit-animation: td-pulse 4s ease-in-out infinite;
}
.td-dail svg
{
position: absolute;
top: 0;
left: 0;
right: 0;
height: 32px;
}
.td-dail.active svg
{
cursor: pointer;
}
.td-dail .td-handle
{
position: absolute;
top: 4px;
left: 32px;
right: 32px;
bottom: 22px;
}
.td-dail .td-handle:after
{
position: absolute;
background: #234;
width: 24px;
height: 24px;
box-shadow: 0 0 10px #08C,inset 3px -5px 25px 1px #0DF;
border-radius: 100%;
top: 0;
left: 50%;
margin-left: -12px;
border-bottom-left-radius: 0;
content: "";
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
z-index: -1;
}
.td-clock .td-time
{
font-weight: bold;
position: relative;
}
.td-clock .td-time span
{
vertical-align: middle;
text-align: center;
margin: 5px;
position: relative;
z-index: 2;
cursor: pointer;
font-size: 2em;
opacity: 0.8;
}
.td-clock .td-time span:hover{
opacity: 1;
text-shadow: 0 0 24px #6AF;
}
.td-clock .td-time span.td-on
{
color: #8CF;
text-shadow: 0 0 5px #257;
animation: td-blink 1.5s linear infinite;
-webkit-animation: td-blink 1.5s linear infinite;
}
.td-clock .td-time span.td-on:hover{
opacity: 1;
text-shadow: 0 0 24px #ACE;
}
.td-n
{
-webkit-transition: all 0.5s cubic-bezier(.7,0,.175,1) 0s;
-moz-transition: all 0.5s cubic-bezier(.7,0,.175,1) 0s;
-ms-transition: all 0.5s cubic-bezier(.7,0,.175,1) 0s;
transition: all 0.5s cubic-bezier(.7,0,.175,1) 0s;
}
.td-n2
{
-webkit-transition: all 0.25s linear 0s;
-moz-transition: all 0.25s linear 0s;
-ms-transition: all 0.25s linear 0s;
transition: all 0.25s linear 0s;
}
/* effects */
@-webkit-keyframes td-bounce
{
10%
{
-webkit-transform: scale3d(1.1,0.9,1);
}
30%
{
-webkit-transform: scale3d(0.93,1.07,1);
}
50%
{
-webkit-transform: scale3d(1.05,0.95,1);
}
70%
{
-webkit-transform: scale3d(.97,1.03,1);
}
90%
{
-webkit-transform: scale3d(1.01,.99,1);
}
100%
{
-webkit-transform: scale3d(1,1,1);
}
}
@keyframes td-bounce
{
10%
{
transform: scale3d(1.1,0.9,1);
}
30%
{
transform: scale3d(0.93,1.07,1);
}
50%
{
transform: scale3d(1.05,0.95,1);
}
70%
{
transform: scale3d(.97,1.03,1);
}
90%
{
transform: scale3d(1.01,.99,1);
}
100%
{
transform: scale3d(1,1,1);
}
}
.td-drag
{
-webkit-transform: scale3d(0.93,1.07,1);
transform: scale3d(0.93,1.07,1);
}
.td-bounce
{
-webkit-animation: td-bounce .3s;
animation: td-bounce .3s;
}
@-webkit-keyframes td-alert
{
0%
{
-webkit-transform: scale3d(1,1,1);
}
10%,
20%
{
-webkit-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);
}
40%,
60%,
80%
{
-webkit-transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
}
100%
{
-webkit-transform: scale3d(1,1,1);
}
}
@keyframes td-alert
{
0%
{
transform: scale3d(1,1,1);
}
10%,
20%
{
transform: scale3d(.9,.9,.9) rotate3d(0,0,1,-3deg);
}
30%,
50%,
70%,
90%
{
transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);
}
40%,
60%,
80%
{
transform: scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);
}
100%
{
transform: scale3d(1,1,1);
}
}
.td-alert
{
-webkit-animation: td-alert .8s both;
animation: td-alert .8s both;
}
@-webkit-keyframes td-fadein
{
0%
{
opacity: 0;
}
100%
{
opacity: 1;
}
}
@keyframes td-fadein
{
0%
{
opacity: 0;
}
100%
{
opacity: 1;
}
}
.td-fadein
{
-webkit-animation: td-fadein .3s;
animation: td-fadein .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-dropin
{
0%
{
opacity: 0;
-webkit-transform: perspective(200px) rotateX(60deg) translate3d(0,-48px,-64px);
}
50%
{
opacity: 0.5;
-webkit-transform: perspective(350px) rotateX(30deg) translate3d(0,-18px,-32px);
}
75%
{
opacity: 0.5;
-webkit-transform: perspective(425px) rotateX(15deg) translate3d(0,-6px,-16px);
}
100%
{
opacity: 1;
-webkit-transform: none;
}
}
@keyframes td-dropin
{
0%
{
opacity: 0;
transform: perspective(200px) rotateX(60deg) translate3d(0,-64px,-64px);
}
50%
{
opacity: 0.5;
transform: perspective(350px) rotateX(30deg) translate3d(0,-18px,-32px);
}
75%
{
opacity: 0.5;
transform: perspective(425px) rotateX(15deg) translate3d(0,-6px,-16px);
}
100%
{
opacity: 1;
transform: none;
}
}
.td-dropin
{
-webkit-animation: td-dropin 0.3s linear;
animation: td-dropin 0.3s linear;
-webkit-transform-origin: 50% ;
transform-origin: 50% 0;
}
.td-dropin.drop-up
{
-webkit-animation: td-dropin 0.3s linear;
animation: td-dropin 0.3s linear;
-webkit-transform-origin: 50% 100%;
transform-origin: 50% 100%;
}
@-webkit-keyframes td-dropout
{
0%
{
opacity: 1;
-webkit-transform: none;
}
100%
{
opacity: 0;
-webkit-transform: perspective(200px) rotateX(-45deg) translate3d(0,32px,-48px);
}
}
@keyframes td-dropout
{
0%
{
opacity: 1;
transform: none;
}
100%
{
opacity: 0;
transform: perspective(200px) rotateX(-45deg) translate3d(0,32px,-48px);
}
}
.td-dropout
{
-webkit-animation: td-dropout .3s forwards;
animation: td-dropout .3s forwards;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
@-webkit-keyframes td-dropout-up
{
0%
{
opacity: 1;
-webkit-transform: none;
}
100%
{
opacity: 0;
-webkit-transform: perspective(200px) rotateX(45deg) translate3d(0,-32px,-48px);
}
}
@keyframes td-dropout-up
{
0%
{
opacity: 1;
transform: none;
}
100%
{
opacity: 0;
transform: perspective(200px) rotateX(45deg) translate3d(0,-32px,-48px);
}
}
.td-dropout.drop-up
{
-webkit-animation: td-dropout-up .3s forwards;
animation: td-dropout-up .3s forwards;
-webkit-transform-origin: 50% 50%;
transform-origin: 50% 50%;
}
@-webkit-keyframes td-blink
{
50%
{
opacity: 0.25;
}
}
@keyframes td-blink
{
50%
{
opacity: 0.25;
}
}
@-webkit-keyframes td-pulse
{
0%,
100%
{
opacity: 0.8;
}
50%
{
opacity: 0.5;
}
}
@keyframes td-pulse
{
0%,
100%
{
opacity: 0.8;
}
50%
{
opacity: 0.5;
}
}
.td-lancette
{
border: 2px solid #7AC;
border-radius: 100%;
margin: 8px;
opacity: 0.5;
box-shadow: 0 0 6px #39C,inset 0 0 32px 12px #003,inset 0 0 64px 16px #026;
}
.td-lancette,
.td-lancette div.td-pointer
{
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
}
.td-lancette div.td-tick
{
position: absolute;
border: 1px solid #369;
box-shadow: 0 0 9px 1px #69C;
}
.td-lancette div.td-tick.td-rotate-0,
.td-lancette div.td-tick.td-rotate-30 ,
.td-lancette div.td-tick.td-rotate-60 ,
.td-lancette div.td-tick.td-rotate-180 ,
.td-lancette div.td-tick.td-rotate-210 ,
.td-lancette div.td-tick.td-rotate-240
{
height: 3px;
width: 0;
}
.td-lancette div.td-tick.td-rotate-0,
.td-lancette div.td-tick.td-rotate-180
{
height: 6px;
}
.td-lancette div.td-tick.td-rotate-90,
.td-lancette div.td-tick.td-rotate-120 ,
.td-lancette div.td-tick.td-rotate-150 ,
.td-lancette div.td-tick.td-rotate-270 ,
.td-lancette div.td-tick.td-rotate-300 ,
.td-lancette div.td-tick.td-rotate-330
{
height: 0;
width: 3px;
}
.td-lancette div.td-tick.td-rotate-90,
.td-lancette div.td-tick.td-rotate-270
{
width: 6px;
}
.td-lancette div.td-tick.td-rotate-0,
.td-lancette div.td-tick.td-rotate-90,
.td-lancette div.td-tick.td-rotate-180,
.td-lancette div.td-tick.td-rotate-270
{
border-color: #69C;
}
.td-lancette div.td-tick.td-rotate-30,
.td-lancette div.td-tick.td-rotate-120,
.td-lancette div.td-tick.td-rotate-210,
.td-lancette div.td-tick.td-rotate-300
{
transform: rotate(30deg);
-webkit-transform: rotate(30deg);
}
.td-lancette div.td-tick.td-rotate-60,
.td-lancette div.td-tick.td-rotate-150,
.td-lancette div.td-tick.td-rotate-240,
.td-lancette div.td-tick.td-rotate-330
{
transform: rotate(60deg);
-webkit-transform: rotate(60deg);
}
.td-lancette div.td-tick.td-rotate-0
{
top: 0;
left: 50%;
}
.td-lancette div.td-tick.td-rotate-30
{
right: 25%;
top: 6.3%;
}
.td-lancette div.td-tick.td-rotate-60
{
right: 6.9%;
top: 25%;
}
.td-lancette div.td-tick.td-rotate-90
{
right: 0;
top: 50%;
}
.td-lancette div.td-tick.td-rotate-120
{
right: 6.3%;
bottom: 25%;
}
.td-lancette div.td-tick.td-rotate-150
{
right: 25%;
bottom: 6.9%;
}
.td-lancette div.td-tick.td-rotate-180
{
bottom: 0;
left: 50%;
}
.td-lancette div.td-tick.td-rotate-210
{
left: 25%;
bottom: 6.3%;
}
.td-lancette div.td-tick.td-rotate-240
{
left: 6.9%;
bottom: 25%;
}
.td-lancette div.td-tick.td-rotate-270
{
left: 0;
top: 50%;
}
.td-lancette div.td-tick.td-rotate-300
{
left: 6.3%;
top: 25%;
}
.td-lancette div.td-tick.td-rotate-330
{
left: 25%;
top: 6.9%;
}
.td-lancette div.td-pointer:after
{
position: absolute;
top: 20px;
left: 50%;
margin-left: -1px;
width: 2px;
bottom: 50%;
border-radius: 100%;
background: #7AE;
content: "";
}
.td-lancette div.td-pointer.td-hr:after
{
top: 36px;
margin-left: -2px;
width: 4px;
}
.td-lancette div.td-pointer.td-on:after
{
background: #9FD;
animation: td-blink 1.5s linear infinite;
-webkit-animation: td-blink 1.5s linear infinite;
} | 0.319652 | 0.056914 |
@import "cs-editor-switch";
@import "cs-mode-button";
@import "cs-create-button";
@import "cs-insert-button";
@import "cs-active-composition-panel";
@import "cs-composition-panel-header";
@import "cs-version-control";
@import "cs-field-editor";
@import "cs-collapsible-section";
.cardstack-toolbox {
position: relative;
min-height: 100vh;
/* no margin collapse */
/* padding-top: 0.1px;
padding-bottom: 0.1px;
padding-left: 1px; */
padding: 15px 15px 15px 50px;
}
.cardstack-toolbox-width {
width: 24rem;
}
.cs-create-menu {
min-height: 10rem;
background-color: var(--normal-background);
color: var(--bright-foreground);
border: 1px solid var(--light05);
border-radius: 20px;
box-shadow: 0 2px 15px 0 var(--dark50);
}
.cs-create-menu > ul {
list-style-type: none;
line-height: 2em;
overflow-y: scroll;
padding: .25em 1em;
margin: 0;
max-height: calc(100vh - 3rem - 42px);
}
.cs-create-menu > ul > li {
overflow: hidden;
margin: 1em 0;
color: #7d7d7d;
font-size: 12px;
font-weight: 100;
cursor: pointer;
}
.cs-create-menu > ul > li:hover {
color: var(--deep-background);
}
.cs-create-menu > ul > li > button {
float: right;
padding: 0.5em 2.5em;
font-size: 0.75rem;
background-color: #F2F2F2;
border: 1px solid #cacaca;
color: #737373;
border-radius: 3px;
text-decoration: none;
cursor: pointer;
font-weight: normal;
font-family: inherit;
outline-width: 0;
}
.cs-create-menu > header {
padding: 1em 1em 0.833em;
font-size: 0.75rem;
user-select: none;
cursor: default;
height: 3rem;
}
.cs-create-menu > ul > li:hover > button {
border-color: #292A2C;
color: #292A2C;
}
.cs-placeholder-create {
display: flex;
justify-content: flex-end;
}
.cs-placeholder-create > button {
line-height: 1.5em;
margin: 0.5em 0.3em;
padding: .4em 1.4em .4em;
border: none;
border-radius: 4px;
background-color: var(--bright-foreground);
font-size: .8em;
cursor: pointer;
outline-width: 0;
}
.cs-placeholder-create > button:hover {
background-color: var(--light-foreground);
} | packages/tools/addon/styles/cardstack-toolbox.css | @import "cs-editor-switch";
@import "cs-mode-button";
@import "cs-create-button";
@import "cs-insert-button";
@import "cs-active-composition-panel";
@import "cs-composition-panel-header";
@import "cs-version-control";
@import "cs-field-editor";
@import "cs-collapsible-section";
.cardstack-toolbox {
position: relative;
min-height: 100vh;
/* no margin collapse */
/* padding-top: 0.1px;
padding-bottom: 0.1px;
padding-left: 1px; */
padding: 15px 15px 15px 50px;
}
.cardstack-toolbox-width {
width: 24rem;
}
.cs-create-menu {
min-height: 10rem;
background-color: var(--normal-background);
color: var(--bright-foreground);
border: 1px solid var(--light05);
border-radius: 20px;
box-shadow: 0 2px 15px 0 var(--dark50);
}
.cs-create-menu > ul {
list-style-type: none;
line-height: 2em;
overflow-y: scroll;
padding: .25em 1em;
margin: 0;
max-height: calc(100vh - 3rem - 42px);
}
.cs-create-menu > ul > li {
overflow: hidden;
margin: 1em 0;
color: #7d7d7d;
font-size: 12px;
font-weight: 100;
cursor: pointer;
}
.cs-create-menu > ul > li:hover {
color: var(--deep-background);
}
.cs-create-menu > ul > li > button {
float: right;
padding: 0.5em 2.5em;
font-size: 0.75rem;
background-color: #F2F2F2;
border: 1px solid #cacaca;
color: #737373;
border-radius: 3px;
text-decoration: none;
cursor: pointer;
font-weight: normal;
font-family: inherit;
outline-width: 0;
}
.cs-create-menu > header {
padding: 1em 1em 0.833em;
font-size: 0.75rem;
user-select: none;
cursor: default;
height: 3rem;
}
.cs-create-menu > ul > li:hover > button {
border-color: #292A2C;
color: #292A2C;
}
.cs-placeholder-create {
display: flex;
justify-content: flex-end;
}
.cs-placeholder-create > button {
line-height: 1.5em;
margin: 0.5em 0.3em;
padding: .4em 1.4em .4em;
border: none;
border-radius: 4px;
background-color: var(--bright-foreground);
font-size: .8em;
cursor: pointer;
outline-width: 0;
}
.cs-placeholder-create > button:hover {
background-color: var(--light-foreground);
} | 0.336549 | 0.074164 |
.profile-container{
margin-top: 20px;
font-size: 1.1em;
}
.profile-header{
display: flex;
align-items: center;
justify-content: center;
border-bottom: 1px solid #ededed;
}
.profile-header a{
padding: 20px 20px;
text-decoration: none;
color: black;
}
.selected{
border-bottom: 1px solid red;
}
.profile-body{
padding-top: 15px;
padding-left: 15%;
padding-right: 15%;
display: flex;
}
.profile-bio{
text-align: center;
width: 25%;
}
.bio-image{
position: relative;
cursor: hand;
}
.overlay-image{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0;
}
.bio-image:hover{
opacity: 0.5;
}
.bio-image:hover .overlay-image{
opacity: 1;
}
.contact-box{
margin: auto;
margin-top: 20px;
width: fit-content;
}
.contact-edit-box{
margin: auto;
margin-top: 20px;
width: fit-content;
display: none;
}
.icon-col{
text-align: center;
padding-top: 5px;
padding-bottom: 5px;
}
.profile-detail{
width: 75%;
padding: 25px 100px 100px 50px;
position: relative;
}
.add-btn{
width: fit-content;
color: blue;
margin-left: auto;
}
.add-btn:hover{
cursor: hand;
text-decoration: underline;
}
.hide{
display: none;
}
.show{
display: block;
}
.add-profile-form{
width: 90%;
}
.add-profile-form td{
padding: 5px 0;
}
.form-input{
height: 30px;
width: 100%;
padding-left: 10px;
}
.form-btn-box{
margin-top: 30px;
text-align: right;
}
.error-msg{
color: red;
font-size: 0.7em;
margin-left: 30%;
margin-top: 5px;
}
.row{
display: flex;
align-items: center;
margin-top: 10px;
}
.col-25{
width: 30%;
}
.col-75{
width: 70%;
}
.row-1, .row-2, .row-3{
display: flex;
align-items: center;
position: relative;
}
.col-20{
width: 20%;
}
.col-30{
width: 30%;
}
.col-40{
width: 40%;
}
.COL-60{
width: 60%;
}
.col-70{
width: 70%;
}
.col-80{
width: 80%;
}
.delete-btn{
position: absolute;
right: 0;
color: blue;
}
.delete-btn:hover{
text-decoration: underline;
cursor: hand;
}
.experience-table{
margin-top: 20px;
font-size: 0.8em;
} | public/css/candidate/profile.css | .profile-container{
margin-top: 20px;
font-size: 1.1em;
}
.profile-header{
display: flex;
align-items: center;
justify-content: center;
border-bottom: 1px solid #ededed;
}
.profile-header a{
padding: 20px 20px;
text-decoration: none;
color: black;
}
.selected{
border-bottom: 1px solid red;
}
.profile-body{
padding-top: 15px;
padding-left: 15%;
padding-right: 15%;
display: flex;
}
.profile-bio{
text-align: center;
width: 25%;
}
.bio-image{
position: relative;
cursor: hand;
}
.overlay-image{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
opacity: 0;
}
.bio-image:hover{
opacity: 0.5;
}
.bio-image:hover .overlay-image{
opacity: 1;
}
.contact-box{
margin: auto;
margin-top: 20px;
width: fit-content;
}
.contact-edit-box{
margin: auto;
margin-top: 20px;
width: fit-content;
display: none;
}
.icon-col{
text-align: center;
padding-top: 5px;
padding-bottom: 5px;
}
.profile-detail{
width: 75%;
padding: 25px 100px 100px 50px;
position: relative;
}
.add-btn{
width: fit-content;
color: blue;
margin-left: auto;
}
.add-btn:hover{
cursor: hand;
text-decoration: underline;
}
.hide{
display: none;
}
.show{
display: block;
}
.add-profile-form{
width: 90%;
}
.add-profile-form td{
padding: 5px 0;
}
.form-input{
height: 30px;
width: 100%;
padding-left: 10px;
}
.form-btn-box{
margin-top: 30px;
text-align: right;
}
.error-msg{
color: red;
font-size: 0.7em;
margin-left: 30%;
margin-top: 5px;
}
.row{
display: flex;
align-items: center;
margin-top: 10px;
}
.col-25{
width: 30%;
}
.col-75{
width: 70%;
}
.row-1, .row-2, .row-3{
display: flex;
align-items: center;
position: relative;
}
.col-20{
width: 20%;
}
.col-30{
width: 30%;
}
.col-40{
width: 40%;
}
.COL-60{
width: 60%;
}
.col-70{
width: 70%;
}
.col-80{
width: 80%;
}
.delete-btn{
position: absolute;
right: 0;
color: blue;
}
.delete-btn:hover{
text-decoration: underline;
cursor: hand;
}
.experience-table{
margin-top: 20px;
font-size: 0.8em;
} | 0.571408 | 0.071721 |
html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
overflow-x: hidden;
color: yellow;
font-family: heavy_data, arial, sans-serif;
}
#logo {
height: 40px;
width: 40;
padding-top: 5px;
float:left;
border-radius: 8px;
}
#userM {
margin: auto;
position: fixed;
top: 13%;
left: 1%;
color: yellow;
font-size: 2.5em;
text-align: center !important;
width: 100%;
}
#userScreen {
position: fixed;
top: 20%;
left: 40.5%;
height: 200px;
width: 400px;
padding-top: 5px;
opacity: 0.75;
text-align: center;
background-color: rgb(0,34,7);
border-style:solid;
border-color: black;
border-width: 5px;
}
nav {
position: fixed !important;
width: 110%;
margin-top: -15px;
margin-left: -15px;
height: 60px;
opacity: 0.75;
background-color: rgb(0,34,7);
border-style:solid;
border-color: black;
border-width: 5px;
}
#navi {
position: fixed !important;
left: 2.9%;
width: 100%;
}
#loginBorder {
z-index: -1;
position: fixed;
left: 43%;
top: 59.5%;
width: 300px;
height: 335px;
opacity: 0.6;
background-color: rgb(0,34,7);
pointer-events: none;
}
#border2 {
z-index: -1;
position: fixed;
left: 43% !important;
top: 59.5% !important;
pointer-events: none;
}
#borderOther {
z-index: -1;
position: fixed;
left: 39.4%;
top: 9.8%;
width: 450px;
height: 750px;
opacity: 0.6;
background-color: rgb(0,34,7);
pointer-events: none;
}
#borderSide {
position: fixed;
left: 33.5%;
top: 11.8%;
height: 400px;
pointer-events: none;
}
#borderSideBack {
position: fixed;
left: 33.5%;
top: 11.8%;
height: 400px;
width: 665px;
opacity: 0.6;
background-color: rgb(0,34,7);
}
#border3 {
z-index: -1;
position: fixed;
width: 450px;
left: 39.4% !important;
top: 9.8% !important;
pointer-events: none;
}
#borderOther4 {
z-index: -1;
position: fixed;
left: 62.4%;
top: 9.8%;
width: 450px;
height: 750px;
opacity: 0.6;
background-color: rgb(0,34,7);
pointer-events: none;
}
#borderOther5 {
z-index: -1;
position: fixed;
left: 16.4%;
top: 9.8%;
width: 450px;
height: 750px;
opacity: 0.6;
background-color: rgb(0,34,7);
pointer-events: none;
}
#borderOther6 {
z-index: -1;
position: fixed;
left: 39.4%;
top: 9.8%;
width: 450px;
height: 750px;
opacity: 0.6;
background-color: rgb(0,34,7);
pointer-events: none;
}
#border4 {
z-index: -1;
position: fixed;
width: 450px;
left: 62.4% !important;
top: 9.8% !important;
pointer-events: none;
}
#border5 {
z-index: -1;
position: fixed;
width: 450px;
left: 16.4% !important;
top: 9.8% !important;
pointer-events: none;
}
#border6 {
z-index: -1;
position: fixed;
width: 450px;
left: 39.4% !important;
top: 9.8% !important;
pointer-events: none;
}
#machine1 {
z-index: -1;
position: fixed;
width: 410px;
left: 63% !important;
top: 9.8% !important;
opacity: .85;
pointer-events: none;
}
#machine2 {
z-index: -1;
position: fixed;
width: 450px;
left: 16.4% !important;
top: 9.8% !important;
opacity: .85;
pointer-events: none;
}
#digital1 {
z-index: -2;
position: fixed;
transform: scale(-1, 1);
left: 62.4% !important;
top: 9.8% !important;
opacity: .5;
pointer-events: none;
}
#digital2 {
z-index: -2;
position: fixed;
left: 16.4% !important;
top: 9.8% !important;
opacity: .5;
pointer-events: none;
}
#tiny {
position:fixed;
top:0%;
font-size:0.7em;
}
#art {
z-index: -2;
position: fixed;
left: 31.6%;
top: 4%;
width: 700px;
border-style:solid;
border-color: black;
border-width: 15px;
background-color: rgb(0,34,7);
opacity: 0.8;
pointer-events: none;
}
nav:nth-child(1) {
padding-left: 75px;
}
.navlink {
padding-top: 12px;
padding-left: 10%;
color: white;
font-size: 1.3em;
float: left;
outline: none;
}
.navlink a, .navlink a:link, .navlink a:visited, .navlink a:hover, .navlink a:active {
color: white;
text-decoration: none;
padding: 5px;
border-radius: 4px;
transition: color 2s ease;
}
.navlink a:focus {
text-decoration: none;
padding: 5px;
border-radius: 4px;
color: yellow;
transition: color 0.4s ease;
}
.statsForm {
height: 35px;
width: 900px;
margin-top:0px;
padding-top:0px;
}
.statsForm label {
display: inline-block;
width: 75px;
margin-left: 10px;
font-size: 1.2em;
float: left;
color: white;
}
.mainForm {
position: fixed;
top: 66.5%;
left: 41.6%;
z-index: 3;
height: 300px;
width: 350px;
margin: 0 auto;
font-size: 1.2em;
}
.mainForm h3 {
text-align: center;
}
.mainForm label {
z-index: 3;
display: inline-block;
width: 150px;
margin-right: 10px;
text-align: right;
font-size: 1.2em;
}
.formSubmit {
z-index: 3;
transition: background-color 0.4s ease;
display: block;
text-align: center;
margin: 0 auto;
margin-top: 14px;
font-size: 1.2em;
width: 100px;
background-color: #5c0e05;
border-radius: 2px;
border-color: black;
padding: 3px 0px;
color: white;
font-family: heavy_data;
text-decoration: none;
}
.formSubmit:focus, .formSubmit:link, .formSubmit:visited, .formSubmit:hover, .formSubmit:active {
color: white;
outline:0;
}
.formSubmit:hover {
transition: background-color 0.4s ease;
background-color: #d1d1d1;
}
.formSubmit2 {
z-index: 3;
transition: background-color 0.4s ease;
display: block;
text-align: center;
margin: 0 auto;
margin-top: -25px;
margin-bottom: 30px;
font-size: 1.5em;
width: 150px;
background-color: #5c0e05;
border-radius: 2px;
border-color: black;
padding: 3px 0px;
color: white;
font-family: heavy_data;
text-decoration: none;
}
.formSubmit2:focus, .formSubmit:link, .formSubmit:visited, .formSubmit:hover, .formSubmit:active {
color: white;
outline:0;
}
.formSubmit2:hover {
transition: background-color 0.4s ease;
background-color: #d1d1d1;
}
.buttonBlock {
margin: 0 auto;
margin-left: 50px;
}
.formSubmit3 {
z-index: 3;
transition: background-color 0.4s ease;
display: inline;
text-align: center;
margin: 0 auto;
margin-top: -25px;
margin-bottom: 10px;
font-size: 1.2em;
width: 80px;
background-color: #5c0e05;
border-radius: 2px;
border-color: black;
padding: 3px 0px;
color: white;
font-family: heavy_data;
text-decoration: none;
}
.formSubmit3:focus, .formSubmit:link, .formSubmit:visited, .formSubmit:hover, .formSubmit:active {
color: white;
outline:0;
}
.formSubmit3:hover {
transition: background-color 0.4s ease;
background-color: #d1d1d1;
}
#user, #pass, #pass2, #oldPass{
z-index: 3;
text-align: center;
font-size: 1.1em;
width: 150px;
background-color: #d1d1d1;
color: #5c0e05;
border-radius: 6px;
}
#user:focus, #pass:focus, #pass2:focus {
outline: none;
box-shadow: 0px 0px 1px 1px #55acee;
}
#mainMessage {
position: fixed;
top: 61.7%;
left: 45%;
text-align: center;
font-size: 1.6em;
font-weight: bold;
color: #c7c7a1;
font-style: italic;
width: 220px;
}
#errorMessage {
position: fixed;
top: 87.5%;
left: 45%;
text-align: center;
font-size: 1.2em;
font-weight: bold;
color: Yellow;
font-style: italic;
width: 220px;
}
#modsDivv2 {
position: fixed !important;
top: 15%;
left: 40.8%;
min-width: 400px;
margin: 0 auto;
text-align: center;
line-height: 0em;
font-size: 1.5em;
margin: 0 auto;
padding-bottom: 0px;
color: white !important;
}
#statss {
position: fixed !important;
top: 8%;
left: 40%;
min-width: 400px;
margin: 0 auto;
color: white !important;
}
.stats {
width: 400px;
margin: 0 auto;
margin-top: 2px;
margin-bottom: 2px;
text-align: center;
padding: 10px;
min-height:60px;
overflow: hidden;
}
img.statsFace {
margin-left: 25px;
margin-right: 10px;
height: 60px;
width: 120px;
border-radius: 4px;
margin-top: 21px;
float:left;
pointer-events: none;
}
img.scoreFace {
margin-left: 20px;
margin-top: 5px;
height: 80px;
opacity: .8;
pointer-events: none;
}
.scoreType {
position: fixed;
margin-top: -140px;
margin-left: 120px;
height: 60px;
}
#profile {
z-index:1;
position: fixed;
top: 21%;
left: 41%;
height: 100px;
width: 100px;
pointer-events: none;
}
#proff {
z-index:1;
position: fixed;
top: 43%;
left: 42%;
font-size: 1.5em;
text-align: center;
}
.profilePic {
height: 200px;
width: 392px;
pointer-events: none;
}
.labled {
font-size: 3em !important;
color: #c7c7a1 !important;
}
.labled2 {
color: yellow !important;
}
.labled3 {
position: fixed !important;
margin-left: -150px;
margin-top: 24px;
color: #c7c7a1 !important;
}
.labled4 {
margin-left: 3px;
font-size: .6em !important;
color: gray !important;
}
.scoreList {
position: fixed !important;
top: 25%;
left: 40%;
}
.score {
width: 400px;
margin: 0 auto;
margin-top: 15px;
margin-bottom: 2px;
min-height:60px;
overflow: hidden;
color: white !important;
}
#scores {
}
h3.emptyStats {
width: 400px;
font-size: 1.5em;
margin: 0 auto;
text-align: center;
margin-top: 18px;
}
.stats:first-child {
margin-top: 10px;
}
.stats:last-child {
margin-bottom:10px;
}
#canvasBack {
top: -10%;
left: -10%;
width: 120%;
height: 120%;
position: fixed;
z-index: -5;
pointer-events: none;
}
#ribbon {
position: fixed;
opacity: 0.75;
top: .1%;
left: calc(50% - 29px) !important;
z-index: -1;
}
#gameButton {
font-size: 1.8em !important;
top: -15px;
left: -10px;
outline: none !important;
}
#loginButton {
position: fixed;
left: 31.5% !important;
font-size: 1.5em !important;
outline: none !important;
}
#signupButton {
position: fixed;
left: 63.5% !important;
font-size: 1.5em !important;
}
#moreContent {
position: fixed !important;
top: 10% !important;
left: 40% !important;
}
.disabledLink {
color: red !important;
text-decoration : none;
pointer-events: none;
cursor: default;
}
canvas{border:1px solid gray;}
#audioControls{ display:none;}
@font-face {
font-family: heavy_data;
src: url(media/heavy_data.ttf);
}
#videoPos {
position: absolute;
margin: auto;
left: calc(25% + 1px);
top: 10%;
z-index: 2;
}
#videoPos2 {
position: absolute;
margin: auto;
left: calc(25% + 1px);
top: 10%;
z-index: -2;
}
#videoPos3 {
position: absolute;
margin: auto;
left: calc(25% + 330px);
top: calc(10% + 275px);
z-index: -2;
}
#videoPos4 {
position: absolute;
margin: auto;
left: calc(25% + 1px);
top: 10%;
z-index: -2;
}
#border {
position: absolute;
margin: auto;
left: 25%;
top: calc(10% + 310px);
z-index: 5;
}
#bigBorder {
position: absolute;
margin: auto;
left: calc(25% - 5px);
top: 10%;
z-index: 7;
}
#smallBar1 {
position: absolute;
margin: auto;
left: calc(25% + 690px);
top: calc(10% + 314px);
z-index: 3;
}
#smallBar2 {
position: absolute;
margin: auto;
left: calc(25% + 325px);
top: calc(10% + 314px);
z-index: 3;
}
#bar {
position: absolute;
margin: auto;
top: 10%;
left: calc(25% + 1px);
z-index: -2;
}
#trueTop {
position: absolute;
margin: auto;
top: 10%;
left: 25%;
z-index: 7;
}
#top {
position: absolute;
margin: auto;
top: 10%;
left: 25%;
z-index: 6;
}
#main {
position: absolute;
margin: auto;
top: 10%;
left: 25%;
z-index: 1;
}
#canvas1 {
position:absolute;
z-index: 1;
}
#canvas2{
position:absolute;
z-index: 8;
}
#canvas4{
position:absolute;
z-index: 9;
} | hosted/style.css | html, body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
overflow-x: hidden;
color: yellow;
font-family: heavy_data, arial, sans-serif;
}
#logo {
height: 40px;
width: 40;
padding-top: 5px;
float:left;
border-radius: 8px;
}
#userM {
margin: auto;
position: fixed;
top: 13%;
left: 1%;
color: yellow;
font-size: 2.5em;
text-align: center !important;
width: 100%;
}
#userScreen {
position: fixed;
top: 20%;
left: 40.5%;
height: 200px;
width: 400px;
padding-top: 5px;
opacity: 0.75;
text-align: center;
background-color: rgb(0,34,7);
border-style:solid;
border-color: black;
border-width: 5px;
}
nav {
position: fixed !important;
width: 110%;
margin-top: -15px;
margin-left: -15px;
height: 60px;
opacity: 0.75;
background-color: rgb(0,34,7);
border-style:solid;
border-color: black;
border-width: 5px;
}
#navi {
position: fixed !important;
left: 2.9%;
width: 100%;
}
#loginBorder {
z-index: -1;
position: fixed;
left: 43%;
top: 59.5%;
width: 300px;
height: 335px;
opacity: 0.6;
background-color: rgb(0,34,7);
pointer-events: none;
}
#border2 {
z-index: -1;
position: fixed;
left: 43% !important;
top: 59.5% !important;
pointer-events: none;
}
#borderOther {
z-index: -1;
position: fixed;
left: 39.4%;
top: 9.8%;
width: 450px;
height: 750px;
opacity: 0.6;
background-color: rgb(0,34,7);
pointer-events: none;
}
#borderSide {
position: fixed;
left: 33.5%;
top: 11.8%;
height: 400px;
pointer-events: none;
}
#borderSideBack {
position: fixed;
left: 33.5%;
top: 11.8%;
height: 400px;
width: 665px;
opacity: 0.6;
background-color: rgb(0,34,7);
}
#border3 {
z-index: -1;
position: fixed;
width: 450px;
left: 39.4% !important;
top: 9.8% !important;
pointer-events: none;
}
#borderOther4 {
z-index: -1;
position: fixed;
left: 62.4%;
top: 9.8%;
width: 450px;
height: 750px;
opacity: 0.6;
background-color: rgb(0,34,7);
pointer-events: none;
}
#borderOther5 {
z-index: -1;
position: fixed;
left: 16.4%;
top: 9.8%;
width: 450px;
height: 750px;
opacity: 0.6;
background-color: rgb(0,34,7);
pointer-events: none;
}
#borderOther6 {
z-index: -1;
position: fixed;
left: 39.4%;
top: 9.8%;
width: 450px;
height: 750px;
opacity: 0.6;
background-color: rgb(0,34,7);
pointer-events: none;
}
#border4 {
z-index: -1;
position: fixed;
width: 450px;
left: 62.4% !important;
top: 9.8% !important;
pointer-events: none;
}
#border5 {
z-index: -1;
position: fixed;
width: 450px;
left: 16.4% !important;
top: 9.8% !important;
pointer-events: none;
}
#border6 {
z-index: -1;
position: fixed;
width: 450px;
left: 39.4% !important;
top: 9.8% !important;
pointer-events: none;
}
#machine1 {
z-index: -1;
position: fixed;
width: 410px;
left: 63% !important;
top: 9.8% !important;
opacity: .85;
pointer-events: none;
}
#machine2 {
z-index: -1;
position: fixed;
width: 450px;
left: 16.4% !important;
top: 9.8% !important;
opacity: .85;
pointer-events: none;
}
#digital1 {
z-index: -2;
position: fixed;
transform: scale(-1, 1);
left: 62.4% !important;
top: 9.8% !important;
opacity: .5;
pointer-events: none;
}
#digital2 {
z-index: -2;
position: fixed;
left: 16.4% !important;
top: 9.8% !important;
opacity: .5;
pointer-events: none;
}
#tiny {
position:fixed;
top:0%;
font-size:0.7em;
}
#art {
z-index: -2;
position: fixed;
left: 31.6%;
top: 4%;
width: 700px;
border-style:solid;
border-color: black;
border-width: 15px;
background-color: rgb(0,34,7);
opacity: 0.8;
pointer-events: none;
}
nav:nth-child(1) {
padding-left: 75px;
}
.navlink {
padding-top: 12px;
padding-left: 10%;
color: white;
font-size: 1.3em;
float: left;
outline: none;
}
.navlink a, .navlink a:link, .navlink a:visited, .navlink a:hover, .navlink a:active {
color: white;
text-decoration: none;
padding: 5px;
border-radius: 4px;
transition: color 2s ease;
}
.navlink a:focus {
text-decoration: none;
padding: 5px;
border-radius: 4px;
color: yellow;
transition: color 0.4s ease;
}
.statsForm {
height: 35px;
width: 900px;
margin-top:0px;
padding-top:0px;
}
.statsForm label {
display: inline-block;
width: 75px;
margin-left: 10px;
font-size: 1.2em;
float: left;
color: white;
}
.mainForm {
position: fixed;
top: 66.5%;
left: 41.6%;
z-index: 3;
height: 300px;
width: 350px;
margin: 0 auto;
font-size: 1.2em;
}
.mainForm h3 {
text-align: center;
}
.mainForm label {
z-index: 3;
display: inline-block;
width: 150px;
margin-right: 10px;
text-align: right;
font-size: 1.2em;
}
.formSubmit {
z-index: 3;
transition: background-color 0.4s ease;
display: block;
text-align: center;
margin: 0 auto;
margin-top: 14px;
font-size: 1.2em;
width: 100px;
background-color: #5c0e05;
border-radius: 2px;
border-color: black;
padding: 3px 0px;
color: white;
font-family: heavy_data;
text-decoration: none;
}
.formSubmit:focus, .formSubmit:link, .formSubmit:visited, .formSubmit:hover, .formSubmit:active {
color: white;
outline:0;
}
.formSubmit:hover {
transition: background-color 0.4s ease;
background-color: #d1d1d1;
}
.formSubmit2 {
z-index: 3;
transition: background-color 0.4s ease;
display: block;
text-align: center;
margin: 0 auto;
margin-top: -25px;
margin-bottom: 30px;
font-size: 1.5em;
width: 150px;
background-color: #5c0e05;
border-radius: 2px;
border-color: black;
padding: 3px 0px;
color: white;
font-family: heavy_data;
text-decoration: none;
}
.formSubmit2:focus, .formSubmit:link, .formSubmit:visited, .formSubmit:hover, .formSubmit:active {
color: white;
outline:0;
}
.formSubmit2:hover {
transition: background-color 0.4s ease;
background-color: #d1d1d1;
}
.buttonBlock {
margin: 0 auto;
margin-left: 50px;
}
.formSubmit3 {
z-index: 3;
transition: background-color 0.4s ease;
display: inline;
text-align: center;
margin: 0 auto;
margin-top: -25px;
margin-bottom: 10px;
font-size: 1.2em;
width: 80px;
background-color: #5c0e05;
border-radius: 2px;
border-color: black;
padding: 3px 0px;
color: white;
font-family: heavy_data;
text-decoration: none;
}
.formSubmit3:focus, .formSubmit:link, .formSubmit:visited, .formSubmit:hover, .formSubmit:active {
color: white;
outline:0;
}
.formSubmit3:hover {
transition: background-color 0.4s ease;
background-color: #d1d1d1;
}
#user, #pass, #pass2, #oldPass{
z-index: 3;
text-align: center;
font-size: 1.1em;
width: 150px;
background-color: #d1d1d1;
color: #5c0e05;
border-radius: 6px;
}
#user:focus, #pass:focus, #pass2:focus {
outline: none;
box-shadow: 0px 0px 1px 1px #55acee;
}
#mainMessage {
position: fixed;
top: 61.7%;
left: 45%;
text-align: center;
font-size: 1.6em;
font-weight: bold;
color: #c7c7a1;
font-style: italic;
width: 220px;
}
#errorMessage {
position: fixed;
top: 87.5%;
left: 45%;
text-align: center;
font-size: 1.2em;
font-weight: bold;
color: Yellow;
font-style: italic;
width: 220px;
}
#modsDivv2 {
position: fixed !important;
top: 15%;
left: 40.8%;
min-width: 400px;
margin: 0 auto;
text-align: center;
line-height: 0em;
font-size: 1.5em;
margin: 0 auto;
padding-bottom: 0px;
color: white !important;
}
#statss {
position: fixed !important;
top: 8%;
left: 40%;
min-width: 400px;
margin: 0 auto;
color: white !important;
}
.stats {
width: 400px;
margin: 0 auto;
margin-top: 2px;
margin-bottom: 2px;
text-align: center;
padding: 10px;
min-height:60px;
overflow: hidden;
}
img.statsFace {
margin-left: 25px;
margin-right: 10px;
height: 60px;
width: 120px;
border-radius: 4px;
margin-top: 21px;
float:left;
pointer-events: none;
}
img.scoreFace {
margin-left: 20px;
margin-top: 5px;
height: 80px;
opacity: .8;
pointer-events: none;
}
.scoreType {
position: fixed;
margin-top: -140px;
margin-left: 120px;
height: 60px;
}
#profile {
z-index:1;
position: fixed;
top: 21%;
left: 41%;
height: 100px;
width: 100px;
pointer-events: none;
}
#proff {
z-index:1;
position: fixed;
top: 43%;
left: 42%;
font-size: 1.5em;
text-align: center;
}
.profilePic {
height: 200px;
width: 392px;
pointer-events: none;
}
.labled {
font-size: 3em !important;
color: #c7c7a1 !important;
}
.labled2 {
color: yellow !important;
}
.labled3 {
position: fixed !important;
margin-left: -150px;
margin-top: 24px;
color: #c7c7a1 !important;
}
.labled4 {
margin-left: 3px;
font-size: .6em !important;
color: gray !important;
}
.scoreList {
position: fixed !important;
top: 25%;
left: 40%;
}
.score {
width: 400px;
margin: 0 auto;
margin-top: 15px;
margin-bottom: 2px;
min-height:60px;
overflow: hidden;
color: white !important;
}
#scores {
}
h3.emptyStats {
width: 400px;
font-size: 1.5em;
margin: 0 auto;
text-align: center;
margin-top: 18px;
}
.stats:first-child {
margin-top: 10px;
}
.stats:last-child {
margin-bottom:10px;
}
#canvasBack {
top: -10%;
left: -10%;
width: 120%;
height: 120%;
position: fixed;
z-index: -5;
pointer-events: none;
}
#ribbon {
position: fixed;
opacity: 0.75;
top: .1%;
left: calc(50% - 29px) !important;
z-index: -1;
}
#gameButton {
font-size: 1.8em !important;
top: -15px;
left: -10px;
outline: none !important;
}
#loginButton {
position: fixed;
left: 31.5% !important;
font-size: 1.5em !important;
outline: none !important;
}
#signupButton {
position: fixed;
left: 63.5% !important;
font-size: 1.5em !important;
}
#moreContent {
position: fixed !important;
top: 10% !important;
left: 40% !important;
}
.disabledLink {
color: red !important;
text-decoration : none;
pointer-events: none;
cursor: default;
}
canvas{border:1px solid gray;}
#audioControls{ display:none;}
@font-face {
font-family: heavy_data;
src: url(media/heavy_data.ttf);
}
#videoPos {
position: absolute;
margin: auto;
left: calc(25% + 1px);
top: 10%;
z-index: 2;
}
#videoPos2 {
position: absolute;
margin: auto;
left: calc(25% + 1px);
top: 10%;
z-index: -2;
}
#videoPos3 {
position: absolute;
margin: auto;
left: calc(25% + 330px);
top: calc(10% + 275px);
z-index: -2;
}
#videoPos4 {
position: absolute;
margin: auto;
left: calc(25% + 1px);
top: 10%;
z-index: -2;
}
#border {
position: absolute;
margin: auto;
left: 25%;
top: calc(10% + 310px);
z-index: 5;
}
#bigBorder {
position: absolute;
margin: auto;
left: calc(25% - 5px);
top: 10%;
z-index: 7;
}
#smallBar1 {
position: absolute;
margin: auto;
left: calc(25% + 690px);
top: calc(10% + 314px);
z-index: 3;
}
#smallBar2 {
position: absolute;
margin: auto;
left: calc(25% + 325px);
top: calc(10% + 314px);
z-index: 3;
}
#bar {
position: absolute;
margin: auto;
top: 10%;
left: calc(25% + 1px);
z-index: -2;
}
#trueTop {
position: absolute;
margin: auto;
top: 10%;
left: 25%;
z-index: 7;
}
#top {
position: absolute;
margin: auto;
top: 10%;
left: 25%;
z-index: 6;
}
#main {
position: absolute;
margin: auto;
top: 10%;
left: 25%;
z-index: 1;
}
#canvas1 {
position:absolute;
z-index: 1;
}
#canvas2{
position:absolute;
z-index: 8;
}
#canvas4{
position:absolute;
z-index: 9;
} | 0.503174 | 0.080647 |
* @author <NAME> <<EMAIL>>
*/
/* InputEx Styles */
div.inputEx-hidden {
display: none;
}
/* Add red border to invalid inputs */
.inputEx-invalid > div > div > input {
border: 1px solid #C00E0C;
background: #ffDFD3;
}
div.inputEx-invalid > div.inputEx-message {
/* color:#C00E0C; */
/* font-weight:bold; */
padding-bottom: 10px;
margin-top: -5px;
}
.inputEx-valid > div > div > input {
border: 1px solid lightgray;
background: white;
}
.inputEx-valid > div > div > input[disabled] {
background-color: rgb(235, 235, 228);
}
.inputEx-valid .inputEx-CheckBox > input[disabled] + .inputEx-CheckBox-rightLabel {
color: lightgray;
}
div.inputEx-Field input, div.inputEx-Field textarea, div.inputEx-Field select {
border: 1px solid lightgray;
}
.yui3-skin-sam div.inputEx-ListField-subFieldEl {
margin: 0;
float: none;
}
.wegas-formwhite-space div.inputEx-label {
white-space: normal;
}
.wegas-form .inputEx-CombineField .inputEx-fieldWrapper .inputEx-label {
margin-left: 10px;
width: auto;
}
div.inputEx-fieldWrapper > div.inputEx-label:first-letter {
text-transform: uppercase;
}
div.inputEx-message {
margin: 0;
}
div.inputEx-fieldWrapper {
margin-bottom: 0.4em;
}
/* Wegas Form Widget Styles */
/* Styles for form edition */
.wegas-form div.inputEx-TypeField-PropertiesPanel {
padding-left: 140px;
}
.wegas-form legend.inputEx-Group-legend {
margin-left: -116px;
color: #2647a0;
width: 130px;
padding: 0.2em 0.5em 0 0;
}
.wegas-form .inputEx-ListField {
padding: 0px !important;
}
.wegas-form-content {
padding: 20px 10px 20px !important;
}
/*.inputEx-required .inputEx-label label:after {
content: "•"
}*/
.wegas-form div.inputEx-fieldWrapper,
.wegas-form div.inputEx-Field {
float: none;
}
/*.wegas-form-centent .inputEx-Group,*/
.wegas-form select {
width: 100%;
padding: 1px 0;
box-sizing: content-box;
max-width: 30em;
}
.wegas-form textarea,
.wegas-form input[type=text],
.wegas-form input[type=password] {
width: 100%;
box-sizing: border-box;
padding: 2px 0.5%;
}
.wegas-form .short-input {
width: 8em;
}
.wegas-form input[type=checkbox] {
margin-top: .2em;
float: left;
}
.wegas-form div.inputEx-label {
padding-top: 0.3em;
white-space: normal;
}
.wegas-form div.inputEx-StringField-wrapper {
display: inline-block;
vertical-align: top;
width: 100%;
max-width: 30em;
}
.wegas-editmode .wegas-form div.inputEx-StringField-wrapper {
float: left;
}
/* Set up fluid layout for inputex fields */
.wegas-form > div > div > fieldset > div {
padding-left: 135px;
white-space: nowrap;
position: relative;
}
div.inputEx-description {
white-space: normal;
}
.wegas-editmode div.inputEx-description {
clear: none;
float: left;
margin-left: 4px;
}
.wegas-form > div > div > fieldset > div div.inputEx-label,
.wegas-form div.inputEx-CombineField > div.inputEx-label,
.wegas-form div.inputEx-fieldWrapper > div.inputEx-label {
margin-left: -135px;
width: 129px;
padding-right: 0px;
}
.wegas-form .inputEx-ListField > span {
display: none;
}
/* Wegas Url Field styles */
.inputEx-wegas-UrlField {
padding-right: 69px;
}
.inputEx-wegas-UrlField .yui3-uploader {
display: inline-block;
float: right;
margin-right: -40px;
padding: 2px 4px 0px 6px;
vertical-align: top;
margin-top: -2px;
}
.inputEx-wegas-UrlField .yui3-uploader input {
display: none;
}
.inputEx-wegas-UrlField button {
float: right;
padding: 1px 4px 1px 6px;
vertical-align: top;
margin-top: -2px;
display: inline-block;
}
.inputEx-wegas-UrlField > button {
margin-right: -34px;
}
/* wegas-inputex-ace styles */
.ace_editor {
width: 100%;
height: 150px;
}
.inputEx-Field .ace_editor {
width: 99.5%;
height: 100px;
}
/* Variable descriptor select */
.wegas-inputex-variabledescriptorselect-group {
clear: both;
}
.inputEx-singleLineWysiwygScript .wegas-inputex-variabledescriptorselect-group {
padding-left: 0px;
}
.wegas-inputex-variabledescriptorselect-group > label {
float: left;
padding: 0.2em 0.5em 0 0;
text-align: right;
margin-left: -135px;
width: 129px;
}
.wegas-inputex-variabledescriptorselect-group > fieldset {
}
.wegas-inputex-variabledescriptorselect .inputEx-fieldWrapper,
.wegas-inputex-variabledescriptorselect .inputEx-CombineField,
.wegas-inputex-variabledescriptorselect .inputEx-Group .inputEx-Group,
.wegas-inputex-variabledescriptorselect div.inputEx-fieldWrapper {
float: none;
padding-left: 0;
}
.wegas-inputex-variabledescriptorselect fieldset {
display: inline-block;
}
.wegas-inputex-variabledescriptorselect select {
width: auto;
max-width: 150px;
}
.wegas-inputex-variabledescriptorselect .wegas-variabledescriptor-select-fallback {
width: 100%;
}
.wegas-inputex-variabledescriptorselect .wegas-variabledescriptor-select-fallback textarea {
white-space: nowrap;
}
/* Wysiwyg code editor */
.inputEx-WysiwygScriptWrapper {
padding: 0px !important;
}
.inputEx-Group .inputEx-Group .inputEx-WysiwygScriptWrapper {
margin-left: -135px;
}
.inputEx-WysiwygScriptWrapper > div.inputEx-label {
margin-left: 0px !important;
margin-right: 6px;
}
.inputEx-WysiwygScript > .yui3-button {
background-color: #ededed;;
box-shadow: none;
padding: 1px;
margin-bottom: 2px;
min-height: 23px;
border: 1px solid lightgray;
margin-top: 0;
border-right: none;
}
.inputEx-WysiwygScript .inputEx-WysiwygScript-viewsrc {
border-right: 1px solid lightgray;
}
.inputEx-WysiwygScript .inputEx-WysiwygScript-add.yui3-button-selected,
.inputEx-WysiwygScript .inputEx-WysiwygScript-viewsrc.yui3-button-selected {
background: rgba(12, 63, 113, 0.44);;
}
.inputEx-WysiwygScript .inputEx-fieldWrapper,
.inputEx-WysiwygScript .inputEx-CombineField,
.inputEx-WysiwygScript .inputEx-Group .inputEx-Group,
.inputEx-WysiwygScript div.inputEx-fieldWrapper {
float: none !important;
padding-left: 0;
display: inline-block !important;
vertical-align: top;
margin-right: -2px;
}
.inputEx-WysiwygScript div.wegas-method-returnline {
margin-left: 57px;
margin-top: -3px;
}
.inputEx-WysiwygScript div.wegas-method-returnline .inputEx-fieldWrapper,
.inputEx-WysiwygScript div.wegas-method-returnline .inputEx-Group,
.inputEx-WysiwygScript div.wegas-method-returnline .inputEx-Group fieldset {
width: 100%;
}
.inputEx-WysiwygScript div.inputEx-CombineField {
padding: 0;
}
.inputEx-WysiwygScript .wegas-method-sendmessage {
padding: 0px 5px 0px 57px;
margin-bottom: 4px;
margin-top: -3px;
}
.wegas-stdmode .inputEx-WysiwygScript .wegas-method-sendmessage .inputEx-fieldWrapper.wegas-advanced-feature {
display:none !important;
}
.inputEx-WysiwygScript .wegas-method-sendmessage .inputEx-fieldWrapper {
display: block !important;
float: initial !important;
margin-bottom: 2px;
clear: both;
}
.inputEx-WysiwygScript .wegas-method-sendmessage .inputEx-ListField-addButton + span {
display: inline-block;
vertical-align: top;
margin-top: -1px;
margin-left: 2px !important;
}
.inputEx-WysiwygScript .wegas-method-sendmessage .inputEx-ListField-addButton + span::after {
content: "Attachments";
}
.inputEx-WysiwygScript option:disabled,
.inputEx-WysiwygScript option[disabled] {
font-style: italic;
color: graytext;
}
.yui3-skin-sam .inputEx-WysiwygScript .inputEx-ListField .wegas-addbutton {
left: 0;
top: -24px;
background-color: #ededed;
margin-bottom: 2px;
padding: 0;
min-height: 24px;
padding: 0px 0px 2px 2px;
border: 1px solid lightgray;
border-right: none;
display: none;
}
.inputEx-WysiwygScript .inputEx-ListField .wegas-removebutton {
left: 114px;
}
.inputEx-WysiwygScript .inputEx-ListField .wegas-moveupbutton {
left: 80px;
width: 11px;
display: none;
}
.inputEx-WysiwygScript .inputEx-ListField .wegas-movedownbutton {
left: 96px;
display: none;
}
.inputEx-WysiwygScript .inputEx-ListField > fieldset > div:hover .wegas-moveupbutton,
.inputEx-WysiwygScript .inputEx-ListField > fieldset > div:hover .wegas-movedownbutton {
display: block;
}
/* single line wysywyg script */
.inputEx-singleLineWysiwygScript {
padding-right: 26px;
}
.inputEx-singleLineWysiwygScript .inputEx-WysiwygScript-viewsrc {
position: absolute;
margin: 0;
top: -2px;
right: -2px;
display: block !important;
}
.inputEx-singleLineWysiwygScript textarea {
height: 50px !important;
}
.inputEx-singleLineWysiwygScript .inputEx-WysiwygScript-add,
.inputEx-singleLineWysiwygScript .yui3-button {
display: none !important;
}
.inputEx-singleLineWysiwygScript .inputEx-fieldWrapper {
margin-bottom: 0px;
}
.wegas-inputex-inlinegroup div.inputEx-fieldWrapper {
float: left;
}
/* Original inputex listfield styles */
.inputEx-ListField legend.inputEx-Group-legend {
margin-left: 0;
}
.inputEx-ListField-childContainer > div {
position: relative;
}
.inputEx-ListField-Arrow,
img.inputEx-ListField-delButton {
position: absolute;
z-index: 5;
top: 4px;
left: -20px;
/*background: transparent url(../../wegas-app/images/wegas-app-sprite.png) no-repeat scroll 0px -1006px !important;*/
}
.inputEx-ListField-ArrowUp {
left: -50px;
}
.inputEx-ListField-ArrowDown {
left: -37px;
}
/* List field style */
.inputEx-ListField {
position: relative;
}
.inputEx-ListField > fieldset > div {
position: relative;
padding-left: 135px;
}
.yui3-skin-sam .inputEx-ListField .wegas-addbutton,
.yui3-skin-sam .inputEx-ListField .wegas-removebutton,
.yui3-skin-sam .inputEx-ListField .wegas-moveupbutton,
.yui3-skin-sam .inputEx-ListField .wegas-movedownbutton {
background: none;
border: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
margin: -2px 0 0;
background-color: transparent;
padding: 0;
position: absolute;
top: 0;
z-index: 10; /* to allow click events */
}
.yui3-skin-sam .inputEx-ListField .wegas-addbutton:after {
content: none; /** remove submenu indicator for this button */
}
.inputEx-ListField .wegas-addbutton {
left: 53px !important;
}
.inputEx-ListField .wegas-removebutton {
left: -3px;
}
/* Tinymce field */
.wegas-form .mce-container {
margin: 0;
padding: 0;
}
.wegas-form .mce-tinymce{
overflow:auto;
resize:both;
padding-bottom:10px;
height:100%;
}
.wegas-form .mce-tinymce.mce-container .mce-container-body{
height:100%;
}
.wegas-form .mce-tinymce.mce-container .mce-container-body .mce-edit-area{
height: calc(100% - 28px);
}
.wegas-form .mce-tinymce.mce-container.mce--more .mce-container-body .mce-edit-area{
height: calc(100% - 74px);
}
.wegas-form .mce-container iframe{
height:100% !important;
border-bottom:solid 1px lightgrey;
}
.wegas-form .mce-panel {
border-color: lightgray;
background: #f2f2f2;
}
.wegas-form .mce-panel {
border-color: lightgray;
background: #f2f2f2;
}
.wegas-form .mce-toolbar-grp {
padding: 2px;
}
.wegas-form .mce-btn-group {
margin: 0 13px 0 0;
}
.wegas-form .mce-btn-group .mce-btn {
background-image: none;
border: none;
border-radius: 3px;
margin-right: 1px;
}
/* Color field styles */
div.inputEx-ColorField button {
background: url(../../wegas-app/images/wegas-app-sprite.png) 3px -683px;
border: none;
cursor: pointer;
}
/* Radio field */
.yui3-skin-sam div.inputEx-RadioField-choice {
float: none;
padding-top: 0.3em;
}
div.inputEx-RadioField-choice input[type="radio"] {
vertical-align: middle;
}
/* ComboBox field */
.inputEx-ComboBox input[type="text"]{
padding-right: 20px;
background: url("../../wegas-app/images/wegas-icon-toggle.png") 4px 7px no-repeat;
background-position-x: 100%;
}
/* Uneditable field */
.inputEx-uneditableField .inputEx-Field {
/*border: 1px solid lightgray;*/
/*padding: 2px;*/
/*background: #fafafa;*/
padding-top: 3.9px;
}
/* Sendmail widget in the trainer dashboard */
.wegas-sendmail-content .inputEx-Group {
padding-top: 20px;
}
.wegas-sendmail-content .inputEx-Field {
max-width: 30em;
padding: 2px 0;
box-sizing: border-box;
overflow: hidden;
text-overflow: ellipsis !important;
}
.wegas-sendmail-content .inputEx-Field input {
font-size: 13px;
} | wegas-app/src/main/webapp/wegas-editor/css/wegas-inputex.css | * @author <NAME> <<EMAIL>>
*/
/* InputEx Styles */
div.inputEx-hidden {
display: none;
}
/* Add red border to invalid inputs */
.inputEx-invalid > div > div > input {
border: 1px solid #C00E0C;
background: #ffDFD3;
}
div.inputEx-invalid > div.inputEx-message {
/* color:#C00E0C; */
/* font-weight:bold; */
padding-bottom: 10px;
margin-top: -5px;
}
.inputEx-valid > div > div > input {
border: 1px solid lightgray;
background: white;
}
.inputEx-valid > div > div > input[disabled] {
background-color: rgb(235, 235, 228);
}
.inputEx-valid .inputEx-CheckBox > input[disabled] + .inputEx-CheckBox-rightLabel {
color: lightgray;
}
div.inputEx-Field input, div.inputEx-Field textarea, div.inputEx-Field select {
border: 1px solid lightgray;
}
.yui3-skin-sam div.inputEx-ListField-subFieldEl {
margin: 0;
float: none;
}
.wegas-formwhite-space div.inputEx-label {
white-space: normal;
}
.wegas-form .inputEx-CombineField .inputEx-fieldWrapper .inputEx-label {
margin-left: 10px;
width: auto;
}
div.inputEx-fieldWrapper > div.inputEx-label:first-letter {
text-transform: uppercase;
}
div.inputEx-message {
margin: 0;
}
div.inputEx-fieldWrapper {
margin-bottom: 0.4em;
}
/* Wegas Form Widget Styles */
/* Styles for form edition */
.wegas-form div.inputEx-TypeField-PropertiesPanel {
padding-left: 140px;
}
.wegas-form legend.inputEx-Group-legend {
margin-left: -116px;
color: #2647a0;
width: 130px;
padding: 0.2em 0.5em 0 0;
}
.wegas-form .inputEx-ListField {
padding: 0px !important;
}
.wegas-form-content {
padding: 20px 10px 20px !important;
}
/*.inputEx-required .inputEx-label label:after {
content: "•"
}*/
.wegas-form div.inputEx-fieldWrapper,
.wegas-form div.inputEx-Field {
float: none;
}
/*.wegas-form-centent .inputEx-Group,*/
.wegas-form select {
width: 100%;
padding: 1px 0;
box-sizing: content-box;
max-width: 30em;
}
.wegas-form textarea,
.wegas-form input[type=text],
.wegas-form input[type=password] {
width: 100%;
box-sizing: border-box;
padding: 2px 0.5%;
}
.wegas-form .short-input {
width: 8em;
}
.wegas-form input[type=checkbox] {
margin-top: .2em;
float: left;
}
.wegas-form div.inputEx-label {
padding-top: 0.3em;
white-space: normal;
}
.wegas-form div.inputEx-StringField-wrapper {
display: inline-block;
vertical-align: top;
width: 100%;
max-width: 30em;
}
.wegas-editmode .wegas-form div.inputEx-StringField-wrapper {
float: left;
}
/* Set up fluid layout for inputex fields */
.wegas-form > div > div > fieldset > div {
padding-left: 135px;
white-space: nowrap;
position: relative;
}
div.inputEx-description {
white-space: normal;
}
.wegas-editmode div.inputEx-description {
clear: none;
float: left;
margin-left: 4px;
}
.wegas-form > div > div > fieldset > div div.inputEx-label,
.wegas-form div.inputEx-CombineField > div.inputEx-label,
.wegas-form div.inputEx-fieldWrapper > div.inputEx-label {
margin-left: -135px;
width: 129px;
padding-right: 0px;
}
.wegas-form .inputEx-ListField > span {
display: none;
}
/* Wegas Url Field styles */
.inputEx-wegas-UrlField {
padding-right: 69px;
}
.inputEx-wegas-UrlField .yui3-uploader {
display: inline-block;
float: right;
margin-right: -40px;
padding: 2px 4px 0px 6px;
vertical-align: top;
margin-top: -2px;
}
.inputEx-wegas-UrlField .yui3-uploader input {
display: none;
}
.inputEx-wegas-UrlField button {
float: right;
padding: 1px 4px 1px 6px;
vertical-align: top;
margin-top: -2px;
display: inline-block;
}
.inputEx-wegas-UrlField > button {
margin-right: -34px;
}
/* wegas-inputex-ace styles */
.ace_editor {
width: 100%;
height: 150px;
}
.inputEx-Field .ace_editor {
width: 99.5%;
height: 100px;
}
/* Variable descriptor select */
.wegas-inputex-variabledescriptorselect-group {
clear: both;
}
.inputEx-singleLineWysiwygScript .wegas-inputex-variabledescriptorselect-group {
padding-left: 0px;
}
.wegas-inputex-variabledescriptorselect-group > label {
float: left;
padding: 0.2em 0.5em 0 0;
text-align: right;
margin-left: -135px;
width: 129px;
}
.wegas-inputex-variabledescriptorselect-group > fieldset {
}
.wegas-inputex-variabledescriptorselect .inputEx-fieldWrapper,
.wegas-inputex-variabledescriptorselect .inputEx-CombineField,
.wegas-inputex-variabledescriptorselect .inputEx-Group .inputEx-Group,
.wegas-inputex-variabledescriptorselect div.inputEx-fieldWrapper {
float: none;
padding-left: 0;
}
.wegas-inputex-variabledescriptorselect fieldset {
display: inline-block;
}
.wegas-inputex-variabledescriptorselect select {
width: auto;
max-width: 150px;
}
.wegas-inputex-variabledescriptorselect .wegas-variabledescriptor-select-fallback {
width: 100%;
}
.wegas-inputex-variabledescriptorselect .wegas-variabledescriptor-select-fallback textarea {
white-space: nowrap;
}
/* Wysiwyg code editor */
.inputEx-WysiwygScriptWrapper {
padding: 0px !important;
}
.inputEx-Group .inputEx-Group .inputEx-WysiwygScriptWrapper {
margin-left: -135px;
}
.inputEx-WysiwygScriptWrapper > div.inputEx-label {
margin-left: 0px !important;
margin-right: 6px;
}
.inputEx-WysiwygScript > .yui3-button {
background-color: #ededed;;
box-shadow: none;
padding: 1px;
margin-bottom: 2px;
min-height: 23px;
border: 1px solid lightgray;
margin-top: 0;
border-right: none;
}
.inputEx-WysiwygScript .inputEx-WysiwygScript-viewsrc {
border-right: 1px solid lightgray;
}
.inputEx-WysiwygScript .inputEx-WysiwygScript-add.yui3-button-selected,
.inputEx-WysiwygScript .inputEx-WysiwygScript-viewsrc.yui3-button-selected {
background: rgba(12, 63, 113, 0.44);;
}
.inputEx-WysiwygScript .inputEx-fieldWrapper,
.inputEx-WysiwygScript .inputEx-CombineField,
.inputEx-WysiwygScript .inputEx-Group .inputEx-Group,
.inputEx-WysiwygScript div.inputEx-fieldWrapper {
float: none !important;
padding-left: 0;
display: inline-block !important;
vertical-align: top;
margin-right: -2px;
}
.inputEx-WysiwygScript div.wegas-method-returnline {
margin-left: 57px;
margin-top: -3px;
}
.inputEx-WysiwygScript div.wegas-method-returnline .inputEx-fieldWrapper,
.inputEx-WysiwygScript div.wegas-method-returnline .inputEx-Group,
.inputEx-WysiwygScript div.wegas-method-returnline .inputEx-Group fieldset {
width: 100%;
}
.inputEx-WysiwygScript div.inputEx-CombineField {
padding: 0;
}
.inputEx-WysiwygScript .wegas-method-sendmessage {
padding: 0px 5px 0px 57px;
margin-bottom: 4px;
margin-top: -3px;
}
.wegas-stdmode .inputEx-WysiwygScript .wegas-method-sendmessage .inputEx-fieldWrapper.wegas-advanced-feature {
display:none !important;
}
.inputEx-WysiwygScript .wegas-method-sendmessage .inputEx-fieldWrapper {
display: block !important;
float: initial !important;
margin-bottom: 2px;
clear: both;
}
.inputEx-WysiwygScript .wegas-method-sendmessage .inputEx-ListField-addButton + span {
display: inline-block;
vertical-align: top;
margin-top: -1px;
margin-left: 2px !important;
}
.inputEx-WysiwygScript .wegas-method-sendmessage .inputEx-ListField-addButton + span::after {
content: "Attachments";
}
.inputEx-WysiwygScript option:disabled,
.inputEx-WysiwygScript option[disabled] {
font-style: italic;
color: graytext;
}
.yui3-skin-sam .inputEx-WysiwygScript .inputEx-ListField .wegas-addbutton {
left: 0;
top: -24px;
background-color: #ededed;
margin-bottom: 2px;
padding: 0;
min-height: 24px;
padding: 0px 0px 2px 2px;
border: 1px solid lightgray;
border-right: none;
display: none;
}
.inputEx-WysiwygScript .inputEx-ListField .wegas-removebutton {
left: 114px;
}
.inputEx-WysiwygScript .inputEx-ListField .wegas-moveupbutton {
left: 80px;
width: 11px;
display: none;
}
.inputEx-WysiwygScript .inputEx-ListField .wegas-movedownbutton {
left: 96px;
display: none;
}
.inputEx-WysiwygScript .inputEx-ListField > fieldset > div:hover .wegas-moveupbutton,
.inputEx-WysiwygScript .inputEx-ListField > fieldset > div:hover .wegas-movedownbutton {
display: block;
}
/* single line wysywyg script */
.inputEx-singleLineWysiwygScript {
padding-right: 26px;
}
.inputEx-singleLineWysiwygScript .inputEx-WysiwygScript-viewsrc {
position: absolute;
margin: 0;
top: -2px;
right: -2px;
display: block !important;
}
.inputEx-singleLineWysiwygScript textarea {
height: 50px !important;
}
.inputEx-singleLineWysiwygScript .inputEx-WysiwygScript-add,
.inputEx-singleLineWysiwygScript .yui3-button {
display: none !important;
}
.inputEx-singleLineWysiwygScript .inputEx-fieldWrapper {
margin-bottom: 0px;
}
.wegas-inputex-inlinegroup div.inputEx-fieldWrapper {
float: left;
}
/* Original inputex listfield styles */
.inputEx-ListField legend.inputEx-Group-legend {
margin-left: 0;
}
.inputEx-ListField-childContainer > div {
position: relative;
}
.inputEx-ListField-Arrow,
img.inputEx-ListField-delButton {
position: absolute;
z-index: 5;
top: 4px;
left: -20px;
/*background: transparent url(../../wegas-app/images/wegas-app-sprite.png) no-repeat scroll 0px -1006px !important;*/
}
.inputEx-ListField-ArrowUp {
left: -50px;
}
.inputEx-ListField-ArrowDown {
left: -37px;
}
/* List field style */
.inputEx-ListField {
position: relative;
}
.inputEx-ListField > fieldset > div {
position: relative;
padding-left: 135px;
}
.yui3-skin-sam .inputEx-ListField .wegas-addbutton,
.yui3-skin-sam .inputEx-ListField .wegas-removebutton,
.yui3-skin-sam .inputEx-ListField .wegas-moveupbutton,
.yui3-skin-sam .inputEx-ListField .wegas-movedownbutton {
background: none;
border: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
margin: -2px 0 0;
background-color: transparent;
padding: 0;
position: absolute;
top: 0;
z-index: 10; /* to allow click events */
}
.yui3-skin-sam .inputEx-ListField .wegas-addbutton:after {
content: none; /** remove submenu indicator for this button */
}
.inputEx-ListField .wegas-addbutton {
left: 53px !important;
}
.inputEx-ListField .wegas-removebutton {
left: -3px;
}
/* Tinymce field */
.wegas-form .mce-container {
margin: 0;
padding: 0;
}
.wegas-form .mce-tinymce{
overflow:auto;
resize:both;
padding-bottom:10px;
height:100%;
}
.wegas-form .mce-tinymce.mce-container .mce-container-body{
height:100%;
}
.wegas-form .mce-tinymce.mce-container .mce-container-body .mce-edit-area{
height: calc(100% - 28px);
}
.wegas-form .mce-tinymce.mce-container.mce--more .mce-container-body .mce-edit-area{
height: calc(100% - 74px);
}
.wegas-form .mce-container iframe{
height:100% !important;
border-bottom:solid 1px lightgrey;
}
.wegas-form .mce-panel {
border-color: lightgray;
background: #f2f2f2;
}
.wegas-form .mce-panel {
border-color: lightgray;
background: #f2f2f2;
}
.wegas-form .mce-toolbar-grp {
padding: 2px;
}
.wegas-form .mce-btn-group {
margin: 0 13px 0 0;
}
.wegas-form .mce-btn-group .mce-btn {
background-image: none;
border: none;
border-radius: 3px;
margin-right: 1px;
}
/* Color field styles */
div.inputEx-ColorField button {
background: url(../../wegas-app/images/wegas-app-sprite.png) 3px -683px;
border: none;
cursor: pointer;
}
/* Radio field */
.yui3-skin-sam div.inputEx-RadioField-choice {
float: none;
padding-top: 0.3em;
}
div.inputEx-RadioField-choice input[type="radio"] {
vertical-align: middle;
}
/* ComboBox field */
.inputEx-ComboBox input[type="text"]{
padding-right: 20px;
background: url("../../wegas-app/images/wegas-icon-toggle.png") 4px 7px no-repeat;
background-position-x: 100%;
}
/* Uneditable field */
.inputEx-uneditableField .inputEx-Field {
/*border: 1px solid lightgray;*/
/*padding: 2px;*/
/*background: #fafafa;*/
padding-top: 3.9px;
}
/* Sendmail widget in the trainer dashboard */
.wegas-sendmail-content .inputEx-Group {
padding-top: 20px;
}
.wegas-sendmail-content .inputEx-Field {
max-width: 30em;
padding: 2px 0;
box-sizing: border-box;
overflow: hidden;
text-overflow: ellipsis !important;
}
.wegas-sendmail-content .inputEx-Field input {
font-size: 13px;
} | 0.425247 | 0.051083 |
:root {
--check-calendar-main-color: #3a91ff;
}
.check-calendar-checkbox {
box-sizing: border-box;
margin: 0;
padding: 0;
color: rgba(0,0,0,.65);
font-size: 14px;
font-variant: tabular-nums;
line-height: 1.5715;
list-style: none;
font-feature-settings: "tnum";
position: relative;
top: -.09em;
display: inline-block;
white-space: nowrap;
vertical-align: middle;
outline: none;
cursor: pointer;
}
.check-calendar-checkbox::after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 1px solid var(--check-calendar-main-color);
border-radius: 2px;
visibility: hidden;
-webkit-animation: antCheckboxEffect .36s ease-in-out;
animation: antCheckboxEffect .36s ease-in-out;
-webkit-animation-fill-mode: backwards;
animation-fill-mode: backwards;
content: "";
}
.check-calendar-checkbox__input {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
width: 100%;
height: 100%;
cursor: pointer;
opacity: 0;
margin: 0;
}
.check-calendar-checkbox__input:checked + .check-calendar-checkbox__inner {
background: var(--check-calendar-main-color);
border-color: var(--check-calendar-main-color);
}
.check-calendar-checkbox__input:disabled + .check-calendar-checkbox__inner {
background: #f3f3f3;
}
.disabled {
cursor: not-allowed;
}
.disabled .check-calendar-checkbox {
cursor: not-allowed;
}
.disabled .check-calendar-checkbox__input {
cursor: not-allowed;
}
.check-calendar-checkbox__wrapper.disabled:hover .check-calendar-checkbox__inner {
border-color: #d9d9d9;
}
.check-calendar-checkbox__wrapper {
box-sizing: border-box;
margin: 0;
padding: 0;
color: rgba(0,0,0,.65);
font-size: 14px;
font-variant: tabular-nums;
line-height: 1.5715;
list-style: none;
font-feature-settings: "tnum";
display: inline-block;
cursor: pointer;
-ms-transform: scale(1.5);
/* IE */
-moz-transform: scale(1.5);
/* FF */
-webkit-transform: scale(1.5);
/* Safari and Chrome */
-o-transform: scale(1.5);
/* Opera */
}
.check-calendar-checkbox__inner {
position: relative;
top: 0;
left: 0;
display: block;
width: 16px;
height: 16px;
direction: ltr;
background-color: #fff;
border: 1px solid #d9d9d9;
border-radius: 2px;
border-collapse: separate;
transition: all .3s;
}
.check-calendar-checkbox__input:checked + .check-calendar-checkbox__inner::after {
position: absolute;
display: table;
border: 2px solid #fff;
border-top: 0;
border-left: 0;
transform: rotate(45deg) scale(1) translate(-50%,-50%);
opacity: 1;
transition: all .2s cubic-bezier(.12,.4,.29,1.46) .1s;
content: " ";
}
.check-calendar-checkbox__inner::after {
position: absolute;
top: 43%;
left: 21%;
display: table;
width: 5.7px;
height: 9.14px;
border: 2px solid #fff;
border-top: 0;
border-left: 0;
transform: rotate(45deg) scale(0) translate(-50%,-50%);
opacity: 0;
transition: all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;
content: " ";
}
.check-calendar-checkbox__wrapper:hover .check-calendar-checkbox__inner {
border-color: var(--check-calendar-main-color);
}
.check-calendar__day-number {
font-size: 19px;
font-weight: bold;
}
.check-calendar__month, .check-calendar_day {
color: #272847;
}
/* add css module styles here (optional) */
.check-calendar {
position: relative;
padding: 0 35px;
}
.check-calendar > button {
position: absolute;
cursor: pointer;
height: 100%;
top: 50%;
transform: translateY(-50%);
color: var(--check-calendar-main-color);
border: none;
background: transparent;
outline: none;
}
.check-calendar > button:hover {
}
.check-calendar > button svg {
fill: var(--check-calendar-main-color);
}
.check-calendar__prev {
left: 0;
}
.check-calendar__next {
right: 0;
}
.btnNextAvCalendar {
float: right;
}
tbody tr:last-child td:first-child {
border-radius: 0 0 0 7px;
}
tbody tr:last-child td:last-child {
border-radius: 0 0 7px 0;
}
tbody tr:first-child {
border-radius: 7px 7px 0 0;
background-color: transparent;
}
tbody tr:first-child td:first-child {
border-radius: 7px 0 0 0;
width: 35%;
}
tbody tr:first-child td:last-child {
border-radius: 0 7px 0 0;
}
tbody td, tbody th {
min-width: 72px;
max-width: 72px;
height: 50px;
min-height: 50px;
border-left: 1px solid #b1bcc3;
border-bottom: 1px solid #f5f5f5;
}
tbody td:first-of-type, tbody th:first-of-type {
border-left: none;
}
.check-calendar__table {
box-shadow: 0 15px 24px rgba(0, 0, 0, 0.22), 0 19px 76px rgba(0, 0, 0, 0.3);
position: relative;
width: 100%;
border-spacing: 0;
border-collapse: separate;
background: #fff;
color: #272847;
border-radius: 7px;
border-color: #3d464d;
font-size: 14px;
line-height: inherit;
text-align: center;
margin-bottom: 20px;
}
.biggerCheckbox {
-ms-transform: scale(1.5);
/* IE */
-moz-transform: scale(1.5);
/* FF */
-webkit-transform: scale(1.5);
/* Safari and Chrome */
-o-transform: scale(1.5);
/* Opera */
}
.check-calendar__header {
padding: 16px 0 16px 0;
color: #272847;
font-size: 16px;
background-color: #fff;
}
.check-calendar__header td {
border-bottom: 2px solid #e2e6e9;
}
.hSpan {
font-size: 12px;
font-weight: bold;
}
.hoverHourRow {
background: rgba(24, 144, 255, 0.22);
}
.check-calendar__row-header {
cursor: pointer;
}
.check-calendar__container {
width: 100%;
transition: opacity .4s;
opacity: 1;
}
.check-calendar__container--hide {
opacity: 0;
}
.check-calendar__hour small {
margin-left: 1px;
}
.check-calendar__hidden {
display: none;
}
.display {
display: block;
}
.check-calendar__button:disabled {
opacity: .4;
cursor: not-allowed;
} | dist/index.css | :root {
--check-calendar-main-color: #3a91ff;
}
.check-calendar-checkbox {
box-sizing: border-box;
margin: 0;
padding: 0;
color: rgba(0,0,0,.65);
font-size: 14px;
font-variant: tabular-nums;
line-height: 1.5715;
list-style: none;
font-feature-settings: "tnum";
position: relative;
top: -.09em;
display: inline-block;
white-space: nowrap;
vertical-align: middle;
outline: none;
cursor: pointer;
}
.check-calendar-checkbox::after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 1px solid var(--check-calendar-main-color);
border-radius: 2px;
visibility: hidden;
-webkit-animation: antCheckboxEffect .36s ease-in-out;
animation: antCheckboxEffect .36s ease-in-out;
-webkit-animation-fill-mode: backwards;
animation-fill-mode: backwards;
content: "";
}
.check-calendar-checkbox__input {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
width: 100%;
height: 100%;
cursor: pointer;
opacity: 0;
margin: 0;
}
.check-calendar-checkbox__input:checked + .check-calendar-checkbox__inner {
background: var(--check-calendar-main-color);
border-color: var(--check-calendar-main-color);
}
.check-calendar-checkbox__input:disabled + .check-calendar-checkbox__inner {
background: #f3f3f3;
}
.disabled {
cursor: not-allowed;
}
.disabled .check-calendar-checkbox {
cursor: not-allowed;
}
.disabled .check-calendar-checkbox__input {
cursor: not-allowed;
}
.check-calendar-checkbox__wrapper.disabled:hover .check-calendar-checkbox__inner {
border-color: #d9d9d9;
}
.check-calendar-checkbox__wrapper {
box-sizing: border-box;
margin: 0;
padding: 0;
color: rgba(0,0,0,.65);
font-size: 14px;
font-variant: tabular-nums;
line-height: 1.5715;
list-style: none;
font-feature-settings: "tnum";
display: inline-block;
cursor: pointer;
-ms-transform: scale(1.5);
/* IE */
-moz-transform: scale(1.5);
/* FF */
-webkit-transform: scale(1.5);
/* Safari and Chrome */
-o-transform: scale(1.5);
/* Opera */
}
.check-calendar-checkbox__inner {
position: relative;
top: 0;
left: 0;
display: block;
width: 16px;
height: 16px;
direction: ltr;
background-color: #fff;
border: 1px solid #d9d9d9;
border-radius: 2px;
border-collapse: separate;
transition: all .3s;
}
.check-calendar-checkbox__input:checked + .check-calendar-checkbox__inner::after {
position: absolute;
display: table;
border: 2px solid #fff;
border-top: 0;
border-left: 0;
transform: rotate(45deg) scale(1) translate(-50%,-50%);
opacity: 1;
transition: all .2s cubic-bezier(.12,.4,.29,1.46) .1s;
content: " ";
}
.check-calendar-checkbox__inner::after {
position: absolute;
top: 43%;
left: 21%;
display: table;
width: 5.7px;
height: 9.14px;
border: 2px solid #fff;
border-top: 0;
border-left: 0;
transform: rotate(45deg) scale(0) translate(-50%,-50%);
opacity: 0;
transition: all .1s cubic-bezier(.71,-.46,.88,.6),opacity .1s;
content: " ";
}
.check-calendar-checkbox__wrapper:hover .check-calendar-checkbox__inner {
border-color: var(--check-calendar-main-color);
}
.check-calendar__day-number {
font-size: 19px;
font-weight: bold;
}
.check-calendar__month, .check-calendar_day {
color: #272847;
}
/* add css module styles here (optional) */
.check-calendar {
position: relative;
padding: 0 35px;
}
.check-calendar > button {
position: absolute;
cursor: pointer;
height: 100%;
top: 50%;
transform: translateY(-50%);
color: var(--check-calendar-main-color);
border: none;
background: transparent;
outline: none;
}
.check-calendar > button:hover {
}
.check-calendar > button svg {
fill: var(--check-calendar-main-color);
}
.check-calendar__prev {
left: 0;
}
.check-calendar__next {
right: 0;
}
.btnNextAvCalendar {
float: right;
}
tbody tr:last-child td:first-child {
border-radius: 0 0 0 7px;
}
tbody tr:last-child td:last-child {
border-radius: 0 0 7px 0;
}
tbody tr:first-child {
border-radius: 7px 7px 0 0;
background-color: transparent;
}
tbody tr:first-child td:first-child {
border-radius: 7px 0 0 0;
width: 35%;
}
tbody tr:first-child td:last-child {
border-radius: 0 7px 0 0;
}
tbody td, tbody th {
min-width: 72px;
max-width: 72px;
height: 50px;
min-height: 50px;
border-left: 1px solid #b1bcc3;
border-bottom: 1px solid #f5f5f5;
}
tbody td:first-of-type, tbody th:first-of-type {
border-left: none;
}
.check-calendar__table {
box-shadow: 0 15px 24px rgba(0, 0, 0, 0.22), 0 19px 76px rgba(0, 0, 0, 0.3);
position: relative;
width: 100%;
border-spacing: 0;
border-collapse: separate;
background: #fff;
color: #272847;
border-radius: 7px;
border-color: #3d464d;
font-size: 14px;
line-height: inherit;
text-align: center;
margin-bottom: 20px;
}
.biggerCheckbox {
-ms-transform: scale(1.5);
/* IE */
-moz-transform: scale(1.5);
/* FF */
-webkit-transform: scale(1.5);
/* Safari and Chrome */
-o-transform: scale(1.5);
/* Opera */
}
.check-calendar__header {
padding: 16px 0 16px 0;
color: #272847;
font-size: 16px;
background-color: #fff;
}
.check-calendar__header td {
border-bottom: 2px solid #e2e6e9;
}
.hSpan {
font-size: 12px;
font-weight: bold;
}
.hoverHourRow {
background: rgba(24, 144, 255, 0.22);
}
.check-calendar__row-header {
cursor: pointer;
}
.check-calendar__container {
width: 100%;
transition: opacity .4s;
opacity: 1;
}
.check-calendar__container--hide {
opacity: 0;
}
.check-calendar__hour small {
margin-left: 1px;
}
.check-calendar__hidden {
display: none;
}
.display {
display: block;
}
.check-calendar__button:disabled {
opacity: .4;
cursor: not-allowed;
} | 0.393735 | 0.109087 |
* {
margin: 0px;
padding: 0px;
}
body {
background-color: #E6E6E6;
font-family: "tahoma,verdana";
}
#container {
position: relative;
background-color: #256E43;
margin: 0 auto;
}
iframe {
overflow: hidden;
}
span {
margin-right: 10px;
}
#tanarView, #kerdesek, #orarendView, #diakok {
position: relative;
padding-top: 20px;
z-index: 1;
background-color: #256E43;
width: 100%;
height: 80px;
}
#tanarUpdate, #kerdesUpdate, #orarendUpdate, #importDiakok {
color: white;
background-color: transparent;
width: 100%;
text-align: center
}
#tanarUpdate button, #kerdesUpdate button, #orarendView button, #diakok button, #frissites {
background-color: transparent;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
margin: 10px auto 0px auto;
text-shadow: 0px 1px 3px #666666;
-webkit-box-shadow: 6px 5px 11px #666666;
-moz-box-shadow: 6px 5px 11px #666666;
box-shadow: 6px 5px 11px #666666;
font-family: Georgia;
color: white;
font-size: 19px;
padding: 0 2vw;
display: block;
}
.selector {
display: inline-block;
width: 14.9vw;
margin: 0 4.85vw 0 4.85vw;
text-align: center;
}
#inputText {
color: white;
font-size: 25px;
background-color: #256E43;
}
.textbox {
height: 25px;
width: 275px;
border-style: solid;
border-width: 0px 0px 1px 0px;
border-color: white;
outline: 0;
color: #ffffff;
}
.buttons {
display: inline-block;
}
#tanarSpan {
font-size: 18px;
color: white;
}
#1 {
padding: 5px;
}
::-webkit-input-placeholder {
color: white;
text-align: center;
font-size: 20px;
}
#tanarAdatok, #kerdesAdatok {
border: 1px solid #256E43;
margin: 40px auto;
width: 40%;
padding: 25px;
}
.labelDiv {
display: inline-block;
width: 100%;
margin-bottom: 10px;
}
.labelDivAktiv {
display: inline-block;
width: 40%;
margin-bottom: 10px;
padding-left: 50%;
}
#tanarAdatok input[type=text], #kerdesAdatok input {
float: right;
font-size: 14px;
margin: 0px;
width: 60%;
border-style: solid;
border-color: #256E43;
border-width: 0px 0px 0.5px 0px;
background-color: transparent;
color: #256E43;
}
#mentes, #hozzaad {
background-color: transparent;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
margin: 10px auto 0px auto;
text-shadow: 0px 1px 3px #666666;
-webkit-box-shadow: 6px 5px 11px #666666;
-moz-box-shadow: 6px 5px 11px #666666;
box-shadow: 6px 5px 11px #666666;
font-family: Georgia;
color: #256E43;
font-size: 19px;
padding: 0 2vw;
display: block;
}
label {
color: #256E43;
font-size: 18px;
width: 30%;
text-align: left;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #256E43;
}
.active {
background-color: #256E43;
}
.classContainer {
margin: 20px auto;
width: 90vw;
}
.fejlec {
width: 90%;
margin: 10px auto;
height: 35px;
background: #256E43;
}
.fejlecBal {
line-height: 35px;
margin: 0 3vw;
color: white;
padding-left: 35px;
padding-right: 35px;
}
.fejlecBalTanar {
line-height: 35px;
margin: 0 3vw;
color: white;
padding-left: 55px;
padding-right: 55px;
}
.osszesites {
width: 90%;
margin: 10px auto;
min-height: 35px;
-webkit-border-radius: 2px;
border-radius: 2px;
font-weight: 300;
background: #256E43;
}
.tanar {
font-size: 14px;
border: 1px solid #7DAB93;
width: 90%;
margin: 2px auto;
padding: 1px;
min-height: 20px;
-webkit-border-radius: 2px;
border-radius: 2px;
color: #7DAB93;
font-weight: 300;
}
.kerdesDiv {
border: 1px solid #7DAB93;
width: 90%;
margin: 2px auto;
padding: 1px;
min-height: 20px;
-webkit-border-radius: 2px;
border-radius: 2px;
color: #7DAB93;
font-weight: 300;
}
.tan {
line-height: 20px;
margin: 0 3vw;
display: inline-block;
width: 300px;
color: #000000;
}
.tanOrarend {
line-height: 20px;
margin: 0 3vw;
display: inline-block;
width: 350px;
color: #000000;
}
.kerdesSpan {
line-height: 10px;
margin: 0 3vw;
display: inline-block;
width: 70%;
color: #000000;
}
.tanszek {
line-height: 20px;
margin: 0 3vw;
display: inline-block;
width: 500px;
color: #000000;
padding: 1px;
}
.tanGomb {
line-height: 5px;
display: inline-block;
float: right;
margin: 0 1vw;
padding: 1px;
}
.tanGombTorol {
line-height: 20px;
display: inline-block;
float: right;
margin: 0 2vw;
padding-right: 2px;
}
.ujTanGomb {
line-height: 20px;
display: inline-block;
float: right;
margin: 0 3vw;
padding-top: 7px;
}
#hozzaadas:link, #hozzaadas:visited {
background-color: #256E43;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
}
#modosit:hover, #modosit:active {
background-color: #256E43;
color: black;
}
#table {
width: 100%;
display: table;
}
#top {
display: table-cell;
position: relative;
width: 100%;
height: 100px;
vertical-align: middle;
}
#top h2 {
text-align: center;
color: #256E43;
}
.selector {
display: inline-block;
width: 14.9vw;
margin: 0 4.85vw 0 4.85vw;
text-align: center;
}
select {
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background: transparent no-repeat scroll 319px center;
color: #ffffff;
text-align: center;
overflow: hidden;
width: 200px;
font-size: 19px;
box-shadow: 1px 1px 11px #d3d3d3;
}
#felev{
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background: transparent no-repeat scroll 319px center;
color: #ffffff;
text-align: center;
overflow: hidden;
width: 100px;
font-size: 19px;
box-shadow: 1px 1px 11px #d3d3d3;
}
.modositTantargy{
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background: transparent no-repeat scroll 319px center;
color: #256E43;
text-align: center;
overflow: hidden;
width: 450px;
font-size: 19px;
box-shadow: 1px 1px 11px #d3d3d3;
float: right;
}
.modositTantargy option{
background-color: transparent;
color: #256E43;
opacity: .7;
z-index: -1;
}
select option {
background-color: #256E43;
color: #ffffff;
opacity: .7;
z-index: -1;
}
#div1 {
color: white;
background-color: #256E43;
padding-bottom: 15px;
width: 100%;
text-align: center;
}
#orarend {
background-color: transparent;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
margin-right: 30px;
margin-top: 30px;
font-family: Georgia;
color: #ffffff;
width: 150px;
text-align: center;
font-size: 19px;
padding: 0 2vw;
}
#tantargySpan {
line-height: 35px;
color: black;
margin: 0 3vw;
}
#tanar {
line-height: 35px;
margin: 0 3vw;
color: black;
}
.fejlecBalOrarend {
line-height: 35px;
margin: 0 3vw;
color: white;
padding-left: 300px;
padding-right: 35px;
}
#popup, #popup2, #popup3,#popupMessage,#popupJelszo, #veglegesit,#popupTorol {
display: none;
width: 100vw;
height: 100vh;
position: absolute;
background: rgba(0, 0, 0, .5);
top: 0px;
left: 0px;
z-index: 10;
}
#popup form, #popup2 form, #popup3 form {
margin: calc(50vh - 175px) auto 0 auto;
width: 360px;
background-color: #E6E6E6;
height: 250px;
box-sizing: border-box;
padding-top: 30px;
text-align: center;
}
#popupJelszo form{
margin: calc(50vh - 175px) auto 0 auto;
width: 500px;
background-color: #E6E6E6;
height: 500px;
box-sizing: border-box;
padding-top: 30px;
text-align: center;
}
#veglegesit form{
margin: calc(50vh - 175px) auto 0 auto;
width: 300px;
background-color: #E6E6E6;
height: 200px;
box-sizing: border-box;
padding-top: 30px;
text-align: center;
}
#popupMessage form{
margin: calc(50vh - 175px) auto 0 auto;
width: 200px;
background-color: #E6E6E6;
height: 200px;
box-sizing: border-box;
padding-top: 30px;
text-align: center;
}
#torles{
margin: calc(50vh - 175px) auto 0 auto;
width: 300px;
background-color: #E6E6E6;
height: 180px;
box-sizing: border-box;
padding-top: 30px;
text-align: center;
}
#popup form input, #popup2 form input, #popup3 form input, #popupJelszo form input {
width: 200px;
height: 25px;
border: 0;
margin: 10px auto 45px auto;
display: block;
}
#popup form button, #popup2 form button, #popup3 form button, #popupJelszo form button, #popupMessage form button, #veglegesit form button{
background-color: #256E43;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
margin: 10px auto 0px auto;
text-shadow: 0px 1px 3px #666666;
-webkit-box-shadow: 6px 5px 11px #666666;
-moz-box-shadow: 6px 5px 11px #666666;
box-shadow: 6px 5px 11px #666666;
font-family: Georgia;
color: white;
font-size: 19px;
padding: 0 2vw;
display: inline-block;
}
#popupTorol button{
background-color: #256E43;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
margin: 10px auto 0px auto;
text-shadow: 0px 1px 3px #666666;
-webkit-box-shadow: 6px 5px 11px #666666;
-moz-box-shadow: 6px 5px 11px #666666;
box-shadow: 6px 5px 11px #666666;
font-family: Georgia;
color: white;
font-size: 19px;
padding: 0 2vw;
display: inline-block;
}
#popup form textarea, #popup2 form textarea, #popup3 form textarea, #popupJelszo form textarea {
height: 100px;
width: 200px;
}
.popupButtonContainer {
display: inline-block;
margin: 10px auto 0px auto;
}
.popupTitle {
color: #256E43;
font-size: 30px;
margin: 0px auto 40px auto;
}
.stop-scrolling {
height: 100%;
overflow: hidden;
}
li.dropdown {
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #E6E6E6;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: #f1f1f1
}
.dropdown:hover .dropdown-content {
display: block;
}
#popupJelszo input{
font-size: 14px;
margin: 0px;
border-color: #256E43;
border-width: 10px;
background: #f0f0f0;
color: #256E43;
}
.alert-danger,.alert-success{
font-size: 20px;
color: white;
}
#exportTanar a,#importDiakok a,#kerdesek a {
color: #FFFFFF;
text-decoration: none;
}
#top .alert-success, #top .alert-danger{
text-align: center;
color: #256E43
}
#tanarAdatok #szerkesztes, #tanarAdatok #mentes{
background-color: transparent;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
margin: 10px auto 0px auto;
text-shadow: 0px 1px 3px #666666;
-webkit-box-shadow: 6px 5px 11px #666666;
-moz-box-shadow: 6px 5px 11px #666666;
box-shadow: 6px 5px 11px #666666;
font-family: Georgia;
color: #256E43;
font-size: 19px;
padding: 0 2vw;
display: block;
width: 180px;
}
#modositTanar, .torolTanar {
border-radius: 3px;
background-color: transparent;
border: none;
color: #256E43;
text-align: center;
font-size: 13px;
font-weight: bold;
padding-bottom: 1px;
width: 90px;
transition: all 0.5s;
cursor: pointer;
margin: 2px;
}
#modositTanar span, .torolTanar span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
#modositTanar span:after, .torolTanar span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -5px;
transition: 0.5s;
}
#modositTanar:hover span, .torolTanar:hover span {
padding-right: 20px;
}
#modositTanar:hover span:after , .torolTanar:hover span:after {
opacity: 1;
right: 0;
}
.modositGombok{
float:right;
} | public/css/adminStyle.css | * {
margin: 0px;
padding: 0px;
}
body {
background-color: #E6E6E6;
font-family: "tahoma,verdana";
}
#container {
position: relative;
background-color: #256E43;
margin: 0 auto;
}
iframe {
overflow: hidden;
}
span {
margin-right: 10px;
}
#tanarView, #kerdesek, #orarendView, #diakok {
position: relative;
padding-top: 20px;
z-index: 1;
background-color: #256E43;
width: 100%;
height: 80px;
}
#tanarUpdate, #kerdesUpdate, #orarendUpdate, #importDiakok {
color: white;
background-color: transparent;
width: 100%;
text-align: center
}
#tanarUpdate button, #kerdesUpdate button, #orarendView button, #diakok button, #frissites {
background-color: transparent;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
margin: 10px auto 0px auto;
text-shadow: 0px 1px 3px #666666;
-webkit-box-shadow: 6px 5px 11px #666666;
-moz-box-shadow: 6px 5px 11px #666666;
box-shadow: 6px 5px 11px #666666;
font-family: Georgia;
color: white;
font-size: 19px;
padding: 0 2vw;
display: block;
}
.selector {
display: inline-block;
width: 14.9vw;
margin: 0 4.85vw 0 4.85vw;
text-align: center;
}
#inputText {
color: white;
font-size: 25px;
background-color: #256E43;
}
.textbox {
height: 25px;
width: 275px;
border-style: solid;
border-width: 0px 0px 1px 0px;
border-color: white;
outline: 0;
color: #ffffff;
}
.buttons {
display: inline-block;
}
#tanarSpan {
font-size: 18px;
color: white;
}
#1 {
padding: 5px;
}
::-webkit-input-placeholder {
color: white;
text-align: center;
font-size: 20px;
}
#tanarAdatok, #kerdesAdatok {
border: 1px solid #256E43;
margin: 40px auto;
width: 40%;
padding: 25px;
}
.labelDiv {
display: inline-block;
width: 100%;
margin-bottom: 10px;
}
.labelDivAktiv {
display: inline-block;
width: 40%;
margin-bottom: 10px;
padding-left: 50%;
}
#tanarAdatok input[type=text], #kerdesAdatok input {
float: right;
font-size: 14px;
margin: 0px;
width: 60%;
border-style: solid;
border-color: #256E43;
border-width: 0px 0px 0.5px 0px;
background-color: transparent;
color: #256E43;
}
#mentes, #hozzaad {
background-color: transparent;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
margin: 10px auto 0px auto;
text-shadow: 0px 1px 3px #666666;
-webkit-box-shadow: 6px 5px 11px #666666;
-moz-box-shadow: 6px 5px 11px #666666;
box-shadow: 6px 5px 11px #666666;
font-family: Georgia;
color: #256E43;
font-size: 19px;
padding: 0 2vw;
display: block;
}
label {
color: #256E43;
font-size: 18px;
width: 30%;
text-align: left;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
}
li {
float: left;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #256E43;
}
.active {
background-color: #256E43;
}
.classContainer {
margin: 20px auto;
width: 90vw;
}
.fejlec {
width: 90%;
margin: 10px auto;
height: 35px;
background: #256E43;
}
.fejlecBal {
line-height: 35px;
margin: 0 3vw;
color: white;
padding-left: 35px;
padding-right: 35px;
}
.fejlecBalTanar {
line-height: 35px;
margin: 0 3vw;
color: white;
padding-left: 55px;
padding-right: 55px;
}
.osszesites {
width: 90%;
margin: 10px auto;
min-height: 35px;
-webkit-border-radius: 2px;
border-radius: 2px;
font-weight: 300;
background: #256E43;
}
.tanar {
font-size: 14px;
border: 1px solid #7DAB93;
width: 90%;
margin: 2px auto;
padding: 1px;
min-height: 20px;
-webkit-border-radius: 2px;
border-radius: 2px;
color: #7DAB93;
font-weight: 300;
}
.kerdesDiv {
border: 1px solid #7DAB93;
width: 90%;
margin: 2px auto;
padding: 1px;
min-height: 20px;
-webkit-border-radius: 2px;
border-radius: 2px;
color: #7DAB93;
font-weight: 300;
}
.tan {
line-height: 20px;
margin: 0 3vw;
display: inline-block;
width: 300px;
color: #000000;
}
.tanOrarend {
line-height: 20px;
margin: 0 3vw;
display: inline-block;
width: 350px;
color: #000000;
}
.kerdesSpan {
line-height: 10px;
margin: 0 3vw;
display: inline-block;
width: 70%;
color: #000000;
}
.tanszek {
line-height: 20px;
margin: 0 3vw;
display: inline-block;
width: 500px;
color: #000000;
padding: 1px;
}
.tanGomb {
line-height: 5px;
display: inline-block;
float: right;
margin: 0 1vw;
padding: 1px;
}
.tanGombTorol {
line-height: 20px;
display: inline-block;
float: right;
margin: 0 2vw;
padding-right: 2px;
}
.ujTanGomb {
line-height: 20px;
display: inline-block;
float: right;
margin: 0 3vw;
padding-top: 7px;
}
#hozzaadas:link, #hozzaadas:visited {
background-color: #256E43;
color: white;
text-align: center;
text-decoration: none;
display: inline-block;
}
#modosit:hover, #modosit:active {
background-color: #256E43;
color: black;
}
#table {
width: 100%;
display: table;
}
#top {
display: table-cell;
position: relative;
width: 100%;
height: 100px;
vertical-align: middle;
}
#top h2 {
text-align: center;
color: #256E43;
}
.selector {
display: inline-block;
width: 14.9vw;
margin: 0 4.85vw 0 4.85vw;
text-align: center;
}
select {
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background: transparent no-repeat scroll 319px center;
color: #ffffff;
text-align: center;
overflow: hidden;
width: 200px;
font-size: 19px;
box-shadow: 1px 1px 11px #d3d3d3;
}
#felev{
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background: transparent no-repeat scroll 319px center;
color: #ffffff;
text-align: center;
overflow: hidden;
width: 100px;
font-size: 19px;
box-shadow: 1px 1px 11px #d3d3d3;
}
.modositTantargy{
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
background: transparent no-repeat scroll 319px center;
color: #256E43;
text-align: center;
overflow: hidden;
width: 450px;
font-size: 19px;
box-shadow: 1px 1px 11px #d3d3d3;
float: right;
}
.modositTantargy option{
background-color: transparent;
color: #256E43;
opacity: .7;
z-index: -1;
}
select option {
background-color: #256E43;
color: #ffffff;
opacity: .7;
z-index: -1;
}
#div1 {
color: white;
background-color: #256E43;
padding-bottom: 15px;
width: 100%;
text-align: center;
}
#orarend {
background-color: transparent;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
margin-right: 30px;
margin-top: 30px;
font-family: Georgia;
color: #ffffff;
width: 150px;
text-align: center;
font-size: 19px;
padding: 0 2vw;
}
#tantargySpan {
line-height: 35px;
color: black;
margin: 0 3vw;
}
#tanar {
line-height: 35px;
margin: 0 3vw;
color: black;
}
.fejlecBalOrarend {
line-height: 35px;
margin: 0 3vw;
color: white;
padding-left: 300px;
padding-right: 35px;
}
#popup, #popup2, #popup3,#popupMessage,#popupJelszo, #veglegesit,#popupTorol {
display: none;
width: 100vw;
height: 100vh;
position: absolute;
background: rgba(0, 0, 0, .5);
top: 0px;
left: 0px;
z-index: 10;
}
#popup form, #popup2 form, #popup3 form {
margin: calc(50vh - 175px) auto 0 auto;
width: 360px;
background-color: #E6E6E6;
height: 250px;
box-sizing: border-box;
padding-top: 30px;
text-align: center;
}
#popupJelszo form{
margin: calc(50vh - 175px) auto 0 auto;
width: 500px;
background-color: #E6E6E6;
height: 500px;
box-sizing: border-box;
padding-top: 30px;
text-align: center;
}
#veglegesit form{
margin: calc(50vh - 175px) auto 0 auto;
width: 300px;
background-color: #E6E6E6;
height: 200px;
box-sizing: border-box;
padding-top: 30px;
text-align: center;
}
#popupMessage form{
margin: calc(50vh - 175px) auto 0 auto;
width: 200px;
background-color: #E6E6E6;
height: 200px;
box-sizing: border-box;
padding-top: 30px;
text-align: center;
}
#torles{
margin: calc(50vh - 175px) auto 0 auto;
width: 300px;
background-color: #E6E6E6;
height: 180px;
box-sizing: border-box;
padding-top: 30px;
text-align: center;
}
#popup form input, #popup2 form input, #popup3 form input, #popupJelszo form input {
width: 200px;
height: 25px;
border: 0;
margin: 10px auto 45px auto;
display: block;
}
#popup form button, #popup2 form button, #popup3 form button, #popupJelszo form button, #popupMessage form button, #veglegesit form button{
background-color: #256E43;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
margin: 10px auto 0px auto;
text-shadow: 0px 1px 3px #666666;
-webkit-box-shadow: 6px 5px 11px #666666;
-moz-box-shadow: 6px 5px 11px #666666;
box-shadow: 6px 5px 11px #666666;
font-family: Georgia;
color: white;
font-size: 19px;
padding: 0 2vw;
display: inline-block;
}
#popupTorol button{
background-color: #256E43;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
margin: 10px auto 0px auto;
text-shadow: 0px 1px 3px #666666;
-webkit-box-shadow: 6px 5px 11px #666666;
-moz-box-shadow: 6px 5px 11px #666666;
box-shadow: 6px 5px 11px #666666;
font-family: Georgia;
color: white;
font-size: 19px;
padding: 0 2vw;
display: inline-block;
}
#popup form textarea, #popup2 form textarea, #popup3 form textarea, #popupJelszo form textarea {
height: 100px;
width: 200px;
}
.popupButtonContainer {
display: inline-block;
margin: 10px auto 0px auto;
}
.popupTitle {
color: #256E43;
font-size: 30px;
margin: 0px auto 40px auto;
}
.stop-scrolling {
height: 100%;
overflow: hidden;
}
li.dropdown {
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #E6E6E6;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: #f1f1f1
}
.dropdown:hover .dropdown-content {
display: block;
}
#popupJelszo input{
font-size: 14px;
margin: 0px;
border-color: #256E43;
border-width: 10px;
background: #f0f0f0;
color: #256E43;
}
.alert-danger,.alert-success{
font-size: 20px;
color: white;
}
#exportTanar a,#importDiakok a,#kerdesek a {
color: #FFFFFF;
text-decoration: none;
}
#top .alert-success, #top .alert-danger{
text-align: center;
color: #256E43
}
#tanarAdatok #szerkesztes, #tanarAdatok #mentes{
background-color: transparent;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
margin: 10px auto 0px auto;
text-shadow: 0px 1px 3px #666666;
-webkit-box-shadow: 6px 5px 11px #666666;
-moz-box-shadow: 6px 5px 11px #666666;
box-shadow: 6px 5px 11px #666666;
font-family: Georgia;
color: #256E43;
font-size: 19px;
padding: 0 2vw;
display: block;
width: 180px;
}
#modositTanar, .torolTanar {
border-radius: 3px;
background-color: transparent;
border: none;
color: #256E43;
text-align: center;
font-size: 13px;
font-weight: bold;
padding-bottom: 1px;
width: 90px;
transition: all 0.5s;
cursor: pointer;
margin: 2px;
}
#modositTanar span, .torolTanar span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.5s;
}
#modositTanar span:after, .torolTanar span:after {
content: '\00bb';
position: absolute;
opacity: 0;
top: 0;
right: -5px;
transition: 0.5s;
}
#modositTanar:hover span, .torolTanar:hover span {
padding-right: 20px;
}
#modositTanar:hover span:after , .torolTanar:hover span:after {
opacity: 1;
right: 0;
}
.modositGombok{
float:right;
} | 0.429429 | 0.143818 |
.bar-left {
float: right;
text-align: right;
}
.bar-right {
float: left;
text-align: left;
}
.pagename {
float: right;
text-align: right;
}
.logo {
float: left;
text-align: left;
}
label {
text-align: left;
}
label.simple {
text-align: right;
}
div.meta div.user {
float: right
}
div.meta div.doc {
text-align: left;
}
/* ------------------ Design corrections --------------------------------- */
div.dokuwiki ul,
div.dokuwiki ol {
margin: 0.5em 1.5em 0.5em 0;
}
div.dokuwiki a.urlextern,
div.dokuwiki a.interwiki,
div.dokuwiki a.windows,
div.dokuwiki a.mail,
div.dokuwiki a.mail.JSnocheck {
/* should work but doesn't - so we just disable icons here*/
/*
background-position: right 1px;
padding-right: 16px;
*/
background-image: none !important;
padding: 0px 0px 0px 0px;
}
div.dokuwiki div.secedit input.button {
float: left;
}
/* headlines */
div.dokuwiki h1, div.dokuwiki h2, div.dokuwiki h3, div.dokuwiki h4, div.dokuwiki h5 {
clear: right;
}
/* special headlines */
div.dokuwiki h1 {margin-left: 0px; margin-right: 0px;}
div.dokuwiki h2 {margin-left: 0px; margin-right: 20px;}
div.dokuwiki h3 {margin-left: 0px; margin-right: 40px;}
div.dokuwiki h4 {margin-left: 0px; margin-right: 60px;}
div.dokuwiki h5 {margin-left: 0px; margin-right: 80px;}
/* indent different sections */
div.dokuwiki div.level1 {margin-left: 0px; margin-right: 3px;}
div.dokuwiki div.level2 {margin-left: 0px; margin-right: 23px;}
div.dokuwiki div.level3 {margin-left: 0px; margin-right: 43px;}
div.dokuwiki div.level4 {margin-left: 0px; margin-right: 63px;}
div.dokuwiki div.level5 {margin-left: 0px; margin-right: 83px;}
/* TOC control */
div.dokuwiki div.toc {
float: left;
}
div.dokuwiki div.tocheader {
text-align: right;
}
div.dokuwiki #toc__inside {
text-align: right;
}
div.dokuwiki ul.toc {
padding: 0;
padding-right: 1em;
}
div.dokuwiki ul.toc li {
background-position: right 0.6em;
padding-right:0.4em;
direction: rtl;
}
div.dokuwiki ul.toc li.clear {
padding-right:0.4em;
}
div.dokuwiki pre {
text-align: left;
} | template/mysimple/rtl.css | .bar-left {
float: right;
text-align: right;
}
.bar-right {
float: left;
text-align: left;
}
.pagename {
float: right;
text-align: right;
}
.logo {
float: left;
text-align: left;
}
label {
text-align: left;
}
label.simple {
text-align: right;
}
div.meta div.user {
float: right
}
div.meta div.doc {
text-align: left;
}
/* ------------------ Design corrections --------------------------------- */
div.dokuwiki ul,
div.dokuwiki ol {
margin: 0.5em 1.5em 0.5em 0;
}
div.dokuwiki a.urlextern,
div.dokuwiki a.interwiki,
div.dokuwiki a.windows,
div.dokuwiki a.mail,
div.dokuwiki a.mail.JSnocheck {
/* should work but doesn't - so we just disable icons here*/
/*
background-position: right 1px;
padding-right: 16px;
*/
background-image: none !important;
padding: 0px 0px 0px 0px;
}
div.dokuwiki div.secedit input.button {
float: left;
}
/* headlines */
div.dokuwiki h1, div.dokuwiki h2, div.dokuwiki h3, div.dokuwiki h4, div.dokuwiki h5 {
clear: right;
}
/* special headlines */
div.dokuwiki h1 {margin-left: 0px; margin-right: 0px;}
div.dokuwiki h2 {margin-left: 0px; margin-right: 20px;}
div.dokuwiki h3 {margin-left: 0px; margin-right: 40px;}
div.dokuwiki h4 {margin-left: 0px; margin-right: 60px;}
div.dokuwiki h5 {margin-left: 0px; margin-right: 80px;}
/* indent different sections */
div.dokuwiki div.level1 {margin-left: 0px; margin-right: 3px;}
div.dokuwiki div.level2 {margin-left: 0px; margin-right: 23px;}
div.dokuwiki div.level3 {margin-left: 0px; margin-right: 43px;}
div.dokuwiki div.level4 {margin-left: 0px; margin-right: 63px;}
div.dokuwiki div.level5 {margin-left: 0px; margin-right: 83px;}
/* TOC control */
div.dokuwiki div.toc {
float: left;
}
div.dokuwiki div.tocheader {
text-align: right;
}
div.dokuwiki #toc__inside {
text-align: right;
}
div.dokuwiki ul.toc {
padding: 0;
padding-right: 1em;
}
div.dokuwiki ul.toc li {
background-position: right 0.6em;
padding-right:0.4em;
direction: rtl;
}
div.dokuwiki ul.toc li.clear {
padding-right:0.4em;
}
div.dokuwiki pre {
text-align: left;
} | 0.506836 | 0.349006 |
body {
font-family: 'October Regular 3';
}
p {
line-height: 1.5;
}
h1 {
font-weight: 500;
}
h3 {
font-weight: 500;
}
h2 {
font-weight: 500;
}
.project-title {
/* h3 styling */
display: block;
font-size: 1.17em;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
}
p {
font-family: 'October 3';
font-weight: 300;
}
.section-title {
font-size: 40px;
margin-bottom: 50px;
}
section {
text-align: center;
padding: 60px 100px;
}
.explore {
padding-top: 0 !important;
}
.join {
background-color: #fbf8ff;
}
.join-columns {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.column {
flex-basis: 500px;
}
.column::before {
content: '';
position: absolute;
height: 48px;
background: red;
width: 1px;
top: 0;
right: -1px;
}
.button {
padding: 10px;
font-size: 20px;
font-weight: 600;
height: 55px;
color: #fff;
border: none;
}
.button.pink {
background-color: #e5166b;
}
.form-submit-message {
position: absolute;
top: 55px;
visibility: hidden;
color: #515151;
left: 0;
}
.project-card {
text-align: left;
background-color: #fff;
border-radius: 2px;
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 4px 0 rgba(0, 0, 0, 0.12);
padding: 40px;
width: 293px;
margin-bottom: 30px;
margin-right: 15px;
margin-left: 15px;
padding-bottom: 30px;
}
#projects {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
list-style: none;
padding-inline: 0;
}
.project-description {
font-size: 16px;
height: 100px;
}
.project-links {
float: right;
}
.project-stars {
transition: 0.5s;
opacity: 0;
}
.project-stars > .fas {
margin-right: 5px;
}
.pink.link {
color: #e5166b;
text-decoration: none;
margin-left: 20px;
font-weight: 700;
}
.hero {
height: 500px;
}
.hero .stripe-bg {
background-image: url('../img/background-full.png');
background-size: auto; /* <------ */
background-repeat: no-repeat;
background-position: top center;
background-position-y: -135px;
height: 650px; width: 100%;
position: absolute; z-index: -1;
top: 0; left: 0;
}
.slack-card {
text-align: center;
background-color: #fff;
border-radius: 2px;
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 4px 0 rgba(0, 0, 0, 0.12);
width: 586px;
max-width: 90%;
margin: 0 auto;
margin-top: -400px;
}
.join .slack-card input {
height: auto;
box-sizing: border-box;
}
.join.slack {
padding: 0;
background: #ffffff;
margin-bottom: 50px;
}
.slack-wrapper {
padding: 40px;
}
#slack-submit-button {
position: relative;
z-index: 10;
}
.header {
display: flex;
justify-content: space-between;
}
.navigation {
color: #FFFFFF;
font-size: 16px;
font-weight: 700;
}
.navigation span {
margin-left: 20px;
}
.logo {
display: flex;
}
.header .logo .tophat-logo {
width: 139px;
height: 19px;
float: left;
padding-top: 9px;
margin-right: 25px;
}
.header .logo .logo-divider {
height: 40px;
width: 1px;
background: white;
opacity: 0.5;
float: left;
margin-top: -2px;
}
.header .logo .open-source-logo {
width: 218px;
height: 36px;
margin-left: 25px;
float: left;
}
@media (max-width: 650px) {
.logo { margin-left: 15px; display: block; }
.header .logo .tophat-logo { padding: 0; margin: 0; float: none; display: block; }
.header .logo .logo-divider { display: none; }
.header .logo .open-source-logo { width: 136px; height: 22px; margin: 14px 0 0; float: none; display: block; }
}
.banner {
text-align: left;
margin-top: 100px;
margin-left: 50px;
color: #FFFFFF;
}
.banner h1 {
font-size: 58px;
}
.banner .subtext {
font-size: 22px;
}
.footer {
padding-top: 32px;
padding-bottom: 48px;
}
.footer .copyright {
float: right;
font-weight: 300;
}
.footer .links {
float: left;
}
.join {
display: flex;
text-align: left;
}
.join p {
max-width: 960px;
padding-top: 0;
font-size: 20px;
}
.links span {
margin-right: 15px;
}
.hero {
padding-top: 60px;
}
.container {
max-width: 1250px;
margin: 0 auto;
}
.join h1 {
text-align: center;
}
.join input {
width: 100%;
padding: 12px;
}
.column-content {
height: 170px;
}
.border{
border-left: 2px solid #d9d9d9;
}
.field i.fa {
position: absolute;
top: 15px;
right: 15px;
color: green;
visibility: hidden;
}
@media (max-width: 1024px) {
.banner h1 {
font-size: 44px;
}
.banner .subtext {
font-size: 18px;
}
.banner {
margin-top: 100px;
}
.project-card {
width: 250px;
}
.column-content {
height: 120px;
}
.column-content p {
font-size: 16px;
}
section {
padding-left: 50px;
padding-right: 50px;
}
.border {
display: none;
}
}
@media (max-width: 960px) {
.header {
padding-left: 10px;
padding-right: 10px;
}
.navigation span {
margin-left: 10px;
}
.join {
text-align: center;
}
.banner {
margin-left: 20px;
}
.banner h1 {
font-size: 36px;
}
section {
padding-left: 5px;
padding-right: 5px;
}
.button {
height: 40px;
font-size: 16px;
}
.column-content {
height: 150px;
}
#email {
width: 80%;
height: 40px;
font-size: 16px;
}
.links span {
margin-right: 5px;
}
.footer {
padding-left: 10px;
padding-right: 10px;
}
.form-submit-message {
display: block;
position: relative;
top: 5px;
}
.field i.fa {
right: 50px;
}
}
.button {
padding: 10px 18px 9px;
}
.button.disabled {
opacity: 0.5;
}
.join {
padding-bottom: 80px;
padding-top: 45px;
}
.explore {
margin-top: -30px;
}
.navigation a {
text-decoration: none;
color: inherit;
}
.project-logo {
height: 55px;
}
.project-logo img {
max-height: 55px;
}
.button:hover {
background-color: #f34a79;
cursor: pointer;
}
#success-message {
position: fixed;
margin-top: 1000px;
}
.field {
position: relative;
}
.links a {
text-decoration: none;
color: black;
}
a.button {
text-decoration: none;
color: inherit;
height: 55px;
} | static/css/styles.css | body {
font-family: 'October Regular 3';
}
p {
line-height: 1.5;
}
h1 {
font-weight: 500;
}
h3 {
font-weight: 500;
}
h2 {
font-weight: 500;
}
.project-title {
/* h3 styling */
display: block;
font-size: 1.17em;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
}
p {
font-family: 'October 3';
font-weight: 300;
}
.section-title {
font-size: 40px;
margin-bottom: 50px;
}
section {
text-align: center;
padding: 60px 100px;
}
.explore {
padding-top: 0 !important;
}
.join {
background-color: #fbf8ff;
}
.join-columns {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.column {
flex-basis: 500px;
}
.column::before {
content: '';
position: absolute;
height: 48px;
background: red;
width: 1px;
top: 0;
right: -1px;
}
.button {
padding: 10px;
font-size: 20px;
font-weight: 600;
height: 55px;
color: #fff;
border: none;
}
.button.pink {
background-color: #e5166b;
}
.form-submit-message {
position: absolute;
top: 55px;
visibility: hidden;
color: #515151;
left: 0;
}
.project-card {
text-align: left;
background-color: #fff;
border-radius: 2px;
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 4px 0 rgba(0, 0, 0, 0.12);
padding: 40px;
width: 293px;
margin-bottom: 30px;
margin-right: 15px;
margin-left: 15px;
padding-bottom: 30px;
}
#projects {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
list-style: none;
padding-inline: 0;
}
.project-description {
font-size: 16px;
height: 100px;
}
.project-links {
float: right;
}
.project-stars {
transition: 0.5s;
opacity: 0;
}
.project-stars > .fas {
margin-right: 5px;
}
.pink.link {
color: #e5166b;
text-decoration: none;
margin-left: 20px;
font-weight: 700;
}
.hero {
height: 500px;
}
.hero .stripe-bg {
background-image: url('../img/background-full.png');
background-size: auto; /* <------ */
background-repeat: no-repeat;
background-position: top center;
background-position-y: -135px;
height: 650px; width: 100%;
position: absolute; z-index: -1;
top: 0; left: 0;
}
.slack-card {
text-align: center;
background-color: #fff;
border-radius: 2px;
box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 4px 0 rgba(0, 0, 0, 0.12);
width: 586px;
max-width: 90%;
margin: 0 auto;
margin-top: -400px;
}
.join .slack-card input {
height: auto;
box-sizing: border-box;
}
.join.slack {
padding: 0;
background: #ffffff;
margin-bottom: 50px;
}
.slack-wrapper {
padding: 40px;
}
#slack-submit-button {
position: relative;
z-index: 10;
}
.header {
display: flex;
justify-content: space-between;
}
.navigation {
color: #FFFFFF;
font-size: 16px;
font-weight: 700;
}
.navigation span {
margin-left: 20px;
}
.logo {
display: flex;
}
.header .logo .tophat-logo {
width: 139px;
height: 19px;
float: left;
padding-top: 9px;
margin-right: 25px;
}
.header .logo .logo-divider {
height: 40px;
width: 1px;
background: white;
opacity: 0.5;
float: left;
margin-top: -2px;
}
.header .logo .open-source-logo {
width: 218px;
height: 36px;
margin-left: 25px;
float: left;
}
@media (max-width: 650px) {
.logo { margin-left: 15px; display: block; }
.header .logo .tophat-logo { padding: 0; margin: 0; float: none; display: block; }
.header .logo .logo-divider { display: none; }
.header .logo .open-source-logo { width: 136px; height: 22px; margin: 14px 0 0; float: none; display: block; }
}
.banner {
text-align: left;
margin-top: 100px;
margin-left: 50px;
color: #FFFFFF;
}
.banner h1 {
font-size: 58px;
}
.banner .subtext {
font-size: 22px;
}
.footer {
padding-top: 32px;
padding-bottom: 48px;
}
.footer .copyright {
float: right;
font-weight: 300;
}
.footer .links {
float: left;
}
.join {
display: flex;
text-align: left;
}
.join p {
max-width: 960px;
padding-top: 0;
font-size: 20px;
}
.links span {
margin-right: 15px;
}
.hero {
padding-top: 60px;
}
.container {
max-width: 1250px;
margin: 0 auto;
}
.join h1 {
text-align: center;
}
.join input {
width: 100%;
padding: 12px;
}
.column-content {
height: 170px;
}
.border{
border-left: 2px solid #d9d9d9;
}
.field i.fa {
position: absolute;
top: 15px;
right: 15px;
color: green;
visibility: hidden;
}
@media (max-width: 1024px) {
.banner h1 {
font-size: 44px;
}
.banner .subtext {
font-size: 18px;
}
.banner {
margin-top: 100px;
}
.project-card {
width: 250px;
}
.column-content {
height: 120px;
}
.column-content p {
font-size: 16px;
}
section {
padding-left: 50px;
padding-right: 50px;
}
.border {
display: none;
}
}
@media (max-width: 960px) {
.header {
padding-left: 10px;
padding-right: 10px;
}
.navigation span {
margin-left: 10px;
}
.join {
text-align: center;
}
.banner {
margin-left: 20px;
}
.banner h1 {
font-size: 36px;
}
section {
padding-left: 5px;
padding-right: 5px;
}
.button {
height: 40px;
font-size: 16px;
}
.column-content {
height: 150px;
}
#email {
width: 80%;
height: 40px;
font-size: 16px;
}
.links span {
margin-right: 5px;
}
.footer {
padding-left: 10px;
padding-right: 10px;
}
.form-submit-message {
display: block;
position: relative;
top: 5px;
}
.field i.fa {
right: 50px;
}
}
.button {
padding: 10px 18px 9px;
}
.button.disabled {
opacity: 0.5;
}
.join {
padding-bottom: 80px;
padding-top: 45px;
}
.explore {
margin-top: -30px;
}
.navigation a {
text-decoration: none;
color: inherit;
}
.project-logo {
height: 55px;
}
.project-logo img {
max-height: 55px;
}
.button:hover {
background-color: #f34a79;
cursor: pointer;
}
#success-message {
position: fixed;
margin-top: 1000px;
}
.field {
position: relative;
}
.links a {
text-decoration: none;
color: black;
}
a.button {
text-decoration: none;
color: inherit;
height: 55px;
} | 0.592784 | 0.158826 |
html{overflow-y:scroll;} /* Forces a scrollbar when the viewport is larger than the websites content - CSS3 */
body{margin:0; padding:0; font-size:13px; font-family:Georgia, "Times New Roman", Times, serif; color:#919191;}
.clear:after{content:"."; display:block; height:0; clear:both; visibility:hidden; line-height:0;}
.clear{display:block; clear:both;}
html[xmlns] .clear{display:block;}
* html .clear{height:1%;}
a{outline:none; text-decoration:none;}
code{font-weight:normal; font-style:normal; font-family:Georgia, "Times New Roman", Times, serif;}
.fl_left{float:left;}
.fl_right{float:right;}
img{margin:0; padding:0; border:none; line-height:normal; vertical-align:middle;}
.imgholder, .imgl, .imgr{padding:4px; border:1px solid #D6D6D6; text-align:center;}
.imgl{float:left; margin:0 15px 15px 0; clear:left;}
.imgr{float:right; margin:0 0 15px 15px; clear:right;}
/*----------------------------------------------HTML 5 Overrides-------------------------------------*/
address, article, aside, figcaption, figure, footer, header, hgroup, nav, section{display:block; margin:0; padding:0;}
q{display:block; padding:0 10px 8px 10px; color:#979797; background-color:#ECECEC; font-style:italic; line-height:normal;}
q:before{content:'� '; font-size:26px;}
q:after{content:' �'; font-size:26px; line-height:0;}
/* ----------------------------------------------Wrapper-------------------------------------*/
div.wrapper{display:block; width:100%; margin:0; padding:0; text-align:left;}
.row1, .row1 a{color:#C0BAB6; background-color:#333333;}
.row2{color:#979797; background-color:#000000;}
.row2 a{color:#FF9900; background-color:#FFFFFF;}
.row3{color:#989898; background-color:#333333;}
.row3 a{color:#FF9900; background-color:#333333;}
.row4, .row4 a{color:#919191; background-color:#232323;}
/*----------------------------------------------Generalise-------------------------------------*/
#header, #container, #footer, #copyright{display:block; width:960px; margin:0 auto;}
nav ul{margin:0; padding:0; list-style:none;}
h1, h2, h3, h4, h5, h6{margin:0; padding:0; font-size:32px; font-weight:normal; font-style:italic; line-height:normal;}
address{font-style:normal;}
blockquote, q{display:block; padding:8px 10px; color:#979797; background-color:#ECECEC; font-style:italic; line-height:normal;}
blockquote:before, q:before{content:'� '; font-size:26px;}
blockquote:after, q:after{content:' �'; font-size:26px; line-height:0;}
form, fieldset, legend{margin:0; padding:0; border:none;}
legend{display:none;}
input, textarea, select{font-size:12px; font-family:Georgia,"Times New Roman",Times,serif;}
.one_quarter, .two_quarter, .three_quarter, .four_quarter{display:block; float:left; margin:0 20px 0 0;}
.one_quarter{width:225px;}
.two_quarter{width:470px;}
.three_quarter{width:715px;}
.four_quarter{width:960px; float:none; margin-right:0; clear:both;}
.one_third, .two_third, .three_third{display:block; float:left; margin:0 30px 0 0;}
.one_third{width:300px;}
.two_third{width:630px;}
.three_third{width:960px; float:none; margin-right:0; clear:both;}
.lastbox{margin-right:0;}
/*----------------------------------------------Header-------------------------------------*/
#header{padding:20px 0;}
#header hgroup{float:left; margin:0 0 20px 0;}
#header hgroup h1, #header hgroup h2{font-weight:normal; font-style:normal; text-transform:none;}
#header hgroup h1{font-size:36px;}
#header hgroup h2{font-size:13px;}
#header nav{display:block; float:right; margin:10px 0 0 0; padding:20px 0; color:#C0BAB6; background-color:#232323;}
#header nav ul{padding:0 20px;}
#header nav li{display:inline; margin-right:25px; text-transform:uppercase;}
#header nav li.last{margin-right:0;}
#header nav li a{color:#C0BAB6; background-color:#232323;}
#header nav li a:hover{color:#FF9900; background-color:#232323;}
/*----------------------------------------------Content Area-------------------------------------*/
#container{padding:30px 0;}
#container section{display:block; width:100%; margin:0 0 30px 0; padding:0;}
#container .last{margin:0;}
#container .more{text-align:right;}
/* ------Slider-----*/
#container #slider{}
/* ------Main Content-----*/
#container #homepage{display:block; width:100%; line-height:1.8em;}
#container #homepage #services{}
#container #homepage #services article{}
#container #homepage #services article figure{}
#container #homepage #services article figure img{margin:0 0 15px 0; padding:4px; border:1px solid #D6D6D6;}
#container #homepage #services article figure figcaption{}
#container #homepage #services article figure h2{font-size:14px; font-weight:bold;}
#container #homepage #services article figure footer{}
#container #homepage #intro{}
#container #homepage #intro article{}
#container #homepage #intro article figure{}
#container #homepage #intro article figure img{float:right; margin:0 0 10px 0; padding:4px; border:1px solid #D6D6D6;}
#container #homepage #intro article figure figcaption{float:left; width:460px;}
#container #homepage #intro article figure h2{}
#container #homepage #intro article figure footer{}
/*----------------------------------------------Footer-------------------------------------*/
#footer{padding:30px 0; font-size:12px; line-height:1.4em;}
#footer section h2.title{margin:0 0 25px 0; padding:0; color:#FFFFFF; background-color:#333333; font-size:12px; font-weight:bold; text-transform:uppercase;}
#footer section nav li{margin:0 0 5px 0; padding:0 0 5px 0; border-bottom:1px solid #555555;}
#footer section nav li.last{margin:0;}
/*----------------------------------------------Copyright-------------------------------------*/
#copyright{padding:20px 0;}
#copyright p{margin:0; padding: 0;} | components/userlog/report/compilation_errors/styles/layout.css | html{overflow-y:scroll;} /* Forces a scrollbar when the viewport is larger than the websites content - CSS3 */
body{margin:0; padding:0; font-size:13px; font-family:Georgia, "Times New Roman", Times, serif; color:#919191;}
.clear:after{content:"."; display:block; height:0; clear:both; visibility:hidden; line-height:0;}
.clear{display:block; clear:both;}
html[xmlns] .clear{display:block;}
* html .clear{height:1%;}
a{outline:none; text-decoration:none;}
code{font-weight:normal; font-style:normal; font-family:Georgia, "Times New Roman", Times, serif;}
.fl_left{float:left;}
.fl_right{float:right;}
img{margin:0; padding:0; border:none; line-height:normal; vertical-align:middle;}
.imgholder, .imgl, .imgr{padding:4px; border:1px solid #D6D6D6; text-align:center;}
.imgl{float:left; margin:0 15px 15px 0; clear:left;}
.imgr{float:right; margin:0 0 15px 15px; clear:right;}
/*----------------------------------------------HTML 5 Overrides-------------------------------------*/
address, article, aside, figcaption, figure, footer, header, hgroup, nav, section{display:block; margin:0; padding:0;}
q{display:block; padding:0 10px 8px 10px; color:#979797; background-color:#ECECEC; font-style:italic; line-height:normal;}
q:before{content:'� '; font-size:26px;}
q:after{content:' �'; font-size:26px; line-height:0;}
/* ----------------------------------------------Wrapper-------------------------------------*/
div.wrapper{display:block; width:100%; margin:0; padding:0; text-align:left;}
.row1, .row1 a{color:#C0BAB6; background-color:#333333;}
.row2{color:#979797; background-color:#000000;}
.row2 a{color:#FF9900; background-color:#FFFFFF;}
.row3{color:#989898; background-color:#333333;}
.row3 a{color:#FF9900; background-color:#333333;}
.row4, .row4 a{color:#919191; background-color:#232323;}
/*----------------------------------------------Generalise-------------------------------------*/
#header, #container, #footer, #copyright{display:block; width:960px; margin:0 auto;}
nav ul{margin:0; padding:0; list-style:none;}
h1, h2, h3, h4, h5, h6{margin:0; padding:0; font-size:32px; font-weight:normal; font-style:italic; line-height:normal;}
address{font-style:normal;}
blockquote, q{display:block; padding:8px 10px; color:#979797; background-color:#ECECEC; font-style:italic; line-height:normal;}
blockquote:before, q:before{content:'� '; font-size:26px;}
blockquote:after, q:after{content:' �'; font-size:26px; line-height:0;}
form, fieldset, legend{margin:0; padding:0; border:none;}
legend{display:none;}
input, textarea, select{font-size:12px; font-family:Georgia,"Times New Roman",Times,serif;}
.one_quarter, .two_quarter, .three_quarter, .four_quarter{display:block; float:left; margin:0 20px 0 0;}
.one_quarter{width:225px;}
.two_quarter{width:470px;}
.three_quarter{width:715px;}
.four_quarter{width:960px; float:none; margin-right:0; clear:both;}
.one_third, .two_third, .three_third{display:block; float:left; margin:0 30px 0 0;}
.one_third{width:300px;}
.two_third{width:630px;}
.three_third{width:960px; float:none; margin-right:0; clear:both;}
.lastbox{margin-right:0;}
/*----------------------------------------------Header-------------------------------------*/
#header{padding:20px 0;}
#header hgroup{float:left; margin:0 0 20px 0;}
#header hgroup h1, #header hgroup h2{font-weight:normal; font-style:normal; text-transform:none;}
#header hgroup h1{font-size:36px;}
#header hgroup h2{font-size:13px;}
#header nav{display:block; float:right; margin:10px 0 0 0; padding:20px 0; color:#C0BAB6; background-color:#232323;}
#header nav ul{padding:0 20px;}
#header nav li{display:inline; margin-right:25px; text-transform:uppercase;}
#header nav li.last{margin-right:0;}
#header nav li a{color:#C0BAB6; background-color:#232323;}
#header nav li a:hover{color:#FF9900; background-color:#232323;}
/*----------------------------------------------Content Area-------------------------------------*/
#container{padding:30px 0;}
#container section{display:block; width:100%; margin:0 0 30px 0; padding:0;}
#container .last{margin:0;}
#container .more{text-align:right;}
/* ------Slider-----*/
#container #slider{}
/* ------Main Content-----*/
#container #homepage{display:block; width:100%; line-height:1.8em;}
#container #homepage #services{}
#container #homepage #services article{}
#container #homepage #services article figure{}
#container #homepage #services article figure img{margin:0 0 15px 0; padding:4px; border:1px solid #D6D6D6;}
#container #homepage #services article figure figcaption{}
#container #homepage #services article figure h2{font-size:14px; font-weight:bold;}
#container #homepage #services article figure footer{}
#container #homepage #intro{}
#container #homepage #intro article{}
#container #homepage #intro article figure{}
#container #homepage #intro article figure img{float:right; margin:0 0 10px 0; padding:4px; border:1px solid #D6D6D6;}
#container #homepage #intro article figure figcaption{float:left; width:460px;}
#container #homepage #intro article figure h2{}
#container #homepage #intro article figure footer{}
/*----------------------------------------------Footer-------------------------------------*/
#footer{padding:30px 0; font-size:12px; line-height:1.4em;}
#footer section h2.title{margin:0 0 25px 0; padding:0; color:#FFFFFF; background-color:#333333; font-size:12px; font-weight:bold; text-transform:uppercase;}
#footer section nav li{margin:0 0 5px 0; padding:0 0 5px 0; border-bottom:1px solid #555555;}
#footer section nav li.last{margin:0;}
/*----------------------------------------------Copyright-------------------------------------*/
#copyright{padding:20px 0;}
#copyright p{margin:0; padding: 0;} | 0.326057 | 0.076546 |
body {
background: white url(../../img/operator-rutherglen/bg.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body, a {
font-family: "Univers LT W10 55 Roman";
color: #fff;
}
a:hover {
text-decoration: none;
color: #fff;
}
/* #panel0 */
#whiteBgTop {
width: 100%;
height: auto;
background-color: white;
z-index: 1;
position: fixed;
}
/* footer */
.whiteBg {
width: 100%;
height: 100%;
background-color: white;
z-index: -1;
}
.container {
z-index: 5;
}
#panel0 .logo, #panel0 .logo h1 {
height: 112px;
padding: 0;
margin-bottom: 10px;
}
#panel0 .logo a {
display: block;
text-indent: -9000px;
width: 356px;
height: 100%;
background: transparent url(../../img/operator-rutherglen/logo.png) no-repeat left 31px;
}
#panel0 .logo a.showTablet {
background-image: none;
}
#panel0 ul.bar {
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-bottomleft: 15px;
border-bottom-left-radius: 15px;
-webkit-border-bottom-right-radius: 15px;
-moz-border-radius-bottomRight: 15px;
border-bottom-right-radius: 15px;
height: 41px;
background: #3d0624;
margin: 0 10px 0 0;
width: 590px;
float: right;
}
.lt-ie9 #panel0 ul.bar {
background: url(../../img/operator-rutherglen/headerUL.png) no-repeat 0 0;
}
#panel0 ul.bar li {
padding: 0;
}
#panel0 ul.bar a {
position: relative;
display: block;
color: #fff;
background-color: #3d0624;
font-size: 14px;
line-height: 40px;
opacity: 0.5;
text-decoration: none;
margin: 0 19px 0;
text-transform: uppercase;
-webkit-transition:all 200ms ease-in;
-o-transition:all 200ms ease-in;
float: left;
}
#panel0 ul.bar li.wide {
width: 182px;
}
#panel0 ul.bar a span {
float: left;
font-size: 30px;
margin: 0 0 0 5px;
position: absolute;
top: 2px;
}
#panel0 ul.bar a.toggleDesktop span {
float: left;
font-size: 18px;
margin: 0 0 0 5px;
position: absolute;
top: 8px;
}
#panel0 ul.bar a span.entypo, #panel0 ul.bar a span.entypo-social {
font-size: 40px;
line-height: 32px;
}
#panel0 ul.bar a span.icon-facebook {
right: -28px;
}
#panel0 ul.bar a span.icon-twitter {
right: -58px;
}
#panel0 ul.bar a span.icon-mail {
right: -88px;
}
#panel0 ul.bar a:hover, #panel0 ul.bar a.on {
opacity: 1;
}
/* Nav UL */
#panel0 ul.nav {
clear: both;
float: right;
margin: 27px 0 0;
}
#panel0 ul.nav li a {
display: block;
color: #600037;
padding: 10px 10px 8px;
font-size: 20px;
background-color: white;
}
#panel0 ul.nav a:hover, #panel0 ul.nav a.on {
color: #fff;
background: #600037;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
#headerDrop {
background-color: white;
clear: both;
/* display: none; */
height: auto; /* auto */
color: #600037;
z-index: 10;
font-family: "Univers LT W01 45 Light";
}
#headerDrop .borderTop {
border-top: 1px solid #600037;
margin-top: 10px;
margin-bottom: 0;
}
#headerDrop .borderBottom {
border-top: 1px solid #600037;
margin-top: 10px;
margin-bottom: 20px;
}
#headerDrop .span4 dl {
margin: 0;
}
#headerDrop dl {
float: left;
margin: 0 60px 0 0;
display: block;
}
#headerDrop dl dt h2 {
font-size: 26px;
line-height: 40px;
font-weight: normal;
}
#headerDrop dl dd {
font-size: 16px;
color: rgb( 83, 82, 84 );
margin-left: 0;
}
#headerDrop dl dt h3 {
font-size: 20px;
font-weight: normal;
}
#headerDrop dl dd a {
font-family: "Univers LT W01 45 Light";
font-size: 18;
color: #600037;
}
#headerDrop .span8 dl:last-child {
width: 240px;
margin-right: 0;
}
#headerDrop .span8 dl:last-child dd {
width: 50%;
float: left;
}
#headerDrop .navContent {
display: none;
}
/* Panel 1 */
#panel1 {
padding-top: 120px;
}
#carousel1 {
margin: 45px 0;
}
#carousel1 .carousel-caption {
background-color: transparent;
/*
background: rgb( 41, 4, 24 );
background: rgba( 41, 4, 24, 0.2 );
*/
padding: 0 0 50px 50px;
}
#carousel1 .carousel-caption div {
width: 65%;
float: left;
}
#carousel1 .carousel-caption h1,
#carousel1 .carousel-caption p.lead {
line-height: 88px;
font-weight: normal;
display: block;
font-family: "Bembo W01";
font-size: 88px;
text-shadow: 0.5px 0.866px 3px rgb( 0, 0, 0 );
display: block;
position: relative;
top: 70px;
}
#carousel1 .carousel-caption p.lead {
font-family: "Univers LT W10 55 Roman";
font-size: 18px;
line-height: 24px;
width: 70%;
}
#carousel1 .carousel-caption form {
margin: 0;
display: block;
width: 330px;
height: 230px;
float: left;
font-size: 26px;
font-weight: bold;
background: rgb( 54, 14, 26 );
background: rgba( 54, 14, 26, 0.6 );
padding: 30px;
color: #7f6d71;
letter-spacing: -2px;
}
#carousel1 .nl-form span {
float: left;
margin: 0 10px 0 0;
clear: left;
font-weight: bold;
}
#carousel1 .nl-form span.noClear {
clear: none;
margin-left: 10px;
}
#carousel1 .nl-field-toggle, #carousel1 .nl-form input, #carousel1 .nl-form select {
text-transform: capitalize;
font-weight: normal;
float: left;
color: #fff;
border-bottom: none;
line-height: 40px;
}
#carousel1 .nl-form select {
width: auto;
height: auto;
}
#carousel1 .nl-form select:focus {
outline: none;
}
#carousel1 .nl-form div {
clear: left;
margin: 0 auto;
width: 100%;
}
#carousel1 .nl-form .nl-submit {
width: 100%;
text-align: center;
margin: 0 auto;
letter-spacing: -2px;
text-transform: uppercase;
cursor: pointer;
position: relative;
background: transparent;
color: #fff;
margin: 30px 0 0;
padding: 5px 10px;
font-size: 20px;
font-weight: bold;
border: 3px solid #fff;
}
/* Panel 2 */
#panel2 .span6 {
background: transparent url(../../img/operator-rutherglen/leaf.png) no-repeat 0 0;
min-height: 640px;
position: relative;
}
#panel2 .span6 #leafClip {
background: transparent url(../../img/operator-rutherglen/leafClip.png) no-repeat 0 0;
width: 20px;
height: 22px;
position: absolute;
top: 376px;
left: -20px;
}
#panel2 .span6 dl {
margin: 30px auto 0;
width: 90%;
}
#panel2 .span6 dl dt h2 {
font-family: "Bembo W01";
font-size: 40px;
line-height: 40px;
margin: 0;
font-weight: normal;
}
#panel2 .span6 dl dd.first {
float: none;
width: 100%;
margin: 20px 0;
}
#panel2 .span6 dl dd {
float: left;
width: 50%;
font-size: 18px;
line-height: 24px;
margin: 0;
font-weight: normal;
color: #cacbbb;
}
#panel2 .span6 a.mapsLink {
position: absolute;
bottom: 75px;
right: 30px;
border: 3px solid #fff;
padding: 10px 15px;
text-transform: uppercase;
font-size: 20px;
font-weight: bold;
}
#panel2 .span6.rightLinks {
background-image: none;
background-color: transparent;
}
#panel2 .span6.rightLinks a {
float: left;
width: 50%;
height: 100%;
position: relative;
/*width: 285px;*/
/*height: 285px;*/
}
#panel2 .span6.rightLinks a h3 {
text-shadow: 1px 1px 3px rgb( 0, 0, 0 );
font-size: 40px;
position: absolute;
top: 30px;
left: 30px;
}
/* Panel 3 */
#panel3 {
padding: 0;
}
#panel3 h2, #panel4 h2 {
font-family: "Bembo W01";
font-size: 42px;
line-height: 48px;
margin: 20px 0 0;
font-weight: normal;
color: #3d0624;
margin-bottom: 10px;
}
#panel3 li.span4 {
margin-bottom: 2px;
}
#panel3 .carousel .span4 a {
display: block;
position: relative;
background-color: #000;
}
#panel3 .carousel .caption {
position: absolute;
top: 0;
padding: 10px 25px 0;
}
#panel3 .carousel .thumbnail {
border: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
padding: 0;
height: 100%;
}
#panel3 .carousel .caption dl {
margin-bottom: 0;
}
#panel3 .carousel .caption dt {
font-family: "Univers LT W01 65 Bold";
font-size: 28px;
line-height: 46px;
}
#panel3 .carousel .caption dd {
font-family: "Univers LT W01 45 Light";
font-size: 22px;
line-height: 24px;
font-weight: normal;
margin-bottom: 10px;
margin-left: 0;
}
#panel3 .carousel .caption dd p {
font-size: 18px;
}
#panel3 .carousel .readMore {
font-size: 18px;
position: absolute;
text-transform: uppercase;
color: #3d0624;
font-weight: bold;
padding: 15px 10px 3px;
width: auto;
background-color: #fff;
bottom: 0;
right: 20px;
}
#panel3 .carousel .carousel-control {
top: 300px;
}
#panel3 .myCarouselControl div {
margin: 0 auto;
width: 310px;
height: 36px;
position: relatives;
font-weight: bold;
font-size: 16px;
color: #3d0624;
}
#panel3 .myCarouselControl div strong {
position: relative;
float: left;
line-height: 36px;
}
#panel3 .myCarouselControl div span {
font-size: 65px;
line-height: 35px;
color: #3d0624;
margin: 0 25px;
}
#panel3 .myCarouselControl .left {
float: left;
}
#panel3 .myCarouselControl .right {
float: right;
}
/* panel 4 */
#panel4 {
margin-bottom: 40px;
}
#panel4 a {
float: left;
position: relative;
/* coloured bg
background-color: #600037;
*/
}
#panel4 a h3, #panel4 a span {
text-shadow: 1px 1.732px 6px rgb( 0, 0, 0 );
font-size: 30px;
position: absolute;
left: 30px;
margin: 0;
max-width: 90%;
}
#panel4 a h3 {
top: 30px;
}
#panel4 a span {
font-size: 18px;
bottom: 40px;
}
/* panel 5 (footer) */
#panel5 {
min-height: 200px;
padding: 30px;
color: #3d0624;
}
#panel5 .span6:first-child img {
margin-right: 50px;
}
#panel5 h4 {
font-family: "Bembo W01";
font-size: 22px;
font-weight: normal;
}
#panel5 h5 {
font-size: 18px;
background: transparent url(../../img/twitter.png) no-repeat right center;
}
#panel5 p {
font-size: 16px;
line-height: 20px;
color: #535254;
}
#panel5 p a {
color: #3d0624;
}
#panel5 p span {
display: block;
font-size: 12px;
float: right;
margin: 20px 0 0;
}
#panel5 ul {
margin: 50px auto 0;
display: block;
clear: both;
text-align: center;
}
#panel5 ul li {
padding: 0;
}
#panel5 ul li a {
font-size: 16px;
color: #3d0624;
}
#panel5 input {
background-color: #a8a8a8;
width: 90%;
}
#panel5 input[type=submit] {
width: auto;
text-align: center;
margin: 0 auto;
text-transform: uppercase;
cursor: pointer;
position: relative;
background: transparent;
color: #3d0624;
margin: 10px 0 0 0;
padding: 5px 5px;
font-size: 16px;
font-weight: bold;
border: 3px solid #3d0624;
float: right;
}
.toggleMenu {
display: none;
background: #666;
padding: 10px 15px;
color: #fff;
}
/* Opacity classes */
.opaque1 {
opacity: .1;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
}
.opaque2 {
opacity: .2;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}
.opaque4 {
opacity: .3;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}
.opaque4 {
opacity: .4;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}
.opaque5 {
opacity: .5;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
.opaque6 {
opacity: .6;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}
.opaque7 {
opacity: .7;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}
.opaque8 {
opacity: .8;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
.opaque9 {
opacity: .9;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
.opaque10 {
opacity: 1;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
/* END Desktop */
@media (min-width: 1024px) and (max-width: 1200px) {
#panel0 ul.nav li a {
font-size: 16px;
}
#panel0 .logo a {
background-image: url(../../img/operator-rutherglen/1200/logo.png)
}
#panel0 ul.nav {
margin: 20px 0 0;
}
#panel0 ul.nav li {
padding: 0;
}
#panel0 ul.nav a {
padding: 10px 3px 10px 0
}
#carousel1 .carousel-caption h1, #carousel1 .carousel-caption p.lead {
top: 0;
}
#carousel1 .carousel-caption form {
margin: 10px 0 0;
position: relative;
top: 20px;
}
#panel2 .span6 {
background-color: #505217;
padding-bottom: 80px;
}
#panel2 .span6 a.mapsLink {
bottom: 15px;
right: 15px;
}
}
@media (max-width: 1024px) {
#panel0 ul.nav li a {
padding: 10px 3px 10px 3px;
}
#headerDrop dl {
margin: 0 17px 0 0;
}
#carousel1 .carousel-caption div:first-child {
width: 55%;
}
#panel3 h2, #panel4 h2 {
margin-top: 20px;
}
#panel3 .carousel .caption dd.hidden-phone {
display: none;
}
#panel4 a {
width: 100%;
height: 100%;
}
#panel5 .span6:first-child img {
margin-right: 10px;
}
#panel5 input[type=text] {
width: 100%;
}
#panel5 input[type=submit] {
width: auto;
margin-left: -10px;
}
/*
#desktopNav {
display: block!important;
}
*/
}
@media (min-width: 768px) and (max-width: 1024px) {
#panel0 .logo {
width: 100%;
}
#panel0 .logo a.hidden-tablet {
margin: 28px 0 0 15px;
}
#panel4 a {
width: 100% !important;
}
}
@media (min-width: 1024px) and (max-width: 1200px) {
#carousel1 .carousel-caption {
top: 20px;
}
#carousel1 .carousel-caption div {
width: 50%;
float: left;
}
#carousel1 .carousel-caption form {
top: 80px;
}
#panel3 .carousel .thumbnail img {
height: 260px;
}
}
/* phone up to tablet */
@media (min-width: 320px) and (max-width: 1024px) {
body {
padding: 0;
background-image: none;
background: none;
}
img {
width: 100%;
}
#panel0 ul.bar {
height: 35px;
width: 100%;
padding: 0;
margin: 0 20px 0 0;
-webkit-border-bottom-left-radius: 0;
-moz-border-radius-bottomleft: 0;
border-bottom-left-radius: 0;
-webkit-border-bottom-right-radius: 0;
-moz-border-radius-bottomRight: 0;
border-bottom-right-radius: 0;
}
#panel0 ul.bar li a {
font-size: 12px;
line-height: 16px;
margin: 9px 14px 0 8px;
}
#panel0 ul.bar li a.last {
margin-left: 16px;
}
#panel0 ul.bar a span.entypo, #panel0 ul.bar a span.entypo-social {
font-size: 30px;
line-height: 14px;
top: 0;
}
#panel0 ul.bar a.toggleDesktop span {
font-size: 16px;
top: -0;
line-height: 13px;
}
#panel0 ul.bar a span.icon-facebook {
right: -16px;
}
#panel0 ul.bar a span.icon-twitter {
right: -35px;
}
#panel0 ul.bar a span.icon-mail {
right: -57px;
}
#panel0 ul.bar li.wide {
width: 125px;
}
#panel0 ul.bar li.last {
display: inline-block !important;
}
#panel0 ul.bar li.last a {
width: 25px;
height: 40px;
float: left;
font-size: 30px;
}
#panel0 ul.bar a span.cart {
right: -22px;
float: right;
}
#panel0 .logo, #panel0 .logo h1 {
float: left;
margin: 16px 0 10px 10px;
height: 65px;
}
#panel0 .logo a {
background: transparent url(../../img/operator-rutherglen/768/logo.png) no-repeat left center;
width: 161px;
}
#panel0 .logo a.showTablet {
background-image: none;
float: right;
height: 35px;
width: 40px;
color: #3d0624;
text-indent: 0;
font-size: 30px;line-height: 53px;
margin: 28px 15px 0 0;
padding: 0;
}
#panel0 .logo a.search {
border-right: 1px solid #f2eef0;
}
a.toggleMenu {
float: right;
display: block;
}
#panel0 ul.bar {
position: absolute;
top: 0;
left: 0;
}
#panel0 ul.nav {
margin: 0;
}
#panel0 ul.nav h3 {
font-size: 14px;
line-height: 14px;
}
/* toggle menu */
#panel0 ul.nav:before,
#panel0 ul.nav:after {
content: " ";
display: table;
}
#panel0 ul.nav:after {
clear: both;
}
#panel0 ul.nav ul {
list-style: none;
width: 100%;
padding: 0;
margin: 0;
}
#panel0 ul.nav a {
width: 100%;
background-color: #3d0624;
padding: 10px 15px;
color:#fff;
}
#panel0 ul.nav a:hover {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
#panel0 ul.nav li {
padding: 0;
width: 100%;
position: relative;
}
#panel0 ul.nav > li {
float: left;
border-top: 1px solid white;
}
#panel0 ul.nav > li > .parent {
background-image: url("../../img/downArrow.png");
background-repeat: no-repeat;
background-position: right;
}
#panel0 ul.nav > li > a {
display: block;
}
#panel0 ul.nav li ul {
position: absolute;
left: -9999px;
}
#panel0 ul.nav > li.hover > ul {
left: 0;
}
#panel0 ul.nav li li.hover ul {
/*
left: 100%;
top: 0;
*/
position: static;
}
#panel0 ul.nav li li a {
display: block;
background: #3d0624;
position: relative;
z-index:100;
border-top: 1px solid #3d0624;
}
#panel0 ul.nav li li li a {
background:#3d0624;
z-index:200;
border-top: 1px solid #3d0624;
font-size: 14px;
color: #fff;
}
.active {
display: block;
}
.carousel-inner>.item>img, .carousel-inner>.item>a>img {
width: 100%;
min-height: 365px;
}
#panel0 ul.nav > li {
float: none;
}
#panel0 ul.nav > li > .parent {
background-position: 90% 50%;
}
#panel0 ul.nav li li .parent {
background-image: url("../../img/downArrow.png");
background-repeat: no-repeat;
background-position: 90% 50%;
color: #fff;
}
#panel0 ul.nav ul {
display: block;
width: 100%;
}
#panel0 ul.nav > li.hover > ul , .nav li li.hover ul {
position: static;
}
/* Panel 1 */
#panel1 {
padding-top: 0;
height: 480px;
}
#carousel1 {
margin: 95px 0 0;
}
#carousel1 .container {
position: absolute;
top: 0px;
}
#carousel1 .carousel-caption div {
width: 95%;
}
#carousel1 .carousel-caption {
padding: 0;
}
#carousel1 .carousel-caption h1, #carousel1 .carousel-caption p.lead {
font-size: 36px;
line-height: 36px;
top: 0;
padding: 7px 5% 0;
}
#carousel1 .carousel-caption p.lead {
font-size: 14px;
line-height: 18px;
width: 95%;
}
#carousel1 .carousel-caption form {
width: 90%;
height: 100%;
margin: 87px 0 0;
padding: 10px 5%;
}
#carousel1 .carousel-caption form {
font-size: 17px;
}
#carousel1 .nl-form span {
clear: none;
margin: 0 8px 0 0;
font-weight: normal;
}
#carousel1 .nl-field-toggle, #carousel1 .nl-form input, #carousel1 .nl-form select {
line-height: 25px;
margin: 0 2px 0 0;
}
#carousel1 .nl-form span.noClear {
margin-left: 0;
}
#carousel1 .nl-form .nl-submit {
margin: 10px 0 0;
}
.container {
z-index: auto;
}
/* Panel 2 */
#panel2 .span6:last-child {
min-height: auto;
}
#panel2 .span6 dl dt h2 {
padding: 40px 0 0;
font-size: 32px;
line-height: 32px;
}
#panel2 .span6 dl dd {
width: 100%;
}
#panel2 .span6.rightLinks a {
width: 100%;
}
#panel2 .span6 a.mapsLink {
right: 5%;
bottom: 65px;
width: 80%;
font-size: 17px;
}
#panel2 .span6.rightLinks {
width: 100%;
padding: 0;
}
#panel2 .span6.rightLinks a h3 {
top: 20px;
left: 20px;
}
/* Panel 3 */
#panel3, #panel4 {
/*
width: 90%;
padding: 30px 5%;
*/
}
#panel3 h2, #panel4 h2 {
font-size: 28px;
line-height: 28px;
}
#panel3 .carousel .caption dt {
font-size: 20px;
line-height: 24px;
}
#panel3 .carousel .span4 a {
height: auto;
}
.thumbnail {
padding: 0;
}
.thumbnails>li {
height: 80px;
margin-bottom: 3px;
}
.thumbnail>img {
height: 100px;
}
#panel3 .carousel .caption {
padding: 0 20px 0 15px;
}
#panel3 .carousel .caption dd {
font-size: 15px;
}
#panel3 .carousel .readMore {
font-size: 12px;
font-weight: bold;
bottom: 0;
right: 5px;
padding: 10px 10px 3px;
}
/* Panel 4 */
#panel4 {
/*padding: 0 5%;*/
}
#panel4 h2 {
line-height: 30px;
}
#panel4 .span3 {
min-height: 0;
}
#panel4 a {
display: block;
width: 50%;
height: auto;
margin-top: -2px;
}
#panel4 a h3 {
top: 10px;
}
#panel4 a h3, #panel4 a span{
font-size: 15px;
line-height: 25px;
left: 10px;
}
#panel4 a span {
bottom: 10px;
}
/* Panel 5 */
#panel5 ul {
margin: 0;
padding: 0;
}
#panel5 ul.nav li {
border-bottom: 1px solid #ede9eb;
width: 100%;
clear: left;
cursor: pointer;
}
#panel5 ul li a {
font-weight: bold;
margin: 0;
width: 100%;
padding: 6px 0 2px;
line-height: 30px;
}
#panel5 ul.nav ul {
margin: 0 auto;
height: 30px;
}
#panel5 ul.nav ul li {
float: left;
width: 25%;
border-bottom: none;
clear: none;
margin: 0;
}
#panel5 ul.nav ul li a.share {
font-weight: bold;
font-size: 16px;
position: relative;
bottom: 2px;
margin: 0;
padding: 0;
}
#panel5 ul.nav ul li span {
font-size: 22px;
line-height: 5px;
}
#panel5 ul.inline {
margin: 20px 0 0;
}
#panel5 ul.inline li, #panel5 ul.inline li a {
font-size: 14px;
line-height: 14px;
font-weight: normal;
margin: 15px 5px 0 0;
}
}
/* phone wide up to tablet */
@media (min-width: 480px) and (max-width: 1024px) {
#whiteBgTop {
height: 90px;
}
#panel0 .span8 {
width: 100%;
margin: 0;
}
#mobileNav {
width: 100%;
margin: -36px 0 0 !important;
background: #fff;
width: 90%;
padding: 0 5% 0 5%;
}
ul#mobileNav .hidden-phone {
display: none !important;
}
#panel0 ul.bar {
position: relative;
float: right;
top: -91px;
width: 320px;
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-bottomleft: 15px;
border-bottom-left-radius: 15px;
-webkit-border-bottom-right-radius: 15px;
-moz-border-radius-bottomRight: 15px;
border-bottom-right-radius: 15px;
}
#panel0 ul.nav li li.hover ul {
left: 0;
top: auto;
position: static;
}
#carousel1 .carousel-inner {
height: auto;
}
#carousel1 .carousel-caption {
height: auto;
position: relative;
}
#carousel1 .carousel-caption div:first-child {
padding-top: 60px!important;
}
#panel2 .span6 {
min-height: 530px;
}
#panel2 .span6 a.mapsLink {
bottom: 25px;
}
.search.hidden-tablet, .toggleMenu.hidden-tablet {
display: block !important;
}
#panel4 a {
height: auto;
}
#carousel1 .container {
position: absolute;
}
#carousel1 .carousel-caption div:first-child {
/*
padding-top: 100%;
*/
}
#carousel1 .carousel-caption form {
margin: 10px 0 0;
height: 150px;
overflow: visible;
padding: 20px 5% 0;
font-size: 27px;
line-height: 27px;
}
#carousel1 .nl-form span {
padding: 0 0 0 7px;
}
#carousel1 form .tabletShow {
display: block !important;
line-height: 32px;
}
#panel2 .span6 {
min-height: 460px;
}
#panel2 .span6.rightLinks a {
height: 170px;
float: none;
display: block;
overflow: hidden;
}
#panel2 .span6.rightLinks a h3 {
width: 230px;
}
}
@media (min-width: 1024px) and (max-width: 1200px) {
#panel5 .span6:first-child img {
margin-right: 15px;
}
}
/* tablet only */
@media (min-width: 480px) and (max-width: 1024px) {
#panel2 .span6 {
background-size: 100%;
width: auto;
min-height: 530px;
}
#panel2 .span6 a.mapsLink {
bottom: 15px;
}
#leafClip {
display: none;
}
#panel2 .span6.rightLinks {
padding: 0;
padding-top: 20px;
}
#panel2 .span6.rightLinks a h3 {
width: auto;
}
#panel3 {
width: 100%;
padding: 30px 0 0;
}
#panel3 h2 {
margin: 0 0 10px 0;
}
img {
width: 100%;
}
#panel3 .thumbnails>li {
height: 100%;
}
}
/* iphone 5 only */
@media (width: 568px) {
#carousel1 .container {
position: relative;
}
#carousel1 .carousel-caption {
position: absolute;
height: 476px;
}
#carousel1 .carousel-caption div:first-child {
padding-top: 150px !important;
}
}
@media (width: 600px) {
#panel2 .span6 {
min-height: 390px;
}
#panel2 .span6.rightLinks {
width: 100%;
}
#panel2, #panel3 {
width: 90%;
padding: 30px 5% 30px 5%;
}
#panel4 a {
display: block;
width: 50%;
height: 180px;
overflow: hidden;
margin: 0;
}
}
@media (max-width: 1024px) {
.hidden-desktop {
display: none !important;
}
.hidden-tablet {
display: none !important;
}
.show1024 {
display: block !important;
}
}
@media (max-width: 480px) and (min-width: 320px) {
#carousel1 .carousel-caption p.lead {
width: 100%;
}
#carousel1 .carousel-caption form {
margin: 11px 0 0;
}
#panel3 .carousel .span4 a, .thumbnail>img {
height: 100%;
}
}
@media (width: 480px) {
#carousel1 .carousel-caption form {
margin: 11px 0 0;
font-size: 18px;
}
#carousel1 .carousel-caption div:first-child {
padding-top: 40px!important;
}
} | src/TNE/OperatorBundle/Resources/public/css/operator.css | body {
background: white url(../../img/operator-rutherglen/bg.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body, a {
font-family: "Univers LT W10 55 Roman";
color: #fff;
}
a:hover {
text-decoration: none;
color: #fff;
}
/* #panel0 */
#whiteBgTop {
width: 100%;
height: auto;
background-color: white;
z-index: 1;
position: fixed;
}
/* footer */
.whiteBg {
width: 100%;
height: 100%;
background-color: white;
z-index: -1;
}
.container {
z-index: 5;
}
#panel0 .logo, #panel0 .logo h1 {
height: 112px;
padding: 0;
margin-bottom: 10px;
}
#panel0 .logo a {
display: block;
text-indent: -9000px;
width: 356px;
height: 100%;
background: transparent url(../../img/operator-rutherglen/logo.png) no-repeat left 31px;
}
#panel0 .logo a.showTablet {
background-image: none;
}
#panel0 ul.bar {
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-bottomleft: 15px;
border-bottom-left-radius: 15px;
-webkit-border-bottom-right-radius: 15px;
-moz-border-radius-bottomRight: 15px;
border-bottom-right-radius: 15px;
height: 41px;
background: #3d0624;
margin: 0 10px 0 0;
width: 590px;
float: right;
}
.lt-ie9 #panel0 ul.bar {
background: url(../../img/operator-rutherglen/headerUL.png) no-repeat 0 0;
}
#panel0 ul.bar li {
padding: 0;
}
#panel0 ul.bar a {
position: relative;
display: block;
color: #fff;
background-color: #3d0624;
font-size: 14px;
line-height: 40px;
opacity: 0.5;
text-decoration: none;
margin: 0 19px 0;
text-transform: uppercase;
-webkit-transition:all 200ms ease-in;
-o-transition:all 200ms ease-in;
float: left;
}
#panel0 ul.bar li.wide {
width: 182px;
}
#panel0 ul.bar a span {
float: left;
font-size: 30px;
margin: 0 0 0 5px;
position: absolute;
top: 2px;
}
#panel0 ul.bar a.toggleDesktop span {
float: left;
font-size: 18px;
margin: 0 0 0 5px;
position: absolute;
top: 8px;
}
#panel0 ul.bar a span.entypo, #panel0 ul.bar a span.entypo-social {
font-size: 40px;
line-height: 32px;
}
#panel0 ul.bar a span.icon-facebook {
right: -28px;
}
#panel0 ul.bar a span.icon-twitter {
right: -58px;
}
#panel0 ul.bar a span.icon-mail {
right: -88px;
}
#panel0 ul.bar a:hover, #panel0 ul.bar a.on {
opacity: 1;
}
/* Nav UL */
#panel0 ul.nav {
clear: both;
float: right;
margin: 27px 0 0;
}
#panel0 ul.nav li a {
display: block;
color: #600037;
padding: 10px 10px 8px;
font-size: 20px;
background-color: white;
}
#panel0 ul.nav a:hover, #panel0 ul.nav a.on {
color: #fff;
background: #600037;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
#headerDrop {
background-color: white;
clear: both;
/* display: none; */
height: auto; /* auto */
color: #600037;
z-index: 10;
font-family: "Univers LT W01 45 Light";
}
#headerDrop .borderTop {
border-top: 1px solid #600037;
margin-top: 10px;
margin-bottom: 0;
}
#headerDrop .borderBottom {
border-top: 1px solid #600037;
margin-top: 10px;
margin-bottom: 20px;
}
#headerDrop .span4 dl {
margin: 0;
}
#headerDrop dl {
float: left;
margin: 0 60px 0 0;
display: block;
}
#headerDrop dl dt h2 {
font-size: 26px;
line-height: 40px;
font-weight: normal;
}
#headerDrop dl dd {
font-size: 16px;
color: rgb( 83, 82, 84 );
margin-left: 0;
}
#headerDrop dl dt h3 {
font-size: 20px;
font-weight: normal;
}
#headerDrop dl dd a {
font-family: "Univers LT W01 45 Light";
font-size: 18;
color: #600037;
}
#headerDrop .span8 dl:last-child {
width: 240px;
margin-right: 0;
}
#headerDrop .span8 dl:last-child dd {
width: 50%;
float: left;
}
#headerDrop .navContent {
display: none;
}
/* Panel 1 */
#panel1 {
padding-top: 120px;
}
#carousel1 {
margin: 45px 0;
}
#carousel1 .carousel-caption {
background-color: transparent;
/*
background: rgb( 41, 4, 24 );
background: rgba( 41, 4, 24, 0.2 );
*/
padding: 0 0 50px 50px;
}
#carousel1 .carousel-caption div {
width: 65%;
float: left;
}
#carousel1 .carousel-caption h1,
#carousel1 .carousel-caption p.lead {
line-height: 88px;
font-weight: normal;
display: block;
font-family: "Bembo W01";
font-size: 88px;
text-shadow: 0.5px 0.866px 3px rgb( 0, 0, 0 );
display: block;
position: relative;
top: 70px;
}
#carousel1 .carousel-caption p.lead {
font-family: "Univers LT W10 55 Roman";
font-size: 18px;
line-height: 24px;
width: 70%;
}
#carousel1 .carousel-caption form {
margin: 0;
display: block;
width: 330px;
height: 230px;
float: left;
font-size: 26px;
font-weight: bold;
background: rgb( 54, 14, 26 );
background: rgba( 54, 14, 26, 0.6 );
padding: 30px;
color: #7f6d71;
letter-spacing: -2px;
}
#carousel1 .nl-form span {
float: left;
margin: 0 10px 0 0;
clear: left;
font-weight: bold;
}
#carousel1 .nl-form span.noClear {
clear: none;
margin-left: 10px;
}
#carousel1 .nl-field-toggle, #carousel1 .nl-form input, #carousel1 .nl-form select {
text-transform: capitalize;
font-weight: normal;
float: left;
color: #fff;
border-bottom: none;
line-height: 40px;
}
#carousel1 .nl-form select {
width: auto;
height: auto;
}
#carousel1 .nl-form select:focus {
outline: none;
}
#carousel1 .nl-form div {
clear: left;
margin: 0 auto;
width: 100%;
}
#carousel1 .nl-form .nl-submit {
width: 100%;
text-align: center;
margin: 0 auto;
letter-spacing: -2px;
text-transform: uppercase;
cursor: pointer;
position: relative;
background: transparent;
color: #fff;
margin: 30px 0 0;
padding: 5px 10px;
font-size: 20px;
font-weight: bold;
border: 3px solid #fff;
}
/* Panel 2 */
#panel2 .span6 {
background: transparent url(../../img/operator-rutherglen/leaf.png) no-repeat 0 0;
min-height: 640px;
position: relative;
}
#panel2 .span6 #leafClip {
background: transparent url(../../img/operator-rutherglen/leafClip.png) no-repeat 0 0;
width: 20px;
height: 22px;
position: absolute;
top: 376px;
left: -20px;
}
#panel2 .span6 dl {
margin: 30px auto 0;
width: 90%;
}
#panel2 .span6 dl dt h2 {
font-family: "Bembo W01";
font-size: 40px;
line-height: 40px;
margin: 0;
font-weight: normal;
}
#panel2 .span6 dl dd.first {
float: none;
width: 100%;
margin: 20px 0;
}
#panel2 .span6 dl dd {
float: left;
width: 50%;
font-size: 18px;
line-height: 24px;
margin: 0;
font-weight: normal;
color: #cacbbb;
}
#panel2 .span6 a.mapsLink {
position: absolute;
bottom: 75px;
right: 30px;
border: 3px solid #fff;
padding: 10px 15px;
text-transform: uppercase;
font-size: 20px;
font-weight: bold;
}
#panel2 .span6.rightLinks {
background-image: none;
background-color: transparent;
}
#panel2 .span6.rightLinks a {
float: left;
width: 50%;
height: 100%;
position: relative;
/*width: 285px;*/
/*height: 285px;*/
}
#panel2 .span6.rightLinks a h3 {
text-shadow: 1px 1px 3px rgb( 0, 0, 0 );
font-size: 40px;
position: absolute;
top: 30px;
left: 30px;
}
/* Panel 3 */
#panel3 {
padding: 0;
}
#panel3 h2, #panel4 h2 {
font-family: "Bembo W01";
font-size: 42px;
line-height: 48px;
margin: 20px 0 0;
font-weight: normal;
color: #3d0624;
margin-bottom: 10px;
}
#panel3 li.span4 {
margin-bottom: 2px;
}
#panel3 .carousel .span4 a {
display: block;
position: relative;
background-color: #000;
}
#panel3 .carousel .caption {
position: absolute;
top: 0;
padding: 10px 25px 0;
}
#panel3 .carousel .thumbnail {
border: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
padding: 0;
height: 100%;
}
#panel3 .carousel .caption dl {
margin-bottom: 0;
}
#panel3 .carousel .caption dt {
font-family: "Univers LT W01 65 Bold";
font-size: 28px;
line-height: 46px;
}
#panel3 .carousel .caption dd {
font-family: "Univers LT W01 45 Light";
font-size: 22px;
line-height: 24px;
font-weight: normal;
margin-bottom: 10px;
margin-left: 0;
}
#panel3 .carousel .caption dd p {
font-size: 18px;
}
#panel3 .carousel .readMore {
font-size: 18px;
position: absolute;
text-transform: uppercase;
color: #3d0624;
font-weight: bold;
padding: 15px 10px 3px;
width: auto;
background-color: #fff;
bottom: 0;
right: 20px;
}
#panel3 .carousel .carousel-control {
top: 300px;
}
#panel3 .myCarouselControl div {
margin: 0 auto;
width: 310px;
height: 36px;
position: relatives;
font-weight: bold;
font-size: 16px;
color: #3d0624;
}
#panel3 .myCarouselControl div strong {
position: relative;
float: left;
line-height: 36px;
}
#panel3 .myCarouselControl div span {
font-size: 65px;
line-height: 35px;
color: #3d0624;
margin: 0 25px;
}
#panel3 .myCarouselControl .left {
float: left;
}
#panel3 .myCarouselControl .right {
float: right;
}
/* panel 4 */
#panel4 {
margin-bottom: 40px;
}
#panel4 a {
float: left;
position: relative;
/* coloured bg
background-color: #600037;
*/
}
#panel4 a h3, #panel4 a span {
text-shadow: 1px 1.732px 6px rgb( 0, 0, 0 );
font-size: 30px;
position: absolute;
left: 30px;
margin: 0;
max-width: 90%;
}
#panel4 a h3 {
top: 30px;
}
#panel4 a span {
font-size: 18px;
bottom: 40px;
}
/* panel 5 (footer) */
#panel5 {
min-height: 200px;
padding: 30px;
color: #3d0624;
}
#panel5 .span6:first-child img {
margin-right: 50px;
}
#panel5 h4 {
font-family: "Bembo W01";
font-size: 22px;
font-weight: normal;
}
#panel5 h5 {
font-size: 18px;
background: transparent url(../../img/twitter.png) no-repeat right center;
}
#panel5 p {
font-size: 16px;
line-height: 20px;
color: #535254;
}
#panel5 p a {
color: #3d0624;
}
#panel5 p span {
display: block;
font-size: 12px;
float: right;
margin: 20px 0 0;
}
#panel5 ul {
margin: 50px auto 0;
display: block;
clear: both;
text-align: center;
}
#panel5 ul li {
padding: 0;
}
#panel5 ul li a {
font-size: 16px;
color: #3d0624;
}
#panel5 input {
background-color: #a8a8a8;
width: 90%;
}
#panel5 input[type=submit] {
width: auto;
text-align: center;
margin: 0 auto;
text-transform: uppercase;
cursor: pointer;
position: relative;
background: transparent;
color: #3d0624;
margin: 10px 0 0 0;
padding: 5px 5px;
font-size: 16px;
font-weight: bold;
border: 3px solid #3d0624;
float: right;
}
.toggleMenu {
display: none;
background: #666;
padding: 10px 15px;
color: #fff;
}
/* Opacity classes */
.opaque1 {
opacity: .1;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
}
.opaque2 {
opacity: .2;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
}
.opaque4 {
opacity: .3;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
}
.opaque4 {
opacity: .4;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
}
.opaque5 {
opacity: .5;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
}
.opaque6 {
opacity: .6;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
}
.opaque7 {
opacity: .7;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}
.opaque8 {
opacity: .8;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
}
.opaque9 {
opacity: .9;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
}
.opaque10 {
opacity: 1;
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}
/* END Desktop */
@media (min-width: 1024px) and (max-width: 1200px) {
#panel0 ul.nav li a {
font-size: 16px;
}
#panel0 .logo a {
background-image: url(../../img/operator-rutherglen/1200/logo.png)
}
#panel0 ul.nav {
margin: 20px 0 0;
}
#panel0 ul.nav li {
padding: 0;
}
#panel0 ul.nav a {
padding: 10px 3px 10px 0
}
#carousel1 .carousel-caption h1, #carousel1 .carousel-caption p.lead {
top: 0;
}
#carousel1 .carousel-caption form {
margin: 10px 0 0;
position: relative;
top: 20px;
}
#panel2 .span6 {
background-color: #505217;
padding-bottom: 80px;
}
#panel2 .span6 a.mapsLink {
bottom: 15px;
right: 15px;
}
}
@media (max-width: 1024px) {
#panel0 ul.nav li a {
padding: 10px 3px 10px 3px;
}
#headerDrop dl {
margin: 0 17px 0 0;
}
#carousel1 .carousel-caption div:first-child {
width: 55%;
}
#panel3 h2, #panel4 h2 {
margin-top: 20px;
}
#panel3 .carousel .caption dd.hidden-phone {
display: none;
}
#panel4 a {
width: 100%;
height: 100%;
}
#panel5 .span6:first-child img {
margin-right: 10px;
}
#panel5 input[type=text] {
width: 100%;
}
#panel5 input[type=submit] {
width: auto;
margin-left: -10px;
}
/*
#desktopNav {
display: block!important;
}
*/
}
@media (min-width: 768px) and (max-width: 1024px) {
#panel0 .logo {
width: 100%;
}
#panel0 .logo a.hidden-tablet {
margin: 28px 0 0 15px;
}
#panel4 a {
width: 100% !important;
}
}
@media (min-width: 1024px) and (max-width: 1200px) {
#carousel1 .carousel-caption {
top: 20px;
}
#carousel1 .carousel-caption div {
width: 50%;
float: left;
}
#carousel1 .carousel-caption form {
top: 80px;
}
#panel3 .carousel .thumbnail img {
height: 260px;
}
}
/* phone up to tablet */
@media (min-width: 320px) and (max-width: 1024px) {
body {
padding: 0;
background-image: none;
background: none;
}
img {
width: 100%;
}
#panel0 ul.bar {
height: 35px;
width: 100%;
padding: 0;
margin: 0 20px 0 0;
-webkit-border-bottom-left-radius: 0;
-moz-border-radius-bottomleft: 0;
border-bottom-left-radius: 0;
-webkit-border-bottom-right-radius: 0;
-moz-border-radius-bottomRight: 0;
border-bottom-right-radius: 0;
}
#panel0 ul.bar li a {
font-size: 12px;
line-height: 16px;
margin: 9px 14px 0 8px;
}
#panel0 ul.bar li a.last {
margin-left: 16px;
}
#panel0 ul.bar a span.entypo, #panel0 ul.bar a span.entypo-social {
font-size: 30px;
line-height: 14px;
top: 0;
}
#panel0 ul.bar a.toggleDesktop span {
font-size: 16px;
top: -0;
line-height: 13px;
}
#panel0 ul.bar a span.icon-facebook {
right: -16px;
}
#panel0 ul.bar a span.icon-twitter {
right: -35px;
}
#panel0 ul.bar a span.icon-mail {
right: -57px;
}
#panel0 ul.bar li.wide {
width: 125px;
}
#panel0 ul.bar li.last {
display: inline-block !important;
}
#panel0 ul.bar li.last a {
width: 25px;
height: 40px;
float: left;
font-size: 30px;
}
#panel0 ul.bar a span.cart {
right: -22px;
float: right;
}
#panel0 .logo, #panel0 .logo h1 {
float: left;
margin: 16px 0 10px 10px;
height: 65px;
}
#panel0 .logo a {
background: transparent url(../../img/operator-rutherglen/768/logo.png) no-repeat left center;
width: 161px;
}
#panel0 .logo a.showTablet {
background-image: none;
float: right;
height: 35px;
width: 40px;
color: #3d0624;
text-indent: 0;
font-size: 30px;line-height: 53px;
margin: 28px 15px 0 0;
padding: 0;
}
#panel0 .logo a.search {
border-right: 1px solid #f2eef0;
}
a.toggleMenu {
float: right;
display: block;
}
#panel0 ul.bar {
position: absolute;
top: 0;
left: 0;
}
#panel0 ul.nav {
margin: 0;
}
#panel0 ul.nav h3 {
font-size: 14px;
line-height: 14px;
}
/* toggle menu */
#panel0 ul.nav:before,
#panel0 ul.nav:after {
content: " ";
display: table;
}
#panel0 ul.nav:after {
clear: both;
}
#panel0 ul.nav ul {
list-style: none;
width: 100%;
padding: 0;
margin: 0;
}
#panel0 ul.nav a {
width: 100%;
background-color: #3d0624;
padding: 10px 15px;
color:#fff;
}
#panel0 ul.nav a:hover {
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
}
#panel0 ul.nav li {
padding: 0;
width: 100%;
position: relative;
}
#panel0 ul.nav > li {
float: left;
border-top: 1px solid white;
}
#panel0 ul.nav > li > .parent {
background-image: url("../../img/downArrow.png");
background-repeat: no-repeat;
background-position: right;
}
#panel0 ul.nav > li > a {
display: block;
}
#panel0 ul.nav li ul {
position: absolute;
left: -9999px;
}
#panel0 ul.nav > li.hover > ul {
left: 0;
}
#panel0 ul.nav li li.hover ul {
/*
left: 100%;
top: 0;
*/
position: static;
}
#panel0 ul.nav li li a {
display: block;
background: #3d0624;
position: relative;
z-index:100;
border-top: 1px solid #3d0624;
}
#panel0 ul.nav li li li a {
background:#3d0624;
z-index:200;
border-top: 1px solid #3d0624;
font-size: 14px;
color: #fff;
}
.active {
display: block;
}
.carousel-inner>.item>img, .carousel-inner>.item>a>img {
width: 100%;
min-height: 365px;
}
#panel0 ul.nav > li {
float: none;
}
#panel0 ul.nav > li > .parent {
background-position: 90% 50%;
}
#panel0 ul.nav li li .parent {
background-image: url("../../img/downArrow.png");
background-repeat: no-repeat;
background-position: 90% 50%;
color: #fff;
}
#panel0 ul.nav ul {
display: block;
width: 100%;
}
#panel0 ul.nav > li.hover > ul , .nav li li.hover ul {
position: static;
}
/* Panel 1 */
#panel1 {
padding-top: 0;
height: 480px;
}
#carousel1 {
margin: 95px 0 0;
}
#carousel1 .container {
position: absolute;
top: 0px;
}
#carousel1 .carousel-caption div {
width: 95%;
}
#carousel1 .carousel-caption {
padding: 0;
}
#carousel1 .carousel-caption h1, #carousel1 .carousel-caption p.lead {
font-size: 36px;
line-height: 36px;
top: 0;
padding: 7px 5% 0;
}
#carousel1 .carousel-caption p.lead {
font-size: 14px;
line-height: 18px;
width: 95%;
}
#carousel1 .carousel-caption form {
width: 90%;
height: 100%;
margin: 87px 0 0;
padding: 10px 5%;
}
#carousel1 .carousel-caption form {
font-size: 17px;
}
#carousel1 .nl-form span {
clear: none;
margin: 0 8px 0 0;
font-weight: normal;
}
#carousel1 .nl-field-toggle, #carousel1 .nl-form input, #carousel1 .nl-form select {
line-height: 25px;
margin: 0 2px 0 0;
}
#carousel1 .nl-form span.noClear {
margin-left: 0;
}
#carousel1 .nl-form .nl-submit {
margin: 10px 0 0;
}
.container {
z-index: auto;
}
/* Panel 2 */
#panel2 .span6:last-child {
min-height: auto;
}
#panel2 .span6 dl dt h2 {
padding: 40px 0 0;
font-size: 32px;
line-height: 32px;
}
#panel2 .span6 dl dd {
width: 100%;
}
#panel2 .span6.rightLinks a {
width: 100%;
}
#panel2 .span6 a.mapsLink {
right: 5%;
bottom: 65px;
width: 80%;
font-size: 17px;
}
#panel2 .span6.rightLinks {
width: 100%;
padding: 0;
}
#panel2 .span6.rightLinks a h3 {
top: 20px;
left: 20px;
}
/* Panel 3 */
#panel3, #panel4 {
/*
width: 90%;
padding: 30px 5%;
*/
}
#panel3 h2, #panel4 h2 {
font-size: 28px;
line-height: 28px;
}
#panel3 .carousel .caption dt {
font-size: 20px;
line-height: 24px;
}
#panel3 .carousel .span4 a {
height: auto;
}
.thumbnail {
padding: 0;
}
.thumbnails>li {
height: 80px;
margin-bottom: 3px;
}
.thumbnail>img {
height: 100px;
}
#panel3 .carousel .caption {
padding: 0 20px 0 15px;
}
#panel3 .carousel .caption dd {
font-size: 15px;
}
#panel3 .carousel .readMore {
font-size: 12px;
font-weight: bold;
bottom: 0;
right: 5px;
padding: 10px 10px 3px;
}
/* Panel 4 */
#panel4 {
/*padding: 0 5%;*/
}
#panel4 h2 {
line-height: 30px;
}
#panel4 .span3 {
min-height: 0;
}
#panel4 a {
display: block;
width: 50%;
height: auto;
margin-top: -2px;
}
#panel4 a h3 {
top: 10px;
}
#panel4 a h3, #panel4 a span{
font-size: 15px;
line-height: 25px;
left: 10px;
}
#panel4 a span {
bottom: 10px;
}
/* Panel 5 */
#panel5 ul {
margin: 0;
padding: 0;
}
#panel5 ul.nav li {
border-bottom: 1px solid #ede9eb;
width: 100%;
clear: left;
cursor: pointer;
}
#panel5 ul li a {
font-weight: bold;
margin: 0;
width: 100%;
padding: 6px 0 2px;
line-height: 30px;
}
#panel5 ul.nav ul {
margin: 0 auto;
height: 30px;
}
#panel5 ul.nav ul li {
float: left;
width: 25%;
border-bottom: none;
clear: none;
margin: 0;
}
#panel5 ul.nav ul li a.share {
font-weight: bold;
font-size: 16px;
position: relative;
bottom: 2px;
margin: 0;
padding: 0;
}
#panel5 ul.nav ul li span {
font-size: 22px;
line-height: 5px;
}
#panel5 ul.inline {
margin: 20px 0 0;
}
#panel5 ul.inline li, #panel5 ul.inline li a {
font-size: 14px;
line-height: 14px;
font-weight: normal;
margin: 15px 5px 0 0;
}
}
/* phone wide up to tablet */
@media (min-width: 480px) and (max-width: 1024px) {
#whiteBgTop {
height: 90px;
}
#panel0 .span8 {
width: 100%;
margin: 0;
}
#mobileNav {
width: 100%;
margin: -36px 0 0 !important;
background: #fff;
width: 90%;
padding: 0 5% 0 5%;
}
ul#mobileNav .hidden-phone {
display: none !important;
}
#panel0 ul.bar {
position: relative;
float: right;
top: -91px;
width: 320px;
-webkit-border-bottom-left-radius: 15px;
-moz-border-radius-bottomleft: 15px;
border-bottom-left-radius: 15px;
-webkit-border-bottom-right-radius: 15px;
-moz-border-radius-bottomRight: 15px;
border-bottom-right-radius: 15px;
}
#panel0 ul.nav li li.hover ul {
left: 0;
top: auto;
position: static;
}
#carousel1 .carousel-inner {
height: auto;
}
#carousel1 .carousel-caption {
height: auto;
position: relative;
}
#carousel1 .carousel-caption div:first-child {
padding-top: 60px!important;
}
#panel2 .span6 {
min-height: 530px;
}
#panel2 .span6 a.mapsLink {
bottom: 25px;
}
.search.hidden-tablet, .toggleMenu.hidden-tablet {
display: block !important;
}
#panel4 a {
height: auto;
}
#carousel1 .container {
position: absolute;
}
#carousel1 .carousel-caption div:first-child {
/*
padding-top: 100%;
*/
}
#carousel1 .carousel-caption form {
margin: 10px 0 0;
height: 150px;
overflow: visible;
padding: 20px 5% 0;
font-size: 27px;
line-height: 27px;
}
#carousel1 .nl-form span {
padding: 0 0 0 7px;
}
#carousel1 form .tabletShow {
display: block !important;
line-height: 32px;
}
#panel2 .span6 {
min-height: 460px;
}
#panel2 .span6.rightLinks a {
height: 170px;
float: none;
display: block;
overflow: hidden;
}
#panel2 .span6.rightLinks a h3 {
width: 230px;
}
}
@media (min-width: 1024px) and (max-width: 1200px) {
#panel5 .span6:first-child img {
margin-right: 15px;
}
}
/* tablet only */
@media (min-width: 480px) and (max-width: 1024px) {
#panel2 .span6 {
background-size: 100%;
width: auto;
min-height: 530px;
}
#panel2 .span6 a.mapsLink {
bottom: 15px;
}
#leafClip {
display: none;
}
#panel2 .span6.rightLinks {
padding: 0;
padding-top: 20px;
}
#panel2 .span6.rightLinks a h3 {
width: auto;
}
#panel3 {
width: 100%;
padding: 30px 0 0;
}
#panel3 h2 {
margin: 0 0 10px 0;
}
img {
width: 100%;
}
#panel3 .thumbnails>li {
height: 100%;
}
}
/* iphone 5 only */
@media (width: 568px) {
#carousel1 .container {
position: relative;
}
#carousel1 .carousel-caption {
position: absolute;
height: 476px;
}
#carousel1 .carousel-caption div:first-child {
padding-top: 150px !important;
}
}
@media (width: 600px) {
#panel2 .span6 {
min-height: 390px;
}
#panel2 .span6.rightLinks {
width: 100%;
}
#panel2, #panel3 {
width: 90%;
padding: 30px 5% 30px 5%;
}
#panel4 a {
display: block;
width: 50%;
height: 180px;
overflow: hidden;
margin: 0;
}
}
@media (max-width: 1024px) {
.hidden-desktop {
display: none !important;
}
.hidden-tablet {
display: none !important;
}
.show1024 {
display: block !important;
}
}
@media (max-width: 480px) and (min-width: 320px) {
#carousel1 .carousel-caption p.lead {
width: 100%;
}
#carousel1 .carousel-caption form {
margin: 11px 0 0;
}
#panel3 .carousel .span4 a, .thumbnail>img {
height: 100%;
}
}
@media (width: 480px) {
#carousel1 .carousel-caption form {
margin: 11px 0 0;
font-size: 18px;
}
#carousel1 .carousel-caption div:first-child {
padding-top: 40px!important;
}
} | 0.291586 | 0.070208 |
html { color: #222; font-size: 1em; line-height: 1.4; }
::-moz-selection { background: #b3d4fc; text-shadow: none; }
::selection { background: #b3d4fc; text-shadow: none; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
audio, canvas, img, svg, video { vertical-align: middle; }
fieldset { border: 0; margin: 0; padding: 0; }
textarea { resize: vertical; }
.browsehappy { margin: 0.2em 0; background: #ccc; color: #000; padding: 0.2em 0; }
.hidden { display: none !important; visibility: hidden; }
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
.clearfix:before,.clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }
/* ==========================================================================
Main styles
========================================================================== */
html, html a {
-webkit-font-smoothing: antialiased;
text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}
/* ==========================================================================
Print styles
========================================================================== */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important; /* Black prints faster: h5bp.com/s */
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
/*
* Don't show links that are fragment identifiers,
* or use the `javascript:` pseudo protocol
*/
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group; /* h5bp.com/t */
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
} | app/assets/css/style.css | html { color: #222; font-size: 1em; line-height: 1.4; }
::-moz-selection { background: #b3d4fc; text-shadow: none; }
::selection { background: #b3d4fc; text-shadow: none; }
hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
audio, canvas, img, svg, video { vertical-align: middle; }
fieldset { border: 0; margin: 0; padding: 0; }
textarea { resize: vertical; }
.browsehappy { margin: 0.2em 0; background: #ccc; color: #000; padding: 0.2em 0; }
.hidden { display: none !important; visibility: hidden; }
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }
.invisible { visibility: hidden; }
.clearfix:before,.clearfix:after { content: " "; display: table; }
.clearfix:after { clear: both; }
/* ==========================================================================
Main styles
========================================================================== */
html, html a {
-webkit-font-smoothing: antialiased;
text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}
/* ==========================================================================
Print styles
========================================================================== */
@media print {
*,
*:before,
*:after {
background: transparent !important;
color: #000 !important; /* Black prints faster: h5bp.com/s */
box-shadow: none !important;
text-shadow: none !important;
}
a,
a:visited {
text-decoration: underline;
}
a[href]:after {
content: " (" attr(href) ")";
}
abbr[title]:after {
content: " (" attr(title) ")";
}
/*
* Don't show links that are fragment identifiers,
* or use the `javascript:` pseudo protocol
*/
a[href^="#"]:after,
a[href^="javascript:"]:after {
content: "";
}
pre,
blockquote {
border: 1px solid #999;
page-break-inside: avoid;
}
thead {
display: table-header-group; /* h5bp.com/t */
}
tr,
img {
page-break-inside: avoid;
}
img {
max-width: 100% !important;
}
p,
h2,
h3 {
orphans: 3;
widows: 3;
}
h2,
h3 {
page-break-after: avoid;
}
} | 0.544317 | 0.190084 |
:-moz-placeholder {
font-style:normal;
color: #45484b;
}
:-ms-input-placeholder {
font-style:normal;
color: #45484a;
}
::-webkit-input-placeholder {
font-style:normal;
color: #45484a;
}
.alignnone {
margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
display: block;
margin: 5px auto 5px auto;
text-align: center;
}
.alignright,
.alignnone,
.alignleft,
.aligncenter {
max-width: 100%;
height: auto;
}
.alignright {
float:right;
margin: 5px 0 20px 20px;
}
.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img.alignright {
float: right;
margin: 5px 0 20px 20px;
}
a img.alignnone {
margin: 5px 20px 20px 0;
}
a img.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto
}
.wp-caption {
background: #fff;
border: 1px solid #f0f0f0;
max-width: 96%; /* Image does not overflow the content area */
padding: 5px 3px 10px;
text-align: center;
}
.wp-caption.alignnone {
margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
margin: 5px 0 20px 20px;
}
.wp-caption img {
border: 0 none;
height: auto;
margin: 0;
max-width: 98.5%;
padding: 0;
width: auto;
}
.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
margin: 0;
padding: 0 4px 5px;
}
.sticky {}
.gallery-caption {}
.bypostauthor {}
/* Circles */
@media only screen and (max-device-width : 1024px) {
html {
padding-right: 0 !important;
}
div.fixed.menu-bg {
left: -6px;
}
}
body {
background: #f3f3f3;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
color: #45484a;
/*background-attachment: scroll !important;*/
}
p {
line-height: 1.6;
}
a {
color: #3b74a9;
}
h1 {
font-size: 25px;
}
h2 {
font-size: 20px;
}
h3 {
font-size: 17px;
}
h4 {
font-size: 14px;
font-weight: 800;
}
h1, h2, h3, h4, h5, h6 {
margin-bottom: 20px;
/*text-transform: uppercase;*/
}
ol li {
list-style: decimal;
}
li {
-webkit-backface-visibility: hidden;
}
.right-sidebar h2, .left-sidebar h2,
.right-sidebar h3, .left-sidebar h3 {
text-transform: uppercase;
font-size: 14px;
font-weight: 800;
margin-bottom: 25px;
}
.media_for_js {
z-index: 1000;
}
/*.post-area {
overflow: hidden;
}*/
/*.left-sidebar .post-area {
float: right;
}*/
.wrapper {
overflow: hidden;
clear: both;
}
.nicescroll-rails {
z-index: 100000 !important;
background-color: rgb(220, 221, 223) !important;
}
/*----------------<BACKGROUNDS AND COLORS>----------------*/
.marble {
background-color: #E6E6E6 !important;
}
.marble-color {
background-color: #E6E6E6 !important;
}
.ie8 div.wrapper.menu-bg {
background: url(../img/menu-bg.png) !important;
}
.page-header .wrapper {
overflow: visible;
}
div.wrapper.menu-bg {
background: rgba(255,255,255,0.75);
box-shadow: inset 0 6px 5px -5px rgba(0,0,0,0.3);
overflow: visible;
behavior: url(../../circles/css/PIE.htc);
}
.dark-grey {
background: #1b1e21 !important;
}
.grey {
background: #1f2326 !important;
}
.b1170 .wrapper, .b960 .wrapper {
background-color: #f3f3f3;
border-right: 1px solid rgba(0, 0, 0, 0.17);
border-left: 1px solid rgba(0, 0, 0, 0.17);
}
.b1170 .wrapper.blue, .b960 .wrapper.blue {
border-right: 1px solid rgba(0, 0, 0, 0.6);
border-left: 1px solid rgba(0, 0, 0, 0.6);
}
.grey-grad {
background: #eaebeb;
background: -webkit-gradient(linear, left top, left bottom, from(#d9dbdd), to(#eaebeb));
background: -webkit-linear-gradient(top, #d9dbdd, #eaebeb);
background: -moz-linear-gradient(top, #d9dbdd, #eaebeb);
background: -ms-linear-gradient(top, #d9dbdd, #eaebeb);
background: -o-linear-gradient(top, #d9dbdd, #eaebeb);
}
.dark-grey-grad {
background: #56595b;
background: -webkit-gradient(linear, left top, left bottom, from(#43484c), to(#56595b));
background: -webkit-linear-gradient(top, #43484c, #56595b);
background: -moz-linear-gradient(top, #43484c, #56595b);
background: -ms-linear-gradient(top, #43484c, #56595b);
background: -o-linear-gradient(top, #43484c, #56595b);
}
.dark-grey-grad:hover {
background: #6c7072;
background: -webkit-gradient(linear, left top, left bottom, from(#6c7072), to(#66696a));
background: -webkit-linear-gradient(top, #6c7072, #66696a);
background: -moz-linear-gradient(top, #6c7072, #66696a);
background: -ms-linear-gradient(top, #6c7072, #66696a);
background: -o-linear-gradient(top, #6c7072, #66696a);
}
.sc-button.grey-grad:hover .btn-overlay {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.sc-button span {
position: relative;
z-index: 5;
}
.sc-button.grey-grad .btn-overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: #d9dbdd;
background: -webkit-gradient(linear, left top, left bottom, from(#eaebeb), to(#d9dbdd));
background: -webkit-linear-gradient(top, #eaebeb, #d9dbdd);
background: -moz-linear-gradient(top, #eaebeb, #d9dbdd);
background: -o-linear-gradient(top, #eaebeb, #d9dbdd);
background: -ms-linear-gradient(top, #eaebeb, #d9dbdd);
background: linear-gradient(top, #eaebeb, #d9dbdd);
border-radius: 5px;
z-index: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.light-grey {
background: #a7acaf;
}
.lighter-grey {
background: #b4b8bc !important;
}
.dlight-grey {
background: #e6e6e6;
}
.blue-radial-grad {
background: #3170ac;
background: -moz-radial-gradient(50% 500%, circle farthest-side, #2ea0cf, #3170ac);
background: -webkit-gradient(radial, 50% 500%, 0, 50% 100%, 100%, color-stop(0%,#2ea0cf), color-stop(100%,#3170ac));
background: -webkit-radial-gradient(50% 500%, circle farthest-side, #2ea0cf, #3170ac);
background: -o-radial-gradient(50% 500%, circle farthest-side, #2ea0cf, #3170ac);
background: -ms-radial-gradient(50% 500%, circle farthest-side, #2ea0cf, #3170ac);
background: radial-gradient(50% 500%, circle farthest-side, #2ea0cf, #3170ac);
}
.blue {
background: #3170ac;
}
.light-greyblue {
background: #e8ecf0;
}
/*----------------</BACKGROUNDS AND COLORS>----------------*/
/*----------------<BORDERS>----------------*/
.border-bottom-white {
border-bottom: 1px solid #fff;
}
.border-top-white {
border-top: 1px solid #fff;
}
.border-bottom-black-tr {
border-bottom: 1px solid rgba(0,0,0,0.1);
}
.border-bottom-blue-3px {
background-position: center bottom;
background-repeat: repeat-x;
position: relative;
}
.border-bottom-blue-3px:after {
content: '';
position: absolute;
bottom: 0px;
width: 100%;
left: 0;
height: 3px;
border-top: 1px solid rgba(0, 0, 0, 0.24);
background: #3799d8;
border-bottom: 1px solid rgba(255, 255, 255, 0.44);
z-index: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.border-tb-white {
border-bottom: 1px solid #fff;
border-top: 1px solid #fff;
}
/*----------------</BORDERS>----------------*/
/*----------------<MARGINS, PADDINGS>----------------*/
.wrapper.default-bg .container,
.wrapper.border-tb-white.marble-color .container,
.wrapper.grey .container {
/*padding: 40px 0 0;*/
}
.container.blue-radial-grad {
padding-top: 10px;
padding-bottom: 10px;
color: #ffffff;
}
.posts-container {
padding-right: 3.4%;
}
.container.contacts {
padding: 40px 0;
}
/*----------------</MARGINS, PADDINGS>----------------*/
/*----------------<LISTS>----------------*/
.list-type1 li {
list-style-image: url(../img/list-type1.png);
list-style-position: inside;
}
.list-type2 li {
list-style-image: url(../img/list-type2.png);
list-style-position: inside;
}
/*----------------</LISTS>----------------*/
/*----------------<IMAGE LINKS>----------------*/
.image-links {
position: absolute;
top: 24%;
display: block;
height: 51px;
left: 50%;
margin-left: -56px;
z-index: 100;
visibility: visible;
}
.size1_3 .image-links {
top: 41%;
}
.size1_2 .image-links {
top: 47%;
}
.widget_recent_works .image-links {
top: 49%;
}
.widget_out_stuff2 .image-links {
top: 43%;
margin-left: -28px;
}
/*.image-links .circle-link,*/
.image-links a,
.image-links span {
position: relative;
float: left;
width: 51px;
height: 51px;
background-image: url(../img/sprite.png);
background-position: 0 -283px;
visibility: visible;
}
.image-links .circle-link {
margin: 0 2px;
}
.image-links .link {
background-position: 0 -334px;
}
.image-links .zoom {
background-position: -51px -334px;
}
.image-links .video {
background-position: -47px -426px;
}
.image-links .format-gallery {
background-position: -96px -425px;
}
.image-links .add {
background-position: -102px -334px;
}
.image-links .twitter {
background-position: -51px -283px;
}
.image-links .facebook {
background-position: -102px -283px;
}
.image-links .skype {
background-position: -153px -283px;
}
.gallery-image-links {
position: relative;
top: 50%;
display: inline-block;
height: 51px;
left: 50%;
margin-left: -46px;
}
.gallery-image-links a {
margin: 0 -4px;
}
.gallery-image-links a,
.gallery-image-links span {
position: relative;
display: inline-block;
width: 51px;
height: 51px;
}
.gallery-image-links span {
position: absolute;
background-image: url(../img/sprite.png);
}
.gallery-image-links a span:first-child+span {
opacity: 0;
filter: alpha(opacity=0);
}
.gallery-image-links a:hover span:first-child+span {
opacity: 1;
filter: alpha(opacity=100);
}
.gallery-image-links a span:first-child {
background-position: -278px -169px;
}
.gallery-image-links a span:first-child+span {
background: #407eb5;
border-radius: 50%;
margin: 5px 0 0 5px;
width: 41px;
height: 40px;
box-shadow: inset 0 30px 30px -30px rgba(0,0,0,0.4);
}
.gallery-image-links a.prev span+span+span {
background-position: -278px -271px;
}
.gallery-image-links a.next span+span+span {
background-position: -278px -322px;
}
/*----------------</IMAGE LINKS>----------------*/
/*----------------<PREV NEXT>----------------*/
.prev-t1,
.next-t1,
.prev-t2,
.next-t2,
.prev-t3,
.next-t3 {
display: block;
float: left;
width: 16px;
height: 15px;
background-image: url(../img/sprite.png);
cursor: pointer;
}
.prev-t1 {
background-position: 0 -25px;
}
.prev-t1:hover {
background-position: 0px -40px;
}
.next-t1 {
background-position: -16px -25px;
}
.next-t1:hover {
background-position: -16px -40px;
}
.prev-t2 {
background-position: 0 -70px;
}
.next-t2 {
background-position: -16px -70px;
}
.prev-t3 {
background-position: 0 -55px;
}
.prev-t3:hover {
background-position: 0px -70px;
}
.next-t3 {
background-position: -16px -55px;
}
.next-t3:hover {
background-position: -16px -70px;
}
/*----------------</PREV NEXT>----------------*/
/*----------------<OTHER>----------------*/
.hidden-overflow {
overflow: hidden;
}
.absolute {
z-index: 100;
position: relative;
top: 0;
left: 0;
width: 100%;
margin-bottom: 0;
height: 0;
float: left;
}
div.fixed.menu-bg {
position: fixed !important;
top: 0;
-webkit-backface-visibility: hidden;
background-color: rgba(255, 255, 255, 0.95);
z-index: 100000;
}
.absolute.fixed .headline {
margin-top: 45px;
}
.page-header .fixed {
position: fixed;
top: 0;
left: 0;
z-index: 1000;
max-width: none;
width: 100%;
}
.b1170 .wrapper.menu-bg.fixed, .b960 .wrapper.menu-bg.fixed {
background: transparent;
box-shadow: none;
border: 0;
}
.b1170 .fixed .container,
.b960 .fixed .container {
background: rgba(255,255,255,0.95);
box-shadow: inset 0 6px 5px -5px rgba(0,0,0,0.3);
border-bottom: 1px solid rgba(0,0,0,0.1);
border-left: 1px solid #b3b3b3;
border-right: 1px solid #b3b3b3;
}
body.headerstyle2 .fixed .menu>li>a {
height: 40px;
line-height: 40px;
}
.headerstyle2 .fixed .logo {
height: 40px;
padding-bottom: 0;
}
.headerstyle2 .fixed .logo img {
height: 33px !important;
margin-top: 5px;
}
.headerstyle2 div.wrapper.menu-bg {
background: #fff;
box-shadow: 0 0 5px rgba(0,0,0,0.5);
position: relative;
z-index: 1000;
-webkit-backface-visibility: hidden;
}
.relative {
position: relative;
}
.tran03slinear {
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
transition: all 0.3s linear;
/*-webkit-backface-visibility: hidden;*/
}
.tran02slinear {
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
transition: all 0.2s linear;
/*-webkit-backface-visibility: hidden;*/
}
.bg-black-045 {
position: absolute;
display: block;
width: 100%;
height: 100%;
background: #000;
opacity: 0.45;
filter: alpha(opacity=45);
}
.bg-black-020 {
position: absolute;
display: block;
width: 100%;
height: 100%;
background: #000;
opacity: 0.20;
filter: alpha(opacity=20);
}
.container50per {
width:50%;
float: left;
}
.separator {
position: relative;
height: 3px;
width: 100%;
background: #dadada;
border-bottom: solid 1px #fff;
margin-bottom: 30px;
}
.top-slider {
height: 450px;
width: 100%;
-webkit-backface-visibility: hidden;
}
.parallax-slider {
position:relative;
}
.top-slider-content {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
z-index: 100;
}
.top-slider .flexslider .slides li, .top-slider .flexslider .slides li img {
width: 100%;
height: auto;
}
.top-slider .flex-control-nav {
display: none;
}
.fullwidthbanner-container {
overflow: visible !important;
}
.fullwidthbanner-container .tparrows {
position: absolute;
}
.tp-rightarrow.tparrows.default {
background-position: -489px -487px;
}
.tp-leftarrow.tparrows.default {
background-position: -466px -487px;
}
.tparrows.default {
background: url(../img/sprite.png);
height: 63px;
width: 23px;
}
/*-------- Slides -------------------*/
.transp_round {
background: rgba(0,0,0,0.12);
width: 360px;
height: 360px;
border-radius: 50%;
}
.tp-caption.transp_round h2 {
text-align: center;
margin-top: 40px;
color: #e1e4e6;
text-shadow: 0 0 6px rgba(0,0,0,0.07);
}
.tp-caption.transp_round p {
text-align: center;
width: 90%;
margin: 20px auto 0;
color: #f8f8f8;
}
.transp_round span.line {
margin: 17px auto 30px;
width: 80%;
height: 1px;
background-color: rgb(216, 216, 216);
display: block;
}
.transp_round .rev-direction-nav {
margin-left: 136px;
}
.tp-caption a {
color: #ff7302; text-shadow: none; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
}
.tp-caption a:hover {
color: #ffa902;
}
.tp-caption h2 {
color: #fff;
font: 46px 'Open Sans', sans-serif;
text-transform: uppercase;
line-height: 1;
font-weight: 100;
margin: 0px 0 7px;
}
.tp-caption h2 b {
font-weight:900;
}
.tp-caption p {
color: #fff;
font-size: 14px;
white-space: normal;
line-height: 1.5;
margin-bottom: 15px;
}
.transp_bg {
background: rgba(29, 29, 29, 0.45);
padding: 24px 29px 34px !important;
width: 405px;
height: 150px;
}
.rev-direction-nav a {
background-position: -278px -169px;
background-image:url(../img/sprite.png);
width: 51px;
height: 51px;
display: inline-block;
margin-left: -4px;
float: left;
}
.rev-direction-nav a span {
font-size: 0;
border-radius: 50%;
margin: 5px;
width: 41px;
height: 41px;
-webkit-box-shadow: inset 0 30px 30px -30px rgba(0,0,0,0.4);
box-shadow: inset 0 30px 30px -30px rgba(0,0,0,0.4);
display: block;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.rev-direction-nav .rev-prev span {
background-position: -284px -276px;
background-image: url(../img/sprite.png);
}
.rev-direction-nav a span:hover {
background-color: #407eb5;
}
.rev-direction-nav .rev-next span {
background-position: -282px -327px;
background-image: url(../img/sprite.png);
}
.tp-caption iframe {
border: 0;
}
.transparent {
background: transparent;
}
.button-transparent {
background: transparent;
padding: 15px 30px;
display: inline-block;
border-radius: 5px;
border: 2px solid rgba(255, 255, 255, 0.23);
box-shadow: 0 0 3px 0 rgba(0,0,0,0.2);
font: 900 14px Open Sans, Arial, Tahoma;
text-transform: uppercase;
color: #fff !important;
text-shadow: 0 1px 3px rgba(0,0,0,0.4) !important;
position: relative;
cursor: pointer;
}
.button-transparent:after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 3px;
box-shadow: inset 0 -30px 20px -20px rgba(255,255,255,0.2);
}
.tp-caption .revslider-nav2 li {
display: inline-block;
width: 9px;
height: 9px;
border: 1px solid rgba(255,255,255,0.3);
background: transparent;
visibility: visible !important;
border-radius: 50%;
position: relative !important;
box-shadow: inset 0 0 5px 0 rgba(0,0,0,0.4);
margin-left: 6px !important;
cursor: pointer;
}
.tp-caption .revslider-nav2 {
display: block;
margin-top: 25px !important;
}
.tp-caption .revslider-nav2 li a {
background: transparent;
width: 5px;
height: 5px;
border-radius: 50%;
margin: 2px;
display: block;
}
.tp-caption .revslider-nav2 li.active a {
background: #fff;
}
.nobullets.tp-bullets {
display: none !important;
}
.tp-caption.transp_caption h2 {
text-shadow: 0 0 4px rgba(0,0,0,0.5);
font-size: 44px;
}
.tp-caption.transp_caption {
background-color: rgba(0,0,0,0.3);
padding: 5px 30px 0px !important;
display: block;
}
.light80 {
color: #fff;
font-size: 69px !important;
font-weight: 100;
text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
}
.extrabold55 {
font-size: 47px !important;
font-weight: 900;
color: #fff;
text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}
.white-text {
color: #fff;
font-size: 17px !important;
text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
width: 23%;
display: block;
line-height: 1.4 !important;
white-space: normal !important;
}
/*----------------</OTHER>----------------*/
/*----------------<HEADER>----------------*/
.page-header {
position: relative;
z-index: 10000;
}
.page-header .grid_12 {
margin-bottom: 0;
}
.logo {
display: block;
float: left;
padding-bottom: 17px;
}
.logo img {
display: block;
margin-top: 17.5px;
}
.menu{
display: block;
width: 100%;
margin-left: 5px;
}
.menu li{
position: relative;
display: inline-block;
margin-right: 25px;
}
.menu > li:first-child {
margin-left: -10px;
}
.menu li:hover span {
color: #fff;
}
.menu li > span {
position: absolute;
right: 20px;
top: 16px;
color: rgb(187, 187, 187);
display:none;
}
nav {
-webkit-backface-visibility: hidden;
}
/*.page-header > .wrapper-bg {
display: inline-block;
}*/
.fixed-header .headline {
padding-top: 45px;
}
.mini_logo {
height: 36px;
margin-top: 5px;
width: 0;
margin-right: 0;
margin-left: 0;
display: block;
margin-bottom: 4px;
float: left;
}
.fixed .mini_logo {
width: 129px;
opacity: 1;
margin-right: 40px;
float: left;
display: block;
}
.menu li>a{
position:relative;
display: inline-block;
padding: 0 20px;
height: 44px;
line-height: 44px;
font-size: 12px;
color: #4a4d4f;
text-transform: uppercase;
text-decoration: none;
}
.b960 .menu li>a {
padding: 0 10px;
}
.headerstyle3 .menu>li>a,
.headerstyle3 .menu>ul>li>a {
padding: 0 10px;
}
.menu >li>a:after,
.menu>ul>li>a:after{
position: absolute;
top: 100%;
left: 0;
content:'';
display: block;
height: 1px;
width: 100%;
background: transparent;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.page-header .menu-bg > .container {
text-align: center;
}
.menu li:hover>a:after,
.menu li.current_page_item>a:after{
background: #0f9de0;
}
/*.menu li:hover>a,
.menu li.current_page_item>a{
color: #278dc9;
}*/
.menu li:hover> ul {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
height: auto;
overflow: visible;
}
.menu .sub-menu li .sub-menu,
.menu ul li ul li ul {
left: 100%;
top: -1px;
border: 0;
}
.menu li ul {
position: absolute;
top: 100%;
left: 0px;
min-width: 185px;
overflow: hidden;
height: 0px;
border-top: 1px solid transparent;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
background: #0f9de0;
z-index: 9999;
text-align: left;
}
.menu {
text-align: left;
}
/*.mobile .menu>li:hover>.sub-menu {
height: 0;
}*/
.menu li ul li {
border-top: solid 1px #3b3b3b;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
transition: all 0.3s linear;
position: relative;
display: block;
-webkit-backface-visibility: visible;
margin: 0;
}
.menu li> ul>li:first-child{
border-top-width: 0px;
}
.menu li ul li a {
display: block;
padding: 0 20px;
height: 40px;
line-height: 40px;
font-size: 12px;
color: #f3f3f3;
text-transform: none;
background-color: #45484a;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
transition: all 0.3s linear;
text-decoration: none;
white-space: nowrap;
}
.menu li>ul>li>a:hover{
background-color: #3f4244;
}
/*--- Mega menu ---*/
@media only screen and (min-width: 767px){
li.mega-menu > .sub-menu {
width: auto;
white-space: nowrap;
padding: 10px 20px;
background-color: rgba(69, 72, 74, 0.95);
border-top: 1px solid #0f9de0;
}
li.mega-menu > .sub-menu > li {
display: inline-block;
float: left;
height: auto;
border-top: 0;
}
li.mega-menu > .sub-menu > li >a {
font-size: 15px;
background-color: transparent !important;
border-bottom: 1px solid #808080;
padding: 0;
margin: 0 20px;
}
li.mega-menu > .sub-menu > li > ul {
display: block !important;
opacity: 1 !important;
position: relative;
left: 0 !important;
background: transparent;
height: auto;
}
li.mega-menu > .sub-menu > li li {
border: 0;
}
li.mega-menu > .sub-menu > li li a {
background-color: transparent;
}
li.mega-menu > .sub-menu > li li a:hover,
.headerstyle2_2 .sub-menu > li a:hover {
background-color: transparent;
color: #0f9de0;
}
li.mega-menu > .sub-menu > li li a:before,
.headerstyle2_2 .sub-menu > li a:before {
position: absolute;
left: 11px;
content: "\f105";
font-family: FontAwesome;
top: 0px;
color: #0f9de0;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
li.mega-menu > .sub-menu > li li a:hover:before,
.headerstyle2_2 .sub-menu > li a:hover:before {
opacity: 1;
}
li.mega-menu > .sub-menu > li> a:hover:before {
opacity: 0 !important;
}
}
/*--- /Mega menu ---*/
/*-------------- Post menu ----------------*/
li.post-menu > ul {
width: 492px;
background-color: rgba(0,0,0,0.80);
border-radius: 0 0 2px 2px;
padding: 3px;
border-top: 2px solid #0f9de0;
overflow: visible;
}
li.post-menu > ul >li {
border: 0;
float: left;
width: 76px;
clear: none;
height: 76px;
padding: 3px;
position: static;
margin:0 !important;
}
li.post-menu > ul >li>a {
padding: 0 !important;
height: 100%;
display: block;
background-color: #3170ac;
border-radius: 3px;
}
li.post-menu > ul >li>a>img {
width: 100%;
height: 100%;
border-radius: 3px;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
li.post-menu > ul >li>a>img:hover {
opacity: 0.35;
}
li.post-menu > ul >li:hover .post-details {
display: block;
position: absolute;
top: 100%;
left: 0;
width: 100%;
margin-top: -1px;
border-radius: 0 0 2px 2px;
}
.post-details {
display: none;
background-color: rgba(0, 0, 0, 0.85);
border-top: 1px solid #0f9de0;
}
.post-details img {
width: 100%;
display: block;
padding: 5px;
border-radius: 3px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.menu-post-description {
color: #fff;
padding: 5px;
margin-bottom: 0px;
}
.post-details span {
float: left;
width: 30px;
height: 25px;
margin-right: 5px;
background-image: url(../img/sprite.png);
background-position: -243px -292px;
margin-top: 10px;
margin-left: 5px;
}
.post-details span.format-gallery {
background-position: -205px -292px;
}
.post-details span.format-video {
background-position: -204px -336px;
}
li.post-menu > ul >li>a:hover {
background-color: #3170ac;
}
.wrapper.headline {
display: block;
height: 54px;
background: transparent;
}
.headerstyle2 .headline {
height: 100px;
}
.headline.only-path {
height: 55px;
}
.headline h1{
display: block;
float: left;
color: #e7ebee;
text-transform: uppercase;
font-size: 30px;
font-weight: 800;
line-height: 54px;
margin-bottom: 0;
}
.headline.marble h1 {
color: #a6aaad;
}
.headline h1 span {
display: none;
}
.page-path {
display: block;
float: right;
}
.only-path .page-path {
float: left;
}
.page-header .only-path .page-path {
float: left;
margin-top: 0;
}
.headerstyle2 .page-header .only-path .page-path {
line-height: 85px;
}
#search-icon {
width: 25px;
}
.page-path a, .page-path span{
color: #e7ebee;
line-height: 54px;
font-size: 10px;
text-transform: uppercase;
}
.only-path .page-path a,
.only-path .page-path span {
line-height: 40px;
}
.page-path a:before{
content: '|';
padding: 0 4px 0 2px;
}
.page-path a:first-child:before{
content: '';
padding: 0;
}
.marble .page-path span, .marble .page-path a {
color: #545758;
}
#control-panel {
-webkit-backface-visibility: hidden;
}
#menu-btn {
width: 27px;
height: 13px;
background: url(../img/menu-btn.png) no-repeat;
position: relative;
margin: 18px;
display: none;
}
.socials.mobile-socials {
display:none;
}
.fixed .socials.mobile-socials {
display: none;
}
/*----------------</HEADER>----------------*/
/*----------------<HEADER STYLE2>----------------*/
.headerstyle2 .menu {
float: right;
width: auto;
}
.headerstyle2 .menu>li>a,.headerstyle2 .menu>ul>li>a {
height: 100px;
line-height: 100px;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.headerstyle2 .menu>li, .headerstyle4 .menu>li, .headerstyle2 .menu>ul>li, .headerstyle4 .menu>ul>li {
margin-right: 15px;
}
.b960.headerstyle2 .menu>li, .headerstyle4 .menu>li, .b960.headerstyle2 .menu>ul>li, .headerstyle4 .menu>ul>li {
margin-right: 5px;
}
.headerstyle2 .fixed .menu>li>a, .headerstyle2 .fixed .menu>ul>li>a {
height: 44px;
line-height: 44px;
}
.headerstyle2 .menu li>a:after {
top:auto;
bottom: -1px;
height: 2px;
}
.headerstyle2 .headline h1 {
line-height: 100px;
}
.headerstyle2 .page-path {
margin-top: 25px;
}
.headerstyle2 .socials li {
height: 33px;
padding: 1px 0;
margin-top: 0;
margin-left: 0;
}
.wrapper.preheader {
background-color: #45484a;
padding: 9px 0;
}
.preheader .socials li span {
background: #7a8286;
-webkit-box-shadow: none;
box-shadow: none;
}
.preheader .socials {
position: relative;
padding-left: 20px;
margin-left: 20px;
}
.preheader .socials:before {
background: #5d5f62;
content: '';
width: 1px;
height: 30px;
position: absolute;
top: 4px;
left: 0;
}
.preheader-builder {
padding: 3px 0;
border-bottom: 1px solid #eff2f2;
color: #9fa2a4;
line-height: 37px;
}
.preheader-builder div.left {
float: left;
margin-right: 22px;
}
.preheader-builder div.right {
float: right;
margin-left: 22px;
}
.preheader-builder i {
padding-right: 5px;
font-size: 15px;
}
.headerstyle2.fixed-header .headline,
.headerstyle5.fixed-header .headline {
padding-top: 0px;
}
.contact {
color: #fff;
line-height: 41px;
padding-left: 25px;
background-image: url(../img/sprite.png);
background-repeat: no-repeat;
float: right;
}
.preheader .phone.contact {
font: 100 28px Open Sans, Arial, Tahoma;
}
.phone.contact {
background: url(../img/sprite.png) -343px -312px no-repeat;
padding-left: 40px;
color: #c4c6c7;
}
.preheader .socials a {
background-repeat: no-repeat;
}
.preheader .socials .facebook {
background-position: -7px -872px;
}
.preheader .socials .twitter {
background-position: -44px -872px;
}
.preheader .socials .skype {
background-position: -78px -872px;
}
.preheader .socials .dribbble {
background-position: -107px -873px;
}
.preheader .socials .youtube {
background-position: -135px -872px;
}
.preheader .socials .tumblr {
background-position: -166px -872px;
}
.preheader .socials .linkedin {
background-position: -196px -872px;
}
.preheader .socials .pinterest {
background-position: -228px -872px;
}
.preheader .socials .google-plus {
background-position: -264px -872px;
}
.preheader .socials .instagram {
background-position: -303px -874px;
}
.preheader .socials .facebook:hover {
background-position: -7px -905px;
}
.preheader .socials .twitter:hover {
background-position: -44px -905px;
}
.preheader .socials .skype:hover {
background-position: -78px -905px;
}
.preheader .socials .dribbble:hover {
background-position: -107px -906px;
}
.preheader .socials .youtube:hover {
background-position: -135px -906px;
}
.preheader .socials .tumblr:hover {
background-position: -166px -906px;
}
.preheader .socials .linkedin:hover {
background-position: -196px -906px;
}
.preheader .socials .pinterest:hover {
background-position: -228px -907px;
}
.preheader .socials .google-plus:hover {
background-position: -264px -906px;
}
.preheader .socials .instagram:hover {
background-position: -303px -906px;
}
.headerstyle2 .headline.only-path:hover {
height: 100px;
}
#search-icon {
float: right;
position: relative;
z-index: 100;
}
/*#search-icon form input:focus {
font-size: 12px;
padding: 4px 0 4px 28px;
width: 90px;
border: none;
background-color: #F3F3F3;
cursor: text;
}*/
#search-icon form input {
margin: 0;
padding: 4px 0 4px 28px;
width: 0px;
cursor: pointer;
border: none;
outline: none;
-webkit-transition: all 0.4s ease 0s;
-moz-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
-webkit-box-shadow: none;
-moz-box-shadow: none;
height: 30px;
box-shadow: none;
background: transparent;
}
#search-icon #searchform {
width: auto;
height: auto;
border: 0;
background: none;
margin-top: 33px;
margin-left: 5px;
position: relative;
}
#search-icon i {
position: absolute;
pointer-events: none;
left: -4px;
top: 43px;
z-index: 100;
color: #444444;
font-size: 19px;
background: url(../img/magnifier.png) no-repeat 18px 0;
width: 17px;
height: 17px;
border-left: 1px solid #ccc;
padding-left: 20px;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.headerstyle2 nav {
margin-right: -6px;
}
body.headerstyle2 .page-path span, body.headerstyle2 .page-path a,
body.headerstyle5 .page-path span, body.headerstyle5 .page-path a {
line-height: 25px;
color: #fff;
}
.headerstyle2 .page-path,
.headerstyle5 .page-path {
margin-top: 53px;
background: rgba(0,0,0,0.34);
padding: 0 10px;
}
.headerstyle2 .header-image,
.headerstyle5 .header-image {
height: 120px;
}
.single-portfolio.headerstyle2 .header-image {
height: 100px;
}
.fixed #search-icon #searchform {
margin-top: 4px;
margin-bottom: 4px;
}
.fixed #search-icon i {
top: 13px;
}
.fixed #search-icon form input {
height: 25px;
}
.headerstyle2 .logo img,
.headerstyle4 .logo img {
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
width:auto;
}
.headerstyle2 .menu li > span {
display: block;
top: 50%;
margin-top: -8px;
right: 0;
}
.headerstyle2 .menu li ul li > span {
display: none;
}
.menu li:hover > span {
color: #278dc9;
}
.headerstyle2 .headline {
height: 100px;
}
.headerstyle2 .headline h1,
.headerstyle5 .headline h1 {
line-height: 35px;
text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
margin-top: 26px;
}
.no-header-image.headerstyle2 .headline h1,
.woocommerce.headerstyle2 .headline h1,
.single-post.headerstyle2 .headline h1,
.category.headerstyle2 .headline h1,
.single-portfolio.headerstyle2 .headline h1 {
margin-top: 18px;
text-shadow: none;
}
.no-header-image.headerstyle2 .headline h1 span,
.woocommerce.headerstyle2 .headline h1 span,
.single-post.headerstyle2 .headline h1 span,
.category.headerstyle2 .headline h1 span,
.single-portfolio.headerstyle2 .headline h1 span {
background: transparent;
padding-left: 0;
color: #45484a;
}
.no-header-image.headerstyle2 .page-path,
.woocommerce.headerstyle2 .page-path,
.single-post.headerstyle2 .page-path,
.category.headerstyle2 .page-path,
.single-portfolio.headerstyle2 .page-path {
margin-top: 40px;
background: transparent;
}
body.single-portfolio.headerstyle2 .page-path span, body.single-portfolio.headerstyle2 .page-path a,
body.woocommerce.headerstyle2 .page-path span, body.woocommerce.headerstyle2 .page-path a,
body.single-post.headerstyle2 .page-path span, body.single-post.headerstyle2 .page-path a,
body.category.headerstyle2 .page-path span, body.category.headerstyle2 .page-path a,
body.no-header-image.headerstyle2 .page-path span, body.no-header-image.headerstyle2 .page-path a {
color: #45484a;
}
body.no-header-image.headerstyle2 .page-path span.current,
body.woocommerce.headerstyle2 .page-path span.current,
body.single-post.headerstyle2 .page-path span.current,
body.category.headerstyle2 .page-path span.current,
body.single-portfolio.headerstyle2 .page-path span.current {
color: #3b74aa;
}
.single-portfolio.headerstyle2 .headline h1,
.woocommerce.headerstyle2 .headline h1,
.single-post.headerstyle2 .headline h1,
.category.headerstyle2 .headline h1 {
margin-top: 10px;
}
.single-portfolio.headerstyle2 .page-path,
.woocommerce.headerstyle2 .page-path,
.single-post.headerstyle2 .page-path,
.category.headerstyle2 .page-path {
margin-top: 17px;
}
.single-portfolio.headerstyle2 .absolute, .single-portfolio.headerstyle2 .headline,
.woocommerce.headerstyle2 .absolute, .woocommerce.headerstyle2 .headline,
.single-post.headerstyle2 .absolute, .single-post.headerstyle2 .headline,
.category.headerstyle2 .absolute, .category.headerstyle2 .headline {
height: 55px;
}
.headerstyle2 .headline h1 span,
.headerstyle5 .headline h1 span {
font-weight: 100;
font-size: 21px;
clear: both;
display: block;
line-height: 1;
text-transform: none;
background: rgba(0,0,0,0.34);
padding: 6px 10px 9px;
text-shadow: none;
}
.headerstyle2 .page-path,
.headerstyle5 .page-path {
margin-top: 53px;
background: rgba(0,0,0,0.34);
padding: 0 10px;
}
body.headerstyle2 .page-path span, body.headerstyle2 .page-path a,
body.headerstyle5 .page-path span, body.headerstyle2 .page-path a {
line-height: 25px;
color: #fff;
}
.woocommerce.headerstyle2 .header-image,
.single-post.headerstyle2 .header-image,
.category.headerstyle2 .header-image,
.single-portfolio.headerstyle2 .header-image {
height: 55px;
margin-top: -55px;
float: left;
}
.headerstyle2 div.wrapper.menu-bg.transparent {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iM<KEY>
background: none, -webkit-linear-gradient(to top,rgba(255,255,255,0.75) 0px,rgba(255,255,255,0.9) 30px,#ffffff 70px);
background: none, -moz-linear-gradient(to top,rgba(255,255,255,0.75) 0px,rgba(255,255,255,0.9) 30px,#ffffff 70px);
background: none, -o-linear-gradient(to top,rgba(255,255,255,0.75) 0px,rgba(255,255,255,0.9) 30px,#ffffff 70px);
background: none, -ms-linear-gradient(to top,rgba(255,255,255,0.75) 0px,rgba(255,255,255,0.9) 30px,#ffffff 70px);
background: none, linear-gradient(to top,rgba(255,255,255,0.75) 0px,rgba(255,255,255,0.9) 30px,#ffffff 70px);
margin-bottom: -70px;
border-bottom: 0;
float: left;
}
.b960.headerstyle2 div.wrapper.menu-bg.transparent,
.b1170.headerstyle2 div.wrapper.menu-bg.transparent {
float: none;
}
.b1170.headerstyle2 div.wrapper.menu-bg.transparent.fixed,
.b960.headerstyle2 div.wrapper.menu-bg.transparent.fixed {
background: none;
}
.wrapper.transparent-content .container.main {
padding-top: 70px;
}
.wrapper.transparent-content {
margin-top: -70px;
background: #FFF;
}
.wrapper.transparent-content:before {
position: absolute;
left: 0;
height: 70px;
width: 100%;
z-index: 100000;
display: block;
content: '';
background: none, -webkit-linear-gradient(top,rgba(255,255,255,0.25) 0px,rgba(255,255,255,0.9) 50px,#ffffff 70px);
background: none, -moz-linear-gradient(top,rgba(255,255,255,0.25) 0px,rgba(255,255,255,0.9) 50px,#ffffff 70px);
background: none, -o-linear-gradient(top,rgba(255,255,255,0.25) 0px,rgba(255,255,255,0.9) 50px,#ffffff 70px);
background: none, -ms-linear-gradient(top,rgba(255,255,255,0.25) 0px,rgba(255,255,255,0.9) 50px,#ffffff 70px);
background: none, linear-gradient(top,rgba(255,255,255,0.25) 0px,rgba(255,255,255,0.9) 50px,#ffffff 70px);
}
#search-icon form input {
width: 200px;
position: absolute;
top: 40px;
right: -30px;
height: 40px;
background: #fff;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
display: none;
-webkit-transition: none;
-moz-transition: none;
-o-transition: none;
-ms-transition: none;
transition: none;
border-radius: 4px;
-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.3);
box-shadow: 0 0 4px 0 rgba(0,0,0,0.3);
font-size: 13px;
}
#search-icon i {
pointer-events: all;
cursor: pointer;
}
#search-icon :-moz-placeholder {
font-style:italic;
}
#search-icon :-ms-input-placeholder {
font-style:italic;
}
#search-icon ::-webkit-input-placeholder {
font-style:italic;
}
/*----------------</HEADER STYLE2>----------------*/
/*----------------<HEADER STYLE3>----------------*/
.headerstyle3 .menu-bg {
position: relative;
z-index: 50;
}
.headerstyle3 .menu {
margin-right: -36px;
}
.headerstyle3 .menu, .headerstyle2 .menu {
width: auto;
float: right;
}
.headerstyle3 .contact {
color: #7f8182;
line-height: 19px;
float: left;
margin-top: 12px;
margin-right: 20px;
}
.headerstyle3 .phone.contact {
background-position: -453px -52px;
padding-left: 15px;
}
.headerstyle3 .email.contact {
background-position: -447px -79px;
padding-left: 25px;
}
.headerstyle2 .header-image.header-image-no-titlebar {
height: 0px;
}
.headerstyle3 .menu-bg .container {
text-align: left;
}
.headerstyle3 .socials li {
overflow: visible;
}
.b960.headerstyle3 .menu>li {
margin-right: 10px;
}
/*----------------</HEADER STYLE3>----------------*/
/*----------------<HEADER STYLE4>----------------*/
@media only screen and (min-width: 768px){
.headerstyle4 .page-header {
margin-bottom: -100px;
float: left;
width: 100%;
position: relative;
z-index: 50;
}
.wrapper.dark-menu {
background-color: rgba(0,0,0,0.5);
}
.headerstyle4.fixed-header .page-header .dark-menu {
position: fixed;
width: 100%;
top: 0;
left: -1px;
z-index: 10000;
}
.headerstyle4 #search-icon form input {
background-color: rgba(0, 0, 0, 0);
color: #fff;
}
.headerstyle4 .menu {
float: right;
width: auto;
}
.headerstyle4 .header-image.header-image-no-titlebar {
height: 90px;
margin: 0;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.headerstyle4.fixed-header .header-image.header-image-no-titlebar {
height: 30px;
}
.headerstyle4 .header-image {
height: 149px;
margin-top: -55px;
float: left;
}
.headerstyle4 .menu>li>a {
line-height: 100px;
height: 100px;
color: #fff;
padding: 0 30px 0 20px;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.b960.headerstyle4 .menu>li>a {
padding: 0 30px 0 10px;
}
.headerstyle4 .menu li ul {
background: none;
border-top: 1px solid #0f9de0;
-webkit-backface-visibility: hidden;
}
.headerstyle4 .menu li ul li {
border: 0;
}
.headerstyle4 .menu > li {
margin-right: 0;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.headerstyle4 #search-icon form input:focus {
background-color: rgba(0,0,0,0.3);
}
.headerstyle4 .menu li ul li a {
background-color: rgba(0,0,0,0.5);
border: 0;
}
.headerstyle4 .menu li ul li {
margin-right: 0;
}
.headerstyle4 .menu li ul li a:hover {
background-color: rgba(0,0,0,0.65);
}
.headerstyle4 .menu li > span {
display: block;
right: 10px;
top: 50%;
margin-top: -7px;
-webkit-transform: rotateZ(-90deg);
-moz-transform: rotateZ(-90deg);
-o-transform: rotateZ(-90deg);
-ms-transform: rotateZ(-90deg);
transform: rotateZ(-90deg);
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.headerstyle4 .menu li:hover > span {
color: rgb(187, 187, 187);
-webkit-transform: rotateZ(0deg);
-moz-transform: rotateZ(0deg);
-o-transform: rotateZ(0deg);
-ms-transform: rotateZ(0deg);
transform: rotateZ(0deg);
}
.headerstyle4 .menu>li:hover {
background: rgba(0,0,0,0.30);
}
.headerstyle4 :-moz-placeholder {
color: #ffffff;
}
.headerstyle4 :-ms-input-placeholder {
color: #ffffff;
}
.headerstyle4 ::-webkit-input-placeholder {
color: #ffffff;
}
.headerstyle4 #search-icon i {
background-image: url(../img/magnifier-white.png);
}
.fixed-header.headerstyle4 .logo img {
height: 30px !important;
margin: 5px 0;
}
.headerstyle4 .logo img {
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.fixed-header.headerstyle4 #search-icon i {
top: 10px;
}
.fixed-header.headerstyle4 .menu>li>a {
line-height: 40px;
height: 40px;
}
.fixed-header.headerstyle4 #search-icon #searchform {
margin-top: 0;
}
.fixed-header.headerstyle4 .logo {
padding-bottom: 0;
}
}
.headerstyle4 .menu .mega-menu ul a {
background: transparent;
}
.headerstyle4 .menu .mega-menu > ul {
background: rgba(0,0,0,0.5);
}
.headerstyle4 .menu .mega-menu li > span {
display: none;
}
.b1170.headerstyle4.fixed-header .page-header .dark-menu, .b960.headerstyle4.fixed-header .page-header .dark-menu {
max-width: none;
background: none;
}
.b1170.headerstyle4.fixed-header .page-header .dark-menu .container, .b960.headerstyle4.fixed-header .page-header .dark-menu .container {
background-color: rgba(0,0,0,0.5);
position: relative;
padding-right: 63px;
}
.b1170.headerstyle5.fixed-header .wrapper.main-menu, .b960.headerstyle5.fixed-header .wrapper.main-menu {
max-width: none;
background: none;
border: 0;
}
.b1170.headerstyle5.fixed-header .wrapper.main-menu .container, .b960.headerstyle5.fixed-header .wrapper.main-menu .container {
background: #fff;
position: relative;
border-bottom: 1px solid #e3e3e3;
}
/*----------------</HEADER STYLE4>----------------*/
/*----------------- Headerstyle5 -------------*/
.headerstyle5 .menu li>a {
font-family: 'open sans', arial, tahoma;
}
.headerstyle5 .menu li>a:before {
font-family: FontAwesome;
margin-right: 5px;
font-size: 15px;
position: relative;
top: -1px;
height: 26px;
}
@media only screen and (min-width: 768px){
.headerstyle5 .page-header .wrapper {
background-color: #fff;
}
.headerstyle5 .menu > li:hover>a {
color: #3b74a9;
}
.headerstyle5 .menu >li>a:after, .headerstyle5 .menu>ul>li>a:after {
margin-top: 1px;
}
.main-menu {
border-bottom: 1px solid #e3e3e3;
}
.headerstyle5 #search-icon i {
top: 13px;
}
.headerstyle5 #search-icon #searchform {
margin-top: 8px;
margin-bottom: 0;
}
.header-text {
float: left;
margin-top: 35px;
margin-left: 30px;
}
.header-text span {
display: block;
color: #7f7f7f;
text-transform: uppercase;
font-size: 10px;
}
.header-contact {
float: right;
margin-top: 28px;
}
.header-contact a {
display: block;
color: #7f7f7f;
}
.header-contact .phone {
background-position: -320px -710px;
margin-bottom: 5px;
}
.header-contact .email {
background-position: -321px -738px;
}
.headerstyle5 .wrapper.small_preheader {
background: #2a2b2c;
height: 35px;
}
.small_preheader span:before {
font-family: fontAwesome;
margin-right: 5px;
font-size: 19px;
height: 21px;
}
.small_preheader span {
font-size: 10px;
text-transform: uppercase;
color: #9c9fa2;
font-family: 'Open Sans', arial, tahoma;
margin-left: 15px;
line-height: 35px;
height: 35px;
}
.headerstyle5 .socials li {
margin-top: 0;
margin-left: 10px;
}
.headerstyle5 .page-header .socials li a {
width: 20px;
margin: 0;
padding: 0;
}
.headerstyle5 .page-header .socials .facebook {
background-position: -16px -1937px !important;
}
.headerstyle5 .page-header .socials .twitter {
background-position: -54px -1937px !important;
}
.headerstyle5 .page-header .socials .skype {
background-position: -88px -1937px !important;
}
.headerstyle5 .page-header .socials .dribbble {
background-position: -116px -1937px !important;
}
.headerstyle5 .page-header .socials .youtube {
background-position: -144px -1937px !important;
}
.headerstyle5 .page-header .socials .linkedin {
background-position: -206px -1937px !important;
}
.headerstyle5 .page-header .socials .google-plus {
background-position: -270px -1937px !important;
}
.headerstyle5 .page-header .socials .pinterest {
background-position: -239px -1937px !important;
}
.headerstyle5 .page-header .socials .tumblr {
background-position: -174px -1937px !important;
}
.headerstyle5 .page-header .socials .instagram {
background-position: -306px -1936px !important;
}
.fixed-header .main-menu {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
}
.fixed-header .small_preheader {
margin-bottom: 46px;
}
.menu [class^="icon-"]:before, .menu [class*=" icon-"]:before {
font-family: fontawesome;
}
.menu li a[class^="icomoon-"]:before, .menu li a[class*=" icomoon-"]:before {
font-family: icomoon;
top: 2px;
}
.headerstyle5 .page-header .wrapper.headline {
background: transparent;
}
.headerstyle5 .only-path .page-path {
margin-top: 30px;
}
.headerstyle5.no-header-image .header-image.header-image-no-titlebar {
height: 0;
}
}
/*----------------- /Headerstyle5 -------------*/
/*----------------- Header style 6 ------------*/
@media only screen and (min-width: 768px){
.headerstyle2.headerstyle2_2 .menu>li, .headerstyle2.headerstyle2_2 .menu>ul>li {
margin-top: 36px;
margin-right: 5px;
}
.headerstyle2.headerstyle2_2 .menu>li>a, .headerstyle2.headerstyle2_2 .menu>ul>li>a {
height: 30px;
line-height: 30px;
border-radius: 3px;
padding-right: 25px;
margin-right: 0px;
}
.b960.headerstyle2.headerstyle2_2 .menu>li>a, .b960.headerstyle2.headerstyle2_2 .menu>ul>li>a {
padding-left: 0;
}
.headerstyle2_2 .sub-menu {
background: #fff;
border-radius: 3px;
box-shadow: 0 0 5px 0 rgba(0,0,0,0.15);
}
.headerstyle2.headerstyle2_2 .menu>li>span, .headerstyle2.headerstyle2_2 .menu>ul>li>span {
right: 10px;
color: #adafb0;
}
.headerstyle2.headerstyle2_2 .menu>li:hover>span, .headerstyle2.headerstyle2_2 .menu>ul>li:hover>span {
right: 5px;
color: #fff;
background-color: #0f9de0;
width: 14px;
height: 14px;
text-align: center;
line-height: 15px;
border-radius: 50%;
box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.5);
}
.headerstyle2.headerstyle2_2 .menu>li.current_page_item>a,
.headerstyle2.headerstyle2_2 .menu>ul>li.current_page_item>a,
.headerstyle2.headerstyle2_2 .menu>li.current-menu-parent>a {
background-color: #1b8bd2;
color: #fff;
box-shadow: inset 0 0 0 1px rgba(0, 71, 116, 0.32);
}
.headerstyle2.headerstyle2_2 .menu>li.current_page_item>span,
.headerstyle2.headerstyle2_2 .menu>ul>li.current_page_item>span,
.headerstyle2.headerstyle2_2 .menu>li.current-menu-parent>span {
color: #fff;
}
.headerstyle2_2 li.post-menu > a, .headerstyle2_2 li.mega-menu > a {
margin-bottom: 1px;
}
.headerstyle2_2 li.post-menu > ul {
border-top-color: transparent;
background-color: #fff;
}
.headerstyle2_2 li.post-menu .sub-menu > li a:hover:before {
display: none;
}
.headerstyle2_2 .menu-post-description {
color: #45484a;
}
.headerstyle2_2 .mega-menu ul li ul {
box-shadow: none;
}
.headerstyle2_2 li.mega-menu>.sub-menu {
border-top-color: transparent;
background-color: #fff;
padding: 10px 0px;
}
.headerstyle2_2 .menu >li>a:after, .headerstyle2_2 .menu>ul>li>a:after {
display: none;
}
.fixed-header.headerstyle2.headerstyle2_2 .menu>li, .fixed-header.headerstyle2.headerstyle2_2 .menu>ul>li {
margin-top: 1px;
}
.headerstyle2_2 li.mega-menu>.sub-menu li a {
color: #45484a;
}
.headerstyle2_2 li.mega-menu>.sub-menu > li >a {
font-weight: 900;
border: 0;
}
.headerstyle2_2 .sub-menu li a {
background-color: transparent;
color: #45484a;
border-color: #e3eaf4;
padding: 0 20px;
}
.headerstyle2_2 .sub-menu li {
border-color: #e3eaf4;
margin: 0 10px;
}
.headerstyle2_2 .post-details {
background-color: #fff;
}
.wrapper.preheader.white {
background-color: #fff;
}
.preheader.white {
position: relative;
z-index: 3000;
border-bottom: 1px solid #edf0f1;
}
.preheader.white p {
display: inline-block;
color: #69767f;
margin-right: 30px;
margin-bottom: 0;
}
.preheader.white span {
margin-right: 5px;
}
.preheader.white .menu li {
margin: 0;
line-height: 10px;
height: 10px;
}
.preheader.white .menu li a {
color: #9c9fa2;
font-size: 10px;
line-height: 10px;
height: 15px;
}
.preheader.white .menu {
float: none;
display: inline-block;
margin: 0;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
height: 19px;
margin-top: 1px;
margin-right: 25px;
}
.preheader.white .menu li:hover .icon-angle-down {
background: none;
box-shadow: none;
color: #0f9de0;
right: 7px;
}
.cart-button {
color: #1b8bd2;
font-size: 12px;
float: right;
margin-top: 4px;
}
.cart-button:before {
content: "\f07a";
font-family: fontawesome;
margin-right: 5px;
}
.preheader.white .menu .icon-angle-down {
margin-top: 0;
top: -1px;
}
}
/*----------------<PREHEADER ICONS>----------------*/
.preheader-builder .socials li {
margin-top: 0;
margin-left: 10px;
}
.preheader-builder .socials li a {
width: 20px;
margin: 0;
padding: 0;
}
.preheader-builder .socials span.tran02slinear {
display: none;
}
.preheader-builder .socials .facebook {
background-position: -16px -1937px !important;
}
.preheader-builder .socials .twitter {
background-position: -54px -1937px !important;
}
.preheader-builder .socials .skype {
background-position: -88px -1937px !important;
}
.preheader-builder .socials .dribbble {
background-position: -116px -1937px !important;
}
.preheader-builder .socials .youtube {
background-position: -144px -1937px !important;
}
.preheader-builder .socials .linkedin {
background-position: -206px -1937px !important;
}
.preheader-builder .socials .google-plus {
background-position: -270px -1937px !important;
}
.preheader-builder .socials .pinterest {
background-position: -239px -1937px !important;
}
.preheader-builder .socials .tumblr {
background-position: -174px -1937px !important;
}
.preheader-builder .socials .instagram {
background-position: -306px -1936px !important;
}
/*----------------</PREHEADER ICONS>----------------*/
/*----------------<HEADER IMAGE>----------------*/
.header-image {
height: 99px;
background-position: center;
}
.header-image.header-image-path-only {
height: 85px;
}
.header-image.header-image-no-titlebar {
height: 40px;
}
.image1 .header-image{
background-image: url(../images/image1.jpg);
}
.image2 .header-image{
background-image: url(../images/image2.jpg);
}
.image3 .header-image{
background-image: url(../images/image3.jpg);
}
.image4 .header-image{
background-image: url(../images/image4.jpg);
}
.image5 .header-image{
background-image: url(../images/image5.jpg);
}
.image6 .header-image{
background-image: url(../images/image6.jpg);
}
/*----------------</HEADER IMAGE>----------------*/
/*----------------<HEADER STYLE7>----------------*/
body.headerstyle7.fixed-header .page-header .menu-bg{
opacity:.8;
transition: opacity 0.3s;
-webkit-transition: opacity 0.3s;
-moz-transition: opacity 0.3s;
}
body.headerstyle7.fixed-header .page-header .menu-bg:hover{
opacity:1;
}
body.headerstyle7 .page-header .menu>li>a:after{
content:''!important;
display:inline-block!important;
width:15px!important;
height:15px!important;
background:url(../img/header7-menu.png) no-repeat!important;
background-position:left top;
margin-left:6px;
top:3px;
position:relative!important;
transition: background 0.2s;
-webkit-transition: background 0.2s;
-moz-transition: background 0.2s;
}
body.headerstyle7 .page-header .menu>li:hover>a:after{
background-position:left bottom!important;
}
/*----------------</HEADER STYLE7>----------------*/
/*----------------<PLACEHOLDER>----------------*/
.placeholder {
height: 450px;
background-position: center;
}
.placeholder{
background-image: url(../images/placeholder.jpg);
}
/*----------------</PLACEHOLDER>----------------*/
/*----------------<TWO HEADERS>----------------*/
.two-headers {
position: relative;
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
min-height: 89px;
}
.two-headers h2,
.two-headers h3 {
color: #e7ebee;
}
.two-headers h2 {
font-size: 28px;
font-weight: 300;
margin-top: 10px;
text-transform: none;
margin-bottom: 0;
}
.two-headers h3 {
font-size: 18px;
font-weight: 400;
text-transform: none;
}
.no-csstransitions .two-headers a:before {
width: 11px;
left: 5px;
}
/*----------------</TWO HEADERS>----------------*/
/*----------------<THREE PLATES>----------------*/
.three-plates {
background: #a7acaf !important;
overflow: hidden;
}
.three-plates .plate {
position: relative;
float: left;
width: 33.333333%;
z-index: 10;
}
.three-plates .plate a{
display: block;
position: relative;
padding: 25px 0 20px;
}
.three-plates .plate:hover {
background: transparent;
}
.three-plates .plate .alpha,
.three-plates .plate .omega {
display: block;
position: absolute;
height: 100%;
width: 300%;
background: #a7acaf;
top: 0;
}
.plate:hover, .plate:hover .alpha, .plate:hover .omega {
box-shadow: inset 0px -2px 0px 0px #3799d8;
}
.three-plates .plate:hover .alpha,
.three-plates .plate:hover .omega {
background: transparent;
}
.three-plates .plate .alpha {
right: 100%;
}
.three-plates .plate .omega {
left: 100%;
}
.three-plates .plate .separator {
position: absolute;
top:0;
left: 0;
height:100%;
width: 1px;
background: #717476;
border-right: solid 1px #babec1;
}
.three-plates .plate .separator div{
position: absolute;
top: 50%;
left: 0;
height:15px;
width: 8px;
margin-top:-7px;
background-image: url(../img/sprite.png);
background-position: 0 0;
}
.three-plates .plate:first-child .separator{
display: none;
}
.three-plates .plate h2,
.three-plates .plate h3 {
color: #53575b;
text-shadow: 1px 1px 1px rgba(255,255,255,0.3);
text-align: center;
}
.three-plates .plate:hover h2,
.three-plates .plate:hover h3 {
color: #f3f3f3;
text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}
.three-plates .plate h2 {
font-size: 24px;
font-weight: 300;
text-transform: none;
margin-bottom: 0;
}
.three-plates .plate h3 {
font-size: 12px;
font-weight: 400;
text-transform: uppercase;
margin-bottom: 0;
}
.three-plates-img-1,
.three-plates-img-2,
.three-plates-img-3,
.three-plates-idea,
.three-plates-list,
.three-plates-mental,
.three-plates-start,
.three-plates-strategy,
.three-plates-target,
.three-plates-time,
.three-plates-upload {
position: relative;
display: block;
width: 64px;
height: 65px;
margin: 0px auto 15px;
}
.three-plates-img-1 span,
.three-plates-img-2 span,
.three-plates-img-3 span,
.three-plates-idea span,
.three-plates-list span,
.three-plates-mental span,
.three-plates-start span,
.three-plates-strategy span,
.three-plates-target span,
.three-plates-time span,
.three-plates-upload span {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-image: url(../img/sprite.png);
}
.three-plates-img-1 span+span,
.three-plates-img-2 span+span,
.three-plates-img-3 span+span,
.three-plates-idea span+span,
.three-plates-list span+span,
.three-plates-mental span+span,
.three-plates-start span+span,
.three-plates-strategy span+span,
.three-plates-target span+span,
.three-plates-time span+span,
.three-plates-upload span+span {
opacity: 0;
filter: alpha(opacity=0);
}
.three-plates-upload span,
.three-plates-upload span+span {
background-position: center center;
background-repeat: no-repeat;
}
.three-plates .plate:hover .three-plates-img-1 span:first-child,
.three-plates .plate:hover .three-plates-img-2 span:first-child,
.three-plates .plate:hover .three-plates-img-3 span:first-child,
.three-plates .plate:hover .three-plates-idea span:first-child,
.three-plates .plate:hover .three-plates-list span:first-child,
.three-plates .plate:hover .three-plates-mental span:first-child,
.three-plates .plate:hover .three-plates-start span:first-child,
.three-plates .plate:hover .three-plates-strategy span:first-child,
.three-plates .plate:hover .three-plates-target span:first-child,
.three-plates .plate:hover .three-plates-time span:first-child,
.three-plates .plate:hover .three-plates-upload span:first-child {
opacity: 0;
filter: alpha(opacity=0);
}
.three-plates .plate:hover .three-plates-img-1 span+span,
.three-plates .plate:hover .three-plates-img-2 span+span,
.three-plates .plate:hover .three-plates-img-3 span+span,
.three-plates .plate:hover .three-plates-idea span+span,
.three-plates .plate:hover .three-plates-list span+span,
.three-plates .plate:hover .three-plates-mental span+span,
.three-plates .plate:hover .three-plates-start span+span,
.three-plates .plate:hover .three-plates-strategy span+span,
.three-plates .plate:hover .three-plates-target span+span,
.three-plates .plate:hover .three-plates-time span+span,
.three-plates .plate:hover .three-plates-upload span+span {
opacity: 1;
filter: alpha(opacity=100);
}
.three-plates-img-1 span:first-child {
background-position: -34px 0;
}
.three-plates-img-1 span+span {
background-position: -34px -65px;
}
.three-plates-img-2 span:first-child {
background-position: -112px 0;
}
.three-plates-img-2 span+span {
background-position: -112px -65px;
}
.three-plates-img-3 span:first-child {
background-position: -184px 0;
}
.three-plates-img-3 span+span {
background-position: -184px -65px;
}
.three-plates-idea span:first-child {
background-position: 0 -491px;
}
.three-plates-idea span+span {
background-position: 0 -565px;
}
.three-plates-list span:first-child {
background-position: -67px -491px;
}
.three-plates-list span+span {
background-position: -67px -565px;
}
.three-plates-mental span:first-child {
background-position: -135px -491px;
}
.three-plates-mental span+span {
background-position: -135px -565px;
}
.three-plates-start span:first-child {
background-position: -198px -491px;
}
.three-plates-start span+span {
background-position: -198px -565px;
}
.three-plates-strategy span:first-child {
background-position: -266px -491px;
}
.three-plates-strategy span+span {
background-position: -266px -565px;
}
.three-plates-target span:first-child {
background-position: -329px -491px;
}
.three-plates-target span+span {
background-position: -329px -565px;
}
.three-plates-time span:first-child {
background-position: -393px -491px;
}
.three-plates-time span+span {
background-position: -393px -565px;
}
/*----------------</THREE PLATES>----------------*/
/*----------------<ADVANTAGES>----------------*/
.advantages section {
position: relative;
margin-bottom: 40px;
}
.advantages a {
display: inline-block;
margin: 5px 0 0 88px;
}
.advantages:after {
clear: both;
display: block;
content: '';
}
.advantages h2 {
text-transform: uppercase;
font-size: 12px;
font-weight: 800;
color: #45484a;
margin-bottom: 0;
}
.advantages a:hover h2 {
color: #3170ac;
}
.advantages .icon-content {
display: block;
margin: 5px 0 0 88px;
font-size: 12px;
font-weight: 400;
font-family: 'Open Sans', sans-serif;
}
.advantages ul li{
padding: 3px 0;
}
.advantages a .advantages-img,
.teaser a .advantages-img {
position: absolute;
top: 0;
left: 0;
display: block;
width: 69px;
height: 71px;
}
.advantages-img img {
text-align: center;
width: 40px;
position: absolute;
left: 14px;
top: 15px;
}
.advantages a .advantages-img span,
.teaser a .advantages-img span {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-image: url(../img/sprite.png);
}
.advantages a .advantages-img span:first-child+span,
.teaser a .advantages-img span:first-child+span {
opacity: 0;
filter: alpha(opacity=0);
}
.advantages a:hover .advantages-img span:first-child+span,
.teaser a:hover .advantages-img span:first-child+span {
opacity: 1;
filter: alpha(opacity=100);
}
.advantages a .advantages-img span:first-child,
.teaser a .advantages-img span:first-child {
background-position: 0px -130px;
}
.advantages a .advantages-img.font-icon span {
background: transparent;
}
.advantages a .advantages-img.font-icon i {
font-size:65px;
}
.advantages a:hover .advantages-img.font-icon span:first-child+span {
opacity:0;
}
.advantages a .advantages-img span:first-child+span, .teaser a .advantages-img span:first-child+span {
background: #407eb5;
border-radius: 50%;
top: 5px;
left: 5px;
width: 59px;
height: 59px;
box-shadow: inset 0 50px 30px -30px rgba(0,0,0,0.2);
}
.advantages a .advantages-img.img-1 span+span+span,
.teaser a .advantages-img.img-1 span+span+span {
background-position: -69px -130px;
}
.advantages a .advantages-img.img-2 span+span+span,
.teaser a .advantages-img.img-2 span+span+span {
background-position: -138px -130px;
}
.advantages a .advantages-img.img-3 span+span+span,
.teaser a .advantages-img.img-3 span+span+span {
background-position: -207px -130px;
}
.advantages a .advantages-img.champion span+span+span,
.teaser a .advantages-img.champion span+span+span {
background-position: 7px -636px;
}
.advantages a .advantages-img.function span+span+span,
.teaser a .advantages-img.function span+span+span {
background-position: -54px -638px;
}
.advantages a .advantages-img.leaf span+span+span,
.teaser a .advantages-img.leaf span+span+span {
background-position: -108px -636px;
}
.advantages a .advantages-img.light span+span+span,
.teaser a .advantages-img.light span+span+span {
background-position: -162px -638px;
}
.advantages a .advantages-img.settings span+span+span,
.teaser a .advantages-img.settings span+span+span {
background-position: -220px -637px;
}
.advantages a .advantages-img.show span+span+span,
.teaser a .advantages-img.show span+span+span {
background-position: -282px -637px;
}
.advantages a .advantages-img.time span+span+span,
.teaser a .advantages-img.time span+span+span {
background-position: -338px -638px;
}
.advantages .advantages-img-upload span+span+span {
background-position: center center;
background-repeat: no-repeat;
}
/*----------------</ADVANTAGES>----------------*/
/*----------------<WHY CHOOSE US>----------------*/
.why-choose-us {
overflow: hidden;
}
.why-choose-us>.separator {
position: relative;
height:3px;
width: 100%;
background: #dadada;
border-bottom: solid 1px #fff;
margin-bottom: 30px;
}
.why-choose-us .separator div{
position: absolute;
top: 0;
left: 50%;
width: 19px;
height:10px;
margin-left:-9px;
background-image: url(../img/sprite.png);
background-position: 0 -15px;
}
.why-choose-us a {
display: inline-block;
margin-bottom: 10px;
width: 100%;
}
article.why-choose-us h2 {
display: block;
float: left;
height: 41px;
text-transform: uppercase;
font-size: 12px;
font-weight: 800;
line-height: 21px;
width: 100%;
padding-left: 50px;
color: #45484a;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
padding-top: 10px;
margin-bottom: 0;
}
.why-choose-us a:hover h2 {
color: #3170ac;
}
.why-choose-us .why-choose-us-img {
position: relative;
display: block;
float: left;
width: 41px;
height: 41px;
margin-right: -45px;
margin-left: 1px;
border-radius: 50%;
overflow: hidden;
behavior: url(../../circles/css/PIE.htc);
}
.why-choose-us .why-choose-us-img span {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-image: url(../img/sprite.png);
border-radius: 50%;
}
.why-choose-us .why-choose-us-img span:first-child+span {
opacity: 0;
filter: alpha(opacity=0);
}
.why-choose-us a:hover .why-choose-us-img span:first-child+span {
opacity: 1;
filter: alpha(opacity=100);
}
.why-choose-us .why-choose-us-img span:first-child {
background: #4c4f51;
border-radius: 50%;
-webkit-box-shadow: inset 0 0 6px 0 rgba(0,0,0,0.5);
box-shadow: inset 0 0 6px 0 rgba(0,0,0,0.5);
}
.why-choose-us .why-choose-us-img span:first-child+span {
background: #3789bd;
border-radius: 50%;
-webkit-box-shadow: inset 0 0 7px rgba(0,0,0,0.5);
box-shadow: inset 0 0 7px rgba(0,0,0,0.5);
}
.why-choose-us .why-choose-us-img.img-1 span+span+span {
background-position: -111px -201px;
}
.why-choose-us .why-choose-us-img.img-2 span+span+span {
background-position: -152px -201px;
}
.why-choose-us .why-choose-us-img.img-3 span+span+span {
background-position: -193px -201px;
}
.why-choose-us .why-choose-us-img.img-4 span+span+span {
background-position: -234px -201px;
}
.why-choose-us .why-choose-us-img.img-5 span+span+span {
background-position: -112px -242px;
}
.why-choose-us .why-choose-us-img.img-6 span+span+span {
background-position: -152px -242px;
}
.why-choose-us .why-choose-us-img.img-7 span+span+span {
background-position: -193px -242px;
}
.why-choose-us .why-choose-us-img.img-8 span+span+span {
background-position: -234px -242px;
}
.why-choose-us .why-choose-us-img.footprint span+span+span {
background-position: -338px -202px;
}
.why-choose-us .why-choose-us-img.setting span+span+span {
background-position: -338px -241px;
}
/*----------------</WHY CHOOSE US>----------------*/
/*----------------<POST>----------------*/
.post {
position: relative;
display: block;
padding: 30px 0 25px 10px;
margin-left: 80px;
}
.post:first-child {
padding-top: 0px;
}
.recent-posts .post>header h2 {
font-size: 18px;
font-weight: 300;
color: #3170ac;
margin-bottom: 10px;
text-transform: none;
line-height: 1;
}
.post .separator {
position: absolute;
top:0;
right:0;
height:3px;
width: 100%;
background: #dadada;
border-bottom: solid 1px #fff;
margin-bottom: 30px;
}
.container > .separator {
position: relative;
top: 0;
right: 0;
height: 3px;
background: #dadada;
border-bottom: solid 1px #fff;
margin-bottom: 30px;
}
.recent-posts .separator {
width: 100%;
border-bottom: 1px solid #ffffff;
border-top: 1px solid #dadada;
height: 0;
margin-bottom: 0px;
}
.post:first-child .separator {
display: none;
}
.post-helper-absolute {
position: absolute;
top: 30px;
left: -80px;
}
.post:first-child .post-helper-absolute {
top: 0px;
}
.post-comments {
position: absolute;
top: 48px;
left: 42px;
display: block;
width: 26px;
height: 26px;
-webkit-box-shadow: 0 0 1px 0 rgba(0,0,0,0.7);
box-shadow: 0 0 1px 0 rgba(0,0,0,0.7);
background-position: 0 -100px;
border-radius: 50%;
behavior: url(../../circles/css/PIE.htc);
}
.post-comments span {
float: right;
font-size: 12px;
font-weight: 300;
color: #f3f3f3;
line-height: 22px;
padding: 0 4px 0 4px;
text-align: center;
background: #2f6daa;
border-radius: 50%;
margin: 0px;
width: 14px;
-webkit-box-shadow: inset 0 0px 4px 0px rgba(0,0,0,0.4);
box-shadow: inset 0 0px 4px 0px rgba(0,0,0,0.4);
border: 2px solid #fff;
behavior: url(../../circles/css/PIE.htc);
}
.inline.post-comments span {
background: transparent;
box-shadow: none;
border: 0;
width: auto;
border-radius: 0;
font-size: 11px;
padding: 0;
line-height: 16px;
display: inline-block;
float: none;
}
.inline.post-comments span:after {
display: none;
}
.post-comments span:after {
content: '';
background: url(../img/sprite.png) 0px -103px;
position: absolute;
top: 3px;
left: -2px;
width: 5px;
height: 5px;
}
.post-comments.inline {
background-image: url(../img/comments.png);
background-position: 0;
background-repeat: no-repeat;
display: inline-block;
position: relative;
left: auto;
top: auto;
width: auto;
padding-left: 20px;
height: 16px;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0;
font-size: 11px;
}
.post-author {
display: block;
width: 71px;
text-align: center;
margin-top: 8px;
font-size: 11px;
}
.post-author a{
color: #3170ac;
}
.post-author.inline {
display: inline;
margin-right: 10px;
padding-left: 25px;
background-image: url(../img/author.png);
background-position: left 0px;
background-repeat: no-repeat;
padding-bottom: 1px;
}
.post-type {
position: relative;
display: block;
width: 41px;
height: 41px;
background-image: url(../img/sprite.png);
background-position: -70px -201px;
margin: 13px auto 0;
}
.post-type span{
position: absolute;
left: 0;
top: 0;
display: block;
width: 41px;
height: 41px;
background-image: url(../img/sprite.png);
}
.post.format-gallery .post-type span{
background-position: -193px -283px;
}
.post.format-image .post-type span {
background-position: -234px -283px;
}
.post.format-video .post-type span{
background-position: -193px -324px;
}
.post .post-type span{ /* default post icon */
background-position: -234px -324px;
}
.post-date,
.post-category {
display: inline-block;
height: 16px;
padding: 1px 0;
font-size: 11px;
margin-right: 10px;
padding-left: 25px;
}
.post-date {
background-image: url(../img/date.png);
background-position: left center;
background-repeat: no-repeat;
}
.post-category {
background-image: url(../img/category.png);
background-position: left center;
background-repeat: no-repeat;
}
.post-category span,
.post-category a,
.post-comments.inline a {
color: #3170ac;
line-height: 16px;
}
.post-body {
display: block;
margin-top: 15px;
}
.post-body-text p {
margin-top: 20px;
}
.recent-posts .post-body-text p {
margin-top: 10px;
margin-bottom: 0;
}
.read-more {
color: #3170ac;
text-transform: uppercase;
font-size: 10px;
background: url(../img/read-more.png) no-repeat right center;
padding-right: 18px;
margin-left: 3px;
}
.post-month-aside {
background: #45484a;
text-align: center;
padding-bottom: 2px;
}
.post-month-aside span {
color: #f3f3f3;
font-size: 11px;
}
.post-day-aside {
text-align: center;
background: #eaeaea;
width: 70px;
height: 50px;
line-height: 50px;
}
.post-day-aside span {
color: #45484a;
font-size: 30px;
text-align: center;
}
.post.left .item-con-t1 {
width: 46.5%;
float: left;
margin-right: 3%;
}
.post.right .item-con-t1 {
width: 46.5%;
float: right;
margin-left: 5%;
}
.post.center .item-con-t1 {
width: 100%;
}
.post-blockquote {
float: left;
width: 50%;
font-size: 14px;
font-style: italic;
margin-right: 5%;
margin-bottom: 5px;
padding: 10px 5%;
background: url(../img/marble-normal.gif) repeat #ebebeb;
color: #3b74aa;
}
.post-single-pagination {
margin-left: 80px;
}
.post-single-pagination a[rel=prev],
.post-single-pagination a[rel=next] {
line-height: 36px;
text-transform: uppercase;
color: #f3f3f3;
font-size: 11px;
}
.post-single-pagination a[rel=prev] {
float: left;
padding-left: 15px;
background: url(../img/prev.png) left center no-repeat;
}
.post-single-pagination a[rel=next] {
float: right;
padding-right: 15px;
background: url(../img/next.png) right center no-repeat;
}
.post-pagination {
margin-left: 80px;
}
.post-pagination li{
position: relative;
display: block;
float: left;
width: 16px;
height: 36px;
text-align: center;
margin-right: 3px;
}
.post-pagination li:hover span,
.post-pagination li.active span {
opacity: 1;
filter: alpha(opacity=1);
}
.post-pagination li:hover a,
.post-pagination li.active a {
color: #3170ac;
}
.post-pagination li span{
position: absolute;
top: 50%;
display: block;
width: 16px;
height: 16px;
margin-top:-8px;
opacity: 0;
filter: alpha(opacity=0);
background-image: url(../img/sprite.png);
background-position: -279px -96px;
}
.post-pagination li a{
position: relative;
display: block;
line-height: 36px;
height: 36px;
color: #f3f3f3;
font-size: 11px;
}
.post-pagination .prev-page {
background: url(../img/prev.png) left center no-repeat;
}
.post-pagination .next-page {
background: url(../img/next.png) right center no-repeat;
}
.videoWrapper {
position: relative;
padding-bottom: 0;
padding-top: 0px;
height: auto;
display: block;
width: 100%;
float: left;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.flexslider-posts-slider .videoWrapper {
margin-bottom: 20px;
}
.videoWrapper img {
opacity: 0;
}
.post-img.post-video {
height: auto;
}
/*----------------</POST>----------------*/
/*----------------<BLOG>----------------*/
.post h2 {
margin-bottom: 15px;
text-transform: none;
color: #3b74aa;
font-weight: 100;
font-size: 25px;
}
.template-blog-3 {
padding: 40px 0 0;
}
.post.format-gallery .flexslider {
margin-bottom: 0;
}
/*----------------</BLOG>----------------*/
/*----------------<ABOUT THE AUTHOR>----------------*/
.about {
margin: 0 0 10px 80px;
}
.about>h4 {
text-align: center;
font-size: 24px;
font-weight: 300;
text-transform: uppercase;
margin-bottom: 10px;
}
.about .separator {
position: relative;
height:3px;
width: 100%;
background: #dadada;
border-bottom: solid 1px #fff;
margin-bottom: 10px;
}
.about .separator div{
position: absolute;
top: 0;
left: 50%;
width: 19px;
height:10px;
margin-left:-9px;
background-image: url(../img/sprite.png);
background-position: 0 -15px;
}
.about-content {
position: relative;
padding: 25px 10px;
}
.about-helper-absolute {
position: absolute;
top: 25px;
left: -80px;
}
.about-body {
display: block;
}
/*----------------</ABOUT THE AUTHOR>----------------*/
/*----------------<WHAT CLIENTS SAY ----------*/
.widget_testimonials_2 .quote {
background: url(../img/quotes.png) no-repeat right -10px #e6e6e6;
padding: 20px 25px;
position: relative;
border-radius: 5px;
-webkit-backface-visibility: hidden;
}
.widget_testimonials_2 article {
display: block;
margin: 1px 2px 30px;
}
.widget_testimonials_2 .container-t1 {
-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.4);
box-shadow: 0 0 2px rgba(0,0,0,0.4);
border-radius: 6px;
}
.widget_testimonials_2 .helper {
position: absolute;
background: url(../img/testimonial-helper.png);
bottom: -24px;
right: 20px;
width: 30px;
height: 26px;
}
.widget_testimonials_2 header {
margin: 19px 0 0 10px;
padding-left: 30px;
background: url(../img/author.png) no-repeat 4px 2px;
}
.widget_testimonials_2 h3 {
text-transform: uppercase;
font-size: 11px;
line-height: 1;
color: #45484a;
}
.widget_testimonials_2 header span {
text-transform: uppercase;
font-size: 10px;
width: 100%;
float: left;
}
.widget_testimonials_2 span a{
color: #45484a;
}
.widget_testimonials_2 .slides li {
padding-right: 0px;
}
.widget_testimonials_2 header .author {
font-weight: bold;
text-transform: uppercase;
color: #45484a;
}
.widget_testimonials-container .flex-direction-nav a,
.widget_our_clients-container .flex-direction-nav a,
.widget_testimonials_2 .flex-direction-nav a,
.recent_projects .flex-direction-nav a {
float: left;
width: 10px;
height: 14px;
font-size: 0;
background-image: url(../img/sprite.png);
}
.flexslider-testimonials.widget_testimonials_2 {
width: 100%;
overflow: visible;
position: relative;
}
.flexslider-testimonials.widget_testimonials_2 .flexslider{
width: 100%;
}
.widget_testimonials-container .flex-direction-nav .flex-next,
.widget_our_clients-container .flex-direction-nav .flex-next,
.widget_testimonials_2 .flex-direction-nav .flex-next,
.recent_projects .flex-direction-nav .flex-next {
background-position: -19px -25px;
}
.widget_testimonials-container .flex-prev,
.widget_our_clients-container .flex-prev,
.widget_testimonials_2 .flex-prev,
.recent_projects .flex-prev {
background-position: -3px -25px;
}
.widget_testimonials-container .flex-direction-nav,
.widget_our_clients-container .flex-direction-nav,
.widget_testimonials_2 .flex-direction-nav,
.recent_projects .flex-direction-nav {
display: block;
position: absolute;
right: 0;
top: 0;
}
.widget_our_clients-container .flex-direction-nav {
top: 40px;
}
.flex-direction-nav li {
float: left;
margin-left: 10px;
list-style: none;
}
.widget_testimonials_2 .flex-direction-nav {
top: -30px;
}
/*----------------</WHAT CLIENTS SAY ----------*/
/*----------------<Testimonials>-------------*/
.widget_testimonials-container .flex-direction-nav a {
float: left;
width: 10px;
height: 14px;
font-size: 0;
background-image: url(../img/sprite.png);
}
.lighter-grey .widget_testimonials-container .flex-direction-nav .flex-next{
background-position: -19px -70px;
}
.lighter-grey .widget_testimonials-container .flex-prev {
background-position: -3px -70px;
}
.widget_testimonials-container .flex-direction-nav {
display: block;
position: absolute;
right: 0;
top: -10px;
}
/*-----------------<Testiomonials>------------*/
/*----------------<RECENT PROJECTS>----------------*/
.recent_projects .container-t1 {
-webkit-box-shadow: 0 0 1px rgba(0,0,0,0.8);
box-shadow: 0 0 1px rgba(0,0,0,0.8);
position: relative;
float: left;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.recent_projects {
margin-bottom: 40px;
padding: 0 1px;
}
.recent_projects .theme-one-third:nth-child(3n+3){
margin-right: 0;
}
.recent_projects .image-links {
top: 50%;
}
.recent_projects img {
width: 100%;
float: left;
}
.recent_projects header {
background: #e7e7e7;
padding-bottom: 19px;
display: block;
float: left;
width: 100%;
}
.recent_projects h2 {
text-align: center;
font-size: 17px;
font-weight: normal;
padding-top: 15px;
text-transform: none;
margin-bottom: 0;
}
.recent_projects h3 {
font-size: 11px;
text-align: center;
font-weight: normal;
text-transform: uppercase;
margin-top: 3px;
margin-bottom: 0;
}
.recent_projects .facilities {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.recent_projects .image-links {
left: 50%;
margin-left: -55px;
margin-top: -25px;
}
/*----------------</RECENT PROJECTS>----------------*/
/*----------------<TEASER>----------------*/
.teaser {
float: left;
border-radius: 50%;
position: relative;
width: 100%;
margin-bottom: 30px;
behavior: url(../../circles/css/PIE.htc);
padding-left: 1px;
padding-right: 1px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.teaser.style1 {
overflow: visible;
float: left;
}
.teaser-hover {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
opacity: 0;
-webkit-transition: opacity 0.3s linear;
-moz-transition: opacity 0.3s linear;
-o-transition: opacity 0.3s linear;
-ms-transition: opacity 0.3s linear;
transition: opacity 0.3s linear;
}
.teaser-hover {
}
.teaser:hover .teaser-hover {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.ie8 .teaser.style2 header {
background: url(../img/bg-black-045.png);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.ie8 .teaser.style2:hover header {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.teaser > img, .teaser div > img {
float: left;
width: 100%;
border-radius: 50%;
height: auto;
}
.teaser.style1 header {
width: 100%;
text-align: center;
position: absolute;
top: 0;
left: 0;
padding: 43% 0;
height: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-backface-visibility: hidden;
border-radius: 50%;
}
.ie8 .blue-grad {
background-color: rgb(72, 172, 219);
}
.blue-grad {
border-radius: 200px;
background-color: rgba(72, 172, 219, 0.91);
-webkit-box-shadow: inset 0 0 200px 0px rgba(0,0,0,0.3);
box-shadow: inset 0 0 200px 0px rgba(0,0,0,0.3);
}
.teaser.style2 header {
background: rgba(69, 72, 74, 0.78);
position: absolute;
bottom: 0;
width: 100%;
padding-top: 15%;
height: 35%;
border-radius: 0 0 700px 700px;
text-align: center;
-webkit-backface-visibility: hidden;
}
.teaser h2 {
color: #fff;
font-size: 19px;
text-transform: uppercase;
font-weight: normal;
margin-bottom:0;
}
.teaser h3 {
color: #fff;
font-size: 14px;
font-weight: normal;
padding: 0 10%;
}
.teaser.style2 header div {
position: absolute;
background: rgba(255, 255, 255, 0.13);
width: 50px;
height: 50px;
border-radius: 50px;
text-align: center;
line-height: 40px;
font-size: 25px;
top: -25px;
left: 50%;
margin-left: -25px;
-webkit-box-shadow: 0 0 1px #333;
box-shadow: 0 0 1px #333;
padding: 4px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.teaser.style2 header div span {
background: #fff;
width: 100%;
height: 100%;
float: left;
border-radius: 40px;
}
.teaser.style2 header span:before {
font-size: 14px;
font-weight: 100;
line-height: 44px;
}
.teaser.small {
width: 100%;
}
.teaser.style3 h2 {
font-size: 14px;
font-weight: bold;
}
.teaser.style3 header {
height: 75%;
width: 98%;
position: absolute;
text-align: center;
padding-top: 38%;
margin-left: 2%;
border-radius: 50%;
-webkit-backface-visibility: hidden;
}
.teaser-bg {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
-webkit-backface-visibility: hidden;
}
.teaser .bg-black-045 {
border-radius: 50%;
background-color: #45484a;
}
.teaser.style4 header {
float: left;
margin-top: 20px;
width: 100%;
}
.teaser.style4 h2 {
font-size: 14px;
font-weight: bold;
color: #45484a;
text-align: center;
}
.teaser .teaser-icon {
position: absolute;
top: 50%;
left: 50%;
display: block;
z-index: 1;
width: 69px;
height: 69px;
margin: 0;
margin: -34px 0 0 -34px;
}
.teaser > div {
float: left;
width: 100%;
border-radius: 50%;
border: 4px solid #fff;
-webkit-box-shadow: 0 0 1px 0 rgba(0,0,0,0.8);
box-shadow: 0 0 1px 0 rgba(0,0,0,0.8);
position: relative;
overflow: hidden;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.teaser.style4 .advantages-img img {
width: 50px;
height: 50px;
margin: 0;
position: absolute;
top: 10px;
left: 10px;
}
/*----------------</TEASER>----------------*/
/*----------------<CALL TO ACTIONS>----------------*/
.purchase-plate {
background: url(../img/marble-normal.gif) repeat #ebebeb;
border-left: 2px solid #427bb1;
position: relative;
margin-top: 30px;
padding: 30px 210px 30px 0;
}
.purchase-plate_header {
color: #3170ac;
font-size: 24px;
font-weight: 300;
padding-left: 60px;
}
.purchase-plate_text {
font-size: 19px;
padding-left: 60px;
display: block;
line-height: 1;
}
.purchase-plate_button {
position: absolute;
top: 50%;
width: 160px;
right: 30px;
height: 48px;
border-radius: 6px;
border-bottom: 4px solid rgba(255, 253, 253, 0.25);
background: #56595b;
color: #f3f3f3;
text-align: center;
line-height: 52px;
text-transform: uppercase;
text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
font-weight: bold;
font-size: 12px;
margin-top: -24px;
}
/*----------------</CALL TO ACTIONS>----------------*/
/*----------------<POST-SLIDER>----------------*/
.post-slider footer,
.post-slider header,
.post-slider .post-body-text {
position: relative;
margin-left: 110px;
}
.post-slider header {
margin-top: 15px;
margin-bottom: 10px;
font-size: 18px;
font-weight: 300;
}
.post-slider .post-body-text p {
margin-top: 0;
}
.post.post-slider {
border: 1px solid #ccc;
margin-left: 0;
padding: 4px;
border-radius: 3px;
padding-bottom: 30px;
}
.post-slider img {
width: 100%;
height: auto;
margin-bottom: 20px;
}
.post-slider footer {
margin-bottom: 10px;
}
.post.post-slider .post-helper-absolute {
top: -27px;
left: -86px;
display: block;
}
.flexslider {
/*position: relative;*/
margin-top: 30px;
}
.flex-viewport {
z-index: 1;
}
.flex-control-nav.flex-control-paging {
position: absolute;
top: 8px;
right: 22px;
}
.flex-control-nav li {
float: left;
}
.flex-control-nav a {
background: #f3f3f3;
width: 11px;
height: 11px;
border-radius: 10px;
font-size: 0;
float: left;
margin-left: 10px;
cursor: pointer;
}
.flex-direction-nav {
display: none;
}
.flex-control-nav a.flex-active {
background: #2774ae;
border: 2px solid #fff;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
/*----------------<POST-SLIDER>----------------*/
/*----------------<POST-SLIDER>----------------*/
.widget_more_info {
position: relative;
}
.widget_more_info h2 {
color: #Fff;
font-weight: 300;
font-size: 26px;
padding-right: 180px;
margin: 5px 0;
padding-left: 10px;
}
.widget_more_info span {
position: absolute;
right: 30px;
width: 60px;
height: 35px;
background: url(../img/sprite.png) -350px 0px;
top: 50%;
margin-top: -46px;
color: #474a4c;
padding: 30px 15px;
text-align: center;
text-shadow: 1px 1px #f1f1f1;
}
/*----------------<POST-SLIDER>----------------*/
/*-------------------- IMAGES SLIDER -----------------*/
.images-slider .flex-direction-nav li {
background-position: -278px -169px;
background-image: url(../img/sprite.png);
width: 51px;
height: 51px;
display: inline-block;
margin-left: -4px;
}
.images-slider .flex-direction-nav {
display: block;
position: absolute;
top: 50%;
left: 50%;
margin-left: -47px;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
margin-top: -25px;
z-index: 10;
}
.images-slider:hover .flex-direction-nav {
opacity: 1;
}
.images-slider.flexslider {
position: relative;
margin: 0;
}
.flexslider .slides li {
float: left;
}
.images-slider .slides li img {
float: left;
width: 100%;
height: auto;
}
.images-slider .flex-direction-nav li a {
font-size: 0;
border-radius: 50%;
margin: 5px;
width: 41px;
height: 40px;
-webkit-box-shadow: inset 0 30px 30px -30px rgba(0,0,0,0.4);
box-shadow: inset 0 30px 30px -30px rgba(0,0,0,0.4);
display: block;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.images-slider .flex-direction-nav li a:hover {
background-color: #407eb5;
}
.images-slider .flex-prev {
background-position: -284px -276px;
background-image: url(../img/sprite.png);
}
.images-slider .flex-next {
background-position: -282px -327px;
background-image: url(../img/sprite.png);
}
.flexslider-posts-slider.images-slider .flex-direction-nav {
top: 40%;
}
/*-------------------- IMAGES SLIDER -----------------*/
/*----------------<COMMENTS>----------------*/
.comments {
margin: 0 0 10px 80px;
}
.comments-header {
text-align: center;
}
.comments-header>h1,
.number-of-comments {
display: inline-block;
font-size: 24px;
font-weight: 300;
text-transform: uppercase;
margin-bottom: 10px;
}
.number-of-comments {
margin-left: 4px;
}
.number-of-comments span{
color: #3b74aa;
}
.comments .separator {
position: relative;
height:3px;
width: 100%;
background: #dadada;
border-bottom: solid 1px #fff;
}
.comments .separator div{
position: absolute;
top: 0;
left: 50%;
width: 19px;
height:10px;
margin-left:-9px;
background-image: url(../img/sprite.png);
background-position: 0 -15px;
}
.comment {
position: relative;
padding: 25px 10px;
}
.comment-reply {
font-size: 11px;
}
.comment.depth-2, .comment.depth-3 {
padding-left: 50px;
background: url(../img/marble-normal.gif) repeat #ebebeb;
border-bottom: solid 1px #fff;
}
.comment.depth-3 {
margin-left: 40px;
margin-top: 20px;
}
.comment-helper-absolute {
position: absolute;
top: 25px;
left: -80px;
}
.comment-reply {
color: #3b74aa;
}
.comment .post-author {
width: 61px;
}
.comment-body {
display: block;
margin-top: 7px;
}
/*----------------</COMMENTS>----------------*/
/*----------------<LEAVE COMMENT>----------------*/
.leave-comment {
margin: 0 0 120px 80px;
}
.leave-comment>h1 {
text-align: center;
font-size: 24px;
font-weight: 300;
text-transform: uppercase;
margin-bottom: 10px;
}
.leave-comment .separator {
position: relative;
height:3px;
width: 100%;
background: #dadada;
border-bottom: solid 1px #fff;
margin-bottom: 10px;
}
.leave-comment .separator div{
position: absolute;
top: 0;
left: 50%;
width: 19px;
height:10px;
margin-left:-9px;
background-image: url(../img/sprite.png);
background-position: 0 -15px;
}
.leave-comment form {
width: 100%;
}
.leave-comment form .input-field {
display: block;
float: left;
width: 49.166666%;
}
.leave-comment form .input-field.text-area {
width: 100%;
}
.leave-comment form .input-field:nth-child(2n) {
margin-right: 1.666666%;
}
.leave-comment form .input-field div:first-child {
font-size: 12px;
line-height: 28px;
margin-top: 4px;
}
.leave-comment form .input-field div span{
color: #7f7f7f;
}
.leave-comment form .input-field .input-style{
display: block;
width: 100%;
}
.leave-comment form .input-field .input-style input,
.leave-comment form .input-field .input-style textarea {
border-width: 0px;
padding: 0px;
margin: 0px;
width: 100%;
resize: none;
background: transparent;
overflow: hidden;
color: #45484a;
outline: none;
font-size: 12px;
}
.leave-comment form .input-field .input-style textarea {
height: 100px;
}
#reply-title {
text-align: center;
font-size: 24px;
font-weight: 300;
text-transform: uppercase;
margin-bottom: 10px;
}
.form-allowed-tags {
margin: 10px 0;
float: left;
}
.form-allowed-tags {
float: left;
margin: 10px 0;
}
#commentform input[type=submit] {
display: inline-block;
cursor: pointer;
font-size: 10px;
padding: 8px 40px;
margin-top: 10px;
margin-right: 7px;
text-transform: uppercase;
border-width: 1px;
border-color: #f3f3f3;
border-style: solid;
border-radius: 8px;
box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.1);
color: #45484a;
position: relative;
background: #eaebeb;
background: -webkit-gradient(linear, left top, left bottom, from(#d9dbdd), to(#eaebeb));
background: -webkit-linear-gradient(top, #d9dbdd, #eaebeb);
background: -moz-linear-gradient(top, #d9dbdd, #eaebeb);
background: -ms-linear-gradient(top, #d9dbdd, #eaebeb);
background: -o-linear-gradient(top, #d9dbdd, #eaebeb);
}
/*----------------</LEAVE COMMENT>----------------*/
/*----------------<CONTACTS>----------------*/
.contacts h2 {
font-size: 16px;
font-weight: 800;
margin-bottom: 22px;
text-transform: uppercase;
}
div#map-box {
display:block;
height: 400px;
}
#map-box >p {
display: none;
}
.contacts .grid_3 div ul {
margin-top: 20px;
}
.contacts .grid_3 div ul:first-child {
margin-top: 0px;
}
.contacts form {
width: 100%;
}
.contacts form .input-field {
display: block;
float: left;
width: 49.166666%;
}
.contacts form .input-field.text-area {
width: 100%;
}
.contacts form .input-field:first-child {
margin-right: 1.666666%;
}
.contacts form .input-field div:first-child {
font-size: 12px;
line-height: 28px;
margin-top: 4px;
}
.contacts form .input-field div span{
color: #7f7f7f;
}
.contacts form .input-field .input-style{
display: block;
width: 100%;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
transition: 0.5s;
}
.contacts form .input-field.focus .input-style {
background: #dadada;
}
.contacts form .input-field .input-style input,
.contacts form .input-field .input-style textarea {
border-width: 0px;
padding: 0px;
margin: 0px;
width: 100%;
resize: none;
background: transparent;
overflow: hidden;
color: #45484a;
font-size: 12px;
outline: none;
}
.contacts form .input-field .input-style textarea {
height: 100px;
}
#map-box>div {
height: 400px;
position: relative;
width: 100% !important;
margin: 0;
}
.wpgmappity_container, .top-slider .wpgmappity_container {
width: 100% !important;
}
.top-slider .wpgmappity_container {
height: 400px !important;
}
/*----------------</CONTACTS>----------------*/
/*----------------<SEARCH FORM>----------------*/
.widget_search form input,
.widget_product_search form input {
border-width: 0px;
padding: 0px;
margin: 0px;
background: transparent;
overflow: hidden;
color: #45484a;
font-size: 12px;
}
.widget_search form div input[type=text],
.widget_product_search form div input[type=text]{
display: block;
padding-right: 33px;
width: 100%;
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
outline: none;
}
.widget_search form div input+input,
.widget_product_search form div input+input {
position: absolute;
top: 50%;
right: 8px;
display: block;
width: 33px;
height: 15px;
margin-top: -7.5px;
background-image: url(../img/search.png);
background-position: center center;
background-repeat: no-repeat;
font-size: 0;
}
.widget_search h1, .widget_search label,
.widget_product_search h1, .widget_product_search label {
display: none;
}
.widget_search form,
.widget_product_search form {
position: relative;
padding: 8px;
border-radius: 8px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1) inset;
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1) inset;
background: #e6e6e6;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_product_search {
margin-bottom: 30px;
}
.widget_search form.focus,
.widget_product_search form.focus {
background: #dadada;
}
/*----------------</SEARCH FORM>----------------*/
/*----------------<CATEGORIES>----------------*/
.widget_categories li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_categories li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_categories li:hover,
.widget_categories a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_categories li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_categories li.active a, .widget_categories li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</CATEGORIES>----------------*/
/*----------------<PAGES>----------------*/
.widget_pages li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_pages li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_pages li:hover,
.widget_pages a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_pages li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_pages li.active a, .widget_pages li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</PAGES>----------------*/
/*----------------<ARCHIVES>----------------*/
.widget_archive li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_archive li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_archive li:hover,
.widget_archive a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_archive li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_archive li.active a, .widget_archive li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</ARCHIVES>----------------*/
/*----------------<META>----------------*/
.widget_meta li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_meta li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_meta li:hover,
.widget_meta a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_meta li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_meta li.active a, .widget_meta li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</META>----------------*/
/*----------------<RECENT COMMENTS>----------------*/
.widget_recent_comments li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_recent_comments li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_recent_comments li:hover,
.widget_recent_comments a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_recent_comments li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_recent_comments li.active a, .widget_recent_comments li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</RECENT COMMENTS>----------------*/
/*----------------<RECENT POSTS>----------------*/
.widget_recent_entries li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_recent_entries li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_recent_entries li:hover,
.widget_recent_entries a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_recent_entries li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_recent_entries li.active a, .widget_recent_entries li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</RECENT POSTS>----------------*/
/*----------------<WIDGET RSS>----------------*/
.widget_rss li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_rss li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_rss li:hover,
.widget_rss a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_rss li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_rss li.active a, .widget_rss li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</WIDGET RSS>----------------*/
/*----------------<GALLERY>----------------*/
.single-gallery {
padding: 30px 0;
}
.single-gallery-container {
padding-right: 2.4%;
}
.portfolio-gallery .flexslider {
margin: 0;
}
.related-works .widget_recent_works {
margin-bottom: 30px;
}
.wrapper.related-works.marble-color.border-tb-white .container {
padding: 30px 0 0px;
}
.gallery-filters {
font-size: 10px;
text-transform: uppercase;
line-height: 38px;
}
.gallery-filters ul,
.gallery-filters li {
display: inline;
}
.gallery-filters a:hover,
.gallery-filters a.selected {
color: #3170ac;
}
.gallery-filters li:before {
content: '|';
padding: 0 7px;
}
.gallery-filters li:first-child:before {
content: '';
padding: 0 0 0 7px;
}
.gallery-container {
overflow: hidden;
padding-top: 30px;
}
.gallery {
position: relative;
width: 102.564102%
}
.gallery .item-con-t1 {
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.gallery .item-con-t1.size1_2,
.gallery .item-con-t1.size1_3,
.gallery .item-con-t1.size1_4 {
margin-right: 2.5%;
float: left;
margin-bottom: 30px;
}
.gallery .item-con-t1.size1_2 {
width: 47.4%;
}
.gallery .item-con-t1.size1_3 {
width: 30.8%;
}
.gallery .item-con-t1.size1_4 {
width: 22.4%;
}
.gallery .item-con-t1 header {
bottom: 0;
height: 70px;
z-index: 2;
}
.gallery .item-con-t1 .facilities {
top: 0%;
height: 100%;
}
.single-gallery .item-con-t1{
width: 100%;
opacity: 0;
}
.single-gallery .item-con-t1 header {
bottom: 0;
height: 70px;
z-index: 2;
}
.single-gallery .item-con-t1 .facilities {
top: 0%;
height: 100%;
}
.single-gallery .image-link {
top: 0;
right: 0;
margin: 8px;
}
.single-gallery .image-link,
.single-gallery .image-link span {
position: absolute;
display: inline-block;
width: 51px;
height: 51px;
background-image: url(../img/sprite.png);
background-position: 0 -283px;
}
.single-gallery .image-link .zoom {
background-position: -51px -334px;
}
.single-gallery .grid_3 section h1 {
font-size: 14px;
font-weight: 800;
margin-bottom: 18px;
text-transform: uppercase;
line-height: 1;
}
.project-info {
margin-top: 30px;
}
.single-gallery .grid_3 section ul {
font-size: 12px;
}
.single-gallery .grid_3 section ul li{
padding: 3px 0;
list-style-image: url(../img/list-type1.png);
list-style-position: inside;
}
.gallery-single-pagination a[rel=prev],
.gallery-single-pagination a[rel=next] {
display: block;
float:left;
height: 36px;
line-height: 36px;
text-transform: uppercase;
font-size: 11px;
}
.gallery-single-pagination .to_gallery {
display: block;
float:left;
height: 36px;
width: 14px;
margin: 0 8px;
background: url(../img/gallery.png) center center no-repeat;
}
.gallery-single-pagination a[rel=prev] {
padding-left: 15px;
background: url(../img/prev.png) left center no-repeat;
}
.gallery-single-pagination a[rel=next] {
padding-right: 15px;
background: url(../img/next.png) right center no-repeat;
}
/*----------------</GALLERY>----------------*/
/*----------------<AVATAR>----------------*/
.widget_recent_posts_2-container .avatar.big {
width: 59px;
height: 59px;
margin-left: 1px;
}
div.avatar.big {
width: 71px;
height: 71px;
}
div.avatar {
width: 51px;
height: 51px;
padding: 0;
border-radius: 50%;
overflow: hidden;
border: 4px solid rgba(236, 236, 236, 0.4);
behavior: url(../../circles/css/PIE.htc);
-webkit-box-shadow: 0 0 0 1px rgba(116,122,124,0.4);
box-shadow: 0 0 0 1px rgba(116,122,124,0.4);
}
.avatar img {
width: 100%;
height: 100%;
border-radius: 50%;
}
.widget_testimonials-container .sc-button {
padding: 10px 30px;
}
/*----------------</AVATAR>----------------*/
@media only screen and (min-width: 767px){
/*----------------- IMAGE ANIMATIONS --------------*/
.cssanimations .animated {
-webkit-transform: scale(0.3);
-moz-transform: scale(0.3);
-o-transform: scale(0.3);
-ms-transform: scale(0.3);
transform: scale(0.3);
-webkit-transition-duration: 0.3s;
-moz-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
-ms-transition-duration:0.3s;
transition-duration: 0.3s;
transition-property:all;
-moz-transition-property: all; /* Firefox 4 */
-webkit-transition-property: all; /* Safari and Chrome */
-o-transition-property:all; /* Opera */
}
.cssanimations .animated.slow {
-webkit-transition: 0.7s;
-moz-transition: 0.7s;
-o-transition: 0.7s;
-ms-transition: 0.7s;
transition: 0.7s;
}
.cssanimations .animated.left-to-right,
.cssanimations .animated.right-to-left,
.cssanimations .animated.fade,
.cssanimations .animated.bottom-to-top {
-webkit-transition-duration: 1.2s;
-moz-transition-duration: 1.2s;
-o-transition-duration: 1.2s;
-ms-transition-duration:1.2s;
transition-duration: 1.2s;
}
.cssanimations .animation_started.animated {
-webkit-transform: scale(1) translate3d(0,0,0);
-moz-transform: scale(1) translate3d(0,0,0);
-o-transform: scale(1) translate3d(0,0,0);
-ms-transform: scale(1) translate3d(0,0,0);
transform: scale(1) translate3d(0,0,0);
opacity:1;
}
.cssanimations .left-to-right {
-webkit-transform: scale(1) translate3d(-50%,0,0);
-moz-transform: scale(1) translate3d(-50%,0,0);
-o-transform: scale(1) translate3d(-50%,0,0);
-ms-transform: scale(1) translate3d(-50%,0,0);
transform: scale(1) translate3d(-50%,0,0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.cssanimations .fade {
-webkit-transform: scale(1) translate3d(0,0,0);
-moz-transform: scale(1) translate3d(0,0,0);
-o-transform: scale(1) translate3d(0,0,0);
-ms-transform: scale(1) translate3d(0,0,0);
transform: scale(1) translate3d(0,0,0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.cssanimations .right-to-left {
-webkit-transform: scale(1) translate3d(50%,0,0);
-moz-transform: scale(1) translate3d(50%,0,0);
-o-transform: scale(1) translate3d(50%,0,0);
-ms-transform: scale(1) translate3d(50%,0,0);
transform: scale(1) translate3d(50%,0,0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.cssanimations .bottom-to-top {
-webkit-transform: scale(1) translate3d(0,50%,0);
-moz-transform: scale(1) translate3d(0,50%,0);
-o-transform: scale(1) translate3d(0,50%,0);
-ms-transform: scale(1) translate3d(0,50%,0);
transform: scale(1) translate3d(0,50%,0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.cssanimations .bottom-to-top-full {
-webkit-transform: scale(1) translate3d(0,100%,0);
-moz-transform: scale(1) translate3d(0,100%,0);
-o-transform: scale(1) translate3d(0,100%,0);
-ms-transform: scale(1) translate3d(0,100%,0);
transform: scale(1) translate3d(0,100%,0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.cssanimations .pale-on-hover:hover {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
opacity: 0.5;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
cursor: pointer;
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{
0% {-webkit-transform:translateY(0);}
50% {-webkit-transform:translateY(-30px);}
100% {-webkit-transform:translateY(0);}
}
@keyframes myfirst /* Safari and Chrome */
{
0% {transform:translateY(0);}
50% {transform:translateY(-30px);}
100% {transform:translateY(0);}
}
.cssanimations .floating-element {
animation:myfirst 2s;
animation-iteration-count:5000;
-webkit-animation:myfirst 2s; /* Safari and Chrome */
-webkit-animation-iteration-count:5000;
}
/*----------------- IMAGE ANIMATIONS --------------*/
}
/*----------------<NEWSLETTER SIGNUP>----------------*/
.newsletter-signup {
margin-bottom: 20px;
}
.newsletter-signup>h4 {
color: #b1b6b9;
text-transform: uppercase;
font-size: 14px;
font-weight: 800;
margin-bottom: 10px;
}
.newsletter-signup p {
color: #b4b9bc;
font-size: 12px;
margin-bottom: 20px;
}
.newsletter-signup-form {
position: relative;
height: 34px;
padding: 8px;
border-radius: 8px;
margin-right: 1px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-shadow: 1px 1px 0 0 rgba(255, 255, 255, 0.07), 0 1px 0 0 rgba(0, 0, 0, 0.1) inset;
}
.newsletter-signup-form input:first-child {
border-width: 0px;
padding: 0px;
margin: 0px;
background: transparent;
overflow: hidden;
color: #b1b6b9;
font-size: 12px;
}
.newsletter-signup-form input:first-child {
display: block;
padding-right: 70px;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.newsletter-signup-form input+input {
position: absolute;
top: 2px;
right: 2px;
display: block;
width: 66px;
height: 30px;
font-size: 10px;
border: 1px solid #56595b;
border-radius: 6px;
color: #b1b6b9;
text-transform: uppercase;
box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.07);
}
/*----------------</NEWSLETTER SIGNUP>----------------*/
/*----------------<SOCIALS>----------------*/
.socials {
display: block;
float: right;
}
.socials li {
display: block;
float: left;
height: 36.5px;
margin-top: 31.5px;
margin-left: 3px;
border-radius: 50%;
position: relative;
overflow: hidden;
}
.socials li span {
position: absolute;
width: 98%;
height: 97%;
background: #366fa5;
box-shadow: inset 0 0 5px 0 rgba(0,0,0,0.4);
border-radius: 50%;
top: 101%;
left: 1px;
}
.socials li:hover span {
top: 1px;
}
.headerstyle3 .preheader-builder .socials li span,
.headerstyle5 .preheader-builder .socials li span {
display: none;
}
.headerstyle3 .socials .cloud {
position: absolute;
top: -22px;
left: -8px;
display: block;
background: #717171;
color: #c1c7ca;
font-size: 11px;
padding: 4px 9px;
opacity: 0;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
-webkit-transition: opacity 0.3s linear;
-moz-transition: opacity 0.3s linear;
-o-transition: opacity 0.3s linear;
-ms-transition: opacity 0.3s linear;
transition: opacity 0.3s linear;
}
.headerstyle3 .socials .cloud .helper {
position: absolute;
top: 100%;
left: 15px;
display: block;
width: 7px;
height: 6px;
background-image: url(../img/sprite.png);
background-position: -309px -140px;
}
.headerstyle3 .socials a:hover + .cloud {
opacity: 1;
filter: progid:DXImageTransf;
}
.headerstyle3 .socials li:hover {
background: transparent;
box-shadow: none;
}
.preheader-builder .socials li {
margin-top: 0;
}
.socials a {
display: block;
width: 35px;
height: 35px;
background-image: url(../img/socials.png);
position: relative;
}
.socials .facebook {
background-position: 0 0;
}
.headerstyle3 .socials .facebook:hover {
background-position: 0 0;
}
.socials .facebook:hover {
background-position: 0 -35px;
}
.socials .twitter {
background-position: 0 -70px;
}
.headerstyle3 .socials .twitter:hover {
background-position: 0 -70px;
}
.socials .twitter:hover {
background-position: 0 -105px;
}
.socials .skype {
background-position: 0 -140px;
}
.headerstyle3 .socials .skype:hover {
background-position: 0 -140px;
}
.socials .skype:hover {
background-position: 0 -175px;
}
.socials .dribbble {
background-position: 0 -210px;
}
.headerstyle3 .socials .dribbble:hover {
background-position: 0 -210px;
}
.socials .dribbble:hover {
background-position: 0 -245px;
}
.socials .youtube {
background-position: 0 -280px;
}
.headerstyle3 .socials .youtube:hover {
background-position: 0 -280px;
}
.socials .youtube:hover {
background-position: 0 -315px;
}
.socials .instagram {
background-position: -129px -564px;
}
.headerstyle3 .socials .instagram:hover {
background-position: -129px -564px;
}
.socials .instagram:hover {
background-position: -129px -593px;
}
.socials .linkedin {
background-position: -67px -561px;
}
.headerstyle3 .socials .linkedin:hover {
background-position: -67px -561px;
}
.socials .linkedin:hover {
background-position: -67px -592px;
}
.socials .pinterest {
background-position: -67px -632px;
}
.headerstyle3 .socials .pinterest:hover {
background-position: -67px -632px;
}
.socials .pinterest:hover {
background-position: -67px -662px;
}
.socials .tumblr {
background-position: -67px -775px;
}
.headerstyle3 .socials .tumblr:hover {
background-position: -67px -775px;
}
.socials .tumblr:hover {
background-position: -67px -805px;
}
.socials .google-plus {
background-position:-69px -702px;
}
.headerstyle3 .socials .google-plus:hover {
background-position: -69px -702px;
}
.socials .google-plus:hover {
background-position: -69px -733px;
}
.socials-bottom h1{
color: #b1b6b9;
text-transform: uppercase;
font-size: 14px;
font-weight: 800;
margin-bottom: 10px;
}
.socials-bottom li {
position: relative;
display: block;
float: left;
height: 35px;
width: 35px;
margin-left: 3px;
}
.socials-bottom li:first-child {
margin-left: 0px;
}
.socials-bottom a:hover+.cloud{
opacity: 1;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
}
.socials-bottom .cloud {
position: absolute;
top: -22px;
left: -8px;
display: block;
background: #717171;
color: #c1c7ca;
font-size: 11px;
padding: 4px 9px;
opacity: 0;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
-webkit-transition: opacity 0.3s linear;
-moz-transition: opacity 0.3s linear;
-o-transition: opacity 0.3s linear;
-ms-transition: opacity 0.3s linear;
transition: opacity 0.3s linear;
}
.socials-bottom .cloud .helper{
position: absolute;
top: 100%;
left: 15px;
display: block;
width: 7px;
height: 6px;
background-image: url(../img/sprite.png);
background-position: -309px -140px;
}
.socials-bottom a {
display: block;
width: 35px;
height: 35px;
background-image: url(../img/socials.png);
}
.socials-bottom .facebook {
background-position: -35px 0;
}
.socials-bottom .twitter {
background-position: -35px -70px;
}
.socials-bottom .skype {
background-position: -35px -140px;
}
.socials-bottom .dribbble {
background-position: -35px -210px;
}
.socials-bottom .youtube {
background-position: -35px -280px;
}
.socials-bottom .tumblr {
background-position: -8px -806px;
}
.socials-bottom .google-plus {
background-position: -10px -734px;
}
.socials-bottom .pinterest {
background-position: -8px -663px;
}
.socials-bottom .linkedin {
background-position: -8px -592px;
}
.socials-bottom .instagram {
background-position: -129px -626px;
}
/*---- Social2 ------*/
.socials2 {
display: block;
float: right;
}
.socials2 li {
display: block;
float: left;
height: 26px;
margin-top: 0;
margin-left: 10px;
border-radius: 50%;
position: relative;
overflow: hidden;
width: 26px;
}
.socials2 li a {
display: block;
width: 26px;
height: 26px;
border-radius: 50%;
background-color: #f2f5f7;
background-image: url(../img/socials.png);
}
.socials2 .facebook {
background-position: -189px -1px;
}
.socials2 .twitter {
background-position: -189 -30px;
}
.socials2 .skype {
background-position: -189 -59px;
}
.socials2 .dribbble {
background-position: -189 -88px;
}
.socials2 .youtube {
background-position: -189 -118px;
}
.socials2 .tumblr {
background-position: -189 -231px;
}
.socials2 .google-plus {
background-position: -189 -203px;
}
.socials2 .pinterest {
background-position: -189 -178px;
}
.socials2 .linkedin {
background-position: -189 -148px;
}
.socials2 .instagram {
background-position: -188 -261px;
}
/*----------------</SOCIALS>----------------*/
/*----------------<COLUMN>----------------*/
.column {
display: block;
width: 102.564102%;
}
.column_post {
display: block;
width: 30.77%;
margin: 0 2.5% 30px 0;
padding: 1px 1px 4px;
border-radius: 2px;
background: #cbcbcc;
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.column_post-helper {
display: block;
padding: 3px 3px 30px;
border-radius: 2px;
background: #f3f3f3;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}
.column_post-media {
width: 100%;
}
.column_post-media img{
width: 100%;
height: 100%;
}
.column_post header{
position: relative;
display: block;
padding: 12px 16px;
min-height: 41px;
background: #eaeaea;
}
.column_post header a,
.column_post header h2 {
color: #3170AC;
font-size: 18px;
font-weight: 300;
text-transform: none;
margin-bottom: 0;
}
.column_post header a {
display: block;
margin-top: 7px;
margin-left: 53px;
}
.column_post-type {
position: absolute;
top: 50%;
left: 0px;
width: 41px;
height: 41px;
background: #f3f3f3;
border-radius: 50%;
margin: -20.5px 16px 0;
overflow: hidden;
}
.column_post-type span{
display: block;
width: 41px;
height: 41px;
background-image: url(../img/sprite.png);
background-position: -5px -388px;
}
.column_post.format-photo .column_post-type span {
background-position: -5px -388px;
}
.column_post.format-gallery .column_post-type span {
background-position: -5px -388px;
}
.column_post.format-video .column_post-type span {
background-position: -51px -388px;
}
.column_post.format-audio .column_post-type span {
background-position: -149px -388px;
}
.column_post.format-link .column_post-type span {
background-position: -100px -388px;
}
.column_post.format-slider .column_post-type span {
background-position: -197px -388px;
}
.column_post footer{
display: block;
padding: 12px 8px;
margin: 0 8px;
border-bottom: 1px solid #DADADA;
box-shadow: 0 1px 0 0 #FFF;
}
.column_post-date,
.column_post-category,
.column_post-author {
display: inline-block;
height: 16px;
padding: 1px 0;
font-size: 11px;
margin-right: 10px;
padding-left: 25px;
}
.column_post-date {
background-image: url(../img/date.png);
background-position: left center;
background-repeat: no-repeat;
}
.column_post-category {
background-image: url(../img/category.png);
background-position: left center;
background-repeat: no-repeat;
}
.column_post-author {
background-image: url(../img/author.png);
background-position: left center;
background-repeat: no-repeat;
}
.column_post-category span,
.column_post-category a,
.column_post-author span,
.column_post-author a{
color: #3170ac;
line-height: 16px;
}
.column_post-body{
margin: 12px 16px 0;
}
/*----------------</COLUMN>----------------*/
/*----------------<FOOTER>----------------*/
.copyright {
display: block;
float: left;
color: #7b7b7b;
line-height: 56px;
font-size: 12px;
}
footer .grid_3 img {
max-width: 100%;
}
footer .grid_3 {
margin-bottom: 0px;
}
footer ul li {
list-style:none;
}
footer .widget_recent_comments li {
color: #69767f;
border-top: 1px solid #272b2e;
-webkit-box-shadow: none;
box-shadow: none;
}
footer .widget_recent_comments li a, .left_navigation li a {
color: #69767f;
}
footer .widget_recent_entries li {
color: #69767f;
border-top: 1px solid #272b2e;
-webkit-box-shadow: none;
box-shadow: none;
}
footer .widget_recent_entries li a, .left_navigation li a {
color: #69767f;
}
#back_to_top {
position: fixed;
bottom: 40px;
right: 30px;
width: 61px;
height: 61px;
background: url(../img/back_to_top.png);
display: none;
-webkit-backface-visibility: hidden;
z-index: 1000;
}
footer .wrapper.grey {
padding: 0 0 0;
}
.widget_wysija_cont p label {
display: none;
}
/*----------------</FOOTER>----------------*/
/*----------------<FLEXSLIDER>----------------*/
.flexslider {
margin: 0 0 60px;
border: 0;
background: transparent;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
box-shadow: 0 0 0;
-webkit-box-shadow: 0 0 0;
-moz-box-shadow: 0 0 0;
-o-box-shadow: 0 0 0;
zoom: 1;
opacity:0;
}
.column .flexslider {
margin: 0;
}
.top-slider .flexslider {
margin-bottom: 0;
}
/*----------------</FLEXSLIDER>----------------*/
/*----------------<ISOTOPE>----------------*/
/* Isotope Filtering */
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
/* Isotope CSS3 transitions */
.isotope,
.isotope .isotope-item {
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-ms-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-ms-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-ms-transition-property: -ms-transform, opacity;
-o-transition-property: -o-transform, opacity;
transition-property: transform, opacity;
}
/*** disabling Isotope CSS3 transitions */
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-ms-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
/*----------------</ISOTOPE>----------------*/
/*------------------------- SHOP ------------------------*/
body.woocommerce ul.products li.product, body.woocommerce-page ul.products li.product {
border: 1px solid #dbdbdb;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
width: 30%;
background-color: #f8f8f8;
padding: 2px 2px 0px;
border-radius: 3px;
clear: none;
margin-right: 3.8%;
float: none;
display: inline-block;
}
body.woocommerce ul.products li.product:nth-child(3n+3), body.woocommerce-page ul.products li.product:nth-child(3n+3) {
margin-right: 0;
}
body.woocommerce ul.products li.product a img, body.woocommerce-page ul.products li.product a img {
border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
border: 1px solid #dbdbdb;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
body.woocommerce ul.products li.product h3, body.woocommerce-page ul.products li.product h3 {
color: #909598;
font-weight: 100;
text-align: center;
font-size: 17px;
padding-top: 0;
}
body.woocommerce ul.products li.product .price, body.woocommerce-page ul.products li.product .price {
font-size: 18px;
text-align: center;
color: #3b74aa;
font-weight: 100;
text-decoration: none;
}
body.woocommerce ul.products li.product a, body.woocommerce-page ul.products li.product a {
width: 50%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
background: transparent;
text-transform: uppercase;
font-weight: 100;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
body.woocommerce ul.products li.product .product-bottom a {
width: 50%;
display: inline-block;
text-align: center;
padding: 8px 0 8px 30px;
color: #909598;
font-size: 11px;
font-weight: normal;
background-image: url(../img/sprite.png);
margin: 3px 0 0;
}
body.woocommerce ul.products li.product .product-bottom {
border-top: 1px solid #dbdbdb;
margin-left: -2px;
padding-right: 4px;
width: 100%;
background-color: #ededed;
border-radius: 0 0 3px 3px;
}
body.woocommerce ul.products li.product .product-bottom a.add_to_cart_button {
background-position: 10px -1493px;
border-right: 1px solid #ccc;
}
body.woocommerce ul.products li.product .product-bottom a.product-details {
background-position: 20px -1465px;
}
.woocommerce ul.products li.product a:hover img, .woocommerce-page ul.products li.product a:hover img {
box-shadow:none !important;
-webkit-box-shadow:none !important;
-moz-box-shadow:none !important;
}
.woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count {
display: none;
}
body.woocommerce .woocommerce-ordering, body.woocommerce-page .woocommerce-ordering {
float: left;
position: relative;
}
.woocommerce .woocommerce-ordering select, .woocommerce-page .woocommerce-ordering select {
-webkit-appearance: none;
background: transparent;
border: 1px solid #dbdbdb;
padding: 5px;
border-radius: 3px;
padding-left: 60px;
outline: none;
}
.woocommerce-ordering span.icon-angle-down {
left: auto;
right: 10px;
top: 11px;
}
.woocommerce-ordering span {
position: absolute;
left: 10px;
top: 7px;
color: #7f8182;
}
body.woocommerce ul.cart_list li a, body.woocommerce ul.product_list_widget li a, body.woocommerce-page ul.cart_list li a, body.woocommerce-page ul.product_list_widget li a {
color: #45484a;
font-weight: 500;
text-transform: uppercase;
font-size: 13px;
}
body.woocommerce ul.cart_list li .amount, body.woocommerce ul.product_list_widget li .amount, .woocommerce-page ul.cart_list li .amount, .woocommerce-page ul.product_list_widget li .amount {
color: #3b74aa;
}
body.woocommerce ul.products li.product .onsale, .woocommerce-page ul.products li.product .onsale {
top: 15px;
right: 15px;
}
body.woocommerce ul.products li.product .product-bottom a.added_to_cart {
background: transparent;
}
body.woocommerce ul.products li.product .product-bottom a.add_to_cart_button.added {
display: none;
}
body.woocommerce-page ul.product_list_widget li {
border-bottom: 1px solid #dadada;
border-top: 1px solid #fff;
padding: 8px 0;
}
body.woocommerce-page ul.product_list_widget li:first-child {
border-top: 0;
}
body.woocommerce-page ul.product_list_widget li:last-child {
box-shadow: 0 1px 0 0 #Fff;
}
body.woocommerce-page div.product div.images div.thumbnails a {
width: 32%;
margin-right: 2%;
}
body.woocommerce div.product div.images img {
box-shadow: none;
border-radius: 10px;
border: 1px solid #dbdbdb;
}
body.woocommerce-page div.product div.images {
width: 43%;
}
body.woocommerce-page div.product div.summary {
width: 53%;
}
body.woocommerce div.product .product_title {
font-weight: 300;
color: #909598;
}
body.woocommerce div.product p.price {
color: #3b74aa;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
background: rgb(28, 99, 167);
border-radius: 6px;
box-shadow: inset 0 -4px 0 0 rgba(255, 255, 255, 0.25);
text-align: center;
text-transform: uppercase;
text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
font-weight: 400;
overflow: hidden;
display: inline-block;
position: relative;
padding: 14px 20px 14px 40px;
font-size: 12px;
color: #ffffff;
transition-property: all;
-moz-transition-property: all;
-webkit-transition-property: all;
-o-transition-property: all;
transition: 0.3s;
opacity: 0.85;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition-delay: 0s;
transition-timing-function: cubic-bezier(0, 0, 1, 1);
text-shadow: 0px 1px 1px rgba(0,0,0,1);
text-decoration: none;
background-image: url(../img/sprite.png);
border: 0;
background-position: -160px -699px;
}
body.woocommerce-page div.product .woocommerce-tabs {
clear: none;
width: 53%;
float: right;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
background: #3b74aa;
color: #fff;
font-weight: 100;
text-transform: uppercase;
}
body.woocommerce-page div.product .woocommerce-tabs ul.tabs li {
background: #e9e9e9;
text-transform: uppercase;
margin: 0;
border-radius: 0;
box-shadow: none;
border: 0;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs li a {
font-weight:300;
}
body.woocommerce-page div.product .woocommerce-tabs ul.tabs li:before,
body.woocommerce-page div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs:before {
content:none;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs {
margin-left: 0;
padding-left: 0;
}
.woocommerce-tabs h2 {
color: #3170ac;
text-transform: none;
font-weight: 100;
}
/*---------- CArt --------------*/
body.woocommerce-cart table.shop_table {
background: #f8f8f8;
}
body.woocommerce-cart table.shop_table thead {
background: #fff;
}
body.woocommerce-cart table.cart th {
color: #45484a;
text-transform: uppercase;
font-size: 11px;
}
body.woocommerce-cart table.cart .product-thumbnail {
width: 80px;
}
body.woocommerce-cart table.cart th.product-quantity {
text-align: center;
}
body.woocommerce-cart table.cart td.product-remove {
width: 50px;
}
body.woocommerce-cart table.cart a.remove {
color: #3b75ac;
margin-left: 20px;
margin-right: 0;
}
body.woocommerce-cart table.cart img {
width: 49px;
height: 46px;
padding: 2px;
border: 1px solid #e0e0e0;
background: #f3f3f3;
border-radius: 4px;
}
body.woocommerce-cart .product-name a {
color: #3b74aa;
text-transform: uppercase;
}
body.woocommerce-cart .quantity,
.woocommerce div.product form.cart div.quantity {
border-radius: 5px;
overflow: hidden;
border-top: 1px solid #ccc;
}
.woocommerce div.product form.cart div.quantity {
margin-top: 6px !important;
margin-right: 10px !important;
}
body.woocommerce-cart .quantity .minus,
body.woocommerce .quantity .minus {
background: rgb(226,226,226);
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top, rgba(226,226,226,1) 0%, rgba(236,236,236,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(226,226,226,1)), color-stop(100%,rgba(236,236,236,1)));
background: -webkit-linear-gradient(top, rgba(226,226,226,1) 0%,rgba(236,236,236,1) 100%);
background: -o-linear-gradient(top, rgba(226,226,226,1) 0%,rgba(236,236,236,1) 100%);
background: -ms-linear-gradient(top, rgba(226,226,226,1) 0%,rgba(236,236,236,1) 100%);
background: linear-gradient(to bottom, rgba(226,226,226,1) 0%,rgba(236,236,236,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#ececec',GradientType=0 );
border: 0;
border-left: 1px solid rgb(199, 199, 199);
box-shadow: none;
color: #9fa1a2;
border-radius: 0;
}
body.woocommerce-cart .quantity input.qty,
body.woocommerce .quantity input.qty {
background: #e6e6e6;
outline: none;
border: 0;
color: #45484a;
font-weight: normal;
}
body.woocommerce-cart .quantity .plus,
body.woocommerce .quantity .plus {
background: rgb(236,236,236);
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top, rgba(236,236,236,1) 0%, rgba(226,226,226,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(236,236,236,1)), color-stop(100%,rgba(226,226,226,1)));
background: -webkit-linear-gradient(top, rgba(236,236,236,1) 0%,rgba(226,226,226,1) 100%);
background: -o-linear-gradient(top, rgba(236,236,236,1) 0%,rgba(226,226,226,1) 100%);
background: -ms-linear-gradient(top, rgba(236,236,236,1) 0%,rgba(226,226,226,1) 100%);
background: linear-gradient(to bottom, rgba(236,236,236,1) 0%,rgba(226,226,226,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ececec', endColorstr='#e2e2e2',GradientType=0 );
border: 0;
border-left: 1px solid rgb(199, 199, 199);
border-bottom: 1px solid rgb(199, 199, 199);
box-shadow: none;
color: #9fa1a2;
border-radius: 0;
}
body.woocommerce-cart .cart .button, body.woocommerce-page .woocommerce.widget_price_filter .price_slider_amount .button, .woocommerce-page .woocommerce .cart-collaterals .shipping_calculator .button {
float: left;
text-decoration: none;
text-transform: uppercase;
font-size: 10px;
color: #45484a;
border-radius: 5px;
background: #eaebeb;
background: -webkit-gradient(linear, left top, left bottom, from(#d9dbdd), to(#eaebeb));
background: -webkit-linear-gradient(top, #d9dbdd, #eaebeb);
background: -moz-linear-gradient(top, #d9dbdd, #eaebeb);
background: -ms-linear-gradient(top, #d9dbdd, #eaebeb);
background: -o-linear-gradient(top, #d9dbdd, #eaebeb);
border-bottom: 1px solid #fff;
border-right: 1px solid #fff;
box-shadow: 1px 1px 0px 0 #c5c5c5;
margin-bottom: 25px;
padding: 11px 20px;
border-top: 0;
border-left: 0;
width: auto;
}
.woocommerce .cart-collaterals .cart_totals table .amount {
color: #3872aa;
}
.woocommerce-page .woocommerce .cart-collaterals .cart_totals table td {
padding-right: 20px;
}
body.woocommerce-cart .woocommerce table.cart td.actions .coupon .input-text,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select {
position: relative;
padding: 8px;
border-radius: 8px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1) inset;
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1) inset;
background: #e6e6e6;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
border: 0;
outline: none;
}
.woocommerce form .form-row select {
-webkit-appearance: none;
}
body.woocommerce-cart .woocommerce table.cart td.actions .button.alt {
font-size: 10px;
float: right;
border-radius: 6px;
border-bottom: 4px solid #5895ce;
background: #56595b;
background: -webkit-gradient(linear, left top, left bottom, from(#2f6aa3), to(#427bb1));
background: -webkit-linear-gradient(top, #2f6aa3, #427bb1);
background: -moz-linear-gradient(top, #2f6aa3, #427bb1);
background: -ms-linear-gradient(top, #2f6aa3, #427bb1);
background: -o-linear-gradient(top, #2f6aa3, #427bb1);
color: #f3f3f3;
text-align: center;
text-transform: uppercase;
text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
font-weight: bold;
font-size: 12px;
margin-left: 10px;
padding: 9px 20px;
}
.woocommerce-page .woocommerce .cart-collaterals .shipping_calculator .button {
margin-left: 4px;
}
body.woocommerce-page .woocommerce table.cart .actions input.input-text, .woocommerce-page .cart input.button {
margin: 5px;
}
body.woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range {
background: #3b74aa;
border-top: 1px solid #336492;
}
.woocommerce-page .woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content {
background: #dcdcdc;
border-top: 1px solid #bdbdbd;
height: 4px;
}
body.woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle {
box-shadow: none;
border: 1px solid rgb(78, 78, 78);
background: rgb(153,157,159);
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top, rgba(153,157,159,1) 0%, rgba(101,111,118,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(153,157,159,1)), color-stop(100%,rgba(101,111,118,1)));
background: -webkit-linear-gradient(top, rgba(153,157,159,1) 0%,rgba(101,111,118,1) 100%);
background: -o-linear-gradient(top, rgba(153,157,159,1) 0%,rgba(101,111,118,1) 100%);
background: -ms-linear-gradient(top, rgba(153,157,159,1) 0%,rgba(101,111,118,1) 100%);
background: linear-gradient(to bottom, rgba(153,157,159,1) 0%,rgba(101,111,118,1) 100%);
}
.woocommerce .widget_price_filter .price_slider_amount {
color: #3b74aa;
}
.woocommerce-page .woocommerce .cart-collaterals .cart_totals {
float: left;
}
.cart_totals h2 {
text-align: left;
font-size: 14px;
font-weight: 900;
}
.woocommerce-page .woocommerce .cart-collaterals .cart_totals table {
width: 100%;
background: #f8f8f8;
border: 1px solid #d9d9d9;
border-radius: 0;
}
.woocommerce .cart-collaterals .cart_totals table tr {
border: 1px solid #000;
border-collapse: collapse;
}
.woocommerce-page .woocommerce .cart-collaterals .cart_totals table th {
text-align: left;
padding: 12px 5px 13px 20px;
text-transform: uppercase;
font-size: 11px;
border-right: 1px solid #d9d9d9;
}
.woocommerce .cart-collaterals .cart_totals table .shipping {
background: #ededed;
border-bottom: 1px solid #d9d9d9;
border-top: 1px solid #d9d9d9;
position: relative;
}
.woocommerce .cart-collaterals .cart_totals table .shipping th {
font-weight: normal;
}
.woocommerce .cart-collaterals .cart_totals table .shipping td {
text-transform: uppercase;
}
body.woocommerce-page .cart-collaterals .shipping-calculator-form {
display: block !important;
height: auto !important;
}
.woocommerce .shipping-calculator-button {
font-size: 14px;
font-weight: 900;
color: #45484a;
}
.shipping_calculator h2 {
line-height: 1;
text-align: left;
}
body.woocommerce-page .woocommerce .cart-collaterals .shipping_calculator {
margin: 0;
}
body.woocommerce-page .woocommerce .cart-collaterals .shipping_calculator {
margin-top: -3px;
}
body.woocommerce-page table.shop_table {
border-radius: 0;
}
.woocommerce form .shipping-calculator-form .form-row:first-child {
position: relative;
}
.widget_shopping_cart {
position: fixed;
top: 25px;
right: 25px;
z-index: 10000;
width: auto;
display: block;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.woocommerce-page #cart_button {
display: block;
}
#cart_button {
display: none;
width: 40px;
height: 40px;
background: #fff;
border: 1px solid #d9d9d9;
border-radius: 50%;
padding: 4px;
z-index: 1000;
float: right;
position: relative;
clear: both;
margin-bottom: 10px;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
cursor: pointer;
}
.widget_shopping_cart_content {
background: #f8f8f8;
z-index: 1000;
padding:0;
border: 1px solid #d9d9d9;
width: 240px;
display: none;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
clear: both;
-webkit-box-shadow: 0 0 20px 5px rgba(0,0,0,0.07);
box-shadow: 0 0 20px 5px rgba(0,0,0,0.07);
}
body.woocommerce-page ul.product_list_widget li {
border-top: 0;
padding: 8px 15px;
}
.fixed-header .widget_shopping_cart {
top: 2px;
}
.fixed-header #cart_button:after {
background-position: -168px -1492px;
}
.fixed-header #cart_button {
width: 30px;
height: 30px;
}
#cart_button:after {
display: block;
width: 100%;
height: 100%;
background: #3b74a9;
content: '';
border-radius: 50%;
-webkit-box-shadow: inset 0 -30px 30px -20px rgba(0,0,0,0.2);
box-shadow: inset 0 -30px 30px -20px rgba(0,0,0,0.2);
background-image: url(../img/sprite.png);
background-position: -163px -1487px;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_shopping_cart_content .buttons .button {
width: 49%;
margin: 5px 0;
padding: 0;
display: inline-block;
background: transparent;
border: 0;
box-shadow: none;
font-weight: normal;
line-height: 30px;
text-align: center;
text-transform: uppercase;
}
.widget_shopping_cart_content .buttons .button:first-child {
border-right: 1px solid #d9d9d9;
}
.widget_shopping_cart_content .buttons {
width: 240px;
background: #ededed;
height: 40px;
margin: 0;
border-top: 1px solid #d9d9d9;
}
.woocommerce-page .woocommerce .widget_shopping_cart .total {
padding: 7px 15px 7px;
margin-bottom: 0;
color: #45484a;
font-size: 11px;
}
.widget_shopping_cart_content .buttons .button:hover {
background: transparent !important;
}
.woocommerce ul.product_list_widget.cart_list li img, #added_item img {
width: 49px;
height: 46px;
padding: 2px;
background: #f3f3f3;
box-shadow: none;
border: 1px solid #d9d9d9;
border-radius: 3px;
}
#added_item img {
float: right;
}
.woocommerce-page ul.cart_list.product_list_widget li .amount {
color: #000;
}
.widget_shopping_cart > h1 {
display: none;
}
.widget_shopping_cart_content .total .amount {
color: #3b74aa;
font-weight: bold;
}
.woocommerce-page .widget_shopping_cart .total strong {
text-transform: uppercase;
}
.form-row .icon-angle-down {
position: absolute;
top: 14px;
right: 15px;
}
#added_item {
position: fixed;
top: 90px;
right: 25px;
background: #f8f8f8;
width: 250px;
z-index: 1000;
border: 1px solid #d9d9d9;
padding: 10px;
display: none;
box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
}
.fixed-header #added_item {
top: 50px;
}
.woocommerce-page.woocommerce .widget_shopping_cart .total {
margin-bottom: 0;
padding: 7px 15px;
font-size: 11px;
}
/*-------- WP GAllery --------------*/
.gallery-item img {
border: 1px solid #cfcfcf !important;
width: 100%;
height: auto;
border-radius: 4px;
padding: 3px;
border-bottom: 2px solid #cfcfcf !important;
}
.gallery-icon {
margin-right: 30px;
}
/*------ Banner ---------ss----*/
.banner-builder {
opacity:1;
background-size:cover!important;
}
.banner-wrapper {
position:relative;
}
#canvasLoader {
position: absolute;
top: 50%;
left: 50%;
margin-left: -20px;
z-index: 2;
}
.banner-overlay {
position: absolute;
width: 100%;
height: 100%;
background: #f3f3f3;
top: 0;
left: 0;
z-index: 1;
}
/* Localized */ | app/Resources/CaravaneCmsBundle/public/css/main.css | :-moz-placeholder {
font-style:normal;
color: #45484b;
}
:-ms-input-placeholder {
font-style:normal;
color: #45484a;
}
::-webkit-input-placeholder {
font-style:normal;
color: #45484a;
}
.alignnone {
margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
display: block;
margin: 5px auto 5px auto;
text-align: center;
}
.alignright,
.alignnone,
.alignleft,
.aligncenter {
max-width: 100%;
height: auto;
}
.alignright {
float:right;
margin: 5px 0 20px 20px;
}
.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img.alignright {
float: right;
margin: 5px 0 20px 20px;
}
a img.alignnone {
margin: 5px 20px 20px 0;
}
a img.alignleft {
float: left;
margin: 5px 20px 20px 0;
}
a img.aligncenter {
display: block;
margin-left: auto;
margin-right: auto
}
.wp-caption {
background: #fff;
border: 1px solid #f0f0f0;
max-width: 96%; /* Image does not overflow the content area */
padding: 5px 3px 10px;
text-align: center;
}
.wp-caption.alignnone {
margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
margin: 5px 0 20px 20px;
}
.wp-caption img {
border: 0 none;
height: auto;
margin: 0;
max-width: 98.5%;
padding: 0;
width: auto;
}
.wp-caption p.wp-caption-text {
font-size: 11px;
line-height: 17px;
margin: 0;
padding: 0 4px 5px;
}
.sticky {}
.gallery-caption {}
.bypostauthor {}
/* Circles */
@media only screen and (max-device-width : 1024px) {
html {
padding-right: 0 !important;
}
div.fixed.menu-bg {
left: -6px;
}
}
body {
background: #f3f3f3;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
color: #45484a;
/*background-attachment: scroll !important;*/
}
p {
line-height: 1.6;
}
a {
color: #3b74a9;
}
h1 {
font-size: 25px;
}
h2 {
font-size: 20px;
}
h3 {
font-size: 17px;
}
h4 {
font-size: 14px;
font-weight: 800;
}
h1, h2, h3, h4, h5, h6 {
margin-bottom: 20px;
/*text-transform: uppercase;*/
}
ol li {
list-style: decimal;
}
li {
-webkit-backface-visibility: hidden;
}
.right-sidebar h2, .left-sidebar h2,
.right-sidebar h3, .left-sidebar h3 {
text-transform: uppercase;
font-size: 14px;
font-weight: 800;
margin-bottom: 25px;
}
.media_for_js {
z-index: 1000;
}
/*.post-area {
overflow: hidden;
}*/
/*.left-sidebar .post-area {
float: right;
}*/
.wrapper {
overflow: hidden;
clear: both;
}
.nicescroll-rails {
z-index: 100000 !important;
background-color: rgb(220, 221, 223) !important;
}
/*----------------<BACKGROUNDS AND COLORS>----------------*/
.marble {
background-color: #E6E6E6 !important;
}
.marble-color {
background-color: #E6E6E6 !important;
}
.ie8 div.wrapper.menu-bg {
background: url(../img/menu-bg.png) !important;
}
.page-header .wrapper {
overflow: visible;
}
div.wrapper.menu-bg {
background: rgba(255,255,255,0.75);
box-shadow: inset 0 6px 5px -5px rgba(0,0,0,0.3);
overflow: visible;
behavior: url(../../circles/css/PIE.htc);
}
.dark-grey {
background: #1b1e21 !important;
}
.grey {
background: #1f2326 !important;
}
.b1170 .wrapper, .b960 .wrapper {
background-color: #f3f3f3;
border-right: 1px solid rgba(0, 0, 0, 0.17);
border-left: 1px solid rgba(0, 0, 0, 0.17);
}
.b1170 .wrapper.blue, .b960 .wrapper.blue {
border-right: 1px solid rgba(0, 0, 0, 0.6);
border-left: 1px solid rgba(0, 0, 0, 0.6);
}
.grey-grad {
background: #eaebeb;
background: -webkit-gradient(linear, left top, left bottom, from(#d9dbdd), to(#eaebeb));
background: -webkit-linear-gradient(top, #d9dbdd, #eaebeb);
background: -moz-linear-gradient(top, #d9dbdd, #eaebeb);
background: -ms-linear-gradient(top, #d9dbdd, #eaebeb);
background: -o-linear-gradient(top, #d9dbdd, #eaebeb);
}
.dark-grey-grad {
background: #56595b;
background: -webkit-gradient(linear, left top, left bottom, from(#43484c), to(#56595b));
background: -webkit-linear-gradient(top, #43484c, #56595b);
background: -moz-linear-gradient(top, #43484c, #56595b);
background: -ms-linear-gradient(top, #43484c, #56595b);
background: -o-linear-gradient(top, #43484c, #56595b);
}
.dark-grey-grad:hover {
background: #6c7072;
background: -webkit-gradient(linear, left top, left bottom, from(#6c7072), to(#66696a));
background: -webkit-linear-gradient(top, #6c7072, #66696a);
background: -moz-linear-gradient(top, #6c7072, #66696a);
background: -ms-linear-gradient(top, #6c7072, #66696a);
background: -o-linear-gradient(top, #6c7072, #66696a);
}
.sc-button.grey-grad:hover .btn-overlay {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.sc-button span {
position: relative;
z-index: 5;
}
.sc-button.grey-grad .btn-overlay {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background: #d9dbdd;
background: -webkit-gradient(linear, left top, left bottom, from(#eaebeb), to(#d9dbdd));
background: -webkit-linear-gradient(top, #eaebeb, #d9dbdd);
background: -moz-linear-gradient(top, #eaebeb, #d9dbdd);
background: -o-linear-gradient(top, #eaebeb, #d9dbdd);
background: -ms-linear-gradient(top, #eaebeb, #d9dbdd);
background: linear-gradient(top, #eaebeb, #d9dbdd);
border-radius: 5px;
z-index: 1;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.light-grey {
background: #a7acaf;
}
.lighter-grey {
background: #b4b8bc !important;
}
.dlight-grey {
background: #e6e6e6;
}
.blue-radial-grad {
background: #3170ac;
background: -moz-radial-gradient(50% 500%, circle farthest-side, #2ea0cf, #3170ac);
background: -webkit-gradient(radial, 50% 500%, 0, 50% 100%, 100%, color-stop(0%,#2ea0cf), color-stop(100%,#3170ac));
background: -webkit-radial-gradient(50% 500%, circle farthest-side, #2ea0cf, #3170ac);
background: -o-radial-gradient(50% 500%, circle farthest-side, #2ea0cf, #3170ac);
background: -ms-radial-gradient(50% 500%, circle farthest-side, #2ea0cf, #3170ac);
background: radial-gradient(50% 500%, circle farthest-side, #2ea0cf, #3170ac);
}
.blue {
background: #3170ac;
}
.light-greyblue {
background: #e8ecf0;
}
/*----------------</BACKGROUNDS AND COLORS>----------------*/
/*----------------<BORDERS>----------------*/
.border-bottom-white {
border-bottom: 1px solid #fff;
}
.border-top-white {
border-top: 1px solid #fff;
}
.border-bottom-black-tr {
border-bottom: 1px solid rgba(0,0,0,0.1);
}
.border-bottom-blue-3px {
background-position: center bottom;
background-repeat: repeat-x;
position: relative;
}
.border-bottom-blue-3px:after {
content: '';
position: absolute;
bottom: 0px;
width: 100%;
left: 0;
height: 3px;
border-top: 1px solid rgba(0, 0, 0, 0.24);
background: #3799d8;
border-bottom: 1px solid rgba(255, 255, 255, 0.44);
z-index: 0;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.border-tb-white {
border-bottom: 1px solid #fff;
border-top: 1px solid #fff;
}
/*----------------</BORDERS>----------------*/
/*----------------<MARGINS, PADDINGS>----------------*/
.wrapper.default-bg .container,
.wrapper.border-tb-white.marble-color .container,
.wrapper.grey .container {
/*padding: 40px 0 0;*/
}
.container.blue-radial-grad {
padding-top: 10px;
padding-bottom: 10px;
color: #ffffff;
}
.posts-container {
padding-right: 3.4%;
}
.container.contacts {
padding: 40px 0;
}
/*----------------</MARGINS, PADDINGS>----------------*/
/*----------------<LISTS>----------------*/
.list-type1 li {
list-style-image: url(../img/list-type1.png);
list-style-position: inside;
}
.list-type2 li {
list-style-image: url(../img/list-type2.png);
list-style-position: inside;
}
/*----------------</LISTS>----------------*/
/*----------------<IMAGE LINKS>----------------*/
.image-links {
position: absolute;
top: 24%;
display: block;
height: 51px;
left: 50%;
margin-left: -56px;
z-index: 100;
visibility: visible;
}
.size1_3 .image-links {
top: 41%;
}
.size1_2 .image-links {
top: 47%;
}
.widget_recent_works .image-links {
top: 49%;
}
.widget_out_stuff2 .image-links {
top: 43%;
margin-left: -28px;
}
/*.image-links .circle-link,*/
.image-links a,
.image-links span {
position: relative;
float: left;
width: 51px;
height: 51px;
background-image: url(../img/sprite.png);
background-position: 0 -283px;
visibility: visible;
}
.image-links .circle-link {
margin: 0 2px;
}
.image-links .link {
background-position: 0 -334px;
}
.image-links .zoom {
background-position: -51px -334px;
}
.image-links .video {
background-position: -47px -426px;
}
.image-links .format-gallery {
background-position: -96px -425px;
}
.image-links .add {
background-position: -102px -334px;
}
.image-links .twitter {
background-position: -51px -283px;
}
.image-links .facebook {
background-position: -102px -283px;
}
.image-links .skype {
background-position: -153px -283px;
}
.gallery-image-links {
position: relative;
top: 50%;
display: inline-block;
height: 51px;
left: 50%;
margin-left: -46px;
}
.gallery-image-links a {
margin: 0 -4px;
}
.gallery-image-links a,
.gallery-image-links span {
position: relative;
display: inline-block;
width: 51px;
height: 51px;
}
.gallery-image-links span {
position: absolute;
background-image: url(../img/sprite.png);
}
.gallery-image-links a span:first-child+span {
opacity: 0;
filter: alpha(opacity=0);
}
.gallery-image-links a:hover span:first-child+span {
opacity: 1;
filter: alpha(opacity=100);
}
.gallery-image-links a span:first-child {
background-position: -278px -169px;
}
.gallery-image-links a span:first-child+span {
background: #407eb5;
border-radius: 50%;
margin: 5px 0 0 5px;
width: 41px;
height: 40px;
box-shadow: inset 0 30px 30px -30px rgba(0,0,0,0.4);
}
.gallery-image-links a.prev span+span+span {
background-position: -278px -271px;
}
.gallery-image-links a.next span+span+span {
background-position: -278px -322px;
}
/*----------------</IMAGE LINKS>----------------*/
/*----------------<PREV NEXT>----------------*/
.prev-t1,
.next-t1,
.prev-t2,
.next-t2,
.prev-t3,
.next-t3 {
display: block;
float: left;
width: 16px;
height: 15px;
background-image: url(../img/sprite.png);
cursor: pointer;
}
.prev-t1 {
background-position: 0 -25px;
}
.prev-t1:hover {
background-position: 0px -40px;
}
.next-t1 {
background-position: -16px -25px;
}
.next-t1:hover {
background-position: -16px -40px;
}
.prev-t2 {
background-position: 0 -70px;
}
.next-t2 {
background-position: -16px -70px;
}
.prev-t3 {
background-position: 0 -55px;
}
.prev-t3:hover {
background-position: 0px -70px;
}
.next-t3 {
background-position: -16px -55px;
}
.next-t3:hover {
background-position: -16px -70px;
}
/*----------------</PREV NEXT>----------------*/
/*----------------<OTHER>----------------*/
.hidden-overflow {
overflow: hidden;
}
.absolute {
z-index: 100;
position: relative;
top: 0;
left: 0;
width: 100%;
margin-bottom: 0;
height: 0;
float: left;
}
div.fixed.menu-bg {
position: fixed !important;
top: 0;
-webkit-backface-visibility: hidden;
background-color: rgba(255, 255, 255, 0.95);
z-index: 100000;
}
.absolute.fixed .headline {
margin-top: 45px;
}
.page-header .fixed {
position: fixed;
top: 0;
left: 0;
z-index: 1000;
max-width: none;
width: 100%;
}
.b1170 .wrapper.menu-bg.fixed, .b960 .wrapper.menu-bg.fixed {
background: transparent;
box-shadow: none;
border: 0;
}
.b1170 .fixed .container,
.b960 .fixed .container {
background: rgba(255,255,255,0.95);
box-shadow: inset 0 6px 5px -5px rgba(0,0,0,0.3);
border-bottom: 1px solid rgba(0,0,0,0.1);
border-left: 1px solid #b3b3b3;
border-right: 1px solid #b3b3b3;
}
body.headerstyle2 .fixed .menu>li>a {
height: 40px;
line-height: 40px;
}
.headerstyle2 .fixed .logo {
height: 40px;
padding-bottom: 0;
}
.headerstyle2 .fixed .logo img {
height: 33px !important;
margin-top: 5px;
}
.headerstyle2 div.wrapper.menu-bg {
background: #fff;
box-shadow: 0 0 5px rgba(0,0,0,0.5);
position: relative;
z-index: 1000;
-webkit-backface-visibility: hidden;
}
.relative {
position: relative;
}
.tran03slinear {
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
transition: all 0.3s linear;
/*-webkit-backface-visibility: hidden;*/
}
.tran02slinear {
-webkit-transition: all 0.2s linear;
-moz-transition: all 0.2s linear;
-o-transition: all 0.2s linear;
-ms-transition: all 0.2s linear;
transition: all 0.2s linear;
/*-webkit-backface-visibility: hidden;*/
}
.bg-black-045 {
position: absolute;
display: block;
width: 100%;
height: 100%;
background: #000;
opacity: 0.45;
filter: alpha(opacity=45);
}
.bg-black-020 {
position: absolute;
display: block;
width: 100%;
height: 100%;
background: #000;
opacity: 0.20;
filter: alpha(opacity=20);
}
.container50per {
width:50%;
float: left;
}
.separator {
position: relative;
height: 3px;
width: 100%;
background: #dadada;
border-bottom: solid 1px #fff;
margin-bottom: 30px;
}
.top-slider {
height: 450px;
width: 100%;
-webkit-backface-visibility: hidden;
}
.parallax-slider {
position:relative;
}
.top-slider-content {
position: absolute;
left: 0;
bottom: 0;
width: 100%;
z-index: 100;
}
.top-slider .flexslider .slides li, .top-slider .flexslider .slides li img {
width: 100%;
height: auto;
}
.top-slider .flex-control-nav {
display: none;
}
.fullwidthbanner-container {
overflow: visible !important;
}
.fullwidthbanner-container .tparrows {
position: absolute;
}
.tp-rightarrow.tparrows.default {
background-position: -489px -487px;
}
.tp-leftarrow.tparrows.default {
background-position: -466px -487px;
}
.tparrows.default {
background: url(../img/sprite.png);
height: 63px;
width: 23px;
}
/*-------- Slides -------------------*/
.transp_round {
background: rgba(0,0,0,0.12);
width: 360px;
height: 360px;
border-radius: 50%;
}
.tp-caption.transp_round h2 {
text-align: center;
margin-top: 40px;
color: #e1e4e6;
text-shadow: 0 0 6px rgba(0,0,0,0.07);
}
.tp-caption.transp_round p {
text-align: center;
width: 90%;
margin: 20px auto 0;
color: #f8f8f8;
}
.transp_round span.line {
margin: 17px auto 30px;
width: 80%;
height: 1px;
background-color: rgb(216, 216, 216);
display: block;
}
.transp_round .rev-direction-nav {
margin-left: 136px;
}
.tp-caption a {
color: #ff7302; text-shadow: none; -webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
}
.tp-caption a:hover {
color: #ffa902;
}
.tp-caption h2 {
color: #fff;
font: 46px 'Open Sans', sans-serif;
text-transform: uppercase;
line-height: 1;
font-weight: 100;
margin: 0px 0 7px;
}
.tp-caption h2 b {
font-weight:900;
}
.tp-caption p {
color: #fff;
font-size: 14px;
white-space: normal;
line-height: 1.5;
margin-bottom: 15px;
}
.transp_bg {
background: rgba(29, 29, 29, 0.45);
padding: 24px 29px 34px !important;
width: 405px;
height: 150px;
}
.rev-direction-nav a {
background-position: -278px -169px;
background-image:url(../img/sprite.png);
width: 51px;
height: 51px;
display: inline-block;
margin-left: -4px;
float: left;
}
.rev-direction-nav a span {
font-size: 0;
border-radius: 50%;
margin: 5px;
width: 41px;
height: 41px;
-webkit-box-shadow: inset 0 30px 30px -30px rgba(0,0,0,0.4);
box-shadow: inset 0 30px 30px -30px rgba(0,0,0,0.4);
display: block;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.rev-direction-nav .rev-prev span {
background-position: -284px -276px;
background-image: url(../img/sprite.png);
}
.rev-direction-nav a span:hover {
background-color: #407eb5;
}
.rev-direction-nav .rev-next span {
background-position: -282px -327px;
background-image: url(../img/sprite.png);
}
.tp-caption iframe {
border: 0;
}
.transparent {
background: transparent;
}
.button-transparent {
background: transparent;
padding: 15px 30px;
display: inline-block;
border-radius: 5px;
border: 2px solid rgba(255, 255, 255, 0.23);
box-shadow: 0 0 3px 0 rgba(0,0,0,0.2);
font: 900 14px Open Sans, Arial, Tahoma;
text-transform: uppercase;
color: #fff !important;
text-shadow: 0 1px 3px rgba(0,0,0,0.4) !important;
position: relative;
cursor: pointer;
}
.button-transparent:after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
border: 1px solid rgba(0, 0, 0, 0.15);
border-radius: 3px;
box-shadow: inset 0 -30px 20px -20px rgba(255,255,255,0.2);
}
.tp-caption .revslider-nav2 li {
display: inline-block;
width: 9px;
height: 9px;
border: 1px solid rgba(255,255,255,0.3);
background: transparent;
visibility: visible !important;
border-radius: 50%;
position: relative !important;
box-shadow: inset 0 0 5px 0 rgba(0,0,0,0.4);
margin-left: 6px !important;
cursor: pointer;
}
.tp-caption .revslider-nav2 {
display: block;
margin-top: 25px !important;
}
.tp-caption .revslider-nav2 li a {
background: transparent;
width: 5px;
height: 5px;
border-radius: 50%;
margin: 2px;
display: block;
}
.tp-caption .revslider-nav2 li.active a {
background: #fff;
}
.nobullets.tp-bullets {
display: none !important;
}
.tp-caption.transp_caption h2 {
text-shadow: 0 0 4px rgba(0,0,0,0.5);
font-size: 44px;
}
.tp-caption.transp_caption {
background-color: rgba(0,0,0,0.3);
padding: 5px 30px 0px !important;
display: block;
}
.light80 {
color: #fff;
font-size: 69px !important;
font-weight: 100;
text-shadow: 1px 1px 0px rgba(0,0,0,0.5);
}
.extrabold55 {
font-size: 47px !important;
font-weight: 900;
color: #fff;
text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
}
.white-text {
color: #fff;
font-size: 17px !important;
text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
width: 23%;
display: block;
line-height: 1.4 !important;
white-space: normal !important;
}
/*----------------</OTHER>----------------*/
/*----------------<HEADER>----------------*/
.page-header {
position: relative;
z-index: 10000;
}
.page-header .grid_12 {
margin-bottom: 0;
}
.logo {
display: block;
float: left;
padding-bottom: 17px;
}
.logo img {
display: block;
margin-top: 17.5px;
}
.menu{
display: block;
width: 100%;
margin-left: 5px;
}
.menu li{
position: relative;
display: inline-block;
margin-right: 25px;
}
.menu > li:first-child {
margin-left: -10px;
}
.menu li:hover span {
color: #fff;
}
.menu li > span {
position: absolute;
right: 20px;
top: 16px;
color: rgb(187, 187, 187);
display:none;
}
nav {
-webkit-backface-visibility: hidden;
}
/*.page-header > .wrapper-bg {
display: inline-block;
}*/
.fixed-header .headline {
padding-top: 45px;
}
.mini_logo {
height: 36px;
margin-top: 5px;
width: 0;
margin-right: 0;
margin-left: 0;
display: block;
margin-bottom: 4px;
float: left;
}
.fixed .mini_logo {
width: 129px;
opacity: 1;
margin-right: 40px;
float: left;
display: block;
}
.menu li>a{
position:relative;
display: inline-block;
padding: 0 20px;
height: 44px;
line-height: 44px;
font-size: 12px;
color: #4a4d4f;
text-transform: uppercase;
text-decoration: none;
}
.b960 .menu li>a {
padding: 0 10px;
}
.headerstyle3 .menu>li>a,
.headerstyle3 .menu>ul>li>a {
padding: 0 10px;
}
.menu >li>a:after,
.menu>ul>li>a:after{
position: absolute;
top: 100%;
left: 0;
content:'';
display: block;
height: 1px;
width: 100%;
background: transparent;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
transition: all 0.3s linear;
}
.page-header .menu-bg > .container {
text-align: center;
}
.menu li:hover>a:after,
.menu li.current_page_item>a:after{
background: #0f9de0;
}
/*.menu li:hover>a,
.menu li.current_page_item>a{
color: #278dc9;
}*/
.menu li:hover> ul {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
height: auto;
overflow: visible;
}
.menu .sub-menu li .sub-menu,
.menu ul li ul li ul {
left: 100%;
top: -1px;
border: 0;
}
.menu li ul {
position: absolute;
top: 100%;
left: 0px;
min-width: 185px;
overflow: hidden;
height: 0px;
border-top: 1px solid transparent;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
background: #0f9de0;
z-index: 9999;
text-align: left;
}
.menu {
text-align: left;
}
/*.mobile .menu>li:hover>.sub-menu {
height: 0;
}*/
.menu li ul li {
border-top: solid 1px #3b3b3b;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
transition: all 0.3s linear;
position: relative;
display: block;
-webkit-backface-visibility: visible;
margin: 0;
}
.menu li> ul>li:first-child{
border-top-width: 0px;
}
.menu li ul li a {
display: block;
padding: 0 20px;
height: 40px;
line-height: 40px;
font-size: 12px;
color: #f3f3f3;
text-transform: none;
background-color: #45484a;
-webkit-transition: all 0.3s linear;
-moz-transition: all 0.3s linear;
-o-transition: all 0.3s linear;
-ms-transition: all 0.3s linear;
transition: all 0.3s linear;
text-decoration: none;
white-space: nowrap;
}
.menu li>ul>li>a:hover{
background-color: #3f4244;
}
/*--- Mega menu ---*/
@media only screen and (min-width: 767px){
li.mega-menu > .sub-menu {
width: auto;
white-space: nowrap;
padding: 10px 20px;
background-color: rgba(69, 72, 74, 0.95);
border-top: 1px solid #0f9de0;
}
li.mega-menu > .sub-menu > li {
display: inline-block;
float: left;
height: auto;
border-top: 0;
}
li.mega-menu > .sub-menu > li >a {
font-size: 15px;
background-color: transparent !important;
border-bottom: 1px solid #808080;
padding: 0;
margin: 0 20px;
}
li.mega-menu > .sub-menu > li > ul {
display: block !important;
opacity: 1 !important;
position: relative;
left: 0 !important;
background: transparent;
height: auto;
}
li.mega-menu > .sub-menu > li li {
border: 0;
}
li.mega-menu > .sub-menu > li li a {
background-color: transparent;
}
li.mega-menu > .sub-menu > li li a:hover,
.headerstyle2_2 .sub-menu > li a:hover {
background-color: transparent;
color: #0f9de0;
}
li.mega-menu > .sub-menu > li li a:before,
.headerstyle2_2 .sub-menu > li a:before {
position: absolute;
left: 11px;
content: "\f105";
font-family: FontAwesome;
top: 0px;
color: #0f9de0;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
li.mega-menu > .sub-menu > li li a:hover:before,
.headerstyle2_2 .sub-menu > li a:hover:before {
opacity: 1;
}
li.mega-menu > .sub-menu > li> a:hover:before {
opacity: 0 !important;
}
}
/*--- /Mega menu ---*/
/*-------------- Post menu ----------------*/
li.post-menu > ul {
width: 492px;
background-color: rgba(0,0,0,0.80);
border-radius: 0 0 2px 2px;
padding: 3px;
border-top: 2px solid #0f9de0;
overflow: visible;
}
li.post-menu > ul >li {
border: 0;
float: left;
width: 76px;
clear: none;
height: 76px;
padding: 3px;
position: static;
margin:0 !important;
}
li.post-menu > ul >li>a {
padding: 0 !important;
height: 100%;
display: block;
background-color: #3170ac;
border-radius: 3px;
}
li.post-menu > ul >li>a>img {
width: 100%;
height: 100%;
border-radius: 3px;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
li.post-menu > ul >li>a>img:hover {
opacity: 0.35;
}
li.post-menu > ul >li:hover .post-details {
display: block;
position: absolute;
top: 100%;
left: 0;
width: 100%;
margin-top: -1px;
border-radius: 0 0 2px 2px;
}
.post-details {
display: none;
background-color: rgba(0, 0, 0, 0.85);
border-top: 1px solid #0f9de0;
}
.post-details img {
width: 100%;
display: block;
padding: 5px;
border-radius: 3px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.menu-post-description {
color: #fff;
padding: 5px;
margin-bottom: 0px;
}
.post-details span {
float: left;
width: 30px;
height: 25px;
margin-right: 5px;
background-image: url(../img/sprite.png);
background-position: -243px -292px;
margin-top: 10px;
margin-left: 5px;
}
.post-details span.format-gallery {
background-position: -205px -292px;
}
.post-details span.format-video {
background-position: -204px -336px;
}
li.post-menu > ul >li>a:hover {
background-color: #3170ac;
}
.wrapper.headline {
display: block;
height: 54px;
background: transparent;
}
.headerstyle2 .headline {
height: 100px;
}
.headline.only-path {
height: 55px;
}
.headline h1{
display: block;
float: left;
color: #e7ebee;
text-transform: uppercase;
font-size: 30px;
font-weight: 800;
line-height: 54px;
margin-bottom: 0;
}
.headline.marble h1 {
color: #a6aaad;
}
.headline h1 span {
display: none;
}
.page-path {
display: block;
float: right;
}
.only-path .page-path {
float: left;
}
.page-header .only-path .page-path {
float: left;
margin-top: 0;
}
.headerstyle2 .page-header .only-path .page-path {
line-height: 85px;
}
#search-icon {
width: 25px;
}
.page-path a, .page-path span{
color: #e7ebee;
line-height: 54px;
font-size: 10px;
text-transform: uppercase;
}
.only-path .page-path a,
.only-path .page-path span {
line-height: 40px;
}
.page-path a:before{
content: '|';
padding: 0 4px 0 2px;
}
.page-path a:first-child:before{
content: '';
padding: 0;
}
.marble .page-path span, .marble .page-path a {
color: #545758;
}
#control-panel {
-webkit-backface-visibility: hidden;
}
#menu-btn {
width: 27px;
height: 13px;
background: url(../img/menu-btn.png) no-repeat;
position: relative;
margin: 18px;
display: none;
}
.socials.mobile-socials {
display:none;
}
.fixed .socials.mobile-socials {
display: none;
}
/*----------------</HEADER>----------------*/
/*----------------<HEADER STYLE2>----------------*/
.headerstyle2 .menu {
float: right;
width: auto;
}
.headerstyle2 .menu>li>a,.headerstyle2 .menu>ul>li>a {
height: 100px;
line-height: 100px;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.headerstyle2 .menu>li, .headerstyle4 .menu>li, .headerstyle2 .menu>ul>li, .headerstyle4 .menu>ul>li {
margin-right: 15px;
}
.b960.headerstyle2 .menu>li, .headerstyle4 .menu>li, .b960.headerstyle2 .menu>ul>li, .headerstyle4 .menu>ul>li {
margin-right: 5px;
}
.headerstyle2 .fixed .menu>li>a, .headerstyle2 .fixed .menu>ul>li>a {
height: 44px;
line-height: 44px;
}
.headerstyle2 .menu li>a:after {
top:auto;
bottom: -1px;
height: 2px;
}
.headerstyle2 .headline h1 {
line-height: 100px;
}
.headerstyle2 .page-path {
margin-top: 25px;
}
.headerstyle2 .socials li {
height: 33px;
padding: 1px 0;
margin-top: 0;
margin-left: 0;
}
.wrapper.preheader {
background-color: #45484a;
padding: 9px 0;
}
.preheader .socials li span {
background: #7a8286;
-webkit-box-shadow: none;
box-shadow: none;
}
.preheader .socials {
position: relative;
padding-left: 20px;
margin-left: 20px;
}
.preheader .socials:before {
background: #5d5f62;
content: '';
width: 1px;
height: 30px;
position: absolute;
top: 4px;
left: 0;
}
.preheader-builder {
padding: 3px 0;
border-bottom: 1px solid #eff2f2;
color: #9fa2a4;
line-height: 37px;
}
.preheader-builder div.left {
float: left;
margin-right: 22px;
}
.preheader-builder div.right {
float: right;
margin-left: 22px;
}
.preheader-builder i {
padding-right: 5px;
font-size: 15px;
}
.headerstyle2.fixed-header .headline,
.headerstyle5.fixed-header .headline {
padding-top: 0px;
}
.contact {
color: #fff;
line-height: 41px;
padding-left: 25px;
background-image: url(../img/sprite.png);
background-repeat: no-repeat;
float: right;
}
.preheader .phone.contact {
font: 100 28px Open Sans, Arial, Tahoma;
}
.phone.contact {
background: url(../img/sprite.png) -343px -312px no-repeat;
padding-left: 40px;
color: #c4c6c7;
}
.preheader .socials a {
background-repeat: no-repeat;
}
.preheader .socials .facebook {
background-position: -7px -872px;
}
.preheader .socials .twitter {
background-position: -44px -872px;
}
.preheader .socials .skype {
background-position: -78px -872px;
}
.preheader .socials .dribbble {
background-position: -107px -873px;
}
.preheader .socials .youtube {
background-position: -135px -872px;
}
.preheader .socials .tumblr {
background-position: -166px -872px;
}
.preheader .socials .linkedin {
background-position: -196px -872px;
}
.preheader .socials .pinterest {
background-position: -228px -872px;
}
.preheader .socials .google-plus {
background-position: -264px -872px;
}
.preheader .socials .instagram {
background-position: -303px -874px;
}
.preheader .socials .facebook:hover {
background-position: -7px -905px;
}
.preheader .socials .twitter:hover {
background-position: -44px -905px;
}
.preheader .socials .skype:hover {
background-position: -78px -905px;
}
.preheader .socials .dribbble:hover {
background-position: -107px -906px;
}
.preheader .socials .youtube:hover {
background-position: -135px -906px;
}
.preheader .socials .tumblr:hover {
background-position: -166px -906px;
}
.preheader .socials .linkedin:hover {
background-position: -196px -906px;
}
.preheader .socials .pinterest:hover {
background-position: -228px -907px;
}
.preheader .socials .google-plus:hover {
background-position: -264px -906px;
}
.preheader .socials .instagram:hover {
background-position: -303px -906px;
}
.headerstyle2 .headline.only-path:hover {
height: 100px;
}
#search-icon {
float: right;
position: relative;
z-index: 100;
}
/*#search-icon form input:focus {
font-size: 12px;
padding: 4px 0 4px 28px;
width: 90px;
border: none;
background-color: #F3F3F3;
cursor: text;
}*/
#search-icon form input {
margin: 0;
padding: 4px 0 4px 28px;
width: 0px;
cursor: pointer;
border: none;
outline: none;
-webkit-transition: all 0.4s ease 0s;
-moz-transition: all 0.4s ease 0s;
-o-transition: all 0.4s ease 0s;
transition: all 0.4s ease 0s;
-webkit-box-shadow: none;
-moz-box-shadow: none;
height: 30px;
box-shadow: none;
background: transparent;
}
#search-icon #searchform {
width: auto;
height: auto;
border: 0;
background: none;
margin-top: 33px;
margin-left: 5px;
position: relative;
}
#search-icon i {
position: absolute;
pointer-events: none;
left: -4px;
top: 43px;
z-index: 100;
color: #444444;
font-size: 19px;
background: url(../img/magnifier.png) no-repeat 18px 0;
width: 17px;
height: 17px;
border-left: 1px solid #ccc;
padding-left: 20px;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.headerstyle2 nav {
margin-right: -6px;
}
body.headerstyle2 .page-path span, body.headerstyle2 .page-path a,
body.headerstyle5 .page-path span, body.headerstyle5 .page-path a {
line-height: 25px;
color: #fff;
}
.headerstyle2 .page-path,
.headerstyle5 .page-path {
margin-top: 53px;
background: rgba(0,0,0,0.34);
padding: 0 10px;
}
.headerstyle2 .header-image,
.headerstyle5 .header-image {
height: 120px;
}
.single-portfolio.headerstyle2 .header-image {
height: 100px;
}
.fixed #search-icon #searchform {
margin-top: 4px;
margin-bottom: 4px;
}
.fixed #search-icon i {
top: 13px;
}
.fixed #search-icon form input {
height: 25px;
}
.headerstyle2 .logo img,
.headerstyle4 .logo img {
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
width:auto;
}
.headerstyle2 .menu li > span {
display: block;
top: 50%;
margin-top: -8px;
right: 0;
}
.headerstyle2 .menu li ul li > span {
display: none;
}
.menu li:hover > span {
color: #278dc9;
}
.headerstyle2 .headline {
height: 100px;
}
.headerstyle2 .headline h1,
.headerstyle5 .headline h1 {
line-height: 35px;
text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
margin-top: 26px;
}
.no-header-image.headerstyle2 .headline h1,
.woocommerce.headerstyle2 .headline h1,
.single-post.headerstyle2 .headline h1,
.category.headerstyle2 .headline h1,
.single-portfolio.headerstyle2 .headline h1 {
margin-top: 18px;
text-shadow: none;
}
.no-header-image.headerstyle2 .headline h1 span,
.woocommerce.headerstyle2 .headline h1 span,
.single-post.headerstyle2 .headline h1 span,
.category.headerstyle2 .headline h1 span,
.single-portfolio.headerstyle2 .headline h1 span {
background: transparent;
padding-left: 0;
color: #45484a;
}
.no-header-image.headerstyle2 .page-path,
.woocommerce.headerstyle2 .page-path,
.single-post.headerstyle2 .page-path,
.category.headerstyle2 .page-path,
.single-portfolio.headerstyle2 .page-path {
margin-top: 40px;
background: transparent;
}
body.single-portfolio.headerstyle2 .page-path span, body.single-portfolio.headerstyle2 .page-path a,
body.woocommerce.headerstyle2 .page-path span, body.woocommerce.headerstyle2 .page-path a,
body.single-post.headerstyle2 .page-path span, body.single-post.headerstyle2 .page-path a,
body.category.headerstyle2 .page-path span, body.category.headerstyle2 .page-path a,
body.no-header-image.headerstyle2 .page-path span, body.no-header-image.headerstyle2 .page-path a {
color: #45484a;
}
body.no-header-image.headerstyle2 .page-path span.current,
body.woocommerce.headerstyle2 .page-path span.current,
body.single-post.headerstyle2 .page-path span.current,
body.category.headerstyle2 .page-path span.current,
body.single-portfolio.headerstyle2 .page-path span.current {
color: #3b74aa;
}
.single-portfolio.headerstyle2 .headline h1,
.woocommerce.headerstyle2 .headline h1,
.single-post.headerstyle2 .headline h1,
.category.headerstyle2 .headline h1 {
margin-top: 10px;
}
.single-portfolio.headerstyle2 .page-path,
.woocommerce.headerstyle2 .page-path,
.single-post.headerstyle2 .page-path,
.category.headerstyle2 .page-path {
margin-top: 17px;
}
.single-portfolio.headerstyle2 .absolute, .single-portfolio.headerstyle2 .headline,
.woocommerce.headerstyle2 .absolute, .woocommerce.headerstyle2 .headline,
.single-post.headerstyle2 .absolute, .single-post.headerstyle2 .headline,
.category.headerstyle2 .absolute, .category.headerstyle2 .headline {
height: 55px;
}
.headerstyle2 .headline h1 span,
.headerstyle5 .headline h1 span {
font-weight: 100;
font-size: 21px;
clear: both;
display: block;
line-height: 1;
text-transform: none;
background: rgba(0,0,0,0.34);
padding: 6px 10px 9px;
text-shadow: none;
}
.headerstyle2 .page-path,
.headerstyle5 .page-path {
margin-top: 53px;
background: rgba(0,0,0,0.34);
padding: 0 10px;
}
body.headerstyle2 .page-path span, body.headerstyle2 .page-path a,
body.headerstyle5 .page-path span, body.headerstyle2 .page-path a {
line-height: 25px;
color: #fff;
}
.woocommerce.headerstyle2 .header-image,
.single-post.headerstyle2 .header-image,
.category.headerstyle2 .header-image,
.single-portfolio.headerstyle2 .header-image {
height: 55px;
margin-top: -55px;
float: left;
}
.headerstyle2 div.wrapper.menu-bg.transparent {
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iM<KEY>
background: none, -webkit-linear-gradient(to top,rgba(255,255,255,0.75) 0px,rgba(255,255,255,0.9) 30px,#ffffff 70px);
background: none, -moz-linear-gradient(to top,rgba(255,255,255,0.75) 0px,rgba(255,255,255,0.9) 30px,#ffffff 70px);
background: none, -o-linear-gradient(to top,rgba(255,255,255,0.75) 0px,rgba(255,255,255,0.9) 30px,#ffffff 70px);
background: none, -ms-linear-gradient(to top,rgba(255,255,255,0.75) 0px,rgba(255,255,255,0.9) 30px,#ffffff 70px);
background: none, linear-gradient(to top,rgba(255,255,255,0.75) 0px,rgba(255,255,255,0.9) 30px,#ffffff 70px);
margin-bottom: -70px;
border-bottom: 0;
float: left;
}
.b960.headerstyle2 div.wrapper.menu-bg.transparent,
.b1170.headerstyle2 div.wrapper.menu-bg.transparent {
float: none;
}
.b1170.headerstyle2 div.wrapper.menu-bg.transparent.fixed,
.b960.headerstyle2 div.wrapper.menu-bg.transparent.fixed {
background: none;
}
.wrapper.transparent-content .container.main {
padding-top: 70px;
}
.wrapper.transparent-content {
margin-top: -70px;
background: #FFF;
}
.wrapper.transparent-content:before {
position: absolute;
left: 0;
height: 70px;
width: 100%;
z-index: 100000;
display: block;
content: '';
background: none, -webkit-linear-gradient(top,rgba(255,255,255,0.25) 0px,rgba(255,255,255,0.9) 50px,#ffffff 70px);
background: none, -moz-linear-gradient(top,rgba(255,255,255,0.25) 0px,rgba(255,255,255,0.9) 50px,#ffffff 70px);
background: none, -o-linear-gradient(top,rgba(255,255,255,0.25) 0px,rgba(255,255,255,0.9) 50px,#ffffff 70px);
background: none, -ms-linear-gradient(top,rgba(255,255,255,0.25) 0px,rgba(255,255,255,0.9) 50px,#ffffff 70px);
background: none, linear-gradient(top,rgba(255,255,255,0.25) 0px,rgba(255,255,255,0.9) 50px,#ffffff 70px);
}
#search-icon form input {
width: 200px;
position: absolute;
top: 40px;
right: -30px;
height: 40px;
background: #fff;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
display: none;
-webkit-transition: none;
-moz-transition: none;
-o-transition: none;
-ms-transition: none;
transition: none;
border-radius: 4px;
-webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,0.3);
box-shadow: 0 0 4px 0 rgba(0,0,0,0.3);
font-size: 13px;
}
#search-icon i {
pointer-events: all;
cursor: pointer;
}
#search-icon :-moz-placeholder {
font-style:italic;
}
#search-icon :-ms-input-placeholder {
font-style:italic;
}
#search-icon ::-webkit-input-placeholder {
font-style:italic;
}
/*----------------</HEADER STYLE2>----------------*/
/*----------------<HEADER STYLE3>----------------*/
.headerstyle3 .menu-bg {
position: relative;
z-index: 50;
}
.headerstyle3 .menu {
margin-right: -36px;
}
.headerstyle3 .menu, .headerstyle2 .menu {
width: auto;
float: right;
}
.headerstyle3 .contact {
color: #7f8182;
line-height: 19px;
float: left;
margin-top: 12px;
margin-right: 20px;
}
.headerstyle3 .phone.contact {
background-position: -453px -52px;
padding-left: 15px;
}
.headerstyle3 .email.contact {
background-position: -447px -79px;
padding-left: 25px;
}
.headerstyle2 .header-image.header-image-no-titlebar {
height: 0px;
}
.headerstyle3 .menu-bg .container {
text-align: left;
}
.headerstyle3 .socials li {
overflow: visible;
}
.b960.headerstyle3 .menu>li {
margin-right: 10px;
}
/*----------------</HEADER STYLE3>----------------*/
/*----------------<HEADER STYLE4>----------------*/
@media only screen and (min-width: 768px){
.headerstyle4 .page-header {
margin-bottom: -100px;
float: left;
width: 100%;
position: relative;
z-index: 50;
}
.wrapper.dark-menu {
background-color: rgba(0,0,0,0.5);
}
.headerstyle4.fixed-header .page-header .dark-menu {
position: fixed;
width: 100%;
top: 0;
left: -1px;
z-index: 10000;
}
.headerstyle4 #search-icon form input {
background-color: rgba(0, 0, 0, 0);
color: #fff;
}
.headerstyle4 .menu {
float: right;
width: auto;
}
.headerstyle4 .header-image.header-image-no-titlebar {
height: 90px;
margin: 0;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.headerstyle4.fixed-header .header-image.header-image-no-titlebar {
height: 30px;
}
.headerstyle4 .header-image {
height: 149px;
margin-top: -55px;
float: left;
}
.headerstyle4 .menu>li>a {
line-height: 100px;
height: 100px;
color: #fff;
padding: 0 30px 0 20px;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.b960.headerstyle4 .menu>li>a {
padding: 0 30px 0 10px;
}
.headerstyle4 .menu li ul {
background: none;
border-top: 1px solid #0f9de0;
-webkit-backface-visibility: hidden;
}
.headerstyle4 .menu li ul li {
border: 0;
}
.headerstyle4 .menu > li {
margin-right: 0;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.headerstyle4 #search-icon form input:focus {
background-color: rgba(0,0,0,0.3);
}
.headerstyle4 .menu li ul li a {
background-color: rgba(0,0,0,0.5);
border: 0;
}
.headerstyle4 .menu li ul li {
margin-right: 0;
}
.headerstyle4 .menu li ul li a:hover {
background-color: rgba(0,0,0,0.65);
}
.headerstyle4 .menu li > span {
display: block;
right: 10px;
top: 50%;
margin-top: -7px;
-webkit-transform: rotateZ(-90deg);
-moz-transform: rotateZ(-90deg);
-o-transform: rotateZ(-90deg);
-ms-transform: rotateZ(-90deg);
transform: rotateZ(-90deg);
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.headerstyle4 .menu li:hover > span {
color: rgb(187, 187, 187);
-webkit-transform: rotateZ(0deg);
-moz-transform: rotateZ(0deg);
-o-transform: rotateZ(0deg);
-ms-transform: rotateZ(0deg);
transform: rotateZ(0deg);
}
.headerstyle4 .menu>li:hover {
background: rgba(0,0,0,0.30);
}
.headerstyle4 :-moz-placeholder {
color: #ffffff;
}
.headerstyle4 :-ms-input-placeholder {
color: #ffffff;
}
.headerstyle4 ::-webkit-input-placeholder {
color: #ffffff;
}
.headerstyle4 #search-icon i {
background-image: url(../img/magnifier-white.png);
}
.fixed-header.headerstyle4 .logo img {
height: 30px !important;
margin: 5px 0;
}
.headerstyle4 .logo img {
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.fixed-header.headerstyle4 #search-icon i {
top: 10px;
}
.fixed-header.headerstyle4 .menu>li>a {
line-height: 40px;
height: 40px;
}
.fixed-header.headerstyle4 #search-icon #searchform {
margin-top: 0;
}
.fixed-header.headerstyle4 .logo {
padding-bottom: 0;
}
}
.headerstyle4 .menu .mega-menu ul a {
background: transparent;
}
.headerstyle4 .menu .mega-menu > ul {
background: rgba(0,0,0,0.5);
}
.headerstyle4 .menu .mega-menu li > span {
display: none;
}
.b1170.headerstyle4.fixed-header .page-header .dark-menu, .b960.headerstyle4.fixed-header .page-header .dark-menu {
max-width: none;
background: none;
}
.b1170.headerstyle4.fixed-header .page-header .dark-menu .container, .b960.headerstyle4.fixed-header .page-header .dark-menu .container {
background-color: rgba(0,0,0,0.5);
position: relative;
padding-right: 63px;
}
.b1170.headerstyle5.fixed-header .wrapper.main-menu, .b960.headerstyle5.fixed-header .wrapper.main-menu {
max-width: none;
background: none;
border: 0;
}
.b1170.headerstyle5.fixed-header .wrapper.main-menu .container, .b960.headerstyle5.fixed-header .wrapper.main-menu .container {
background: #fff;
position: relative;
border-bottom: 1px solid #e3e3e3;
}
/*----------------</HEADER STYLE4>----------------*/
/*----------------- Headerstyle5 -------------*/
.headerstyle5 .menu li>a {
font-family: 'open sans', arial, tahoma;
}
.headerstyle5 .menu li>a:before {
font-family: FontAwesome;
margin-right: 5px;
font-size: 15px;
position: relative;
top: -1px;
height: 26px;
}
@media only screen and (min-width: 768px){
.headerstyle5 .page-header .wrapper {
background-color: #fff;
}
.headerstyle5 .menu > li:hover>a {
color: #3b74a9;
}
.headerstyle5 .menu >li>a:after, .headerstyle5 .menu>ul>li>a:after {
margin-top: 1px;
}
.main-menu {
border-bottom: 1px solid #e3e3e3;
}
.headerstyle5 #search-icon i {
top: 13px;
}
.headerstyle5 #search-icon #searchform {
margin-top: 8px;
margin-bottom: 0;
}
.header-text {
float: left;
margin-top: 35px;
margin-left: 30px;
}
.header-text span {
display: block;
color: #7f7f7f;
text-transform: uppercase;
font-size: 10px;
}
.header-contact {
float: right;
margin-top: 28px;
}
.header-contact a {
display: block;
color: #7f7f7f;
}
.header-contact .phone {
background-position: -320px -710px;
margin-bottom: 5px;
}
.header-contact .email {
background-position: -321px -738px;
}
.headerstyle5 .wrapper.small_preheader {
background: #2a2b2c;
height: 35px;
}
.small_preheader span:before {
font-family: fontAwesome;
margin-right: 5px;
font-size: 19px;
height: 21px;
}
.small_preheader span {
font-size: 10px;
text-transform: uppercase;
color: #9c9fa2;
font-family: 'Open Sans', arial, tahoma;
margin-left: 15px;
line-height: 35px;
height: 35px;
}
.headerstyle5 .socials li {
margin-top: 0;
margin-left: 10px;
}
.headerstyle5 .page-header .socials li a {
width: 20px;
margin: 0;
padding: 0;
}
.headerstyle5 .page-header .socials .facebook {
background-position: -16px -1937px !important;
}
.headerstyle5 .page-header .socials .twitter {
background-position: -54px -1937px !important;
}
.headerstyle5 .page-header .socials .skype {
background-position: -88px -1937px !important;
}
.headerstyle5 .page-header .socials .dribbble {
background-position: -116px -1937px !important;
}
.headerstyle5 .page-header .socials .youtube {
background-position: -144px -1937px !important;
}
.headerstyle5 .page-header .socials .linkedin {
background-position: -206px -1937px !important;
}
.headerstyle5 .page-header .socials .google-plus {
background-position: -270px -1937px !important;
}
.headerstyle5 .page-header .socials .pinterest {
background-position: -239px -1937px !important;
}
.headerstyle5 .page-header .socials .tumblr {
background-position: -174px -1937px !important;
}
.headerstyle5 .page-header .socials .instagram {
background-position: -306px -1936px !important;
}
.fixed-header .main-menu {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
}
.fixed-header .small_preheader {
margin-bottom: 46px;
}
.menu [class^="icon-"]:before, .menu [class*=" icon-"]:before {
font-family: fontawesome;
}
.menu li a[class^="icomoon-"]:before, .menu li a[class*=" icomoon-"]:before {
font-family: icomoon;
top: 2px;
}
.headerstyle5 .page-header .wrapper.headline {
background: transparent;
}
.headerstyle5 .only-path .page-path {
margin-top: 30px;
}
.headerstyle5.no-header-image .header-image.header-image-no-titlebar {
height: 0;
}
}
/*----------------- /Headerstyle5 -------------*/
/*----------------- Header style 6 ------------*/
@media only screen and (min-width: 768px){
.headerstyle2.headerstyle2_2 .menu>li, .headerstyle2.headerstyle2_2 .menu>ul>li {
margin-top: 36px;
margin-right: 5px;
}
.headerstyle2.headerstyle2_2 .menu>li>a, .headerstyle2.headerstyle2_2 .menu>ul>li>a {
height: 30px;
line-height: 30px;
border-radius: 3px;
padding-right: 25px;
margin-right: 0px;
}
.b960.headerstyle2.headerstyle2_2 .menu>li>a, .b960.headerstyle2.headerstyle2_2 .menu>ul>li>a {
padding-left: 0;
}
.headerstyle2_2 .sub-menu {
background: #fff;
border-radius: 3px;
box-shadow: 0 0 5px 0 rgba(0,0,0,0.15);
}
.headerstyle2.headerstyle2_2 .menu>li>span, .headerstyle2.headerstyle2_2 .menu>ul>li>span {
right: 10px;
color: #adafb0;
}
.headerstyle2.headerstyle2_2 .menu>li:hover>span, .headerstyle2.headerstyle2_2 .menu>ul>li:hover>span {
right: 5px;
color: #fff;
background-color: #0f9de0;
width: 14px;
height: 14px;
text-align: center;
line-height: 15px;
border-radius: 50%;
box-shadow: inset 0 0 1px 0 rgba(0,0,0,0.5);
}
.headerstyle2.headerstyle2_2 .menu>li.current_page_item>a,
.headerstyle2.headerstyle2_2 .menu>ul>li.current_page_item>a,
.headerstyle2.headerstyle2_2 .menu>li.current-menu-parent>a {
background-color: #1b8bd2;
color: #fff;
box-shadow: inset 0 0 0 1px rgba(0, 71, 116, 0.32);
}
.headerstyle2.headerstyle2_2 .menu>li.current_page_item>span,
.headerstyle2.headerstyle2_2 .menu>ul>li.current_page_item>span,
.headerstyle2.headerstyle2_2 .menu>li.current-menu-parent>span {
color: #fff;
}
.headerstyle2_2 li.post-menu > a, .headerstyle2_2 li.mega-menu > a {
margin-bottom: 1px;
}
.headerstyle2_2 li.post-menu > ul {
border-top-color: transparent;
background-color: #fff;
}
.headerstyle2_2 li.post-menu .sub-menu > li a:hover:before {
display: none;
}
.headerstyle2_2 .menu-post-description {
color: #45484a;
}
.headerstyle2_2 .mega-menu ul li ul {
box-shadow: none;
}
.headerstyle2_2 li.mega-menu>.sub-menu {
border-top-color: transparent;
background-color: #fff;
padding: 10px 0px;
}
.headerstyle2_2 .menu >li>a:after, .headerstyle2_2 .menu>ul>li>a:after {
display: none;
}
.fixed-header.headerstyle2.headerstyle2_2 .menu>li, .fixed-header.headerstyle2.headerstyle2_2 .menu>ul>li {
margin-top: 1px;
}
.headerstyle2_2 li.mega-menu>.sub-menu li a {
color: #45484a;
}
.headerstyle2_2 li.mega-menu>.sub-menu > li >a {
font-weight: 900;
border: 0;
}
.headerstyle2_2 .sub-menu li a {
background-color: transparent;
color: #45484a;
border-color: #e3eaf4;
padding: 0 20px;
}
.headerstyle2_2 .sub-menu li {
border-color: #e3eaf4;
margin: 0 10px;
}
.headerstyle2_2 .post-details {
background-color: #fff;
}
.wrapper.preheader.white {
background-color: #fff;
}
.preheader.white {
position: relative;
z-index: 3000;
border-bottom: 1px solid #edf0f1;
}
.preheader.white p {
display: inline-block;
color: #69767f;
margin-right: 30px;
margin-bottom: 0;
}
.preheader.white span {
margin-right: 5px;
}
.preheader.white .menu li {
margin: 0;
line-height: 10px;
height: 10px;
}
.preheader.white .menu li a {
color: #9c9fa2;
font-size: 10px;
line-height: 10px;
height: 15px;
}
.preheader.white .menu {
float: none;
display: inline-block;
margin: 0;
border-left: 1px solid #ccc;
border-right: 1px solid #ccc;
height: 19px;
margin-top: 1px;
margin-right: 25px;
}
.preheader.white .menu li:hover .icon-angle-down {
background: none;
box-shadow: none;
color: #0f9de0;
right: 7px;
}
.cart-button {
color: #1b8bd2;
font-size: 12px;
float: right;
margin-top: 4px;
}
.cart-button:before {
content: "\f07a";
font-family: fontawesome;
margin-right: 5px;
}
.preheader.white .menu .icon-angle-down {
margin-top: 0;
top: -1px;
}
}
/*----------------<PREHEADER ICONS>----------------*/
.preheader-builder .socials li {
margin-top: 0;
margin-left: 10px;
}
.preheader-builder .socials li a {
width: 20px;
margin: 0;
padding: 0;
}
.preheader-builder .socials span.tran02slinear {
display: none;
}
.preheader-builder .socials .facebook {
background-position: -16px -1937px !important;
}
.preheader-builder .socials .twitter {
background-position: -54px -1937px !important;
}
.preheader-builder .socials .skype {
background-position: -88px -1937px !important;
}
.preheader-builder .socials .dribbble {
background-position: -116px -1937px !important;
}
.preheader-builder .socials .youtube {
background-position: -144px -1937px !important;
}
.preheader-builder .socials .linkedin {
background-position: -206px -1937px !important;
}
.preheader-builder .socials .google-plus {
background-position: -270px -1937px !important;
}
.preheader-builder .socials .pinterest {
background-position: -239px -1937px !important;
}
.preheader-builder .socials .tumblr {
background-position: -174px -1937px !important;
}
.preheader-builder .socials .instagram {
background-position: -306px -1936px !important;
}
/*----------------</PREHEADER ICONS>----------------*/
/*----------------<HEADER IMAGE>----------------*/
.header-image {
height: 99px;
background-position: center;
}
.header-image.header-image-path-only {
height: 85px;
}
.header-image.header-image-no-titlebar {
height: 40px;
}
.image1 .header-image{
background-image: url(../images/image1.jpg);
}
.image2 .header-image{
background-image: url(../images/image2.jpg);
}
.image3 .header-image{
background-image: url(../images/image3.jpg);
}
.image4 .header-image{
background-image: url(../images/image4.jpg);
}
.image5 .header-image{
background-image: url(../images/image5.jpg);
}
.image6 .header-image{
background-image: url(../images/image6.jpg);
}
/*----------------</HEADER IMAGE>----------------*/
/*----------------<HEADER STYLE7>----------------*/
body.headerstyle7.fixed-header .page-header .menu-bg{
opacity:.8;
transition: opacity 0.3s;
-webkit-transition: opacity 0.3s;
-moz-transition: opacity 0.3s;
}
body.headerstyle7.fixed-header .page-header .menu-bg:hover{
opacity:1;
}
body.headerstyle7 .page-header .menu>li>a:after{
content:''!important;
display:inline-block!important;
width:15px!important;
height:15px!important;
background:url(../img/header7-menu.png) no-repeat!important;
background-position:left top;
margin-left:6px;
top:3px;
position:relative!important;
transition: background 0.2s;
-webkit-transition: background 0.2s;
-moz-transition: background 0.2s;
}
body.headerstyle7 .page-header .menu>li:hover>a:after{
background-position:left bottom!important;
}
/*----------------</HEADER STYLE7>----------------*/
/*----------------<PLACEHOLDER>----------------*/
.placeholder {
height: 450px;
background-position: center;
}
.placeholder{
background-image: url(../images/placeholder.jpg);
}
/*----------------</PLACEHOLDER>----------------*/
/*----------------<TWO HEADERS>----------------*/
.two-headers {
position: relative;
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
min-height: 89px;
}
.two-headers h2,
.two-headers h3 {
color: #e7ebee;
}
.two-headers h2 {
font-size: 28px;
font-weight: 300;
margin-top: 10px;
text-transform: none;
margin-bottom: 0;
}
.two-headers h3 {
font-size: 18px;
font-weight: 400;
text-transform: none;
}
.no-csstransitions .two-headers a:before {
width: 11px;
left: 5px;
}
/*----------------</TWO HEADERS>----------------*/
/*----------------<THREE PLATES>----------------*/
.three-plates {
background: #a7acaf !important;
overflow: hidden;
}
.three-plates .plate {
position: relative;
float: left;
width: 33.333333%;
z-index: 10;
}
.three-plates .plate a{
display: block;
position: relative;
padding: 25px 0 20px;
}
.three-plates .plate:hover {
background: transparent;
}
.three-plates .plate .alpha,
.three-plates .plate .omega {
display: block;
position: absolute;
height: 100%;
width: 300%;
background: #a7acaf;
top: 0;
}
.plate:hover, .plate:hover .alpha, .plate:hover .omega {
box-shadow: inset 0px -2px 0px 0px #3799d8;
}
.three-plates .plate:hover .alpha,
.three-plates .plate:hover .omega {
background: transparent;
}
.three-plates .plate .alpha {
right: 100%;
}
.three-plates .plate .omega {
left: 100%;
}
.three-plates .plate .separator {
position: absolute;
top:0;
left: 0;
height:100%;
width: 1px;
background: #717476;
border-right: solid 1px #babec1;
}
.three-plates .plate .separator div{
position: absolute;
top: 50%;
left: 0;
height:15px;
width: 8px;
margin-top:-7px;
background-image: url(../img/sprite.png);
background-position: 0 0;
}
.three-plates .plate:first-child .separator{
display: none;
}
.three-plates .plate h2,
.three-plates .plate h3 {
color: #53575b;
text-shadow: 1px 1px 1px rgba(255,255,255,0.3);
text-align: center;
}
.three-plates .plate:hover h2,
.three-plates .plate:hover h3 {
color: #f3f3f3;
text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
}
.three-plates .plate h2 {
font-size: 24px;
font-weight: 300;
text-transform: none;
margin-bottom: 0;
}
.three-plates .plate h3 {
font-size: 12px;
font-weight: 400;
text-transform: uppercase;
margin-bottom: 0;
}
.three-plates-img-1,
.three-plates-img-2,
.three-plates-img-3,
.three-plates-idea,
.three-plates-list,
.three-plates-mental,
.three-plates-start,
.three-plates-strategy,
.three-plates-target,
.three-plates-time,
.three-plates-upload {
position: relative;
display: block;
width: 64px;
height: 65px;
margin: 0px auto 15px;
}
.three-plates-img-1 span,
.three-plates-img-2 span,
.three-plates-img-3 span,
.three-plates-idea span,
.three-plates-list span,
.three-plates-mental span,
.three-plates-start span,
.three-plates-strategy span,
.three-plates-target span,
.three-plates-time span,
.three-plates-upload span {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-image: url(../img/sprite.png);
}
.three-plates-img-1 span+span,
.three-plates-img-2 span+span,
.three-plates-img-3 span+span,
.three-plates-idea span+span,
.three-plates-list span+span,
.three-plates-mental span+span,
.three-plates-start span+span,
.three-plates-strategy span+span,
.three-plates-target span+span,
.three-plates-time span+span,
.three-plates-upload span+span {
opacity: 0;
filter: alpha(opacity=0);
}
.three-plates-upload span,
.three-plates-upload span+span {
background-position: center center;
background-repeat: no-repeat;
}
.three-plates .plate:hover .three-plates-img-1 span:first-child,
.three-plates .plate:hover .three-plates-img-2 span:first-child,
.three-plates .plate:hover .three-plates-img-3 span:first-child,
.three-plates .plate:hover .three-plates-idea span:first-child,
.three-plates .plate:hover .three-plates-list span:first-child,
.three-plates .plate:hover .three-plates-mental span:first-child,
.three-plates .plate:hover .three-plates-start span:first-child,
.three-plates .plate:hover .three-plates-strategy span:first-child,
.three-plates .plate:hover .three-plates-target span:first-child,
.three-plates .plate:hover .three-plates-time span:first-child,
.three-plates .plate:hover .three-plates-upload span:first-child {
opacity: 0;
filter: alpha(opacity=0);
}
.three-plates .plate:hover .three-plates-img-1 span+span,
.three-plates .plate:hover .three-plates-img-2 span+span,
.three-plates .plate:hover .three-plates-img-3 span+span,
.three-plates .plate:hover .three-plates-idea span+span,
.three-plates .plate:hover .three-plates-list span+span,
.three-plates .plate:hover .three-plates-mental span+span,
.three-plates .plate:hover .three-plates-start span+span,
.three-plates .plate:hover .three-plates-strategy span+span,
.three-plates .plate:hover .three-plates-target span+span,
.three-plates .plate:hover .three-plates-time span+span,
.three-plates .plate:hover .three-plates-upload span+span {
opacity: 1;
filter: alpha(opacity=100);
}
.three-plates-img-1 span:first-child {
background-position: -34px 0;
}
.three-plates-img-1 span+span {
background-position: -34px -65px;
}
.three-plates-img-2 span:first-child {
background-position: -112px 0;
}
.three-plates-img-2 span+span {
background-position: -112px -65px;
}
.three-plates-img-3 span:first-child {
background-position: -184px 0;
}
.three-plates-img-3 span+span {
background-position: -184px -65px;
}
.three-plates-idea span:first-child {
background-position: 0 -491px;
}
.three-plates-idea span+span {
background-position: 0 -565px;
}
.three-plates-list span:first-child {
background-position: -67px -491px;
}
.three-plates-list span+span {
background-position: -67px -565px;
}
.three-plates-mental span:first-child {
background-position: -135px -491px;
}
.three-plates-mental span+span {
background-position: -135px -565px;
}
.three-plates-start span:first-child {
background-position: -198px -491px;
}
.three-plates-start span+span {
background-position: -198px -565px;
}
.three-plates-strategy span:first-child {
background-position: -266px -491px;
}
.three-plates-strategy span+span {
background-position: -266px -565px;
}
.three-plates-target span:first-child {
background-position: -329px -491px;
}
.three-plates-target span+span {
background-position: -329px -565px;
}
.three-plates-time span:first-child {
background-position: -393px -491px;
}
.three-plates-time span+span {
background-position: -393px -565px;
}
/*----------------</THREE PLATES>----------------*/
/*----------------<ADVANTAGES>----------------*/
.advantages section {
position: relative;
margin-bottom: 40px;
}
.advantages a {
display: inline-block;
margin: 5px 0 0 88px;
}
.advantages:after {
clear: both;
display: block;
content: '';
}
.advantages h2 {
text-transform: uppercase;
font-size: 12px;
font-weight: 800;
color: #45484a;
margin-bottom: 0;
}
.advantages a:hover h2 {
color: #3170ac;
}
.advantages .icon-content {
display: block;
margin: 5px 0 0 88px;
font-size: 12px;
font-weight: 400;
font-family: 'Open Sans', sans-serif;
}
.advantages ul li{
padding: 3px 0;
}
.advantages a .advantages-img,
.teaser a .advantages-img {
position: absolute;
top: 0;
left: 0;
display: block;
width: 69px;
height: 71px;
}
.advantages-img img {
text-align: center;
width: 40px;
position: absolute;
left: 14px;
top: 15px;
}
.advantages a .advantages-img span,
.teaser a .advantages-img span {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-image: url(../img/sprite.png);
}
.advantages a .advantages-img span:first-child+span,
.teaser a .advantages-img span:first-child+span {
opacity: 0;
filter: alpha(opacity=0);
}
.advantages a:hover .advantages-img span:first-child+span,
.teaser a:hover .advantages-img span:first-child+span {
opacity: 1;
filter: alpha(opacity=100);
}
.advantages a .advantages-img span:first-child,
.teaser a .advantages-img span:first-child {
background-position: 0px -130px;
}
.advantages a .advantages-img.font-icon span {
background: transparent;
}
.advantages a .advantages-img.font-icon i {
font-size:65px;
}
.advantages a:hover .advantages-img.font-icon span:first-child+span {
opacity:0;
}
.advantages a .advantages-img span:first-child+span, .teaser a .advantages-img span:first-child+span {
background: #407eb5;
border-radius: 50%;
top: 5px;
left: 5px;
width: 59px;
height: 59px;
box-shadow: inset 0 50px 30px -30px rgba(0,0,0,0.2);
}
.advantages a .advantages-img.img-1 span+span+span,
.teaser a .advantages-img.img-1 span+span+span {
background-position: -69px -130px;
}
.advantages a .advantages-img.img-2 span+span+span,
.teaser a .advantages-img.img-2 span+span+span {
background-position: -138px -130px;
}
.advantages a .advantages-img.img-3 span+span+span,
.teaser a .advantages-img.img-3 span+span+span {
background-position: -207px -130px;
}
.advantages a .advantages-img.champion span+span+span,
.teaser a .advantages-img.champion span+span+span {
background-position: 7px -636px;
}
.advantages a .advantages-img.function span+span+span,
.teaser a .advantages-img.function span+span+span {
background-position: -54px -638px;
}
.advantages a .advantages-img.leaf span+span+span,
.teaser a .advantages-img.leaf span+span+span {
background-position: -108px -636px;
}
.advantages a .advantages-img.light span+span+span,
.teaser a .advantages-img.light span+span+span {
background-position: -162px -638px;
}
.advantages a .advantages-img.settings span+span+span,
.teaser a .advantages-img.settings span+span+span {
background-position: -220px -637px;
}
.advantages a .advantages-img.show span+span+span,
.teaser a .advantages-img.show span+span+span {
background-position: -282px -637px;
}
.advantages a .advantages-img.time span+span+span,
.teaser a .advantages-img.time span+span+span {
background-position: -338px -638px;
}
.advantages .advantages-img-upload span+span+span {
background-position: center center;
background-repeat: no-repeat;
}
/*----------------</ADVANTAGES>----------------*/
/*----------------<WHY CHOOSE US>----------------*/
.why-choose-us {
overflow: hidden;
}
.why-choose-us>.separator {
position: relative;
height:3px;
width: 100%;
background: #dadada;
border-bottom: solid 1px #fff;
margin-bottom: 30px;
}
.why-choose-us .separator div{
position: absolute;
top: 0;
left: 50%;
width: 19px;
height:10px;
margin-left:-9px;
background-image: url(../img/sprite.png);
background-position: 0 -15px;
}
.why-choose-us a {
display: inline-block;
margin-bottom: 10px;
width: 100%;
}
article.why-choose-us h2 {
display: block;
float: left;
height: 41px;
text-transform: uppercase;
font-size: 12px;
font-weight: 800;
line-height: 21px;
width: 100%;
padding-left: 50px;
color: #45484a;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
padding-top: 10px;
margin-bottom: 0;
}
.why-choose-us a:hover h2 {
color: #3170ac;
}
.why-choose-us .why-choose-us-img {
position: relative;
display: block;
float: left;
width: 41px;
height: 41px;
margin-right: -45px;
margin-left: 1px;
border-radius: 50%;
overflow: hidden;
behavior: url(../../circles/css/PIE.htc);
}
.why-choose-us .why-choose-us-img span {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-image: url(../img/sprite.png);
border-radius: 50%;
}
.why-choose-us .why-choose-us-img span:first-child+span {
opacity: 0;
filter: alpha(opacity=0);
}
.why-choose-us a:hover .why-choose-us-img span:first-child+span {
opacity: 1;
filter: alpha(opacity=100);
}
.why-choose-us .why-choose-us-img span:first-child {
background: #4c4f51;
border-radius: 50%;
-webkit-box-shadow: inset 0 0 6px 0 rgba(0,0,0,0.5);
box-shadow: inset 0 0 6px 0 rgba(0,0,0,0.5);
}
.why-choose-us .why-choose-us-img span:first-child+span {
background: #3789bd;
border-radius: 50%;
-webkit-box-shadow: inset 0 0 7px rgba(0,0,0,0.5);
box-shadow: inset 0 0 7px rgba(0,0,0,0.5);
}
.why-choose-us .why-choose-us-img.img-1 span+span+span {
background-position: -111px -201px;
}
.why-choose-us .why-choose-us-img.img-2 span+span+span {
background-position: -152px -201px;
}
.why-choose-us .why-choose-us-img.img-3 span+span+span {
background-position: -193px -201px;
}
.why-choose-us .why-choose-us-img.img-4 span+span+span {
background-position: -234px -201px;
}
.why-choose-us .why-choose-us-img.img-5 span+span+span {
background-position: -112px -242px;
}
.why-choose-us .why-choose-us-img.img-6 span+span+span {
background-position: -152px -242px;
}
.why-choose-us .why-choose-us-img.img-7 span+span+span {
background-position: -193px -242px;
}
.why-choose-us .why-choose-us-img.img-8 span+span+span {
background-position: -234px -242px;
}
.why-choose-us .why-choose-us-img.footprint span+span+span {
background-position: -338px -202px;
}
.why-choose-us .why-choose-us-img.setting span+span+span {
background-position: -338px -241px;
}
/*----------------</WHY CHOOSE US>----------------*/
/*----------------<POST>----------------*/
.post {
position: relative;
display: block;
padding: 30px 0 25px 10px;
margin-left: 80px;
}
.post:first-child {
padding-top: 0px;
}
.recent-posts .post>header h2 {
font-size: 18px;
font-weight: 300;
color: #3170ac;
margin-bottom: 10px;
text-transform: none;
line-height: 1;
}
.post .separator {
position: absolute;
top:0;
right:0;
height:3px;
width: 100%;
background: #dadada;
border-bottom: solid 1px #fff;
margin-bottom: 30px;
}
.container > .separator {
position: relative;
top: 0;
right: 0;
height: 3px;
background: #dadada;
border-bottom: solid 1px #fff;
margin-bottom: 30px;
}
.recent-posts .separator {
width: 100%;
border-bottom: 1px solid #ffffff;
border-top: 1px solid #dadada;
height: 0;
margin-bottom: 0px;
}
.post:first-child .separator {
display: none;
}
.post-helper-absolute {
position: absolute;
top: 30px;
left: -80px;
}
.post:first-child .post-helper-absolute {
top: 0px;
}
.post-comments {
position: absolute;
top: 48px;
left: 42px;
display: block;
width: 26px;
height: 26px;
-webkit-box-shadow: 0 0 1px 0 rgba(0,0,0,0.7);
box-shadow: 0 0 1px 0 rgba(0,0,0,0.7);
background-position: 0 -100px;
border-radius: 50%;
behavior: url(../../circles/css/PIE.htc);
}
.post-comments span {
float: right;
font-size: 12px;
font-weight: 300;
color: #f3f3f3;
line-height: 22px;
padding: 0 4px 0 4px;
text-align: center;
background: #2f6daa;
border-radius: 50%;
margin: 0px;
width: 14px;
-webkit-box-shadow: inset 0 0px 4px 0px rgba(0,0,0,0.4);
box-shadow: inset 0 0px 4px 0px rgba(0,0,0,0.4);
border: 2px solid #fff;
behavior: url(../../circles/css/PIE.htc);
}
.inline.post-comments span {
background: transparent;
box-shadow: none;
border: 0;
width: auto;
border-radius: 0;
font-size: 11px;
padding: 0;
line-height: 16px;
display: inline-block;
float: none;
}
.inline.post-comments span:after {
display: none;
}
.post-comments span:after {
content: '';
background: url(../img/sprite.png) 0px -103px;
position: absolute;
top: 3px;
left: -2px;
width: 5px;
height: 5px;
}
.post-comments.inline {
background-image: url(../img/comments.png);
background-position: 0;
background-repeat: no-repeat;
display: inline-block;
position: relative;
left: auto;
top: auto;
width: auto;
padding-left: 20px;
height: 16px;
-webkit-box-shadow: none;
box-shadow: none;
border-radius: 0;
font-size: 11px;
}
.post-author {
display: block;
width: 71px;
text-align: center;
margin-top: 8px;
font-size: 11px;
}
.post-author a{
color: #3170ac;
}
.post-author.inline {
display: inline;
margin-right: 10px;
padding-left: 25px;
background-image: url(../img/author.png);
background-position: left 0px;
background-repeat: no-repeat;
padding-bottom: 1px;
}
.post-type {
position: relative;
display: block;
width: 41px;
height: 41px;
background-image: url(../img/sprite.png);
background-position: -70px -201px;
margin: 13px auto 0;
}
.post-type span{
position: absolute;
left: 0;
top: 0;
display: block;
width: 41px;
height: 41px;
background-image: url(../img/sprite.png);
}
.post.format-gallery .post-type span{
background-position: -193px -283px;
}
.post.format-image .post-type span {
background-position: -234px -283px;
}
.post.format-video .post-type span{
background-position: -193px -324px;
}
.post .post-type span{ /* default post icon */
background-position: -234px -324px;
}
.post-date,
.post-category {
display: inline-block;
height: 16px;
padding: 1px 0;
font-size: 11px;
margin-right: 10px;
padding-left: 25px;
}
.post-date {
background-image: url(../img/date.png);
background-position: left center;
background-repeat: no-repeat;
}
.post-category {
background-image: url(../img/category.png);
background-position: left center;
background-repeat: no-repeat;
}
.post-category span,
.post-category a,
.post-comments.inline a {
color: #3170ac;
line-height: 16px;
}
.post-body {
display: block;
margin-top: 15px;
}
.post-body-text p {
margin-top: 20px;
}
.recent-posts .post-body-text p {
margin-top: 10px;
margin-bottom: 0;
}
.read-more {
color: #3170ac;
text-transform: uppercase;
font-size: 10px;
background: url(../img/read-more.png) no-repeat right center;
padding-right: 18px;
margin-left: 3px;
}
.post-month-aside {
background: #45484a;
text-align: center;
padding-bottom: 2px;
}
.post-month-aside span {
color: #f3f3f3;
font-size: 11px;
}
.post-day-aside {
text-align: center;
background: #eaeaea;
width: 70px;
height: 50px;
line-height: 50px;
}
.post-day-aside span {
color: #45484a;
font-size: 30px;
text-align: center;
}
.post.left .item-con-t1 {
width: 46.5%;
float: left;
margin-right: 3%;
}
.post.right .item-con-t1 {
width: 46.5%;
float: right;
margin-left: 5%;
}
.post.center .item-con-t1 {
width: 100%;
}
.post-blockquote {
float: left;
width: 50%;
font-size: 14px;
font-style: italic;
margin-right: 5%;
margin-bottom: 5px;
padding: 10px 5%;
background: url(../img/marble-normal.gif) repeat #ebebeb;
color: #3b74aa;
}
.post-single-pagination {
margin-left: 80px;
}
.post-single-pagination a[rel=prev],
.post-single-pagination a[rel=next] {
line-height: 36px;
text-transform: uppercase;
color: #f3f3f3;
font-size: 11px;
}
.post-single-pagination a[rel=prev] {
float: left;
padding-left: 15px;
background: url(../img/prev.png) left center no-repeat;
}
.post-single-pagination a[rel=next] {
float: right;
padding-right: 15px;
background: url(../img/next.png) right center no-repeat;
}
.post-pagination {
margin-left: 80px;
}
.post-pagination li{
position: relative;
display: block;
float: left;
width: 16px;
height: 36px;
text-align: center;
margin-right: 3px;
}
.post-pagination li:hover span,
.post-pagination li.active span {
opacity: 1;
filter: alpha(opacity=1);
}
.post-pagination li:hover a,
.post-pagination li.active a {
color: #3170ac;
}
.post-pagination li span{
position: absolute;
top: 50%;
display: block;
width: 16px;
height: 16px;
margin-top:-8px;
opacity: 0;
filter: alpha(opacity=0);
background-image: url(../img/sprite.png);
background-position: -279px -96px;
}
.post-pagination li a{
position: relative;
display: block;
line-height: 36px;
height: 36px;
color: #f3f3f3;
font-size: 11px;
}
.post-pagination .prev-page {
background: url(../img/prev.png) left center no-repeat;
}
.post-pagination .next-page {
background: url(../img/next.png) right center no-repeat;
}
.videoWrapper {
position: relative;
padding-bottom: 0;
padding-top: 0px;
height: auto;
display: block;
width: 100%;
float: left;
}
.videoWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.flexslider-posts-slider .videoWrapper {
margin-bottom: 20px;
}
.videoWrapper img {
opacity: 0;
}
.post-img.post-video {
height: auto;
}
/*----------------</POST>----------------*/
/*----------------<BLOG>----------------*/
.post h2 {
margin-bottom: 15px;
text-transform: none;
color: #3b74aa;
font-weight: 100;
font-size: 25px;
}
.template-blog-3 {
padding: 40px 0 0;
}
.post.format-gallery .flexslider {
margin-bottom: 0;
}
/*----------------</BLOG>----------------*/
/*----------------<ABOUT THE AUTHOR>----------------*/
.about {
margin: 0 0 10px 80px;
}
.about>h4 {
text-align: center;
font-size: 24px;
font-weight: 300;
text-transform: uppercase;
margin-bottom: 10px;
}
.about .separator {
position: relative;
height:3px;
width: 100%;
background: #dadada;
border-bottom: solid 1px #fff;
margin-bottom: 10px;
}
.about .separator div{
position: absolute;
top: 0;
left: 50%;
width: 19px;
height:10px;
margin-left:-9px;
background-image: url(../img/sprite.png);
background-position: 0 -15px;
}
.about-content {
position: relative;
padding: 25px 10px;
}
.about-helper-absolute {
position: absolute;
top: 25px;
left: -80px;
}
.about-body {
display: block;
}
/*----------------</ABOUT THE AUTHOR>----------------*/
/*----------------<WHAT CLIENTS SAY ----------*/
.widget_testimonials_2 .quote {
background: url(../img/quotes.png) no-repeat right -10px #e6e6e6;
padding: 20px 25px;
position: relative;
border-radius: 5px;
-webkit-backface-visibility: hidden;
}
.widget_testimonials_2 article {
display: block;
margin: 1px 2px 30px;
}
.widget_testimonials_2 .container-t1 {
-webkit-box-shadow: 0 0 2px rgba(0,0,0,0.4);
box-shadow: 0 0 2px rgba(0,0,0,0.4);
border-radius: 6px;
}
.widget_testimonials_2 .helper {
position: absolute;
background: url(../img/testimonial-helper.png);
bottom: -24px;
right: 20px;
width: 30px;
height: 26px;
}
.widget_testimonials_2 header {
margin: 19px 0 0 10px;
padding-left: 30px;
background: url(../img/author.png) no-repeat 4px 2px;
}
.widget_testimonials_2 h3 {
text-transform: uppercase;
font-size: 11px;
line-height: 1;
color: #45484a;
}
.widget_testimonials_2 header span {
text-transform: uppercase;
font-size: 10px;
width: 100%;
float: left;
}
.widget_testimonials_2 span a{
color: #45484a;
}
.widget_testimonials_2 .slides li {
padding-right: 0px;
}
.widget_testimonials_2 header .author {
font-weight: bold;
text-transform: uppercase;
color: #45484a;
}
.widget_testimonials-container .flex-direction-nav a,
.widget_our_clients-container .flex-direction-nav a,
.widget_testimonials_2 .flex-direction-nav a,
.recent_projects .flex-direction-nav a {
float: left;
width: 10px;
height: 14px;
font-size: 0;
background-image: url(../img/sprite.png);
}
.flexslider-testimonials.widget_testimonials_2 {
width: 100%;
overflow: visible;
position: relative;
}
.flexslider-testimonials.widget_testimonials_2 .flexslider{
width: 100%;
}
.widget_testimonials-container .flex-direction-nav .flex-next,
.widget_our_clients-container .flex-direction-nav .flex-next,
.widget_testimonials_2 .flex-direction-nav .flex-next,
.recent_projects .flex-direction-nav .flex-next {
background-position: -19px -25px;
}
.widget_testimonials-container .flex-prev,
.widget_our_clients-container .flex-prev,
.widget_testimonials_2 .flex-prev,
.recent_projects .flex-prev {
background-position: -3px -25px;
}
.widget_testimonials-container .flex-direction-nav,
.widget_our_clients-container .flex-direction-nav,
.widget_testimonials_2 .flex-direction-nav,
.recent_projects .flex-direction-nav {
display: block;
position: absolute;
right: 0;
top: 0;
}
.widget_our_clients-container .flex-direction-nav {
top: 40px;
}
.flex-direction-nav li {
float: left;
margin-left: 10px;
list-style: none;
}
.widget_testimonials_2 .flex-direction-nav {
top: -30px;
}
/*----------------</WHAT CLIENTS SAY ----------*/
/*----------------<Testimonials>-------------*/
.widget_testimonials-container .flex-direction-nav a {
float: left;
width: 10px;
height: 14px;
font-size: 0;
background-image: url(../img/sprite.png);
}
.lighter-grey .widget_testimonials-container .flex-direction-nav .flex-next{
background-position: -19px -70px;
}
.lighter-grey .widget_testimonials-container .flex-prev {
background-position: -3px -70px;
}
.widget_testimonials-container .flex-direction-nav {
display: block;
position: absolute;
right: 0;
top: -10px;
}
/*-----------------<Testiomonials>------------*/
/*----------------<RECENT PROJECTS>----------------*/
.recent_projects .container-t1 {
-webkit-box-shadow: 0 0 1px rgba(0,0,0,0.8);
box-shadow: 0 0 1px rgba(0,0,0,0.8);
position: relative;
float: left;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.recent_projects {
margin-bottom: 40px;
padding: 0 1px;
}
.recent_projects .theme-one-third:nth-child(3n+3){
margin-right: 0;
}
.recent_projects .image-links {
top: 50%;
}
.recent_projects img {
width: 100%;
float: left;
}
.recent_projects header {
background: #e7e7e7;
padding-bottom: 19px;
display: block;
float: left;
width: 100%;
}
.recent_projects h2 {
text-align: center;
font-size: 17px;
font-weight: normal;
padding-top: 15px;
text-transform: none;
margin-bottom: 0;
}
.recent_projects h3 {
font-size: 11px;
text-align: center;
font-weight: normal;
text-transform: uppercase;
margin-top: 3px;
margin-bottom: 0;
}
.recent_projects .facilities {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.recent_projects .image-links {
left: 50%;
margin-left: -55px;
margin-top: -25px;
}
/*----------------</RECENT PROJECTS>----------------*/
/*----------------<TEASER>----------------*/
.teaser {
float: left;
border-radius: 50%;
position: relative;
width: 100%;
margin-bottom: 30px;
behavior: url(../../circles/css/PIE.htc);
padding-left: 1px;
padding-right: 1px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.teaser.style1 {
overflow: visible;
float: left;
}
.teaser-hover {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
opacity: 0;
-webkit-transition: opacity 0.3s linear;
-moz-transition: opacity 0.3s linear;
-o-transition: opacity 0.3s linear;
-ms-transition: opacity 0.3s linear;
transition: opacity 0.3s linear;
}
.teaser-hover {
}
.teaser:hover .teaser-hover {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.ie8 .teaser.style2 header {
background: url(../img/bg-black-045.png);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.ie8 .teaser.style2:hover header {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
.teaser > img, .teaser div > img {
float: left;
width: 100%;
border-radius: 50%;
height: auto;
}
.teaser.style1 header {
width: 100%;
text-align: center;
position: absolute;
top: 0;
left: 0;
padding: 43% 0;
height: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-backface-visibility: hidden;
border-radius: 50%;
}
.ie8 .blue-grad {
background-color: rgb(72, 172, 219);
}
.blue-grad {
border-radius: 200px;
background-color: rgba(72, 172, 219, 0.91);
-webkit-box-shadow: inset 0 0 200px 0px rgba(0,0,0,0.3);
box-shadow: inset 0 0 200px 0px rgba(0,0,0,0.3);
}
.teaser.style2 header {
background: rgba(69, 72, 74, 0.78);
position: absolute;
bottom: 0;
width: 100%;
padding-top: 15%;
height: 35%;
border-radius: 0 0 700px 700px;
text-align: center;
-webkit-backface-visibility: hidden;
}
.teaser h2 {
color: #fff;
font-size: 19px;
text-transform: uppercase;
font-weight: normal;
margin-bottom:0;
}
.teaser h3 {
color: #fff;
font-size: 14px;
font-weight: normal;
padding: 0 10%;
}
.teaser.style2 header div {
position: absolute;
background: rgba(255, 255, 255, 0.13);
width: 50px;
height: 50px;
border-radius: 50px;
text-align: center;
line-height: 40px;
font-size: 25px;
top: -25px;
left: 50%;
margin-left: -25px;
-webkit-box-shadow: 0 0 1px #333;
box-shadow: 0 0 1px #333;
padding: 4px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.teaser.style2 header div span {
background: #fff;
width: 100%;
height: 100%;
float: left;
border-radius: 40px;
}
.teaser.style2 header span:before {
font-size: 14px;
font-weight: 100;
line-height: 44px;
}
.teaser.small {
width: 100%;
}
.teaser.style3 h2 {
font-size: 14px;
font-weight: bold;
}
.teaser.style3 header {
height: 75%;
width: 98%;
position: absolute;
text-align: center;
padding-top: 38%;
margin-left: 2%;
border-radius: 50%;
-webkit-backface-visibility: hidden;
}
.teaser-bg {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
-webkit-backface-visibility: hidden;
}
.teaser .bg-black-045 {
border-radius: 50%;
background-color: #45484a;
}
.teaser.style4 header {
float: left;
margin-top: 20px;
width: 100%;
}
.teaser.style4 h2 {
font-size: 14px;
font-weight: bold;
color: #45484a;
text-align: center;
}
.teaser .teaser-icon {
position: absolute;
top: 50%;
left: 50%;
display: block;
z-index: 1;
width: 69px;
height: 69px;
margin: 0;
margin: -34px 0 0 -34px;
}
.teaser > div {
float: left;
width: 100%;
border-radius: 50%;
border: 4px solid #fff;
-webkit-box-shadow: 0 0 1px 0 rgba(0,0,0,0.8);
box-shadow: 0 0 1px 0 rgba(0,0,0,0.8);
position: relative;
overflow: hidden;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.teaser.style4 .advantages-img img {
width: 50px;
height: 50px;
margin: 0;
position: absolute;
top: 10px;
left: 10px;
}
/*----------------</TEASER>----------------*/
/*----------------<CALL TO ACTIONS>----------------*/
.purchase-plate {
background: url(../img/marble-normal.gif) repeat #ebebeb;
border-left: 2px solid #427bb1;
position: relative;
margin-top: 30px;
padding: 30px 210px 30px 0;
}
.purchase-plate_header {
color: #3170ac;
font-size: 24px;
font-weight: 300;
padding-left: 60px;
}
.purchase-plate_text {
font-size: 19px;
padding-left: 60px;
display: block;
line-height: 1;
}
.purchase-plate_button {
position: absolute;
top: 50%;
width: 160px;
right: 30px;
height: 48px;
border-radius: 6px;
border-bottom: 4px solid rgba(255, 253, 253, 0.25);
background: #56595b;
color: #f3f3f3;
text-align: center;
line-height: 52px;
text-transform: uppercase;
text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
font-weight: bold;
font-size: 12px;
margin-top: -24px;
}
/*----------------</CALL TO ACTIONS>----------------*/
/*----------------<POST-SLIDER>----------------*/
.post-slider footer,
.post-slider header,
.post-slider .post-body-text {
position: relative;
margin-left: 110px;
}
.post-slider header {
margin-top: 15px;
margin-bottom: 10px;
font-size: 18px;
font-weight: 300;
}
.post-slider .post-body-text p {
margin-top: 0;
}
.post.post-slider {
border: 1px solid #ccc;
margin-left: 0;
padding: 4px;
border-radius: 3px;
padding-bottom: 30px;
}
.post-slider img {
width: 100%;
height: auto;
margin-bottom: 20px;
}
.post-slider footer {
margin-bottom: 10px;
}
.post.post-slider .post-helper-absolute {
top: -27px;
left: -86px;
display: block;
}
.flexslider {
/*position: relative;*/
margin-top: 30px;
}
.flex-viewport {
z-index: 1;
}
.flex-control-nav.flex-control-paging {
position: absolute;
top: 8px;
right: 22px;
}
.flex-control-nav li {
float: left;
}
.flex-control-nav a {
background: #f3f3f3;
width: 11px;
height: 11px;
border-radius: 10px;
font-size: 0;
float: left;
margin-left: 10px;
cursor: pointer;
}
.flex-direction-nav {
display: none;
}
.flex-control-nav a.flex-active {
background: #2774ae;
border: 2px solid #fff;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
/*----------------<POST-SLIDER>----------------*/
/*----------------<POST-SLIDER>----------------*/
.widget_more_info {
position: relative;
}
.widget_more_info h2 {
color: #Fff;
font-weight: 300;
font-size: 26px;
padding-right: 180px;
margin: 5px 0;
padding-left: 10px;
}
.widget_more_info span {
position: absolute;
right: 30px;
width: 60px;
height: 35px;
background: url(../img/sprite.png) -350px 0px;
top: 50%;
margin-top: -46px;
color: #474a4c;
padding: 30px 15px;
text-align: center;
text-shadow: 1px 1px #f1f1f1;
}
/*----------------<POST-SLIDER>----------------*/
/*-------------------- IMAGES SLIDER -----------------*/
.images-slider .flex-direction-nav li {
background-position: -278px -169px;
background-image: url(../img/sprite.png);
width: 51px;
height: 51px;
display: inline-block;
margin-left: -4px;
}
.images-slider .flex-direction-nav {
display: block;
position: absolute;
top: 50%;
left: 50%;
margin-left: -47px;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
margin-top: -25px;
z-index: 10;
}
.images-slider:hover .flex-direction-nav {
opacity: 1;
}
.images-slider.flexslider {
position: relative;
margin: 0;
}
.flexslider .slides li {
float: left;
}
.images-slider .slides li img {
float: left;
width: 100%;
height: auto;
}
.images-slider .flex-direction-nav li a {
font-size: 0;
border-radius: 50%;
margin: 5px;
width: 41px;
height: 40px;
-webkit-box-shadow: inset 0 30px 30px -30px rgba(0,0,0,0.4);
box-shadow: inset 0 30px 30px -30px rgba(0,0,0,0.4);
display: block;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.images-slider .flex-direction-nav li a:hover {
background-color: #407eb5;
}
.images-slider .flex-prev {
background-position: -284px -276px;
background-image: url(../img/sprite.png);
}
.images-slider .flex-next {
background-position: -282px -327px;
background-image: url(../img/sprite.png);
}
.flexslider-posts-slider.images-slider .flex-direction-nav {
top: 40%;
}
/*-------------------- IMAGES SLIDER -----------------*/
/*----------------<COMMENTS>----------------*/
.comments {
margin: 0 0 10px 80px;
}
.comments-header {
text-align: center;
}
.comments-header>h1,
.number-of-comments {
display: inline-block;
font-size: 24px;
font-weight: 300;
text-transform: uppercase;
margin-bottom: 10px;
}
.number-of-comments {
margin-left: 4px;
}
.number-of-comments span{
color: #3b74aa;
}
.comments .separator {
position: relative;
height:3px;
width: 100%;
background: #dadada;
border-bottom: solid 1px #fff;
}
.comments .separator div{
position: absolute;
top: 0;
left: 50%;
width: 19px;
height:10px;
margin-left:-9px;
background-image: url(../img/sprite.png);
background-position: 0 -15px;
}
.comment {
position: relative;
padding: 25px 10px;
}
.comment-reply {
font-size: 11px;
}
.comment.depth-2, .comment.depth-3 {
padding-left: 50px;
background: url(../img/marble-normal.gif) repeat #ebebeb;
border-bottom: solid 1px #fff;
}
.comment.depth-3 {
margin-left: 40px;
margin-top: 20px;
}
.comment-helper-absolute {
position: absolute;
top: 25px;
left: -80px;
}
.comment-reply {
color: #3b74aa;
}
.comment .post-author {
width: 61px;
}
.comment-body {
display: block;
margin-top: 7px;
}
/*----------------</COMMENTS>----------------*/
/*----------------<LEAVE COMMENT>----------------*/
.leave-comment {
margin: 0 0 120px 80px;
}
.leave-comment>h1 {
text-align: center;
font-size: 24px;
font-weight: 300;
text-transform: uppercase;
margin-bottom: 10px;
}
.leave-comment .separator {
position: relative;
height:3px;
width: 100%;
background: #dadada;
border-bottom: solid 1px #fff;
margin-bottom: 10px;
}
.leave-comment .separator div{
position: absolute;
top: 0;
left: 50%;
width: 19px;
height:10px;
margin-left:-9px;
background-image: url(../img/sprite.png);
background-position: 0 -15px;
}
.leave-comment form {
width: 100%;
}
.leave-comment form .input-field {
display: block;
float: left;
width: 49.166666%;
}
.leave-comment form .input-field.text-area {
width: 100%;
}
.leave-comment form .input-field:nth-child(2n) {
margin-right: 1.666666%;
}
.leave-comment form .input-field div:first-child {
font-size: 12px;
line-height: 28px;
margin-top: 4px;
}
.leave-comment form .input-field div span{
color: #7f7f7f;
}
.leave-comment form .input-field .input-style{
display: block;
width: 100%;
}
.leave-comment form .input-field .input-style input,
.leave-comment form .input-field .input-style textarea {
border-width: 0px;
padding: 0px;
margin: 0px;
width: 100%;
resize: none;
background: transparent;
overflow: hidden;
color: #45484a;
outline: none;
font-size: 12px;
}
.leave-comment form .input-field .input-style textarea {
height: 100px;
}
#reply-title {
text-align: center;
font-size: 24px;
font-weight: 300;
text-transform: uppercase;
margin-bottom: 10px;
}
.form-allowed-tags {
margin: 10px 0;
float: left;
}
.form-allowed-tags {
float: left;
margin: 10px 0;
}
#commentform input[type=submit] {
display: inline-block;
cursor: pointer;
font-size: 10px;
padding: 8px 40px;
margin-top: 10px;
margin-right: 7px;
text-transform: uppercase;
border-width: 1px;
border-color: #f3f3f3;
border-style: solid;
border-radius: 8px;
box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.1);
color: #45484a;
position: relative;
background: #eaebeb;
background: -webkit-gradient(linear, left top, left bottom, from(#d9dbdd), to(#eaebeb));
background: -webkit-linear-gradient(top, #d9dbdd, #eaebeb);
background: -moz-linear-gradient(top, #d9dbdd, #eaebeb);
background: -ms-linear-gradient(top, #d9dbdd, #eaebeb);
background: -o-linear-gradient(top, #d9dbdd, #eaebeb);
}
/*----------------</LEAVE COMMENT>----------------*/
/*----------------<CONTACTS>----------------*/
.contacts h2 {
font-size: 16px;
font-weight: 800;
margin-bottom: 22px;
text-transform: uppercase;
}
div#map-box {
display:block;
height: 400px;
}
#map-box >p {
display: none;
}
.contacts .grid_3 div ul {
margin-top: 20px;
}
.contacts .grid_3 div ul:first-child {
margin-top: 0px;
}
.contacts form {
width: 100%;
}
.contacts form .input-field {
display: block;
float: left;
width: 49.166666%;
}
.contacts form .input-field.text-area {
width: 100%;
}
.contacts form .input-field:first-child {
margin-right: 1.666666%;
}
.contacts form .input-field div:first-child {
font-size: 12px;
line-height: 28px;
margin-top: 4px;
}
.contacts form .input-field div span{
color: #7f7f7f;
}
.contacts form .input-field .input-style{
display: block;
width: 100%;
-webkit-transition: 0.5s;
-moz-transition: 0.5s;
-ms-transition: 0.5s;
transition: 0.5s;
}
.contacts form .input-field.focus .input-style {
background: #dadada;
}
.contacts form .input-field .input-style input,
.contacts form .input-field .input-style textarea {
border-width: 0px;
padding: 0px;
margin: 0px;
width: 100%;
resize: none;
background: transparent;
overflow: hidden;
color: #45484a;
font-size: 12px;
outline: none;
}
.contacts form .input-field .input-style textarea {
height: 100px;
}
#map-box>div {
height: 400px;
position: relative;
width: 100% !important;
margin: 0;
}
.wpgmappity_container, .top-slider .wpgmappity_container {
width: 100% !important;
}
.top-slider .wpgmappity_container {
height: 400px !important;
}
/*----------------</CONTACTS>----------------*/
/*----------------<SEARCH FORM>----------------*/
.widget_search form input,
.widget_product_search form input {
border-width: 0px;
padding: 0px;
margin: 0px;
background: transparent;
overflow: hidden;
color: #45484a;
font-size: 12px;
}
.widget_search form div input[type=text],
.widget_product_search form div input[type=text]{
display: block;
padding-right: 33px;
width: 100%;
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
outline: none;
}
.widget_search form div input+input,
.widget_product_search form div input+input {
position: absolute;
top: 50%;
right: 8px;
display: block;
width: 33px;
height: 15px;
margin-top: -7.5px;
background-image: url(../img/search.png);
background-position: center center;
background-repeat: no-repeat;
font-size: 0;
}
.widget_search h1, .widget_search label,
.widget_product_search h1, .widget_product_search label {
display: none;
}
.widget_search form,
.widget_product_search form {
position: relative;
padding: 8px;
border-radius: 8px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1) inset;
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1) inset;
background: #e6e6e6;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_product_search {
margin-bottom: 30px;
}
.widget_search form.focus,
.widget_product_search form.focus {
background: #dadada;
}
/*----------------</SEARCH FORM>----------------*/
/*----------------<CATEGORIES>----------------*/
.widget_categories li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_categories li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_categories li:hover,
.widget_categories a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_categories li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_categories li.active a, .widget_categories li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</CATEGORIES>----------------*/
/*----------------<PAGES>----------------*/
.widget_pages li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_pages li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_pages li:hover,
.widget_pages a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_pages li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_pages li.active a, .widget_pages li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</PAGES>----------------*/
/*----------------<ARCHIVES>----------------*/
.widget_archive li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_archive li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_archive li:hover,
.widget_archive a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_archive li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_archive li.active a, .widget_archive li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</ARCHIVES>----------------*/
/*----------------<META>----------------*/
.widget_meta li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_meta li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_meta li:hover,
.widget_meta a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_meta li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_meta li.active a, .widget_meta li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</META>----------------*/
/*----------------<RECENT COMMENTS>----------------*/
.widget_recent_comments li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_recent_comments li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_recent_comments li:hover,
.widget_recent_comments a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_recent_comments li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_recent_comments li.active a, .widget_recent_comments li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</RECENT COMMENTS>----------------*/
/*----------------<RECENT POSTS>----------------*/
.widget_recent_entries li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_recent_entries li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_recent_entries li:hover,
.widget_recent_entries a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_recent_entries li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_recent_entries li.active a, .widget_recent_entries li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</RECENT POSTS>----------------*/
/*----------------<WIDGET RSS>----------------*/
.widget_rss li,.left_navigation li {
padding-left: 6px;
list-style: disc inside;
line-height: 28px;
border-top: 1px solid #dadada;
-webkit-box-shadow: 0 1px 0 0 #fff inset;
box-shadow: 0 1px 0 0 #fff inset;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_rss li:first-child,
.left_navigation li:first-child{
border-top: 0px solid #dadada;
box-shadow: 0 0px 0 0 #fff inset;
}
.widget_rss li:hover,
.widget_rss a:hover,
.left_navigation li:hover,
.left_navigation a:hover {
color: #3170ac;
}
.widget_rss li a,.left_navigation li a {
text-decoration: none;
color: #45484a;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_rss li.active a, .widget_rss li.active,
.left_navigation li.active a, .left_navigation li.active {
color: #3b74a9;
}
/*----------------</WIDGET RSS>----------------*/
/*----------------<GALLERY>----------------*/
.single-gallery {
padding: 30px 0;
}
.single-gallery-container {
padding-right: 2.4%;
}
.portfolio-gallery .flexslider {
margin: 0;
}
.related-works .widget_recent_works {
margin-bottom: 30px;
}
.wrapper.related-works.marble-color.border-tb-white .container {
padding: 30px 0 0px;
}
.gallery-filters {
font-size: 10px;
text-transform: uppercase;
line-height: 38px;
}
.gallery-filters ul,
.gallery-filters li {
display: inline;
}
.gallery-filters a:hover,
.gallery-filters a.selected {
color: #3170ac;
}
.gallery-filters li:before {
content: '|';
padding: 0 7px;
}
.gallery-filters li:first-child:before {
content: '';
padding: 0 0 0 7px;
}
.gallery-container {
overflow: hidden;
padding-top: 30px;
}
.gallery {
position: relative;
width: 102.564102%
}
.gallery .item-con-t1 {
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.gallery .item-con-t1.size1_2,
.gallery .item-con-t1.size1_3,
.gallery .item-con-t1.size1_4 {
margin-right: 2.5%;
float: left;
margin-bottom: 30px;
}
.gallery .item-con-t1.size1_2 {
width: 47.4%;
}
.gallery .item-con-t1.size1_3 {
width: 30.8%;
}
.gallery .item-con-t1.size1_4 {
width: 22.4%;
}
.gallery .item-con-t1 header {
bottom: 0;
height: 70px;
z-index: 2;
}
.gallery .item-con-t1 .facilities {
top: 0%;
height: 100%;
}
.single-gallery .item-con-t1{
width: 100%;
opacity: 0;
}
.single-gallery .item-con-t1 header {
bottom: 0;
height: 70px;
z-index: 2;
}
.single-gallery .item-con-t1 .facilities {
top: 0%;
height: 100%;
}
.single-gallery .image-link {
top: 0;
right: 0;
margin: 8px;
}
.single-gallery .image-link,
.single-gallery .image-link span {
position: absolute;
display: inline-block;
width: 51px;
height: 51px;
background-image: url(../img/sprite.png);
background-position: 0 -283px;
}
.single-gallery .image-link .zoom {
background-position: -51px -334px;
}
.single-gallery .grid_3 section h1 {
font-size: 14px;
font-weight: 800;
margin-bottom: 18px;
text-transform: uppercase;
line-height: 1;
}
.project-info {
margin-top: 30px;
}
.single-gallery .grid_3 section ul {
font-size: 12px;
}
.single-gallery .grid_3 section ul li{
padding: 3px 0;
list-style-image: url(../img/list-type1.png);
list-style-position: inside;
}
.gallery-single-pagination a[rel=prev],
.gallery-single-pagination a[rel=next] {
display: block;
float:left;
height: 36px;
line-height: 36px;
text-transform: uppercase;
font-size: 11px;
}
.gallery-single-pagination .to_gallery {
display: block;
float:left;
height: 36px;
width: 14px;
margin: 0 8px;
background: url(../img/gallery.png) center center no-repeat;
}
.gallery-single-pagination a[rel=prev] {
padding-left: 15px;
background: url(../img/prev.png) left center no-repeat;
}
.gallery-single-pagination a[rel=next] {
padding-right: 15px;
background: url(../img/next.png) right center no-repeat;
}
/*----------------</GALLERY>----------------*/
/*----------------<AVATAR>----------------*/
.widget_recent_posts_2-container .avatar.big {
width: 59px;
height: 59px;
margin-left: 1px;
}
div.avatar.big {
width: 71px;
height: 71px;
}
div.avatar {
width: 51px;
height: 51px;
padding: 0;
border-radius: 50%;
overflow: hidden;
border: 4px solid rgba(236, 236, 236, 0.4);
behavior: url(../../circles/css/PIE.htc);
-webkit-box-shadow: 0 0 0 1px rgba(116,122,124,0.4);
box-shadow: 0 0 0 1px rgba(116,122,124,0.4);
}
.avatar img {
width: 100%;
height: 100%;
border-radius: 50%;
}
.widget_testimonials-container .sc-button {
padding: 10px 30px;
}
/*----------------</AVATAR>----------------*/
@media only screen and (min-width: 767px){
/*----------------- IMAGE ANIMATIONS --------------*/
.cssanimations .animated {
-webkit-transform: scale(0.3);
-moz-transform: scale(0.3);
-o-transform: scale(0.3);
-ms-transform: scale(0.3);
transform: scale(0.3);
-webkit-transition-duration: 0.3s;
-moz-transition-duration: 0.3s;
-o-transition-duration: 0.3s;
-ms-transition-duration:0.3s;
transition-duration: 0.3s;
transition-property:all;
-moz-transition-property: all; /* Firefox 4 */
-webkit-transition-property: all; /* Safari and Chrome */
-o-transition-property:all; /* Opera */
}
.cssanimations .animated.slow {
-webkit-transition: 0.7s;
-moz-transition: 0.7s;
-o-transition: 0.7s;
-ms-transition: 0.7s;
transition: 0.7s;
}
.cssanimations .animated.left-to-right,
.cssanimations .animated.right-to-left,
.cssanimations .animated.fade,
.cssanimations .animated.bottom-to-top {
-webkit-transition-duration: 1.2s;
-moz-transition-duration: 1.2s;
-o-transition-duration: 1.2s;
-ms-transition-duration:1.2s;
transition-duration: 1.2s;
}
.cssanimations .animation_started.animated {
-webkit-transform: scale(1) translate3d(0,0,0);
-moz-transform: scale(1) translate3d(0,0,0);
-o-transform: scale(1) translate3d(0,0,0);
-ms-transform: scale(1) translate3d(0,0,0);
transform: scale(1) translate3d(0,0,0);
opacity:1;
}
.cssanimations .left-to-right {
-webkit-transform: scale(1) translate3d(-50%,0,0);
-moz-transform: scale(1) translate3d(-50%,0,0);
-o-transform: scale(1) translate3d(-50%,0,0);
-ms-transform: scale(1) translate3d(-50%,0,0);
transform: scale(1) translate3d(-50%,0,0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.cssanimations .fade {
-webkit-transform: scale(1) translate3d(0,0,0);
-moz-transform: scale(1) translate3d(0,0,0);
-o-transform: scale(1) translate3d(0,0,0);
-ms-transform: scale(1) translate3d(0,0,0);
transform: scale(1) translate3d(0,0,0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.cssanimations .right-to-left {
-webkit-transform: scale(1) translate3d(50%,0,0);
-moz-transform: scale(1) translate3d(50%,0,0);
-o-transform: scale(1) translate3d(50%,0,0);
-ms-transform: scale(1) translate3d(50%,0,0);
transform: scale(1) translate3d(50%,0,0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.cssanimations .bottom-to-top {
-webkit-transform: scale(1) translate3d(0,50%,0);
-moz-transform: scale(1) translate3d(0,50%,0);
-o-transform: scale(1) translate3d(0,50%,0);
-ms-transform: scale(1) translate3d(0,50%,0);
transform: scale(1) translate3d(0,50%,0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.cssanimations .bottom-to-top-full {
-webkit-transform: scale(1) translate3d(0,100%,0);
-moz-transform: scale(1) translate3d(0,100%,0);
-o-transform: scale(1) translate3d(0,100%,0);
-ms-transform: scale(1) translate3d(0,100%,0);
transform: scale(1) translate3d(0,100%,0);
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: alpha(opacity=0);
opacity: 0;
}
.cssanimations .pale-on-hover:hover {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
opacity: 0.5;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
cursor: pointer;
}
@-webkit-keyframes myfirst /* Safari and Chrome */
{
0% {-webkit-transform:translateY(0);}
50% {-webkit-transform:translateY(-30px);}
100% {-webkit-transform:translateY(0);}
}
@keyframes myfirst /* Safari and Chrome */
{
0% {transform:translateY(0);}
50% {transform:translateY(-30px);}
100% {transform:translateY(0);}
}
.cssanimations .floating-element {
animation:myfirst 2s;
animation-iteration-count:5000;
-webkit-animation:myfirst 2s; /* Safari and Chrome */
-webkit-animation-iteration-count:5000;
}
/*----------------- IMAGE ANIMATIONS --------------*/
}
/*----------------<NEWSLETTER SIGNUP>----------------*/
.newsletter-signup {
margin-bottom: 20px;
}
.newsletter-signup>h4 {
color: #b1b6b9;
text-transform: uppercase;
font-size: 14px;
font-weight: 800;
margin-bottom: 10px;
}
.newsletter-signup p {
color: #b4b9bc;
font-size: 12px;
margin-bottom: 20px;
}
.newsletter-signup-form {
position: relative;
height: 34px;
padding: 8px;
border-radius: 8px;
margin-right: 1px;
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-shadow: 1px 1px 0 0 rgba(255, 255, 255, 0.07), 0 1px 0 0 rgba(0, 0, 0, 0.1) inset;
}
.newsletter-signup-form input:first-child {
border-width: 0px;
padding: 0px;
margin: 0px;
background: transparent;
overflow: hidden;
color: #b1b6b9;
font-size: 12px;
}
.newsletter-signup-form input:first-child {
display: block;
padding-right: 70px;
width: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.newsletter-signup-form input+input {
position: absolute;
top: 2px;
right: 2px;
display: block;
width: 66px;
height: 30px;
font-size: 10px;
border: 1px solid #56595b;
border-radius: 6px;
color: #b1b6b9;
text-transform: uppercase;
box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.07);
}
/*----------------</NEWSLETTER SIGNUP>----------------*/
/*----------------<SOCIALS>----------------*/
.socials {
display: block;
float: right;
}
.socials li {
display: block;
float: left;
height: 36.5px;
margin-top: 31.5px;
margin-left: 3px;
border-radius: 50%;
position: relative;
overflow: hidden;
}
.socials li span {
position: absolute;
width: 98%;
height: 97%;
background: #366fa5;
box-shadow: inset 0 0 5px 0 rgba(0,0,0,0.4);
border-radius: 50%;
top: 101%;
left: 1px;
}
.socials li:hover span {
top: 1px;
}
.headerstyle3 .preheader-builder .socials li span,
.headerstyle5 .preheader-builder .socials li span {
display: none;
}
.headerstyle3 .socials .cloud {
position: absolute;
top: -22px;
left: -8px;
display: block;
background: #717171;
color: #c1c7ca;
font-size: 11px;
padding: 4px 9px;
opacity: 0;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
-webkit-transition: opacity 0.3s linear;
-moz-transition: opacity 0.3s linear;
-o-transition: opacity 0.3s linear;
-ms-transition: opacity 0.3s linear;
transition: opacity 0.3s linear;
}
.headerstyle3 .socials .cloud .helper {
position: absolute;
top: 100%;
left: 15px;
display: block;
width: 7px;
height: 6px;
background-image: url(../img/sprite.png);
background-position: -309px -140px;
}
.headerstyle3 .socials a:hover + .cloud {
opacity: 1;
filter: progid:DXImageTransf;
}
.headerstyle3 .socials li:hover {
background: transparent;
box-shadow: none;
}
.preheader-builder .socials li {
margin-top: 0;
}
.socials a {
display: block;
width: 35px;
height: 35px;
background-image: url(../img/socials.png);
position: relative;
}
.socials .facebook {
background-position: 0 0;
}
.headerstyle3 .socials .facebook:hover {
background-position: 0 0;
}
.socials .facebook:hover {
background-position: 0 -35px;
}
.socials .twitter {
background-position: 0 -70px;
}
.headerstyle3 .socials .twitter:hover {
background-position: 0 -70px;
}
.socials .twitter:hover {
background-position: 0 -105px;
}
.socials .skype {
background-position: 0 -140px;
}
.headerstyle3 .socials .skype:hover {
background-position: 0 -140px;
}
.socials .skype:hover {
background-position: 0 -175px;
}
.socials .dribbble {
background-position: 0 -210px;
}
.headerstyle3 .socials .dribbble:hover {
background-position: 0 -210px;
}
.socials .dribbble:hover {
background-position: 0 -245px;
}
.socials .youtube {
background-position: 0 -280px;
}
.headerstyle3 .socials .youtube:hover {
background-position: 0 -280px;
}
.socials .youtube:hover {
background-position: 0 -315px;
}
.socials .instagram {
background-position: -129px -564px;
}
.headerstyle3 .socials .instagram:hover {
background-position: -129px -564px;
}
.socials .instagram:hover {
background-position: -129px -593px;
}
.socials .linkedin {
background-position: -67px -561px;
}
.headerstyle3 .socials .linkedin:hover {
background-position: -67px -561px;
}
.socials .linkedin:hover {
background-position: -67px -592px;
}
.socials .pinterest {
background-position: -67px -632px;
}
.headerstyle3 .socials .pinterest:hover {
background-position: -67px -632px;
}
.socials .pinterest:hover {
background-position: -67px -662px;
}
.socials .tumblr {
background-position: -67px -775px;
}
.headerstyle3 .socials .tumblr:hover {
background-position: -67px -775px;
}
.socials .tumblr:hover {
background-position: -67px -805px;
}
.socials .google-plus {
background-position:-69px -702px;
}
.headerstyle3 .socials .google-plus:hover {
background-position: -69px -702px;
}
.socials .google-plus:hover {
background-position: -69px -733px;
}
.socials-bottom h1{
color: #b1b6b9;
text-transform: uppercase;
font-size: 14px;
font-weight: 800;
margin-bottom: 10px;
}
.socials-bottom li {
position: relative;
display: block;
float: left;
height: 35px;
width: 35px;
margin-left: 3px;
}
.socials-bottom li:first-child {
margin-left: 0px;
}
.socials-bottom a:hover+.cloud{
opacity: 1;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
}
.socials-bottom .cloud {
position: absolute;
top: -22px;
left: -8px;
display: block;
background: #717171;
color: #c1c7ca;
font-size: 11px;
padding: 4px 9px;
opacity: 0;
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
-webkit-transition: opacity 0.3s linear;
-moz-transition: opacity 0.3s linear;
-o-transition: opacity 0.3s linear;
-ms-transition: opacity 0.3s linear;
transition: opacity 0.3s linear;
}
.socials-bottom .cloud .helper{
position: absolute;
top: 100%;
left: 15px;
display: block;
width: 7px;
height: 6px;
background-image: url(../img/sprite.png);
background-position: -309px -140px;
}
.socials-bottom a {
display: block;
width: 35px;
height: 35px;
background-image: url(../img/socials.png);
}
.socials-bottom .facebook {
background-position: -35px 0;
}
.socials-bottom .twitter {
background-position: -35px -70px;
}
.socials-bottom .skype {
background-position: -35px -140px;
}
.socials-bottom .dribbble {
background-position: -35px -210px;
}
.socials-bottom .youtube {
background-position: -35px -280px;
}
.socials-bottom .tumblr {
background-position: -8px -806px;
}
.socials-bottom .google-plus {
background-position: -10px -734px;
}
.socials-bottom .pinterest {
background-position: -8px -663px;
}
.socials-bottom .linkedin {
background-position: -8px -592px;
}
.socials-bottom .instagram {
background-position: -129px -626px;
}
/*---- Social2 ------*/
.socials2 {
display: block;
float: right;
}
.socials2 li {
display: block;
float: left;
height: 26px;
margin-top: 0;
margin-left: 10px;
border-radius: 50%;
position: relative;
overflow: hidden;
width: 26px;
}
.socials2 li a {
display: block;
width: 26px;
height: 26px;
border-radius: 50%;
background-color: #f2f5f7;
background-image: url(../img/socials.png);
}
.socials2 .facebook {
background-position: -189px -1px;
}
.socials2 .twitter {
background-position: -189 -30px;
}
.socials2 .skype {
background-position: -189 -59px;
}
.socials2 .dribbble {
background-position: -189 -88px;
}
.socials2 .youtube {
background-position: -189 -118px;
}
.socials2 .tumblr {
background-position: -189 -231px;
}
.socials2 .google-plus {
background-position: -189 -203px;
}
.socials2 .pinterest {
background-position: -189 -178px;
}
.socials2 .linkedin {
background-position: -189 -148px;
}
.socials2 .instagram {
background-position: -188 -261px;
}
/*----------------</SOCIALS>----------------*/
/*----------------<COLUMN>----------------*/
.column {
display: block;
width: 102.564102%;
}
.column_post {
display: block;
width: 30.77%;
margin: 0 2.5% 30px 0;
padding: 1px 1px 4px;
border-radius: 2px;
background: #cbcbcc;
box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.column_post-helper {
display: block;
padding: 3px 3px 30px;
border-radius: 2px;
background: #f3f3f3;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
}
.column_post-media {
width: 100%;
}
.column_post-media img{
width: 100%;
height: 100%;
}
.column_post header{
position: relative;
display: block;
padding: 12px 16px;
min-height: 41px;
background: #eaeaea;
}
.column_post header a,
.column_post header h2 {
color: #3170AC;
font-size: 18px;
font-weight: 300;
text-transform: none;
margin-bottom: 0;
}
.column_post header a {
display: block;
margin-top: 7px;
margin-left: 53px;
}
.column_post-type {
position: absolute;
top: 50%;
left: 0px;
width: 41px;
height: 41px;
background: #f3f3f3;
border-radius: 50%;
margin: -20.5px 16px 0;
overflow: hidden;
}
.column_post-type span{
display: block;
width: 41px;
height: 41px;
background-image: url(../img/sprite.png);
background-position: -5px -388px;
}
.column_post.format-photo .column_post-type span {
background-position: -5px -388px;
}
.column_post.format-gallery .column_post-type span {
background-position: -5px -388px;
}
.column_post.format-video .column_post-type span {
background-position: -51px -388px;
}
.column_post.format-audio .column_post-type span {
background-position: -149px -388px;
}
.column_post.format-link .column_post-type span {
background-position: -100px -388px;
}
.column_post.format-slider .column_post-type span {
background-position: -197px -388px;
}
.column_post footer{
display: block;
padding: 12px 8px;
margin: 0 8px;
border-bottom: 1px solid #DADADA;
box-shadow: 0 1px 0 0 #FFF;
}
.column_post-date,
.column_post-category,
.column_post-author {
display: inline-block;
height: 16px;
padding: 1px 0;
font-size: 11px;
margin-right: 10px;
padding-left: 25px;
}
.column_post-date {
background-image: url(../img/date.png);
background-position: left center;
background-repeat: no-repeat;
}
.column_post-category {
background-image: url(../img/category.png);
background-position: left center;
background-repeat: no-repeat;
}
.column_post-author {
background-image: url(../img/author.png);
background-position: left center;
background-repeat: no-repeat;
}
.column_post-category span,
.column_post-category a,
.column_post-author span,
.column_post-author a{
color: #3170ac;
line-height: 16px;
}
.column_post-body{
margin: 12px 16px 0;
}
/*----------------</COLUMN>----------------*/
/*----------------<FOOTER>----------------*/
.copyright {
display: block;
float: left;
color: #7b7b7b;
line-height: 56px;
font-size: 12px;
}
footer .grid_3 img {
max-width: 100%;
}
footer .grid_3 {
margin-bottom: 0px;
}
footer ul li {
list-style:none;
}
footer .widget_recent_comments li {
color: #69767f;
border-top: 1px solid #272b2e;
-webkit-box-shadow: none;
box-shadow: none;
}
footer .widget_recent_comments li a, .left_navigation li a {
color: #69767f;
}
footer .widget_recent_entries li {
color: #69767f;
border-top: 1px solid #272b2e;
-webkit-box-shadow: none;
box-shadow: none;
}
footer .widget_recent_entries li a, .left_navigation li a {
color: #69767f;
}
#back_to_top {
position: fixed;
bottom: 40px;
right: 30px;
width: 61px;
height: 61px;
background: url(../img/back_to_top.png);
display: none;
-webkit-backface-visibility: hidden;
z-index: 1000;
}
footer .wrapper.grey {
padding: 0 0 0;
}
.widget_wysija_cont p label {
display: none;
}
/*----------------</FOOTER>----------------*/
/*----------------<FLEXSLIDER>----------------*/
.flexslider {
margin: 0 0 60px;
border: 0;
background: transparent;
-webkit-border-radius: 0;
-moz-border-radius: 0;
-o-border-radius: 0;
border-radius: 0;
box-shadow: 0 0 0;
-webkit-box-shadow: 0 0 0;
-moz-box-shadow: 0 0 0;
-o-box-shadow: 0 0 0;
zoom: 1;
opacity:0;
}
.column .flexslider {
margin: 0;
}
.top-slider .flexslider {
margin-bottom: 0;
}
/*----------------</FLEXSLIDER>----------------*/
/*----------------<ISOTOPE>----------------*/
/* Isotope Filtering */
.isotope-item {
z-index: 2;
}
.isotope-hidden.isotope-item {
pointer-events: none;
z-index: 1;
}
/* Isotope CSS3 transitions */
.isotope,
.isotope .isotope-item {
-webkit-transition-duration: 0.8s;
-moz-transition-duration: 0.8s;
-ms-transition-duration: 0.8s;
-o-transition-duration: 0.8s;
transition-duration: 0.8s;
}
.isotope {
-webkit-transition-property: height, width;
-moz-transition-property: height, width;
-ms-transition-property: height, width;
-o-transition-property: height, width;
transition-property: height, width;
}
.isotope .isotope-item {
-webkit-transition-property: -webkit-transform, opacity;
-moz-transition-property: -moz-transform, opacity;
-ms-transition-property: -ms-transform, opacity;
-o-transition-property: -o-transform, opacity;
transition-property: transform, opacity;
}
/*** disabling Isotope CSS3 transitions */
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
-webkit-transition-duration: 0s;
-moz-transition-duration: 0s;
-ms-transition-duration: 0s;
-o-transition-duration: 0s;
transition-duration: 0s;
}
/*----------------</ISOTOPE>----------------*/
/*------------------------- SHOP ------------------------*/
body.woocommerce ul.products li.product, body.woocommerce-page ul.products li.product {
border: 1px solid #dbdbdb;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
width: 30%;
background-color: #f8f8f8;
padding: 2px 2px 0px;
border-radius: 3px;
clear: none;
margin-right: 3.8%;
float: none;
display: inline-block;
}
body.woocommerce ul.products li.product:nth-child(3n+3), body.woocommerce-page ul.products li.product:nth-child(3n+3) {
margin-right: 0;
}
body.woocommerce ul.products li.product a img, body.woocommerce-page ul.products li.product a img {
border-radius: 3px;
-webkit-box-shadow: none;
box-shadow: none;
border: 1px solid #dbdbdb;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
body.woocommerce ul.products li.product h3, body.woocommerce-page ul.products li.product h3 {
color: #909598;
font-weight: 100;
text-align: center;
font-size: 17px;
padding-top: 0;
}
body.woocommerce ul.products li.product .price, body.woocommerce-page ul.products li.product .price {
font-size: 18px;
text-align: center;
color: #3b74aa;
font-weight: 100;
text-decoration: none;
}
body.woocommerce ul.products li.product a, body.woocommerce-page ul.products li.product a {
width: 50%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
background: transparent;
text-transform: uppercase;
font-weight: 100;
border: 0;
-webkit-box-shadow: none;
box-shadow: none;
}
body.woocommerce ul.products li.product .product-bottom a {
width: 50%;
display: inline-block;
text-align: center;
padding: 8px 0 8px 30px;
color: #909598;
font-size: 11px;
font-weight: normal;
background-image: url(../img/sprite.png);
margin: 3px 0 0;
}
body.woocommerce ul.products li.product .product-bottom {
border-top: 1px solid #dbdbdb;
margin-left: -2px;
padding-right: 4px;
width: 100%;
background-color: #ededed;
border-radius: 0 0 3px 3px;
}
body.woocommerce ul.products li.product .product-bottom a.add_to_cart_button {
background-position: 10px -1493px;
border-right: 1px solid #ccc;
}
body.woocommerce ul.products li.product .product-bottom a.product-details {
background-position: 20px -1465px;
}
.woocommerce ul.products li.product a:hover img, .woocommerce-page ul.products li.product a:hover img {
box-shadow:none !important;
-webkit-box-shadow:none !important;
-moz-box-shadow:none !important;
}
.woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count {
display: none;
}
body.woocommerce .woocommerce-ordering, body.woocommerce-page .woocommerce-ordering {
float: left;
position: relative;
}
.woocommerce .woocommerce-ordering select, .woocommerce-page .woocommerce-ordering select {
-webkit-appearance: none;
background: transparent;
border: 1px solid #dbdbdb;
padding: 5px;
border-radius: 3px;
padding-left: 60px;
outline: none;
}
.woocommerce-ordering span.icon-angle-down {
left: auto;
right: 10px;
top: 11px;
}
.woocommerce-ordering span {
position: absolute;
left: 10px;
top: 7px;
color: #7f8182;
}
body.woocommerce ul.cart_list li a, body.woocommerce ul.product_list_widget li a, body.woocommerce-page ul.cart_list li a, body.woocommerce-page ul.product_list_widget li a {
color: #45484a;
font-weight: 500;
text-transform: uppercase;
font-size: 13px;
}
body.woocommerce ul.cart_list li .amount, body.woocommerce ul.product_list_widget li .amount, .woocommerce-page ul.cart_list li .amount, .woocommerce-page ul.product_list_widget li .amount {
color: #3b74aa;
}
body.woocommerce ul.products li.product .onsale, .woocommerce-page ul.products li.product .onsale {
top: 15px;
right: 15px;
}
body.woocommerce ul.products li.product .product-bottom a.added_to_cart {
background: transparent;
}
body.woocommerce ul.products li.product .product-bottom a.add_to_cart_button.added {
display: none;
}
body.woocommerce-page ul.product_list_widget li {
border-bottom: 1px solid #dadada;
border-top: 1px solid #fff;
padding: 8px 0;
}
body.woocommerce-page ul.product_list_widget li:first-child {
border-top: 0;
}
body.woocommerce-page ul.product_list_widget li:last-child {
box-shadow: 0 1px 0 0 #Fff;
}
body.woocommerce-page div.product div.images div.thumbnails a {
width: 32%;
margin-right: 2%;
}
body.woocommerce div.product div.images img {
box-shadow: none;
border-radius: 10px;
border: 1px solid #dbdbdb;
}
body.woocommerce-page div.product div.images {
width: 43%;
}
body.woocommerce-page div.product div.summary {
width: 53%;
}
body.woocommerce div.product .product_title {
font-weight: 300;
color: #909598;
}
body.woocommerce div.product p.price {
color: #3b74aa;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
background: rgb(28, 99, 167);
border-radius: 6px;
box-shadow: inset 0 -4px 0 0 rgba(255, 255, 255, 0.25);
text-align: center;
text-transform: uppercase;
text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
font-weight: 400;
overflow: hidden;
display: inline-block;
position: relative;
padding: 14px 20px 14px 40px;
font-size: 12px;
color: #ffffff;
transition-property: all;
-moz-transition-property: all;
-webkit-transition-property: all;
-o-transition-property: all;
transition: 0.3s;
opacity: 0.85;
-moz-transition: 0.3s;
-webkit-transition: 0.3s;
-o-transition: 0.3s;
transition-delay: 0s;
transition-timing-function: cubic-bezier(0, 0, 1, 1);
text-shadow: 0px 1px 1px rgba(0,0,0,1);
text-decoration: none;
background-image: url(../img/sprite.png);
border: 0;
background-position: -160px -699px;
}
body.woocommerce-page div.product .woocommerce-tabs {
clear: none;
width: 53%;
float: right;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
background: #3b74aa;
color: #fff;
font-weight: 100;
text-transform: uppercase;
}
body.woocommerce-page div.product .woocommerce-tabs ul.tabs li {
background: #e9e9e9;
text-transform: uppercase;
margin: 0;
border-radius: 0;
box-shadow: none;
border: 0;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs li a {
font-weight:300;
}
body.woocommerce-page div.product .woocommerce-tabs ul.tabs li:before,
body.woocommerce-page div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs:before {
content:none;
}
body.woocommerce div.product .woocommerce-tabs ul.tabs {
margin-left: 0;
padding-left: 0;
}
.woocommerce-tabs h2 {
color: #3170ac;
text-transform: none;
font-weight: 100;
}
/*---------- CArt --------------*/
body.woocommerce-cart table.shop_table {
background: #f8f8f8;
}
body.woocommerce-cart table.shop_table thead {
background: #fff;
}
body.woocommerce-cart table.cart th {
color: #45484a;
text-transform: uppercase;
font-size: 11px;
}
body.woocommerce-cart table.cart .product-thumbnail {
width: 80px;
}
body.woocommerce-cart table.cart th.product-quantity {
text-align: center;
}
body.woocommerce-cart table.cart td.product-remove {
width: 50px;
}
body.woocommerce-cart table.cart a.remove {
color: #3b75ac;
margin-left: 20px;
margin-right: 0;
}
body.woocommerce-cart table.cart img {
width: 49px;
height: 46px;
padding: 2px;
border: 1px solid #e0e0e0;
background: #f3f3f3;
border-radius: 4px;
}
body.woocommerce-cart .product-name a {
color: #3b74aa;
text-transform: uppercase;
}
body.woocommerce-cart .quantity,
.woocommerce div.product form.cart div.quantity {
border-radius: 5px;
overflow: hidden;
border-top: 1px solid #ccc;
}
.woocommerce div.product form.cart div.quantity {
margin-top: 6px !important;
margin-right: 10px !important;
}
body.woocommerce-cart .quantity .minus,
body.woocommerce .quantity .minus {
background: rgb(226,226,226);
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top, rgba(226,226,226,1) 0%, rgba(236,236,236,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(226,226,226,1)), color-stop(100%,rgba(236,236,236,1)));
background: -webkit-linear-gradient(top, rgba(226,226,226,1) 0%,rgba(236,236,236,1) 100%);
background: -o-linear-gradient(top, rgba(226,226,226,1) 0%,rgba(236,236,236,1) 100%);
background: -ms-linear-gradient(top, rgba(226,226,226,1) 0%,rgba(236,236,236,1) 100%);
background: linear-gradient(to bottom, rgba(226,226,226,1) 0%,rgba(236,236,236,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#ececec',GradientType=0 );
border: 0;
border-left: 1px solid rgb(199, 199, 199);
box-shadow: none;
color: #9fa1a2;
border-radius: 0;
}
body.woocommerce-cart .quantity input.qty,
body.woocommerce .quantity input.qty {
background: #e6e6e6;
outline: none;
border: 0;
color: #45484a;
font-weight: normal;
}
body.woocommerce-cart .quantity .plus,
body.woocommerce .quantity .plus {
background: rgb(236,236,236);
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top, rgba(236,236,236,1) 0%, rgba(226,226,226,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(236,236,236,1)), color-stop(100%,rgba(226,226,226,1)));
background: -webkit-linear-gradient(top, rgba(236,236,236,1) 0%,rgba(226,226,226,1) 100%);
background: -o-linear-gradient(top, rgba(236,236,236,1) 0%,rgba(226,226,226,1) 100%);
background: -ms-linear-gradient(top, rgba(236,236,236,1) 0%,rgba(226,226,226,1) 100%);
background: linear-gradient(to bottom, rgba(236,236,236,1) 0%,rgba(226,226,226,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ececec', endColorstr='#e2e2e2',GradientType=0 );
border: 0;
border-left: 1px solid rgb(199, 199, 199);
border-bottom: 1px solid rgb(199, 199, 199);
box-shadow: none;
color: #9fa1a2;
border-radius: 0;
}
body.woocommerce-cart .cart .button, body.woocommerce-page .woocommerce.widget_price_filter .price_slider_amount .button, .woocommerce-page .woocommerce .cart-collaterals .shipping_calculator .button {
float: left;
text-decoration: none;
text-transform: uppercase;
font-size: 10px;
color: #45484a;
border-radius: 5px;
background: #eaebeb;
background: -webkit-gradient(linear, left top, left bottom, from(#d9dbdd), to(#eaebeb));
background: -webkit-linear-gradient(top, #d9dbdd, #eaebeb);
background: -moz-linear-gradient(top, #d9dbdd, #eaebeb);
background: -ms-linear-gradient(top, #d9dbdd, #eaebeb);
background: -o-linear-gradient(top, #d9dbdd, #eaebeb);
border-bottom: 1px solid #fff;
border-right: 1px solid #fff;
box-shadow: 1px 1px 0px 0 #c5c5c5;
margin-bottom: 25px;
padding: 11px 20px;
border-top: 0;
border-left: 0;
width: auto;
}
.woocommerce .cart-collaterals .cart_totals table .amount {
color: #3872aa;
}
.woocommerce-page .woocommerce .cart-collaterals .cart_totals table td {
padding-right: 20px;
}
body.woocommerce-cart .woocommerce table.cart td.actions .coupon .input-text,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select {
position: relative;
padding: 8px;
border-radius: 8px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1) inset;
box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1) inset;
background: #e6e6e6;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
border: 0;
outline: none;
}
.woocommerce form .form-row select {
-webkit-appearance: none;
}
body.woocommerce-cart .woocommerce table.cart td.actions .button.alt {
font-size: 10px;
float: right;
border-radius: 6px;
border-bottom: 4px solid #5895ce;
background: #56595b;
background: -webkit-gradient(linear, left top, left bottom, from(#2f6aa3), to(#427bb1));
background: -webkit-linear-gradient(top, #2f6aa3, #427bb1);
background: -moz-linear-gradient(top, #2f6aa3, #427bb1);
background: -ms-linear-gradient(top, #2f6aa3, #427bb1);
background: -o-linear-gradient(top, #2f6aa3, #427bb1);
color: #f3f3f3;
text-align: center;
text-transform: uppercase;
text-shadow: 1px 1px 0 rgba(0,0,0,0.5);
font-weight: bold;
font-size: 12px;
margin-left: 10px;
padding: 9px 20px;
}
.woocommerce-page .woocommerce .cart-collaterals .shipping_calculator .button {
margin-left: 4px;
}
body.woocommerce-page .woocommerce table.cart .actions input.input-text, .woocommerce-page .cart input.button {
margin: 5px;
}
body.woocommerce-page .widget_price_filter .ui-slider-horizontal .ui-slider-range {
background: #3b74aa;
border-top: 1px solid #336492;
}
.woocommerce-page .woocommerce.widget_price_filter .price_slider_wrapper .ui-widget-content {
background: #dcdcdc;
border-top: 1px solid #bdbdbd;
height: 4px;
}
body.woocommerce-page .widget_price_filter .ui-slider .ui-slider-handle {
box-shadow: none;
border: 1px solid rgb(78, 78, 78);
background: rgb(153,157,159);
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJod…EiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
background: -moz-linear-gradient(top, rgba(153,157,159,1) 0%, rgba(101,111,118,1) 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(153,157,159,1)), color-stop(100%,rgba(101,111,118,1)));
background: -webkit-linear-gradient(top, rgba(153,157,159,1) 0%,rgba(101,111,118,1) 100%);
background: -o-linear-gradient(top, rgba(153,157,159,1) 0%,rgba(101,111,118,1) 100%);
background: -ms-linear-gradient(top, rgba(153,157,159,1) 0%,rgba(101,111,118,1) 100%);
background: linear-gradient(to bottom, rgba(153,157,159,1) 0%,rgba(101,111,118,1) 100%);
}
.woocommerce .widget_price_filter .price_slider_amount {
color: #3b74aa;
}
.woocommerce-page .woocommerce .cart-collaterals .cart_totals {
float: left;
}
.cart_totals h2 {
text-align: left;
font-size: 14px;
font-weight: 900;
}
.woocommerce-page .woocommerce .cart-collaterals .cart_totals table {
width: 100%;
background: #f8f8f8;
border: 1px solid #d9d9d9;
border-radius: 0;
}
.woocommerce .cart-collaterals .cart_totals table tr {
border: 1px solid #000;
border-collapse: collapse;
}
.woocommerce-page .woocommerce .cart-collaterals .cart_totals table th {
text-align: left;
padding: 12px 5px 13px 20px;
text-transform: uppercase;
font-size: 11px;
border-right: 1px solid #d9d9d9;
}
.woocommerce .cart-collaterals .cart_totals table .shipping {
background: #ededed;
border-bottom: 1px solid #d9d9d9;
border-top: 1px solid #d9d9d9;
position: relative;
}
.woocommerce .cart-collaterals .cart_totals table .shipping th {
font-weight: normal;
}
.woocommerce .cart-collaterals .cart_totals table .shipping td {
text-transform: uppercase;
}
body.woocommerce-page .cart-collaterals .shipping-calculator-form {
display: block !important;
height: auto !important;
}
.woocommerce .shipping-calculator-button {
font-size: 14px;
font-weight: 900;
color: #45484a;
}
.shipping_calculator h2 {
line-height: 1;
text-align: left;
}
body.woocommerce-page .woocommerce .cart-collaterals .shipping_calculator {
margin: 0;
}
body.woocommerce-page .woocommerce .cart-collaterals .shipping_calculator {
margin-top: -3px;
}
body.woocommerce-page table.shop_table {
border-radius: 0;
}
.woocommerce form .shipping-calculator-form .form-row:first-child {
position: relative;
}
.widget_shopping_cart {
position: fixed;
top: 25px;
right: 25px;
z-index: 10000;
width: auto;
display: block;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.woocommerce-page #cart_button {
display: block;
}
#cart_button {
display: none;
width: 40px;
height: 40px;
background: #fff;
border: 1px solid #d9d9d9;
border-radius: 50%;
padding: 4px;
z-index: 1000;
float: right;
position: relative;
clear: both;
margin-bottom: 10px;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
cursor: pointer;
}
.widget_shopping_cart_content {
background: #f8f8f8;
z-index: 1000;
padding:0;
border: 1px solid #d9d9d9;
width: 240px;
display: none;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
clear: both;
-webkit-box-shadow: 0 0 20px 5px rgba(0,0,0,0.07);
box-shadow: 0 0 20px 5px rgba(0,0,0,0.07);
}
body.woocommerce-page ul.product_list_widget li {
border-top: 0;
padding: 8px 15px;
}
.fixed-header .widget_shopping_cart {
top: 2px;
}
.fixed-header #cart_button:after {
background-position: -168px -1492px;
}
.fixed-header #cart_button {
width: 30px;
height: 30px;
}
#cart_button:after {
display: block;
width: 100%;
height: 100%;
background: #3b74a9;
content: '';
border-radius: 50%;
-webkit-box-shadow: inset 0 -30px 30px -20px rgba(0,0,0,0.2);
box-shadow: inset 0 -30px 30px -20px rgba(0,0,0,0.2);
background-image: url(../img/sprite.png);
background-position: -163px -1487px;
-webkit-transition: 0.3s;
-moz-transition: 0.3s;
-o-transition: 0.3s;
-ms-transition: 0.3s;
transition: 0.3s;
}
.widget_shopping_cart_content .buttons .button {
width: 49%;
margin: 5px 0;
padding: 0;
display: inline-block;
background: transparent;
border: 0;
box-shadow: none;
font-weight: normal;
line-height: 30px;
text-align: center;
text-transform: uppercase;
}
.widget_shopping_cart_content .buttons .button:first-child {
border-right: 1px solid #d9d9d9;
}
.widget_shopping_cart_content .buttons {
width: 240px;
background: #ededed;
height: 40px;
margin: 0;
border-top: 1px solid #d9d9d9;
}
.woocommerce-page .woocommerce .widget_shopping_cart .total {
padding: 7px 15px 7px;
margin-bottom: 0;
color: #45484a;
font-size: 11px;
}
.widget_shopping_cart_content .buttons .button:hover {
background: transparent !important;
}
.woocommerce ul.product_list_widget.cart_list li img, #added_item img {
width: 49px;
height: 46px;
padding: 2px;
background: #f3f3f3;
box-shadow: none;
border: 1px solid #d9d9d9;
border-radius: 3px;
}
#added_item img {
float: right;
}
.woocommerce-page ul.cart_list.product_list_widget li .amount {
color: #000;
}
.widget_shopping_cart > h1 {
display: none;
}
.widget_shopping_cart_content .total .amount {
color: #3b74aa;
font-weight: bold;
}
.woocommerce-page .widget_shopping_cart .total strong {
text-transform: uppercase;
}
.form-row .icon-angle-down {
position: absolute;
top: 14px;
right: 15px;
}
#added_item {
position: fixed;
top: 90px;
right: 25px;
background: #f8f8f8;
width: 250px;
z-index: 1000;
border: 1px solid #d9d9d9;
padding: 10px;
display: none;
box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
}
.fixed-header #added_item {
top: 50px;
}
.woocommerce-page.woocommerce .widget_shopping_cart .total {
margin-bottom: 0;
padding: 7px 15px;
font-size: 11px;
}
/*-------- WP GAllery --------------*/
.gallery-item img {
border: 1px solid #cfcfcf !important;
width: 100%;
height: auto;
border-radius: 4px;
padding: 3px;
border-bottom: 2px solid #cfcfcf !important;
}
.gallery-icon {
margin-right: 30px;
}
/*------ Banner ---------ss----*/
.banner-builder {
opacity:1;
background-size:cover!important;
}
.banner-wrapper {
position:relative;
}
#canvasLoader {
position: absolute;
top: 50%;
left: 50%;
margin-left: -20px;
z-index: 2;
}
.banner-overlay {
position: absolute;
width: 100%;
height: 100%;
background: #f3f3f3;
top: 0;
left: 0;
z-index: 1;
}
/* Localized */ | 0.385375 | 0.172311 |
figure.wp-block-image:not(.wp-block) {margin: 0;}
.wp-block-image {position: relative;}
.wp-block-image .is-applying img, .wp-block-image.is-transient img {opacity: .3;}
.wp-block-image figcaption img {display: inline;}
.wp-block-image .components-spinner {position: absolute;top: 50%;left: 50%;margin-top: -9px;margin-left: -9px;}
.wp-block-image:not(.is-style-rounded)>div {border-radius: inherit;}
.wp-block-image .components-resizable-box__container {display: inline-block;}
.wp-block-image .components-resizable-box__container img {display: block;width: inherit;height: inherit;}
.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {position: absolute;left: 0;right: 0;margin: -1px 0;}
@media (min-width:600px) {.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {margin: -1px;}}
[data-align=full]>.wp-block-image img, [data-align=wide]>.wp-block-image img {width: 100%;}
.wp-block[data-align=center]>.wp-block-image, .wp-block[data-align=left]>.wp-block-image, .wp-block[data-align=right]>.wp-block-image {display: table;}
.wp-block[data-align=center]>.wp-block-image>figcaption, .wp-block[data-align=left]>.wp-block-image>figcaption, .wp-block[data-align=right]>.wp-block-image>figcaption {display: table-caption;caption-side: bottom;}
.wp-block[data-align=left]>.wp-block-image {margin: .5em 1em .5em 0;}
.wp-block[data-align=right]>.wp-block-image {margin: .5em 0 .5em 1em;}
.wp-block[data-align=center]>.wp-block-image {margin-left: auto;margin-right: auto;text-align: center;}
.wp-block-image__crop-area {position: relative;max-width: 100%;width: 100%;}
.wp-block-image__crop-icon {padding: 0 8px;min-width: 48px;display: flex;justify-content: center;align-items: center;}
.wp-block-image__crop-icon svg {fill: currentColor;}
.wp-block-image__zoom .components-popover__content {overflow: visible;min-width: 260px;}
.wp-block-image__zoom .components-range-control {flex: 1;}
.wp-block-image__zoom .components-base-control__field {display: flex;margin-bottom: 0;flex-direction: column;align-items: flex-start;}
.wp-block-image__aspect-ratio {height: 46px;margin-bottom: -8px;display: flex;align-items: center;}
.wp-block-image__aspect-ratio .components-button {width: 36px;padding-left: 0;padding-right: 0;} | wp-content/uploads/wp2static-processed-site/wp-includes/blocks/image/editor.min.css | figure.wp-block-image:not(.wp-block) {margin: 0;}
.wp-block-image {position: relative;}
.wp-block-image .is-applying img, .wp-block-image.is-transient img {opacity: .3;}
.wp-block-image figcaption img {display: inline;}
.wp-block-image .components-spinner {position: absolute;top: 50%;left: 50%;margin-top: -9px;margin-left: -9px;}
.wp-block-image:not(.is-style-rounded)>div {border-radius: inherit;}
.wp-block-image .components-resizable-box__container {display: inline-block;}
.wp-block-image .components-resizable-box__container img {display: block;width: inherit;height: inherit;}
.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {position: absolute;left: 0;right: 0;margin: -1px 0;}
@media (min-width:600px) {.block-editor-block-list__block[data-type="core/image"] .block-editor-block-toolbar .block-editor-url-input__button-modal {margin: -1px;}}
[data-align=full]>.wp-block-image img, [data-align=wide]>.wp-block-image img {width: 100%;}
.wp-block[data-align=center]>.wp-block-image, .wp-block[data-align=left]>.wp-block-image, .wp-block[data-align=right]>.wp-block-image {display: table;}
.wp-block[data-align=center]>.wp-block-image>figcaption, .wp-block[data-align=left]>.wp-block-image>figcaption, .wp-block[data-align=right]>.wp-block-image>figcaption {display: table-caption;caption-side: bottom;}
.wp-block[data-align=left]>.wp-block-image {margin: .5em 1em .5em 0;}
.wp-block[data-align=right]>.wp-block-image {margin: .5em 0 .5em 1em;}
.wp-block[data-align=center]>.wp-block-image {margin-left: auto;margin-right: auto;text-align: center;}
.wp-block-image__crop-area {position: relative;max-width: 100%;width: 100%;}
.wp-block-image__crop-icon {padding: 0 8px;min-width: 48px;display: flex;justify-content: center;align-items: center;}
.wp-block-image__crop-icon svg {fill: currentColor;}
.wp-block-image__zoom .components-popover__content {overflow: visible;min-width: 260px;}
.wp-block-image__zoom .components-range-control {flex: 1;}
.wp-block-image__zoom .components-base-control__field {display: flex;margin-bottom: 0;flex-direction: column;align-items: flex-start;}
.wp-block-image__aspect-ratio {height: 46px;margin-bottom: -8px;display: flex;align-items: center;}
.wp-block-image__aspect-ratio .components-button {width: 36px;padding-left: 0;padding-right: 0;} | 0.572006 | 0.26282 |
.portfolio-li {
/*
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
float: left;
position: relative;
transition: all 0.2s ease-in-out 0s;
line-height: 1.42857;
margin:0.5% 0.5% 0.5% 1%;
overflow: hidden;
width: 31.5%;
*/
display: inline-block;
text-align: center;
}
.portfolio-img{
border: 0 none;
display: inline-block;
/*vertical-align: middle;*/
}
.nopadding{
padding: 0 !important;
/*margin: 0 !important;*/
}
.portfolio-li-div{
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
left: 0;
height: 25%;
position: absolute;
text-align: center;
top: 75%;
display: none;
width: 100%;
padding: 5%;
z-index: 1;
line-height: 1.1;
white-space: normal;
background-color: #72c02c;
/* Theoretically for IE 8 & 9 (more valid) */
/* ...but not required as filter works too */
/* should come BEFORE filter */
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
/* This works in IE 8 & 9 too */
/* ... but also 5, 6, 7 */
filter: alpha(opacity=90);
/* Older than Firefox 0.9 */
-moz-opacity:0.90;
/* Safari 1.x (pre WebKit!) */
-khtml-opacity: 0.90;
/* Modern!
/* Firefox 0.9+, Safari 2?, Chrome any?
/* Opera 9+, IE 9+ */
opacity: 0.90;
}
section#portfolio ul li a{
color: #fff;
}
section#portfolio ul li{
text-decoration: none;
color: #555;
}
section#portfolio ul.filter li{
margin-top:3px;
}
section#portfolio ul li a:hover{
text-decoration: none;
color: #fff;
}
ul.filter{
margin:20px 0 20px 0;
padding: 0;
}
#contactsweethoney{
display: none;
}
#divcontactcaptcha pre{
width:200px;
text-align: center;
font-size: 7px;
line-height: 7px;
padding:0px 9.5px 0px 9.5px;
color: #fff;
box-shadow: none;
border-color: #eee;
/*background: rgba(0,0,0,0.2);*/
background-image: initial;
background-position-x: initial;
background-position-y: initial;
background-size: initial;
background-repeat-x: initial;
background-repeat-y: initial;
background-attachment: initial;
background-origin: initial;
background-clip: initial;
background-color: rgba(0, 0, 0, 0.2);
}
.contacts-in li em{
background: none repeat scroll 0 0 rgba(255, 255, 255, 0.1);
display: inline-block;
font-size: 22px;
margin-right: 5px;
padding: 8px;
text-align: center;
width: 35px;
} | public/assets/css/custom.css | .portfolio-li {
/*
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
float: left;
position: relative;
transition: all 0.2s ease-in-out 0s;
line-height: 1.42857;
margin:0.5% 0.5% 0.5% 1%;
overflow: hidden;
width: 31.5%;
*/
display: inline-block;
text-align: center;
}
.portfolio-img{
border: 0 none;
display: inline-block;
/*vertical-align: middle;*/
}
.nopadding{
padding: 0 !important;
/*margin: 0 !important;*/
}
.portfolio-li-div{
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
left: 0;
height: 25%;
position: absolute;
text-align: center;
top: 75%;
display: none;
width: 100%;
padding: 5%;
z-index: 1;
line-height: 1.1;
white-space: normal;
background-color: #72c02c;
/* Theoretically for IE 8 & 9 (more valid) */
/* ...but not required as filter works too */
/* should come BEFORE filter */
-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
/* This works in IE 8 & 9 too */
/* ... but also 5, 6, 7 */
filter: alpha(opacity=90);
/* Older than Firefox 0.9 */
-moz-opacity:0.90;
/* Safari 1.x (pre WebKit!) */
-khtml-opacity: 0.90;
/* Modern!
/* Firefox 0.9+, Safari 2?, Chrome any?
/* Opera 9+, IE 9+ */
opacity: 0.90;
}
section#portfolio ul li a{
color: #fff;
}
section#portfolio ul li{
text-decoration: none;
color: #555;
}
section#portfolio ul.filter li{
margin-top:3px;
}
section#portfolio ul li a:hover{
text-decoration: none;
color: #fff;
}
ul.filter{
margin:20px 0 20px 0;
padding: 0;
}
#contactsweethoney{
display: none;
}
#divcontactcaptcha pre{
width:200px;
text-align: center;
font-size: 7px;
line-height: 7px;
padding:0px 9.5px 0px 9.5px;
color: #fff;
box-shadow: none;
border-color: #eee;
/*background: rgba(0,0,0,0.2);*/
background-image: initial;
background-position-x: initial;
background-position-y: initial;
background-size: initial;
background-repeat-x: initial;
background-repeat-y: initial;
background-attachment: initial;
background-origin: initial;
background-clip: initial;
background-color: rgba(0, 0, 0, 0.2);
}
.contacts-in li em{
background: none repeat scroll 0 0 rgba(255, 255, 255, 0.1);
display: inline-block;
font-size: 22px;
margin-right: 5px;
padding: 8px;
text-align: center;
width: 35px;
} | 0.31785 | 0.07383 |
body {
font-family: "Open Sans", Tahoma, sans-serif;
font-size: 5.7vh;
background: #233a40;
color: #ddd;
margin: 0;
padding: 0;
position:absolute; width:100%; height:100%;
}
* {
box-sizing: border-box;
}
.stdblock {
display: block;
/*margin: 0.5vh;*/
/*border: 1px solid blue;*/
/* padding-top: 1vh;
padding-bottom: 1vh;
padding-right: 2vh;
padding-left: 2vh;
*/
background: rgba(0,0,0,0.2);
color: #b0b0b0;
text-shadow:
#888888 1px 1px 0,
#666666 2px 2px 0,
#444444 3px 3px 0,
#222222 4px 4px 0,
#000000 5px 5px 0;
}
h1 {
text-align: center;
text-transform: uppercase;
}
#ftitle {
position: relative;
width: calc(100% - 2vh);
height: calc(10% - 2vh);
margin-left: 1vh;
margin-top: 1vh;
margin-bottom: 1vh;
padding-top: 0vh;
padding-left: 2vh;
padding-right: 2vh;
color: #ccdde0;
}
#ftime {
position: relative;
width: calc(100% - 2vh);
height: calc(15% - 2vh);
margin-left: 1vh;
margin-top: 1vh;
margin-bottom: 1vh;
padding-top: 0vh;
padding-left: 2vh;
padding-right: 2vh;
text-align: center;
color: #ccdde0;
font-size: 7.7vh;
cursor: pointer;
}
/* hide time by default */
#ftime_val { visibility: hidden; }
#fmain {
/*float: left;*/
position: relative;
width: calc(100% - 2vh);
height: calc(60% - 1vh);
margin-left: 1vh;
padding: 1vh;
/*border: 1px solid yellow;*/
text-align: center;
/*padding: 7%;*/
color: #ccdde0;
}
#fmain_val {
font-size: 20vh;
}
#fbuttons {
position: relative;
width: calc(100% - 2vh);
height: calc(15% - 2vh);
margin-left: 1vh;
margin-top: 1vh;
margin-bottom: 1vh;
padding-top: 2vh;
padding-left: 2vh;
padding-right: 2vh;
}
#btn_next, #btn_prev, #btn_reset
{
height: calc(100% - 2vh);
width: calc(33% - 1vh);
/*border-style: outset;*/
background-color: rgba(0,0,0,0.4);
cursor:pointer;
float: left;
padding-left: 2vh;
padding-right: 2vh;
box-shadow: 10px 10px 0px 0px rgba(0,0,0,0.6);
vertical-align:middle;
text-align: center;
user-select: none;
}
#btn_next50, #btn_prev50, #btn_reset50
{
height: calc(100% - 2vh);
width: calc(50% - 1vh);
/*border-style: outset;*/
background-color: rgba(0,0,0,0.4);
cursor:pointer;
float: left;
padding-left: 2vh;
padding-right: 2vh;
box-shadow: 10px 10px 0px 0px rgba(0,0,0,0.6);
vertical-align:middle;
text-align: center;
user-select: none;
}
#btn_next:active, #btn_prev:active, #btn_reset:active,
#btn_next50:active, #btn_prev50:active, #btn_reset50:active
{
color: #ffffff;
box-shadow: 0 0 5px -1px rgba(0,0,0,0.6);
background-color: rgba(0,0,0,0.8);
box-shadow: 10px 10px 0px 0px rgba(0,0,0,1);
}
#btn_prev, #btn_reset,
#btn_prev50, #btn_reset50
{
margin-right: 2vh;
}
#btn_next
{
}
#fdate_date {
float: left;
/*display: inline-block;*/
width: 80%;
text-align: left;
/*border: 1px solid green;*/
margin: 0; padding: 0;
}
#fdate_clock {
float: right;
/*display: inline-block;*/
width: 20%;
text-align: right;
/*border: 1px solid red;*/
margin: 0; padding: 0;
}
img.bombbunny {
height: 100%;
} | qwtime.css | body {
font-family: "Open Sans", Tahoma, sans-serif;
font-size: 5.7vh;
background: #233a40;
color: #ddd;
margin: 0;
padding: 0;
position:absolute; width:100%; height:100%;
}
* {
box-sizing: border-box;
}
.stdblock {
display: block;
/*margin: 0.5vh;*/
/*border: 1px solid blue;*/
/* padding-top: 1vh;
padding-bottom: 1vh;
padding-right: 2vh;
padding-left: 2vh;
*/
background: rgba(0,0,0,0.2);
color: #b0b0b0;
text-shadow:
#888888 1px 1px 0,
#666666 2px 2px 0,
#444444 3px 3px 0,
#222222 4px 4px 0,
#000000 5px 5px 0;
}
h1 {
text-align: center;
text-transform: uppercase;
}
#ftitle {
position: relative;
width: calc(100% - 2vh);
height: calc(10% - 2vh);
margin-left: 1vh;
margin-top: 1vh;
margin-bottom: 1vh;
padding-top: 0vh;
padding-left: 2vh;
padding-right: 2vh;
color: #ccdde0;
}
#ftime {
position: relative;
width: calc(100% - 2vh);
height: calc(15% - 2vh);
margin-left: 1vh;
margin-top: 1vh;
margin-bottom: 1vh;
padding-top: 0vh;
padding-left: 2vh;
padding-right: 2vh;
text-align: center;
color: #ccdde0;
font-size: 7.7vh;
cursor: pointer;
}
/* hide time by default */
#ftime_val { visibility: hidden; }
#fmain {
/*float: left;*/
position: relative;
width: calc(100% - 2vh);
height: calc(60% - 1vh);
margin-left: 1vh;
padding: 1vh;
/*border: 1px solid yellow;*/
text-align: center;
/*padding: 7%;*/
color: #ccdde0;
}
#fmain_val {
font-size: 20vh;
}
#fbuttons {
position: relative;
width: calc(100% - 2vh);
height: calc(15% - 2vh);
margin-left: 1vh;
margin-top: 1vh;
margin-bottom: 1vh;
padding-top: 2vh;
padding-left: 2vh;
padding-right: 2vh;
}
#btn_next, #btn_prev, #btn_reset
{
height: calc(100% - 2vh);
width: calc(33% - 1vh);
/*border-style: outset;*/
background-color: rgba(0,0,0,0.4);
cursor:pointer;
float: left;
padding-left: 2vh;
padding-right: 2vh;
box-shadow: 10px 10px 0px 0px rgba(0,0,0,0.6);
vertical-align:middle;
text-align: center;
user-select: none;
}
#btn_next50, #btn_prev50, #btn_reset50
{
height: calc(100% - 2vh);
width: calc(50% - 1vh);
/*border-style: outset;*/
background-color: rgba(0,0,0,0.4);
cursor:pointer;
float: left;
padding-left: 2vh;
padding-right: 2vh;
box-shadow: 10px 10px 0px 0px rgba(0,0,0,0.6);
vertical-align:middle;
text-align: center;
user-select: none;
}
#btn_next:active, #btn_prev:active, #btn_reset:active,
#btn_next50:active, #btn_prev50:active, #btn_reset50:active
{
color: #ffffff;
box-shadow: 0 0 5px -1px rgba(0,0,0,0.6);
background-color: rgba(0,0,0,0.8);
box-shadow: 10px 10px 0px 0px rgba(0,0,0,1);
}
#btn_prev, #btn_reset,
#btn_prev50, #btn_reset50
{
margin-right: 2vh;
}
#btn_next
{
}
#fdate_date {
float: left;
/*display: inline-block;*/
width: 80%;
text-align: left;
/*border: 1px solid green;*/
margin: 0; padding: 0;
}
#fdate_clock {
float: right;
/*display: inline-block;*/
width: 20%;
text-align: right;
/*border: 1px solid red;*/
margin: 0; padding: 0;
}
img.bombbunny {
height: 100%;
} | 0.252108 | 0.088939 |
@charset "UTF-8";
/** This mixin makes a single line element fit exactly on the Roboto font for easier integration. */
@font-face {
font-family: "Roboto-Black";
src: url("/Fonts/Roboto-Black.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Roboto-Bold";
src: url("/Fonts/Roboto-Bold.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "RobotoMono-Regular";
src: url("/Fonts/RobotoMono-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'kitty';
src: url("/Fonts/icons/icon.svg") format("svg"), url("/Fonts/icons/icon.ttf") format("truetype");
font-weight: normal;
font-style: normal;
-coherent-font-sdf: off; }
@font-face {
font-family: "Barlow-Black";
src: url("/Fonts/Barlow-Black.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-BlackItalic";
src: url("/Fonts/Barlow-BlackItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-Bold";
src: url("/Fonts/Barlow-Bold.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-BoldItalic";
src: url("/Fonts/Barlow-BoldItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-ExtraBold";
src: url("/Fonts/Barlow-ExtraBold.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-ExtraBoldItalic";
src: url("/Fonts/Barlow-ExtraBoldItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-ExtraLight";
src: url("/Fonts/Barlow-ExtraLight.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-ExtraLightItalic";
src: url("/Fonts/Barlow-ExtraLightItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-Italic";
src: url("/Fonts/Barlow-Italic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-Light";
src: url("/Fonts/Barlow-Light.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-LightItalic";
src: url("/Fonts/Barlow-LightItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-Medium";
src: url("/Fonts/Barlow-Medium.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-MediumItalic";
src: url("/Fonts/Barlow-MediumItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-SemiBold";
src: url("/Fonts/Barlow-SemiBold.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-SemiBoldItalic";
src: url("/Fonts/Barlow-SemiBoldItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-Thin";
src: url("/Fonts/Barlow-Thin.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-ThinItalic";
src: url("/Fonts/Barlow-ThinItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Arial";
src: url("/Fonts/arial.ttf") format("truetype"); }
/**
CORRECT FONT DEFINITIONS
*/
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-ExtraLight.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-ExtraLightItalic.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-LightItalic.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Thin.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-ThinItalic.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: "Barlow-Black";
src: url("/Fonts/Barlow-Black.ttf") format("truetype");
font-weight: 400;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Italic.ttf") format("truetype");
font-weight: 400;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-MediumItalic.ttf") format("truetype");
font-weight: 500;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-SemiBold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-SemiBoldItalic.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-BoldItalic.ttf") format("truetype");
font-weight: 700;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-ExtraBold.ttf") format("truetype");
font-weight: 800;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-ExtraBoldItalic.ttf") format("truetype");
font-weight: 800;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-BlackItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
/******* Foreign Fonts ******/
@font-face {
font-family: "Simsun";
src: url("/Fonts/simsun.ttc") format("truetype");
font-weight: 400;
font-style: normal; }
@font-face {
font-family: "Malgun";
src: url("/Fonts/malgun.ttf") format("truetype");
font-weight: 400;
font-style: normal; }
/****** CALIBRI ******/
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibril.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibril.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibril.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibril.ttf") format("truetype");
font-weight: 400;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibrili.ttf") format("truetype");
font-weight: 400;
font-style: italic; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibri.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibrii.ttf") format("truetype");
font-weight: 500;
font-style: italic; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibri.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibrib.ttf") format("truetype");
font-weight: 700;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibriz.ttf") format("truetype");
font-weight: 700;
font-style: italic; }
@font-face {
font-family: "Roboto-Regular";
src: url("/Fonts/Roboto-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Roboto-Regular";
src: url("/Fonts/Roboto-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal; }
@font-face {
font-family: "Roboto-Regular";
src: url("/Fonts/Roboto-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
:root {
--viewportWidthRatio: 1;
--viewportHeightRatio: 1;
--color-yellow: #FFD300;
--color-cyan: #00b4ff;
--color-white: #FFFFFF;
--color-black: #000000;
--color-red: #FF2704;
--color-green: #11ee31;
--color-black-op0: transparent;
--color-black-op10: rgba(0, 0, 0, 0.1);
--color-black-op20: rgba(0, 0, 0, 0.2);
--color-black-op30: rgba(0, 0, 0, 0.3);
--color-black-op50: rgba(0, 0, 0, 0.5);
--color-black-op60: rgba(0, 0, 0, 0.6);
--color-white-op10: rgba(255, 255, 255, 0.1);
--color-white-op15: rgba(255, 255, 255, 0.15);
--color-white-op20: rgba(255, 255, 255, 0.2);
--color-white-op30: rgba(255, 255, 255, 0.3);
--color-white-op50: rgba(255, 255, 255, 0.5);
--color-gray: #72757a;
--color-dark-gray: #3F4751;
--color-darker-gray: #282E34;
--color-dark-gray-vr: rgba(63, 71, 81, 0.8);
--color-darker-gray-vr: rgba(40, 46, 52, 0.8);
--color-light-gray: #c4c5c6;
--color-transparent-white: rgba(255, 255, 255, 0);
--primaryColor: var(--color-cyan);
--accentColor: var(--color-yellow);
--copilotActivity: var(--accentColor);
--color-online: #ABE328;
--textColor: var(--color-white);
--textErrorColor: var(--color-red);
--textValidationColor: var(--color-green);
--textColorGray: var(--color-light-gray);
--contrastedTextHintColor: var(--color-gray);
--contrastedTextColor: var(--color-dark-gray);
--outlineColor: var(--color-transparent-white);
--outlineColorHover: var(--color-white);
--outlineContrastedColor: var(--color-dark-gray);
--tableBorderColor: var(--color-white);
--tableBackgroundColor: var(--color-white);
--tableColor: var(--color-white);
--tableHeaderBorderColor: var(--color-white-op20);
--tableHeaderBackgroundColor: transparent;
--tableHeaderColor: var(--color-white);
--tableSeparatorColor: var(--color-white);
--listSeparatorColor: var(--color-white-op30);
--overWhiteListSeparatorColor: var(--color-black-op20);
--colorBorderThin: var(--listSeparatorColor);
--backgroundColorPanel: var(--color-black-op20);
--backgroundColorContrastedPanel: var(--color-white-op20);
--backgroundColorComponent: var(--color-black-op10);
--backgroundColorContrastedComponent: var(--color-white-op10);
--backgroundColorDarkerPanel: var(--color-black-op30);
--backgroundColorOverlay: var(--color-black-op60);
--backgroundColorInput: var(--color-dark-gray);
--outlineColorInput: var(--color-darker-gray);
--filterShadow: drop-shadow(0 0 calc(var(--screenHeight) * (6px / 2160)) rgba(0, 0, 0, 0.4));
--useFilterGrayscale: grayscale(100%);
--filterGrayscale: grayscale(0%);
--filterBlur: blur(0);
--textShadow: 0px 0px calc(var(--screenHeight) * (6px / 2160)) rgba(0, 0, 0, 0.4);
--coherentAA: on;
--inputBackGround: #c2c6cc;
/**** BUTTON STATES COLORS *******/
--enabledColor: var(--color-white);
--enabledBackGroundColor: var(--primaryColor);
--enabledBackgroundColor: var(--primaryColor);
--enabledHoverColor: var(--primaryColor);
--enabledHoverBackGroundColor: var(--color-white);
--enabledHoverBackgroundColor: var(--color-white);
--disabledColor: var(--color-dark-gray);
--disabledBackGroundColor: rgba(64, 68, 73, 0.5);
--disabledHoverColor: var(--color-white);
--disabledHoverBackgroundColor: var(--color-white-op30);
--activeColor: var(--color-white);
--activeBackGroundColor: var(--color-dark-gray);
--activeBackgroundColor: var(--color-dark-gray);
--selectedColor: var(--color-dark-gray);
--selectedBackgroundColor: var(--color-white);
--selectedHoverColor: var(--primaryColor);
--selectedHoverBackgroundColor: var(--color-white);
/*************** FONTS ****************/
--fontMono: RobotoMono-Regular, Arial, Simsun, Malgun;
--font: Roboto-Regular, Arial, Simsun, Malgun;
/*--fontBlack: Roboto-Black;*/
--fontBlackItalic: Barlow-BlackItalic, Arial;
--fontBold: Barlow-Bold, Arial;
--fontBoldItalic: Barlow-BoldItalic, Arial;
--fontExtraBold: Barlow-ExtraBold, Arial;
--fontExtraBoldItalic: Barlow-ExtraBoldItalic, Arial;
--fontExtraLight: Barlow-ExtraLight, Arial;
--fontExtraLightItalic: Barlow-ExtraLightItalic, Arial;
--fontItalic: Barlow-Italic, Arial;
--fontLight: Barlow-Light, Arial;
--fontLightItalic: Barlow-LightItalic, Arial;
--fontMedium: Barlow-Medium, Arial;
--fontMediumItalic: Barlow-MediumItalic, Arial;
--fontRegular: Barlow-Regular, Arial;
--fontSemiBold: Barlow-SemiBold, Arial;
--fontSemiBoldItalic: Barlow-SemiBoldItalic, Arial;
--fontThin: Barlow-Thin, Arial;
--fontThinItalic: Barlow-ThinItalic, Arial;
--minimalFontSize: 18;
--sizeDeviceButton: 15;
--sizeParagraph: 18;
--sizeDefault: 24;
--sizeMedium: 30;
--sizeBig: 36;
--sizeXXL: 48;
--fontSizeDeviceButton: calc(var(--screenHeight) * (30px / 2160));
--fontSizeParagraph: calc(var(--screenHeight) * (36px / 2160));
--fontSizeDefault: calc(var(--screenHeight) * (48px / 2160));
--fontSizeMedium: calc(var(--screenHeight) * (60px / 2160));
--fontSizeBig: calc(var(--screenHeight) * (72px / 2160));
--fontSizeXXL: calc(var(--screenHeight) * (96px / 2160));
--fontSizeXXXL: calc(var(--screenHeight) * (120px / 2160));
--lineHeightDefault: 1.4;
--defaultAnimation: all ease .234s;
--animationTime: 0.3s;
--animationTimeFast: 0.1s;
--animationEffect: ease-out;
--inputBarHeight: calc(var(--screenHeight) * (80px / 1080));
--pageWidth: calc(var(--unscaledScreenHeight) * (3336px / 2160));
--fullPageWidth: calc(var(--unscaledScreenHeight) * (1840px / 1080));
--scaledPageWidth: calc(var(--screenHeight) * (3336px / 2160));
--pageMargin: calc(var(--unscaledScreenHeight) * (242px / 2160));
--pageLeftPos: calc(var(--screenHeight) * (242px / 2160));
--pageTop: calc(var(--screenHeight) * (278px / 2160));
--popInWidth: var(--pageWidth);
--popInHeight: calc(var(--screenHeight) * (1760px / 2160));
--flowBarHeight: calc(var(--screenHeight) * (158px / 2160));
--margin: 24px;
--baseMargin: calc(var(--screenHeight) * (12px / 1080));
--halfMargin: calc(var(--screenHeight) * (6px / 1080));
--quartMargin: calc(var(--screenHeight) * (3px / 1080));
--basePadding: calc(var(--screenHeight) * (12px / 1080));
--pageHeight: calc(var(--unscaledScreenHeight) * (806px / 1080));
--quartPadding: calc(var(--screenHeight) * (3px / 1080));
--halfPadding: calc(var(--screenHeight) * (6px / 1080));
--optionContentWidth: calc(var(--screenHeight) * (350px / 1080));
--optionLineHeight: calc(var(--screenHeight) * (36px / 1080));
--currentPageHeight: 1080px;
--minimalBorderWidth: 1px; }
body.transition {
--animationTime: 0.3s; }
.blockout {
--mainRGBABg: #323232 !important;
--primaryColor: lightgrey;
--secondaryColor: #ffffff;
--disabledColor: grey;
--defaultColor: grey;
--defaultTexte: #ffffff;
--clickableColor: #ffffff;
--selectedHoverColor: black;
--selectedColor: var(--defaultTexte);
--primaryColor: gray;
--textColor: #FFFFFF;
--contrastedTextColor: #000;
--outlineColor: rgba(255, 255, 255, 0);
--outlineColorHover: white;
--tableBorderColor: white;
--tableBackgroundColor: white;
--tableColor: white;
--tableHeaderBorderColor: white;
--tableHeaderBackgroundColor: white;
--tableHeaderColor: white;
--tableSeparatorColor: white;
--backgroundColor: rgba(0, 0, 0, 0.1);
--backgroundColorContrastedPanel: rgba(255, 255, 255, 0.2);
--panel: var(--backgroundColorPanel);
--filterShadow: drop-shadow(0 0 calc(var(--screenHeight) * (10px / 2160)) black);
--copilotActivity: var(--color-yellow);
--inputBackGround: #c2c6cc;
--enabledColor: #ffffff;
--enabledBackGroundColor: black;
--enabledHoverColor: black;
--enabledHoverBackGroundColor: #ffffff;
--disabledColor: gray;
--disabledBackGroundColor: lightgray;
--activeColor: #ffffff;
--activeBackGroundColor: black;
--selectedColor: gray;
--selectedBackgroundColor: #ffffff;
--selectedHoverColor: black;
--selectedHoverBackgroundColor: #ffffff; }
@keyframes marquee {
0% {
left: 0; }
1% {
left: -1px; }
100% {
left: -200px; } }
@keyframes fromLeft {
/*0% { left: get-vw(22px); }
10% { left: get-vw(11px); }
100% { left: get-vw(22px); }*/ }
@keyframes zoomInOut {
0% {
transform: scale(1); }
100% {
transform: scale(1); } }
@keyframes bodyLoad {
0% {
transform: scale(0);
left: -100vw; }
100% {
transform: scale(1);
left: 0; } }
@media (min-width: 3800px) {
:root {
--minimalBorderWidth: calc(var(--screenHeight) * (1.05px / 1080)); } }
.IconTextElement {
background-size: contain; }
.IconTextElement > icon-element {
height: 100%; }
ui-element {
display: block; }
ui-navigation-bloc, options-menu {
display: block; }
ui-navigation-bloc.no-outline, options-menu.no-outline {
outline: none !important; }
ui-navigation-bloc.Focused, options-menu.Focused {
outline: var(--halfMargin) solid white;
/* [COHERENT BUG] Outline cannot be animated alone, requires another property to be animated as it won't trigger repaint by itself. */
/*animation: outlineAnimOutward 1.2s infinite linear;
@keyframes outlineAnimOutward {
0% {
outline: var(--halfMargin) solid white;
}
50% {
outline: var(--halfMargin) solid rgba(255, 255, 255, 0.5);
}
100% {
outline: var(--halfMargin) solid white;
}
}*/ }
ui-navigation-bloc.insideMode, options-menu.insideMode {
outline: var(--halfMargin) solid white; }
#fakeFooter {
height: calc(var(--screenHeight) * (160px / 2160));
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: var(--backgroundColorPanel); }
*, *:before, *:after {
box-sizing: border-box;
margin: 0;
padding: 0; }
p {
font-weight: 400;
font-size: var(--fontSizeParagraph);
line-height: 1em;
color: var(--textColor); }
.leftAlign {
text-align: left; }
.rightAlign {
text-align: right; }
.textDropShadow {
text-shadow: var(--textShadow); }
.ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis; }
html {
height: 100%;
width: 100%;
overflow: hidden; }
html body {
-webkit-user-select: none;
font-family: var(--font), sans-serif;
font-size: var(--fontSizeParagraph);
color: var(--textColor);
height: 100%;
width: 100%;
margin: 0;
padding: 0; }
html input {
font-family: var(--font), sans-serif; }
body > header {
position: absolute;
top: 0;
left: 0;
right: 0;
height: calc(var(--screenHeight) * (160px / 2160)); }
body > .container {
position: absolute;
left: 0;
right: 0;
top: calc(var(--screenHeight) * (284px / 2160));
bottom: 0; }
body .fullpage {
margin-left: auto;
margin-right: auto;
margin-top: calc(var(--screenHeight) * (284px / 2160));
width: calc(var(--screenHeight) * (3547px / 2160));
height: calc(var(--screenHeight) * (1752px / 2160));
display: flex;
justify-content: center;
align-content: center;
justify-content: flex-start;
align-content: flex-start; }
body .fullpage.center {
justify-content: center;
align-content: center; }
body.blur {
--filterBlur: blur(4px) !important;
filter: var(--filterBlur) var(--filterGrayscale) !important;
--filterShadow: none !important;
--textShadow: none !important;
--coherentAA: off !important;
pointer-events: none; }
body.greyed-popup:after, body.greyed-notif:after {
pointer-events: auto;
opacity: 1;
transition: opacity .15s; }
body:after {
content: '';
transition: opacity 0s;
display: block;
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
opacity: 0;
pointer-events: none;
background-color: var(--backgroundColorOverlay);
z-index: 1000; }
body.pushBack #Buttons {
box-sizing: border-box;
position: absolute;
width: auto;
right: 3vw;
top: 55vh;
padding: calc(var(--screenHeight) * (8px / 2160)); }
body.pushBack section {
background-color: var(--backgroundColorContrastedPanel); }
body.pushBack new-push-button {
width: calc(var(--viewportWidthRatio) * 13.0208333333vw);
max-width: calc(var(--viewportWidthRatio) * 13.0208333333vw);
margin-bottom: calc(var(--screenHeight) * (8px / 2160)); }
body.pushBack #HidePushbackHUD + p {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-self: center;
height: calc(var(--screenHeight) * (60px / 2160));
line-height: calc(var(--screenHeight) * (60px / 2160));
vertical-align: middle; }
body.pushBack .active ~ #TurnLeft,
body.pushBack .active ~ #TurnRight {
display: flex; }
body.pushBack #TurnLeft,
body.pushBack #TurnRight {
display: none; }
.hide,
.hidden,
.HIDDEN {
display: none !important; }
.HideByPause {
display: none !important; }
.invisible {
visibility: hidden; }
body {
transition: opacity ease-in-out 0.5s; }
.contentLoading {
opacity: 0 !important; }
.contentLoaded {
opacity: 1; }
.activeLoading {
position: relative; }
.activeLoading > *:not(.loading-overlay) {
/*visibility: hidden;*/
pointer-events: none; }
.activeLoading .loading-overlay {
opacity: 1; }
.loading-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 50;
background-color: var(--backgroundColorOverlay);
display: flex;
align-items: center;
justify-content: center; }
.loading-overlay__content {
display: flex;
align-items: center;
background-color: var(--backgroundColorPanel); }
.loading-overlay icon-stack {
--width: calc(var(--screenHeight) * (40px / 1080));
--height: calc(var(--screenHeight) * (40px / 1080));
background-color: var(--backgroundColorComponent);
margin-right: var(--halfMargin); }
.loading-overlay icon-stack icon-element {
animation: loadingAnimation 1.5s linear infinite; }
.loading-overlay l10n-label {
margin-right: var(--halfMargin); }
.barred-text {
text-decoration: line-through; }
.scrollbar {
overflow: auto;
--sbback: transparent;
--barcolor: var(--primaryColor); }
.scrollbar:hover {
--barcolor: var(--primaryColor); }
.scrollbar.disabled {
--sbback: var(--disabledColor);
--barcolor: var(--button); }
.scrollbar.disabled:hover {
--sbback: var(--disabledColor);
--barcolor: var(--disableOver); }
.scrollbar::-webkit-scrollbar-track {
background-color: var(--sbback); }
.scrollbar::-webkit-scrollbar {
width: calc(var(--screenHeight) * (20px / 2160));
background-color: var(--backgroundColorPanel); }
.scrollbar::-webkit-scrollbar-thumb {
border: solid calc(var(--screenHeight) * (5px / 2160)) var(--sbback);
background-color: var(--barcolor);
min-height: calc(var(--screenHeight) * (104px / 2160)); }
.scrollbar-h {
overflow: auto;
--sbback: transparent;
--barcolor: var(--primaryColor); }
.scrollbar-h:hover {
--barcolor: var(--primaryColor); }
.scrollbar-h.disabled {
--sbback: var(--disabledColor);
--barcolor: var(--button); }
.scrollbar-h.disabled:hover {
--sbback: var(--disabledColor);
--barcolor: var(--disableOver); }
.scrollbar-h::-webkit-scrollbar-track {
background-color: var(--sbback); }
.scrollbar-h::-webkit-scrollbar {
height: calc(var(--screenHeight) * (12px / 2160));
background-color: var(--backgroundColorPanel); }
.scrollbar-h::-webkit-scrollbar-thumb {
border: solid calc(var(--viewportWidthRatio) * 0.1302083333vw) var(--sbback);
background-color: var(--barcolor);
min-height: 40%; }
.scrollbarIngame {
overflow: auto;
--sbback: transparent;
--barcolor: cyan; }
.scrollbarIngame:hover {
--barcolor: cyan; }
.scrollbarIngame.disabled {
--sbback: var(--disabledColor);
--barcolor: var(--button); }
.scrollbarIngame.disabled:hover {
--sbback: var(--disabledColor);
--barcolor: var(--disableOver); }
.scrollbarIngame::-webkit-scrollbar-track {
background-color: var(--sbback); }
.scrollbarIngame::-webkit-scrollbar {
width: calc(var(--viewportWidthRatio) * 0.4166666667vw); }
.scrollbarIngame::-webkit-scrollbar-thumb {
border: solid calc(var(--viewportWidthRatio) * 0.2604166667vw) var(--sbback);
background-color: var(--barcolor);
min-height: 40%; }
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
opacity: 0;
margin: 0; }
.default-input {
border: var(--minimalBorderWidth) solid var(--primaryColor);
outline: var(--minimalBorderWidth) solid var(--color-black);
outline-offset: calc(var(--minimalBorderWidth) * -2);
background-color: var(--backgroundColorInput);
color: var(--textColor);
padding-right: calc(var(--screenHeight) * (12px / 2160));
padding-left: calc(var(--screenHeight) * (6px / 2160));
min-height: calc(var(--screenHeight) * (60px / 2160));
height: calc(var(--screenHeight) * (30px / 1080));
display: flex;
align-items: center; }
.default-input.alignLeft input {
text-align: left; }
.default-input input {
position: relative;
z-index: 2;
text-align: right;
color: white;
font-size: var(--fontSizeParagraph);
border: 0;
background-color: transparent;
width: 100%;
height: auto; }
.default-input input:hover::placeholder {
color: var(--textColor);
transition: color 0.2s ease-in-out; }
.default-input input:focus::placeholder {
color: rgba(255, 255, 255, 0); }
.default-input input::placeholder {
opacity: 1;
text-transform: uppercase;
color: var(--contrastedTextHintColor);
transition: opacity 0.1s ease-in-out;
font-weight: 500; }
.default-input.input-error {
border-color: var(--textErrorColor); }
.Focused .default-input input::placeholder {
color: var(--textColor); }
.Focused .default-input input:focus::placeholder {
color: rgba(255, 255, 255, 0); }
.default-textarea {
border: 1px solid var(--primaryColor);
outline: 1px solid var(--color-black);
outline-offset: -2px;
background-color: var(--backgroundColorInput);
color: var(--textColor);
padding: calc(var(--screenHeight) * (24px / 2160));
min-height: calc(var(--screenHeight) * (60px / 2160)); }
.ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis; }
.elementDropShadow {
filter: var(--filterShadow); }
.bottomShadow {
background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.12) 0%, transparent calc(var(--screenHeight) * (20px / 2160))); }
.list-element {
--mainColor: var(--textColor);
width: 100%;
border-top: calc(var(--screenHeight) * (2px / 2160)) solid var(--mainColor);
margin: 0;
padding: 0;
list-style-type: none; }
.list-element li {
margin: 0;
padding: 0;
border-bottom: calc(var(--screenHeight) * (2px / 2160)) solid var(--mainColor);
color: var(--mainColor);
display: flex;
align-items: center;
justify-content: center;
height: calc(var(--screenHeight) * (46px / 2160));
--fontSize: calc(var(--screenHeight) * (25px / 2160)); }
.list-element li .data,
.list-element li .value {
line-height: calc(var(--screenHeight) * (46px / 2160));
font-size: var(--fontSize);
display: block; }
.list-element li .data {
margin-right: auto;
text-transform: uppercase; }
.list-element li .value {
margin-left: auto; }
/*
%base-button {
align-items: center;
background-color: var(--enabledBackGroundColor);
display: flex;
flex: 1;
height: get-vh(80px);
justify-content: flex-start;
//max-width:get-vw(504px);
text-transform: uppercase;
letter-spacing: 0.5px;
&:hover {
&:not(.disabled):not(.locked):not(attr[disabled=true]):not([disabled='true']) {
background-color: var(--enabledHoverBackGroundColor);
color: var(--enabledHoverColor);
}
}
&.disabled,
&.locked,
&[disabled='true'] {
background-color: var(--disabledBackGroundColor);
color: var(--disabledColor) !important;
&:hover {
background-color: var(--disabledBackGroundColor);
color: var(--disabledColor) !important;
}
}
&.panelButton {
--lineHeightTitle: calc(var(--screenHeight) * (20px / 2160));
--HeightTitle: calc(var(--screenHeight) * (30px / 2160));
height: get-vh(117px);
width: 100%;
.PushButton {
width: 100%;
.textContentWrapper {
height: get-vh(64px);
width: 100%;
div {
display: flex;
justify-content: space-around !important;
align-items: flex-start;
flex-direction: column;
height: 100%;
width: 100%;
padding-left: get-vw(20px);
padding-right: get-vw(8px);
.title {
display: block;
font-weight: bold;
font-size: get-vh(28px);
line-height: 1;
margin: 0;
}
.subtitle {
&:empty {
display: none;
}
margin: 0;
display: block;
font-family: var(--font);
font-size: var(--HeightTitle);
line-height: 1;
//@include clamp(1);
@include ellipsis();
//overflow:hidden;
width: 100%;
}
}
}
}
}
&.small {
height: get-vh(60px);
max-height: get-vh(60px);
.ToggleButton,
.FlowButton,
.PushButton {
.textContentWrapper {
div {
.title {
font-size: get-vh(28px);
line-height: get-vh(22px);
height: get-vh(22px);
}
}
}
}
}
--lineHeightTitle: calc(var(--screenHeight) * (22px / 2160));
--HeightTitle: calc(var(--screenHeight) * (32px / 2160));
.ToggleButton,
.FlowButton,
.PushButton {
align-items: center;
display: flex;
.textContentWrapper {
align-items: center;
display: flex;
justify-content: flex-start;
height: 100%;
div {
display: flex;
justify-content: space-around;
align-items: flex-start;
flex-direction: column;
height: 100%;
.title {
display: block;
font-weight: bold;
font-size: var(--HeightTitle);
line-height: calc( var(--HeightTitle) * 1.1);
margin: 0;
}
.subtitle {
&:empty {
display: none;
}
margin: 0;
display: block;
font-family: var(--font);
font-size: var(--HeightTitle);
line-height: var(--lineHeightTitle);
}
}
}
}
}
*/
.radio {
--backgroundColor: var(--primaryColor);
--dotColor: var(--primaryColor);
--iconSize: calc(var(--screenHeight) * (32px / 2160));
--textColor: var(--textColor);
display: flex;
flex-direction: row; }
.radio.vertical {
flex-direction: column;
margin-bottom: calc(var(--screenHeight) * (24px / 2160)); }
.radio.disabled {
--backgroundColor: var(--button);
--dotColor: var(--button);
--textColor: var(--button); }
.radio.disabled .choices:hover {
--backgroundColor: var(--disableOver);
--dotColor: var(--disableOver);
--textColor: var(--disableOver); }
.radio.disabled .choices.checked {
--dotColor: var(--backgroundColorPanel); }
.radio.disabled .choices.checked:hover {
--backgroundColor: var(--disableOver);
--dotColor: var(--backgroundColorPanel);
--textColor: var(--disableOver); }
.radio.disabled .choices.checked:hover .icon {
--iconSize: calc(var(--screenHeight) * (32px / 2160)); }
.radio .choices {
align-items: center;
display: flex;
height: calc(var(--screenHeight) * (40px / 2160));
justify-content: flex-start;
margin-bottom: calc(var(--screenHeight) * (12px / 2160)); }
.radio .choices:hover {
--backgroundColor: var(--primaryColor);
--dotColor: var(--primaryColor); }
.radio .choices.checked {
--dotColor: var(--textcolor); }
.radio .choices.checked:hover .icon {
--iconSize: calc(var(--screenHeight) * (40px / 2160)); }
.radio .choices.disabled {
--dotColor: var(--textColor); }
.radio .choices.disabled:hover .icon {
--iconSize: calc(var(--screenHeight) * (40px / 2160)); }
.radio .choices .iconWrapper {
align-items: center;
display: flex;
height: calc(var(--screenHeight) * (40px / 2160));
justify-content: center;
width: calc(var(--screenHeight) * (40px / 2160)); }
.radio .choices .iconWrapper .icon {
background-color: var(--backgroundColorPanel);
border-radius: 50%;
height: var(--iconSize);
position: relative;
width: var(--iconSize); }
.radio .choices .iconWrapper .icon:after {
background-color: var(--dotColor);
border-radius: 50%;
content: '';
display: block;
height: calc(var(--screenHeight) * (16px / 2160));
left: 50%;
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
width: calc(var(--screenHeight) * (16px / 2160)); }
.radio .choices .text {
color: var(--textColor);
font-weight: bold;
font-size: calc(var(--screenHeight) * (26px / 2160));
left: calc(var(--screenHeight) * (20px / 2160));
line-height: calc(var(--screenHeight) * (32px / 2160));
position: relative;
text-transform: uppercase;
top: calc(var(--screenHeight) * (4px / 2160)); }
.select {
--backgroundColor: var(--button); }
.selectSearch {
--backgroundColor: var(--textfield);
--inputcolor: #000; }
input {
font-size: var(--fontSizeParagraph);
color: black; }
.select,
.selectSearch {
position: relative;
--defaultHeight: calc(var(--screenHeight) * (32px / 2160));
--itemsBackgroundColor: var(--enabledBackGroundColor);
--listTextColor: var(--enabledColor);
--listMaxHeight: calc( calc(var(--screenHeight) * (32px / 2160)) * 4);
--iconColor: var(--primaryColor);
--borderBottom: calc(var(--screenHeight) * (2px / 2160)) solid transparent;
--fontSize: calc(var(--screenHeight) * (26px / 2160));
width: calc(var(--screenHeight) * (436px / 2160));
text-transform: uppercase;
font-size: var(--fontSize);
line-height: calc(var(--screenHeight) * (36px / 2160)); }
.select:active, .select:hover, .select:focus, .select.open,
.selectSearch:active,
.selectSearch:hover,
.selectSearch:focus,
.selectSearch.open {
--iconColor: var(--enabledHoverColor);
--backgroundColor: var(--enabledHoverBackGroundColor);
--textColor: var(--enabledHoverColor); }
.select:active .list, .select:hover .list, .select:focus .list, .select.open .list,
.selectSearch:active .list,
.selectSearch:hover .list,
.selectSearch:focus .list,
.selectSearch.open .list {
max-height: var(--listMaxHeight);
z-index: 2; }
.select:active .default:after, .select:hover .default:after, .select:focus .default:after, .select.open .default:after,
.selectSearch:active .default:after,
.selectSearch:hover .default:after,
.selectSearch:focus .default:after,
.selectSearch.open .default:after {
transform: rotate(270deg);
transform-origin: center; }
.select.disabled,
.selectSearch.disabled {
--iconColor: var(--disabledColor);
--textColor: var(--disabledColor);
--backgroundColor: var(--disabledBackGroundColor); }
.select.disabled:hover, .select.disabled:focus, .select.disabled.open,
.selectSearch.disabled:hover,
.selectSearch.disabled:focus,
.selectSearch.disabled.open {
--iconColor: var(--disabledColor);
--textColor: var(--disabledColor);
--backgroundColor: var(--disabledBackGroundColor); }
.select.disabled:hover .list, .select.disabled:focus .list, .select.disabled.open .list,
.selectSearch.disabled:hover .list,
.selectSearch.disabled:focus .list,
.selectSearch.disabled.open .list {
max-height: 0;
display: none; }
.select.disabled:hover .default:after, .select.disabled:focus .default:after, .select.disabled.open .default:after,
.selectSearch.disabled:hover .default:after,
.selectSearch.disabled:focus .default:after,
.selectSearch.disabled.open .default:after {
transform: rotate(90deg);
transform-origin: center; }
.select .default,
.selectSearch .default {
border-top: calc(var(--screenHeight) * (2px / 2160)) solid transparent;
display: flex;
align-items: center;
justify-content: flex-start;
background: var(--backgroundColorPanel);
height: var(--defaultHeight);
color: var(--textColor);
padding-left: calc(var(--screenHeight) * (18px / 2160)); }
.select .default:after,
.selectSearch .default:after {
margin-left: auto;
margin-right: calc(var(--viewportWidthRatio) * 0.2604166667vw);
transition: all ease-in .3s;
font-size: calc(var(--screenHeight) * (21px / 2160));
font-family: 'kitty' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
background-color: unset;
content: "" !important;
transform: rotate(90deg);
color: var(--iconColor);
height: calc(var(--screenHeight) * (21px / 2160));
width: calc(var(--screenHeight) * (13px / 2160)); }
.select input[type="text"],
.selectSearch input[type="text"] {
box-shadow: -1px 2px 10px 3px rgba(0, 0, 0, 0.3) inset;
display: flex;
align-items: center;
justify-content: flex-start;
background: var(--backgroundColorPanel);
border: 0;
height: var(--defaultHeight);
width: 100%;
padding: 0;
padding-left: calc(var(--screenHeight) * (18px / 2160));
font-size: var(--fontSize);
color: var(--inputcolor);
text-transform: uppercase; }
.select input[type="text"]::placeholder,
.selectSearch input[type="text"]::placeholder {
color: var(--inputcolor);
text-transform: uppercase; }
.select input[type="text"]:not(:placeholder-shown),
.selectSearch input[type="text"]:not(:placeholder-shown) {
background-color: var(--primaryColor); }
.select .list,
.selectSearch .list {
border-top: var(--borderBottom);
position: absolute;
left: 0;
right: 0;
background-color: var(--itemsBackgroundColor);
max-height: 0;
transition: all ease-in .3s;
display: block; }
.select .list .selected,
.selectSearch .list .selected {
display: none; }
.select .list.invertDirection,
.selectSearch .list.invertDirection {
top: unset;
bottom: 100%; }
.select .list div,
.selectSearch .list div {
height: var(--defaultHeight);
background-color: var(--itemsBackgroundColor);
color: var(--listTextColor);
padding-left: calc(var(--screenHeight) * (18px / 2160)); }
.select .list div:hover,
.selectSearch .list div:hover {
--itemsBackgroundColor: var(--primaryColor);
--listTextColor: var(--textColor); }
.select .list div:active,
.selectSearch .list div:active {
--listTextColor: var(--textColor); }
.imgWrap img {
max-width: 100%;
height: auto; }
body.mission {
font-family: var(--font) !important;
font-size: calc(var(--screenHeight) * (26px / 2160));
line-height: calc(var(--viewportWidthRatio) * 0.9375vw);
color: var(--textColor); }
body.mission header {
padding-left: calc(var(--viewportWidthRatio) * 0.9375vw);
padding-right: calc(var(--viewportWidthRatio) * 0.9375vw);
padding-top: calc(var(--screenHeight) * (24px / 2160));
padding-bottom: calc(var(--screenHeight) * (24px / 2160));
padding-left: calc(var(--viewportWidthRatio) * 0.46875vw);
background-color: var(--backgroundColorContrastedPanel);
font-size: calc(var(--screenHeight) * (32px / 2160));
line-height: 1;
text-transform: uppercase;
color: var(--textColor);
font-weight: bold;
text-shadow: var(--textShadow); }
body.mission p {
margin-bottom: calc(var(--screenHeight) * (32px / 2160));
text-shadow: var(--textShadow); }
body.mission .article-bodycopy {
background: var(--backgroundColorPanel); }
.article-bodycopy {
display: flex;
justify-content: flex-start;
align-items: center;
flex-direction: column;
padding-top: calc(var(--screenHeight) * (24px / 2160));
padding-bottom: calc(var(--screenHeight) * (24px / 2160));
padding-left: calc(var(--viewportWidthRatio) * 0.5208333333vw);
padding-right: calc(var(--viewportWidthRatio) * 0.5208333333vw); }
.article-bodycopy p {
color: var(--textColor); }
#DebugPanel {
position: absolute;
display: flex;
flex-direction: column;
width: 20vw;
background-color: antiquewhite;
z-index: 10000;
transform: rotateX(0);
height: auto;
top: 0;
right: 0; }
#DebugPanel .Console {
color: black;
background-color: white;
height: auto;
max-height: 30vh;
overflow: auto;
display: flex;
flex-direction: column-reverse; }
#DebugPanel .Console .warn {
color: orange; }
#DebugPanel .Console .error {
color: red; }
#DebugPanel .debugButton {
background-color: lightgray;
color: black;
display: block;
margin: 10px;
height: 20px; }
#DebugPanel .debugButton:hover {
background-color: darkslategrey;
color: var(--textColor); }
input[type=range] {
--rangeBackgroundColor: var(--backgroundColorInput);
-webkit-appearance: none;
width: 100%;
margin: calc(var(--screenHeight) * (9px / 2160)) 0;
--rangePosition: 100%;
--cursorColor: var(--primaryColor);
--cursorBorderColor: white; }
input[type=range]:focus {
outline: none; }
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: calc(var(--screenHeight) * (12px / 2160));
cursor: pointer;
background: var(--primaryColor);
background: linear-gradient(to right, var(--primaryColor) 0%, var(--primaryColor) var(--rangePosition), var(--rangeBackgroundColor) var(--rangePosition), var(--rangeBackgroundColor) 100%);
border-radius: 0px;
border: none; }
input[type=range]::-webkit-slider-thumb {
border: calc(var(--screenHeight) * (4px / 2160)) solid var(--cursorBorderColor);
height: calc(var(--screenHeight) * (30px / 2160));
width: calc(var(--screenHeight) * (30px / 2160));
transform: scale(1.05);
border-radius: calc(var(--screenHeight) * (30px / 2160));
background: var(--cursorColor);
cursor: pointer;
margin-top: calc(var(--screenHeight) * (-9px / 2160)); }
input[type=range]::-webkit-slider-thumb:hover {
--cursorBorderColor: var(--primaryColor);
--cursorColor: white; }
input[type=range].clicked::-webkit-slider-thumb {
border-color: var(--activeColor);
background-color: var(--activeBackGroundColor); }
input[type=range]:focus::-webkit-slider-runnable-track {
background: var(--primaryColor); }
external-link {
text-decoration: underline;
color: var(--primaryColor);
display: inline;
margin-left: var(--halfMargin);
margin-right: var(--halfMargin); }
external-link.as-button {
display: flex;
align-items: center;
height: calc(var(--screenHeight) * (60px / 2160));
padding: calc(var(--screenHeight) * (12px / 2160)) calc(var(--screenHeight) * (12px / 2160));
margin: calc(var(--screenHeight) * (12px / 2160)) calc(var(--screenHeight) * (12px / 2160));
background-color: var(--enabledBackGroundColor);
color: var(--enabledColor);
text-decoration: none;
font-size: var(--fontSizeParagraph); }
external-link.Focused {
color: var(--secondaryColor); }
external-link.Focused.as-button {
background-color: var(--enabledHoverBackGroundColor);
color: var(--enabledHoverColor); }
internal-link {
margin: calc(var(--screenHeight) * (12px / 2160)) calc(var(--screenHeight) * (12px / 2160));
padding: calc(var(--screenHeight) * (12px / 2160)) calc(var(--screenHeight) * (12px / 2160));
display: inline-block;
background-color: var(--enabledBackGroundColor);
color: var(--enabledColor); }
internal-link.Focused {
background-color: var(--enabledHoverBackGroundColor);
color: var(--enabledHoverColor); }
i {
font-family: var(--fontItalic); }
ui-image {
display: block;
position: relative;
--transitionTime: 0.3s;
--position: center center;
/** theme **/ }
ui-image.containFit .BackBuffer, ui-image.containFit .MainImage {
object-fit: contain; }
ui-image.no-fit .BackBuffer, ui-image.no-fit .MainImage {
object-fit: scale-down; }
ui-image.force-natural-ratio .MainElem, ui-image.force-natural-ratio .MainImage {
position: initial;
top: initial;
left: initial; }
ui-image .BackBuffer, ui-image .MainImage, ui-image .MainElem, ui-image .BackElem {
position: absolute;
top: 0;
left: 0;
object-fit: cover;
object-position: var(--position);
width: 100%;
height: 100%;
opacity: 1;
transition: opacity ease-in-out var(--transitionTime); }
ui-image .BackBuffer.invisible, ui-image .MainImage.invisible, ui-image .MainElem.invisible, ui-image .BackElem.invisible {
opacity: 0 !important;
visibility: visible; }
ui-image .BackBuffer.ImageLoading, ui-image .MainImage.ImageLoading, ui-image .MainElem.ImageLoading, ui-image .BackElem.ImageLoading {
transition: none;
opacity: 0; }
ul.dashed > li {
list-style-type: none !important;
text-indent: -5px; }
ul.dashed > li:before {
content: "-";
text-indent: -5px; }
/*********** DEVICE BUTTONS ***********/
device-button {
position: relative;
--textSize: var(--fontSizeDeviceButton);
display: flex;
flex-wrap: wrap;
align-items: center;
line-height: 1.4; }
device-button .text-icon-container {
display: flex;
align-items: center;
justify-content: center; }
device-button .text-icon-container:not(.no-image-found) {
height: 1em;
min-width: 1em;
margin: 0 -.4em; }
device-button .text-icon-container:not(.no-image-found) icon-element {
flex-shrink: 0;
--width: calc(100% + 1em);
--height: 290%; }
device-button .text-icon-container.no-image-found {
line-height: 0.95;
font-weight: bold;
margin: 0 var(--halfMargin); }
device-button .text-icon-container.no-image-found .text {
border-radius: 3px;
font-size: var(--textSize);
border: calc(var(--screenHeight) * (2px / 1080)) solid var(--iconColor, white);
text-align: center;
white-space: nowrap;
padding: .15em .25em;
color: var(--iconColor, white);
display: block;
vertical-align: baseline; }
device-button .separator {
margin: 0 var(--quartMargin); }
.nowrap-device-button device-button {
flex-wrap: nowrap; }
.paragraph-with-buttons {
--deviceButtonLineHeight: 1.4;
word-break: break-word; }
.paragraph-with-buttons device-button {
display: inline-flex; }
.paragraph-with-buttons device-button.has-icon {
vertical-align: middle;
top: calc((1 - var(--deviceButtonLineHeight)) * 1em / 2);
/* for paragraph with line-height 1.4*/ }
.paragraph-with-buttons device-button .text-icon-container:not(.no-image-found) {
margin: 0 -.4em; }
.paragraph-with-buttons device-button .text-icon-container.no-image-found {
margin: 0 .2em;
height: 1em;
vertical-align: 40%; }
.paragraph-with-buttons device-button .text-icon-container.no-image-found .text {
min-width: 1.6em; }
.noWrapDeviceButton device-button {
flex-wrap: nowrap; }
.condensedPanel {
--optionContentWidth: calc(var(--screenHeight) * (250px / 1080)); }
.resize-handle__x-left, .resize-handle__x-right {
position: absolute;
top: 0;
bottom: 0;
width: var(--resize-handle-size, 10px);
z-index: 2; }
.resize-handle__x-left {
left: 0; }
.resize-handle__x-right {
right: 0; }
.resize-handle__y {
position: absolute;
left: 0;
right: 0;
bottom: 0;
z-index: 2;
height: var(--resize-handle-size, 10px); }
.resize-handle__corner {
width: calc(var(--screenHeight) * (3px / 1080));
height: calc(var(--screenHeight) * (18px / 1080));
background-color: var(--enabledBackGroundColor);
position: absolute;
bottom: 0;
right: 0;
z-index: 3;
opacity: 0;
transition: opacity 0.2s ease-in-out;
/*&:hover {
background-color: var(--enabledHoverBackGroundColor);
&:after {
background-color: var(--enabledHoverBackGroundColor);
}
}*/ }
.resize-handle__corner:before {
content: '';
display: block;
position: absolute;
width: calc(var(--screenHeight) * (9px / 1080));
height: calc(var(--screenHeight) * (9px / 1080));
bottom: 0;
right: 0; }
.resize-handle__corner:after {
content: '';
display: block;
position: absolute;
width: calc(var(--screenHeight) * (18px / 1080));
height: calc(var(--screenHeight) * (3px / 1080));
bottom: 0;
right: 0;
background-color: var(--enabledBackGroundColor); }
ui-marquee {
min-width: 0;
overflow: hidden; }
ui-marquee.has-ellipsis {
text-overflow: ellipsis; }
ui-marquee.has-ellipsis > * {
display: inline; }
ui-marquee.centered-text > * {
margin: 0 auto; }
ui-marquee > * {
display: block;
white-space: nowrap;
width: fit-content; }
icon-element {
height: var(--height, calc(var(--screenHeight) * (72px / 2160)));
width: var(--width, calc(var(--screenHeight) * (72px / 2160)));
display: flex;
justify-content: center;
align-items: center;
background-color: var(--iconBGColor, transparent); }
icon-element svg.icon {
height: 100%;
max-width: 100%;
max-height: 100%;
fill: var(--iconColor, white); }
icon-element:not(.original-color) svg.icon path, icon-element:not(.original-color) svg.icon polygon, icon-element:not(.original-color) svg.icon rect {
fill: var(--iconColor, white); }
icon-element img {
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%; }
icon-element.loading {
animation: loadingAnimation 1s linear infinite; }
@keyframes loadingAnimation {
0% {
transform: rotate(0deg); }
100% {
transform: rotate(360deg); } }
/**
GLOBAL ANIMATIONS
*/
html:not(.animationsEnabled) * {
transition: none !important;
animation: none !important; }
/* [COHERENT BUG] Outline cannot be animated alone, requires another property to be animated as it won't trigger repaint by itself. */
@keyframes outlineAnim {
0% {
outline: calc(var(--screenHeight) * (1px / 1080)) solid rgba(255, 255, 255, 0);
outline-offset: calc(var(--screenHeight) * (-6px / 1080)); }
15% {
outline: calc(var(--screenHeight) * (1px / 1080)) solid white;
outline-offset: calc(var(--screenHeight) * (-6px / 1080)); }
42% {
outline: calc(var(--screenHeight) * (6px / 1080)) solid white;
outline-offset: calc(var(--screenHeight) * (-6px / 1080)); }
70% {
outline: calc(var(--screenHeight) * (1px / 1080)) solid white;
outline-offset: calc(var(--screenHeight) * (-1px / 1080)); }
95%, 100% {
outline: calc(var(--screenHeight) * (1px / 1080)) solid rgba(255, 255, 255, 0);
outline-offset: calc(var(--screenHeight) * (-1px / 1080)); } } | static/SDK/common.css | @charset "UTF-8";
/** This mixin makes a single line element fit exactly on the Roboto font for easier integration. */
@font-face {
font-family: "Roboto-Black";
src: url("/Fonts/Roboto-Black.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Roboto-Bold";
src: url("/Fonts/Roboto-Bold.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "RobotoMono-Regular";
src: url("/Fonts/RobotoMono-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: 'kitty';
src: url("/Fonts/icons/icon.svg") format("svg"), url("/Fonts/icons/icon.ttf") format("truetype");
font-weight: normal;
font-style: normal;
-coherent-font-sdf: off; }
@font-face {
font-family: "Barlow-Black";
src: url("/Fonts/Barlow-Black.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-BlackItalic";
src: url("/Fonts/Barlow-BlackItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-Bold";
src: url("/Fonts/Barlow-Bold.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-BoldItalic";
src: url("/Fonts/Barlow-BoldItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-ExtraBold";
src: url("/Fonts/Barlow-ExtraBold.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-ExtraBoldItalic";
src: url("/Fonts/Barlow-ExtraBoldItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-ExtraLight";
src: url("/Fonts/Barlow-ExtraLight.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-ExtraLightItalic";
src: url("/Fonts/Barlow-ExtraLightItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-Italic";
src: url("/Fonts/Barlow-Italic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-Light";
src: url("/Fonts/Barlow-Light.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-LightItalic";
src: url("/Fonts/Barlow-LightItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-Medium";
src: url("/Fonts/Barlow-Medium.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-MediumItalic";
src: url("/Fonts/Barlow-MediumItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-SemiBold";
src: url("/Fonts/Barlow-SemiBold.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-SemiBoldItalic";
src: url("/Fonts/Barlow-SemiBoldItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-Thin";
src: url("/Fonts/Barlow-Thin.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Barlow-ThinItalic";
src: url("/Fonts/Barlow-ThinItalic.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Arial";
src: url("/Fonts/arial.ttf") format("truetype"); }
/**
CORRECT FONT DEFINITIONS
*/
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-ExtraLight.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-ExtraLightItalic.ttf") format("truetype");
font-weight: 100;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Light.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-LightItalic.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Thin.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-ThinItalic.ttf") format("truetype");
font-weight: 300;
font-style: italic; }
@font-face {
font-family: "Barlow-Black";
src: url("/Fonts/Barlow-Black.ttf") format("truetype");
font-weight: 400;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Italic.ttf") format("truetype");
font-weight: 400;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Medium.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-MediumItalic.ttf") format("truetype");
font-weight: 500;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-SemiBold.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-SemiBoldItalic.ttf") format("truetype");
font-weight: 600;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-BoldItalic.ttf") format("truetype");
font-weight: 700;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-ExtraBold.ttf") format("truetype");
font-weight: 800;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-ExtraBoldItalic.ttf") format("truetype");
font-weight: 800;
font-style: italic; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
@font-face {
font-family: "Barlow-Regular";
src: url("/Fonts/Barlow-BlackItalic.ttf") format("truetype");
font-weight: 900;
font-style: italic; }
/******* Foreign Fonts ******/
@font-face {
font-family: "Simsun";
src: url("/Fonts/simsun.ttc") format("truetype");
font-weight: 400;
font-style: normal; }
@font-face {
font-family: "Malgun";
src: url("/Fonts/malgun.ttf") format("truetype");
font-weight: 400;
font-style: normal; }
/****** CALIBRI ******/
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibril.ttf") format("truetype");
font-weight: 100;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibril.ttf") format("truetype");
font-weight: 200;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibril.ttf") format("truetype");
font-weight: 300;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibril.ttf") format("truetype");
font-weight: 400;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibrili.ttf") format("truetype");
font-weight: 400;
font-style: italic; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibri.ttf") format("truetype");
font-weight: 500;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibrii.ttf") format("truetype");
font-weight: 500;
font-style: italic; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibri.ttf") format("truetype");
font-weight: 600;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibrib.ttf") format("truetype");
font-weight: 700;
font-style: normal; }
@font-face {
font-family: "Calibri";
src: url("/Fonts/calibriz.ttf") format("truetype");
font-weight: 700;
font-style: italic; }
@font-face {
font-family: "Roboto-Regular";
src: url("/Fonts/Roboto-Regular.ttf") format("truetype");
font-weight: normal;
font-style: normal; }
@font-face {
font-family: "Roboto-Regular";
src: url("/Fonts/Roboto-Bold.ttf") format("truetype");
font-weight: 700;
font-style: normal; }
@font-face {
font-family: "Roboto-Regular";
src: url("/Fonts/Roboto-Black.ttf") format("truetype");
font-weight: 900;
font-style: normal; }
:root {
--viewportWidthRatio: 1;
--viewportHeightRatio: 1;
--color-yellow: #FFD300;
--color-cyan: #00b4ff;
--color-white: #FFFFFF;
--color-black: #000000;
--color-red: #FF2704;
--color-green: #11ee31;
--color-black-op0: transparent;
--color-black-op10: rgba(0, 0, 0, 0.1);
--color-black-op20: rgba(0, 0, 0, 0.2);
--color-black-op30: rgba(0, 0, 0, 0.3);
--color-black-op50: rgba(0, 0, 0, 0.5);
--color-black-op60: rgba(0, 0, 0, 0.6);
--color-white-op10: rgba(255, 255, 255, 0.1);
--color-white-op15: rgba(255, 255, 255, 0.15);
--color-white-op20: rgba(255, 255, 255, 0.2);
--color-white-op30: rgba(255, 255, 255, 0.3);
--color-white-op50: rgba(255, 255, 255, 0.5);
--color-gray: #72757a;
--color-dark-gray: #3F4751;
--color-darker-gray: #282E34;
--color-dark-gray-vr: rgba(63, 71, 81, 0.8);
--color-darker-gray-vr: rgba(40, 46, 52, 0.8);
--color-light-gray: #c4c5c6;
--color-transparent-white: rgba(255, 255, 255, 0);
--primaryColor: var(--color-cyan);
--accentColor: var(--color-yellow);
--copilotActivity: var(--accentColor);
--color-online: #ABE328;
--textColor: var(--color-white);
--textErrorColor: var(--color-red);
--textValidationColor: var(--color-green);
--textColorGray: var(--color-light-gray);
--contrastedTextHintColor: var(--color-gray);
--contrastedTextColor: var(--color-dark-gray);
--outlineColor: var(--color-transparent-white);
--outlineColorHover: var(--color-white);
--outlineContrastedColor: var(--color-dark-gray);
--tableBorderColor: var(--color-white);
--tableBackgroundColor: var(--color-white);
--tableColor: var(--color-white);
--tableHeaderBorderColor: var(--color-white-op20);
--tableHeaderBackgroundColor: transparent;
--tableHeaderColor: var(--color-white);
--tableSeparatorColor: var(--color-white);
--listSeparatorColor: var(--color-white-op30);
--overWhiteListSeparatorColor: var(--color-black-op20);
--colorBorderThin: var(--listSeparatorColor);
--backgroundColorPanel: var(--color-black-op20);
--backgroundColorContrastedPanel: var(--color-white-op20);
--backgroundColorComponent: var(--color-black-op10);
--backgroundColorContrastedComponent: var(--color-white-op10);
--backgroundColorDarkerPanel: var(--color-black-op30);
--backgroundColorOverlay: var(--color-black-op60);
--backgroundColorInput: var(--color-dark-gray);
--outlineColorInput: var(--color-darker-gray);
--filterShadow: drop-shadow(0 0 calc(var(--screenHeight) * (6px / 2160)) rgba(0, 0, 0, 0.4));
--useFilterGrayscale: grayscale(100%);
--filterGrayscale: grayscale(0%);
--filterBlur: blur(0);
--textShadow: 0px 0px calc(var(--screenHeight) * (6px / 2160)) rgba(0, 0, 0, 0.4);
--coherentAA: on;
--inputBackGround: #c2c6cc;
/**** BUTTON STATES COLORS *******/
--enabledColor: var(--color-white);
--enabledBackGroundColor: var(--primaryColor);
--enabledBackgroundColor: var(--primaryColor);
--enabledHoverColor: var(--primaryColor);
--enabledHoverBackGroundColor: var(--color-white);
--enabledHoverBackgroundColor: var(--color-white);
--disabledColor: var(--color-dark-gray);
--disabledBackGroundColor: rgba(64, 68, 73, 0.5);
--disabledHoverColor: var(--color-white);
--disabledHoverBackgroundColor: var(--color-white-op30);
--activeColor: var(--color-white);
--activeBackGroundColor: var(--color-dark-gray);
--activeBackgroundColor: var(--color-dark-gray);
--selectedColor: var(--color-dark-gray);
--selectedBackgroundColor: var(--color-white);
--selectedHoverColor: var(--primaryColor);
--selectedHoverBackgroundColor: var(--color-white);
/*************** FONTS ****************/
--fontMono: RobotoMono-Regular, Arial, Simsun, Malgun;
--font: Roboto-Regular, Arial, Simsun, Malgun;
/*--fontBlack: Roboto-Black;*/
--fontBlackItalic: Barlow-BlackItalic, Arial;
--fontBold: Barlow-Bold, Arial;
--fontBoldItalic: Barlow-BoldItalic, Arial;
--fontExtraBold: Barlow-ExtraBold, Arial;
--fontExtraBoldItalic: Barlow-ExtraBoldItalic, Arial;
--fontExtraLight: Barlow-ExtraLight, Arial;
--fontExtraLightItalic: Barlow-ExtraLightItalic, Arial;
--fontItalic: Barlow-Italic, Arial;
--fontLight: Barlow-Light, Arial;
--fontLightItalic: Barlow-LightItalic, Arial;
--fontMedium: Barlow-Medium, Arial;
--fontMediumItalic: Barlow-MediumItalic, Arial;
--fontRegular: Barlow-Regular, Arial;
--fontSemiBold: Barlow-SemiBold, Arial;
--fontSemiBoldItalic: Barlow-SemiBoldItalic, Arial;
--fontThin: Barlow-Thin, Arial;
--fontThinItalic: Barlow-ThinItalic, Arial;
--minimalFontSize: 18;
--sizeDeviceButton: 15;
--sizeParagraph: 18;
--sizeDefault: 24;
--sizeMedium: 30;
--sizeBig: 36;
--sizeXXL: 48;
--fontSizeDeviceButton: calc(var(--screenHeight) * (30px / 2160));
--fontSizeParagraph: calc(var(--screenHeight) * (36px / 2160));
--fontSizeDefault: calc(var(--screenHeight) * (48px / 2160));
--fontSizeMedium: calc(var(--screenHeight) * (60px / 2160));
--fontSizeBig: calc(var(--screenHeight) * (72px / 2160));
--fontSizeXXL: calc(var(--screenHeight) * (96px / 2160));
--fontSizeXXXL: calc(var(--screenHeight) * (120px / 2160));
--lineHeightDefault: 1.4;
--defaultAnimation: all ease .234s;
--animationTime: 0.3s;
--animationTimeFast: 0.1s;
--animationEffect: ease-out;
--inputBarHeight: calc(var(--screenHeight) * (80px / 1080));
--pageWidth: calc(var(--unscaledScreenHeight) * (3336px / 2160));
--fullPageWidth: calc(var(--unscaledScreenHeight) * (1840px / 1080));
--scaledPageWidth: calc(var(--screenHeight) * (3336px / 2160));
--pageMargin: calc(var(--unscaledScreenHeight) * (242px / 2160));
--pageLeftPos: calc(var(--screenHeight) * (242px / 2160));
--pageTop: calc(var(--screenHeight) * (278px / 2160));
--popInWidth: var(--pageWidth);
--popInHeight: calc(var(--screenHeight) * (1760px / 2160));
--flowBarHeight: calc(var(--screenHeight) * (158px / 2160));
--margin: 24px;
--baseMargin: calc(var(--screenHeight) * (12px / 1080));
--halfMargin: calc(var(--screenHeight) * (6px / 1080));
--quartMargin: calc(var(--screenHeight) * (3px / 1080));
--basePadding: calc(var(--screenHeight) * (12px / 1080));
--pageHeight: calc(var(--unscaledScreenHeight) * (806px / 1080));
--quartPadding: calc(var(--screenHeight) * (3px / 1080));
--halfPadding: calc(var(--screenHeight) * (6px / 1080));
--optionContentWidth: calc(var(--screenHeight) * (350px / 1080));
--optionLineHeight: calc(var(--screenHeight) * (36px / 1080));
--currentPageHeight: 1080px;
--minimalBorderWidth: 1px; }
body.transition {
--animationTime: 0.3s; }
.blockout {
--mainRGBABg: #323232 !important;
--primaryColor: lightgrey;
--secondaryColor: #ffffff;
--disabledColor: grey;
--defaultColor: grey;
--defaultTexte: #ffffff;
--clickableColor: #ffffff;
--selectedHoverColor: black;
--selectedColor: var(--defaultTexte);
--primaryColor: gray;
--textColor: #FFFFFF;
--contrastedTextColor: #000;
--outlineColor: rgba(255, 255, 255, 0);
--outlineColorHover: white;
--tableBorderColor: white;
--tableBackgroundColor: white;
--tableColor: white;
--tableHeaderBorderColor: white;
--tableHeaderBackgroundColor: white;
--tableHeaderColor: white;
--tableSeparatorColor: white;
--backgroundColor: rgba(0, 0, 0, 0.1);
--backgroundColorContrastedPanel: rgba(255, 255, 255, 0.2);
--panel: var(--backgroundColorPanel);
--filterShadow: drop-shadow(0 0 calc(var(--screenHeight) * (10px / 2160)) black);
--copilotActivity: var(--color-yellow);
--inputBackGround: #c2c6cc;
--enabledColor: #ffffff;
--enabledBackGroundColor: black;
--enabledHoverColor: black;
--enabledHoverBackGroundColor: #ffffff;
--disabledColor: gray;
--disabledBackGroundColor: lightgray;
--activeColor: #ffffff;
--activeBackGroundColor: black;
--selectedColor: gray;
--selectedBackgroundColor: #ffffff;
--selectedHoverColor: black;
--selectedHoverBackgroundColor: #ffffff; }
@keyframes marquee {
0% {
left: 0; }
1% {
left: -1px; }
100% {
left: -200px; } }
@keyframes fromLeft {
/*0% { left: get-vw(22px); }
10% { left: get-vw(11px); }
100% { left: get-vw(22px); }*/ }
@keyframes zoomInOut {
0% {
transform: scale(1); }
100% {
transform: scale(1); } }
@keyframes bodyLoad {
0% {
transform: scale(0);
left: -100vw; }
100% {
transform: scale(1);
left: 0; } }
@media (min-width: 3800px) {
:root {
--minimalBorderWidth: calc(var(--screenHeight) * (1.05px / 1080)); } }
.IconTextElement {
background-size: contain; }
.IconTextElement > icon-element {
height: 100%; }
ui-element {
display: block; }
ui-navigation-bloc, options-menu {
display: block; }
ui-navigation-bloc.no-outline, options-menu.no-outline {
outline: none !important; }
ui-navigation-bloc.Focused, options-menu.Focused {
outline: var(--halfMargin) solid white;
/* [COHERENT BUG] Outline cannot be animated alone, requires another property to be animated as it won't trigger repaint by itself. */
/*animation: outlineAnimOutward 1.2s infinite linear;
@keyframes outlineAnimOutward {
0% {
outline: var(--halfMargin) solid white;
}
50% {
outline: var(--halfMargin) solid rgba(255, 255, 255, 0.5);
}
100% {
outline: var(--halfMargin) solid white;
}
}*/ }
ui-navigation-bloc.insideMode, options-menu.insideMode {
outline: var(--halfMargin) solid white; }
#fakeFooter {
height: calc(var(--screenHeight) * (160px / 2160));
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: var(--backgroundColorPanel); }
*, *:before, *:after {
box-sizing: border-box;
margin: 0;
padding: 0; }
p {
font-weight: 400;
font-size: var(--fontSizeParagraph);
line-height: 1em;
color: var(--textColor); }
.leftAlign {
text-align: left; }
.rightAlign {
text-align: right; }
.textDropShadow {
text-shadow: var(--textShadow); }
.ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis; }
html {
height: 100%;
width: 100%;
overflow: hidden; }
html body {
-webkit-user-select: none;
font-family: var(--font), sans-serif;
font-size: var(--fontSizeParagraph);
color: var(--textColor);
height: 100%;
width: 100%;
margin: 0;
padding: 0; }
html input {
font-family: var(--font), sans-serif; }
body > header {
position: absolute;
top: 0;
left: 0;
right: 0;
height: calc(var(--screenHeight) * (160px / 2160)); }
body > .container {
position: absolute;
left: 0;
right: 0;
top: calc(var(--screenHeight) * (284px / 2160));
bottom: 0; }
body .fullpage {
margin-left: auto;
margin-right: auto;
margin-top: calc(var(--screenHeight) * (284px / 2160));
width: calc(var(--screenHeight) * (3547px / 2160));
height: calc(var(--screenHeight) * (1752px / 2160));
display: flex;
justify-content: center;
align-content: center;
justify-content: flex-start;
align-content: flex-start; }
body .fullpage.center {
justify-content: center;
align-content: center; }
body.blur {
--filterBlur: blur(4px) !important;
filter: var(--filterBlur) var(--filterGrayscale) !important;
--filterShadow: none !important;
--textShadow: none !important;
--coherentAA: off !important;
pointer-events: none; }
body.greyed-popup:after, body.greyed-notif:after {
pointer-events: auto;
opacity: 1;
transition: opacity .15s; }
body:after {
content: '';
transition: opacity 0s;
display: block;
position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
opacity: 0;
pointer-events: none;
background-color: var(--backgroundColorOverlay);
z-index: 1000; }
body.pushBack #Buttons {
box-sizing: border-box;
position: absolute;
width: auto;
right: 3vw;
top: 55vh;
padding: calc(var(--screenHeight) * (8px / 2160)); }
body.pushBack section {
background-color: var(--backgroundColorContrastedPanel); }
body.pushBack new-push-button {
width: calc(var(--viewportWidthRatio) * 13.0208333333vw);
max-width: calc(var(--viewportWidthRatio) * 13.0208333333vw);
margin-bottom: calc(var(--screenHeight) * (8px / 2160)); }
body.pushBack #HidePushbackHUD + p {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-self: center;
height: calc(var(--screenHeight) * (60px / 2160));
line-height: calc(var(--screenHeight) * (60px / 2160));
vertical-align: middle; }
body.pushBack .active ~ #TurnLeft,
body.pushBack .active ~ #TurnRight {
display: flex; }
body.pushBack #TurnLeft,
body.pushBack #TurnRight {
display: none; }
.hide,
.hidden,
.HIDDEN {
display: none !important; }
.HideByPause {
display: none !important; }
.invisible {
visibility: hidden; }
body {
transition: opacity ease-in-out 0.5s; }
.contentLoading {
opacity: 0 !important; }
.contentLoaded {
opacity: 1; }
.activeLoading {
position: relative; }
.activeLoading > *:not(.loading-overlay) {
/*visibility: hidden;*/
pointer-events: none; }
.activeLoading .loading-overlay {
opacity: 1; }
.loading-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 50;
background-color: var(--backgroundColorOverlay);
display: flex;
align-items: center;
justify-content: center; }
.loading-overlay__content {
display: flex;
align-items: center;
background-color: var(--backgroundColorPanel); }
.loading-overlay icon-stack {
--width: calc(var(--screenHeight) * (40px / 1080));
--height: calc(var(--screenHeight) * (40px / 1080));
background-color: var(--backgroundColorComponent);
margin-right: var(--halfMargin); }
.loading-overlay icon-stack icon-element {
animation: loadingAnimation 1.5s linear infinite; }
.loading-overlay l10n-label {
margin-right: var(--halfMargin); }
.barred-text {
text-decoration: line-through; }
.scrollbar {
overflow: auto;
--sbback: transparent;
--barcolor: var(--primaryColor); }
.scrollbar:hover {
--barcolor: var(--primaryColor); }
.scrollbar.disabled {
--sbback: var(--disabledColor);
--barcolor: var(--button); }
.scrollbar.disabled:hover {
--sbback: var(--disabledColor);
--barcolor: var(--disableOver); }
.scrollbar::-webkit-scrollbar-track {
background-color: var(--sbback); }
.scrollbar::-webkit-scrollbar {
width: calc(var(--screenHeight) * (20px / 2160));
background-color: var(--backgroundColorPanel); }
.scrollbar::-webkit-scrollbar-thumb {
border: solid calc(var(--screenHeight) * (5px / 2160)) var(--sbback);
background-color: var(--barcolor);
min-height: calc(var(--screenHeight) * (104px / 2160)); }
.scrollbar-h {
overflow: auto;
--sbback: transparent;
--barcolor: var(--primaryColor); }
.scrollbar-h:hover {
--barcolor: var(--primaryColor); }
.scrollbar-h.disabled {
--sbback: var(--disabledColor);
--barcolor: var(--button); }
.scrollbar-h.disabled:hover {
--sbback: var(--disabledColor);
--barcolor: var(--disableOver); }
.scrollbar-h::-webkit-scrollbar-track {
background-color: var(--sbback); }
.scrollbar-h::-webkit-scrollbar {
height: calc(var(--screenHeight) * (12px / 2160));
background-color: var(--backgroundColorPanel); }
.scrollbar-h::-webkit-scrollbar-thumb {
border: solid calc(var(--viewportWidthRatio) * 0.1302083333vw) var(--sbback);
background-color: var(--barcolor);
min-height: 40%; }
.scrollbarIngame {
overflow: auto;
--sbback: transparent;
--barcolor: cyan; }
.scrollbarIngame:hover {
--barcolor: cyan; }
.scrollbarIngame.disabled {
--sbback: var(--disabledColor);
--barcolor: var(--button); }
.scrollbarIngame.disabled:hover {
--sbback: var(--disabledColor);
--barcolor: var(--disableOver); }
.scrollbarIngame::-webkit-scrollbar-track {
background-color: var(--sbback); }
.scrollbarIngame::-webkit-scrollbar {
width: calc(var(--viewportWidthRatio) * 0.4166666667vw); }
.scrollbarIngame::-webkit-scrollbar-thumb {
border: solid calc(var(--viewportWidthRatio) * 0.2604166667vw) var(--sbback);
background-color: var(--barcolor);
min-height: 40%; }
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
opacity: 0;
margin: 0; }
.default-input {
border: var(--minimalBorderWidth) solid var(--primaryColor);
outline: var(--minimalBorderWidth) solid var(--color-black);
outline-offset: calc(var(--minimalBorderWidth) * -2);
background-color: var(--backgroundColorInput);
color: var(--textColor);
padding-right: calc(var(--screenHeight) * (12px / 2160));
padding-left: calc(var(--screenHeight) * (6px / 2160));
min-height: calc(var(--screenHeight) * (60px / 2160));
height: calc(var(--screenHeight) * (30px / 1080));
display: flex;
align-items: center; }
.default-input.alignLeft input {
text-align: left; }
.default-input input {
position: relative;
z-index: 2;
text-align: right;
color: white;
font-size: var(--fontSizeParagraph);
border: 0;
background-color: transparent;
width: 100%;
height: auto; }
.default-input input:hover::placeholder {
color: var(--textColor);
transition: color 0.2s ease-in-out; }
.default-input input:focus::placeholder {
color: rgba(255, 255, 255, 0); }
.default-input input::placeholder {
opacity: 1;
text-transform: uppercase;
color: var(--contrastedTextHintColor);
transition: opacity 0.1s ease-in-out;
font-weight: 500; }
.default-input.input-error {
border-color: var(--textErrorColor); }
.Focused .default-input input::placeholder {
color: var(--textColor); }
.Focused .default-input input:focus::placeholder {
color: rgba(255, 255, 255, 0); }
.default-textarea {
border: 1px solid var(--primaryColor);
outline: 1px solid var(--color-black);
outline-offset: -2px;
background-color: var(--backgroundColorInput);
color: var(--textColor);
padding: calc(var(--screenHeight) * (24px / 2160));
min-height: calc(var(--screenHeight) * (60px / 2160)); }
.ellipsis {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis; }
.elementDropShadow {
filter: var(--filterShadow); }
.bottomShadow {
background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.12) 0%, transparent calc(var(--screenHeight) * (20px / 2160))); }
.list-element {
--mainColor: var(--textColor);
width: 100%;
border-top: calc(var(--screenHeight) * (2px / 2160)) solid var(--mainColor);
margin: 0;
padding: 0;
list-style-type: none; }
.list-element li {
margin: 0;
padding: 0;
border-bottom: calc(var(--screenHeight) * (2px / 2160)) solid var(--mainColor);
color: var(--mainColor);
display: flex;
align-items: center;
justify-content: center;
height: calc(var(--screenHeight) * (46px / 2160));
--fontSize: calc(var(--screenHeight) * (25px / 2160)); }
.list-element li .data,
.list-element li .value {
line-height: calc(var(--screenHeight) * (46px / 2160));
font-size: var(--fontSize);
display: block; }
.list-element li .data {
margin-right: auto;
text-transform: uppercase; }
.list-element li .value {
margin-left: auto; }
/*
%base-button {
align-items: center;
background-color: var(--enabledBackGroundColor);
display: flex;
flex: 1;
height: get-vh(80px);
justify-content: flex-start;
//max-width:get-vw(504px);
text-transform: uppercase;
letter-spacing: 0.5px;
&:hover {
&:not(.disabled):not(.locked):not(attr[disabled=true]):not([disabled='true']) {
background-color: var(--enabledHoverBackGroundColor);
color: var(--enabledHoverColor);
}
}
&.disabled,
&.locked,
&[disabled='true'] {
background-color: var(--disabledBackGroundColor);
color: var(--disabledColor) !important;
&:hover {
background-color: var(--disabledBackGroundColor);
color: var(--disabledColor) !important;
}
}
&.panelButton {
--lineHeightTitle: calc(var(--screenHeight) * (20px / 2160));
--HeightTitle: calc(var(--screenHeight) * (30px / 2160));
height: get-vh(117px);
width: 100%;
.PushButton {
width: 100%;
.textContentWrapper {
height: get-vh(64px);
width: 100%;
div {
display: flex;
justify-content: space-around !important;
align-items: flex-start;
flex-direction: column;
height: 100%;
width: 100%;
padding-left: get-vw(20px);
padding-right: get-vw(8px);
.title {
display: block;
font-weight: bold;
font-size: get-vh(28px);
line-height: 1;
margin: 0;
}
.subtitle {
&:empty {
display: none;
}
margin: 0;
display: block;
font-family: var(--font);
font-size: var(--HeightTitle);
line-height: 1;
//@include clamp(1);
@include ellipsis();
//overflow:hidden;
width: 100%;
}
}
}
}
}
&.small {
height: get-vh(60px);
max-height: get-vh(60px);
.ToggleButton,
.FlowButton,
.PushButton {
.textContentWrapper {
div {
.title {
font-size: get-vh(28px);
line-height: get-vh(22px);
height: get-vh(22px);
}
}
}
}
}
--lineHeightTitle: calc(var(--screenHeight) * (22px / 2160));
--HeightTitle: calc(var(--screenHeight) * (32px / 2160));
.ToggleButton,
.FlowButton,
.PushButton {
align-items: center;
display: flex;
.textContentWrapper {
align-items: center;
display: flex;
justify-content: flex-start;
height: 100%;
div {
display: flex;
justify-content: space-around;
align-items: flex-start;
flex-direction: column;
height: 100%;
.title {
display: block;
font-weight: bold;
font-size: var(--HeightTitle);
line-height: calc( var(--HeightTitle) * 1.1);
margin: 0;
}
.subtitle {
&:empty {
display: none;
}
margin: 0;
display: block;
font-family: var(--font);
font-size: var(--HeightTitle);
line-height: var(--lineHeightTitle);
}
}
}
}
}
*/
.radio {
--backgroundColor: var(--primaryColor);
--dotColor: var(--primaryColor);
--iconSize: calc(var(--screenHeight) * (32px / 2160));
--textColor: var(--textColor);
display: flex;
flex-direction: row; }
.radio.vertical {
flex-direction: column;
margin-bottom: calc(var(--screenHeight) * (24px / 2160)); }
.radio.disabled {
--backgroundColor: var(--button);
--dotColor: var(--button);
--textColor: var(--button); }
.radio.disabled .choices:hover {
--backgroundColor: var(--disableOver);
--dotColor: var(--disableOver);
--textColor: var(--disableOver); }
.radio.disabled .choices.checked {
--dotColor: var(--backgroundColorPanel); }
.radio.disabled .choices.checked:hover {
--backgroundColor: var(--disableOver);
--dotColor: var(--backgroundColorPanel);
--textColor: var(--disableOver); }
.radio.disabled .choices.checked:hover .icon {
--iconSize: calc(var(--screenHeight) * (32px / 2160)); }
.radio .choices {
align-items: center;
display: flex;
height: calc(var(--screenHeight) * (40px / 2160));
justify-content: flex-start;
margin-bottom: calc(var(--screenHeight) * (12px / 2160)); }
.radio .choices:hover {
--backgroundColor: var(--primaryColor);
--dotColor: var(--primaryColor); }
.radio .choices.checked {
--dotColor: var(--textcolor); }
.radio .choices.checked:hover .icon {
--iconSize: calc(var(--screenHeight) * (40px / 2160)); }
.radio .choices.disabled {
--dotColor: var(--textColor); }
.radio .choices.disabled:hover .icon {
--iconSize: calc(var(--screenHeight) * (40px / 2160)); }
.radio .choices .iconWrapper {
align-items: center;
display: flex;
height: calc(var(--screenHeight) * (40px / 2160));
justify-content: center;
width: calc(var(--screenHeight) * (40px / 2160)); }
.radio .choices .iconWrapper .icon {
background-color: var(--backgroundColorPanel);
border-radius: 50%;
height: var(--iconSize);
position: relative;
width: var(--iconSize); }
.radio .choices .iconWrapper .icon:after {
background-color: var(--dotColor);
border-radius: 50%;
content: '';
display: block;
height: calc(var(--screenHeight) * (16px / 2160));
left: 50%;
position: absolute;
top: 50%;
transform: translate(-50%, -50%);
width: calc(var(--screenHeight) * (16px / 2160)); }
.radio .choices .text {
color: var(--textColor);
font-weight: bold;
font-size: calc(var(--screenHeight) * (26px / 2160));
left: calc(var(--screenHeight) * (20px / 2160));
line-height: calc(var(--screenHeight) * (32px / 2160));
position: relative;
text-transform: uppercase;
top: calc(var(--screenHeight) * (4px / 2160)); }
.select {
--backgroundColor: var(--button); }
.selectSearch {
--backgroundColor: var(--textfield);
--inputcolor: #000; }
input {
font-size: var(--fontSizeParagraph);
color: black; }
.select,
.selectSearch {
position: relative;
--defaultHeight: calc(var(--screenHeight) * (32px / 2160));
--itemsBackgroundColor: var(--enabledBackGroundColor);
--listTextColor: var(--enabledColor);
--listMaxHeight: calc( calc(var(--screenHeight) * (32px / 2160)) * 4);
--iconColor: var(--primaryColor);
--borderBottom: calc(var(--screenHeight) * (2px / 2160)) solid transparent;
--fontSize: calc(var(--screenHeight) * (26px / 2160));
width: calc(var(--screenHeight) * (436px / 2160));
text-transform: uppercase;
font-size: var(--fontSize);
line-height: calc(var(--screenHeight) * (36px / 2160)); }
.select:active, .select:hover, .select:focus, .select.open,
.selectSearch:active,
.selectSearch:hover,
.selectSearch:focus,
.selectSearch.open {
--iconColor: var(--enabledHoverColor);
--backgroundColor: var(--enabledHoverBackGroundColor);
--textColor: var(--enabledHoverColor); }
.select:active .list, .select:hover .list, .select:focus .list, .select.open .list,
.selectSearch:active .list,
.selectSearch:hover .list,
.selectSearch:focus .list,
.selectSearch.open .list {
max-height: var(--listMaxHeight);
z-index: 2; }
.select:active .default:after, .select:hover .default:after, .select:focus .default:after, .select.open .default:after,
.selectSearch:active .default:after,
.selectSearch:hover .default:after,
.selectSearch:focus .default:after,
.selectSearch.open .default:after {
transform: rotate(270deg);
transform-origin: center; }
.select.disabled,
.selectSearch.disabled {
--iconColor: var(--disabledColor);
--textColor: var(--disabledColor);
--backgroundColor: var(--disabledBackGroundColor); }
.select.disabled:hover, .select.disabled:focus, .select.disabled.open,
.selectSearch.disabled:hover,
.selectSearch.disabled:focus,
.selectSearch.disabled.open {
--iconColor: var(--disabledColor);
--textColor: var(--disabledColor);
--backgroundColor: var(--disabledBackGroundColor); }
.select.disabled:hover .list, .select.disabled:focus .list, .select.disabled.open .list,
.selectSearch.disabled:hover .list,
.selectSearch.disabled:focus .list,
.selectSearch.disabled.open .list {
max-height: 0;
display: none; }
.select.disabled:hover .default:after, .select.disabled:focus .default:after, .select.disabled.open .default:after,
.selectSearch.disabled:hover .default:after,
.selectSearch.disabled:focus .default:after,
.selectSearch.disabled.open .default:after {
transform: rotate(90deg);
transform-origin: center; }
.select .default,
.selectSearch .default {
border-top: calc(var(--screenHeight) * (2px / 2160)) solid transparent;
display: flex;
align-items: center;
justify-content: flex-start;
background: var(--backgroundColorPanel);
height: var(--defaultHeight);
color: var(--textColor);
padding-left: calc(var(--screenHeight) * (18px / 2160)); }
.select .default:after,
.selectSearch .default:after {
margin-left: auto;
margin-right: calc(var(--viewportWidthRatio) * 0.2604166667vw);
transition: all ease-in .3s;
font-size: calc(var(--screenHeight) * (21px / 2160));
font-family: 'kitty' !important;
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
background-color: unset;
content: "" !important;
transform: rotate(90deg);
color: var(--iconColor);
height: calc(var(--screenHeight) * (21px / 2160));
width: calc(var(--screenHeight) * (13px / 2160)); }
.select input[type="text"],
.selectSearch input[type="text"] {
box-shadow: -1px 2px 10px 3px rgba(0, 0, 0, 0.3) inset;
display: flex;
align-items: center;
justify-content: flex-start;
background: var(--backgroundColorPanel);
border: 0;
height: var(--defaultHeight);
width: 100%;
padding: 0;
padding-left: calc(var(--screenHeight) * (18px / 2160));
font-size: var(--fontSize);
color: var(--inputcolor);
text-transform: uppercase; }
.select input[type="text"]::placeholder,
.selectSearch input[type="text"]::placeholder {
color: var(--inputcolor);
text-transform: uppercase; }
.select input[type="text"]:not(:placeholder-shown),
.selectSearch input[type="text"]:not(:placeholder-shown) {
background-color: var(--primaryColor); }
.select .list,
.selectSearch .list {
border-top: var(--borderBottom);
position: absolute;
left: 0;
right: 0;
background-color: var(--itemsBackgroundColor);
max-height: 0;
transition: all ease-in .3s;
display: block; }
.select .list .selected,
.selectSearch .list .selected {
display: none; }
.select .list.invertDirection,
.selectSearch .list.invertDirection {
top: unset;
bottom: 100%; }
.select .list div,
.selectSearch .list div {
height: var(--defaultHeight);
background-color: var(--itemsBackgroundColor);
color: var(--listTextColor);
padding-left: calc(var(--screenHeight) * (18px / 2160)); }
.select .list div:hover,
.selectSearch .list div:hover {
--itemsBackgroundColor: var(--primaryColor);
--listTextColor: var(--textColor); }
.select .list div:active,
.selectSearch .list div:active {
--listTextColor: var(--textColor); }
.imgWrap img {
max-width: 100%;
height: auto; }
body.mission {
font-family: var(--font) !important;
font-size: calc(var(--screenHeight) * (26px / 2160));
line-height: calc(var(--viewportWidthRatio) * 0.9375vw);
color: var(--textColor); }
body.mission header {
padding-left: calc(var(--viewportWidthRatio) * 0.9375vw);
padding-right: calc(var(--viewportWidthRatio) * 0.9375vw);
padding-top: calc(var(--screenHeight) * (24px / 2160));
padding-bottom: calc(var(--screenHeight) * (24px / 2160));
padding-left: calc(var(--viewportWidthRatio) * 0.46875vw);
background-color: var(--backgroundColorContrastedPanel);
font-size: calc(var(--screenHeight) * (32px / 2160));
line-height: 1;
text-transform: uppercase;
color: var(--textColor);
font-weight: bold;
text-shadow: var(--textShadow); }
body.mission p {
margin-bottom: calc(var(--screenHeight) * (32px / 2160));
text-shadow: var(--textShadow); }
body.mission .article-bodycopy {
background: var(--backgroundColorPanel); }
.article-bodycopy {
display: flex;
justify-content: flex-start;
align-items: center;
flex-direction: column;
padding-top: calc(var(--screenHeight) * (24px / 2160));
padding-bottom: calc(var(--screenHeight) * (24px / 2160));
padding-left: calc(var(--viewportWidthRatio) * 0.5208333333vw);
padding-right: calc(var(--viewportWidthRatio) * 0.5208333333vw); }
.article-bodycopy p {
color: var(--textColor); }
#DebugPanel {
position: absolute;
display: flex;
flex-direction: column;
width: 20vw;
background-color: antiquewhite;
z-index: 10000;
transform: rotateX(0);
height: auto;
top: 0;
right: 0; }
#DebugPanel .Console {
color: black;
background-color: white;
height: auto;
max-height: 30vh;
overflow: auto;
display: flex;
flex-direction: column-reverse; }
#DebugPanel .Console .warn {
color: orange; }
#DebugPanel .Console .error {
color: red; }
#DebugPanel .debugButton {
background-color: lightgray;
color: black;
display: block;
margin: 10px;
height: 20px; }
#DebugPanel .debugButton:hover {
background-color: darkslategrey;
color: var(--textColor); }
input[type=range] {
--rangeBackgroundColor: var(--backgroundColorInput);
-webkit-appearance: none;
width: 100%;
margin: calc(var(--screenHeight) * (9px / 2160)) 0;
--rangePosition: 100%;
--cursorColor: var(--primaryColor);
--cursorBorderColor: white; }
input[type=range]:focus {
outline: none; }
input[type=range]::-webkit-slider-runnable-track {
width: 100%;
height: calc(var(--screenHeight) * (12px / 2160));
cursor: pointer;
background: var(--primaryColor);
background: linear-gradient(to right, var(--primaryColor) 0%, var(--primaryColor) var(--rangePosition), var(--rangeBackgroundColor) var(--rangePosition), var(--rangeBackgroundColor) 100%);
border-radius: 0px;
border: none; }
input[type=range]::-webkit-slider-thumb {
border: calc(var(--screenHeight) * (4px / 2160)) solid var(--cursorBorderColor);
height: calc(var(--screenHeight) * (30px / 2160));
width: calc(var(--screenHeight) * (30px / 2160));
transform: scale(1.05);
border-radius: calc(var(--screenHeight) * (30px / 2160));
background: var(--cursorColor);
cursor: pointer;
margin-top: calc(var(--screenHeight) * (-9px / 2160)); }
input[type=range]::-webkit-slider-thumb:hover {
--cursorBorderColor: var(--primaryColor);
--cursorColor: white; }
input[type=range].clicked::-webkit-slider-thumb {
border-color: var(--activeColor);
background-color: var(--activeBackGroundColor); }
input[type=range]:focus::-webkit-slider-runnable-track {
background: var(--primaryColor); }
external-link {
text-decoration: underline;
color: var(--primaryColor);
display: inline;
margin-left: var(--halfMargin);
margin-right: var(--halfMargin); }
external-link.as-button {
display: flex;
align-items: center;
height: calc(var(--screenHeight) * (60px / 2160));
padding: calc(var(--screenHeight) * (12px / 2160)) calc(var(--screenHeight) * (12px / 2160));
margin: calc(var(--screenHeight) * (12px / 2160)) calc(var(--screenHeight) * (12px / 2160));
background-color: var(--enabledBackGroundColor);
color: var(--enabledColor);
text-decoration: none;
font-size: var(--fontSizeParagraph); }
external-link.Focused {
color: var(--secondaryColor); }
external-link.Focused.as-button {
background-color: var(--enabledHoverBackGroundColor);
color: var(--enabledHoverColor); }
internal-link {
margin: calc(var(--screenHeight) * (12px / 2160)) calc(var(--screenHeight) * (12px / 2160));
padding: calc(var(--screenHeight) * (12px / 2160)) calc(var(--screenHeight) * (12px / 2160));
display: inline-block;
background-color: var(--enabledBackGroundColor);
color: var(--enabledColor); }
internal-link.Focused {
background-color: var(--enabledHoverBackGroundColor);
color: var(--enabledHoverColor); }
i {
font-family: var(--fontItalic); }
ui-image {
display: block;
position: relative;
--transitionTime: 0.3s;
--position: center center;
/** theme **/ }
ui-image.containFit .BackBuffer, ui-image.containFit .MainImage {
object-fit: contain; }
ui-image.no-fit .BackBuffer, ui-image.no-fit .MainImage {
object-fit: scale-down; }
ui-image.force-natural-ratio .MainElem, ui-image.force-natural-ratio .MainImage {
position: initial;
top: initial;
left: initial; }
ui-image .BackBuffer, ui-image .MainImage, ui-image .MainElem, ui-image .BackElem {
position: absolute;
top: 0;
left: 0;
object-fit: cover;
object-position: var(--position);
width: 100%;
height: 100%;
opacity: 1;
transition: opacity ease-in-out var(--transitionTime); }
ui-image .BackBuffer.invisible, ui-image .MainImage.invisible, ui-image .MainElem.invisible, ui-image .BackElem.invisible {
opacity: 0 !important;
visibility: visible; }
ui-image .BackBuffer.ImageLoading, ui-image .MainImage.ImageLoading, ui-image .MainElem.ImageLoading, ui-image .BackElem.ImageLoading {
transition: none;
opacity: 0; }
ul.dashed > li {
list-style-type: none !important;
text-indent: -5px; }
ul.dashed > li:before {
content: "-";
text-indent: -5px; }
/*********** DEVICE BUTTONS ***********/
device-button {
position: relative;
--textSize: var(--fontSizeDeviceButton);
display: flex;
flex-wrap: wrap;
align-items: center;
line-height: 1.4; }
device-button .text-icon-container {
display: flex;
align-items: center;
justify-content: center; }
device-button .text-icon-container:not(.no-image-found) {
height: 1em;
min-width: 1em;
margin: 0 -.4em; }
device-button .text-icon-container:not(.no-image-found) icon-element {
flex-shrink: 0;
--width: calc(100% + 1em);
--height: 290%; }
device-button .text-icon-container.no-image-found {
line-height: 0.95;
font-weight: bold;
margin: 0 var(--halfMargin); }
device-button .text-icon-container.no-image-found .text {
border-radius: 3px;
font-size: var(--textSize);
border: calc(var(--screenHeight) * (2px / 1080)) solid var(--iconColor, white);
text-align: center;
white-space: nowrap;
padding: .15em .25em;
color: var(--iconColor, white);
display: block;
vertical-align: baseline; }
device-button .separator {
margin: 0 var(--quartMargin); }
.nowrap-device-button device-button {
flex-wrap: nowrap; }
.paragraph-with-buttons {
--deviceButtonLineHeight: 1.4;
word-break: break-word; }
.paragraph-with-buttons device-button {
display: inline-flex; }
.paragraph-with-buttons device-button.has-icon {
vertical-align: middle;
top: calc((1 - var(--deviceButtonLineHeight)) * 1em / 2);
/* for paragraph with line-height 1.4*/ }
.paragraph-with-buttons device-button .text-icon-container:not(.no-image-found) {
margin: 0 -.4em; }
.paragraph-with-buttons device-button .text-icon-container.no-image-found {
margin: 0 .2em;
height: 1em;
vertical-align: 40%; }
.paragraph-with-buttons device-button .text-icon-container.no-image-found .text {
min-width: 1.6em; }
.noWrapDeviceButton device-button {
flex-wrap: nowrap; }
.condensedPanel {
--optionContentWidth: calc(var(--screenHeight) * (250px / 1080)); }
.resize-handle__x-left, .resize-handle__x-right {
position: absolute;
top: 0;
bottom: 0;
width: var(--resize-handle-size, 10px);
z-index: 2; }
.resize-handle__x-left {
left: 0; }
.resize-handle__x-right {
right: 0; }
.resize-handle__y {
position: absolute;
left: 0;
right: 0;
bottom: 0;
z-index: 2;
height: var(--resize-handle-size, 10px); }
.resize-handle__corner {
width: calc(var(--screenHeight) * (3px / 1080));
height: calc(var(--screenHeight) * (18px / 1080));
background-color: var(--enabledBackGroundColor);
position: absolute;
bottom: 0;
right: 0;
z-index: 3;
opacity: 0;
transition: opacity 0.2s ease-in-out;
/*&:hover {
background-color: var(--enabledHoverBackGroundColor);
&:after {
background-color: var(--enabledHoverBackGroundColor);
}
}*/ }
.resize-handle__corner:before {
content: '';
display: block;
position: absolute;
width: calc(var(--screenHeight) * (9px / 1080));
height: calc(var(--screenHeight) * (9px / 1080));
bottom: 0;
right: 0; }
.resize-handle__corner:after {
content: '';
display: block;
position: absolute;
width: calc(var(--screenHeight) * (18px / 1080));
height: calc(var(--screenHeight) * (3px / 1080));
bottom: 0;
right: 0;
background-color: var(--enabledBackGroundColor); }
ui-marquee {
min-width: 0;
overflow: hidden; }
ui-marquee.has-ellipsis {
text-overflow: ellipsis; }
ui-marquee.has-ellipsis > * {
display: inline; }
ui-marquee.centered-text > * {
margin: 0 auto; }
ui-marquee > * {
display: block;
white-space: nowrap;
width: fit-content; }
icon-element {
height: var(--height, calc(var(--screenHeight) * (72px / 2160)));
width: var(--width, calc(var(--screenHeight) * (72px / 2160)));
display: flex;
justify-content: center;
align-items: center;
background-color: var(--iconBGColor, transparent); }
icon-element svg.icon {
height: 100%;
max-width: 100%;
max-height: 100%;
fill: var(--iconColor, white); }
icon-element:not(.original-color) svg.icon path, icon-element:not(.original-color) svg.icon polygon, icon-element:not(.original-color) svg.icon rect {
fill: var(--iconColor, white); }
icon-element img {
width: 100%;
height: 100%;
max-width: 100%;
max-height: 100%; }
icon-element.loading {
animation: loadingAnimation 1s linear infinite; }
@keyframes loadingAnimation {
0% {
transform: rotate(0deg); }
100% {
transform: rotate(360deg); } }
/**
GLOBAL ANIMATIONS
*/
html:not(.animationsEnabled) * {
transition: none !important;
animation: none !important; }
/* [COHERENT BUG] Outline cannot be animated alone, requires another property to be animated as it won't trigger repaint by itself. */
@keyframes outlineAnim {
0% {
outline: calc(var(--screenHeight) * (1px / 1080)) solid rgba(255, 255, 255, 0);
outline-offset: calc(var(--screenHeight) * (-6px / 1080)); }
15% {
outline: calc(var(--screenHeight) * (1px / 1080)) solid white;
outline-offset: calc(var(--screenHeight) * (-6px / 1080)); }
42% {
outline: calc(var(--screenHeight) * (6px / 1080)) solid white;
outline-offset: calc(var(--screenHeight) * (-6px / 1080)); }
70% {
outline: calc(var(--screenHeight) * (1px / 1080)) solid white;
outline-offset: calc(var(--screenHeight) * (-1px / 1080)); }
95%, 100% {
outline: calc(var(--screenHeight) * (1px / 1080)) solid rgba(255, 255, 255, 0);
outline-offset: calc(var(--screenHeight) * (-1px / 1080)); } } | 0.349755 | 0.094135 |
.quiz-screen{width: 100%}
/*Iphone 5s SE*/
@media only screen and (min-width: 415px) and (max-width: 767px){
.desk-none {display: block!important;}
.mob-none {display: none!important;}
.pushy {width: 40% !important}
}
@media only screen and (min-width: 768px) and (max-width: 991px){
.desk-none {display: block!important;}
.mob-none {display: none!important;}
.pushy {width: 35% !important}
}
@media only screen and (min-width: 320px) and (max-width: 414px){
h1 {font-size: 30px}
h2 {font-size: 24px}
h6 {font-size: 12px}
.mob-none {display: none}
.desk-none {display: block}
.quiz-screen {padding-left: 15px}
.desk-none-header {
padding: 0!important;
}
.footer-logos {
}
/*Main*/
#main {width: 100%}
#main h1 {
font-size: 25px;
}
.inner-bottom-block {
flex-grow: 1;
flex-shrink: 0;
width: calc(100vw / 2);
}
.bottom-block {
width: 100%;
display: flex;
flex-grow: 0;
overflow-x: scroll;
}
.non-sm {display: none}
/*End Main*/
/*Main-second*/
#main-second {
height: auto;
padding-top: 15px;
padding-bottom: 15px;
}
#main-second .jumbotron {font-size: 12px}
/*End Main-second*/
/*Main-third*/
#main-third {
height: auto;
}
#main-third h5 {font-size: 14px}
#main-third .skill-blocks {height: 150px;}
/*End Main-third*/
/*Main-four*/
#main-four {
height: auto;
padding-top: 15px;
padding-bottom: 15px;
}
#main-four .review {height: 160px;}
/*End Main-four*/
/*Main-five*/
#main-five {
padding-top: 15px;
padding-bottom: 15px;
height: auto;
}
#main-five .blog {height: 175px}
/*End Main-five*/
/*Main-six*/
#main-six {
padding-top: 20px;
padding-bottom: 20px;
height: auto;
}
#main-six p {font-size: 12px;}
/*End Main-six*/
/*Footer*/
footer {
height: auto;
}
footer ul {display: block!important;}
footer ul > li:nth-child(2){width: auto}
footer .footer-info {margin-left: 15px; font-size: 12px}
.justify-content-end {justify-content: center!important;}
.margin-75 {margin-top: 25px}
.margin-25 {margin-top: 0}
/* End Footer*/
}
@media (width: 414px) and (height: 736px){
h1 {font-size: 30px}
h2 {font-size: 24px}
h6 {font-size: 12px}
.mob-none {display: none}
.desk-none {display: block}
/*Main*/
#main {width: 100%}
#main h1 {
font-size: 25px;
}
.inner-bottom-block {
flex-grow: 1;
flex-shrink: 0;
width: calc(100vw / 2);
}
.bottom-block {
width: 100%;
display: flex;
flex-grow: 0;
overflow-x: scroll;
}
.non-sm {display: none}
/*End Main*/
/*Main-second*/
#main-second {
height: auto;
padding-top: 15px;
padding-bottom: 15px;
}
#main-second .jumbotron {font-size: 12px}
/*End Main-second*/
/*Main-third*/
#main-third {
height: auto!important;
}
#main-third h5 {font-size: 14px}
#main-third .skill-blocks {height: 150px;}
/*End Main-third*/
/*Main-four*/
#main-four {
height: auto;
padding-top: 15px;
padding-bottom: 15px;
}
#main-four .review {height: 160px;}
/*End Main-four*/
/*Main-five*/
#main-five {
padding-top: 15px;
padding-bottom: 15px;
height: auto;
}
#main-five .blog {height: 175px}
/*End Main-five*/
/*Main-six*/
#main-six {
padding-top: 20px;
padding-bottom: 20px;
height: auto;
}
#main-six p {font-size: 12px;}
/*End Main-six*/
/*Footer*/
footer {
height: auto;
}
footer ul {display: block!important;}
footer ul > li:nth-child(2){width: auto}
footer .footer-info {margin-left: 15px; font-size: 12px}
.justify-content-end {justify-content: center!important;}
.margin-75 {margin-top: 25px}
.margin-25 {margin-top: 0}
}
@media (min-height: 1024px) and (max-height: 2200px){
#main {height: calc(100vh * 0.5)!important;}
#main-second {height: calc(100vh * 0.6)!important;}
#main-third {height: calc(100vh * 0.7);}
#main-four {height: calc(100vh * 0.35);}
#main-five {height: calc(100vh * 0.35);}
#main-six {height: calc(100vh * 0.35);}
footer {height: calc(100vh * 0.30)!important;}
}
@media (min-width: 1200px) and (min-height: 720px){
#main-third {height: calc(100vh * 1.5)!important;}
footer {height: calc(100vh * 0.38)!important;}
}
@media (min-width: 1000px) and (min-height: 801px) and (max-height: 1199px) {
#main-second {height: calc(100vh * 0.7);}
#main-third {height: calc(100vh * 1.3);}
#main-four {height: calc(100vh * 0.6);}
#main-five {height: calc(100vh * 0.6);}
footer {height: calc(100vh * 0.30);}
}
/*Album*/
@media only screen and (min-width: 568px) and (max-width: 900px) and (min-height: 320px){
#main h1 {font-size: 20px}
.inner-bottom-block {
flex-grow: 1;
flex-shrink: 0;
width: calc(100vw / 3);
}
.bottom-block {
width: 100%;
display: flex;
flex-grow: 0;
overflow-x: scroll;
}
#main-second{height: auto;}
#main-third {height: auto}
#main-four {height: auto}
#main-five {height: auto; padding-bottom: 15px}
#main-six {height: auto; padding-top: 15px;padding-bottom: 15px}
footer {height: calc(100vh * 0.88)}
footer li {font-size: 12px!important;}
}
@media only screen and (min-width: 667px) and (max-width: 900px) and (min-height: 375px) {
footer {height: calc(100vh * 0.75)}
footer li {font-size: 14px!important;}
}
@media only screen and (min-width: 736px) and (max-width: 900px) and (min-height: 414px) {
footer {height: calc(100vh * 0.68)}
}
@media only screen and (min-width: 812px) and (max-width: 900px) and (min-height: 375px) {
footer {height: calc(100vh * 0.55)}
footer li {font-size: 13px!important;}
footer .social-icon {margin-left: 10px}
}
@media only screen and (min-width: 896px) and (max-width: 900px) and (min-height: 375px) {
footer {height: calc(100vh * 0.45)}
}
@media only screen and (min-width: 1500px) and (max-width: 2550px) and (min-height: 1079px) {
footer {
margin-top: 100px;
height: calc(100vh * 0.25)!important;
}
.quiz-screen {
min-height: 700px;
padding-top: 150px;
padding-left: 25px;
}
}
@media only screen and (min-width: 768px) {
.p-400{
padding-top: 400px;
}
} | public/frontend/css/media.css | .quiz-screen{width: 100%}
/*Iphone 5s SE*/
@media only screen and (min-width: 415px) and (max-width: 767px){
.desk-none {display: block!important;}
.mob-none {display: none!important;}
.pushy {width: 40% !important}
}
@media only screen and (min-width: 768px) and (max-width: 991px){
.desk-none {display: block!important;}
.mob-none {display: none!important;}
.pushy {width: 35% !important}
}
@media only screen and (min-width: 320px) and (max-width: 414px){
h1 {font-size: 30px}
h2 {font-size: 24px}
h6 {font-size: 12px}
.mob-none {display: none}
.desk-none {display: block}
.quiz-screen {padding-left: 15px}
.desk-none-header {
padding: 0!important;
}
.footer-logos {
}
/*Main*/
#main {width: 100%}
#main h1 {
font-size: 25px;
}
.inner-bottom-block {
flex-grow: 1;
flex-shrink: 0;
width: calc(100vw / 2);
}
.bottom-block {
width: 100%;
display: flex;
flex-grow: 0;
overflow-x: scroll;
}
.non-sm {display: none}
/*End Main*/
/*Main-second*/
#main-second {
height: auto;
padding-top: 15px;
padding-bottom: 15px;
}
#main-second .jumbotron {font-size: 12px}
/*End Main-second*/
/*Main-third*/
#main-third {
height: auto;
}
#main-third h5 {font-size: 14px}
#main-third .skill-blocks {height: 150px;}
/*End Main-third*/
/*Main-four*/
#main-four {
height: auto;
padding-top: 15px;
padding-bottom: 15px;
}
#main-four .review {height: 160px;}
/*End Main-four*/
/*Main-five*/
#main-five {
padding-top: 15px;
padding-bottom: 15px;
height: auto;
}
#main-five .blog {height: 175px}
/*End Main-five*/
/*Main-six*/
#main-six {
padding-top: 20px;
padding-bottom: 20px;
height: auto;
}
#main-six p {font-size: 12px;}
/*End Main-six*/
/*Footer*/
footer {
height: auto;
}
footer ul {display: block!important;}
footer ul > li:nth-child(2){width: auto}
footer .footer-info {margin-left: 15px; font-size: 12px}
.justify-content-end {justify-content: center!important;}
.margin-75 {margin-top: 25px}
.margin-25 {margin-top: 0}
/* End Footer*/
}
@media (width: 414px) and (height: 736px){
h1 {font-size: 30px}
h2 {font-size: 24px}
h6 {font-size: 12px}
.mob-none {display: none}
.desk-none {display: block}
/*Main*/
#main {width: 100%}
#main h1 {
font-size: 25px;
}
.inner-bottom-block {
flex-grow: 1;
flex-shrink: 0;
width: calc(100vw / 2);
}
.bottom-block {
width: 100%;
display: flex;
flex-grow: 0;
overflow-x: scroll;
}
.non-sm {display: none}
/*End Main*/
/*Main-second*/
#main-second {
height: auto;
padding-top: 15px;
padding-bottom: 15px;
}
#main-second .jumbotron {font-size: 12px}
/*End Main-second*/
/*Main-third*/
#main-third {
height: auto!important;
}
#main-third h5 {font-size: 14px}
#main-third .skill-blocks {height: 150px;}
/*End Main-third*/
/*Main-four*/
#main-four {
height: auto;
padding-top: 15px;
padding-bottom: 15px;
}
#main-four .review {height: 160px;}
/*End Main-four*/
/*Main-five*/
#main-five {
padding-top: 15px;
padding-bottom: 15px;
height: auto;
}
#main-five .blog {height: 175px}
/*End Main-five*/
/*Main-six*/
#main-six {
padding-top: 20px;
padding-bottom: 20px;
height: auto;
}
#main-six p {font-size: 12px;}
/*End Main-six*/
/*Footer*/
footer {
height: auto;
}
footer ul {display: block!important;}
footer ul > li:nth-child(2){width: auto}
footer .footer-info {margin-left: 15px; font-size: 12px}
.justify-content-end {justify-content: center!important;}
.margin-75 {margin-top: 25px}
.margin-25 {margin-top: 0}
}
@media (min-height: 1024px) and (max-height: 2200px){
#main {height: calc(100vh * 0.5)!important;}
#main-second {height: calc(100vh * 0.6)!important;}
#main-third {height: calc(100vh * 0.7);}
#main-four {height: calc(100vh * 0.35);}
#main-five {height: calc(100vh * 0.35);}
#main-six {height: calc(100vh * 0.35);}
footer {height: calc(100vh * 0.30)!important;}
}
@media (min-width: 1200px) and (min-height: 720px){
#main-third {height: calc(100vh * 1.5)!important;}
footer {height: calc(100vh * 0.38)!important;}
}
@media (min-width: 1000px) and (min-height: 801px) and (max-height: 1199px) {
#main-second {height: calc(100vh * 0.7);}
#main-third {height: calc(100vh * 1.3);}
#main-four {height: calc(100vh * 0.6);}
#main-five {height: calc(100vh * 0.6);}
footer {height: calc(100vh * 0.30);}
}
/*Album*/
@media only screen and (min-width: 568px) and (max-width: 900px) and (min-height: 320px){
#main h1 {font-size: 20px}
.inner-bottom-block {
flex-grow: 1;
flex-shrink: 0;
width: calc(100vw / 3);
}
.bottom-block {
width: 100%;
display: flex;
flex-grow: 0;
overflow-x: scroll;
}
#main-second{height: auto;}
#main-third {height: auto}
#main-four {height: auto}
#main-five {height: auto; padding-bottom: 15px}
#main-six {height: auto; padding-top: 15px;padding-bottom: 15px}
footer {height: calc(100vh * 0.88)}
footer li {font-size: 12px!important;}
}
@media only screen and (min-width: 667px) and (max-width: 900px) and (min-height: 375px) {
footer {height: calc(100vh * 0.75)}
footer li {font-size: 14px!important;}
}
@media only screen and (min-width: 736px) and (max-width: 900px) and (min-height: 414px) {
footer {height: calc(100vh * 0.68)}
}
@media only screen and (min-width: 812px) and (max-width: 900px) and (min-height: 375px) {
footer {height: calc(100vh * 0.55)}
footer li {font-size: 13px!important;}
footer .social-icon {margin-left: 10px}
}
@media only screen and (min-width: 896px) and (max-width: 900px) and (min-height: 375px) {
footer {height: calc(100vh * 0.45)}
}
@media only screen and (min-width: 1500px) and (max-width: 2550px) and (min-height: 1079px) {
footer {
margin-top: 100px;
height: calc(100vh * 0.25)!important;
}
.quiz-screen {
min-height: 700px;
padding-top: 150px;
padding-left: 25px;
}
}
@media only screen and (min-width: 768px) {
.p-400{
padding-top: 400px;
}
} | 0.208662 | 0.084041 |
.btn-light {
color: black;
background-color: #fff;
border-color: #eee;
}
#container {
height: 1000px;
width: auto;
min-width: 510px;
max-width: auto;
margin: 0 auto;
}
.loading {
margin-top: 10em;
text-align: center;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder{
color: black;
}
.signature{
visibility: visible !important;
}
.contract_title{
visibility: hidden;
}
@media print{
.sidebar{
visibility: hidden;
}
.footer{
visibility: hidden;
}
}
@media print{
*{
color: #000000;
}
}
@media print{
.card
{
margin-top: 0px;
}
.mobile_btn{
visibility: hidden;
}
.user-menu{
visibility: hidden;
}
.page-title-box{
visibility: hidden;
}
.logo img{
visibility: hidden;
}
.header .header-left{
height: 60px;
padding: 0 20px;
position: relative;
text-align: center;
width: 1000px !important;
z-index: 1;
transition: all 0.2s ease-in-out;
}
.page-header{
visibility: hidden;
}
.page-wrapper{
margin-left: 0px;
color: black;
}
.card{
border: none;
}
.tab-box{
visibility: hidden;
}
.tab-pane{
margin-top: -51px;
}
.signature{
visibility: visible;
}
.contract_title{
visibility: visible;
}
}
@media print{
.page-header{
visibility: hidden;
margin-bottom: -20px;
}
}
@media print{
.nav-tabs-bottom{
visibility: hidden;
}
}
.dropdown-menu {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.dropdown-menu a {
overflow: hidden;
outline: none;
}
.bss-input
{
border:0;
margin:-3px;
padding:3px;
outline: none;
color: #000;
width: 99%;
}
.bss-input:hover
{
background-color: #f5f5f5;
}
.additem .check-mark
{
opacity: 0;
z-index: -1000;
}
.addnewicon {
position: relative;
padding: 4px;
margin: -8px;
padding-right: 50px;
margin-right: -50px;
color: #aaa;
}
.addnewicon:hover {
color: #222;
}
/* Chrome, Safari, Edge, Opera remove arrows/spinners*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance:textfield;
}
/* add another option to select styles */
.dropdown-menu {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.dropdown-menu a {
overflow: hidden;
outline: none;
}
.bss-input
{
border:20px;
margin:-3px;
padding:3px;
outline: none;
color: #000;
width: 251px !important;
}
.bss-input:hover
{
background-color: #f5f5f5;
}
.additem .check-mark
{
opacity: 0;
z-index: -1000;
}
.addnewicon {
position: relative;
padding: 4px;
margin: -8px;
padding-right: 50px;
margin-right: -50px;
color: #aaa;
}
.addnewicon:hover {
color: #222;
}
.datepicker-orient-bottom
{
right: 1156.625px !important;
top: 723.359px !important;
z-index: 10 !important;
display: block !important;
}
.col-form-label
{
font-size: 13px !important;
font-weight: normal;
}
.hidden
{
display: none;
}
.staffPhoto
{
height: 120px;
width: 120px;
}
.bootstrap-select>.dropdown-toggle.bs-placeholder
{
height: 43px !important;
}
.bootstrap-select .dropdown-toggle
{
height: 43px !important;
}
.vpd-input-group input {
display: table-cell;
border: 1px solid #ebedf2 !important;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.select2
{
width: 100% !important;
}
.font-medium
{
font-size: 0.9rem !important;
}
#load-screen {
position: fixed;
z-index: 10000;
top:0px;
width: 100%;
height: 1600px;
opacity: 0.5;
}
#loading {
width: 500px;
height: 500px;
margin: 10% auto;
margin-top:270px;
background: url(../../img/loader.gif);
background-size: 40%;
background-repeat: no-repeat;
background-position: center;
}
.timesheet
{
padding: 0px;
height: 30px;
text-align: center;
}
.table.custom-table > tbody > tr > td:first-child, .table.custom-table > thead > tr > th:first-child {
padding-left: 10px;
}
.table.custom-table > tbody > tr > td, .table.custom-table > tbody > tr > th, .table.custom-table > tfoot > tr > td, .table.custom-table > tfoot > tr > th, .table.custom-table > thead > tr > td, .table.custom-table > thead > tr > th {
padding: 10px 3px;
vertical-align: middle;} | public/css/custom.css | .btn-light {
color: black;
background-color: #fff;
border-color: #eee;
}
#container {
height: 1000px;
width: auto;
min-width: 510px;
max-width: auto;
margin: 0 auto;
}
.loading {
margin-top: 10em;
text-align: center;
}
.bootstrap-select > .dropdown-toggle.bs-placeholder{
color: black;
}
.signature{
visibility: visible !important;
}
.contract_title{
visibility: hidden;
}
@media print{
.sidebar{
visibility: hidden;
}
.footer{
visibility: hidden;
}
}
@media print{
*{
color: #000000;
}
}
@media print{
.card
{
margin-top: 0px;
}
.mobile_btn{
visibility: hidden;
}
.user-menu{
visibility: hidden;
}
.page-title-box{
visibility: hidden;
}
.logo img{
visibility: hidden;
}
.header .header-left{
height: 60px;
padding: 0 20px;
position: relative;
text-align: center;
width: 1000px !important;
z-index: 1;
transition: all 0.2s ease-in-out;
}
.page-header{
visibility: hidden;
}
.page-wrapper{
margin-left: 0px;
color: black;
}
.card{
border: none;
}
.tab-box{
visibility: hidden;
}
.tab-pane{
margin-top: -51px;
}
.signature{
visibility: visible;
}
.contract_title{
visibility: visible;
}
}
@media print{
.page-header{
visibility: hidden;
margin-bottom: -20px;
}
}
@media print{
.nav-tabs-bottom{
visibility: hidden;
}
}
.dropdown-menu {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.dropdown-menu a {
overflow: hidden;
outline: none;
}
.bss-input
{
border:0;
margin:-3px;
padding:3px;
outline: none;
color: #000;
width: 99%;
}
.bss-input:hover
{
background-color: #f5f5f5;
}
.additem .check-mark
{
opacity: 0;
z-index: -1000;
}
.addnewicon {
position: relative;
padding: 4px;
margin: -8px;
padding-right: 50px;
margin-right: -50px;
color: #aaa;
}
.addnewicon:hover {
color: #222;
}
/* Chrome, Safari, Edge, Opera remove arrows/spinners*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance:textfield;
}
/* add another option to select styles */
.dropdown-menu {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.dropdown-menu a {
overflow: hidden;
outline: none;
}
.bss-input
{
border:20px;
margin:-3px;
padding:3px;
outline: none;
color: #000;
width: 251px !important;
}
.bss-input:hover
{
background-color: #f5f5f5;
}
.additem .check-mark
{
opacity: 0;
z-index: -1000;
}
.addnewicon {
position: relative;
padding: 4px;
margin: -8px;
padding-right: 50px;
margin-right: -50px;
color: #aaa;
}
.addnewicon:hover {
color: #222;
}
.datepicker-orient-bottom
{
right: 1156.625px !important;
top: 723.359px !important;
z-index: 10 !important;
display: block !important;
}
.col-form-label
{
font-size: 13px !important;
font-weight: normal;
}
.hidden
{
display: none;
}
.staffPhoto
{
height: 120px;
width: 120px;
}
.bootstrap-select>.dropdown-toggle.bs-placeholder
{
height: 43px !important;
}
.bootstrap-select .dropdown-toggle
{
height: 43px !important;
}
.vpd-input-group input {
display: table-cell;
border: 1px solid #ebedf2 !important;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
.select2
{
width: 100% !important;
}
.font-medium
{
font-size: 0.9rem !important;
}
#load-screen {
position: fixed;
z-index: 10000;
top:0px;
width: 100%;
height: 1600px;
opacity: 0.5;
}
#loading {
width: 500px;
height: 500px;
margin: 10% auto;
margin-top:270px;
background: url(../../img/loader.gif);
background-size: 40%;
background-repeat: no-repeat;
background-position: center;
}
.timesheet
{
padding: 0px;
height: 30px;
text-align: center;
}
.table.custom-table > tbody > tr > td:first-child, .table.custom-table > thead > tr > th:first-child {
padding-left: 10px;
}
.table.custom-table > tbody > tr > td, .table.custom-table > tbody > tr > th, .table.custom-table > tfoot > tr > td, .table.custom-table > tfoot > tr > th, .table.custom-table > thead > tr > td, .table.custom-table > thead > tr > th {
padding: 10px 3px;
vertical-align: middle;} | 0.277767 | 0.051272 |
body {
margin: 5px;
padding: 0;
border: 0;
text-align: justify;
}
.product-list {
margin: auto;
width: 75%;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 5px;
grid-auto-rows: minmax(300px, auto);
}
.product {
border-radius: 15px;
border: 1px lightgray solid;
background-color: white;
padding: 10px;
display: flex;
}
.product-image{
padding:5px;
flex:1;
text-align: center;
align-items: center;
display:flex;
}
img {
width:100%;
}
.product-text {
padding: 5px;
background-color:rgba(111, 110, 110, 0.1);
flex:1;
}
.product-name {
color:steelblue;
font-family:'Comic Sans MS';
font-size:1.5rem;
}
.product-description {
color: black;
font-family: Arial;
font-size: 0.8rem;
font-style: italic;
}
.product-price {
color:orange;
font-weight:bolder;
font-family: Arial;
font-size: 1.5rem;
}
.product-description li {
text-align: left;
}
.menu {
background-color: black;
color: white;
height:50px;
}
#logo {
float:right;
width:auto;
height:50px;
}
.menu ul {
margin:auto;
display: flex;
flex-direction: row;
justify-content: center;
list-style: none;
padding:0;
}
.menu li{
padding: 1em 1em;
font-family: Arial;
font-size: 1em;
}
.menu li:hover {
background-color: dimgrey;
}
@media only screen and (max-width: 600px) {
.product {
background-color: white;
padding: 10px;
margin: 5px;
flex: 1 10%;
}
.product-list {
display: flex;
flex-direction: column;
flex-wrap: wrap;
margin: auto;
width: 100%;
}
.menu {
width:100%;
height:auto;
}
.menu ul {
margin:0;
list-style: none;
padding: 0;
display:block;
}
.menu li {
padding: 0 0.25em;
font-family: Arial;
font-size: 1em;
text-align: left;
border-bottom: 1px lightgray solid;
}
} | Exercises/resources/products.css | body {
margin: 5px;
padding: 0;
border: 0;
text-align: justify;
}
.product-list {
margin: auto;
width: 75%;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-gap: 5px;
grid-auto-rows: minmax(300px, auto);
}
.product {
border-radius: 15px;
border: 1px lightgray solid;
background-color: white;
padding: 10px;
display: flex;
}
.product-image{
padding:5px;
flex:1;
text-align: center;
align-items: center;
display:flex;
}
img {
width:100%;
}
.product-text {
padding: 5px;
background-color:rgba(111, 110, 110, 0.1);
flex:1;
}
.product-name {
color:steelblue;
font-family:'Comic Sans MS';
font-size:1.5rem;
}
.product-description {
color: black;
font-family: Arial;
font-size: 0.8rem;
font-style: italic;
}
.product-price {
color:orange;
font-weight:bolder;
font-family: Arial;
font-size: 1.5rem;
}
.product-description li {
text-align: left;
}
.menu {
background-color: black;
color: white;
height:50px;
}
#logo {
float:right;
width:auto;
height:50px;
}
.menu ul {
margin:auto;
display: flex;
flex-direction: row;
justify-content: center;
list-style: none;
padding:0;
}
.menu li{
padding: 1em 1em;
font-family: Arial;
font-size: 1em;
}
.menu li:hover {
background-color: dimgrey;
}
@media only screen and (max-width: 600px) {
.product {
background-color: white;
padding: 10px;
margin: 5px;
flex: 1 10%;
}
.product-list {
display: flex;
flex-direction: column;
flex-wrap: wrap;
margin: auto;
width: 100%;
}
.menu {
width:100%;
height:auto;
}
.menu ul {
margin:0;
list-style: none;
padding: 0;
display:block;
}
.menu li {
padding: 0 0.25em;
font-family: Arial;
font-size: 1em;
text-align: left;
border-bottom: 1px lightgray solid;
}
} | 0.451327 | 0.116714 |
html,
body {
font-family: 'halyard-display', 'halyard-micro', 'sans-serif';
background-color: #1e2122;
}
div {
background-color: #495255;
}
header {
text-align: center;
}
main, footer, header {
max-width: 80%;
margin-left: auto;
margin-right: auto;
text-align: center;
}
footer>div, nav {
max-width: 1140px;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
}
.nav-link {
color: #B2D61E!important;
}
#footer-media {
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
}
#footer-media>li {
float: left;
width: 5em;
text-align: left;
}
.size-media {
font-size: 35px;
}
.justify-text {
text-align: justify;
margin-top: 20px;
}
#timer {
padding: 5px;
font-size: small;
}
.top-margin {
margin-top: 20px;
}
h1 {
color: #72a603;
}
h2, .event-name h3,
.staff-lead {
color: #e5e87f;
}
h1,
h2,
h3,
nav, p {
font-family: 'halyard-micro';
}
nav {
font-size: small;
}
p {
color: #FFFFFF;
}
a,
.alt-text > h3,
.alt-text > h2 {
color: #e5e87f;
}
.dark-text{
color: #1e2122;
}
a:hover {
color: #B2D61E;
}
button {
background-color: #a8b3b7;
border-radius: 8px;
}
.header-img {
max-width: 100%;
height: auto;
text-align: center;
}
hr {
max-width: 75%;
}
.event-spacer {
margin-top: 30px;
margin-bottom: 30px;
}
.end-spacer {
padding-bottom: 40px;
}
/*Start animated links css */
a.middle {
position: relative;
}
a.middle:before {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: #FFF;
visibility: hidden;
transform: scaleX(0);
transition: all 0.3s ease-in-out;
}
a.middle:hover:before {
visibility: visible;
transform: scaleX(1);
}
/*End animated links hover css*/
.card {
margin: 20px;
}
.staff-lead {
font-weight: 700;
}
.org-lead {
color: #6baff0;
}
.spacer-section {
margin-top: 125px;
margin-bottom: 125px;
}
form {
max-width: 500px;
padding-bottom: 40px;
}
.subscribe-form {
max-width: 500em;
padding-bottom: 5px;
padding: 0px 15px;
}
.volunteer {
max-width: 100%;
}
.card-footer, .card-header {
background-color: #495255;
border-top: 0px;
}
.intro-pic {
width: 80%;
height: auto;
margin: 0 auto;
}
.alt {
background-color: #5a6569;
}
/*Start Block quote styling*/
/* center the blockquote in the page */
.blockquote-wrapper {
display: flex;
}
/* Blockquote main style */
.blockquote {
position: relative;
font-weight: 800;
color: #ffffff;
padding: 30px 0;
width: 100%;
max-width: 900px;
z-index: 1;
margin: 80px auto;
align-self: center;
border-top: solid 1px;
border-bottom: solid 1px;
}
/* Blockquote header */
.blockquote h1 {
position: relative;
color: #FFFFFF;
font-size: 40px;
font-weight: 800;
line-height: 1;
margin: 0;
}
/* Blockquote right double quotes */
.blockquote:after {
position: absolute;
content: "”";
color: #ffffff;
font-size: 10rem;
line-height: 0;
bottom: -43px;
right: 30px;
}
/* Blockquote subheader */
.blockquote h4 {
position: relative;
color: #292a2b;
font-size: 1.4rem;
font-weight: normal;
line-height: 1;
margin: 0;
padding-top: 20px;
z-index: 1;
} | css/darkmode.css | html,
body {
font-family: 'halyard-display', 'halyard-micro', 'sans-serif';
background-color: #1e2122;
}
div {
background-color: #495255;
}
header {
text-align: center;
}
main, footer, header {
max-width: 80%;
margin-left: auto;
margin-right: auto;
text-align: center;
}
footer>div, nav {
max-width: 1140px;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
}
.nav-link {
color: #B2D61E!important;
}
#footer-media {
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
}
#footer-media>li {
float: left;
width: 5em;
text-align: left;
}
.size-media {
font-size: 35px;
}
.justify-text {
text-align: justify;
margin-top: 20px;
}
#timer {
padding: 5px;
font-size: small;
}
.top-margin {
margin-top: 20px;
}
h1 {
color: #72a603;
}
h2, .event-name h3,
.staff-lead {
color: #e5e87f;
}
h1,
h2,
h3,
nav, p {
font-family: 'halyard-micro';
}
nav {
font-size: small;
}
p {
color: #FFFFFF;
}
a,
.alt-text > h3,
.alt-text > h2 {
color: #e5e87f;
}
.dark-text{
color: #1e2122;
}
a:hover {
color: #B2D61E;
}
button {
background-color: #a8b3b7;
border-radius: 8px;
}
.header-img {
max-width: 100%;
height: auto;
text-align: center;
}
hr {
max-width: 75%;
}
.event-spacer {
margin-top: 30px;
margin-bottom: 30px;
}
.end-spacer {
padding-bottom: 40px;
}
/*Start animated links css */
a.middle {
position: relative;
}
a.middle:before {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: #FFF;
visibility: hidden;
transform: scaleX(0);
transition: all 0.3s ease-in-out;
}
a.middle:hover:before {
visibility: visible;
transform: scaleX(1);
}
/*End animated links hover css*/
.card {
margin: 20px;
}
.staff-lead {
font-weight: 700;
}
.org-lead {
color: #6baff0;
}
.spacer-section {
margin-top: 125px;
margin-bottom: 125px;
}
form {
max-width: 500px;
padding-bottom: 40px;
}
.subscribe-form {
max-width: 500em;
padding-bottom: 5px;
padding: 0px 15px;
}
.volunteer {
max-width: 100%;
}
.card-footer, .card-header {
background-color: #495255;
border-top: 0px;
}
.intro-pic {
width: 80%;
height: auto;
margin: 0 auto;
}
.alt {
background-color: #5a6569;
}
/*Start Block quote styling*/
/* center the blockquote in the page */
.blockquote-wrapper {
display: flex;
}
/* Blockquote main style */
.blockquote {
position: relative;
font-weight: 800;
color: #ffffff;
padding: 30px 0;
width: 100%;
max-width: 900px;
z-index: 1;
margin: 80px auto;
align-self: center;
border-top: solid 1px;
border-bottom: solid 1px;
}
/* Blockquote header */
.blockquote h1 {
position: relative;
color: #FFFFFF;
font-size: 40px;
font-weight: 800;
line-height: 1;
margin: 0;
}
/* Blockquote right double quotes */
.blockquote:after {
position: absolute;
content: "”";
color: #ffffff;
font-size: 10rem;
line-height: 0;
bottom: -43px;
right: 30px;
}
/* Blockquote subheader */
.blockquote h4 {
position: relative;
color: #292a2b;
font-size: 1.4rem;
font-weight: normal;
line-height: 1;
margin: 0;
padding-top: 20px;
z-index: 1;
} | 0.420243 | 0.099733 |
body {
background-color: #FFF;
color: #434343;
font-family: "Lato", sans-serif;
font-size: 14px;
font-weight: 400;
height: 100%;
padding: 0;
}
.jtk-bootstrap {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.jtk-bootstrap .jtk-page-container {
display: flex;
width: 100vw;
justify-content: center;
flex: 1;
}
.jtk-bootstrap .jtk-container {
width: 60%;
max-width: 800px;
}
.jtk-bootstrap-wide .jtk-container {
width: 80%;
max-width: 1187px;
}
.jtk-demo-main {
position: relative;
margin-top: 98px;
}
.jtk-demo-main .description {
font-size: 13px;
margin-top: 25px;
padding: 13px;
margin-bottom: 22px;
background-color: #f4f5ef;
}
.jtk-demo-main .description li {
list-style-type: disc !important;
}
.jtk-demo-canvas {
height: 550px;
max-height: 700px;
border: 1px solid #CCC;
background-color: white;
display: flex;
}
.canvas-wide {
margin-left: 0;
}
.miniview {
position: absolute;
top: 25px;
right: 25px;
z-index: 100;
}
.jtk-demo-dataset {
text-align: left;
max-height: 600px;
overflow: auto;
}
.demo-title {
float: left;
font-size: 18px;
}
.controls {
top: 25px;
color: #FFF;
margin-right: 10px;
position: absolute;
left: 25px;
z-index: 1;
}
.controls i {
background-color: #3E7E9C;
border-radius: 4px;
cursor: pointer;
margin-right: 0;
padding: 4px;
}
li {
list-style-type: none;
}
/* ------------------------ node palette -------------------- */
.sidebar {
margin: 0;
padding: 0;
padding-top: 7px;
padding-right: 10px;
width: 150px;
float: left;
text-align: center;
height: 550px;
background-color: #84acb3;
}
.sidebar ul li {
background-color: #234b5e;
border-radius: 11px;
color: #f7ebca;
cursor: move;
margin-bottom: 10px;
margin-left: 6px;
padding: 8px;
width: 128px;
}
.sidebar ul {
width: 100%;
padding: 0;
}
.sidebar ul li:hover {
background-color: #577a8b;
}
.sidebar i {
float: left;
}
@media (max-width: 600px) {
.sidebar {
float: none;
height: 55px;
width: 100%;
padding-top: 0;
}
.sidebar ul li {
display: inline-block;
margin-top: 7px;
width: 67px;
}
.jtk-demo-canvas {
margin-left: 0;
margin-top: 10px;
height: 364px;
}
}
/* ---------------------------------------------------------------------------------------------------- */
/* --- jsPlumb setup ---------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.jtk-connector {
z-index: 9;
}
.jtk-endpoint {
z-index: 12;
opacity: 0.8;
cursor: pointer;
}
.jtk-overlay {
background-color: white;
white-space:nowrap;
color: #434343;
font-weight: 400;
padding: 4px;
z-index: 10;
}
.jtk-overlay.jtk-hover {
color: #434343;
}
path {
cursor: pointer;
}
.delete {
padding: 2px;
cursor: pointer;
float: left;
font-size: 10px;
line-height: 20px;
}
.add, .edit {
cursor: pointer;
float: right;
font-size: 10px;
line-height: 20px;
margin-right: 2px;
padding: 2px;
}
.edit:hover {
color: #ff8000;
}
.selected-mode {
color: #E4F013;
}
.connect {
width: 10px;
height: 10px;
background-color: #f76258;
position: absolute;
bottom: 13px;
right: 5px;
}
/* header styles */
.demo-links {
position: fixed;
right: 0;
top: 57px;
font-size: 11px;
background-color: white;
opacity: 0.8;
padding-right: 10px;
padding-left: 5px;
text-transform: uppercase;
z-index: 100001;
}
.demo-links div {
display: inline;
margin-right: 7px;
margin-left: 7px;
}
.demo-links i {
padding: 4px;
}
/*
.navbar-top {
background-color: #3c565d;
border:none;
font-size: 14px;
font-weight: 700;
}
.navbar-nav > li > a {
border: none;
color: #FFF;
padding: 6px 10px;
text-decoration: none;
}
.social-nav {
color: #FFF;
float: right;
font-size: 22px;
}
.nav > li > a:hover, .nav > li > a:focus {
background-color: transparent;
color: #cdcc73;
text-decoration: none;
}
*/ | plugins/jsplumb/css/jsplumbtoolkit-demo.css |
body {
background-color: #FFF;
color: #434343;
font-family: "Lato", sans-serif;
font-size: 14px;
font-weight: 400;
height: 100%;
padding: 0;
}
.jtk-bootstrap {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.jtk-bootstrap .jtk-page-container {
display: flex;
width: 100vw;
justify-content: center;
flex: 1;
}
.jtk-bootstrap .jtk-container {
width: 60%;
max-width: 800px;
}
.jtk-bootstrap-wide .jtk-container {
width: 80%;
max-width: 1187px;
}
.jtk-demo-main {
position: relative;
margin-top: 98px;
}
.jtk-demo-main .description {
font-size: 13px;
margin-top: 25px;
padding: 13px;
margin-bottom: 22px;
background-color: #f4f5ef;
}
.jtk-demo-main .description li {
list-style-type: disc !important;
}
.jtk-demo-canvas {
height: 550px;
max-height: 700px;
border: 1px solid #CCC;
background-color: white;
display: flex;
}
.canvas-wide {
margin-left: 0;
}
.miniview {
position: absolute;
top: 25px;
right: 25px;
z-index: 100;
}
.jtk-demo-dataset {
text-align: left;
max-height: 600px;
overflow: auto;
}
.demo-title {
float: left;
font-size: 18px;
}
.controls {
top: 25px;
color: #FFF;
margin-right: 10px;
position: absolute;
left: 25px;
z-index: 1;
}
.controls i {
background-color: #3E7E9C;
border-radius: 4px;
cursor: pointer;
margin-right: 0;
padding: 4px;
}
li {
list-style-type: none;
}
/* ------------------------ node palette -------------------- */
.sidebar {
margin: 0;
padding: 0;
padding-top: 7px;
padding-right: 10px;
width: 150px;
float: left;
text-align: center;
height: 550px;
background-color: #84acb3;
}
.sidebar ul li {
background-color: #234b5e;
border-radius: 11px;
color: #f7ebca;
cursor: move;
margin-bottom: 10px;
margin-left: 6px;
padding: 8px;
width: 128px;
}
.sidebar ul {
width: 100%;
padding: 0;
}
.sidebar ul li:hover {
background-color: #577a8b;
}
.sidebar i {
float: left;
}
@media (max-width: 600px) {
.sidebar {
float: none;
height: 55px;
width: 100%;
padding-top: 0;
}
.sidebar ul li {
display: inline-block;
margin-top: 7px;
width: 67px;
}
.jtk-demo-canvas {
margin-left: 0;
margin-top: 10px;
height: 364px;
}
}
/* ---------------------------------------------------------------------------------------------------- */
/* --- jsPlumb setup ---------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------- */
.jtk-connector {
z-index: 9;
}
.jtk-endpoint {
z-index: 12;
opacity: 0.8;
cursor: pointer;
}
.jtk-overlay {
background-color: white;
white-space:nowrap;
color: #434343;
font-weight: 400;
padding: 4px;
z-index: 10;
}
.jtk-overlay.jtk-hover {
color: #434343;
}
path {
cursor: pointer;
}
.delete {
padding: 2px;
cursor: pointer;
float: left;
font-size: 10px;
line-height: 20px;
}
.add, .edit {
cursor: pointer;
float: right;
font-size: 10px;
line-height: 20px;
margin-right: 2px;
padding: 2px;
}
.edit:hover {
color: #ff8000;
}
.selected-mode {
color: #E4F013;
}
.connect {
width: 10px;
height: 10px;
background-color: #f76258;
position: absolute;
bottom: 13px;
right: 5px;
}
/* header styles */
.demo-links {
position: fixed;
right: 0;
top: 57px;
font-size: 11px;
background-color: white;
opacity: 0.8;
padding-right: 10px;
padding-left: 5px;
text-transform: uppercase;
z-index: 100001;
}
.demo-links div {
display: inline;
margin-right: 7px;
margin-left: 7px;
}
.demo-links i {
padding: 4px;
}
/*
.navbar-top {
background-color: #3c565d;
border:none;
font-size: 14px;
font-weight: 700;
}
.navbar-nav > li > a {
border: none;
color: #FFF;
padding: 6px 10px;
text-decoration: none;
}
.social-nav {
color: #FFF;
float: right;
font-size: 22px;
}
.nav > li > a:hover, .nav > li > a:focus {
background-color: transparent;
color: #cdcc73;
text-decoration: none;
}
*/ | 0.600071 | 0.068506 |
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
:root {
--primary-color-hue: 252;
--dark-color-lightness: 17%;
--light-color-lightness: 95%;
--white-color-lightness: 100%;
--color-white: hsl(252, 30%, var(--white-color-lightness));
--color-light: hsl(252, 30%, var(--light-color-lightness));
--color-gray: hsl(var(--primary-color-hue), 15%, 65%);
--color-primary: hsl(var(--primary-color-hue), 75%, 60%);
--color-secondary: hsl(252, 100%, 90%);
--color-success: hsl(120, 95%, 65%);
--color-danger: hsl(0, 95%, 65%);
--color-dark: hsl(252, 30%, var(--dark-color-lightness));
--color-black: hsl(252, 30%, 10%);
--border-radius: 2rem;
--card-border-radius: 1rem;
--btn-padding: 0.6rem 2rem;
--search-padding: 0.6rem 1rem;
--card-padding: 1rem;
--sticky-top-left: 5.4rem;
--sticky-top-right: -18rem;
}
*,
*::before,
*::after {
margin: 0;
padding: 0;
outline: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
border: none;
}
::-webkit-scrollbar {
display: none;
}
body {
font-family: "Poppins", sans-serif;
color: var(--color-dark);
background: var(--color-light);
overflow-x: hidden;
}
/* GENERAL STYLES */
.container {
width: 80%;
margin: 0 auto;
}
.profile-photo {
width: 2.7rem;
aspect-ratio: 1/1;
border-radius: 50%;
overflow: hidden;
}
img {
display: block;
width: 100%;
}
.btn {
display: inline-block;
padding: var(--btn-padding);
font-weight: 500;
border-radius: var(--border-radius);
cursor: pointer;
transition: all 300ms ease;
font-size: 0.9rem;
}
.btn:hover {
opacity: 0.8;
}
.btn-primary {
background: var(--color-primary);
color: white;
}
.text-bold {
font-weight: 500;
}
.text-muted {
color: var(--color-gray);
}
/*================== NAVBAR =================*/
nav {
width: 100%;
background: var(--color-white);
padding: 0.7rem 0;
position: fixed;
top: 0;
z-index: 10;
}
nav .container {
display: flex;
align-items: center;
justify-content: space-between;
}
.search-bar {
background: var(--color-light);
border-radius: var(--border-radius);
padding: var(--search-padding);
}
.search-bar input[type="search"] {
background: transparent;
width: 30vw;
margin-left: 1rem;
font-size: 0.9rem;
color: var(--color-dark);
}
nav .search-bar input[type="search"]::placeholder {
color: var(--color-gray);
}
nav .create {
display: flex;
align-items: center;
gap: 2rem;
}
/* ===================== MAIN ======================= */
main {
position: relative;
top: 5.4rem;
}
main .container {
display: grid;
grid-template-columns: 18vw auto 20vw;
column-gap: 2rem;
position: relative;
}
/* =================== LEFT ================ */
main .container .left {
height: max-content;
position: sticky;
top: var(--sticky-top-left);
}
main .container .left .profile {
padding: var(--card-padding);
background: var(--color-white);
border-radius: var(--card-border-radius);
display: flex;
align-items: center;
column-gap: 1rem;
width: 100%;
}
/* -------------- SIDEBAR ------------------ */
.left .sidebar {
margin-top: 1rem;
background: var(--color-white);
border-radius: var(--card-border-radius);
}
.left .sidebar .menu-item {
display: flex;
align-items: center;
height: 4rem;
cursor: pointer;
transition: all 300ms ease;
position: relative;
}
.left .sidebar .menu-item:hover {
background: var(--color-light);
}
.left .sidebar i {
font-size: 1.4rem;
color: var(--color-gray);
margin-left: 2rem;
position: relative;
}
.left .sidebar i .notification-count {
background: var(--color-danger);
color: white;
font-size: 0.7rem;
width: fit-content;
border-radius: 0.8rem;
padding: 0.1rem 0.4rem;
position: absolute;
top: -0.2rem;
right: -0.3rem;
}
.left .sidebar h3 {
margin-left: 1.5rem;
font-size: 1rem;
}
.left .sidebar .active {
background: var(--color-light);
}
.left .sidebar .active i,
.left .sidebar .active h3 {
color: var(--color-primary);
}
.left .sidebar .active::before {
content: "";
display: block;
width: 0.5rem;
height: 100%;
position: absolute;
background: var(--color-primary);
}
.left .sidebar .menu-item:first-child.active {
border-top-left-radius: var(--card-border-radius);
overflow: hidden;
}
.left .sidebar .menu-item:last-child.active {
border-bottom-left-radius: var(--card-border-radius);
overflow: hidden;
}
.left .btn {
margin-top: 1rem;
width: 100%;
text-align: center;
padding: 1rem 0;
}
/* ----------------------- NOTIFICATION POPUP ---------------- */
.left .notifications-popup {
position: absolute;
top: 0;
left: 110%;
width: 30rem;
background: var(--color-white);
border-radius: var(--card-border-radius);
padding: var(--card-padding);
box-shadow: 0 0 2rem hsl(var(--color-primary), 75%, 60% 25%);
z-index: 8;
display: none;
}
.left .notifications-popup::before {
content: "";
width: 1.2rem;
height: 1.2rem;
display: block;
background: var(--color-white);
position: absolute;
left: -0.6rem;
transform: rotate(45deg);
}
.left .notifications-popup > div {
display: flex;
align-items: start;
gap: 1rem;
margin-bottom: 1rem;
}
.left .notifications-popup small {
display: block;
}
/* ============================= MIDDLE ================================ */
.middle .stories {
display: flex;
justify-content: space-between;
height: 12rem;
gap: 0.5rem;
}
.middle .stories .story {
padding: var(--card-padding);
border-radius: var(--card-border-radius);
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
color: white;
font-size: 0.75rem;
width: 100%;
position: relative;
overflow: hidden;
}
.middle .stories .story::before {
content: "";
display: block;
width: 100%;
height: 5rem;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
position: absolute;
bottom: 0;
}
.middle .stories .story .name {
z-index: 2;
}
.middle .stories .story:nth-child(1) {
background: url("https://media.istockphoto.com/photos/team-of-young-football-players-stacking-hands-before-match-picture-id1278976828?b=1&k=20&m=1278976828&s=170667a&w=0&h=1-GftAi5BTANyoB-5pqe-bpA42EfgPh_oJwxf1O5Chw=") no-repeat center center/cover;
}
.middle .stories .story:nth-child(2) {
background: url("https://media.istockphoto.com/photos/celebrating-the-victory-after-soccer-match-picture-id876899218?k=20&m=876899218&s=612x612&w=0&h=eTOuuJVaotr6LfRGnIVZWCQTfrBrxejio5aBwRxGr0o=") no-repeat center center/cover;
}
.middle .stories .story:nth-child(3) {
background: url("https://cds.cdm.depaul.edu/wp-content/uploads/2016/11/bigstock-group-of-student-studying-toge-49888721.jpg") no-repeat center center/cover;
}
.middle .stories .story:nth-child(4) {
background: url("https://www.mcicon.com/wp-content/uploads/2021/02/Sport_Team_1-copy-5.jpg") no-repeat center center/cover;
}
.middle .stories .story:nth-child(5) {
background: url("https://www.signupgenius.com/cms/socialMediaImages/team-building-sports-team-article-1200x800.jpg") no-repeat center center/cover;
}
.middle .stories .story:nth-child(6) {
background: url("https://ih1.redbubble.net/image.12218283.9266/raf,750x1000,075,t,000000:44f0b734a5.u9.jpg") no-repeat center center/cover;
}
.middle .story .profile-photo {
width: 2rem;
height: 2rem;
align-self: start;
border: 3px solid var(--color-primary);
}
/* ----------------- CREATE POST ------------- */
.middle .create-post {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 1rem;
background: var(--color-white);
padding: 0.4rem var(--card-padding);
border-radius: var(--border-radius);
}
.middle .create-post input[type="text"] {
justify-self: start;
width: 100%;
padding-left: 1rem;
background: transparent;
color: var(--color-dark);
margin-right: 1rem;
}
/* ---------------------- FEEDS --------------------- */
.middle .feeds .feed {
background: var(--color-white);
border-radius: var(--card-border-radius);
padding: var(--card-padding);
margin: 1rem 0;
font-size: 0.85rem;
line-height: 1.5;
}
.middle .feed .head {
display: flex;
justify-content: space-between;
}
.middle .feed .user {
display: flex;
gap: 1rem;
}
.middle .feed .photo {
border-radius: var(--card-border-radius);
overflow: hidden;
margin: 0.7rem 0;
}
.middle .feed .action-buttons {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 1.4rem;
margin: 0.6rem;
}
#deleteBtn{
background-color: #ff002b;
}
.middle .liked-by {
display: flex;
}
.middle .liked-by span {
width: 1.4rem;
height: 1.4rem;
display: block;
border-radius: 50%;
overflow: hidden;
border: 2px solid var(--color-white);
margin-left: -0.6rem;
}
.middle .liked-by span:first-child {
margin: 0;
}
.middle .liked-by p {
margin-left: 0.5rem;
}
/* ========================== RIGHT =============================== */
main .container .right {
height: max-content;
position: sticky;
top: var(--sticky-top-right);
bottom: 0;
}
.right .messages {
background: var(--color-white);
border-radius: var(--card-border-radius);
padding: var(--card-padding);
}
.right .messages .heading {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1rem;
}
.right .messages i {
font-size: 1.4rem;
}
.right .messages .search-bar {
display: flex;
margin-bottom: 1rem;
}
.right .messages .category {
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
}
.right .messages .category h6 {
width: 100%;
text-align: center;
border-bottom: 4px solid var(--color-light);
padding-bottom: 0.5rem;
font-size: 0.85rem;
}
.right .messages .category .active {
border-color: var(--color-dark);
}
.right .messages .message-requests {
color: var(--color-primary);
}
.right .messages .message {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
align-items: start;
}
.right .message .profile-photo {
position: relative;
overflow: visible;
}
.right .profile-photo img {
border-radius: 50%;
}
.right .messages .message:last-child {
margin: 0;
}
.right .messages .message p {
font-size: 0.8rem;
}
.right .messages .message .profile-photo .active {
width: 0.8rem;
height: 0.8rem;
border-radius: 50%;
border: 3px solid var(--color-white);
background: var(--color-success);
position: absolute;
bottom: 0;
right: 0;
}
/* ================= FRIEND REQUESTS =================== */
.right .friend-requests {
margin-top: 1rem;
}
.right .friend-requests h4 {
color: var(--color-gray);
margin: 1rem 0;
}
.right .request {
background: var(--color-white);
padding: var(--card-padding);
border-radius: var(--card-border-radius);
margin-bottom: 0.7rem;
}
.right .request .info {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
}
.right .request .action {
display: flex;
gap: 1rem;
}
/* ======================== THEME CUSTOMIZATION ========================== */
.customize-theme {
background: rgba(0, 0, 0, 0.7);
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 100;
text-align: center;
display: grid;
place-items: center;
font-size: 0.9rem;
display: none;
}
.customize-theme .card {
background: var(--color-white);
padding: 3rem;
border-radius: var(--card-border-radius);
width: 50%;
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
/* ----------------- FONT SIZE ------------------ */
.customize-theme .font-size {
margin-top: 5rem;
}
.customize-theme .font-size > div {
display: flex;
justify-content: space-between;
align-items: center;
background: var(--color-light);
padding: var(--search-padding);
border-radius: var(--card-border-radius);
}
.customize-theme .choose-size {
background: var(--color-secondary);
height: 0.3rem;
width: 100%;
margin: 0 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.customize-theme .choose-size span {
width: 1rem;
height: 1rem;
background: var(--color-secondary);
border-radius: 50%;
cursor: pointer;
}
.customize-theme .choose-size span.active {
background: var(--color-primary);
}
/* ----------------- FONT SIZE ------------------ */
.customize-theme .color {
margin-top: 2rem;
}
.customize-theme .choose-color {
background: var(--color-light);
padding: var(--search-padding);
border-radius: var(--card-border-radius);
display: flex;
align-items: center;
justify-content: space-between;
}
.customize-theme .choose-color span {
width: 2.2rem;
height: 2.2rem;
border-radius: 50%;
}
.customize-theme .choose-color span:nth-child(1) {
background: hsl(252, 75%, 60%);
}
.customize-theme .choose-color span:nth-child(2) {
background: hsl(52, 75%, 60%);
}
.customize-theme .choose-color span:nth-child(3) {
background: hsl(352, 75%, 60%);
}
.customize-theme .choose-color span:nth-child(4) {
background: hsl(152, 75%, 60%);
}
.customize-theme .choose-color span:nth-child(5) {
background: hsl(202, 75%, 60%);
}
.customize-theme .choose-color span.active {
border: 5px solid white;
}
/* -------------------- BACKGROUND -------------------- */
.customize-theme .background {
margin-top: 2rem;
}
.customize-theme .choose-bg {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
}
.customize-theme .choose-bg > div {
padding: var(--card-padding);
width: 100%;
display: flex;
align-items: center;
font-size: 1rem;
font-weight: bold;
border-radius: 0.4rem;
cursor: pointer;
}
.customize-theme .choose-bg > div.active {
border: 2px solid var(--color-primary);
}
.customize-theme .choose-bg .bg-1 {
background: white;
color: black;
}
.customize-theme .choose-bg .bg-2 {
background: hsl(252, 30%, 17%);
color: white;
}
.customize-theme .choose-bg .bg-3 {
background: hsl(252, 30%, 10%);
color: white;
}
.customize-theme .choose-bg > div span {
width: 2rem;
height: 2rem;
border: 2px solid var(--color-gray);
border-radius: 50%;
margin-right: 1rem;
}
/* ==========================
MEDIA QUERIES FOR SMALL LAPTOPS AND BIG TABLETS
==========================
*/
@media screen and (max-width: 1200px) {
.container {
width: 96%;
}
main .container {
grid-template-columns: 5rem auto 30vw;
gap: 1rem;
}
.left {
width: 5rem;
z-index: 5;
}
main .container .left .profile {
display: none;
}
.sidebar h3 {
display: none;
}
.left .btn {
display: none;
}
.customize-theme .card {
width: 80vw;
}
}
/* ==========================
MEDIA QUERIES FOR SMALL TABLETS AND MOBILE PHONES
==========================
*/
@media screen and (max-width: 992px) {
nav .search-bar {
display: none;
}
main .container {
grid-template-columns: 0 auto 5rem;
gap: 0;
}
main .container .left {
grid-column: 3/4;
position: fixed;
bottom: 0;
right: 0;
}
/* ------------ NOTIFICATION POPUP ------------- */
.left .notifications-popup {
position: absolute;
left: -20rem;
width: 20rem;
}
.left .notifications-popup::before {
display: absolute;
top: 1.3rem;
left: calc(20rem - 0.6rem);
display: block;
}
main .container .middle {
grid-column: 1/3;
}
main .container .right {
display: none;
}
.customize-theme .card {
width: 92vw;
padding: 1rem;
}
.customize-theme .choose-bg > div {
width: 90%;
}
.customize-theme .choose-bg > div span {
width: 1rem;
height: 1rem;
border: 2px solid var(--color-gray);
border-radius: 50%;
margin-right: 1rem;
}
} | src/main/resources/static/css/blog.css | @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");
:root {
--primary-color-hue: 252;
--dark-color-lightness: 17%;
--light-color-lightness: 95%;
--white-color-lightness: 100%;
--color-white: hsl(252, 30%, var(--white-color-lightness));
--color-light: hsl(252, 30%, var(--light-color-lightness));
--color-gray: hsl(var(--primary-color-hue), 15%, 65%);
--color-primary: hsl(var(--primary-color-hue), 75%, 60%);
--color-secondary: hsl(252, 100%, 90%);
--color-success: hsl(120, 95%, 65%);
--color-danger: hsl(0, 95%, 65%);
--color-dark: hsl(252, 30%, var(--dark-color-lightness));
--color-black: hsl(252, 30%, 10%);
--border-radius: 2rem;
--card-border-radius: 1rem;
--btn-padding: 0.6rem 2rem;
--search-padding: 0.6rem 1rem;
--card-padding: 1rem;
--sticky-top-left: 5.4rem;
--sticky-top-right: -18rem;
}
*,
*::before,
*::after {
margin: 0;
padding: 0;
outline: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
border: none;
}
::-webkit-scrollbar {
display: none;
}
body {
font-family: "Poppins", sans-serif;
color: var(--color-dark);
background: var(--color-light);
overflow-x: hidden;
}
/* GENERAL STYLES */
.container {
width: 80%;
margin: 0 auto;
}
.profile-photo {
width: 2.7rem;
aspect-ratio: 1/1;
border-radius: 50%;
overflow: hidden;
}
img {
display: block;
width: 100%;
}
.btn {
display: inline-block;
padding: var(--btn-padding);
font-weight: 500;
border-radius: var(--border-radius);
cursor: pointer;
transition: all 300ms ease;
font-size: 0.9rem;
}
.btn:hover {
opacity: 0.8;
}
.btn-primary {
background: var(--color-primary);
color: white;
}
.text-bold {
font-weight: 500;
}
.text-muted {
color: var(--color-gray);
}
/*================== NAVBAR =================*/
nav {
width: 100%;
background: var(--color-white);
padding: 0.7rem 0;
position: fixed;
top: 0;
z-index: 10;
}
nav .container {
display: flex;
align-items: center;
justify-content: space-between;
}
.search-bar {
background: var(--color-light);
border-radius: var(--border-radius);
padding: var(--search-padding);
}
.search-bar input[type="search"] {
background: transparent;
width: 30vw;
margin-left: 1rem;
font-size: 0.9rem;
color: var(--color-dark);
}
nav .search-bar input[type="search"]::placeholder {
color: var(--color-gray);
}
nav .create {
display: flex;
align-items: center;
gap: 2rem;
}
/* ===================== MAIN ======================= */
main {
position: relative;
top: 5.4rem;
}
main .container {
display: grid;
grid-template-columns: 18vw auto 20vw;
column-gap: 2rem;
position: relative;
}
/* =================== LEFT ================ */
main .container .left {
height: max-content;
position: sticky;
top: var(--sticky-top-left);
}
main .container .left .profile {
padding: var(--card-padding);
background: var(--color-white);
border-radius: var(--card-border-radius);
display: flex;
align-items: center;
column-gap: 1rem;
width: 100%;
}
/* -------------- SIDEBAR ------------------ */
.left .sidebar {
margin-top: 1rem;
background: var(--color-white);
border-radius: var(--card-border-radius);
}
.left .sidebar .menu-item {
display: flex;
align-items: center;
height: 4rem;
cursor: pointer;
transition: all 300ms ease;
position: relative;
}
.left .sidebar .menu-item:hover {
background: var(--color-light);
}
.left .sidebar i {
font-size: 1.4rem;
color: var(--color-gray);
margin-left: 2rem;
position: relative;
}
.left .sidebar i .notification-count {
background: var(--color-danger);
color: white;
font-size: 0.7rem;
width: fit-content;
border-radius: 0.8rem;
padding: 0.1rem 0.4rem;
position: absolute;
top: -0.2rem;
right: -0.3rem;
}
.left .sidebar h3 {
margin-left: 1.5rem;
font-size: 1rem;
}
.left .sidebar .active {
background: var(--color-light);
}
.left .sidebar .active i,
.left .sidebar .active h3 {
color: var(--color-primary);
}
.left .sidebar .active::before {
content: "";
display: block;
width: 0.5rem;
height: 100%;
position: absolute;
background: var(--color-primary);
}
.left .sidebar .menu-item:first-child.active {
border-top-left-radius: var(--card-border-radius);
overflow: hidden;
}
.left .sidebar .menu-item:last-child.active {
border-bottom-left-radius: var(--card-border-radius);
overflow: hidden;
}
.left .btn {
margin-top: 1rem;
width: 100%;
text-align: center;
padding: 1rem 0;
}
/* ----------------------- NOTIFICATION POPUP ---------------- */
.left .notifications-popup {
position: absolute;
top: 0;
left: 110%;
width: 30rem;
background: var(--color-white);
border-radius: var(--card-border-radius);
padding: var(--card-padding);
box-shadow: 0 0 2rem hsl(var(--color-primary), 75%, 60% 25%);
z-index: 8;
display: none;
}
.left .notifications-popup::before {
content: "";
width: 1.2rem;
height: 1.2rem;
display: block;
background: var(--color-white);
position: absolute;
left: -0.6rem;
transform: rotate(45deg);
}
.left .notifications-popup > div {
display: flex;
align-items: start;
gap: 1rem;
margin-bottom: 1rem;
}
.left .notifications-popup small {
display: block;
}
/* ============================= MIDDLE ================================ */
.middle .stories {
display: flex;
justify-content: space-between;
height: 12rem;
gap: 0.5rem;
}
.middle .stories .story {
padding: var(--card-padding);
border-radius: var(--card-border-radius);
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
color: white;
font-size: 0.75rem;
width: 100%;
position: relative;
overflow: hidden;
}
.middle .stories .story::before {
content: "";
display: block;
width: 100%;
height: 5rem;
background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
position: absolute;
bottom: 0;
}
.middle .stories .story .name {
z-index: 2;
}
.middle .stories .story:nth-child(1) {
background: url("https://media.istockphoto.com/photos/team-of-young-football-players-stacking-hands-before-match-picture-id1278976828?b=1&k=20&m=1278976828&s=170667a&w=0&h=1-GftAi5BTANyoB-5pqe-bpA42EfgPh_oJwxf1O5Chw=") no-repeat center center/cover;
}
.middle .stories .story:nth-child(2) {
background: url("https://media.istockphoto.com/photos/celebrating-the-victory-after-soccer-match-picture-id876899218?k=20&m=876899218&s=612x612&w=0&h=eTOuuJVaotr6LfRGnIVZWCQTfrBrxejio5aBwRxGr0o=") no-repeat center center/cover;
}
.middle .stories .story:nth-child(3) {
background: url("https://cds.cdm.depaul.edu/wp-content/uploads/2016/11/bigstock-group-of-student-studying-toge-49888721.jpg") no-repeat center center/cover;
}
.middle .stories .story:nth-child(4) {
background: url("https://www.mcicon.com/wp-content/uploads/2021/02/Sport_Team_1-copy-5.jpg") no-repeat center center/cover;
}
.middle .stories .story:nth-child(5) {
background: url("https://www.signupgenius.com/cms/socialMediaImages/team-building-sports-team-article-1200x800.jpg") no-repeat center center/cover;
}
.middle .stories .story:nth-child(6) {
background: url("https://ih1.redbubble.net/image.12218283.9266/raf,750x1000,075,t,000000:44f0b734a5.u9.jpg") no-repeat center center/cover;
}
.middle .story .profile-photo {
width: 2rem;
height: 2rem;
align-self: start;
border: 3px solid var(--color-primary);
}
/* ----------------- CREATE POST ------------- */
.middle .create-post {
width: 100%;
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 1rem;
background: var(--color-white);
padding: 0.4rem var(--card-padding);
border-radius: var(--border-radius);
}
.middle .create-post input[type="text"] {
justify-self: start;
width: 100%;
padding-left: 1rem;
background: transparent;
color: var(--color-dark);
margin-right: 1rem;
}
/* ---------------------- FEEDS --------------------- */
.middle .feeds .feed {
background: var(--color-white);
border-radius: var(--card-border-radius);
padding: var(--card-padding);
margin: 1rem 0;
font-size: 0.85rem;
line-height: 1.5;
}
.middle .feed .head {
display: flex;
justify-content: space-between;
}
.middle .feed .user {
display: flex;
gap: 1rem;
}
.middle .feed .photo {
border-radius: var(--card-border-radius);
overflow: hidden;
margin: 0.7rem 0;
}
.middle .feed .action-buttons {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 1.4rem;
margin: 0.6rem;
}
#deleteBtn{
background-color: #ff002b;
}
.middle .liked-by {
display: flex;
}
.middle .liked-by span {
width: 1.4rem;
height: 1.4rem;
display: block;
border-radius: 50%;
overflow: hidden;
border: 2px solid var(--color-white);
margin-left: -0.6rem;
}
.middle .liked-by span:first-child {
margin: 0;
}
.middle .liked-by p {
margin-left: 0.5rem;
}
/* ========================== RIGHT =============================== */
main .container .right {
height: max-content;
position: sticky;
top: var(--sticky-top-right);
bottom: 0;
}
.right .messages {
background: var(--color-white);
border-radius: var(--card-border-radius);
padding: var(--card-padding);
}
.right .messages .heading {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 1rem;
}
.right .messages i {
font-size: 1.4rem;
}
.right .messages .search-bar {
display: flex;
margin-bottom: 1rem;
}
.right .messages .category {
display: flex;
justify-content: space-between;
margin-bottom: 1rem;
}
.right .messages .category h6 {
width: 100%;
text-align: center;
border-bottom: 4px solid var(--color-light);
padding-bottom: 0.5rem;
font-size: 0.85rem;
}
.right .messages .category .active {
border-color: var(--color-dark);
}
.right .messages .message-requests {
color: var(--color-primary);
}
.right .messages .message {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
align-items: start;
}
.right .message .profile-photo {
position: relative;
overflow: visible;
}
.right .profile-photo img {
border-radius: 50%;
}
.right .messages .message:last-child {
margin: 0;
}
.right .messages .message p {
font-size: 0.8rem;
}
.right .messages .message .profile-photo .active {
width: 0.8rem;
height: 0.8rem;
border-radius: 50%;
border: 3px solid var(--color-white);
background: var(--color-success);
position: absolute;
bottom: 0;
right: 0;
}
/* ================= FRIEND REQUESTS =================== */
.right .friend-requests {
margin-top: 1rem;
}
.right .friend-requests h4 {
color: var(--color-gray);
margin: 1rem 0;
}
.right .request {
background: var(--color-white);
padding: var(--card-padding);
border-radius: var(--card-border-radius);
margin-bottom: 0.7rem;
}
.right .request .info {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
}
.right .request .action {
display: flex;
gap: 1rem;
}
/* ======================== THEME CUSTOMIZATION ========================== */
.customize-theme {
background: rgba(0, 0, 0, 0.7);
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 100;
text-align: center;
display: grid;
place-items: center;
font-size: 0.9rem;
display: none;
}
.customize-theme .card {
background: var(--color-white);
padding: 3rem;
border-radius: var(--card-border-radius);
width: 50%;
box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1);
}
/* ----------------- FONT SIZE ------------------ */
.customize-theme .font-size {
margin-top: 5rem;
}
.customize-theme .font-size > div {
display: flex;
justify-content: space-between;
align-items: center;
background: var(--color-light);
padding: var(--search-padding);
border-radius: var(--card-border-radius);
}
.customize-theme .choose-size {
background: var(--color-secondary);
height: 0.3rem;
width: 100%;
margin: 0 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.customize-theme .choose-size span {
width: 1rem;
height: 1rem;
background: var(--color-secondary);
border-radius: 50%;
cursor: pointer;
}
.customize-theme .choose-size span.active {
background: var(--color-primary);
}
/* ----------------- FONT SIZE ------------------ */
.customize-theme .color {
margin-top: 2rem;
}
.customize-theme .choose-color {
background: var(--color-light);
padding: var(--search-padding);
border-radius: var(--card-border-radius);
display: flex;
align-items: center;
justify-content: space-between;
}
.customize-theme .choose-color span {
width: 2.2rem;
height: 2.2rem;
border-radius: 50%;
}
.customize-theme .choose-color span:nth-child(1) {
background: hsl(252, 75%, 60%);
}
.customize-theme .choose-color span:nth-child(2) {
background: hsl(52, 75%, 60%);
}
.customize-theme .choose-color span:nth-child(3) {
background: hsl(352, 75%, 60%);
}
.customize-theme .choose-color span:nth-child(4) {
background: hsl(152, 75%, 60%);
}
.customize-theme .choose-color span:nth-child(5) {
background: hsl(202, 75%, 60%);
}
.customize-theme .choose-color span.active {
border: 5px solid white;
}
/* -------------------- BACKGROUND -------------------- */
.customize-theme .background {
margin-top: 2rem;
}
.customize-theme .choose-bg {
display: flex;
align-items: center;
justify-content: space-between;
gap: 1.5rem;
}
.customize-theme .choose-bg > div {
padding: var(--card-padding);
width: 100%;
display: flex;
align-items: center;
font-size: 1rem;
font-weight: bold;
border-radius: 0.4rem;
cursor: pointer;
}
.customize-theme .choose-bg > div.active {
border: 2px solid var(--color-primary);
}
.customize-theme .choose-bg .bg-1 {
background: white;
color: black;
}
.customize-theme .choose-bg .bg-2 {
background: hsl(252, 30%, 17%);
color: white;
}
.customize-theme .choose-bg .bg-3 {
background: hsl(252, 30%, 10%);
color: white;
}
.customize-theme .choose-bg > div span {
width: 2rem;
height: 2rem;
border: 2px solid var(--color-gray);
border-radius: 50%;
margin-right: 1rem;
}
/* ==========================
MEDIA QUERIES FOR SMALL LAPTOPS AND BIG TABLETS
==========================
*/
@media screen and (max-width: 1200px) {
.container {
width: 96%;
}
main .container {
grid-template-columns: 5rem auto 30vw;
gap: 1rem;
}
.left {
width: 5rem;
z-index: 5;
}
main .container .left .profile {
display: none;
}
.sidebar h3 {
display: none;
}
.left .btn {
display: none;
}
.customize-theme .card {
width: 80vw;
}
}
/* ==========================
MEDIA QUERIES FOR SMALL TABLETS AND MOBILE PHONES
==========================
*/
@media screen and (max-width: 992px) {
nav .search-bar {
display: none;
}
main .container {
grid-template-columns: 0 auto 5rem;
gap: 0;
}
main .container .left {
grid-column: 3/4;
position: fixed;
bottom: 0;
right: 0;
}
/* ------------ NOTIFICATION POPUP ------------- */
.left .notifications-popup {
position: absolute;
left: -20rem;
width: 20rem;
}
.left .notifications-popup::before {
display: absolute;
top: 1.3rem;
left: calc(20rem - 0.6rem);
display: block;
}
main .container .middle {
grid-column: 1/3;
}
main .container .right {
display: none;
}
.customize-theme .card {
width: 92vw;
padding: 1rem;
}
.customize-theme .choose-bg > div {
width: 90%;
}
.customize-theme .choose-bg > div span {
width: 1rem;
height: 1rem;
border: 2px solid var(--color-gray);
border-radius: 50%;
margin-right: 1rem;
}
} | 0.421195 | 0.065247 |
body {
font-family: Poppins, sans-serif;
background: #334d50;
/* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #cbcaa5, #334d50);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to bottom, #cbcaa5, #334d50);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
padding-left: 0px;
padding-right: 0px;
}
::-webkit-scrollbar {
width: 10px;
overflow-y: scroll;
background: #f8f8f8;
box-shadow: inset 0 0 4px #707070;
}
::-webkit-scrollbar-thumb {
background: #f74700;
border-radius: 100px;
height: 10px !important;
overflow-x: hidden;
}
::-webkit-scrollbar-thumb:hover {
background: black;
border-radius: 100px;
height: 50px !important;
overflow: auto;
}
/* ANIMATION */
.grow2 {
transition: all 0.01s ease-in-out;
}
.grow2:hover {
transform: scale(1.03);
}
.grow {
transition: all 0.2s ease-in-out !important;
}
.grow:hover {
transform: scale(1.1) !important;
}
.rotate {
transition: transform 0.5s ease-in-out;
}
.rotate:hover {
transform: rotate(360deg);
}
.object {
animation: MoveUpDown 3s linear infinite;
position: absolute;
}
@keyframes MoveUpDown {
0%,
100% {
bottom: 0;
}
50% {
bottom: 10px;
}
}
.middle {
position: relative;
}
.middle:before {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: rgb(255, 255, 255);
visibility: hidden;
transform: scaleX(0);
transition: all 0.3s ease-in-out;
}
.middle:hover:before {
visibility: visible;
transform: scaleX(1);
}
/* Poster */
#poster {
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
overflow: hidden;
}
#poster > a > img:hover {
transition: transform 1s;
transform: scale(1.1);
}
#poster > a > img:not(:hover) {
transition: transform 1s;
transform: scale(1);
}
/* Numbers */
@property --num {
syntax: "<integer>";
initial-value: 0;
inherits: false;
}
#value1 {
transition: --num 2s;
counter-set: num var(--num);
font: 800 40px system-ui;
--num: 16;
color: #f74700;
}
#value1::after {
content: counter(num);
--num: 16;
}
#value1:hover {
--num: 23;
}
.pranjay-img {
border: 1px black solid;
}
#value2 {
transition: --num 1s;
counter-set: num var(--num);
font: 800 40px system-ui;
--num: 21;
color: #f74700;
}
#value2::after {
content: counter(num);
}
#value2:hover {
--num: 9;
}
#value3 {
transition: --num 1s;
counter-set: num var(--num);
font: 800 40px system-ui;
--num: 18;
color: #f74700;
}
#value3::after {
content: counter(num);
}
#value3:hover {
--num: 23;
}
#value4 {
transition: --num 1s;
counter-set: num var(--num);
font: 800 40px system-ui;
--num: 10;
color: #f74700;
}
#value4::after {
content: counter(num);
}
#value4:hover {
--num: 20;
}
.contri {
width: 80%;
}
.footer {
text-align: center;
background-color: black;
color: white;
}
.footer a {
color: #f74700;
}
@media (max-width: 1000px) {
.contri {
height: 70vh;
}
}
@media (max-width: 768px) {
.contri {
height: 50vh;
}
.values h2 {
margin-top: 5vh;
font-size: 2rem;
}
.stat {
margin-top: 10vh;
}
.contri {
width: 100%;
}
}
@media (max-width: 513px) {
.contri {
height: 45vh;
}
.repo h1 {
margin: 5vh 0;
font-size: 1.7rem;
}
.repo h3 {
margin: 5vh 0;
font-size: 1.5rem;
}
.values h2 {
margin-top: 6vh;
font-size: 1.5rem;
}
.footer h4 {
font-size: 1rem;
}
.admin h1 {
font-size: 1.9rem;
}
.admin h2 {
font-size: 1.2rem;
font-weight: 600;
}
.pranjay-img {
height: 200px;
width: 200px;
}
}
@media (max-width: 370px) {
.contri {
height: 40vh;
}
.footer h4 {
font-size: 0.9rem;
}
} | Repository_web_page/style.css | body {
font-family: Poppins, sans-serif;
background: #334d50;
/* fallback for old browsers */
background: -webkit-linear-gradient(to bottom, #cbcaa5, #334d50);
/* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to bottom, #cbcaa5, #334d50);
/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
padding-left: 0px;
padding-right: 0px;
}
::-webkit-scrollbar {
width: 10px;
overflow-y: scroll;
background: #f8f8f8;
box-shadow: inset 0 0 4px #707070;
}
::-webkit-scrollbar-thumb {
background: #f74700;
border-radius: 100px;
height: 10px !important;
overflow-x: hidden;
}
::-webkit-scrollbar-thumb:hover {
background: black;
border-radius: 100px;
height: 50px !important;
overflow: auto;
}
/* ANIMATION */
.grow2 {
transition: all 0.01s ease-in-out;
}
.grow2:hover {
transform: scale(1.03);
}
.grow {
transition: all 0.2s ease-in-out !important;
}
.grow:hover {
transform: scale(1.1) !important;
}
.rotate {
transition: transform 0.5s ease-in-out;
}
.rotate:hover {
transform: rotate(360deg);
}
.object {
animation: MoveUpDown 3s linear infinite;
position: absolute;
}
@keyframes MoveUpDown {
0%,
100% {
bottom: 0;
}
50% {
bottom: 10px;
}
}
.middle {
position: relative;
}
.middle:before {
content: "";
position: absolute;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: rgb(255, 255, 255);
visibility: hidden;
transform: scaleX(0);
transition: all 0.3s ease-in-out;
}
.middle:hover:before {
visibility: visible;
transform: scaleX(1);
}
/* Poster */
#poster {
box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
overflow: hidden;
}
#poster > a > img:hover {
transition: transform 1s;
transform: scale(1.1);
}
#poster > a > img:not(:hover) {
transition: transform 1s;
transform: scale(1);
}
/* Numbers */
@property --num {
syntax: "<integer>";
initial-value: 0;
inherits: false;
}
#value1 {
transition: --num 2s;
counter-set: num var(--num);
font: 800 40px system-ui;
--num: 16;
color: #f74700;
}
#value1::after {
content: counter(num);
--num: 16;
}
#value1:hover {
--num: 23;
}
.pranjay-img {
border: 1px black solid;
}
#value2 {
transition: --num 1s;
counter-set: num var(--num);
font: 800 40px system-ui;
--num: 21;
color: #f74700;
}
#value2::after {
content: counter(num);
}
#value2:hover {
--num: 9;
}
#value3 {
transition: --num 1s;
counter-set: num var(--num);
font: 800 40px system-ui;
--num: 18;
color: #f74700;
}
#value3::after {
content: counter(num);
}
#value3:hover {
--num: 23;
}
#value4 {
transition: --num 1s;
counter-set: num var(--num);
font: 800 40px system-ui;
--num: 10;
color: #f74700;
}
#value4::after {
content: counter(num);
}
#value4:hover {
--num: 20;
}
.contri {
width: 80%;
}
.footer {
text-align: center;
background-color: black;
color: white;
}
.footer a {
color: #f74700;
}
@media (max-width: 1000px) {
.contri {
height: 70vh;
}
}
@media (max-width: 768px) {
.contri {
height: 50vh;
}
.values h2 {
margin-top: 5vh;
font-size: 2rem;
}
.stat {
margin-top: 10vh;
}
.contri {
width: 100%;
}
}
@media (max-width: 513px) {
.contri {
height: 45vh;
}
.repo h1 {
margin: 5vh 0;
font-size: 1.7rem;
}
.repo h3 {
margin: 5vh 0;
font-size: 1.5rem;
}
.values h2 {
margin-top: 6vh;
font-size: 1.5rem;
}
.footer h4 {
font-size: 1rem;
}
.admin h1 {
font-size: 1.9rem;
}
.admin h2 {
font-size: 1.2rem;
font-weight: 600;
}
.pranjay-img {
height: 200px;
width: 200px;
}
}
@media (max-width: 370px) {
.contri {
height: 40vh;
}
.footer h4 {
font-size: 0.9rem;
}
} | 0.511961 | 0.091423 |
@media (max-width: 1025px){
.spacing-2 {
padding-left: 9rem;
padding-right: 9rem;
margin-top: 4rem;
margin-bottom: 4rem;
}
.movein {
font-size: 31px;
}
.text-2 {
margin-top: 8rem;
padding-left: 0rem;
padding-right: 0rem;
}
}
@media (max-width: 769px){
.text-2 {
font-size: 12px;
}
.spacing-2 {
padding-left: 5rem;
padding-right: 5rem;
margin-top: 2rem;
margin-bottom: 2rem;
}
}
@media (max-width: 414px){
.welcome-text {
position: absolute;
text-transform: uppercase;
color: var(--white-text);
letter-spacing: 3.5px;
font-size: 11px;
left: 10%;
margin-bottom: 0px;
}
.welcome-text-two {
position: absolute;
left: 10%;
font-size: 45px;
font-weight: 600;
text-transform: capitalize;
}
.spacing-1 {
padding-left: 1rem;
padding-right: 1rem;
}
.text-slider{
position: absolute;
top:35%;
left:0%;
}
.welcome-text-index {
position: relative;
text-transform: uppercase;
color: var(--white-text);
letter-spacing: 3.5px;
font-size: 11px;
top: 3%;
left: 0%;
margin-bottom: 0px;
}
.welcome-text-two-index {
position: relative;
top: 3%;
left: 6%;
font-size: 40px;
font-weight: 600;
text-transform: capitalize;
}
.footer-adjust {
padding-left: 0rem;
}
.pad-54{
padding-top: 10px;
}
.spacing-2 {
padding-left: 1rem;
padding-right: 1rem;
margin-top: 1rem;
margin-bottom: 1rem;
}
.movein {
margin-left: 66px;
font-size: 27px;
}
.mobi-center{
text-align: center;
}
.m-text{
margin-top: 2rem;
}
.mfs-12{
font-size: 12px;
}
.mfsc-27{
font-size: 27px;
font-family: "Crimson Text";
}
.pink-space {
padding-top: 1rem;
padding-bottom: 2rem;
}
.view-products {
display: flex;
justify-content: end;
padding-top: 0rem;
}
.spacing-3 {
padding-left: 1rem;
padding-right: 1rem;
}
}
@media (max-width: px){
} | public/page-assets/css/queries.css | @media (max-width: 1025px){
.spacing-2 {
padding-left: 9rem;
padding-right: 9rem;
margin-top: 4rem;
margin-bottom: 4rem;
}
.movein {
font-size: 31px;
}
.text-2 {
margin-top: 8rem;
padding-left: 0rem;
padding-right: 0rem;
}
}
@media (max-width: 769px){
.text-2 {
font-size: 12px;
}
.spacing-2 {
padding-left: 5rem;
padding-right: 5rem;
margin-top: 2rem;
margin-bottom: 2rem;
}
}
@media (max-width: 414px){
.welcome-text {
position: absolute;
text-transform: uppercase;
color: var(--white-text);
letter-spacing: 3.5px;
font-size: 11px;
left: 10%;
margin-bottom: 0px;
}
.welcome-text-two {
position: absolute;
left: 10%;
font-size: 45px;
font-weight: 600;
text-transform: capitalize;
}
.spacing-1 {
padding-left: 1rem;
padding-right: 1rem;
}
.text-slider{
position: absolute;
top:35%;
left:0%;
}
.welcome-text-index {
position: relative;
text-transform: uppercase;
color: var(--white-text);
letter-spacing: 3.5px;
font-size: 11px;
top: 3%;
left: 0%;
margin-bottom: 0px;
}
.welcome-text-two-index {
position: relative;
top: 3%;
left: 6%;
font-size: 40px;
font-weight: 600;
text-transform: capitalize;
}
.footer-adjust {
padding-left: 0rem;
}
.pad-54{
padding-top: 10px;
}
.spacing-2 {
padding-left: 1rem;
padding-right: 1rem;
margin-top: 1rem;
margin-bottom: 1rem;
}
.movein {
margin-left: 66px;
font-size: 27px;
}
.mobi-center{
text-align: center;
}
.m-text{
margin-top: 2rem;
}
.mfs-12{
font-size: 12px;
}
.mfsc-27{
font-size: 27px;
font-family: "Crimson Text";
}
.pink-space {
padding-top: 1rem;
padding-bottom: 2rem;
}
.view-products {
display: flex;
justify-content: end;
padding-top: 0rem;
}
.spacing-3 {
padding-left: 1rem;
padding-right: 1rem;
}
}
@media (max-width: px){
} | 0.504883 | 0.092811 |
.nav {
list-style: none;
text-align: right;
padding: 1em;
margin: 0;
}
li {
display: inline-block;
padding: 1em;
}
h1 {
line-height: 1.4em;
}
.parent {
position: absolute;
top: 0;
left: 0;
}
.floating {
position: relative;
top: 87px;
left: 195px;
}
/* Mobile-first classes here (No media query needed, these styles are global)
========================================================================== */
/*Text Background Colors*/
.highlight {
display: inline;
background: #37E6C8;
color: white;
padding: 0.25em;
}
/*Backgrounds*/
.bg-cover{
background-size:cover;
}
.bg-contain{
background-size:contain;
}
.bg-center{
background-position:center;
}
.bg-repeat{
background-repeat:repeat;
}
.bg-repeat-x{
background-repeat:repeat-x;
}
.bg-repeat-y{
background-repeat:repeat-y;
}
.bg-no-repeat{
background-repeat:no-repeat;
}
/*Colors*/
.black{color:var(--black);}
.red{color:var(--red);}
.white{color:var(--white);}
.white1{color:var(--white1);}
.white2{color:var(--white2);}
.white3{color:var(--white3);}
.blue1{color:var(--blue1);}
.blue2{color:var(--blue2);}
.grey0{color:var(--grey0);}
.grey1{color:var(--grey1);}
.grey2{color:var(--grey2);}
.grey3{color:var(--grey3);}
.grey4{color:var(--grey4);}
.grey5{color:var(--grey5);}
/*Background Colors*/
.bg-black{ background-color:var(--black);}
.bg-red{ background-color:var(--red);}
.bg-blue0{ background-color:var(--blue0);}
.bg-blue2{ background-color:var(--blue2);}
.bg-white{ background-color:var(--white);}
.bg-grey1{ background-color:var(--grey1);}
.bg-grey5{ background-color:var(--grey5);}
/*Borders*/
.border {
border:var(--border-width-default) solid;
}
.border-top {
border-top:var(--border-width-default) solid;
}
.border-bottom{
border-bottom:var(--border-width-default) solid;
}
.border-left {
border-left:var(--border-width-default) solid;
}
.border-right {
border-right:var(--border-width-default) solid;
}
.border-radius{
border-radius:var(--border-radius-default);
}
.shadow{
box-shadow: 0 2px 8px 0 rgba(0,0,0,.2);
}
/* Medium and Up - Targets everything larger than mobile
========================================================================== */
@media (--breakpoint-medium-and-up) {
}
/* Medium - only targets 1st breakpoint. Styles
========================================================================== */
@media (--breakpoint-medium) {
}
/* Large - only targets 2nd breakpoint.
========================================================================== */
@media (--breakpoint-large) {
} | src/_styles.css | .nav {
list-style: none;
text-align: right;
padding: 1em;
margin: 0;
}
li {
display: inline-block;
padding: 1em;
}
h1 {
line-height: 1.4em;
}
.parent {
position: absolute;
top: 0;
left: 0;
}
.floating {
position: relative;
top: 87px;
left: 195px;
}
/* Mobile-first classes here (No media query needed, these styles are global)
========================================================================== */
/*Text Background Colors*/
.highlight {
display: inline;
background: #37E6C8;
color: white;
padding: 0.25em;
}
/*Backgrounds*/
.bg-cover{
background-size:cover;
}
.bg-contain{
background-size:contain;
}
.bg-center{
background-position:center;
}
.bg-repeat{
background-repeat:repeat;
}
.bg-repeat-x{
background-repeat:repeat-x;
}
.bg-repeat-y{
background-repeat:repeat-y;
}
.bg-no-repeat{
background-repeat:no-repeat;
}
/*Colors*/
.black{color:var(--black);}
.red{color:var(--red);}
.white{color:var(--white);}
.white1{color:var(--white1);}
.white2{color:var(--white2);}
.white3{color:var(--white3);}
.blue1{color:var(--blue1);}
.blue2{color:var(--blue2);}
.grey0{color:var(--grey0);}
.grey1{color:var(--grey1);}
.grey2{color:var(--grey2);}
.grey3{color:var(--grey3);}
.grey4{color:var(--grey4);}
.grey5{color:var(--grey5);}
/*Background Colors*/
.bg-black{ background-color:var(--black);}
.bg-red{ background-color:var(--red);}
.bg-blue0{ background-color:var(--blue0);}
.bg-blue2{ background-color:var(--blue2);}
.bg-white{ background-color:var(--white);}
.bg-grey1{ background-color:var(--grey1);}
.bg-grey5{ background-color:var(--grey5);}
/*Borders*/
.border {
border:var(--border-width-default) solid;
}
.border-top {
border-top:var(--border-width-default) solid;
}
.border-bottom{
border-bottom:var(--border-width-default) solid;
}
.border-left {
border-left:var(--border-width-default) solid;
}
.border-right {
border-right:var(--border-width-default) solid;
}
.border-radius{
border-radius:var(--border-radius-default);
}
.shadow{
box-shadow: 0 2px 8px 0 rgba(0,0,0,.2);
}
/* Medium and Up - Targets everything larger than mobile
========================================================================== */
@media (--breakpoint-medium-and-up) {
}
/* Medium - only targets 1st breakpoint. Styles
========================================================================== */
@media (--breakpoint-medium) {
}
/* Large - only targets 2nd breakpoint.
========================================================================== */
@media (--breakpoint-large) {
} | 0.372619 | 0.092196 |
@import url(cssreset.css);
* {
transition: all 0.3s ease;
}
body {
background-color: rgb(40, 40, 40);
color: #efefef;
direction: rtl;
overflow: hidden;
}
.page-scroller {
width: 100%;
height: 100vh;
overflow: hidden;
position: relative;
}
.page-scroller input {
display: none;
}
.page-scroller label {
display: inline-block;
font-size: 14px;
position: absolute;
top: 50%;
bottom: 50%;
left: 40px;
cursor: pointer;
z-index: 1000;
}
.page-scroller label p {
opacity: 0.4;
}
.page-scroller label:nth-of-type(2) {
transform: translateY(-20px);
}
.page-scroller label:nth-of-type(4) {
transform: translateY(20px);
}
.page-scroller label:nth-of-type(1) {
transform: translateY(-40px);
}
.page-scroller label:nth-of-type(5) {
transform: translateY(40px);
}
.page-scroller label i {
content: "";
width: 10px;
height: 10px;
border-radius: 50%;
border: 1px solid rgb(255, 255, 255);
position: absolute;
top: 6px;
left: -20px;
}
.page-scroller .scroll-panel {
height: 100%;
width: 130px;
position: absolute;
z-index: 999;
top: 0;
bottom: 0;
left: 0;
backdrop-filter: blur(10px);
background-color: rgba(40, 40, 40, 0.4);
}
.page-scroller .scroll-panel:hover {
width: 150px;
}
.page-scroller label:hover ~ div.scroll-panel {
width: 150px;
}
.page-scroller label:hover p {
opacity: 1;
transform: translateX(0.5rem);
}
.page-scroller div[class^="page"] {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-content: flex-start;
filter: blur(2px);
color: #2c2c2c;
position: absolute;
transform: translateY(+100%);
}
.page-scroller div.page1 {
transform: translateY(0);
}
.page-scroller div[class^="page"] h2 {
margin: 40px 20px;
font-size: 40px;
width: 40%;
text-align: right;
}
.page-scroller div[class^="page"] p {
margin: 20px;
font-size: 30px;
width: 40%;
text-align: right;
}
div.page1 {
background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
}
div.page2 {
background-image: linear-gradient(to right, #decba4, #3e5151);
}
div.page3 {
background-image: linear-gradient(to right, #8360c3, #2ebf91);
}
div.page4 {
background-image: linear-gradient(to right, #00b4db, #0083b0);
}
div.page5 {
background-image: linear-gradient(to right, #2c3e50, #4ca1af);
}
.page-scroller input#page1:checked ~ div.page1,
.page-scroller input#page2:checked ~ div.page2,
.page-scroller input#page3:checked ~ div.page3,
.page-scroller input#page4:checked ~ div.page4,
.page-scroller input#page5:checked ~ div.page5 {
filter: blur(0);
transform: translateY(0%);
}
.page-scroller input#page2:checked ~ div.page1,
.page-scroller input#page3:checked ~ div.page2,
.page-scroller input#page4:checked ~ div.page3,
.page-scroller input#page5:checked ~ div.page4 {
filter: blur(0);
transform: translateY(-100%);
}
.page-scroller #scroll-ball {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: white;
position: absolute;
top: -58px;
bottom: 0;
margin: auto 0;
left: 20px;
z-index: 1001;
}
.page-scroller input#page1:checked ~ #scroll-ball {
transform: translateX(0);
}
.page-scroller input#page2:checked ~ #scroll-ball {
transform: translateY(20px);
}
.page-scroller input#page3:checked ~ #scroll-ball {
transform: translateY(40px);
}
.page-scroller input#page4:checked ~ #scroll-ball {
transform: translateY(60px);
}
.page-scroller input#page5:checked ~ #scroll-ball {
transform: translateY(80px);
}
.page-scroller input:checked + label p {
opacity: 0.8;
transform: translateX(0.5rem);
} | 9-multiPageHeader-3/assets/css/style.css | @import url(cssreset.css);
* {
transition: all 0.3s ease;
}
body {
background-color: rgb(40, 40, 40);
color: #efefef;
direction: rtl;
overflow: hidden;
}
.page-scroller {
width: 100%;
height: 100vh;
overflow: hidden;
position: relative;
}
.page-scroller input {
display: none;
}
.page-scroller label {
display: inline-block;
font-size: 14px;
position: absolute;
top: 50%;
bottom: 50%;
left: 40px;
cursor: pointer;
z-index: 1000;
}
.page-scroller label p {
opacity: 0.4;
}
.page-scroller label:nth-of-type(2) {
transform: translateY(-20px);
}
.page-scroller label:nth-of-type(4) {
transform: translateY(20px);
}
.page-scroller label:nth-of-type(1) {
transform: translateY(-40px);
}
.page-scroller label:nth-of-type(5) {
transform: translateY(40px);
}
.page-scroller label i {
content: "";
width: 10px;
height: 10px;
border-radius: 50%;
border: 1px solid rgb(255, 255, 255);
position: absolute;
top: 6px;
left: -20px;
}
.page-scroller .scroll-panel {
height: 100%;
width: 130px;
position: absolute;
z-index: 999;
top: 0;
bottom: 0;
left: 0;
backdrop-filter: blur(10px);
background-color: rgba(40, 40, 40, 0.4);
}
.page-scroller .scroll-panel:hover {
width: 150px;
}
.page-scroller label:hover ~ div.scroll-panel {
width: 150px;
}
.page-scroller label:hover p {
opacity: 1;
transform: translateX(0.5rem);
}
.page-scroller div[class^="page"] {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-content: flex-start;
filter: blur(2px);
color: #2c2c2c;
position: absolute;
transform: translateY(+100%);
}
.page-scroller div.page1 {
transform: translateY(0);
}
.page-scroller div[class^="page"] h2 {
margin: 40px 20px;
font-size: 40px;
width: 40%;
text-align: right;
}
.page-scroller div[class^="page"] p {
margin: 20px;
font-size: 30px;
width: 40%;
text-align: right;
}
div.page1 {
background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
}
div.page2 {
background-image: linear-gradient(to right, #decba4, #3e5151);
}
div.page3 {
background-image: linear-gradient(to right, #8360c3, #2ebf91);
}
div.page4 {
background-image: linear-gradient(to right, #00b4db, #0083b0);
}
div.page5 {
background-image: linear-gradient(to right, #2c3e50, #4ca1af);
}
.page-scroller input#page1:checked ~ div.page1,
.page-scroller input#page2:checked ~ div.page2,
.page-scroller input#page3:checked ~ div.page3,
.page-scroller input#page4:checked ~ div.page4,
.page-scroller input#page5:checked ~ div.page5 {
filter: blur(0);
transform: translateY(0%);
}
.page-scroller input#page2:checked ~ div.page1,
.page-scroller input#page3:checked ~ div.page2,
.page-scroller input#page4:checked ~ div.page3,
.page-scroller input#page5:checked ~ div.page4 {
filter: blur(0);
transform: translateY(-100%);
}
.page-scroller #scroll-ball {
width: 10px;
height: 10px;
border-radius: 50%;
background-color: white;
position: absolute;
top: -58px;
bottom: 0;
margin: auto 0;
left: 20px;
z-index: 1001;
}
.page-scroller input#page1:checked ~ #scroll-ball {
transform: translateX(0);
}
.page-scroller input#page2:checked ~ #scroll-ball {
transform: translateY(20px);
}
.page-scroller input#page3:checked ~ #scroll-ball {
transform: translateY(40px);
}
.page-scroller input#page4:checked ~ #scroll-ball {
transform: translateY(60px);
}
.page-scroller input#page5:checked ~ #scroll-ball {
transform: translateY(80px);
}
.page-scroller input:checked + label p {
opacity: 0.8;
transform: translateX(0.5rem);
} | 0.450601 | 0.084568 |